@charset "UTF-8";

/* ---------------------------------------------
  utility
--------------------------------------------- */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/* color */
body{
  --corporate: #004894;
  --notoSans: "Noto Sans JP", sans-serif;
  --notoSerif: "Noto Serif JP", serif;
}

@media (min-width: 769px) {
  .is-hidden_pc {
    display: none !important;
  }
  .is-hidden_sp {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .is-hidden_sp {
    display: none !important;
  }
  
  .is-hidden_pc {
    display: block !important;
  }
}

/* ---------------------------------------------
base 専用
--------------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior:smooth;
   scroll-padding-top: 130px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #2B2B2F;
  background-color: #fff;
}

main {
  display: block;
  overflow-x: hidden;
  position: relative;
}

.wrap{
  padding-top: 95px;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}

@media (max-width: 767px){
  body {
    font-size: 13px;
  }
}

@media (min-width: 768px) and (max-width: 769px) and (orientation: portrait) {
  main {
    min-height: 95vh;
  }
}

/* ---------------------------------------------
パーツ
--------------------------------------------- */

a {
  color: inherit;
  text-decoration: none;
  transition: .4s;
}

a:hover{
  text-decoration: none;
  opacity: .8;
}

table {
  width: 100%;
}

img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.container {
  position: relative;
  box-sizing: border-box;
  width: min(1060px, 100%);
  padding: 0 30px;
  margin: auto;
}

@media (max-width: 768px){

}

#totop{
  position: fixed;
  bottom: 20px;
  right: 25px;
}

#totop span{
  display: block;
  width: 40px;
  height: 35px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: linear-gradient(90deg,rgba(0, 113, 188, 1) 0%, rgba(0, 113, 188, 1) 30%, 
                              transparent 30%, transparent 35%, 
                              rgba(39, 78, 175, 1) 35%, rgba(39, 78, 175, 1) 65%, 
                              transparent 65%, transparent 70%, 
                              rgba(4, 33, 117, 1) 70%);
}

#totop.is-clicked span{
  top: 6px;
}

#totop p{
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.link--btn{
  color: #fff;
  font-weight: 500;
  width: 200px;
}

.link--btn a{
  border-radius: 100px;
  background-color: #042175;
  padding: 15px 0;
  display: block;
  text-align: center;
}

.top--contentBox{
  background: rgba(255, 255, 255, .9);
  border-radius: 20px;
  box-sizing: border-box;
  padding: 0 50px;
}

h2.uline--ttl{
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

h2.uline--ttl::after{
  content: "";
  display: block;
  background: #042175;
  width: 55px;
  height: 5px;
  margin-top: 8px;
}

h2.round{
  font-size: 22px;
  color: #042175;
  border-radius: 100px;
  background-color: #fff;
  border: 1px solid #042175;
  padding: 13px 0;
  font-weight: 500;
  text-align: center;
}

.borderFlex{
  font-size: 22px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #042175;
  margin-bottom: 22px;
}

.borderFlex::before,
.borderFlex::after{
  content: "";
  height: 1px;
  display: block;
  background: #042175;
  flex-grow: 1;
}

@media (max-width: 768px){
  #totop{
    position: fixed;
    bottom: 60px;
    right: 15px;
  }

  .link--btn{
    width: 100%;
  }

  .top--contentBox{
    padding: 0 20px;
  }

  h2.uline--ttl{
    margin-bottom: 20px;
  }

  h2.round{
  font-size: 18px;
}
}

/* ---------------------------------------------
  animation
--------------------------------------------- */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(0);
  transition: opacity 0.8s ease, filter .8s ease;
}

.fade-in.blur.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.fade-in.left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in.right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-2 { transition-delay: 0.2s; }
.delay-4 { transition-delay: 0.4s; }
.delay-6 { transition-delay: 0.6s; }
.delay-8 { transition-delay: 0.8s; }

/* ---------------------------------------------
  header
--------------------------------------------- */

header{
  position: fixed;
  z-index: 9999;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
  padding: 0 50px;
}

header .navigation--wrap{
  height: 95px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo--wrap .header--logo{
  width: 235px;
}

header .navigation--wrap .header-gnav{
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 45px;
  gap: 30px;
}

header .navigation--wrap .header-gnav .parent--list a{
  position: relative;
}

@media screen and (min-width: 769px){
  header .navigation--wrap .header-gnav .parent--list > a::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: -15px;
    transform: scaleX(0);
    transform-origin: left;
    transition: width .3s ease,transform .35s ease;
    background: linear-gradient(0,rgba(4, 33, 117, 1) 0%, rgba(4, 33, 117, 1) 20%, transparent 20%, transparent 40%, rgba(39, 78, 175, 1) 40%, rgba(39, 78, 175, 1) 60%, transparent 60%, transparent 80%, rgba(0, 113, 188, 1) 80%, rgba(0, 113, 188, 1) 100%);
  }
  
  header .navigation--wrap .header-gnav .parent--list > a:hover::before,
  header .navigation--wrap .header-gnav .parent--list > a.active::before{
    transform: scaleX(1);
  }
}

header .navigation--wrap .cta--btn{
  color: #fff;
  font-weight: 500;
  width: 140px;
}

header .navigation--wrap .cta--btn a{
  border-radius: 100px;
  background-color: var(--corporate);
  padding: 5px 0;
  display: block;
  text-align: center;
}

.header-gnav .dpdown-list-wrap{
  width: 100%;
  position: absolute;
  top: 95px;
  left: 0;
  display: none;
  background-color: #F7F7F7;
}

.header-gnav .dpdown-list-wrap .dplist--inner ul{
  padding: 20px 0;
  margin: auto;
  display: flex;
  gap: 2em;
  justify-content: flex-end;
  font-size: 14px;
}

/* ---------------------------------------------
  hamburger menu
--------------------------------------------- */

.hamburger{
  display: none;
  width: 60px;
  height: 60px;
  border: 0;
  background-size: cover;
  padding: 0;
  cursor: pointer;
  z-index: 9999;
  position: fixed;
  top: 16px;
  right: 10px;
  background-color: #fff;
}

body.is-nav-open .hamburger{
  background-size: cover;
}

.hamburger__line{
  display: block;
  width: 31px;
  height: 3px;
  background: #707070;
  margin: 9px auto;
  transition: transform .25s ease, opacity .25s ease;
  border-radius: 10px;
}

@media (max-width: 768px){
  header{
    padding: 0 25px;
  }

  .hamburger{ 
    display: block;
  }

  header .navigation--wrap{
    position: relative;
    height: 90px;
    background-color: initial;
    font-size: 15px;
  }

  #js-nav{
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 30px 30px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    gap: 0;
  }

  body.is-nav-open #js-nav{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  header .navigation--wrap .header-gnav .parent--list{
    border-top: 1px solid #707070;
    width: 100%;
  }

  header .navigation--wrap .header-gnav .parent--list:nth-of-type(7){
    border-bottom: 1px solid #707070;
  }

  header .navigation--wrap .header-gnav > li:last-of-type{
    margin: 30px auto;
  }

  header .navigation--wrap .header-gnav .parent--list > a{
    padding: 10px 0;
    display: block;
  }

  .header-gnav .dpdown-list-wrap{
    width: 100%;
    position: inherit;
    top: 95px;
    left: 0;
    display: none;
    background-color: #fff;
  }

  .header-gnav .dpdown-list-wrap .dplist--inner ul{
    padding: 0 0 20px 10px;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    font-size: 15px;
  }

  .header-gnav .dpdown-list-wrap .dplist--inner .child--list a{
    display: block;
    padding: 5px 0;
  }

  .header-gnav .dropdown-toggle{
    position: relative;
  }
  
  header .navigation--wrap .header-gnav .parent--list > .dropdown-toggle::before,
  header .navigation--wrap .header-gnav .parent--list > .dropdown-toggle::after{
    content: "";
    display: block;
    width: 18px;
    height: 1px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #707070;
    transition: .4s;
    transform-origin: center;
  }
}

 header .navigation--wrap .header-gnav .parent--list > .dropdown-toggle::after{
    transform: translateY(-50%) rotate(90deg);
 }

 header .navigation--wrap .header-gnav .parent--list > .dropdown-toggle.active::after{
    transform: translateY(-50%) rotate(180deg);
 }

 header .navigation--wrap .header-gnav .dropdown-toggle.active::before{
  opacity: 0;
 }

body.is-nav-open .hamburger__line{
  background: #707070;
}

body.is-nav-open .hamburger__line:nth-child(1){
  transform: translateY(16px) rotate(45deg);
}
body.is-nav-open .hamburger__line:nth-child(2){
  opacity:0;
}
body.is-nav-open .hamburger__line:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}
  
/* ---------------------------------------------
  top-mv
--------------------------------------------- */
.top--page{
  background: linear-gradient(rgba(239, 248, 255, 1) 0%, rgba(213, 228, 255, 1) 100%);
  padding-top: 95px;
}

.top--mvWrap{
  padding-top: 100px;
}

.top--mvWrap .mv--copy{
  width: 300px;
  font-size: 25px;
}

.mv--copy p{
  letter-spacing: 4px;
  font-weight: 500;
  margin-top: 15px;
}

@media (max-width: 768px){

  .top--mvWrap{
    padding-top: 60px;
  }

  .top--mvWrap .mv--copy{
    width: 275px;
    font-size: 22px;
    margin: auto;
  }
}

/* ---------------------------------------------
  top-intro
--------------------------------------------- */
.top--introWrap{
  margin-top: 290px;
  margin-bottom: 120px;
}

.top--introWrap .intro--contentWrap{
  width: 495px;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  margin-left: auto;
}

.top--introWrap h2{
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 15px;
}

.top--introWrap p{
  line-height: 2.2;
  margin-bottom: 55px;
  font-size: 17px;
}

@media (max-width: 768px){
  .top--introWrap{
    margin-top: 270px;
    margin-bottom: 90px;
  }

  .top--introWrap .intro--contentWrap{
    width: 100%;
    padding-right: 0;
    margin-left: 0;
  }

  .top--introWrap h2{
    font-weight: 500;
    font-size: 19px;
    margin-bottom: 15px;
  }

  .top--introWrap p{
    line-height: 2.2;
    margin-bottom: 70px;
    font-size: 14px;
  }
}

/* ---------------------------------------------
  top--approachWrap
--------------------------------------------- */
.top--approachWrap{
  margin-bottom: 90px;
}

.top--approachWrap h2{
  color: var(--corporate);
  font-weight: 500;
  font-size: 42px;
  text-align: center;
  margin-bottom: 20px;
}

.top--approachWrap h2 span{
  font-size: 67px;
  font-weight: 400;
}

.top--approachWrap .approach--content{
  display: flex;
  justify-content: space-between;
  padding-bottom: 65px;
}

.top--approachWrap .approach--content .content--detail{
  width: calc((100% - 170px) / 3);
}

.top--approachWrap .approach--content .content--detail h3{
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}

.top--approachWrap .approach--content .content--detail span{
  font-size: 13px;
  border: 1px solid #2B2B2F;
  display: block;
  width: 215px;
  padding: 3px 0;
  text-align: center;
  margin: auto;
  border-radius: 15px;
  margin-bottom: 20px;
}
.top--approachWrap .approach--content .content--detail p{
  margin-bottom: 22px;
  min-height: 9em;
  line-height: 1.8;
}

.top--approachWrap .approach--content .content--detail figure{
  margin-bottom: 22px;
}

.top--approachWrap .approach--content .content--detail figure img{
  width: 100%;
}

.top--approachWrap .approach--content .content--detail .link--btn{
  width: 165px;
  margin: auto;
}

@media (max-width: 768px){
  .top--approachWrap{
    margin-bottom: 80px;
  }

  .top--approachWrap h2{
    font-size: 26px;
    margin-bottom: 10px;
  }

  .top--approachWrap h2 span{
    font-size: 40px;
  }

  .top--approachWrap .approach--content{
    flex-direction: column;
    padding-bottom: 50px;
  }

  .top--approachWrap .approach--content .content--detail{
    width: 100%;
    padding-bottom: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid #707070;
  }

  .top--approachWrap .approach--content .content--detail:last-of-type{
    border: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .top--approachWrap .approach--content .content--detail p{
    margin-bottom: 22px;
    min-height: auto;
    line-height: 1.8;
  }

  .top--approachWrap .approach--content .content--detail .link--btn{
    width: 100%;
    margin: auto;
  }
}

/* ---------------------------------------------
  top--aboutWrap
--------------------------------------------- */
.top--aboutWrap{
  margin-bottom: 95px;
}

.top--aboutWrap .top--contentBox{
  padding-top: 80px;
  padding-bottom: 90px;
}

.top--aboutWrap .company--content{
  display: flex;
  align-items: center;
  gap: 70px;
}

.top--aboutWrap .company--content:not(:last-of-type){
  margin-bottom: 105px;
}

.top--aboutWrap .company--content.reverse{
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.top--aboutWrap .company--content figure{
  max-width: 475px;
}

.top--aboutWrap .company--content .text--wrap{
  flex-shrink: 0;
  max-width: 340px;
}

.top--aboutWrap .company--content .text--wrap span{
  color: var(--corporate);
  border-bottom: 1px solid var(--corporate);    
}

.top--aboutWrap .company--content .text--wrap h3{
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
  margin-top: 5px;
}

.top--aboutWrap .company--content .text--wrap p{
  margin-bottom: 40px;
  line-height: 1.8;
}

.top--aboutWrap .company--content .text--wrap .btn--wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;  
}

.top--aboutWrap .company--content .text--wrap .btn--wrap .link--btn{
  width: calc((100% - 15px) / 2);
}

@media (max-width: 768px){
  .top--aboutWrap{
    margin-bottom: 80px;
  }

  .top--aboutWrap .top--contentBox{
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .top--aboutWrap .company--content{
    flex-direction: column;
    align-items: center;
    gap: 70px;
  }

  .top--aboutWrap .company--content:not(:last-of-type){
    margin-bottom: 80px;
  }

  .top--aboutWrap .company--content.reverse{
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .top--aboutWrap .company--content figure{
    max-width: 100%;
    margin-bottom: 15px;
  }

  .top--aboutWrap .company--content .text--wrap{
    flex-shrink: 0;
    max-width: 100%;
  }

  .top--aboutWrap .company--content .text--wrap span{
    display: block;
    width: fit-content;
    margin: auto;  
  }

  .top--aboutWrap .company--content .text--wrap p{
    margin-bottom: 20px;
  }

  .top--aboutWrap .company--content .text--wrap .btn--wrap{
    flex-direction: column; 
  }

  .top--aboutWrap .company--content .text--wrap .btn--wrap .link--btn{
    width: 100%;
  }
}

/* ---------------------------------------------
  top--newsWrap
--------------------------------------------- */
.top--newsWrap{
  margin-bottom: 100px;
}

.top--newsWrap .top--contentBox{
  padding-top: 30px;
  padding-bottom: 50px;
}

.top--newsWrap h2{
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
  color: var(--corporate);
}

.top--newsWrap .news--list li{
  border-top: 1px solid #2B2B2F;
}

.top--newsWrap .news--list li:last-of-type{
  border-bottom: 1px solid #2B2B2F;
}

.top--newsWrap .news--list li a{
  display: flex;
  align-items: center;
  padding: 30px 0;
  gap: 20px;
}

.top--newsWrap .news--list li a .news--cat{
  width: 95px;
  background-color: var(--corporate);
  color: #fff;
  border-radius: 15px;
  padding: 3px 0;
  text-align: center;
}

.top--newsWrap .link--btn{
  margin: 20px auto 0;
}

@media (max-width: 768px){

  .top--newsWrap .news--list li a{
    display: flex;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    flex-wrap: wrap;
  }

  .top--newsWrap .news--list li a .news--ttl{
    width: 100%;
  }
}

/* ---------------------------------------------
  contact--wrap
--------------------------------------------- */
.contact--wrap{
  margin-bottom: 110px;
}

.contact--wrap .contact--outer{
  position: relative;
  max-width: 1000px;
  overflow: hidden;
  border-radius: 10px;
}

.contact--wrap .contact--outer picture{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact--wrap .contact--outer a:hover{
  opacity: 1;
}

.contact--wrap .contact--outer a img{
  transition: .5s;
}

.contact--wrap .contact--outer a:hover img{
  transform: scale(1.05);
}

.contact--wrap h2{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 150px;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}

.contact--wrap h2 span{
  display: block;
  font-weight: 400;
  margin-top: 10px;
  font-size: 15px;
}

@media (max-width: 768px){
 .contact--wrap{
    margin-bottom: 110px;
  }

  .contact--wrap .contact--outer{
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 0;
  }

  .contact--wrap h2{
    position: inherit;
    top: 50%;
    transform: initial;
    right: 150px;
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    border-radius: 70px;
    border: 1px solid #042175;
    color: #042175;
    padding: 15px 0;
  }

  .contact--wrap h2 span{
    margin-top: 0;
  }
}

/* ---------------------------------------------
  footer
--------------------------------------------- */
footer .footer--upper{
  background-color: var(--corporate);
  color: #fff;
  position: relative;
}

footer .footer--upper span{
  width: 382px;
  padding-left: 20px;
  display: block;
}

footer .footer--upper .footer--upperOuter{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

footer .footer--upper .footer--navigation{
  padding-top: 50px;
  display: flex;
  justify-content: flex-end;
  gap: 60px;
}

footer .footer--upper .footer--navigation ul li{
  margin-bottom: 7px;
}

footer .footer--upper .footer--navigation .child--list{
  padding-left: 1em;
  margin-top: 7px;
}

footer .footer--lower{
  background-color: #000;
}

footer .footer--lower .copy{
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 15px 0 20px;
}

@media (max-width: 768px){
  footer .footer--upper{
    background-color: var(--corporate);
    color: #fff;
    position: relative;
    font-size: 16px;
    padding-bottom: 60px;
  }

  footer .footer--upper .footer--upperOuter{
    position: initial;
    transform: initial;
  }

  footer .footer--upper .footer--navigation{
    flex-direction: column;
    gap: 0;
  }
  
  footer .footer--upper .footer--navigation .child--list {
    max-height: 0;
    overflow: hidden;
    transition: max-height .6s;
  }
  
  footer .footer--upper .footer--navigation .parent--list {
    margin-bottom: 7px;
    border-bottom: 1px solid #fff;
    cursor: pointer;
  }

  footer .footer--upper .footer--navigation .parent--list > a {
    display: block;
    padding-bottom: 7px;
  }

  footer .footer--upper .footer--navigation .parent--list.open > .child--list {
    max-height: 500px;
  }

  footer .footer--upper .footer--navigation .child--list{
    padding-left: 1em;
    margin-top: 0;
  }

  footer .footer--upper .footer--navigation .parent--list .child--list li:last-of-type{
    padding-bottom: 20px;
  }

  footer .footer--upper .footer--navigation .parent--list.acc{
    position: relative;
  }

  footer .footer--upper .footer--navigation .parent--list.acc::before,
  footer .footer--upper .footer--navigation .parent--list.acc::after{
    content: "";
    background: #fff;
    content: "";
    display: block;
    width: 13px;
    height: 1px;
    position: absolute;
    top: 10px;
    right: 0;
    transition: .4s;
    transform-origin: center;
  }

  footer .footer--upper .footer--navigation .parent--list.acc::after{
      transform: rotate(90deg);
  }

  footer .footer--upper .footer--navigation .parent--list.open.acc::after{
      transform: rotate(180deg);
  }

  footer .footer--upper .footer--navigation .parent--list.open.acc::before{
    opacity: 0;
  }

  footer .footer--lower .copy{
    font-size: 12px;
  }
}

/* ---------------------------------------------
  about--page
--------------------------------------------- */
.about--page{
  background-color: #274EAF;
}

.about--page h2{
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}

.about--page h2.wh{
  color: #fff;
}

.about--page .headding--read{
  line-height: 2;
}

.about--page .firstView--Wrap{
  color: #fff;
  padding-top: 80px;
  margin-bottom: 120px;
}

.about--page .firstView--Wrap .content-outer{
  position: relative;
}

.about--page .firstView--Wrap .content-outer .text--wrap{
  max-width: 45%;
}

.about--page .firstView--Wrap .content-outer .text--wrap h1{
  font-size: 60px;
  position: relative;
  padding: 12px 0 5px ;
  font-weight: 500;
}

.about--page .firstView--Wrap .content-outer .text--wrap h1::before{
  content: "";
  display: block;
  width: 41px;
  height: 11px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 26%,
   transparent 26%, transparent 37%,
    rgba(169, 185, 223, 1) 37%, rgba(169, 185, 223, 1) 63%,
     transparent 63%, transparent 74%,
      rgba(104, 132, 199, 1) 74%,rgba(104, 132, 199, 1) 100%);
}

.about--page .firstView--Wrap .content-outer .text--wrap h1::after{
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.about--page .firstView--Wrap .content-outer .text--wrap h1 span{
  font-size: 15px;
  font-weight: 400;
  position: absolute;
  left: 0;
  bottom: -30px;
}

.about--page .firstView--Wrap .content-outer .text--wrap .read{
  padding-top: 100px;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 1em;
}

.about--page .firstView--Wrap .content-outer .text--wrap .detail{
  line-height: 2;
}

.about--page .firstView--Wrap .content-outer figure{
  position: absolute;
  top: 12px;
  right: -10%;
  max-width: 595px;
}

.about--page .business--introduction .content--outer{
  background-color: #fff;
  border-radius: 30px;
  padding: 60px 115px 130px;
  box-sizing: border-box;
}

.about--page .business--introduction .headding--wrap p{
  line-height: 2;
  margin-bottom: 50px;
}

.about--page .business--introduction .introduction--content li{
  border-top: 1px solid #707070;
  padding: 85px 0;
}

.about--page .business--introduction .introduction--content li:last-of-type{
  border-bottom: 1px solid #707070;
}

.about--page .business--introduction .introduction--content li .ttl--wrap{
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 25px;
}

.about--page .business--introduction .introduction--content li .ttl--wrap h3{
  font-size: 28px;
  font-weight: 500;
  color: #042175;
}

.about--page .business--introduction .introduction--content li .ttl--wrap span{
  display: block;
  width: 255px;
  border: 1px solid #2B2B2F;
  border-radius: 15px;
  padding: 2px 0;
  text-align: center;
}

.about--page .business--introduction .introduction--content li .detail--wrap{
  display: flex;
  gap: 55px;
}

.about--page .business--introduction .introduction--content li .detail--wrap .text--wrap{
  width: 270px;
  flex-shrink: 0;
}

.about--page .business--introduction .introduction--content li .detail--wrap .link--btn{
  margin: auto;
}

.about--page .business--introduction .introduction--content li .detail--wrap .link--btn a{
  background-color: #042175;
  width: 163px;
  margin-top: 40px;
}

.about--page .business--introduction .introduction--content li .detail--wrap .image--wrap{
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.about--page .business--introduction .introduction--content li .detail--wrap .image--wrap img{
  width: calc((100% - 15px) / 2);
  height: auto;
}

.about--page .business--field{
  margin: 60px 0 170px;
  position: relative;
}

.about--page .business--field h2{
  padding-bottom: 265px;
}

.about--page .business--field picture{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  height: 370px;
}

.about--page .business--field picture img{
  position: absolute;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  width: 1920px;
  height: auto;
  min-width: 1920px;
}

.about--page .order--flow h2{
  margin-bottom: 28px;
}

.about--page .order--flow p{
  color: #fff;
  margin-bottom: 70px;
}

.about--page .order--flow .flow--content{
  margin-bottom: 120px;
}

.about--page .order--flow .flow--content h3{
  font-size: 28px;
  text-align: center;
  color: #fff;
  background-color: #042175;
  padding: 10px 0;
  border-radius: 30px;
  margin-bottom: 30px;
  font-weight: 500;
}

.about--page .order--flow .flow--content h3 span{
  font-size: 22px;
  padding-left: .8em;
}

.about--page .order--flow .flow--content ul{
  display: flex;
  gap: 90px;
  align-items: flex-start;
  justify-content: center;
}

.about--page .order--flow .flow--content ul li{
  width: calc((100% - 270px) / 4);
}

.about--page .order--flow .flow--content ul li dl{
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about--page .order--flow .flow--content ul li dt{
  font-size: 20px;
  font-weight: 500;
  margin: 12px auto 15px;
}

.about--page .order--flow .flow--content ul li dd:last-of-type{
  position: relative;
  order: -1;
}

.about--page .order--flow .flow--content ul li:not(:last-of-type) dd:last-of-type::before{
  content: "";
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  width: 25px;
  height: 18px;
  transform: rotate(90deg) translateY(-50%);
  display: block;
  top: 50%;
  position: absolute;
  right: -45px;
}

.about--page .business-partner{
  background-color: #fff;
  padding: 120px 0 170px;
  box-sizing: border-box;
}

.about--page .business-partner h2{
  margin-bottom: 25px;
}

.about--page .business-partner p{
  text-align: center;
}

.about--page .business-partner .partner--content{
  margin-top: 40px;
  border-bottom: 1px solid #707070;
}

.about--page .business-partner .partner--content h3{
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
}

.about--page .business-partner .partner--content h3::before,
.about--page .business-partner .partner--content h3::after{
  content: "";
  display: block;
  height: 1px;
  background: #707070;
  flex-grow: 1;
}

.about--page .business-partner .partner--content ul{
  column-count: 2;
  max-width: 755px;
  margin: auto;
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 70px;
}

.about--page .business-partner .partner--content ul li{
  margin-bottom: 1em;
}

.about--page .business-partner .partner--content ul li:last-of-type{
  text-align: right;
}

.about--page .effort--wrap{
  color: #fff;
  margin: 210px 0 140px;
}

.about--page .effort--wrap h2{
  margin-bottom: 25px;
}

.about--page .effort--wrap .parent--list{
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: auto;
  margin-top: 50px;
}

.about--page .effort--wrap .parent--list > li{
  padding: 0 30px;
  border-left: 1px solid #fff;
}

.about--page .effort--wrap .parent--list > li:last-of-type{
  border-right: 1px solid #fff;
}

.about--page .othercontent--nav h2{
  font-size: 22px;
  margin-bottom: 20px;
  color: #fff;
}

@media (max-width: 900px){
  .about--page .business--introduction .introduction--content li .detail--wrap{
    flex-direction: column-reverse;
  }

  .about--page .business--introduction .introduction--content li .detail--wrap .text--wrap{
    width: 100%;
  }
}

@media (max-width: 768px){

  .about--page h2{
    font-size: 25px;
  }

  .about--page .firstView--Wrap{
    color: #fff;
    padding-top: 60px;
    margin-bottom: 60px;
  }

  .about--page .firstView--Wrap .content-outer .text--wrap{
    max-width: 100%;
  }

  
  .about--page .firstView--Wrap .content-outer .text--wrap h1{
    font-size: 43px;
  }

  .about--page .firstView--Wrap .content-outer .text--wrap .read{
    padding-top: 360px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 1em;
  }

  .about--page .firstView--Wrap .content-outer figure{
    position: absolute;
    top: 160px;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    max-width: 260px;
    width: 100%;
  }

  .about--page .business--introduction .content--outer{
    padding: 20px 30px 60px;
  }

  .about--page .business--introduction .headding--wrap p{
    margin-bottom: 30px;
  }

  .about--page .business--introduction .introduction--content li{
    padding: 45px 0;
  }

  .about--page .business--introduction .introduction--content li .ttl--wrap{
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
  }

  .about--page .business--introduction .introduction--content li .ttl--wrap h3{
    font-size: 25px;
  }

  .about--page .business--introduction .introduction--content li .ttl--wrap span{
    width: 100%;
  }

  .about--page .business--introduction .introduction--content li .detail--wrap{
    display: flex;
    gap: 25px;
  }

  .about--page .business--introduction .introduction--content li .detail--wrap .text--wrap{
    width: 100%;
  }

  .about--page .business--introduction .introduction--content li .detail--wrap .link--btn a{
    width: 100%;
    margin-top: 20px;
  }

  .about--page .business--field{
    margin: 40px 0 100px;
    position: relative;
  }

  .about--page .business--field h2{
    padding-bottom: 40px;
  }

  .about--page .business--field picture{
    position: initial;
    height: auto;
  }

  .about--page .business--field picture img{
    position: initial;
    transform: initial;
    width: 100%;
    height: auto;
    min-width: 100%;
  }

  .about--page .order--flow h2{
    margin-bottom: 20px;
  }

  .about--page .order--flow p{
    margin-bottom: 35px;
  }

  .about--page .order--flow .flow--content{
    margin-bottom: 80px;
  }

  .about--page .order--flow .flow--content ul{
    flex-direction: column;
    gap: 50px;
  }

  .about--page .order--flow .flow--content ul li{
    width: 100%;
  }

  .about--page .order--flow .flow--content ul li dl{
    display: grid;
    grid-template-columns: 140px auto;
    grid-template-rows: auto auto;
    grid-template-areas: "image ttl" "image detail";
    gap: 10px 20px;
  }

  .about--page .order--flow .flow--content ul li dt{
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    grid-area: ttl;
  }

  .about--page .order--flow .flow--content ul li dd:first-of-type{
    grid-area: detail;
  }
  
  .about--page .order--flow .flow--content ul li dd:last-of-type{
    order: 0;
    grid-area: image;
  }
  
  .about--page .order--flow .flow--content ul li dd:last-of-type img{
    width: auto;
    height: 140px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
  }

  .about--page .order--flow .flow--content ul li:not(:last-of-type) dd:last-of-type::before{
    top: initial;
    right: initial;
    left: 58px;
    bottom: -35px;
    transform: rotate(180deg);
  }

  .about--page .business-partner{
    padding: 80px 0 55px;
  }

  .about--page .business-partner h2{
    margin-bottom: 20px;
  }

  .about--page .business-partner p{
    text-align: left;
  }

  .about--page .business-partner .partner--content{
    margin-top: 30px;
  }

  .about--page .business-partner .partner--content h3{
    font-size: 18px;
    margin-bottom: 30px;
  }

  .about--page .business-partner .partner--content ul{
    column-count: 1;
    max-width: 100%;
    padding-bottom: 30px;
  }

  .about--page .business-partner .partner--content ul li{
    margin-bottom: .6em;
  }

  .about--page .effort--wrap{
    margin: 40px 0 80px;
  }

  .about--page .effort--wrap h2{
    margin-bottom: 20px;
  }

  .about--page .effort--wrap .parent--list{
    flex-direction: column;
    max-width: 100%;
    margin-top: 30px;
  }

  .about--page .effort--wrap .parent--list > li{
    padding: 0;
    border-left: 0;
  }

  .about--page .effort--wrap .child--list > li{
    margin-bottom: 8px;
  }

  .about--page .effort--wrap .parent--list > li:last-of-type{
    border-right: 0;
  }

  .about--page .othercontent--nav h2{
    font-size: 18px;
    margin-bottom: 15px;
  }
}

/* ---------------------------------------------
  produtpage
--------------------------------------------- */
.products .firstView--Wrap{
  margin-bottom: 220px;
}

.products .firstView--Wrap .content-outer .text--wrap{
  max-width: 47%;
}

.products .firstView--Wrap .content-outer .text--wrap h1{
  font-size: 123px;
  position: relative;
  padding: 12px 0 5px ;
  font-weight: 500;
  color: #042175;
}

.products .firstView--Wrap .content-outer .text--wrap h1::before{
  content: "TSUKURU";
  font-size: 15px;
  font-weight: 400;
  left: 0;
  top: 30px;
  position: absolute;
}

.products .firstView--Wrap .content-outer .text--wrap h1 span{
  font-size: 15px;
  font-weight: 400;
  color: initial;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.products .firstView--Wrap .content-outer .text--wrap .read{
  padding-top: 90px;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 1em;
  color: #042175;
}

.products .firstView--Wrap .content-outer .text--wrap .detail{
  line-height: 2;
}

.products .container--narrow{
  padding: 0 45px;
}

@media (max-width: 768px){

}

.manufacturing--page .main--image{
  position: absolute;
  top: 185px;
  right: 0;
  width: 54vw;
  max-width: 800px;
}

.manufacturing--page h2.round{
  margin-bottom: 20px;
}

.manufacturing--page .car--harness{
  margin-bottom: 290px;
}

.manufacturing--page .car--harness .modal{
  padding: 50px 0;
  position:relative;
  display:inline-block;
}

.manufacturing--page .car--harness .modal .point{
  position:absolute;
  width:34px;
  height:34px;
  border-radius:50%;
  border:none;
  background:#0095D0;
  color:#fff;
  font-size:20px;
  font-weight: 600;
  cursor:pointer;
  transform:translate(-50%,-50%);
  transition: .4s;
  border: 2px solid #0095D0;
}

.manufacturing--page .car--harness .modal .point:hover{
  background-color: #fff;
  color: #0095D0;
}

.manufacturing--page .car--harness .modal .point::after{
  content: "click!";
  color: #0095D0;
  font-size: 13px;
  font-weight: 600;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.manufacturing--page .car--harness .modal{
  .point1{
    top: 77.2%;
    left: 100%;
  }
  .point2{
    top:59%;
    left:100%;
  }
  .point3{
    top:14.2%;
    left:0%;
  }
  .point4{
    top:30%;
    left:0%;
  }
  .point5{
    top:40%;
    left:0%;
  }
  .point6{
    top:36%;
    left:100%;
  }
}

.manufacturing--page .car--harness .modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:9999;
}

.manufacturing--page .car--harness .modal-overlay.show{
  opacity: 1;
  visibility: visible;
}

.manufacturing--page .car--harness .modal-content{
  display:none;
  background: #fff;
  padding: 20px 20px 30px;
  box-sizing: border-box;
  max-width: 480px;
  width: 100%;
  position: relative;
  border: 3px solid #004893;
  border-radius: 25px;
}

.manufacturing--page .car--harness .modal-content h3{
  font-size: 30px;
  font-weight: 600;
  color: #004893;
  margin-bottom: 10px;
}

.manufacturing--page .car--harness .modal-content p{
  font-size: 18px;
}

.manufacturing--page .car--harness .modal-content.active{
  display:block;
}

.manufacturing--page .car--harness .close{
  position:absolute;
  right:15px;
  top:20px;
  cursor:pointer;
  border: 0;
  background: none;
}

.manufacturing--page .car--harness .close::before,
.manufacturing--page .car--harness .close::after{
  content: "";
  height: 2px;
  width: 25px;
  transform: rotate(45deg);
  background: #004893;
  display: block;
  transform-origin: top;
}

.manufacturing--page .car--harness .close::after{
  transform: rotate(135deg);
}

.manufacturing--page .products--listWrap ul{
  display: flex;
  flex-wrap: wrap;
  gap: 60px 35px;
  margin-bottom: 75px;
}

.manufacturing--page .products--listWrap ul li{
  width: calc((100% - 70px) / 3);
}

.manufacturing--page .products--listWrap ul li figcaption{
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
}

.products .product--flowWrap .content--outer{
  border-radius: 100px;
  border: 8px solid #042175;
  background-color: #fff;
  padding: 30px 45px 50px;
  box-sizing: border-box;
}

.products .product--flowWrap h3{
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 5px solid #042175;
  margin: auto;
  text-align: center;
  width: fit-content;
  margin-bottom: 40px;
  display: block;
}

.products .product--flowWrap ul{
  margin-top: 50px;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  counter-reset: num 0;
}

.products .product--flowWrap ul li{
  width: calc((100% - 75px) / 4);
  position: relative;
}

.products .product--flowWrap ul li dl{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products .product--flowWrap ul li dt{
  font-size: 18px;
  font-weight: 500;
  display: flex;
  gap: 7px;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  min-height: 70px;
  align-self: flex-start;
}

.products .product--flowWrap ul li dt::before{
  counter-increment: num 1;
  content: counter(num, decimal-leading-zero) ;
  color: #042175;
  font-size: 43px;
}

.products .product--flowWrap ul li dd:last-of-type{
  order: -1;
  min-height: 105px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products .product--flowWrap ul li:first-of-type dd:last-of-type img{
  width: 107px;
}

.products .product--flowWrap ul li:nth-of-type(2) dd:last-of-type img{
  width: 74px;
}

.products .product--flowWrap ul li:nth-of-type(3) dd:last-of-type img{
  width: 113px;
}

.products .product--flowWrap ul li:nth-of-type(4) dd:last-of-type img{
  width: 100px;
}

.products .product--flowWrap ul li:not(:last-of-type) dd:last-of-type::before{
  content: "";
  background: #042175;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  width: 23px;
  height: 18px;
  transform: rotate(90deg);
  display: block;
  top: 30px;
  position: absolute;
  right: -28px;
}

.manufacturing--page .industy--wrap p{
  margin-bottom: 45px;
}

.manufacturing--page .industy--wrap .products--listWrap{
  margin-top: 70px;
}

.manufacturing--page .smartm--wrap{
  margin: 120px auto 80px;
  background-color: #EFF8FF;
}

.manufacturing--page .smartm--wrap .content--inner{
  padding-top: 50px;
  padding-bottom: 50px;
}

.manufacturing--page .smartm--wrap .headding--wrap h2{
  text-align: center;
  margin-bottom: 35px;
}

.manufacturing--page .smartm--wrap .headding--wrap h2 span{
  width: 167px;
  display: inline-block;
  padding-right: 5px;
}

.manufacturing--page .smartm--wrap .headding--wrap p{
  margin-bottom: 40px;
}

.manufacturing--page .smartm--wrap ul{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.manufacturing--page .smartm--wrap ul li{
  width: calc((100% - 170px) / 3);
}

.manufacturing--page .smartm--wrap ul li dl{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.manufacturing--page .smartm--wrap ul li dl dt{
  font-size: 18px;
  font-weight: 500;
  margin: 15px auto 20px;
}

.manufacturing--page .smartm--wrap ul li dl dd:last-of-type{
  order: -1;
  width: 95px;
}

.products .contact--wrap{
  margin-bottom: 200px;
}

.products .contact--wrap a{
  border: 1px solid #707070;
  border-radius: 100px;
  display: block;
  margin: auto;
  text-align: center;
  width: 450px;
  padding: 25px 0;
  transition: .4s;
  background-color: #fff;
}

.products .contact--wrap a:hover{
  background-color: #707070;
  color: #fff;
}

@media (max-width: 768px){
  .products .firstView--Wrap{
    margin-bottom: 70px;
  }
  
  .products .firstView--Wrap .content-outer .text--wrap{
    max-width: 100%;
  }
  
  .products .firstView--Wrap .content-outer .text--wrap h1{
    font-size: 80px;
    padding: 25px 0 5px ;
    text-align: center;
  }
  
  .products .firstView--Wrap .content-outer .text--wrap h1::before{
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
  }
  
  .products .firstView--Wrap .content-outer .text--wrap h1 span{
    font-size: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  
  .products .firstView--Wrap .content-outer .text--wrap .read{
    padding-top: 35px;
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .products .container--narrow{
    padding: 0;
  }
  
  .manufacturing--page .main--image{
    position: initial;
    width: 100%;
    max-width: 100%;
  }
  
  .manufacturing--page h2.round{
    margin-bottom: 20px;
  }
  
  .manufacturing--page .car--harness{
    margin-bottom: 120px;
  }
  
  .manufacturing--page .car--harness .modal{
    padding: 60px 0;
  }
  
  .manufacturing--page .car--harness .modal .point{
    width:24px;
    height:24px;
    font-size:15px;
  }
  
  .manufacturing--page .car--harness .modal .point::after{
    content: none;
  }
  
  .manufacturing--page .car--harness .modal{
    .point1{
      top: 66%;
    }
    .point2{
      top:53.5%;
    }
    .point3{
      top:22%;
    }
    .point4{
      top:32.5%;
    }
    .point5{
      top:40%;
    }
    .point6{
      top:37.5%;
    }
  }

  .manufacturing--page .car--harness .modal aside{
    font-size: 11px;
    color: #0095D0;
    text-align: center;
    margin-top: 5px;
  }
  
  .manufacturing--page .car--harness .modal-content{
    padding: 20px 20px 30px;
    max-width: 90%;
    width: 90%;
  }
  
  .manufacturing--page .car--harness .modal-content h3{
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .manufacturing--page .car--harness .modal-content p{
    font-size: 14px;
  }
  
  .manufacturing--page .products--listWrap ul{
    display: flex;
    flex-wrap: wrap;
    gap: 35px 28px;
    margin-bottom: 30px;
  }
  
  .manufacturing--page .products--listWrap ul li{
    width: calc((100% - 28px) / 2);
  }
  
  .manufacturing--page .products--listWrap ul li figcaption{
    font-size: 13px;
  }
  
  .products .product--flowWrap .content--outer{
    border-radius: 50px;
    padding: 30px 20px 35px;
    box-sizing: border-box;
  }
  
  .products .product--flowWrap h3{
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 3px solid #042175;
  }
  
  .products .product--flowWrap ul{
    margin-top: 10px;
    flex-direction: column;
    gap: 65px;
    justify-content: center;
    align-items: center;
  }
  
  .products .product--flowWrap ul li{
    width: 100%;
  }
  
  .products .product--flowWrap ul li dl{
    display: grid;
    grid-template-columns: auto 160px;
    grid-template-rows: auto auto;
    grid-template-areas: "image ttl" "image detail";
    gap: 15px 22px;
  }
  
  .products .product--flowWrap ul li dt{
    font-size: 16px;
    gap: 10px;
    margin-bottom: 5px;
    min-height: auto;
    grid-area: ttl;
    justify-content: flex-start;
  }
  
  .products .product--flowWrap ul li dt::before{
    font-size: 30px;
  }

  .products .product--flowWrap ul li dd:first-of-type{
    grid-area: detail;
  }
  
  .products .product--flowWrap ul li dd:last-of-type{
    order: initial;
    min-height: auto;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-area: image;
  }
  
  .products .product--flowWrap ul li:first-of-type dd:last-of-type img{
    width: 80px;
  }
  
  .products .product--flowWrap ul li:nth-of-type(2) dd:last-of-type img{
    width: 84px;
  }
  
  .products .product--flowWrap ul li:nth-of-type(3) dd:last-of-type img{
    width: 74px;
  }
  
  .products .product--flowWrap ul li:not(:last-of-type) dd:last-of-type::before{
    top: initial;
    bottom: -30px;
    position: absolute;
    right: initial;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
  }
  
  .manufacturing--page .industy--wrap p{
    margin-bottom: 45px;
  }
  
  .manufacturing--page .industy--wrap .products--listWrap{
    margin-top: 70px;
  }
  
  .manufacturing--page .smartm--wrap{
    margin: 80px auto 40px;
  }
  
  .manufacturing--page .smartm--wrap .headding--wrap h2{
    font-size: 18px;
    margin-bottom: 25px;
  }
  
  .manufacturing--page .smartm--wrap .headding--wrap h2 span{
    width: 145px;
  }
  
  .manufacturing--page .smartm--wrap .headding--wrap p{
    margin-bottom: 20px;
  }
  
  .manufacturing--page .smartm--wrap ul{
    flex-direction: column;
    align-items: center;
  }
  
  .manufacturing--page .smartm--wrap ul li{
    width: 100%;
    margin-bottom: 20px;
  }
  
  .manufacturing--page .smartm--wrap ul li dl{
    flex-direction: column;
    align-items: center;
  }

  .manufacturing--page .smartm--wrap ul li dl dt{
    font-size: 16px;
    font-weight: 500;
    margin: 15px auto 10px;
  }
  
  .products .contact--wrap{
    margin-bottom: 70px;
    padding: 0 20px;
  }
  
  .products .contact--wrap a{
    width: 100%;
    padding: 17px 0;
  }

}

.products .firstView--Wrap.industry{
  margin-bottom: 95px;
  position: relative;
}

.sourcing--page .main--image{
  position: absolute;
  bottom: -95px;
  left: 47%;
  width: 50vw;
  max-width: 600px;
}

.products .firstView--Wrap.industry .content-outer .text--wrap h1,
.products .firstView--Wrap.industry .content-outer .text--wrap .read{
  color: #274EAF;
}

.products .firstView--Wrap.industry .content-outer .text--wrap h1::before{
  content: "ERABU";
}

.sourcing--page .products .product--flowWrap{
  margin-bottom: 150px;
}

.sourcing--page .products .product--flowWrap .content--outer{
  border-color: #274EAF;
}

.sourcing--page .products .product--flowWrap ul li:first-of-type dd:last-of-type img{
  width: 98px;
}

.sourcing--page .products .product--flowWrap ul li:nth-of-type(2) dd:last-of-type img{
  width: 57px;
}

.sourcing--page .products .product--flowWrap ul li:nth-of-type(3) dd:last-of-type img{
  width: 95px;
}

.sourcing--page .products .product--flowWrap ul li:nth-of-type(4) dd:last-of-type img{
  width: 90px;
}

.sourcing--page .products--handled{
  position: relative;
}

.sourcing--page .products--handled .image-deco{
  position: absolute;
  top: -110px;
  left: -5px;
  width: 28vw;
  max-width: 300px;
}

.sourcing--page .products--handled .headding--wrap{
  max-width: 545px;
  margin: auto;
  margin-bottom: 70px;
}

.sourcing--page .products--handled .headding--wrap h2{
  margin-bottom: 35px;
}

.sourcing--page .products--handled .products--detailBlock{
  margin-bottom: 85px;
}

.sourcing--page .products--handled .products--detailBlock .detail--headding{
  margin-bottom: 25px;
}

.sourcing--page .products--handled .products--detailBlock .detail--headding h3{
  color: #042175;
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 9px;
  border-bottom: 2px solid #042175;
  margin-bottom: 20px;
}

.sourcing--page .products--handled .products--detailBlock .detail--introduction{
  margin-bottom: 30px;
}

.sourcing--page .products--handled .products--detailBlock .detail--introduction,
.sourcing--page .products--handled .products--detailBlock .maker--wrap ul{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0 42px;
  flex-wrap: wrap;
}

.sourcing--page .products--handled .products--detailBlock .detail--introduction dl,
.sourcing--page .products--handled .products--detailBlock .detail--introduction figure,
.sourcing--page .products--handled .products--detailBlock .maker--wrap ul li{
  width: calc((100% - 84px) / 3);
}

.sourcing--page .products--handled .products--detailBlock .detail--introduction dt,
.sourcing--page .products--handled .products--detailBlock .detail--introduction dd{
  padding: 5px 0;
  border-bottom: 1px solid #717171;
}

.sourcing--page .products--handled .products--detailBlock .detail--introduction dd::before,
.sourcing--page .products--handled .products--detailBlock .maker--wrap ul li::before{
  content: "・";
}

.sourcing--page .products--handled .products--detailBlock .maker--wrap h3{
  font-size: 17px;
  margin-bottom: 12px;
}

.sourcing--page .products--handled .products--detailBlock .maker--wrap h3::before{
  content: "■";
}

.sourcing--page .products--handled .products--detailBlock .maker--wrap ul{
  position: relative;
}

.sourcing--page .products--handled .products--detailBlock .maker--wrap li{
  background-color: #E6EBF4;
  padding: 2px 4px;
  box-sizing: border-box;
}

.sourcing--page .products--handled .products--detailBlock .maker--wrap li:nth-of-type(n+4):nth-of-type(-n+6),
.sourcing--page .products--handled .products--detailBlock .maker--wrap li:nth-of-type(n+10):nth-of-type(-n+12){
  background-color: #F7FAFF;
}

.sourcing--page .products--handled .products--detailBlock .maker--wrap ul::after{
  content: "※50音順";
  position: absolute;
  right: 0;
  bottom: -25px;
}

.sourcing--page .products--handled .products--detailBlock figcaption{
  font-size: 14px;
}

.sourcing--page .producsts--list.col2{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.sourcing--page .producsts--list.col2 .products--detailBlock{
  width: calc((100% - 73px) / 2);
}

.sourcing--page .products--handled .producsts--list.col2 .products--detailBlock .detail--introduction{
  gap: 0 30px;
}

.sourcing--page .products--handled .producsts--list.col2 .products--detailBlock .detail--introduction dl{
  width: 135px;
  flex-shrink: 0;
}

.sourcing--page .products--handled .producsts--list.col2 .products--detailBlock .detail--introduction dt,
.sourcing--page .products--handled .producsts--list.col2 .products--detailBlock .detail--introduction dd{
  padding: 2px 0;
}

.sourcing--page .products--handled .producsts--list.col2 .products--detailBlock .detail--introduction figure{
  width: calc(100% - 165px);
}

.sourcing--page .products--handled .producsts--list.col2 .products--detailBlock .maker--wrap ul li{
  width: 100%;
}

.sourcing--page .products--handled .producsts--list.col2 .products--detailBlock .maker--wrap li:nth-of-type(even){
  background-color: #F7FAFF;
}

.sourcing--page .products--handled .other--products{
  margin-bottom: 220px;
}

.sourcing--page .products--handled .other--products h3{
  color: #042175;
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 9px;
  border-bottom: 2px solid #042175;
  margin-bottom: 20px;
}

.sourcing--page .products--handled .other--products dl{
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 17px;
  margin-bottom: 30px;
}

.sourcing--page .products--handled .other--products dt{
  width: 115px;
}

.sourcing--page .products--handled .other--products dd::before{
  content: "\2026";
  margin-right: 5px;
}

.sourcing--page .products--handled .other--products p,
.sourcing--page .products--handled .other--products ul{
  font-size: 17px;
}

.sourcing--page .products--handled .other--products ul li::before{
  content: "・";
}

.sourcing--page .supply--wrap{
  margin-bottom: 195px;
}

.sourcing--page .supply--wrap p{
  margin: 25px 0 35px;
}

.sourcing--page .supply--wrap ul{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.sourcing--page .supply--wrap ul li{
  width: calc((100% - 100px) / 3);
}

.sourcing--page .supply--wrap ul li dt{
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 20px;
}

.sourcing--page .supply--wrap ul li dd:first-of-type{
  margin-bottom: 30px;
}

@media (max-width: 768px){
  .products .firstView--Wrap.industry{
    margin-bottom: 65px;
    position: relative;
  }
  
  .sourcing--page .main--image{
    position: initial;
    width: 100%;
    max-width: 100%;
  }
  
  .sourcing--page .products .product--flowWrap{
    margin-bottom: 80px;
  }
  
  .sourcing--page .products .product--flowWrap ul li:first-of-type dd:last-of-type img{
    width: 68px;
  }
  
  .sourcing--page .products .product--flowWrap ul li:nth-of-type(2) dd:last-of-type img{
    width: 50px;
  }
  
  .sourcing--page .products .product--flowWrap ul li:nth-of-type(3) dd:last-of-type img{
    width: 70px;
  }
  
  .sourcing--page .products .product--flowWrap ul li:nth-of-type(4) dd:last-of-type img{
    width: 80px;
  }
  
  .sourcing--page .products--handled .image-deco{
    display: none;
  }
  
  .sourcing--page .products--handled .headding--wrap{
    max-width: 100%;
    margin-bottom: 50px;
  }
  
  .sourcing--page .products--handled .headding--wrap h2{
    margin-bottom: 25px;
  }
  
  .sourcing--page .products--handled .products--detailBlock{
    margin-bottom: 75px;
  }
  
  .sourcing--page .products--handled .products--detailBlock .detail--headding h3{
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .sourcing--page .products--handled .products--detailBlock .detail--introduction{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px 26px;
    flex-wrap: wrap;
  }

  .sourcing--page .products--handled .products--detailBlock .maker--wrap ul{
    flex-direction: column;
    gap: 0;
  }
  
  .sourcing--page .products--handled .products--detailBlock .detail--introduction dl{
    width: 100%;
    order: 2;
  }

  .sourcing--page .products--handled .products--detailBlock .detail--introduction figure{
    width: calc((100% - 26px) / 2);
  }

  .sourcing--page .products--handled .products--detailBlock .maker--wrap ul li{
    width: 100%;
  }
  
  .sourcing--page .products--handled .products--detailBlock .maker--wrap h3{
    font-size: 13px;
  }
  
  .sourcing--page .products--handled .products--detailBlock .maker--wrap li:nth-of-type(n+4):nth-of-type(-n+6),
  .sourcing--page .products--handled .products--detailBlock .maker--wrap li:nth-of-type(n+10):nth-of-type(-n+12){
    background-color: #E6EBF4;
  }
  
  .sourcing--page .products--handled .products--detailBlock .maker--wrap li:nth-of-type(even),
    .sourcing--page .products--handled .products--detailBlock .maker--wrap li:nth-of-type(4),
    .sourcing--page .products--handled .products--detailBlock .maker--wrap li:nth-of-type(6){
    background-color: #F7FAFF !important;
  }
  
  .sourcing--page .products--handled .products--detailBlock figcaption{
    font-size: 10px;
  }
  
  .sourcing--page .producsts--list.col2{
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .sourcing--page .producsts--list.col2 .products--detailBlock{
    width: 100%;
  }
  
  .sourcing--page .products--handled .producsts--list.col2 .products--detailBlock .detail--introduction{
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .sourcing--page .products--handled .producsts--list.col2 .products--detailBlock .detail--introduction dl{
    width: 100%;
    flex-shrink: 0;
  }
  
  .sourcing--page .products--handled .producsts--list.col2 .products--detailBlock .detail--introduction dt,
  .sourcing--page .products--handled .producsts--list.col2 .products--detailBlock .detail--introduction dd{
    padding: 2px 0;
  }
  
  .sourcing--page .products--handled .producsts--list.col2 .products--detailBlock .detail--introduction figure{
    width: 145px;
  }
  
  .sourcing--page .products--handled .producsts--list.col2 .products--detailBlock .maker--wrap ul li{
    width: 100%;
  }
  
  .sourcing--page .products--handled .other--products{
    margin-bottom: 80px;
  }
  
  .sourcing--page .products--handled .other--products h3{
    font-size: 18px;
  }
  
  .sourcing--page .products--handled .other--products dl{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 13px;
    margin-bottom: 1em;
  }
  
  .sourcing--page .products--handled .other--products dt{
    width: 75px;
    flex-shrink: 0;
  }
  
  .sourcing--page .products--handled .other--products p,
  .sourcing--page .products--handled .other--products ul{
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .sourcing--page .supply--wrap{
    margin-bottom: 85px;
  }
  
  .sourcing--page .supply--wrap ul{
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .sourcing--page .supply--wrap ul li{
    width: 100%;
  }
  
  .sourcing--page .supply--wrap ul li dt{
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .sourcing--page .supply--wrap ul li dd:first-of-type{
    margin-bottom: 20px;
  }

  .sourcing--page .supply--wrap ul li dd img{
    max-width: 90%;
    display: block;
    margin: auto;
  }

}

.products .firstView--Wrap.join .content-outer .text--wrap h1,
.products .firstView--Wrap.join .content-outer .text--wrap .read{
  color: #0071BC;
}

.products .firstView--Wrap.join .content-outer .text--wrap h1::before{
  content: "TSUNAGU";
}

.products .firstView--Wrap.join{
  margin-bottom: 130px;
}

.products .firstView--Wrap.join .main--image{
  position: absolute;
  top: 95px;
  left: 55%;
  max-width: 455px;
}

.connecting--page .product--flowWrap{
  margin-bottom: 130px;
}

.connecting--page .product--flowWrap .copy{
  font-size: 22px;
  color: #0071BC;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 500;
}

.products .product--flowWrap.join .content--outer{
  border-color: #0071BC;
  position: relative;
}

.products .product--flowWrap.join .content--outer figure{
  max-width: 710px;
  margin: auto;
  width: 65vw;
}

.products .product--flowWrap.join .content--outer dl{
  max-width: 330px;
  position: absolute;
  top: 70px;
  left: 50px;
}

.products .product--flowWrap.join .content--outer dl:nth-of-type(2){
  max-width: 330px;
  position: absolute;
  top: 70px;
  left: initial;
  right: 50px;
}

.products .product--flowWrap.join .content--outer dl:nth-of-type(3){
  max-width: 330px;
  position: absolute;
  top: initial;
  left: 50px;
  bottom: 50px;
}

.products .product--flowWrap.join .content--outer dl:nth-of-type(4){
  max-width: 330px;
  position: absolute;
  top: initial;
  left: initial;
  right: 50px;
  bottom: 50px;
}

.products .product--flowWrap.join .content--outer dt{
  font-size: 22px;
  color: #0071BC;
  font-weight: 500;
  margin-bottom: 20px;
}

.products .product--flowWrap.join .content--outer dt span{
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: initial;
}

.products .product--flowWrap.join .content--outer dd{
  line-height: 1.8;
}

.connecting--page .join--value{
 margin-bottom: 260px; 
}

.connecting--page h2.round{
  color: #0071BC;
  border-color: #0071BC;
}

.connecting--page .join--value ul{
  margin-top: 60px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
}

.connecting--page .join--value ul li{
  width: calc((100% - 130px) / 3);
}

.connecting--page .join--value ul li dt{
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.connecting--page .join--value ul li dd{
  line-height: 1.8;
}

.connecting--page .oversea--wrap{
  margin-bottom: 130px;
}

.connecting--page .oversea--wrap .round{
  margin-bottom: 60px;
}

.connecting--page .oversea--wrap .oversea--content{
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.connecting--page .oversea--wrap .oversea--content .text--wrap{
  width: 42%;
}

.connecting--page .oversea--wrap .oversea--content .text--wrap h3{
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 20px;
}

.connecting--page .oversea--wrap .oversea--content .text--wrap p{
  line-height: 1.8;
}

.connecting--page .oversea--wrap .oversea--content .image--wrap{
  width: 55%;
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.connecting--page .oversea--wrap .oversea--content .image--wrap figure{
  width: calc((100% - 35px) / 2);
}

.connecting--page .commitment--wrap{
  background-color: #EFF8FF;
  margin-bottom: 160px;
}

.connecting--page .commitment--wrap .commitment--content{
  padding: 100px 0;
  display: flex;
  gap: 35px;
}

.connecting--page .commitment--wrap .commitment--content .text--wrap{
  max-width: 565px;
}

.connecting--page .commitment--wrap .commitment--content .text--wrap h3{
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 35px;
}

.connecting--page .commitment--wrap .commitment--content .text--wrap p{
  line-height: 1.8;
  margin-bottom: 30px;
}

.connecting--page .commitment--wrap .commitment--content .text--wrap dl{
  display: flex;
  margin-bottom: 15px;
  gap: 15px;
  align-items: center;
}

.connecting--page .commitment--wrap .commitment--content .text--wrap dt{
  flex-shrink: 0;
  font-size: 19px;
  font-weight: 500;
}

.connecting--page .commitment--wrap .commitment--content figure{
  width: 37vw;
  max-width: 400px;
  flex-shrink: 0;
}

@media (max-width: 768px){
  .products .firstView--Wrap.join{
    margin-bottom: 50px;
  }
  
  .products .firstView--Wrap.join .main--image{
    position: initial;
    width: 100%;
    max-width: 100%;
  }
  
  .connecting--page .product--flowWrap{
    margin-bottom: 70px;
  }
  
  .connecting--page .product--flowWrap .copy{
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .products .product--flowWrap.join .content--outer figure{
    max-width: 100%;
    margin: auto;
    width: 100%;
    margin-bottom: 15px;
  }
  
  .products .product--flowWrap.join .content--outer dl{
    max-width: 100%;
    position: initial;
    margin-bottom: 30px;
  }
  
  .products .product--flowWrap.join .content--outer dl:nth-of-type(2){
    max-width: 100%;
    position: initial;
  }
  
  .products .product--flowWrap.join .content--outer dl:nth-of-type(3){
    max-width: 100%;
    position: initial;
  }
  
  .products .product--flowWrap.join .content--outer dl:nth-of-type(4){
    max-width: 100%;
    position: initial;
  }
  
  .products .product--flowWrap.join .content--outer dt{
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .products .product--flowWrap.join .content--outer dt span{
    font-size: 13px;
  }
  
  .connecting--page .join--value{
   margin-bottom: 80px; 
  }
  
  .connecting--page .join--value ul{
    flex-direction: column;
    margin-top: 30px;
    gap: 30px;
  }
  
  .connecting--page .join--value ul li{
    width: 100%;
  }
  
  .connecting--page .join--value ul li dt{
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;
  }
  
  .connecting--page .oversea--wrap{
    margin-bottom: 80px;
  }
  
  .connecting--page .oversea--wrap .round{
    margin-bottom: 30px;
  }
  
  .connecting--page .oversea--wrap .oversea--content{
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }
  
  .connecting--page .oversea--wrap .oversea--content .text--wrap{
    width: 100%;
  }
  
  .connecting--page .oversea--wrap .oversea--content .text--wrap h3{
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .connecting--page .oversea--wrap .oversea--content .image--wrap{
    width: 90%;
    gap: 25px;
    flex-direction: column;
  }
  
  .connecting--page .oversea--wrap .oversea--content .image--wrap figure{
    width: 100%;
  }
  
  .connecting--page .commitment--wrap{
    margin-bottom: 70px;
  }
  
  .connecting--page .commitment--wrap .commitment--content{
    padding: 50px 0;
    flex-direction: column;
    gap: 50px;
  }
  
  .connecting--page .commitment--wrap .commitment--content .text--wrap{
    max-width: 100%;
  }
  
  .connecting--page .commitment--wrap .commitment--content .text--wrap h3{
    font-size: 18px;
    margin-bottom: 25px;
  }
  
  .connecting--page .commitment--wrap .commitment--content .text--wrap dl{
    flex-direction: column;
    margin-bottom: 25px;
    gap: 0;
    align-items: flex-start;
  }
  
  .connecting--page .commitment--wrap .commitment--content .text--wrap dt{
    font-size: 16px;
  }
  
  .connecting--page .commitment--wrap .commitment--content figure{
    width: 100%;
    max-width: 100%;
    order: -1;
  }

}

/* ---------------------------------------------
  company--page
--------------------------------------------- */
.corporate--page .headding--wrap{
  padding-top: 85px;
}

.corporate--page .headding--wrap h1,
.corporate--page .office--wrap h2{
  font-size: 35px;
  position: relative;
  font-weight: 500;
  padding-bottom: 15px;
  border-bottom: 2px solid #717171;
  margin-bottom: 65px;
}

.corporate--page .headding--wrap h1::before,
.corporate--page .office--wrap h2::before{
  content: "";
  display: block;
  width: 41px;
  height: 11px;
  position: absolute;
  top: -10px;
  left: 0;
  background: linear-gradient(90deg,rgba(4, 33, 117, 1) 0%, rgba(4, 33, 117, 1) 26%,
   transparent 26%, transparent 37%,
    rgba(39, 78, 175, 1) 37%, rgba(39, 78, 175, 1) 63%,
     transparent 63%, transparent 74%,
      rgba(0, 113, 188, 1) 74%,rgba(0, 113, 188, 1) 100%);
}

.corporate--page .president--message{
  margin-bottom: 120px;
}

.corporate--page h3{
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #042175;
  text-align: center;
}

.corporate--page .president--message .message--content {
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 63px);
}

.corporate--page .president--message .message--content .text--wrap {
  flex: 0 1 444px;
}

.corporate--page .president--message .message--content .text--wrap h4{
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 20px;
}

.corporate--page .president--message .message--content .text--wrap p{
  margin-bottom: 35px;
  line-height: 1.8;
}

.corporate--page .president--message .message--content .text--wrap .date{
  display: block;
  font-size: 13px;
}

.corporate--page .president--message .message--content .text--wrap dl{
  display: flex;
  gap: 15px;
  align-items: flex-end;
}

.corporate--page .president--message .message--content .text--wrap dd{
  font-size: 19px;
  font-weight: 500;
}

.corporate--page .president--message .message--content figure {
  flex: 0 1 492px;
}

.corporate--page .philosophy--wrap{
  margin-bottom: 150px;
}

.corporate--page .philosophy--wrap .philosophy--content{
  font-size: 25px;
  padding: 70px 130px;
  border-radius: 15px;
  background-color: #EFF8FF;
  text-align: center;
  width: fit-content;
  margin: auto;
}

.corporate--page .company--profile{
  margin-bottom: 115px;
}

.corporate--page table{
  width: 100%;
  table-layout: fixed;
}

.corporate--page .company--profile tr,
.corporate--page .company--history tr{
  border-top: 1px solid #707070;
}

.corporate--page .company--profile tr:last-of-type,
.corporate--page .company--history tr:last-of-type{
  border-bottom: 1px solid #707070;
}

.corporate--page .company--profile th,
.corporate--page .company--profile td,
.corporate--page .company--history th,
.corporate--page .company--history td{
  padding: 15px 0;
}

.corporate--page .company--profile th,
.corporate--page .company--history th{
  color: #717171;
  width: 120px;
  text-align: left;
}

.corporate--page .company--profile td.officer dl,
.corporate--page .company--profile td.customer dl{
  display: flex;
}

.corporate--page .company--profile td.officer dt{
  width: 180px;
  margin-right: 15px;
}

.corporate--page .company--profile td.customer dt{
  margin-right: 45px;
}

.corporate--page .company--history{
  margin-bottom: 255px;
}

.corporate--page .company--history th{
  padding-right: 20px;
}

.corporate--page .company--history th .date{
  display: flex;
  gap: 30px;
}

.corporate--page .office--wrap{
  margin-bottom: 160px;
}

.corporate--page .office--wrap .office-content{
  margin-bottom: 145px;
}

.corporate--page .office--wrap .office-detail {
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 6vw, 86px);
}

.corporate--page .office--wrap .office-detail .text--wrap{
  flex: 0 1 385px;
  max-width: 385px;
}

.corporate--page .office--wrap .office-detail figure{
  flex: 0 1 530px;
  max-width: 530px;
}

.corporate--page .office--wrap .office-detail{
  margin-bottom: 75px;
}

.corporate--page .office--wrap .office-detail .text--wrap h4{
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
}

.corporate--page .office--wrap .office-detail .text--wrap table{
  table-layout: fixed;
}

.corporate--page .office--wrap .office-detail .text--wrap table th{
  width: 60px;
  padding-right: 28px;
  text-align: left;
}

.corporate--page .office--wrap .office-detail .text--wrap table td{
  padding-bottom: 20px;
}

@media (max-width: 768px){
  .corporate--page .headding--wrap{
    padding-top: 45px;
  }
  
  .corporate--page .headding--wrap h1,
  .corporate--page .office--wrap h2{
    font-size: 22px;
    padding-bottom: 10px;
    margin-bottom: 35px;
  }
  
  .corporate--page .president--message{
    margin-bottom: 80px;
  }
  
  .corporate--page h3{
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .corporate--page .president--message .message--content {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  
  .corporate--page .president--message .message--content .text--wrap {
    max-width: 100%;
  }
  
  .corporate--page .president--message .message--content .text--wrap h4{
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .corporate--page .president--message .message--content .text--wrap p{
    margin-bottom: 20px;
  }
  
  .corporate--page .president--message .message--content .text--wrap dd{
    font-size: 16px;
  }
  
  .corporate--page .president--message .message--content figure {
    max-width: 100%;
    order: -1;
  }
  
  .corporate--page .philosophy--wrap{
    margin-bottom: 80px;
  }
  
  .corporate--page .philosophy--wrap .philosophy--content{
    font-size: 16px;
    padding: 10px 20px;
    width: 90%;
    box-sizing: border-box;
  }
  
  .corporate--page .company--profile{
    margin-bottom: 80px;
  }
  
  .corporate--page .company--profile th,
  .corporate--page .company--history th{
    width: 80px;
    font-size: 11px;
  }
  
  .corporate--page .company--profile td.officer dl,
  .corporate--page .company--profile td.customer dl{
    flex-direction: column;
  }
  
  .corporate--page .company--profile td.officer dt{
    width: 100%;
    margin-right: 0;
  }
  
  .corporate--page .company--profile td.customer dt{
    margin-right: 0;
  }
  
  .corporate--page .company--profile td ul li{
    width: 100%;
  }
  
  .corporate--page .company--history{
    margin-bottom: 80px;
  }
  
  .corporate--page .company--history th{
    padding-right: 20px;
  }
  
  .corporate--page .company--history th .date{
    flex-direction: column;
    gap: 0;
  }
  
  .corporate--page .office--wrap{
    margin-bottom: 80px;
  }
  
  .corporate--page .office--wrap .office-content{
    margin-bottom: 60px;
  }
  
  .corporate--page .office--wrap .office-detail {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  
  .corporate--page .office--wrap .office-detail .text--wrap{
    max-width: 100%;
    flex: 0;
  }
  
  .corporate--page .office--wrap .office-detail figure{
    max-width: 90%;
    flex: 0;
  }
  
  .corporate--page .office--wrap .office-detail{
    margin-bottom: 40px;
  }
  
  .corporate--page .office--wrap .office-detail .text--wrap h4{
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .corporate--page .office--wrap .office-detail .text--wrap table th{
    width: 60px;
    padding-right: 15px;
    text-align: left;
  }
  
  .corporate--page .office--wrap .office-detail .text--wrap table td{
    padding-bottom: 10px;
  }

  .corporate--page .office--wrap .office-detail figure{
    order: -1;
  }

}

/* ---------------------------------------------
  Sustainability page
--------------------------------------------- */
.sustainability--page .headding--wrap{
  position: relative;
  margin-bottom: 110px;
}

.sustainability--page .headding--wrap picture{
  width: 100%;
}

.sustainability--page .headding--wrap .page--ttl{
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
} 

.sustainability--page .wrap:not(.sustaina-sub) .headding--wrap .page--ttl{
  width: 500px;
}

.sustainability--page .headding--wrap .page--ttl h1{
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.sustainability--page .headding--wrap .page--ttl h1 .en{
  font-size: 65px;
  order: -1;
}

.sustainability--page .headding--wrap .page--ttl .read{
  line-height: 1.8;
  max-width: 500px;
}

.sustainability--page h2{
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #042175;
  text-align: center;
}

.sustainability--page .sustaina--policy{
  margin-bottom: 100px;
}

.sustainability--page .sustaina--policy ul{
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.sustainability--page .sustaina--policy ul li{
  border: 1px solid #2B2B2F;
  border-radius: 14px;
  padding: 36px;
  width: calc((100% - 34px) / 3);
  box-sizing: border-box;
}

.sustainability--page .sustaina--policy ul li h3{
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
  color: #042175;
}

.sustainability--page .initiative--wrap{
  margin-bottom: 190px;
}

.sustainability--page .initiative--wrap .initiative--content{
  padding: 50px 90px;
  background-color: #EFF8FF;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: .8fr 370px 1fr;
  grid-template-rows: 40px 1fr;
  grid-template-areas: "icon ttl ."
  "icon detail list";
  gap: 0 27px;
}

.sustainability--page .initiative--wrap .initiative--content h3{
  grid-area: ttl;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
}

.sustainability--page .initiative--wrap .initiative--content figure{
  grid-area: icon;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.sustainability--page .initiative--wrap .initiative--content figure img{
  width: 100px;
}

.sustainability--page .initiative--wrap .initiative--content:nth-of-type(2) figure img{
  width: 120px;
}

.sustainability--page .initiative--wrap .initiative--content:nth-of-type(3) figure img{
  width: 130px;
}

.sustainability--page .initiative--wrap .initiative--content:nth-of-type(4) figure img{
  width: 120px;
}

.sustainability--page .initiative--wrap .initiative--content .initiative--detail{
  grid-area: detail;
}

.sustainability--page .initiative--wrap .initiative--content .initiative--detail a{
  margin-top: 30px;
  display: block;
  color: #fff;
  background-color: #042175;
  border-radius: 100px;
  width: 160px;
  padding: 15px 0;
  text-align: center;
  transition: .4s;
}

.sustainability--page .initiative--wrap .initiative--content .initiative--detail a:hover{
  opacity: .7;
}

.sustainability--page .initiative--wrap .initiative--content ul{
  grid-area: list;
}

.sustainability--page .initiative--wrap .initiative--content ul li{
  border-top: 1px solid #707070;
  padding: 5px 0;
}

.sustainability--page .initiative--wrap .initiative--content ul li::before{
  content: "●";
  margin-right: 2px;
  font-size: 13px;
}

.sustainability--page .initiative--wrap .initiative--content ul li:last-of-type{
  border-bottom: 1px solid #707070;
}

.sustainability--page .sustaina-sub .headding--wrap{
  margin-bottom: 60px;
}

.sustainability--page .sustaina-sub .headding--wrap .page--ttl{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: flex-start;
}

.sustainability--page .sustaina-sub .headding--wrap .page--ttl h1{
  font-size: 35px;
  font-weight: 500;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.sustainability--page .sustaina-sub .headding--wrap .page--ttl h1 span{
  font-size: 13px;
  font-weight: 400;
  display: block;
}

.sustainability--page .sustaina-sub.humanrights .headding--wrap .page--ttl figure{
  width: 82px;
}

.sustainability--page .sustaina-sub .read--wrap{
  margin-bottom: 140px;
  text-align: center;
  line-height: 2;
}

.sustainability--page .sustaina-sub h2{
  font-size: 22px;
  text-align: left;
  padding-bottom: 15px;
  border-bottom: 1px solid #707070;
  margin-bottom: 15px;
}

.sustainability--page .sustaina-sub .sustainacontent--wrap{
  margin-bottom: 200px;
}

.sustainability--page .sustaina-sub .sustainacontent--block{
  margin-bottom: 100px;
}

.sustainability--page .sustaina-sub .sustainacontent--block .read{
  margin-bottom: 35px;
}

.sustainability--page .sustaina-sub .sustainacontent--block .sustainacontent--list{
  counter-reset: sus-num;
}

.sustainability--page .sustaina-sub .sustainacontent--block .sustainacontent--list > li{
  margin-bottom: 50px;
}

.sustainability--page .sustaina-sub .sustainacontent--block .sustainacontent--list > li h4::before{
  counter-increment: sus-num 1;
  content: counter(sus-num)"-";
}

.sustainability--page .sustaina-sub .sustainacontent--block .sustainacontent--list > li h4{
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
}

.sustainability--page .sustaina-sub .sustainacontent--block .sustainacontent--list > li p{
  margin-bottom: 35px;
}

.sustainability--page .sustaina-sub .sustainacontent--block .sustainacontent--list > li p.accent{
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}

.sustainability--page .sustaina-sub .sustainacontent--block .humanrights--list{
  display: flex;
  gap: 20px 30px;
  flex-wrap: wrap;
}

.sustainability--page .sustaina-sub .sustainacontent--block .humanrights--list li{
  border: 1px solid #707070;
  padding: 20px 0;
  width: calc((100% - 66px) / 3);
  text-align: center;
}

.sustainability--page .sustaina-sub .sustainacontent--block .signature{
  text-align: right;
}

.sustainability--page .sustaina-sub .sustainacontent--block .flex{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(24px, 5vw, 50px);
}

.sustainability--page .sustaina-sub .sustainacontent--block .flex p{
  flex: 0 1 520px;
  max-width: 520px;
}

.sustainability--page .sustaina-sub .sustainacontent--block .flex figure{
  flex: 0 1 430px;
  max-width: 430px;
}

.sustainability--page .sustaina-sub .sustainacontent--block .column p{
  margin-bottom: 30px;
}

.sustainability--page .sustaina-sub .sustainacontent--block .column figure{
  max-width: 590px;
  margin: auto;
}

.sustainability--page .sustaina-sub.riskmanagement .headding--wrap .page--ttl figure{
  width: 92px;
}

.sustainability--page .sustaina-sub h3.bg-blue{
  font-size: 19px;
  font-weight: 500;
  padding: 12px 0;
  text-align: center;
  background-color: #EFF8FF;
  margin-bottom: 20px;
}

.sustainability--page .sustaina-sub .sustainacontent--block:first-of-type .child--block:first-of-type{
  margin-top: 90px;
}

.sustainability--page .sustaina-sub .child--block figure{
  max-width: 730px;
  margin: 70px auto;
}

.sustainability--page .sustaina-sub .child--block .initiative--flexBlock{
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
}

.sustainability--page .sustaina-sub .child--block .initiative--flexBlock div{
  max-width: 430px;
}

.sustainability--page .sustaina-sub .child--block .initiative--flexBlock h4{
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 20px;
}

.sustainability--page .sustaina-sub .child--block.single h4{
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
}

.sustainability--page .sustaina-sub .child--block.single p{
  margin-bottom: 45px;
}

.sustainability--page .sustaina-sub .signature.flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sustainability--page .sustaina-sub .signature.flex p:first-of-type{
  text-align: left;
}

.sustainability--page .sustaina-sub.carbonneutral .headding--wrap .page--ttl figure{
  width: 98px;
}

.sustainability--page .sustaina-sub.carbonneutral .sustainacontent--block .flex{
  gap: clamp(16px, 2.7vw, 27px)
}

.sustainability--page .sustaina-sub.carbonneutral .sustainacontent--block .flex p{
  flex: 0 1 408px;
  max-width: 408px;
}

.sustainability--page .sustaina-sub.carbonneutral .sustainacontent--block .flex figure{
  flex: 0 1 565px;
  max-width: 565px;
}

.sustainability--page .sustaina-sub.health .headding--wrap .page--ttl figure{
  width: 88px;
}

.sustainability--page .sustaina-sub.health .sustainacontent--block .flex{
  margin-bottom: 35px;
}

.sustainability--page .sustaina-sub.health .sustainacontent--block .flex div{
  flex: 0 1 520px;
  max-width: 520px;
}

.sustainability--page .sustaina-sub.health .sustainacontent--block .flex div h4{
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
}

@media (max-width: 768px){
  .sustainability--page .headding--wrap{
    position: relative;
    margin-bottom: 40px;
  }
  
  .sustainability--page .headding--wrap picture{
    width: 100%;
  }
  
  .sustainability--page .headding--wrap .page--ttl{
    position: initial;
    transform: initial;
  } 
  
  .sustainability--page .wrap:not(.sustaina-sub) .headding--wrap .page--ttl{
    width: 100%;
  }
  
  .sustainability--page .headding--wrap .page--ttl h1{
    font-size: 16px;
    margin-bottom: 10px;
    position: absolute;
    top: 10px;
    left: 40px;
  }
  
  .sustainability--page .headding--wrap .page--ttl h1 .en{
    font-size: 30px;
    order: -1;
  }
  
  .sustainability--page .headding--wrap .page--ttl .read{
    line-height: 1.6;
    max-width: 100%;
    color: initial;
    padding-top: 20px;
  }
  
  .sustainability--page h2{
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .sustainability--page .sustaina--policy{
    margin-bottom: 80px;
  }
  
  .sustainability--page .sustaina--policy ul{
    flex-direction: column;
    gap: 25px;
  }
  
  .sustainability--page .sustaina--policy ul li{
    padding: 10px 20px;
    width: 100%;
  }
  
  .sustainability--page .sustaina--policy ul li h3{
    font-size: 18px;
  }
  
  .sustainability--page .initiative--wrap{
    margin-bottom: 80px;
  }
  
  .sustainability--page .initiative--wrap .initiative--content{
    padding: 10px 20px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    grid-template-areas: "icon" "ttl" "list" "detail";
    gap: 18px;
    margin: 20px auto 30px;
    padding: 30px 20px;
  }
  
  .sustainability--page .initiative--wrap .initiative--content h3{
    grid-area: ttl;
    font-size: 16px;
    margin-bottom: 0;
  }
  
  .sustainability--page .initiative--wrap .initiative--content figure{
    grid-area: icon;
    justify-content: center;
  }
  
  .sustainability--page .initiative--wrap .initiative--content .initiative--detail{
    grid-area: detail;
  }
  
  .sustainability--page .initiative--wrap .initiative--content .initiative--detail a{
    width: 100%;
  }
  
  .sustainability--page .sustaina-sub .headding--wrap{
    margin-bottom: 40px;
  }
  
  .sustainability--page .sustaina-sub .headding--wrap .page--ttl{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  
  .sustainability--page .sustaina-sub .headding--wrap .page--ttl h1{
    font-size: 25px;
    position: initial;
    width: fit-content;
    align-items: center;
  }
  
  .sustainability--page .sustaina-sub .headding--wrap .page--ttl h1 span{
    font-size: 13px;
  }
  
  .sustainability--page .sustaina-sub.humanrights .headding--wrap .page--ttl figure{
    width: 53px;
  }
  
  .sustainability--page .sustaina-sub .read--wrap{
    margin-bottom: 40px;
    text-align: left;
  }
  
  .sustainability--page .sustaina-sub h2{
    font-size: 18px;
  }
  
  .sustainability--page .sustaina-sub .sustainacontent--wrap{
    margin-bottom: 80px;
  }
  
  .sustainability--page .sustaina-sub .sustainacontent--block{
    margin-bottom: 60px;
  }
  
  .sustainability--page .sustaina-sub .sustainacontent--block .read{
    margin-bottom: 20px;
  }
  
  .sustainability--page .sustaina-sub .sustainacontent--block .sustainacontent--list > li{
    margin-bottom: 30px;
  }
  
  .sustainability--page .sustaina-sub .sustainacontent--block .sustainacontent--list > li h4{
    font-size: 16px;
  }
  
  .sustainability--page .sustaina-sub .sustainacontent--block .sustainacontent--list > li p{
    margin-bottom: 25px;
  }
  
  .sustainability--page .sustaina-sub .sustainacontent--block .sustainacontent--list > li p.accent{
    font-size: 15px;
  }
  
  .sustainability--page .sustaina-sub .sustainacontent--block .humanrights--list{
    display: flex;
    gap: 20px 30px;
    flex-wrap: wrap;
  }
  
  .sustainability--page .sustaina-sub .sustainacontent--block .humanrights--list li{
    padding: 12px 10px;
    width: calc((100% - 34px) / 2);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sustainability--page .sustaina-sub .sustainacontent--block .flex{
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .sustainability--page .sustaina-sub .sustainacontent--block .flex p{
    flex: 0;
    max-width: 100%;
  }
  
  .sustainability--page .sustaina-sub .sustainacontent--block .flex figure{
    flex: 0;
    max-width: 100%;
  }
  
  .sustainability--page .sustaina-sub .sustainacontent--block .column p{
    margin-bottom: 20px;
  }
  
  .sustainability--page .sustaina-sub .sustainacontent--block .column figure{
    max-width: 90%;
    margin: auto;
  }
  
  .sustainability--page .sustaina-sub.riskmanagement .headding--wrap .page--ttl figure{
    width: 62px;
  }
  
  .sustainability--page .sustaina-sub h3.bg-blue{
    font-size: 16px;
  }
  
  .sustainability--page .sustaina-sub .sustainacontent--block:first-of-type .child--block:first-of-type{
    margin-top: 60px;
  }
  
  .sustainability--page .sustaina-sub .child--block figure{
    max-width: 100%;
    margin: 35px auto;
  }
  
  .sustainability--page .sustaina-sub .child--block .initiative--flexBlock{
    flex-direction: column;
    margin-top: 35px;
    gap: 30px;
  }
  
  .sustainability--page .sustaina-sub .child--block .initiative--flexBlock div{
    max-width: 100%;
  }
  
  .sustainability--page .sustaina-sub .child--block .initiative--flexBlock h4{
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .sustainability--page .sustaina-sub .child--block.single h4{
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .sustainability--page .sustaina-sub .child--block.single p{
    margin-bottom: 30px;
  }
  
  .sustainability--page .sustaina-sub .signature.flex{
    align-items: flex-end;
  }
  
  .sustainability--page .sustaina-sub .signature.flex p:first-of-type{
    align-self: flex-start;
  }
  
  .sustainability--page .sustaina-sub.carbonneutral .headding--wrap .page--ttl figure{
    width: 67px;
  }
  
  .sustainability--page .sustaina-sub.carbonneutral .sustainacontent--block .flex{
    gap: 20px;
    flex-direction: column;
  }
  
  .sustainability--page .sustaina-sub.carbonneutral .sustainacontent--block .flex p{
    flex: 0;
    max-width: 100%;
  }
  
  .sustainability--page .sustaina-sub.carbonneutral .sustainacontent--block .flex figure{
    flex: 0;
    max-width: 100%;
  }
  
  .sustainability--page .sustaina-sub.health .headding--wrap .page--ttl figure{
    width: 65px;
  }
  
  .sustainability--page .sustaina-sub.health .sustainacontent--block .flex{
    margin-bottom: 25px;
  }
  
  .sustainability--page .sustaina-sub.health .sustainacontent--block .flex div{
    flex: 0;
    max-width: 100%;
  }
  
  .sustainability--page .sustaina-sub.health .sustainacontent--block .flex div h4{
    font-size: 16px;
  }
  

}

/* ---------------------------------------------
  recruitpage
--------------------------------------------- */
.recruit--page .recruit-top{
  position: relative;
  background: url(../img/recruit/recruit-bg.png) no-repeat;
  background-size: cover;
}

.recruit--page .headding--wrap{
  margin-bottom: 70px;
  position: relative;
}

.recruit--page .headding--wrap picture{
  width: 100%;
}

.recruit--page .headding--wrap .page--ttl{
  position: absolute;
  top: 50%;
  left: 150px;
  transform: translateY(-50%);
  color: #fff;
} 

.recruit--page .headding--wrap .page--ttl h1{
  font-weight: 600;
  font-size: 95px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.recruit--page .headding--wrap .page--ttl h1 span{
  font-size: 20px;
  font-weight: 500;
  display: block;
}

.recruit--page .wrap:not(.recruit-sub) .headding--wrap .page--ttl h1 span{
  border: 1px solid #fff;
  width: fit-content;
  padding: 5px 10px;
}

.recruit--page .headding--wrap .page--ttl .read{
  font-size: 30px;
  font-weight: 500;
}

.recruit--page .intro--wrap{
  margin-bottom: 140px;
}

.recruit--page .intro--wrap .intro--upper{
  text-align: center;
  margin-bottom: 170px;
}

.recruit--page .intro--wrap .intro--upper h2{
  font-size: 28px;
  font-weight: 500;
  color: #042175;
  margin-bottom: 15px;
}

.recruit--page .intro--wrap .intro--upper .read{
  line-height: 2.2;
  margin-bottom: 30px;
}

.recruit--page .link--btn{
  margin: auto;
}

.recruit--page .intro--wrap .intro--lower h2{
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}

.recruit--page .intro--wrap .intro--lower .read{
  margin-bottom: 110px;
}

.recruit--page .intro--wrap .intro--lower .work--detailWrap{
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 60px;
}

.recruit--page .intro--wrap .intro--lower .work--detailWrap dl{
  width: calc((100% - 110px) / 2);
}

.recruit--page .intro--wrap .intro--lower .work--detailWrap dt{
  font-size: 22px;
  font-weight: 500;
  color: #042175;
  padding-bottom: 5px;
  margin: 0 auto 15px;
  border-bottom: 5px solid #042175;
  width: fit-content;
}

.recruit--page .intro--wrap .intro--lower .work--detailWrap dd:nth-of-type(2){
  margin-top: 50px;
  display: flex;
  gap: 15px;
}

.recruit--page .intro--wrap .intro--lower .work--detailWrap dd:nth-of-type(2) img{
  width: 50%;
}

.recruit--page .slide--wrap{
  margin-bottom: 120px;
}

.recruit--page .slide--wrap .slidewrap--bg{
  background: rgba(175, 220, 255, 0.2);
  padding: 70px 0 80px;
}

.recruit--page .slide--wrap .slick-slide{
  margin: 0 25px;
  max-width: 280px;
}

.recruit--page .slide--wrap .intro{
  text-align: center;
  margin-bottom: 45px;
}

.recruit--page .slide--wrap h2{
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 45px;
}

.recruit--page .slide--wrap .slider{
  margin-bottom: 60px;
}

.recruit--page .recruiteffort--wrap{
  margin-bottom: 160px;
}

.recruit--page .recruiteffort--wrap .content--wrap{
  display: flex;
  align-items: center;
  gap: clamp(20px, 6vw, 100px);
}

.recruit--page .recruiteffort--wrap .content--wrap figure{
  flex: 0 1 740px;
  max-width: 740px;
   margin-left: clamp(-120px, -8vw, 0px);
}

.recruit--page .recruiteffort--wrap .content--wrap figure img {
  display: block;
  width: 100%;
  height: auto;
}

.recruit--page .recruiteffort--wrap .content--wrap .text--wrap{
  flex: 0 1 400px;
  max-width: 400px;
}

.recruit--page .recruiteffort--wrap .content--wrap .text--wrap h3{
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 45px;
}

.recruit--page .recruiteffort--wrap .content--wrap .text--wrap p{
  margin-bottom: 45px;
}

.recruit--page .interview--wrap{
  margin-bottom: 130px;
  counter-reset: interview-num 0;
}

.recruit--page .interview--wrap h2{
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 45px;
}

.recruit--page .interview--wrap .read{
  margin-bottom: 60px;
}

.recruit--page .interview--wrap .interview--block{
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: 45px;
  counter-increment: interview-num;
}

.recruit--page .interview--wrap .interview--block:nth-of-type(even){
  flex-direction: row-reverse;
}

.recruit--page .interview--wrap .interview--block figure{
  flex: 2
}

.recruit--page .interview--wrap .interview--block .text--wrap{
  flex: 1;

  display: flex;
  flex-direction: column;

  padding-right: 15px;
}

.recruit--page .interview--wrap .interview--block:nth-of-type(even) .text--wrap{
  padding-left: 15px;
  padding-right: 0;
}

.recruit--page .interview--wrap .interview--block .text--wrap .num--wrap{
  font-size: 21px;
  font-weight: 500;
  color: #042175;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.recruit--page .interview--wrap .interview--block .text--wrap .num--wrap::after{
  content: counter(interview-num, decimal-leading-zero);
  font-size: 54px;
  line-height: 1.2;
}

.recruit--page .interview--wrap .interview--block .text--wrap h3{
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
}

.recruit--page .interview--wrap .interview--block .text--wrap .name{
  font-size: 18px;
  font-weight: 600;
}

.recruit--page .recruitment--wrap{
  background: rgba(175, 220, 255, 0.2);
  padding: 110px 0;
  margin-bottom: 170px;
}

.recruit--page .recruitment--wrap .recruitment--inner{
  padding: 80px 50px 90px;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 20px;
}

.recruit--page .recruitment--wrap h2{
  font-size: 28px;
  color: #042175;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 500;
}

.recruit--page .recruitment--wrap th{
  text-align: left;
  width: 140px;
}

.recruit--page .recruitment--wrap th,
.recruit--page .recruitment--wrap td{
  padding: 20px 0;
  border-top: 1px solid #707070;
}

.recruit--page .recruitment--wrap tr:last-of-type th,
.recruit--page .recruitment--wrap tr:last-of-type td{
  border-bottom: 1px solid #707070;
}

@media (max-width: 768px){
  .recruit--page .headding--wrap .page--ttl{
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
  } 
  
  .recruit--page .headding--wrap .page--ttl h1{
    font-size: 50px;
    margin-bottom: 15px;
  }
  
  .recruit--page .headding--wrap .page--ttl h1 span{
    font-size: 15px;
  }
  
  .recruit--page .headding--wrap .page--ttl .read{
    font-size: 17px;
  }
  
  .recruit--page .intro--wrap{
    margin-bottom: 60px;
  }
  
  .recruit--page .intro--wrap .intro--upper{
    margin-bottom: 80px;
  }
  
  .recruit--page .intro--wrap .intro--upper h2{
    font-size: 22px;
  }
  
  .recruit--page .intro--wrap .intro--lower h2{
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .recruit--page .intro--wrap .intro--lower .read{
    margin-bottom: 60px;
  }
  
  .recruit--page .intro--wrap .intro--lower .work--detailWrap{
    flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
  }
  
  .recruit--page .intro--wrap .intro--lower .work--detailWrap dl{
    width: 100%;
  }
  
  .recruit--page .intro--wrap .intro--lower .work--detailWrap dt{
    font-size: 18px;
  }
  
  .recruit--page .intro--wrap .intro--lower .work--detailWrap dd:nth-of-type(2){
    margin-top: 30px;
  }
  
  .recruit--page .slide--wrap{
    margin-bottom: 60px;
  }
  
  .recruit--page .slide--wrap .slidewrap--bg{
    padding: 30px 20px 40px;
  }
  
  .recruit--page .slide--wrap .slick-slide{
    margin: 0;
    max-width: 100%;
  }
  
  .recruit--page .slide--wrap .intro{
    text-align: center;
    margin-bottom: 45px;
  }

  .recruit--page .slide--wrap .intro .read{
    text-align: left;
  }
  
  .recruit--page .slide--wrap h2{
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .recruit--page .slide--wrap .slider{
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 20px;
  }

  .recruit--page .slide--wrap .slider > div{
    width: calc((100% - 20px) / 2);
  }
  
  .recruit--page .recruiteffort--wrap{
    margin-bottom: 80px;
  }
  
  .recruit--page .recruiteffort--wrap .content--wrap{
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .recruit--page .recruiteffort--wrap .content--wrap figure{
    flex: 0;
    max-width: 100%;
    margin-left: 0;
  }
  
  .recruit--page .recruiteffort--wrap .content--wrap .text--wrap{
    flex: 0;
    max-width: 100%;
  }
  
  .recruit--page .recruiteffort--wrap .content--wrap .text--wrap h3{
    font-size: 22px;
    margin-bottom: 25px;
  }
  
  .recruit--page .recruiteffort--wrap .content--wrap .text--wrap p{
    margin-bottom: 35px;
  }
  
  .recruit--page .interview--wrap{
    margin-bottom: 60px;
  }
  
  .recruit--page .interview--wrap h2{
    font-size: 22px;
    margin-bottom: 25px;
  }
  
  .recruit--page .interview--wrap .read{
    margin-bottom: 30px;
  }
  
  .recruit--page .interview--wrap .interview--block{
    flex-direction: column;
    gap: 15px;
    margin-bottom: 45px;
    align-items: flex-start;
  }

  .recruit--page .interview--wrap .interview--block:nth-of-type(even){
    flex-direction: column;
    gap: 15px;
    margin-bottom: 45px;
    align-items: flex-end;
    text-align: right;
  }

  .recruit--page .interview--wrap .interview--block .text--wrap{
    display: flex;
    flex-direction: column;
    padding-right: 0;
  }
  
  .recruit--page .interview--wrap .interview--block:nth-of-type(even) .text--wrap{
    padding-left: 0;
    padding-right: 0;
  }
  
  .recruit--page .interview--wrap .interview--block .text--wrap .num--wrap{
    font-size: 13px;
    margin-bottom: 12px;
    justify-content: flex-start;
  }

  .recruit--page .interview--wrap .interview--block:nth-of-type(even) .num--wrap{
    justify-content: flex-end;
  } 
  
  .recruit--page .interview--wrap .interview--block .text--wrap .num--wrap::after{
    font-size: 30px;
  }
  
  .recruit--page .interview--wrap .interview--block .text--wrap h3{
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .recruit--page .interview--wrap .interview--block .text--wrap .name{
    font-size: 15px;
  }
  
  .recruit--page .recruitment--wrap{
    padding: 40px 0;
    margin-bottom: 80px;
  }
  
  .recruit--page .recruitment--wrap .recruitment--inner{
    padding: 25px 20px 30px;
  }
  
  .recruit--page .recruitment--wrap h2{
    font-size: 22px;
  }
  
  .recruit--page .recruitment--wrap th,
  .recruit--page .recruitment--wrap td{
    padding: 0;
    display: block;
  }
  
  .recruit--page .recruitment--wrap th{
    text-align: left;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 5px;
    font-weight: 500;
  }
  
  .recruit--page .recruitment--wrap td{
    border: 0;
    padding-bottom: 15px;
  }

  .recruit--page .recruitment--wrap tr:last-of-type th,
  .recruit--page .recruitment--wrap tr:last-of-type td{
    border-bottom: 0;
  }
  
}

/* ---------------------------------------------
  recruitpage work
--------------------------------------------- */
.recruit-sub .headding--wrap{
  position: relative;
  color: #fff;
}

.recruit-sub .headding--wrap .page--ttl{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.recruit-sub .headding--wrap .page--ttl h1{
  display: flex;
  flex-direction: column;
  font-size: 35px;
  font-weight: 500;
}

.recruit-sub .headding--wrap .page--ttl h1 .en{
  font-size: 13px;
  font-weight: 400;
}

.recruit-sub .intro--wrap{
  padding-top: 65px;
  margin-bottom: 100px;
}

.recruit-sub .intro--wrap .read{
  line-height: 2;
  margin-bottom: 80px;
}

.job--page .recruit--message{
  background-color: #EFF8FF;
  padding: 45px 45px 65px;
  box-sizing: border-box;
  border-radius: 25px;
}

.job--page .recruit--message h2{
  text-align: center;
  font-weight: 500;
  color: #042175;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 28px;
  margin-bottom: 30px;
}

.job--page .recruit--message h2 span{
  font-size: 17px;
  color: initial;
}

.job--page .recruit--message .message--content{
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.job--page .recruit--message .message--content p{
  flex: 0 1 495px;
  max-width: 495px;
  font-size: 17px;
  line-height: 2;
  font-weight: 500;
}

.job--page .recruit--message .message--content figure{
  flex: 0 1 385px;
  max-width: 385px;
}

.job--page .workdetail--wrap{
  margin-bottom: 220px;
}

.job--page .workdetail--wrap .workcontent-block{
  margin-bottom: 130px;
}

.job--page .workdetail--wrap .workcontent-block .intro--wrap{
  margin-bottom: 45px;
}

.job--page .workdetail--wrap .workcontent-block .intro--wrap h2{
  font-size: 28px;
  font-weight: 500;
  color: #042175;
  margin-bottom: 20px;
}

.job--page .workdetail--wrap .workcontent-block .intro--wrap p{
  margin-bottom: 40px;
}

.job--page .workdetail--wrap .workcontent-block .intro--wrap figure{
  padding: 0 100px;
  display: flex;
  gap: 20px;
}

.job--page .workdetail--wrap .workcontent-block .intro--wrap figure img{
  width: calc((100% - 20px) / 2);
}

.job--page .workdetail--wrap .workcontent-block .work--detail{
  margin-bottom: 50px;
}

.job--page .workdetail--wrap .workcontent-block .work--detail h3{
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #707070;
}

.job--page .workdetail--wrap .workcontent-block .work--detail ul{
  display: flex;
  gap: 60px;
}

.job--page .workdetail--wrap .workcontent-block .work--detail li{
  width: calc((100% - 60px) / 2);
}

.job--page .workdetail--wrap .workcontent-block:nth-of-type(2) .work--detail li{
  width: calc((100% - 120px) / 3);
}

.job--page .workdetail--wrap .workcontent-block .work--detail dt{
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

.job--page .workdetail--wrap .workcontent-block .work--detail dd{
  line-height: 1.8;
}

.job--page .workdetail--wrap .workcontent-block .day--detail h3{
  font-size: 22px;
  font-weight: 500;
  background-color: #042175;
  border-radius: 30px;
  color: #fff;
  padding: 12px 0;
  text-align: center;
  margin-bottom: 20px;
}

.job--page .workdetail--wrap .workcontent-block .day--detail ul{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 60px;
}

.job--page .workdetail--wrap .workcontent-block .day--detail li{
  width: calc((100% - 120px) / 3);
}

.job--page .workdetail--wrap .workcontent-block .day--detail dt{
  font-size: 22px;
  font-weight: 500;
}

.job--page .workdetail--wrap .workcontent-block .day--detail dd:first-of-type{
  margin-bottom: 10px;
}

.job--page .step--wrap{
  margin-bottom: 150px;
}

.job--page .step--wrap h2{
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

.job--page .step--wrap ul{
  margin-top: 40px;
  display: flex;
  gap: 60px;
}

.job--page .step--wrap li{
  width: calc((100% - 120px) / 3);
}

.job--page .step--wrap dl{
  display: flex;
  flex-direction: column;
}

.job--page .step--wrap dt{
  font-size: 19px;
  margin: 30px 0 20px;
}

.job--page .step--wrap dd:nth-of-type(2){
  order: -1;
}

.job--page .qa--wrap{
  padding: 120px 0;
  background-color: #EFF8FF;
  margin-bottom: 160px;
}

.job--page .qa--wrap h2{
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  background: url(../img/recruit/faq--ttl.svg) no-repeat;
  background-size: 320px 143px;
  background-position: center center;
  height: 133px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job--page .qa--wrap .accordion{
  counter-reset: qa-num 0;
}

.job--page .qa--wrap .accordion__item{
  display: grid;
  grid-template-columns: 55px 1fr;
  grid-template-rows: 40px 1fr;
  grid-template-areas: "num ttl" "num detail";
  counter-increment: qa-num 1;
  border-top: 1px solid #707070;
  align-items: center;
  gap: 0 20px;
  padding: 35px 0;
}

.job--page .qa--wrap .accordion__title{
  padding: 35px 0;
  background: none;
  border: 0;
  grid-area: ttl;
  text-align: left;
  font-size: 19px;
  font-weight: 600;
  position: relative;
}

.job--page .qa--wrap .accordion__title span{
  width: 28px;
  height: 28px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.job--page .qa--wrap .accordion__title span::before,
.job--page .qa--wrap .accordion__title span::after{
  content: "";
  width: 17px;
  height: 2px;
  background-color: #707070;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.job--page .qa--wrap .accordion__title span::after{
  transform: translate(-50%, -50%) rotate(90deg);
  transition: .3s;
}

.job--page .qa--wrap .accordion__title.is-open span::after{
  transform: translate(-50%, -50%) rotate(0);
  opacity: 0;
}

.job--page .qa--wrap .qa-num::before{
  content: "Q" counter(qa-num);
  grid-area: num;
  color: #042175;
  font-weight: 600;
  font-size: 32px;
}

.job--page .qa--wrap .accordion__content{
  display: none;
  grid-area: detail;
  padding: 10px 0 20px;
}

@media (max-width: 768px){
  .recruit-sub .headding--wrap{
    margin-bottom: 45px;
  }
  
  .recruit-sub .headding--wrap .page--ttl h1{
    font-size: 18px;
  }
  
  .recruit-sub .intro--wrap{
    padding-top: 0;
    margin-bottom: 60px;
  }
  
  .recruit-sub .intro--wrap .read{
    margin-bottom: 40px;
  }
  
  .job--page .recruit--message{
    padding: 25px 15px 35px;
  }
  
  .job--page .recruit--message h2{
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .job--page .recruit--message h2 span{
    font-size: 15px;
    color: initial;
  }
  
  .job--page .recruit--message .message--content{
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  .job--page .recruit--message .message--content p{
    flex: 0;
    font-size: 14px;
  }
  
  .job--page .recruit--message .message--content figure{
    flex: 0;
    max-width: 90%;
  }
  
  .job--page .workdetail--wrap{
    margin-bottom: 80px;
  }
  
  .job--page .workdetail--wrap .workcontent-block{
    margin-bottom: 40px;
  }
  
  .job--page .workdetail--wrap .workcontent-block .intro--wrap{
    margin-bottom: 25px;
  }
  
  .job--page .workdetail--wrap .workcontent-block .intro--wrap h2{
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .job--page .workdetail--wrap .workcontent-block .intro--wrap p{
    margin-bottom: 20px;
  }
  
  .job--page .workdetail--wrap .workcontent-block .intro--wrap figure{
    padding: 0;
    display: flex;
    gap: 20px;
  }
  
  .job--page .workdetail--wrap .workcontent-block .work--detail{
    margin-bottom: 50px;
  }
  
  .job--page .workdetail--wrap .workcontent-block .work--detail h3{
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .job--page .workdetail--wrap .workcontent-block .work--detail ul{
    flex-direction: column;
    gap: 30px;
  }
  
  .job--page .workdetail--wrap .workcontent-block .work--detail li{
    width: 100%;
  }
  
  .job--page .workdetail--wrap .workcontent-block:nth-of-type(2) .work--detail li{
    width: 100%;
  }
  
  .job--page .workdetail--wrap .workcontent-block .work--detail dt{
    font-size: 18px;
  }
  
  .job--page .workdetail--wrap .workcontent-block .day--detail h3{
    font-size: 18px;
    padding: 8px 0;
  }
  
  .job--page .workdetail--wrap .workcontent-block .day--detail ul{
    display: flex;
    flex-wrap: wrap;
    gap: 25px 15px;
  }
  
  .job--page .workdetail--wrap .workcontent-block .day--detail li{
    width: calc((100% - 15px) / 2);
  }
  
  .job--page .workdetail--wrap .workcontent-block .day--detail dt{
    font-size: 18px;
  }
  
  .job--page .step--wrap{
    margin-bottom: 60px;
  }
  
  .job--page .step--wrap h2{
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .job--page .step--wrap ul{
    margin-top: 20px;
    flex-direction: column;
    gap: 30px;
  }
  
  .job--page .step--wrap li{
    width: 100%;
  }
  
  .job--page .step--wrap dt{
    font-size: 16px;
    margin: 20px 0 15px;
  }
  
  .job--page .qa--wrap{
    padding: 40px 0;
    margin-bottom: 80px;
  }
  
  .job--page .qa--wrap h2{
    font-size: 22px;
    background-size: 230px 90px;
    height: 90px;
  }
  
  .job--page .qa--wrap .accordion__item{
    display: flex;
    gap: 10px;
    padding: 20px 0;
    flex-wrap: wrap;
  }
  
  .job--page .qa--wrap .accordion__title{
    padding: 0;
    font-size: 15px;
    padding-right: 30px;
    width: calc(100% - 37px);
    box-sizing: border-box;
  }
  
  .job--page .qa--wrap .accordion__title span{
    width: 22px;
    height: 22px;
  }
  
  .job--page .qa--wrap .accordion__title span::before,
  .job--page .qa--wrap .accordion__title span::after{
    width: 14px;
    height: 2px;
  }
  
  .job--page .qa--wrap .qa-num::before{
    font-size: 20px;
  }
  
  .job--page .qa--wrap .accordion__content{
    display: none;
    width: 100%;
    padding: 10px 0 10px;
  }
  
}

/* ---------------------------------------------
  recruitpage numbers
--------------------------------------------- */
.recruit--page.data--page .headding--wrap .page--ttl{
  color: #042175;
}

.recruit--page.data--page .headding--wrap{
  margin-bottom: 0;
}

.recruit--page.data--page .numbers--bg{
  background-color: #D5E4FF;
}

.recruit--page.data--page .numbers--content{
  padding-bottom: 200px;
  margin-bottom: 120px;
}

.recruit--page.data--page .numbers--content ul{
  display: flex;
  gap: 85px 80px;
  flex-wrap: wrap;
}

.recruit--page.data--page .numbers--content li{
  width: calc((100% - 160px) / 3);
}

.recruit--page.data--page .numbers--content li p{
  padding-top: 15px;
}

@media (max-width: 768px){
  .recruit--page.data--page .intro--wrap{
    padding-top: 40px;
  }

  .recruit--page.data--page .numbers--content{
    padding-bottom: 40px;
    margin-bottom: 80px;
  }
  
  .recruit--page.data--page .numbers--content ul{
    display: flex;
    gap: 30px 20px;
    flex-wrap: wrap;
  }
  
  .recruit--page.data--page .numbers--content li{
    width: calc((100% - 20px) / 2);
  }
  
  .recruit--page.data--page .numbers--content li p{
    padding-top: 10px;
  }
  
}

/* ---------------------------------------------
  recruitpage effort
--------------------------------------------- */
.recruit--page.workplace--page .headding--wrap .page--ttl{
  color: #042175;
}

.recruit--page.workplace--page .effort--content{
  margin-bottom: 200px;
}

.recruit--page.workplace--page .effort--content .effort-detail{
  margin-bottom: 120px;
}

.recruit--page.workplace--page .effort--content .effort-detail h2{
  font-size: 22px;
  font-weight: 500;
  color: #042175;
  padding-bottom: 10px;
  border-bottom: 1px solid #707070;
  margin-bottom: 15px;
}

.recruit--page.workplace--page .effort--content .effort-detail .read{
  margin-bottom: 40px;
}

.recruit--page.workplace--page .effort--content .effort-detail figure{
  max-width: 720px;
  margin: auto;
  margin-bottom: 50px;
}

.recruit--page.workplace--page .effort--content .effort-detail .content--listWrap ul{
  display: flex;
  justify-content: flex-start;
  gap: 60px;
}

.recruit--page.workplace--page .effort--content .effort-detail .content--listWrap li{
  width: calc((100% - 120px) / 3);
}

.recruit--page.workplace--page .effort--content .effort-detail:first-of-type .content--listWrap li{
  width: calc((100% - 60px) / 2);
}

.recruit--page.workplace--page .effort--content .effort-detail .content--listWrap dl{
  display: flex;
  flex-direction: column;
}

.recruit--page.workplace--page .effort--content .effort-detail .content--listWrap dt{
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 20px;
}

.recruit--page.workplace--page .effort--content .effort-detail .content--listWrap dd:nth-of-type(2){
  order: -1;
}

.recruit--page.workplace--page .effort--content .effort-detail:nth-of-type(3) .content--listWrap:nth-of-type(2){
  margin-top: 140px;
}

.recruit--page.workplace--page .effort--content .effort-detail:nth-of-type(3) .content--listWrap:nth-of-type(2) h3{
  color: #042175;
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid #707070;
  margin-bottom: 15px;
}

@media (max-width: 768px){
  
  .recruit--page.workplace--page .effort--content{
    margin-bottom: 80px;
  }
  
  .recruit--page.workplace--page .effort--content .effort-detail{
    margin-bottom: 60px;
  }
  
  .recruit--page.workplace--page .effort--content .effort-detail h2{
    font-size: 18px;
  }
  
  .recruit--page.workplace--page .effort--content .effort-detail .read{
    margin-bottom: 20px;
  }
  
  .recruit--page.workplace--page .effort--content .effort-detail figure{
    max-width: 100%;
    margin-bottom: 40px;
  }
  
  .recruit--page.workplace--page .effort--content .effort-detail .content--listWrap ul{
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .recruit--page.workplace--page .effort--content .effort-detail .content--listWrap li{
    width: 100%;
  }
  
  .recruit--page.workplace--page .effort--content .effort-detail:first-of-type .content--listWrap li{
    width: 100%;
  }
  
  .recruit--page.workplace--page .effort--content .effort-detail .content--listWrap dl{
    display: flex;
    flex-direction: column;
  }
  
  .recruit--page.workplace--page .effort--content .effort-detail .content--listWrap dt{
    font-size: 16px;
    margin-bottom: 12px;
    margin-top: 20px;
  }
  
  .recruit--page.workplace--page .effort--content .effort-detail:nth-of-type(3) .content--listWrap:nth-of-type(2){
    margin-top: 80px;
  }
  
  .recruit--page.workplace--page .effort--content .effort-detail:nth-of-type(3) .content--listWrap:nth-of-type(2) h3{
    font-size: 18px;
  }


}
/* ---------------------------------------------
  recruitpage interview
--------------------------------------------- */
.recruit--page.interview--page .headding--wrap .page--ttl{
  color: #042175;
}

.recruit--page.interview--page .interview--wrap{
  margin-bottom: 110px;
  counter-reset: int--num 0;
}

.recruit--page.interview--page .interview--wrap .interview--contentBox:nth-of-type(odd){
  background-color: #EFF8FF;
}

.recruit--page.interview--page .interview--wrap .interview--contentBox{
  padding: 80px 0;
  counter-increment: int--num 1;
}

.recruit--page.interview--page .interview--wrap .interview--contentBox .upper--wrap{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 60px;
}

.recruit--page.interview--page .interview--wrap .upper--wrap .text--wrap{
  flex: 0 1 395px;
  max-width: 395px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.recruit--page.interview--page .interview--wrap .upper--wrap .text--wrap .int--num{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px;
}

.recruit--page.interview--page .interview--wrap .upper--wrap .text--wrap .int--num::before{
  content: "Interview";
  font-size: 18px;
  font-weight: 500;
  color: #042175;
}

.recruit--page.interview--page .interview--wrap .upper--wrap .text--wrap .int--num::after{
  content: counter(int--num, decimal-leading-zero);
  font-size: 85px;
  font-weight: 500;
  color: #042175;
  line-height: 1;
}

.recruit--page.interview--page .interview--wrap .upper--wrap .text--wrap h2{
  font-size: 28px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: left;
}

.recruit--page.interview--page .interview--wrap .upper--wrap .text--wrap .add{
  display: flex;
  flex-direction: column;
}

.recruit--page.interview--page .interview--wrap .upper--wrap .text--wrap .name{
  font-size: 18px;
  margin-top: 5px;
  font-weight: 600;
}

.recruit--page.interview--page .interview--wrap .upper--wrap figure{
  flex: 0 1 580px;
  max-width: 580px;
}

.recruit--page.interview--page .interview--wrap .interview--contentBox .lower--wrap{
  display: flex;
  align-items: flex-start;
  gap: 70px;
}

.recruit--page.interview--page .interview--wrap .lower--wrap .introduction--wrap{
  flex: 1 1 585px;
  max-width: 585px;
  min-width: 0;
}

.recruit--page.interview--page .interview--wrap .lower--wrap .introduction--detail:not(:nth-of-type(2)){
  margin-bottom: 40px;
}

.recruit--page.interview--page .interview--wrap .lower--wrap .introduction--wrap h3{
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 500;
}

.recruit--page.interview--page .interview--wrap .lower--wrap .introduction--wrap p{
  line-height: 2;
}

.recruit--page.interview--page .interview--wrap .lower--wrap .advice--wrap{
  flex: 0 0 345px;
  width: 345px;
  background-color: #0071BC;
  padding: 35px;
  box-sizing: border-box;
  border-radius: 25px;
  color: #fff;
}

.recruit--page.interview--page .interview--wrap .lower--wrap .advice--wrap .ttl{
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 3px solid #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  position: relative;
  width: fit-content;
  margin-left: auto;
}

.recruit--page.interview--page .interview--wrap .lower--wrap .advice--wrap .ttl::before{
  content: "";
  width: 56px;
  height: 66px;
  display: block;
  background: url(../img/recruit/interview-advice-icon.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: -5px;
  left: -80px;
}

@media (max-width: 768px){ 
  .recruit--page.interview--page .interview--wrap{
    margin-bottom: 80px;
  }
  
  .recruit--page.interview--page .interview--wrap .interview--contentBox{
    padding: 40px 0;
  }
  
  .recruit--page.interview--page .interview--wrap .interview--contentBox .upper--wrap{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .recruit--page.interview--page .interview--wrap .upper--wrap .text--wrap{
    flex: 0;
    max-width: 100%;
    display: grid;
    grid-template-columns: 60px auto;
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "num ttl" "division division" "name name";
    gap: 10px 20px;
  }
  
  .recruit--page.interview--page .interview--wrap .upper--wrap .text--wrap .int--num{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    grid-area: num;
  }
  
  .recruit--page.interview--page .interview--wrap .upper--wrap .text--wrap .int--num::before{
    content: "Interview";
    font-size: 14px;
  }
  
  .recruit--page.interview--page .interview--wrap .upper--wrap .text--wrap .int--num::after{
    content: counter(int--num, decimal-leading-zero);
    font-size: 30px;
  }
  
  .recruit--page.interview--page .interview--wrap .upper--wrap .text--wrap h2{
    font-size: 16px;
    margin-bottom: 0;
    grid-area: ttl;
  }
  
  .recruit--page.interview--page .interview--wrap .upper--wrap .text--wrap .add{
    display: flex;
    flex-direction: column;
    grid-area: division;
  }
  
  .recruit--page.interview--page .interview--wrap .upper--wrap .text--wrap .name{
    font-size: 18px;
    margin-top: 5px;
    font-weight: 600;
    grid-area: name;
  }
  
  .recruit--page.interview--page .interview--wrap .upper--wrap figure{
    flex: 0;
    max-width: 100%;
  }
  
  .recruit--page.interview--page .interview--wrap .interview--contentBox .lower--wrap{
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .recruit--page.interview--page .interview--wrap .lower--wrap .introduction--wrap{
    flex: 0;
    max-width: 100%;
    min-width: 0;
  }
  
  .recruit--page.interview--page .interview--wrap .lower--wrap .introduction--detail:not(:nth-of-type(2)){
    margin-bottom: 40px;
  }
  
  .recruit--page.interview--page .interview--wrap .lower--wrap .introduction--wrap h3{
    font-size: 16px;
  }
  
  .recruit--page.interview--page .interview--wrap .lower--wrap .introduction--wrap p{
    line-height: 2;
  }
  
  .recruit--page.interview--page .interview--wrap .lower--wrap .advice--wrap{
    flex: 0;
    max-width: 100%;
    padding: 25px;
  }
  
  .recruit--page.interview--page .interview--wrap .lower--wrap .advice--wrap .ttl{
    font-size: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fff;
    margin-bottom: 15px;
    margin-left: 60px;
  }
  
  .recruit--page.interview--page .interview--wrap .lower--wrap .advice--wrap .ttl::before{
    width: 43px;
    height: 51px;
    background: url(../img/recruit/interview-advice-icon.png) no-repeat;
    background-size: cover;
    top: -8px;
    left: -56px;
  }


}

/* ---------------------------------------------
  news page
--------------------------------------------- */
.wrap.news .headding--wrap{
  position: relative;
  color: #fff;
  background-color: #0071BC;
  height: 215px;
}

.wrap.news .headding--wrap .page--ttl{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wrap.news .headding--wrap .page--ttl h1{
  display: flex;
  flex-direction: column;
  font-size: 35px;
  font-weight: 500;
  text-align: center;
}

.news--page .newslist--wrap{
  margin: 75px 0 215px;
}

.news--page .newslist--wrap .cat--listWrap{
  margin-bottom: 20px;
}

.news--page .newslist--wrap .cat--listWrap ul{
  display: flex;
  gap: 6px;
  justify-content: flex-start;
}

.news--page .newslist--wrap .cat--listWrap ul li a{
  width: 135px;
  background-color: #D8D8D8;
  padding: 3px 0;
  text-align: center;
  border: 0;
  display: block;
}

.news--page .newslist--wrap .cat--listWrap ul li a.current{
  background-color: #004894;
  color: #fff;
}

.news--page .newslist--wrap .news--list{
  margin-bottom: 35px;
}

.news--page .newslist--wrap .news--list li{
  border-top: 1px solid #707070;
}

.news--page .newslist--wrap .news--list li:last-of-type{
  border-bottom: 1px solid #BCBCBC;
}

.news--page .newslist--wrap .news--list li a{
  padding: 20px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.news--page .newslist--wrap .news--list li a .category{
  background-color: #464646;
  color: #fff;
  text-align: center;
  padding: 2px 0;
  margin-right: 15px;
  width: 110px;
  display: block;
  font-size: 13px;
}

.news--page .newslist--wrap .news--list li a .date{
  font-size: 14px;
  margin-right: 30px;
}

.news--page .newslist--wrap .pager{
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  color: #707070;
  font-size: 14px;
}

.news--page .newslist--wrap .pager .page-numbers{
  gap: 10px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.news--page .newslist--wrap .pager .page-numbers li span,
.news--page .newslist--wrap .pager .page-numbers li a{
  border: 1px solid #707070;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  width: 36px;
  height: 36px;
}

.news--page .newslist--wrap .pager .page-numbers li span.current{
  background: #042175;
  color: #fff;
  border-color: #042175;
}

.news--page .newslist--wrap .pager .page-numbers.dots{
  border: 0;
}

.news--page .newslist--wrap .pager .page-numbers li a.prev,
.news--page .newslist--wrap .pager .page-numbers li a.next{
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border: 0;
  width: 100%;
}

.news--page .newslist--wrap .pager .prev::before,
.news--page .newslist--wrap .pager .next::after{
  content: "";
  display: block;
  width: 20px;
  height: 11px;
  background: url(../img/common/arrow.svg) no-repeat;
  background-size: cover;
}

.news--page .newslist--wrap .pager .next::after{
  transform: rotate(180deg);
}

.news-single--page .newsdetail--wrap{
  padding: 70px 0 140px;
}

.news-single--page .newsdetail--wrap .detail--head{
  margin-bottom: 40px;
}

.news-single--page .newsdetail--wrap .detail--head .upper{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 40px;
}

.news-single--page .newsdetail--wrap .detail--head .upper .date{
  font-size: 14px;
}

.news-single--page .newsdetail--wrap .detail--head .upper .category{
  color: #fff;
  width: 135px;
  text-align: center;
  padding: 2px 0;
  display: block;
  background-color: #042175;
}

.news-single--page .newsdetail--wrap .detail--head h2{
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 15px;
  border-bottom: 1px solid #707070;
}

.news-single--page .newsdetail--wrap .detail-main p{
  margin-bottom: 1em;
}

@media (max-width: 768px){
  .wrap.news .headding--wrap{
    height: 170px;
  }
  
  .wrap.news .headding--wrap .page--ttl h1{
    font-size: 25px;
  }
  
  .news--page .newslist--wrap{
    margin: 55px 0 80px;
  }
  
  .news--page .newslist--wrap .cat--listWrap ul{
    display: flex;
    gap: 6px;
    justify-content: flex-start;
  }
  
  .news--page .newslist--wrap .cat--listWrap ul li a{
    width: 105px;
  }
  
  .news--page .newslist--wrap .news--list li a{
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 15px 0;
  }
  
  .news--page .newslist--wrap .news--list li a .category{
    width: 95px;
    font-size: 11px;
  }
  
  .news--page .newslist--wrap .news--list li a .date{
    font-size: 13px;
    margin-right: 15px;
  }
    
  .news--page .newslist--wrap .news--list li a .ttl{
    width: 100%;
  }
  
  .news--page .newslist--wrap .pager{
    gap: 15px;
    font-size: 12px;
  }
  
  .news--page .newslist--wrap .pager .page-numbers li span,
  .news--page .newslist--wrap .pager .page-numbers li a{
    font-size: 13px;
    width: 30px;
    height: 30px;
  }
  
  .news--page .newslist--wrap .pager .prev::before,
  .news--page .newslist--wrap .pager .next::after{
    content: "";
    display: block;
    width: 20px;
    height: 11px;
    background: url(../img/common/arrow.svg) no-repeat;
    background-size: cover;
  }
  
  .news--page .newslist--wrap .pager .next::after{
    transform: rotate(180deg);
  }
  
  .news-single--page .newsdetail--wrap{
    padding: 40px 0 80px;
  }
  
  .news-single--page .newsdetail--wrap .detail--head{
    margin-bottom: 30px;
  }
  
  .news-single--page .newsdetail--wrap .detail--head .upper{
    margin-bottom: 20px;
  }
  
  .news-single--page .newsdetail--wrap .detail--head .upper .date{
    font-size: 13px;
  }
  
  .news-single--page .newsdetail--wrap .detail--head .upper .category{
    width: 105px;
    font-size: 12px;
  }
  
  .news-single--page .newsdetail--wrap .detail--head h2{
    font-size: 18px;
  }

}

/* ---------------------------------------------
  contactpage
--------------------------------------------- */
.wrap.contact .headding--wrap{
  position: relative;
  color: #042175;
}

.wrap.contact .headding--wrap .page--ttl{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wrap.contact .headding--wrap .page--ttl h1{
  display: flex;
  flex-direction: column;
  font-size: 35px;
  font-weight: 500;
}

.contact--page .form--wrap{
  padding: 55px 0 200px;
}

.contact--page .form--wrap .form--upper{
  margin-bottom: 50px;
}

.contact--page .form--wrap .form--upper p{
  margin-bottom: 20px;
  font-weight: 500;
}

.check--list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
}

.check--list .mwform-radio-field {
    width: calc((100% - 56px) / 3);
    border: 1px solid #042175;
    border-radius: 5px;
    transition: .3s;
    box-sizing: border-box;
}

/* ラベル全体をクリック可能 */
.check--list .mwform-radio-field label {
    display: flex;
    align-items: center;
    justify-content: left;
    width: 100%;
    height: 100%;
    padding: 15px 10px;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
  }
  
  .check--list .mwform-radio-field label::before{
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid #042175;
    border-radius: 100px;
    margin-right: 15px;
    transition: .3s;
  }
  
  .check--list .mwform-radio-field label::after{
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #042175;
    border-radius: 100px;
    transition: .3s;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
  }
  
  /* ラジオボタンは非表示 */
  .check--list input[type="radio"] {
    display: none;
  }
  
  .check--list .mwform-radio-field-text {
    color: #042175;
    font-weight: 500;
    text-align: center;
    transition: .3s;
  }
  
  /* 選択中 */
  .check--list .mwform-radio-field.current {
    background: #042175;
    border-color: #042175;
  }
  
  .check--list .mwform-radio-field.current label::before{
    border-color: #fff;
  }
  
  .check--list .mwform-radio-field.current label::after{
    background-color: #fff;
  }
  
  
  .check--list .mwform-radio-field.current .mwform-radio-field-text {
    color: #fff;
  }
  
  .mw_wp_form .horizontal-item + .horizontal-item{
    margin-left: 0;
  }

.contact--page .form--wrap .form--table table{
  width: 100%;
  table-layout: fixed;
}

.contact--page .form--wrap .form--table{
  font-weight: 500;
}

.contact--page .form--wrap .form--table table th,
.contact--page .form--wrap .form--table table td{
  padding: 25px 0;
  border-top: 1px solid #707070;
}

.contact--page .form--wrap .form--table table th:last-of-type,
.contact--page .form--wrap .form--table table td:last-of-type{
  border-bottom: 1px solid #707070;
}

.contact--page .form--wrap .form--table table th{
  width: 180px;
  vertical-align: middle;
}

.contact--page .form--wrap .form--table table th div{
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact--page .form--wrap .form--table table td{
  padding-left: 60px;
}

.contact--page .form--wrap .form--table table td .text--box input,
.contact--page .form--wrap .form--table table td .text--area textarea{
  padding: 15px 20px;
  background-color: #EBEBEB;
  border-radius: 5px;
  color: #656565;
  border: 0;
  width: 100%;
  box-sizing: border-box;
}

.contact--page .form--wrap .form--table table td .text--box input::placeholder{
  font-weight: 300;
}

.contact--page .form--wrap .form--table table td .textarea textarea{
  height: 265px;
}

.contact--page .form--wrap .form--table .required,
.contact--page .form--wrap .form--table .any{
  display: block;
  border-radius: 5px;
  width: 35px;
  padding: 2px 0;
  color: #fff;
  background-color: #FF0000;
  text-align: center;
  font-size: 12px;
}

.contact--page .form--wrap .form--table .any{
  background-color: #909090;
}

.contact--page .form--wrap .privacy--wrap{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 40px;
  position: relative;
}

.contact--page .form--wrap .privacy--wrap a{
  color: #274EAF;
  text-decoration: underline;
}

.contact--page .form--wrap .privacy--wrap .error{
  position: absolute;
  left: 0;
  bottom: -24px;
}

.contact--page .form--wrap .btn--wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.contact--page .form--wrap .btn--wrap button,
.contact--page .form--wrap .btn--wrap .btn-back,
.contact--page .form-buttons.finish a{
  width: 230px;
  text-align: center;
  padding: 12px 0;
  border: 1px solid #042175;
  color: #042175;
  font-size: 13px;
  background-color: #fff;
  border-radius: 100px;
  transition: .4s;
  display: block;
}

.contact--page .form--wrap .btn--wrap button:hover,
.contact--page .form--wrap .btn--wrap .btn-back:hover,
.contact--page .form-buttons.finish a:hover{
  background-color: #042175;
  color: #fff;
}

.mw_wp_form_confirm .check--list{
  color: #042175;
  background: #fff;
  width: calc((100% - 56px) / 3);
  border: 1px solid #042175;
  border-radius: 5px;
  transition: .3s;
  padding: 15px 10px;
  box-sizing: border-box;
  justify-content: center;
}

.contact--page .mw_wp_form_confirm .form--wrap .form--table .required,
.contact--page .mw_wp_form_confirm .form--wrap .form--table .any{
  display: none;
}

.contact--page .form-heading.finish{
  font-size: 28px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 80px;
}

.contact--page .mw_wp_form_complete{
  padding: 200px 0;
}

.contact--page .mw_wp_form_complete .comment.finish{
  text-align: center;
}

.contact--page .mw_wp_form_complete .form-buttons.finish a{
  margin: auto;
  margin-top: 80px;
}

@media (max-width: 768px){
  .wrap.contact .headding--wrap .page--ttl h1{
    font-size: 25px;
  }
  
  .contact--page .form--wrap{
    padding: 45px 0 80px;
  }
  
  .contact--page .form--wrap .form--upper{
    margin-bottom: 30px;
  }
  
  .contact--page .form--wrap .form--upper p{
    margin-bottom: 20px;
  }
  
  .check--list {
      display: flex;
      flex-wrap: wrap;
      gap: 15px 25px;
  }
  
  .check--list .mwform-radio-field {
      width: 100%;
  }
  
  .contact--page .form--wrap .form--table table th,
  .contact--page .form--wrap .form--table table td{
    padding: 15px 0;
    display: block;
  }
  
  .contact--page .form--wrap .form--table table th{
    width: 100%;
    vertical-align: middle;
    border-bottom: 0;
    padding-bottom: 5px;
  }

  .contact--page .form--wrap .form--table table th:last-of-type,
  .contact--page .form--wrap .form--table table td:last-of-type{
    border-bottom: 0;
  }
  
  .contact--page .form--wrap .form--table table th div{
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }
  
  .contact--page .form--wrap .form--table table td{
    padding-left: 0;
    border-top: 0;
    padding-top: 5px;
  }
  
  .contact--page .form--wrap .form--table table td .text--box input,
  .contact--page .form--wrap .form--table table td .text--area textarea{
    padding: 10px 15px;
  }
  
  .contact--page .form--wrap .form--table table td .textarea textarea{
    height: 205px;
  }
  
  .contact--page .form--wrap .form--table .required,
  .contact--page .form--wrap .form--table .any{
    font-size: 11px;
  }
  
  .contact--page .form--wrap .privacy--wrap{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .mw_wp_form_confirm .check--list{
    width: 100%;
  }
  
  .contact--page .form-heading.finish{
    font-size: 22px;
    margin-bottom: 60px;
  }
  
  .contact--page .mw_wp_form_complete{
    padding: 1200px 0;
  }
  
  .contact--page .mw_wp_form_complete .comment.finish{
    text-align: center;
  }
  
  .contact--page .mw_wp_form_complete .form-buttons.finish a{
    margin: auto;
    margin-top: 60px;
  }
  
}

/* ---------------------------------------------
  other-content-nav
--------------------------------------------- */
.othercontent--nav{
  padding-bottom: 75px;
  color: #fff;
}

.othercontent--nav .container > h2{
  font-size: 22px;
  margin-bottom: 20px;
  color: initial;
  text-align: center;
  border: 0;
}

.othercontent--nav .container > ul{
  padding: 0 60px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.othercontent--nav .container >  ul li{
  background-color: #042175;
  text-align: center;
  border-radius: 10px;
  font-weight: 500;
  width: calc((100% - 80px) / 6);
}

.othercontent--nav .container >  ul li a{
  display: block;
  padding: 30px 5px;
}

.about--page .othercontent--nav .container > h2{
  color: #fff;
}

@media (max-width: 768px){
  .othercontent--nav{
    padding-bottom: 55px;
  }

  .othercontent--nav .container > h2{
    font-size: 18px;
    margin-bottom: 15px;
  }

  .othercontent--nav .container > ul{
    padding: 0;
    flex-direction: column;
  }

  .othercontent--nav .container >  ul li{
    width: 100%;
    margin-bottom: 10px;
  }

  .othercontent--nav .container >  ul li a{
    padding: 8px 5px;
  }

}

/* ---------------------------------------------
  top svg animation
--------------------------------------------- */

.svg-deco.mv svg .svg-elem-1 {
  stroke-dashoffset: 3385.5712890625px;
  stroke-dasharray: 3385.5712890625px;
  -webkit-transition: stroke-dashoffset 3s ease-in-out 0s;
          transition: stroke-dashoffset 3s ease-in-out 0s;
}

.svg-deco.mv svg.active .svg-elem-1 {
  stroke-dashoffset: 0;
}

.svg-deco.mv svg .svg-elem-2 {
  stroke-dashoffset: 3385.56298828125px;
  stroke-dasharray: 3385.56298828125px;
  -webkit-transition: stroke-dashoffset 3s ease-in-out 0.12s;
          transition: stroke-dashoffset 3s ease-in-out 0.12s;
}

.svg-deco.mv svg.active .svg-elem-2 {
  stroke-dashoffset: 0;
}

.svg-deco.mv svg .svg-elem-3 {
  stroke-dashoffset: 3385.6015625px;
  stroke-dasharray: 3385.6015625px;
  -webkit-transition: stroke-dashoffset 3s ease-in-out 0.24s;
          transition: stroke-dashoffset 3s ease-in-out 0.24s;
}

.svg-deco.mv svg.active .svg-elem-3 {
  stroke-dashoffset: 0;
}

.svg-deco{
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.svg-deco svg{
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1920px;
    height: auto;
    min-width: 1920px;
}

.svg-deco.mv svg{
    top: 125px;
}

/* 1920px以上 */
@media (min-width:1920px){

    .svg-deco svg{
        width:100%;
        min-width:100%;
    }

}

@media (max-width: 768px){
  .svg-deco svg{
    width: 100%;
    min-width: 100%;
  }

  .svg-deco.mv svg{
    top: 520px;
    width: 560px;
    min-width: 560px;
    transform: translateX(-53%);
  }
}

.svg-deco.intro svg {
    opacity: 0;
    transition: opacity .8s;
}

.svg-deco.intro svg.active {
    opacity: 1;
}

.svg-deco.intro svg .svg-elem-1 {
  stroke-dashoffset: 2555.39501953125px;
  stroke-dasharray: 2555.39501953125px;
  -webkit-transition: stroke-dashoffset 2s ease-in-out 0s;
          transition: stroke-dashoffset 2s ease-in-out 0s;
}

.svg-deco.intro svg.active .svg-elem-1 {
  stroke-dashoffset: 0;
}

.svg-deco.intro svg .svg-elem-2 {
  stroke-dashoffset: 2555.3837890625px;
  stroke-dasharray: 2555.3837890625px;
  -webkit-transition: stroke-dashoffset 2s ease-in-out 0.12s;
          transition: stroke-dashoffset 2s ease-in-out 0.12s;
}

.svg-deco.intro svg.active .svg-elem-2 {
  stroke-dashoffset: 0;
}

.svg-deco.intro svg .svg-elem-3 {
  stroke-dashoffset: 2555.414794921875px;
  stroke-dasharray: 2555.414794921875px;
  -webkit-transition: stroke-dashoffset 2s ease-in-out 0.24s;
          transition: stroke-dashoffset 2s ease-in-out 0.24s;
}

.svg-deco.intro svg.active .svg-elem-3 {
  stroke-dashoffset: 0;
}

.svg-deco.intro svg{
    top: 990px;
}

.svg-deco.about svg .svg-elem-1 {
  stroke-dashoffset: 1955.500244140625px;
  stroke-dasharray: 1955.500244140625px;
  -webkit-transition: stroke-dashoffset 2s ease-in-out 0s;
          transition: stroke-dashoffset 2s ease-in-out 0s;
}

.svg-deco.about svg.active .svg-elem-1 {
  stroke-dashoffset: 3911.00048828125px;
}

.svg-deco.about svg .svg-elem-2 {
  stroke-dashoffset: 1798.41455078125px;
  stroke-dasharray: 1798.41455078125px;
  -webkit-transition: stroke-dashoffset 2s ease-in-out 0.12s;
          transition: stroke-dashoffset 2s ease-in-out 0.12s;
}

.svg-deco.about svg.active .svg-elem-2 {
  stroke-dashoffset: 3596.8291015625px;
}

.svg-deco.about svg .svg-elem-3 {
  stroke-dashoffset: 1641.35888671875px;
  stroke-dasharray: 1641.35888671875px;
  -webkit-transition: stroke-dashoffset 2s ease-in-out 0.24s;
          transition: stroke-dashoffset 2s ease-in-out 0.24s;
}

.svg-deco.about svg.active .svg-elem-3 {
  stroke-dashoffset: 3282.7177734375px;
}


.svg-deco.about svg{
  top: 2300px;
  left: initial;
  right: 0;
  width: 420px;
  min-width: 420px;
  transform: initial;
}

.svg-deco.bottom svg .svg-elem-1 {
  stroke-dashoffset: 1894.0489501953125px;
  stroke-dasharray: 1894.0489501953125px;
  -webkit-transition: stroke-dashoffset 2s ease-in-out 0s;
          transition: stroke-dashoffset 2s ease-in-out 0s;
}

.svg-deco.bottom svg.active .svg-elem-1 {
  stroke-dashoffset: 3788.097900390625px;
}

.svg-deco.bottom svg .svg-elem-2 {
  stroke-dashoffset: 1815.5006103515625px;
  stroke-dasharray: 1815.5006103515625px;
  -webkit-transition: stroke-dashoffset 2s ease-in-out 0.12s;
          transition: stroke-dashoffset 2s ease-in-out 0.12s;
}

.svg-deco.bottom svg.active .svg-elem-2 {
  stroke-dashoffset: 3631.001220703125px;
}

.svg-deco.bottom svg .svg-elem-3 {
  stroke-dashoffset: 1736.96337890625px;
  stroke-dasharray: 1736.96337890625px;
  -webkit-transition: stroke-dashoffset 2s ease-in-out 0.24s;
          transition: stroke-dashoffset 2s ease-in-out 0.24s;
}

.svg-deco.bottom svg.active .svg-elem-3 {
  stroke-dashoffset: 3473.9267578125px;
}

.svg-deco.bottom svg{
  top: 4610px;
  left: initial;
  right: -20%;
  width: 1300px;
  min-width: 1300px;
  transform: initial;
}

@media (min-width:1920px){

    .svg-deco.bottom svg{
        right: 0;
    }

}


/* ---------------------------------------------
  subpage svg
--------------------------------------------- */

.img-deco{
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.img-deco img{
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1920px;
    height: auto;
    min-width: 1920px;
}

.about--page .img-deco.mv img{
    top: 160px;
}

.about--page .img-deco.intro img{
    top: 1260px;
}

.about--page .img-deco.about img{
  top: 3150px;
  left: -270px;
  width: 420px;
  min-width: 420px;
  transform: initial;
  opacity: .8;
}

.about--page .img-deco.bottom img{
  top: 4895px;
  opacity: .6;
}

/* 1920px以上 */
@media (min-width:1920px){

    .img-deco img{
        width:100%;
        min-width:100%;
    }

}

@media (max-width: 768px){

  .about--page .img-deco.mv img{
    width: 560px;
    min-width: 560px;
    top: 280px;
  }
}

.manufacturing--page .img-deco.mv img{
  top: 0px;
  left: initial;
  right: -330px;
  width: 890px;
  min-width: 890px;
  transform: initial;
}

.manufacturing--page .img-deco.intro img{
    top: 1000px;
}

.manufacturing--page .img-deco.about img{
  top: 2950px;
}

.manufacturing--page .img-deco.bottom img{
  top: 4070px;
}

.sourcing--page .img-deco.mv img{
  top: 0px;
  left: initial;
  right: -330px;
  width: 890px;
  min-width: 890px;
  transform: initial;
}

.sourcing--page .img-deco.intro img{
    top: 820px;
}

.sourcing--page .img-deco.about img{
  top: 1920px;
}

.sourcing--page .img-deco.bottom img{
  top: 5430px;
}

.connecting--page .img-deco.mv img{
  top: 45px;
  left: initial;
  right: -210px;
  width: 890px;
  min-width: 890px;
  transform: initial;
}

.connecting--page .img-deco.intro img{
    top: 980px;
}

.connecting--page .img-deco.about img{
  top: 1890px;
}

@media (max-width: 768px){

  .manufacturing--page .img-deco,
  .sourcing--page .img-deco,
  .connecting--page .img-deco{
    display: none;
  }
}

.error-content--wrap{
  padding: 120px 0;
  text-align: center;
}

.error-content--wrap p{
  line-height: 1.8;
  margin-bottom: 60px;
}

.error-content--wrap .link--btn{
  margin: auto;
}