@charset "utf-8";

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

body {
  margin: 0;
  font-family: "Arial","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Meiryo", "MS Pゴシック", "MS PGothic", sans-serif;
}

body.hash-loaded .slideIn {
  opacity: 1;
  transform: none;
  transition: none;
}

main {
  display: block;
}

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

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

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

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

a:hover {
  opacity: 0.6;
  transition: 0.3s;
}

abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

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

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

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

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

[type="number"] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}


summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

html{
  font-size: 62.5%;
}

/* common */
.header{
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 72px;
  justify-content: space-between;
  z-index: 100;
}

.header_inner{
  position: relative;
}

.header-left{
  z-index: 999;
}

.header-left_inner{
  width: 210px;
  height: 100%;
  display: table;
}

.header-left_inner a{
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.header-left_inner a img{
  width: 160px;
}

.header-center{
  left: 0;
  right: 0;
}

.header-center_inner{
  display: table;
  width: 100%;
  height: 100%;
}

.header-center_inner nav{
  display: table-cell;
  vertical-align: middle;
}

.header-nav{
  display: flex;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0px 20px;
}

.header-nav li + li{
  margin-left: 32px;
}
.header-nav li a:hover{
  opacity: 1.0 !important;
}
.about_hover,
.business_hover,
.company_hover,
.news_hover,
.recruit_hover,
.contact_hover{
  position: relative;
}
.about_hover::after,
.business_hover::after,
.company_hover::after,
.news_hover::after,
.recruit_hover::after,
.contact_hover::after{
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 5px;
  bottom: -6px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s;
}
.about_hover::after{
  background: #0049EF;
}
.business_hover::after{
  background: #FFA900;
}
.company_hover::after{
  background: #0049EF;
}
.news_hover::after{
  background: #05C46C;
}
.recruit_hover::after{
  background: #E6485A;
}
.contact_hover::after{
  background: #0049EF;
}
.about_hover:hover::after,
.business_hover:hover::after,
.company_hover:hover::after,
.news_hover:hover::after,
.recruit_hover:hover::after,
.contact_hover:hover::after{
  opacity: 1.0;
  transition: 0.3s;
  bottom: -16px;
}
.about_current::after,
.business_current::after,
.company_current::after,
.news_current::after,
.recruit_current::after,
.contact_current::after{
  opacity: 1.0 !important;
  bottom: -16px !important;
}

.hamburger-menu-area{
  width: 72px;
}

.hamburger-menu-button{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  cursor: pointer;
  width: 72px;
  height: 72px;
}

.hamburger-menu-button span:nth-of-type(1),
.hamburger-menu-button span:nth-of-type(2){
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 12px;
  width: 47px;
  height: 1px;
  background-color: #000000;
}

.hamburger-menu-button span:nth-of-type(3)::before{
  content: "MENU";
  color: #000000;
  font-size: 1.4rem;
  font-weight: bold;
  position: absolute;
  left: 14px;
  top: 40px;
}

.hamburger-menu-button span:nth-of-type(1){
  top: 15px;
}

.hamburger-menu-button span:nth-of-type(2){
  top: 28px;
}

.hamburger-menu-button.active span:nth-of-type(1){
  top: 18px;
  transform: translateY(6px) rotate(-30deg);
  background-color: #fff;
}

.hamburger-menu-button.active span:nth-of-type(2){
  top: 30px;
  transform: translateY(-6px) rotate(30deg);
  background-color: #fff;
}

.hamburger-menu-button.active span:nth-of-type(3)::before{
  content: "CLOSE";
  color: #fff;
  left: 12px;
}

.hamburger-menu-nav-list ul{
  width: 100%;
}

.hamburger-menu-nav-item a{
  color: #fff;
  padding: 20px 0;
  display: inline-block;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 4.8rem;
}

.hamburger-menu-nav-item span{
  font-size: 2.4rem;
  font-weight: normal;
  letter-spacing: 0;
}

.hamburger-menu-nav-item.sp{
  display: none;
}

#gnav ul {
  position: absolute;
  z-index: 999;
  top: 200px;
}

#gnav {
  position: fixed;
  z-index: 990;
  top: 0;
  right: -120%; 
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  transition: all 0.6s;
  padding: 0 20px;
}

#gnav.list_active #gnav_list {
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 1100px;
  margin: 0 auto;
}

#gnav.list_active {
  right: 0;
}

.common-bg-color{
  background-color: #F2F2F2;
}

.common-side-padding{
  padding: 0 20px 0px 20px;
}

.common-max-widh{
  max-width: 1100px;
  margin: 0 auto;
}

.common-padding-bottom{
  padding-bottom: 80px;
}

.common-page-ttl-en{
  font-size: 6.4rem;
  font-weight: bold;
  font-style: italic;
}

.common-page-ttl-jp{
  font-size: 2.0rem;
}

.common-page-ttl-child{
  font-size: 3.2rem;
  font-weight: bold;
  color: #0049EF;
}

.link-button-area{
  text-align: center;
}

.common-link-button{
  display: inline-block;
  max-width: 200px;
  width: 100%;
  line-height: 62px;
  border-radius: 31px;
  font-size: 2rem;
}

.link-button-color01{
  background-color: #D2DBE2;
  font-style: italic;
}

.link-button-color02{
  background-color: #000000;
  color: #fff;
  font-style: italic;
}

.slideIn{
	opacity: 0;
	transform: translateY(100px);
	transition: 0.8s;
}

.nothing-txt-common{
  font-size: 1.5rem;
}

.footer-top,
.index-footer-top{
  width: 100%;
  height: 60px;
  margin-bottom: 40px;
}

.footer-top{
  background-color: #000000;
}

.index-footer-top{
  background-color: #F2F2F2;
}

.footer-top_inner{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.footer-top-left,
.footer-top-right{
  height: 100%;
  display: table;
}

.footer-top-left a,
.footer-top-right nav{
  display: table-cell;
  vertical-align: middle;
}

.footer-top-logo{
  width: 160px;
}

.footer-top-txt{
  display: flex;
  color: #fff;
  font-size: 1.6rem;
}

.footer-bottom-list{
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 30px;
}

.footer-bottom-item {
  flex: 0 1 auto;
}

.footer-bottom-item a {
  display: inline-block;
  width: auto;
  height: auto;
}

.footer-bottom-item:nth-child(-n+3) {
  flex-shrink: 0;
}

.footer-bottom-item + .footer-bottom-item{
  margin-left: 0px;
}

.footer-bottom-item-main{
  margin-bottom: 5px;
}

.footer-bottom-item-main,
.footer-bottom-item-privacy{
  color: #000000;
  font-size: 1.8rem;
  font-weight: bold;
  display: inline-block;
  position: relative;
}

.footer-bottom-item-main::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(../img/yajirushi.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 6px;
  position: static;
}

.footer-bottom-item-sub{
  display: block;
  color: #9AA0A6;
  font-size: 1.2rem;
}

.footer-sub-list {
  margin-top: 10px;
  list-style: none;
  padding: 0;
}

.footer-sub-list li {
  margin-bottom: 5px;
}

.footer-sub-list li a {
  color: #666;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 6px 0 6px 10px;
  display: inline-block;
  position: relative;
}

.footer-sub-list li a::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
}

.footer-bottom-item-privacy{
  margin-bottom: 30px;
}

.copyright{
  margin-bottom: 30px;
}

.copyright p{
  color: #9AA0A6;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.common-br-sp{
  display: none;
}

.footer-bottom-group_company{
  border-top: solid 1px #000;
  padding: 30px 120px;
}

.footer-bottom-group_company-list{
  display: grid;
  gap: 3%;
  grid-template-columns: repeat(5, 1fr);
}

.footer-bottom-group_company-item img{
  width: 100%;
}

@media (max-width: 750px){
  .header-center{
    display: none;
  }

  #gnav ul {
    top: 130px;
  }

  .hamburger-menu-nav-item a{
    padding: 10px 0;
    font-size: 3.5rem;
    letter-spacing: 0;
  }
  
  .hamburger-menu-nav-item span{
    font-size: 1.6rem;
  }

  .hamburger-menu-nav-item.sp{
    display: block;
  }

  .footer-top_inner{
    justify-content: center;
  }

  .footer-top-right{
    display: none;
  }

  .footer-bottom_inner nav,
  .footer-bottom-item-privacy{
    display: none;
  }

  /*.footer-bottom_inner{
    text-align: center;
  }

  .footer-bottom-list{
    display: block;
  }

  .footer-bottom-item + .footer-bottom-item{
    margin-left: 0;
    margin-top: 30px;
  }

  .footer-bottom-item{
    transform: translateX(-9px);
  }

  .footer-bottom-item a{
    width: 100%;
  }*/

  .footer-bottom-group_company-list{
    display: block;
  }

  .common-max-widh{
    max-width: 750px;
  }

  .common-page-ttl-en{
    font-size: 4.0rem;
  }

  .common-page-ttl-jp{
    font-size: 1.6rem;
  }

  .common-br-sp{
    display: inline;
  }
}

/* index */
.first-view{
  position: relative;
}
.first-view-img-items{
  overflow: hidden;
}
.first-view-img{
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.first-view-contents,
.index-news-contents{
  width: 100%;
}

.first-view-contents{
  position: absolute;
  bottom: -30%;
  right: 0;
  left: 0;
}

.index-news{
  background-color: #000000;
  padding-top: 280px;
  padding-bottom: 80px;
  
}

.index-news-contents_wrap{
  position: relative;
}

.first-view-logo-sub-ttl,
.first-view-logo-sub-ttl-en,
.first-view-logo-sp-sub-ttl-en,
.first-view-logo-sp-sub-ttl{
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.first-view-logo-sub-ttl-en {
  margin: 0 0 20px 110px;
  font-size: 3rem;
}

.first-view-logo-img{
  margin-bottom: 40px;
}

.first-view-logo-img img{
  width: 500px;
}

.first-view-logo-sp{
  display: none;
}

.main-contents{
  width: 100%;
  box-sizing: border-box;
  display: flex;
}

.main-content{
  width: calc((100% - 80px) / 3);
  border-radius: 50%;
  aspect-ratio: 1;
}

.main-content a{
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.main-content a:hover{
  opacity: 1.0 !important;
}
.main-content_inner{
  height: 100%;
  display: flex;
	flex-direction: column;
  justify-content: center;
}

.main-content-company{
  background-color: #0049EF;
  transition: 0.3s;
}

.main-content-business{
  background-color: #FFA900;
  transition: 0.3s;
}

.main-content-recruit{
  background-color: #FF3355;
  transition: 0.3s;
}

.main-content-company:hover{
  background-color: #5689ff;
  transition: 0.3s;
}

.main-content-business:hover{
  background-color: #ffc859;
  transition: 0.3s;
}

.main-content-recruit:hover{
  background-color: #ff6b84;
  transition: 0.3s;
}

.main-content + .main-content{
  margin-left: 40px;
}

.main-content-copy p{
  font-size: min(2vw, 20px);
  font-weight: bold;
  color: #fff;
  margin-top: -4px;
  margin-bottom: 25px;
  line-height: 1.6;
  text-align: center;
}

.main-content-ttl{
  text-align: center;
}

.main-content-ttl-en{
  font-size: min(4vw, 40px);
  font-weight: bold;
  font-style: italic;
  color: #fff;
  margin-bottom: 5px;
}

.main-content-ttl-jpn{
  font-size: 1.6rem;
  color: #fff;
  position: relative;
  margin-bottom: 20px;
}

.main-content-arrow{
  width: min(3vw, 32px);
  margin: 0 auto;
}

.main-content-arrow img{
  width: 100%;
}

.index-news-contents h2{
  color: #fff;
  font-size: 4.8rem;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 42px;
}

.index-news-list-wrap{
  margin-bottom: 60px;
}

.index-news-list{
  display: flex;
}

.index-news-item,
.business-single-news-item{
  width: calc((100% - 120px) / 4);
  position: relative;
}

.index-news-item img,
.news-item img,
.business-single-news-item img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 8px;
}

.index-news-item + .index-news-item,
.business-single-news-item + .business-single-news-item{
  margin-left: 40px;
}
.index-news-date{
  color: #fff;
  font-size: 1.4rem;
}
.index-news-ttl,
.news-ttl{
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #fff;
}
.index-news-ttl{
  color: #fff;
}
.news-ttl{
  color: #000;
}
.index-news-category,
.news-category{
  position: relative;
}

.news-category-cat,
.news-category-com,
.news-category-bus{
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.news-category-cat{
  background-color: #05C46C;
  padding: 5px;
  color: #fff;
  display: inline-block;
  border-radius: 4px;
}

.news-category-com{
  color: #05C46C;
}
.news-category-bus{
  color: #888;
}

.index-news-category{
  border-bottom: 2px solid #fff;
  padding-bottom: 4px;
}
.index-news-category-cat,
.index-news-category-com,
.index-news-category-bus{
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.index-news-category-cat{
  background-color: #888;
  color: #fff;
  padding: 5px;
  display: inline-block;
  border-radius: 4px;
}
.index-news-category-com{
  color: #888;
}
.index-news-category-bus{
  color: #fff;
}

.index-news-category::before{
  content: "";
  position: absolute;
  bottom: -2px;
  width: 20px;
  border-bottom: 2px solid #FFF200;
}

.index-news-category::after,
.news-category::after{
  content: '';
  display: inline-block;
  width: 10px;
  height: 12px;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 6px;
}

.index-news-category::after{
  background-image: url(../img/yajirushi2.png);
}

@media (max-width: 750px){
  .first-view,
  .first-view-contents{
    position: initial;
  }

  .first-view-img-wrap{
    position: relative;
  }

  .first-view-img{
    height: 550px;
    object-fit: cover;
  }

  .first-view-logo{
    display: none;
  }

  .first-view-logo-sp{
    display: block;
    position: absolute;
    bottom: 40px;
  }

  .first-view-logo-sp-img img{
    max-width: 500px;
    width: 80%;
  }

  .first-view-logo-sp-sub-ttl-en {
    margin: 0 0 20px  0;
  }

  .first-view-contents{
    background-color: #000000;
    padding-top: 20px;
  }

  .main-contents{
    display: block;
  }

  .main-content{
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }

  .main-content + .main-content{
    margin: 20px auto 0 auto;
  }

  .main-content-copy p{
    font-size: 2.0rem;
  }

  .main-content-ttl-en{
    font-size: 4.0rem;
  }

  .main-content-arrow{
    width: 32px;
  }

  .index-news{
    padding-top: 40px;
  }

  .index-news-contents h2{
    margin-bottom: 20px;
  }

  .index-news-list{
    display: block;
  }

  .index-news-item,
  .business-single-news-item{
    width: 100%;
  }

  .index-news-item + .index-news-item,
  .business-single-news-item + .business-single-news-item,
  .company-data-item + .company-data-item{
    margin-left: 0;
    margin-top: 40px;
  }
}

/* about */
.page-ttl{
  padding-top: 120px;
  padding-bottom: 38px;
}

.about-page-ttl-main,
.about-ttl-left-main,
.company-page-ttl-main,
.contact-page-ttl-main{
  color: #0049EF;
}

.about-ttl-area_inner{
  display: flex;
}

.about-ttl-area_inner{
  padding-top: 60px;
  padding-bottom: 80px;
}

.about-txt-area_inner{
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-ttl-right{
  width: 60%;
  margin-left: 70px;
}

.about-ttl-left-main{
  font-size: 5.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-ttl-left-sub,
.about-ttl-list p{
  font-size: 1.5rem;
  line-height: 2;
}

.about-ttl-list li{
  display: flex;
}

.about-ttl-list li + li{
  margin-top: 30px;
}

.about-ttl-list img{
  width: 25.7px;
  height: 21px;
}

.about-txt-common{
  color: #646464;
  font-size: 1.5rem;
  line-height: 1.8;
}

.about-txt-common span {
  color: #0049EF;
  font-weight: bold;
}

.about-txt-cont h3 {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.about-txt-cont h3::before {
  content: "";
  border-top: 1px solid #0049EF;
  display: block;
  width: 35px;
  margin-bottom: 10px;
}

.about-txt-ttl-en{
  font-size: 2.6rem;
  font-weight: bold;
  font-style: italic;
  color: #0049EF;
}

.about-txt-ttl-jp{
  font-size: 1.5rem;
}

#corporate-philosophy.about-txt-cont {
  position: relative;
  padding-right: 240px;
}

#corporate-philosophy .about-side-img {
  position: absolute;
  right: 20px;
  top: 60%;
  transform: translateY(-50%);
  width: 200px;
  height: auto;
  display: block;
  pointer-events: none;
  z-index: 0;
}

#corporate-philosophy h3,
#corporate-philosophy .about-txt-common {
  position: relative;
  z-index: 1;
}

.about-txt-main{
  font-size: 4.0rem;
  font-weight: bold;
}

.about-txt-cont + .about-txt-cont{
  margin-top: 80px;
}

.about-txt-list-area{
  display: flex;
  align-items: end;
}

.about-txt-list-area-left{
  margin-right: 30px;
}

.about-txt-list-area + .about-txt-list-area{
  margin-top: 40px;
}

.about-txt-list-ttl{
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.0;
}

.about-txt-list-accent{
  position: relative;
  color: #0049EF;
  font-size: 2.3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.about-txt-list-accent::before{
  content: "";
  border-top: 1px solid #B3B3B3;
  display: inline-block;
  width: 110px;
}

.employee-charter-wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.employee-charter-list {
  flex: 1 1 600px;
}

.employee-charter-image {
  flex: 0 0 auto;
  max-width: 320px;
}

.employee-charter-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 750px){
  .about-txt-main{
    font-size: 3.2rem;
  }

  .about-txt-list-area{
    display: block;
  }

  .about-txt-list-area-left{
    margin-right: 0;
    margin-bottom: 10px;
  }

  .about-txt-list-accent::before{
    width: 55px;
  }

  .employee-charter-wrapper {
    justify-content: center;
    gap: 60px;
  }

  #corporate-philosophy.about-txt-cont {
    padding-right: 16px;
  }
  #corporate-philosophy .about-side-img {
    display: none;
  }
}

.about-ttl-list p{
  margin-left: 5px;
}

.about-txt-common + .about-txt-logo{
  margin-top: 60px;
}

.about-txt-logo img{
  width: 100%;
  max-width: 570px;
  display: block;
  margin: 0 auto;
}

.about-anchor{
  padding-top: 150px;
  margin-top: -150px;
}

.about-anchor::before{
  top: 158px !important;
}

@media (max-width: 750px){
  .page-ttl{
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .about-ttl-area_inner{
    display: block;
    padding-top: 65px;
    padding-bottom: 110px;
    background-position: right bottom;
    background-size: 70%;
  }

  .about-ttl-right{
    width: 100%;
    margin-left: 0;
  }

  .about-ttl-left{
    margin-bottom: 60px;
  }

  .about-ttl-left-main{
    font-size: 3.2rem;
  }

  .about-txt-area_inner{
    padding-top: 65px;
    padding-bottom: 65px;
  }
}

/* archive-staff */
.archive-staff-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
}
.archive-staff-item{
  width: calc((100% - 40px) / 2);
}

.archive-staff-item-inner{
  display: flex;
  position: relative;
  margin-top: 15px;
  margin-left: 15px;
}

.archive-staff-number{
  width: 22%;
  max-width: 90px;
  aspect-ratio: 1;
  font-size: clamp(2.8rem, 4vw, 3.5rem);
  font-weight: bold;
  font-style: italic;
  color: #fff;
  background: linear-gradient(-45deg, transparent 0%, transparent 50%, #0049EF 50%, #0049EF 100%);
  padding: 5px;
  position: absolute;
  top: -15px;
  left: -15px;
}


.archive-staff-main{
  display: flex;
}

.archive-staff-img{
  width: 60%;
}

.archive-staff-img img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.archive-staff-txt-container{
  width: 40%;
  background-color: #C4D5FB;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.archive-staff-sub-ttl h3{
  font-size: 2.3rem;
  font-weight: bold;
  color: #0049EF;
  line-height: 1.3;
}

.archive-staff-txt{
  margin-top: auto;
}

.staff-txt h4{
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.staff-txt span{
  font-size: 1.4rem;
  color: #0049EF;
  margin-bottom: 4px;
}

.staff-txt p{
  font-size: 1.4rem;
  color: #888;
}

@media (max-width: 850px){
  .archive-staff-list{
    display: block;
  }

  .archive-staff-item{
    width: 100%;
  }

  .archive-staff-item + .archive-staff-item{
    margin-top: 40px;
  }

  .archive-staff-sub-ttl h3{
    font-size: 1.8rem;
  }

  .staff-txt h4{
    font-size: 1.6rem;
  }
}

/* single-staff */
.single-staff-area{
  padding-top: 120px;
}

.single-staff-area-inner{
  margin: 0 auto;
  max-width: 800px;
}

.single-staff-content{
  margin-bottom: 120px;
}

.single-staff-visual{
  position: relative;
  margin-bottom: 30px;
}

.single-staff-txt-cont{
  width: 40%;
  background-color: #C4D5FB;
  padding: 20px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.single-staff-txt-cont h2{
  font-size: 1.8rem;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 135px;
}

.single-staff-txt-cont h2 span{
  font-size: 2.4rem;
}

.single-staff-img{
  width: 70%;
  max-width: 540px;
  margin: 0 0 0 auto;
}

.single-staff-img img{
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.single-staff-decoration{
  background-color: #0049EF;
  width: 2px;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.single-staff-interview + .single-staff-interview{
  margin-top: 60px;
}

.single-staff-interview h3{
  font-size: 2.4rem;
  font-weight: bold;
  color: #0049EF;
  margin-bottom: 20px;
}

.single-staff-interview p{
  color: #646464;
  font-size: 1.6rem;
  line-height: 1.8;
}

.single-staff-interview p + .single-staff-interview-img{
  margin-top: 20px;
}

.single-staff-interview-img{
  width: 70%;
  margin: 0 auto;
}

.single-staff-interview-img img{
  width: 100%;
}

@media (max-width: 750px){
  .single-staff-visual{
    position: static;
    display: flex;
    flex-direction: column-reverse;
  }

  .single-staff-txt-cont{
    display: flex;
    position: static;
    transform: translateY(0);
    width: 100%;
  }

  .single-staff-txt-cont h2{
    margin-bottom: 0;
  }

  .single-staff-txt-cont h2 span{
    font-size: 1.8rem;
    margin-right: 10px;
  }

  .single-staff-txt-cont h2 br{
    display: none;
  }

  .single-staff-txt-cont .staff-txt{
    margin-left: auto;
  }

  .single-staff-img{
    width: 100%;
    max-width: 100%;
  }

  .single-staff-decoration{
    height: 75px;
  }

  .single-staff-interview-img{
    width: 100%;
  }
}

/* business */
.business-page-ttl-main{
  color: #FFA900;
}

.business-content{
  padding-top: 60px;
  padding-bottom: 60px;
}

.business-ttl{
  font-size: 5.2rem;
  font-weight: bold;
  color: #FFA900;
  margin-bottom: 20px;
}

.business-txt-common{
  font-size: 1.8rem;
  line-height: 2;
}

.ub-business-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
  margin-bottom: 40px;
}

.ub-business-list::after{
  content:"";
  display: block;
  width: calc((100% - 80px) / 3);
}

.business-item{
  background-color: #1A1A1A;
  width: calc((100% - 80px) / 3);
}

.business-item-img{
  position: relative;
  width: 100%;
}

.business-item-img-main{
  width: 100%;
  aspect-ratio: 3 / 2;
}

.business-item-img-logo{
  width: 120px;
  border-radius: 60px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.business-item_txt{
  padding: 80px 20px 20px 20px;
}

.business-item_txt h3,
.fg-item-txt h3{
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16.5px;
}

.business-item_txt p,
.fg-item-txt p{
  color: #999;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.fg-item{
  background-color: #1A1A1A;
  display: flex;
  &:not(:last-child){
    margin-bottom: 40px;
  }
}

.fg-item-link{
  display: flex;
}

.fg-item-img,
.fg-item-txt_conts{
  width: 50%;
}

.fg-item-img img{
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.fg-item-txt_conts{
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fg-item-txt-logo{
  text-align: center;
  margin-bottom: 20px;
}

.fg-item-txt-logo img{
  width: 300px;
}

.fg-link-button{
  background-color: #fff;
}

.business-cat{
  background-color: #FFA900;
  padding: 5px;
  color: #fff;
  display: inline-block;
  border-radius: 4px;
}

.business-cat,
.business-com,
.business-bus{
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.business-com{
  color: #FFA900;
}
.business-bus{
  color: #888;
}
@media (max-width: 750px){
  .ub-business-list{
    display: block;
  }

  .business-item{
    width: 100%;
  }

  .business-item + .business-item{
    margin-top: 40px;
  }

  .fg-item{
    display: block;
  }

  .fg-item-img,
  .fg-item-txt_conts{
  width: 100%;
  }
}

/* company */
.company-content{
  padding-top: 60px;
  padding-bottom: 80px;
}

.company-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
}

.company-item{
  width: calc((100% - 40px) / 2);
}

.company-item-container{
  display: flex;
}

.company-item-img{
  width: 40%;
}

.company-item-img img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.company-item-content{
  background-color: #000;
  width: 60%;
  padding: 20px;
  position: relative;
}

.company-item-ttl h3{
  font-size: 2.6rem;
  color: #fff;
  font-weight: bold;
  font-style: italic;
}

.company-item-ttl p{
  font-size: 1.5rem;
  color: #999;
}

.company-item-arrow{
  width: 23px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.company-item-arrow img{
  width: 100%;
}

@media (max-width: 750px){
  .company-list{
    display: block;
  }

  .company-item{
    width: 100%;
  }

  .company-item-container{
    display: block;
  }

  .company-item-img,
  .company-item-content{
    width: 100%;
  }

  .company-item-arrow{
    top: 50%;
    transform: translateY(-50%);
  }

  .company-item + .company-item{
    margin-top: 40px;
  }
}

/* company-child */
.company-txt-common{
  color: #646464;
  font-size: 1.5rem;
  line-height: 1.8;
}

.company-child-content{
  border-top: 1px solid #B3B3B3;
}

.company-ceo-massage{
  display: flex;
}

.company-ceo-massage-img{
  width: 30%;
  margin-right: 40px;
}

.company-ceo-massage-img img{
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.company-ceo-massage-txt{
  width: 70%;
}

.company-ceo-massage-name{
  text-align: end;
}

.company-ceo-massage-name{
  color: #000;
}

.company-ceo-massage-name span{
  font-size: 2.0rem;
  font-weight: bold;
}

@media (max-width: 750px){
  .company-ceo-massage{
    display: block;
  }

  .company-ceo-massage-img{
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .company-ceo-massage-img img{
    height: 65vw;
    aspect-ratio: auto;
    object-position: 50% 20%;
  }

  .company-ceo-massage-txt{
    width: 100%;
  }
}

.company-profile-list{
  width: 100%;
}

.company-profile-item th,
.company-profile-item td{
  font-size: 1.5rem;
  line-height: 2;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 25px 30px;
  vertical-align: middle;
}

.company-profile-item th{
  background-color: #F2F2F2;
  border-right: 1px solid #fff;
  font-weight: bold;
  width: 35%;
}

.company-profile-item td{
  background-color: #f9f9f9;
}

@media (max-width: 750px){
  .company-profile-item th,
  .company-profile-item td{
    padding: 30px 10px;
  }

  .company-profile-item th{
    width: 30%;
  }
}

.company-history-item + .company-history-item{
  margin-top: 20px;
}

.company-history-date,
.company-history-txt{
  display: table-cell;
  vertical-align: middle;
}

.company-history-date{
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #F2F2F2;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  text-align: center;
}

.company-history-date span{
  font-size: 3.4rem;
  font-weight: bold;
  color: #0049EF;
}

.company-history-txt{
  padding-left: 20px;
  color: #000;
}

.static-page-slide{
  width: 100%;
  margin: 0 auto;
}

.static-page-slide-img{
  margin-right: 10px;
}

.static-page-slide-img img{
  width: 100%;
}

.slick-dots li button:before {
  font-size: 50px;
  top: 6px;
}

.dots-static-page button{
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.dots-static-page{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.dots-static-page li{
  width: 10px;
  height: 10px;
  margin: 0 10px;
  background: #888;
  border-radius: 50%;
  cursor: pointer;
}

.dots-static-page li:hover,
.dots-static-page li.slick-active{
  background: #0049EF;
}

.static-page-slide button.arrow-static-page-common {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 5;
}

.static-page-slide button.arrow-prev-static-page{
  background-image: url(../img/arrow-prev-static-page.png);
  left: 0.5%;
}

.static-page-slide button.arrow-next-static-page{
  background-image: url(../img/arrow-next-static-page.png);
  right: 0.5%;
}

@media (max-width: 750px){
  .static-page-slide-img{
    margin-right: 0;
  }
}

.company-data-list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 100px;
  margin-top: 20px;
}

.company-data-list + .company-data-list{
  margin-top: 50px;
}

.company-data-item{
  width: calc(90% / 3);
}

.company-data-list::after{
  display: block;
  content: "";
  width: calc(90% / 3);
}

.company-data-item-inner{
  text-align: center;
  height: 100%;
}

.company-data-item-inner h4{
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 20px;
  background-color: #F2F2F2;
  padding: 5px;
  border-radius: 20px;
}

.company-data-item-numbers{
  display: flex;
  justify-content: center;
}

.company-data-item-number{
  font-family: ヒラギノ角ゴシック;
  font-size: 1.5rem;
}


.company-data-item-number span{
  font-size: 5.0rem;
  font-weight: 800;
  color: #0049EF;
}

.company-data-item-note{
  font-size: 1.2rem;
  color: #646464;
}

.company-data-item-inner img{
  width: 100%;
  margin-top: 15px;
}

.company-data-item-add{
  margin-top: 20px;
}

@media (max-width: 750px){
  .company-data-list{
    display: block;
  }

  .company-data-item{
    width: 100%;
  }

  .company-data-item-inner{
    margin-bottom: 20px;
  }
}

/* news */
.news-page-ttl-main{
  color: #05C46C;
}

.news-area,
.recruit-area{
  display: flex;
}

.news-list-area,
.news-single-txt-area,
.recruit-list-area,
.recruit-single-txt-area{
  width: 75%;
  margin-right: 40px;
}

.news-list{
  display: flex;
  flex-wrap: wrap;
  row-gap: 80px;
  justify-content: space-between;
}

.news-item{
  width: calc((100% - 80px) / 3);
  position: relative;
}

.news-list::after{
  display: block;
  content: "";
  width: calc((100% - 80px) / 3);
}

.news-category{
  border-bottom: 2px solid #B3B3B3;
}

.news-category::after{
  background-image: url(../img/yajirushi2_bk.png);
}

.news-hashtag-area,
.recruit-hashtag-area{
  width: 25%;
}

.news-hashtag h3,
.recruit-hashtag h3{
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.news-hashtag h3{
  color: #05C46C;
}

.news-hashtag + .news-hashtag,
.recruit-hashtag + .recruit-hashtag{
  margin-top: 50px;
}

.news-hashtag-item a{
  font-size: 1.6rem;
  padding: 5px 8px;
  border-radius: 4px;
  display: inline-block;
}

.news-hashtag-item + .news-hashtag-item{
  margin-top: 20px;
}

.nav-links{
  text-align: center;
  margin-top: 40px;
}

.nav-links .page-numbers{
  display: inline-block;
  width: 40px;
  line-height: 40px;
  border-radius: 20px;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  vertical-align: middle;
  background-color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  transition: 0.3s;
}

.nav-links .next,
.nav-links .prev{
  background-color: #B3B3B3;
  transition: 0.3s;
}

.nav-links a{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.nav-links .next img,
.nav-links .prev img{
  height: 40px;
  padding: 10px;
}
.nav-links .prev img{
  transform: scale(-1, 1);
}

.nav-links .current{
  background-color: #000000;
  color: #fff;
}

.nav-links-arrow img{
  height: 16px;
  vertical-align: middle;
}

.arrow-reversal{
  transform: scale(-1, 1);
}

.nav-links .page-numbers:hover{
  background-color: #000000;
  color: #fff;
  transition: 0.3s;
  opacity: 1.0;
}

@media (max-width: 750px){
  .news-area,
  .recruit-area{
  display: block;
  }

  .news-list-area,
  .news-single-txt-area,
  .recruit-list-area,
  .recruit-single-txt-area{
    width: 100%;
    margin-right: 0;
    margin-bottom: 80px;
  }

  .news-list{
    display: block;
  }

  .news-item{
    width: 100%;
  }

  .news-item + .news-item{
    margin-top: 40px;
  }

  .news-hashtag-area,
  .recruit-hashtag-area{
    width: 100%;
  }

  .nav-links a{
    width: 36px;
    line-height: 36px;
  }

  .nav-links-numbers-sp{
    display: none;
  }

}

/* recruit */
.page-top-space{
  padding-top: 80px;
}

.recruit-page-ttl-area{
  height: 160px;
  background-color: #F2F2F2;
  position: relative;
}

.recruit-page-ttl-area::before{
  border-color: transparent #fff transparent transparent;
  border-style: solid;
  border-width: 160px 100vw 0 0;
  bottom: 0;
  content: "";
  height: 0;
  position: absolute;
}

.recruit-page-ttl-main{
  color: #E6485A;
}

.recruit-area_wrap{
  padding: 20px 0 80px 0;
}

.recruit-item{
  background-color: #F2F2F2;
  border-radius: 6px;
}

.recruit-item a{
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.recruit-item_top{
  background-image: url(../img/yajirushi_gray.png);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: right 0px top 20px;
}

.recruit-item-occupation{
  display: flex;
  margin-bottom: 12px;
}

.recruit-item-occupation p{
  color: #B3B3B3;
  font-size: 1.2rem;
  border: 1px solid #B3B3B3;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  padding: 0px 6px;
}

.recruit-item h3{
  color: #E6485A;
  font-size: 2.4rem;
  font-weight: bold;
}

.recruit-item-location{
  color: #B3B3B3;
  font-size: 1.2rem;
}

.recruit-item-location:last-child{
  border-bottom: 1px solid #B3B3B3;
  padding-bottom: 8px;
}

.recruit-item-location.single:last-child{
  border-bottom: none;
  padding-bottom: 0;
}

.recruit-item h4{
  font-size: 1.8rem;
  font-weight: bold;
}

.recruit-item-intro{
  color: #646464;
  font-size: 1.6rem;
  line-height: 1.8;
}

.recruit-item-margin-bottom{
  margin-bottom: 8px;
}

.recruit-item + .recruit-item{
  margin-top: 20px;
}

.recruit-hashtag h3{
  color: #E6485A;
}
.recruit-hashtag-items + .recruit-hashtag-items{
  margin-top: 40px;
}
.recruit-hashtag-item{
  background: #F2F2F2;
  display: table;
  padding: 8px;
  border-radius: 6px;
  width: 100%;
  position: relative;
  cursor: pointer;
}
.recruit_single_hashtag-area .recruit-hashtag-item{
  background: #fff !important;
}
.recruit-hashtag-item span{
  font-size: 1.6rem;
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  width: 100%;
}
.recruit-hashtag-item +.recruit-hashtag-item{
  margin-top: 8px;
}
.recruit-hashtag-item input[type="checkbox"] {
  padding-left: 30px;
  vertical-align: middle;
}

.recruit-hashtag-item input[type="checkbox"]::before,
.recruit-hashtag-item input[type="checkbox"]::after {
  content: "";
  display: block; 
  position: absolute;
}

.recruit-hashtag-item input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #aeaeae;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.recruit-hashtag-item input[type="checkbox"]::after {
  border-bottom: 4px solid #E6485A;
  border-left: 4px solid #E6485A;
  opacity: 0;
  height: 12px;
  width: 20px;
  transform: rotate(-45deg);
  top: 7px;
  left: 12px;
}

.recruit-hashtag-item input[type="checkbox"]:checked::after {
  opacity: 1;
}
.recruit-hashtag-item input[type="checkbox"]:checked::before {
  border-color: #404040;
}
.recruit-hashtag-item input[type="checkbox"]:checked::after,
.recruit-hashtag-item input[type="checkbox"]:checked::before,
.recruit-hashtag-item input[type="checkbox"]::after,
.recruit-hashtag-item input[type="checkbox"]::before{
  transition: 0.2s;
}

.recruit-hashtag-item input[type="submit"]{
  background: #a5a5a5;
}

.recruit-hashtag-list{
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 10px;
}

.nav-links-numbers-border{
  border: 1px solid #B3B3B3;
}

.nav-links-numbers-border:hover{
  border: none;
}

@media (max-width: 750px){
  .recruit-page-ttl-area{
    height: 100px;
  }

  .recruit-page-ttl-area::before{
    border-width: 100px 100vw 0 0;
  }

  .recruit-area_wrap{
    padding-top: 10px;
  }

  .recruit-item + .recruit-item{
    margin-top: 40px;
  }
}


/* common-form */
.wpcf7-spinner{
  display: none !important;
}
.common-form{
  max-width: 800px;
  margin: 0 auto;
}
.contact__form dl dd+dt{
  margin-top: 40px;
}
.contact__form dl dt{
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
  padding-left: 36px;
}

.required::before{
  content: '必須';
  line-height: 1;
  font-size: 1.2rem;
  background: #E6485A;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.any::before{
  content: '任意';
  line-height: 1;
  font-size: 1.2rem;
  background: #8e8e8e;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.contact__form dl dd{
  font-size: 1.6rem;
  color: #000;
}
.contact__form dl dd input[type="text"],
.contact__form dl dd input[type="date"],
.contact__form dl dd input[type="email"],
.contact__form dl dd input[type="tel"],
.contact__form dl dd select{
  background: #fff;
  padding: 10px;
  width: 100%;
}
.common-form_select{
  position: relative;
  width: 60%;
}
.contact__form dl dd textarea{
  background: #fff;
  padding: 10px;
  width: 100%;
  height: 100%;
  resize: none;
}
.common-form_select .wpcf7-form-control-wrap::after{
  content: "";
  position: absolute;
  right: 10px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ccc;
  border-left: 2px solid #ccc;
  transform: translateY(-50%) translateX(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}

.wpcf7-not-valid-tip{
  font-size: 1.6rem !important;
  color: #dc3232 !important;
  margin-top: 6px !important;
}
.wpcf7-acceptance .wpcf7-list-item-label{
  padding-left: 16px;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
  background-color: #fff;
  border: 1px solid #aeaeae;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  position: absolute;
  top: 40%;
  left: -6px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.form__common--check .wpcf7-list-item-label:after {
  border-bottom: 4px solid #0049EF;
  border-left: 4px solid #0049EF;
  opacity: 0;
  height: 11px;
  width: 20px;
  transform: rotate(-45deg);
  top: -1px;
  left: -2px;
  position: absolute;
}
input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.form__common--check .wpcf7-list-item-label{
  font-size: 1.8rem;
  text-align: center;
  position: relative;
}
.form__common--check{
  margin-top: 40px;
}
.contact__confirm-btn{
  display: flex;
}
.wpcf7-submit{
  display: block;
  width: 310px;
  height: 64px;
  line-height: 64px;
  color: #fff;
  background-color: #000;
  text-align: center;
  margin: 40px auto 0px;
  font-size: 1.8rem;
  border-radius: 32px;
}
.wpcf7-previous{
  display: block;
  width: 310px;
  height: 64px;
  line-height: 64px;
  color: #fff;
  background-color: #aeaeae;
  text-align: center;
  margin: 40px auto 0px;
  font-size: 1.8rem;
  border-radius: 32px;
}
.wpcf7-previous + .wpcf7-submit{
  margin-left: 10px;
}
.wpcf7-acceptance .wpcf7-list-item-label a{
  background: linear-gradient(transparent 60%,#85a8f8 60%);
  width: 100%;
}

.form__sample--check .wpcf7-form-control-wrap{
  display: block;
  text-align: center;
}

.contact__confirm__container dl{
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #aeaeae;
}
.contact__confirm__container dl dt{
  width: 180px;
  margin: 0px;
  padding: 0;
}
.contact__confirm__container dl dd{
  width: calc(100% - 180px);
}
.contact__confirm__container dl dt,
.contact__confirm__container dl dd{
  font-size: 1.6rem;
  padding: 24px 10px;
  border-bottom: solid 1px #aeaeae;
}
.wpcf7-radio .wpcf7-list-item{
  width: calc(100% / 6);
}
.recruit-form_sex .wpcf7-list-item-label{
  position: relative;
  cursor: pointer;
}
.wpcf7-form-control-wrap{
  display: block;
}
.wpcf7-form-control.wpcf7-radio{
  display: flex;
}
.wpcf7-list-item-label{
  color: #333;
  cursor: pointer;
  font-size: 13px
}
.recruit-form_sex{
  margin-top: 4px;
}
.wpcf7-list-item{
  margin: 0 !important; 
  font-size: 1.6rem;
}
.wpcf7-list-item .wpcf7-list-item-label{
  font-size: 1.6rem;
}
.wpcf7-list-item-label:before{
  content: '';
  background: #fff;
  border-radius: 100%;
  border: 1px solid #888888;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: -0.2em;
  margin-right: 4px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
}
input[type="radio"]:checked + .wpcf7-list-item-label:before{
  background-color: #0049EF;
  box-shadow: inset 0 0 0 2px #fff;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output{
  font-size: 1.6rem;
  text-align: center;
}
.entry-form_attention{
  margin-top: 10px;
}
@media (max-width: 750px){
  .common-form_select {
    width: 100%;
  }
  .contact__confirm__container dl{
    display: block;
  }
  .contact__confirm__container dl dt{
  border-bottom: none;
  padding: 20px 10px 10px 10px;
  width: 100%;
  }
  .contact__confirm__container dl dd{
  padding: 0px 10px 20px 10px;
  width: 100%;
  }
  .contact__confirm-btn{
    display: block;
  }
  .wpcf7-submit{
    width: 100%;
  }
  .wpcf7-previous{
    width: 100%;
  }
  .wpcf7-previous + .wpcf7-submit{
    margin-top: 20px;
    margin-left: 0px;
  }
  .wpcf7-radio .wpcf7-list-item{
    width: calc(100% / 2);
  }
}


/* contact */
.contact-page-ttl_inner{
  text-align: center;
}

.thanks-txt{
  font-size: 1.6rem;
  line-height: 1.8;
}

/* business-single */
.business-single-head{
  background: linear-gradient(0deg, #FFE9BC 0%, #FFE9BC 30%, #fff 30%, #fff 100%);
  padding-top: 140px;
  padding-bottom: 20px;
}

.business-single-head_inner{
  display: flex;
}

.business-single-head_left{
  width: 30%;
  background-color: #1A1A1A;
  position: relative;
}

.business-single-head_left-img{
  position: relative;
}

.business-single-head_left-img-bg{
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.business-single-head_left-img::after{
  content: '';
  background-color: rgba(0,0,0,.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.business-single-head_left-img-logo{
  width: 60%;
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.business-single-head_left-img-logo img{
  width: 100%;
  border-radius: 50%;
}

.business-single-head_left-content{
  padding: 75px 20px 30px 20px;
  text-align: center;
}

.business-single-head_left-ttl_wrap{
  margin-bottom: 30px;
}

.business-single-head_left-ttl{
  color: #fff;
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.business-single-head_left-sub{
  color: #999;
  font-size: 1.4rem;
}

.business-single-head_left-link{
  margin-bottom: 30px;
}

.business-single-head_left_sns-group{
  width: 100%;
  display: flex;
  justify-content: center;
}

.business-single-head_left_sns{
  width: calc((90% - 80px) / 5);
  text-align: center;
}

.business-single-head_left_sns + .business-single-head_left_sns{
  margin-left: 20px;
}

.business-single-head_left_sns a{
  display: block;
  width: 100%;
}

.business-single-head_left_sns img{
  width: 100%;
}

.business-single-head-img-sp{
  display: none;
}

.business-single-head_right{
  width: 70%;
  margin-left: 10px;
}

.business-single-head_right img,
.business-single-head-img-sp img{
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.business-single-content{
  padding-top: 80px;
  padding-bottom: 100px;
}

.business-single-item + .business-single-item{
  margin-top: 80px;
}

.business-single-item h2{
  color: #FFA900;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.business-single-item-ttl{
  display: flex;
  margin-bottom: 15px;
}

.business-single-item-ttl span{
  position: relative;
}

.business-single-item-ttl span::before{
  position: absolute;
  content: "";
  width: 25px;
  height: 10px;
  background-color: #FFA900;
  top: 7px;
  border-radius: 5px;
}

.business-single-item-ttl h3{
  color: #FFA900;
  font-size: 2.2rem;
  font-weight: bold;
  position: relative;
  left: 35px;
}

.business-single-item-ttl.another span::before{
  background-color: #646464;
}

.business-single-item-ttl.another h3{
  color: #646464;
}

.business-single-item-txt{
  color: #646464;
  font-size: 1.5rem;
  line-height: 1.8;
}

.business-single-item-indent{
  padding-left: 1em;
  text-indent: -1em;
}

.business-single-news-list-area{
  padding-top: 20px;
}

.business-single-news-list{
  justify-content: start;
}

@media (max-width: 750px){
  .business-single-head{
    padding: 0;
    margin-top: 80px;
    background: none;
  }

  .business-single-head_inner{
    display: block;
  }

  .business-single-head_left{
    width: 100%;
  }

  .business-single-head_left-img,
  .business-single-head_left-img-logo{
    display: none;
  }

  .business-single-head_left-content{
    padding: 50px 20px 20px 20px;
  }

  .business-single-head_left-ttl{
    font-size: 3.2rem;
  }

  .business-single-head_left_sns-group{
    margin-bottom: 30px;
  }

  .business-single-head-img-sp{
    display: block;
    width: 100%;
  }

  .business-single-head_right{
    display: none;
  }

  .business-single-content{
    padding-top: 75px;
    padding-bottom: 80px;
  }

  .business-single-item h2{
    font-size: 2.8rem;
    line-height: 1.4;
  }

  .business-single-news-list-area{
    padding-top: 0;
  }
}

/* recruit-single */
.recruit-single-head{
  padding-top: 120px;
  padding-bottom: 20px;
}

.recruit-single-head-ttl{
  color: #E6485A;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.recruit-single-main{
  display: flex;
  padding-bottom: 80px;
}

.recruit-single-txt-intro{
  padding-top: 20px;
  margin-bottom: 40px;
  border-top: 1px solid #B3B3B3;
}

.recruit-single-txt-intro p{
  color: #646464;
  font-size: 1.6rem;
  line-height: 1.8;
}

.recruit-single-txt-intro p + p{
  margin-top: 26px;
}

.recruit-single-link-button-wrap{
  margin-bottom: 40px;
}

.recruit-single-link-button a{
  padding: 10px;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  width: 100%;
  height: auto;
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.recruit-single-link-button-entry{
  background-color: #5EC175;
}

.recruit-single-link-button-staff{
  background-color: #FF7D00;
}

.recruit-single-link-button a::after{
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(../img/yajirushi-wh.png);
  background-size: contain;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.recruit-single-link-button + .recruit-single-link-button{
  margin-top: 20px;
}

.recruit-single-txt-detail{
  margin-bottom: 8px;
}

.recruit-detail-ttl{
  color: #E6485A;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 8px;
  display: table;
}

.recruit-detail-list-wrap{
  background-color: #fff;
  width: 100%;
  border-radius: 8px;
  padding: 20px;
}
.recruit-detail-ttl span+ span::before{
  content: '・';
}

.recruit-detail-list{
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #dfdfdf;
}
.recruit-detail-list dt,
.recruit-detail-list dd{
  font-size: 1.6rem;
  padding: 20px 0px;
  line-height: 1.8;
  border-bottom: 1px solid #dfdfdf;
}

.recruit-detail-list dt{
  width: 120px;
  padding-left: 10px;
}
.recruit-detail-list dd{
  width: calc(100% - 120px);
  padding-right: 10px;
}


@media (max-width: 750px){
  .recruit-single-head{
    padding-top: 100px;
  }

  .recruit-single-main{
    display: block;
  }

  .detail-item th,
  .detail-item td{
    width: 100%;
    display: block;
  }

  .detail-item td{
    padding: 0 20px 20px 20px;
  }
}

/* news-single */
.news-single-head{
  padding-top: 120px;
  padding-bottom: 20px;
}

.news-single-head-ttl{
  color: #000;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.news-single-main{
  display: flex;
  padding-bottom: 80px;
}
.news-item-occupation{
  display: flex;
}
.news-item-occupation p{
  color: #05C46C;
  font-size: 1.4rem;
  padding: 4px 6px;
  border: 1px solid #05C46C;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-item-occupation p + p{
  margin-left: 10px;
}

.news-item-occupation span{
  margin-right: 20px;
  font-size: 1.6rem;
  padding: 4px 0px;
}

.news-single-txt-intro{
  padding-top: 20px;
  margin-bottom: 120px;
  border-top: 1px solid #B3B3B3;
}

.news-single-txt-intro p{
  color: #646464;
  font-size: 1.6rem;
  line-height: 1.8;
}

.news-single-txt-intro p + p{
  margin-top: 26px;
}

.news-single-txt-detail{
  margin-bottom: 8px;
}

@media (max-width: 750px){
  .news-single-head{
    padding-top: 100px;
  }

  .news-single-main{
    display: block;
  }
  .news-item-occupation{
    justify-content: space-between;
  }
  .detail-item th,
  .detail-item td{
    width: 100%;
    display: block;
  }

  .detail-item td{
    padding: 0 20px 20px 20px;
  }

  .news-single-link-button-area{
    width: 100%;
  }

  .news-single-link-button{
    width: 260px;
    margin: 0 auto;
  }
}

/* recruit-search */
.search_contents_bl{
  border-bottom: solid 1px #dcdcdc;
  padding-bottom: 10px;
  margin-bottom: 32px;
}
.search_content{
  font-size: 1.2rem;
  padding: 4px 6px;
  border-radius: 6px;
  background: #E6485A;
  color: #fff;
  display: inline-block;
  box-sizing: border-box;
  margin-top: 10px;
}
.search_content + .search_content{
  margin-left: 8px;
}
.recruit-search_result-txt{
  font-size: 1.6rem;
}
.recruit-search_result-txt span{
  font-size: 2.0rem;
  font-weight: bold;
  margin-right: 4px;
}
.recruit_search_notfound_ttl{
  font-size: 2.4rem;
  font-weight: bold;
}
.recruit_search_notfound_txt{
  font-size: 1.6rem;
  line-height: 2.0;
}
.recruit-search_reset-btn,
.recruit-search_submit-btn{
  font-size: 1.6rem;
  border-radius: 6px;
  height: 40px;
  width: 100%;
  display: table;
  transition: 0.3s;
}
.recruit-search_reset-btn{
  background: #cbcbcb;
  color: #fff;
}
.recruit-search_submit-btn{
  background: #000;
  color: #fff;
  width: 100%;
}

.recruit-search_reset-btn a,
.recruit-search_submit-btn input{
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 100%;
}

.recruit-search_reset-btn:hover,
.recruit-search_submit-btn:hover{
  opacity: 0.6;
  transition: 0.3s;
}

.recruit-search_btn + .recruit-search_btn{
  margin-top: 10px;
}


/* news-search */
.news-hashtag-items + .news-hashtag-items{
  margin-top: 40px;
}
.news_hashtag-item{
  background: #ffffff;
  display: table;
  padding: 8px;
  border-radius: 6px;
  width: 100%;
  position: relative;
  cursor: pointer;
}
.news_single_hashtag-area .news_hashtag-item{
  background: #fff !important;
}
.news_hashtag-item span{
  font-size: 1.6rem;
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  width: 100%;
}
.news_hashtag-item +.news_hashtag-item{
  margin-top: 8px;
}
.news_hashtag-item input[type="checkbox"] {
  padding-left: 30px;
  vertical-align: middle;
}

.news_hashtag-item input[type="checkbox"]::before,
.news_hashtag-item input[type="checkbox"]::after {
  content: "";
  display: block; 
  position: absolute;
}

.news_hashtag-item input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #aeaeae;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.news_hashtag-item input[type="checkbox"]::after {
  border-bottom: 4px solid #05C46C;
  border-left: 4px solid #05C46C;
  opacity: 0;
  height: 12px;
  width: 20px;
  transform: rotate(-45deg);
  top: 7px;
  left: 12px;
}

.news_hashtag-item input[type="checkbox"]:checked::after {
  opacity: 1;
}
.news_hashtag-item input[type="checkbox"]:checked::before {
  border-color: #404040;
}
.news_hashtag-item input[type="checkbox"]:checked::after,
.news_hashtag-item input[type="checkbox"]:checked::before,
.news_hashtag-item input[type="checkbox"]::after,
.news_hashtag-item input[type="checkbox"]::before{
  transition: 0.2s;
}

.news_hashtag-item input[type="submit"]{
  background: #a5a5a5;
}

.news_hashtag-list{
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 10px;
}
@media (max-width: 750px){
  .news_page-ttl-area{
    height: 100px;
  }

  .news_page-ttl-area::before{
    border-width: 100px 100vw 0 0;
  }

  .news_area_wrap{
    padding-top: 10px;
  }

  .news_item + .news-item{
    margin-top: 40px;
  }
}
.news_search_contents_bl{
  border-bottom: solid 1px #dcdcdc;
  padding-bottom: 10px;
  margin-bottom: 32px;
}
.news_search_content{
  font-size: 1.2rem;
  padding: 4px 6px;
  border-radius: 4px;
  background: #05C46C;
  color: #fff;
  display: inline-block;
  box-sizing: border-box;
  margin-top: 10px;
}
.news_search_content + .news_search_content{
  margin-left: 8px;
}
.news_search_result-txt{
  font-size: 1.6rem;
}
.news_search_result-txt span{
  font-size: 2.0rem;
  font-weight: bold;
  margin-right: 4px;
}
.news_search_notfound_ttl{
  font-size: 2.4rem;
  font-weight: bold;
}
.news_search_notfound_txt{
  font-size: 1.6rem;
  line-height: 2.0;
}
.news_search_reset-btn,
.news_search_submit-btn{
  font-size: 1.6rem;
  border-radius: 6px;
  height: 40px;
  width: 100%;
  display: table;
  transition: 0.3s;
}
.news_search_reset-btn{
  background: #cbcbcb;
  color: #fff;
}
.news_search_submit-btn{
  background: #000;
  color: #fff;
  width: 100%;
}

.news_search_reset-btn a,
.news_search_submit-btn input{
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 100%;
}

.news_search_reset-btn:hover,
.news_search_submit-btn:hover{
  opacity: 0.6;
  transition: 0.3s;
}

.news_search_btn + .news_search_btn{
  margin-top: 10px;
}

.news_search_content{
  font-size: 1.2rem;
  padding: 4px 6px;
  border-radius: 4px;
  background: #05C46C;
  color: #fff;
  display: inline-block;
  box-sizing: border-box;
  margin-top: 10px;
}

/* privacy */
.policy__items .policy__item+.policy__item{
  margin-top: 60px;
}

.policy__items .policy__item h2{
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.policy__items .policy__item p{
  font-size: 1.5rem;
  line-height: 1.8;
}

/* 404 */
.page__404{
  text-align: center;
}

.page-404__title{
  font-weight: bold;
}

.page-404__title--en{
  font-size: 5.2rem;
}

.page-404__title--ja{
  font-size: 3rem;
}

.page-404__text{
  font-size: 1.8rem;
  margin: 20px 0;
}

.page-404__link{
  display: inline-block;
  width: 400px;
  height: 64px;
  line-height: 64px;
  color: #fff;
  background-color: #000;
  text-align: center;
  margin: 40px auto 0px;
  font-size: 1.8rem;
  border-radius: 32px;
}

@media (max-width: 750px){
  .page-404__title--en{
    font-size: 3.2rem;
  }

  .page-404__title--ja{
    font-size: 2rem;
  }

  .page-404__link{
    width: 100%;
  }
}