@charset "UTF-8";

/**********  reset  ****************************************/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:where([hidden]:not([hidden='until-found'])) {
  display: none !important
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  tab-size: 2;
  scrollbar-gutter: stable
}

:where(html:has(dialog:modal[open])) {
  overflow: clip
}

@media (prefers-reduced-motion:no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth
  }
}

:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased
}

:where(button) {
  all: unset
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit
}

:where(textarea) {
  resize: vertical;
  resize: block
}

:where(button, label, select, summary, [role='button'], [role='option']) {
  cursor: pointer
}

:where(:disabled) {
  cursor: not-allowed
}

:where(label:has(>input:disabled), label:has(+input:disabled)) {
  cursor: not-allowed
}

:where(a) {
  color: inherit;
  text-underline-offset: .2ex
}

:where(ul, ol) {
  list-style: none
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible
}

:where(dialog) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset
}

:where(dialog:not([open])) {
  display: none !important
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important
}

a {
  text-decoration: none;
}

/******************************* 基本設定 *****************************************/
body {
  margin: 0;
  overflow-x: hidden;
  /* 横スクロールを無効化 */
  height: 100%;
  /* 高さ100%に設定 */
  font-family: 'Noto Sans JP', sans-serif;
}

body {
  overflow-x: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
}

body {
  overflow-x: clip;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

section {
  padding: 60px 0;/*
  padding-left: clamp(20px, 6vw, 90px);
  padding-right: clamp(20px, 6vw, 90px);*/
}
section > div {
  max-width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section {
  padding: 50px 15px;
  }
}

.oswald {
  font-family: 'Oswald', sans-serif;
}

.btn {
  transition: 0.3s;
}
.btn a {
  position: relative;
  display: block;
  width: 300px;
  background: #FF8800;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 30px;
  max-width: 300px;
  text-align: center;
  margin: 0 auto;
  border-radius: 50px;
  margin-top: 30px;
}
.btn:hover {
  opacity: 0.8;
  transition: 0.3s;
}

/* アイコンのスタイル */
.btn-arrow-right a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
    width: 12px;
    height: 12px;
    margin: auto;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
   border-radius: 1px;
  transition: 0.3s;
}
.btn-arrow-right a:hover::after {
  right: 5px;
}

.ttl {
  text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.ttl .ttl_en {
  font-weight: 900;
  font-size: clamp(12px, 18px, 120px);
  line-height: 1;
  color: #FE982E;
}

.ttl .ttl_jp {
  font-weight: bold;
  font-size: clamp(12px, 10vw, 30px);
  padding-top: 15px;
  padding-bottom: 20px;
}

.ttl::after {
  content: '';
  width: 46px;
  height: 3px;
  border-radius: 50px;
  display: inline-block;
  background-color: #FF8800;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 23px)
}

p {
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  p {
  font-size: 15px;
  line-height: 1.8;
}
}

.bg_gray {
  background-color: #F8F8F8;
}
.bg_orange {
  background-color: #FFF8EF;
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: clamp(12px, 7vw, 20px);
  }

  .btn .arrow {
    bottom: 1px;
    width: 20px;
  }

  .btn .arrow::before {
    top: calc(50% - 2px);
    width: 10px;
  }

  .ttl .ttl_en {
    letter-spacing: 0;
    font-size: clamp(12px, 9vw, 60px);
  }

  .ttl .ttl_jp {
    font-size: clamp(12px, 5vw, 17px);
    padding-top: 12px;
    padding-bottom: 15px;
  }
}

.logo img {
  transition: 0.3s;
}
.logo img:hover {
  opacity: 0.7;
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none!important;
  }
  .pc_block {
    display: block!important;
  }
}
@media screen and (max-width: 768px) {
  .sp_block {
    display: block!important;
  }
  .sp_none {
    display: none!important;
  }
}

/****************************  kv  ****************************/
#index #kv {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    margin-top: 70px;
    background-image: url(../img/kv.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: calc(50% - 187.5px) center;
    background-position-y: calc(50% + -40%);
}
#index #kv::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    pointer-events: none;
}
#index #kv .catchphrase {
    position: absolute;
    bottom: 0;
    padding-bottom: 3%;
    z-index: 9;
}
#index #kv .catchphrase .ttl_line {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin-bottom: 20px;
}
#index #kv .catchphrase .ttl_line div {
  display: inline-block;
  color: #333333;
  background-color: #fff;
  font-size: 45px;
  font-weight: bold;
  letter-spacing: .2em;
  padding: 10px 60px 15px 60px;
  line-height: 1;
  margin-bottom: 10px;
}
#index #kv .catchphrase h2 {
  color: #fff;
  font-size: 28px;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 20px;
    padding-left: 7%;
}
#index #kv .catchphrase div {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  font-weight: normal;
  padding-left: 7%;
}
#contact-section {
  position: absolute;
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
 #kv .inner {
  display: none!important;
 }
 #index #kv {
    background-position: 50% center!important;
 }
 section#header .logo img {
  width: 190px;
 }
 section#header .nav-links {
    gap: 15px!important;
    font-size: 15px!important;
 }
section#header .nav-links .btn a {
    font-size: 15px!important;
    width: 170px!important;
}
section#header .nav-links .btn-arrow-right a::before {
    left: 15px!important;
}
}
@media screen and (max-width: 768px) {
#index #kv {
    background-image: url(../img/kv_sp.png);
    background-position: 50% center;
    background-position-y: 50px;
     background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #fff;
    height: 100vh;
    margin-top: 0;
}
  #index #kv .catchphrase .ttl_line div {
      font-size: 30px;
      padding: 5px 0 10px 15px;
  }
  #index #kv .catchphrase .ttl_line {
    margin-bottom: 10px;
  }
  #index #kv .catchphrase h2 {
    font-size: 21px;
    margin-bottom: 10px;
    padding-left: 5%;
    padding-right: 5%;
  }
  #index #kv .catchphrase div {
    font-size: 14px;
    padding-left: 5%;
    padding-right: 5%;
  }
  #index #kv .catchphrase {
    padding-bottom: 6%;
  }
}

/****************************  about_us  ****************************/
#about_us {
  text-align: center;
}
#about_us p {
  line-height: 2;
}
#about_us { 
  background-image: url(../img/img_aboutus01.png);
  background-repeat:  no-repeat; 
  background-position: right 30px bottom 0,center;  
}
@media screen and (max-width: 768px) {
  #about_us p {
    text-align: left;
  }
  .bg_img {
    margin-bottom: 75px;
  }
  #about_us { 
    background-position: right 50% bottom 0,center;  
  }
}


/****************************  service  ****************************/
#service .box_3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
  flex-wrap: nowrap;
  align-items: stretch;
}
#service .box_3 > div {
  flex: 1;
  background: #fff;
  padding: 40px 15px;
  border-radius: 10px;
}
#service .box_3 > div > div:first-child {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}
#service .box_3 > div > div:nth-child(2) {
  padding-top: 20px;
}
#service .box_3 > div img {
  margin: 0 auto;
  display: block;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  #service .box_3 {
      flex-direction: column;
  }
}


/****************************  features  ****************************/
#features .box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding-top: 30px;
}
#features .box:first-child {
  padding-top: 0;
}
#features .box .text {
  width: 50%;
}
#features .box .img {
  width: 50%;
}
#features .content .sttl {
  color: #FF8800;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  padding-bottom: 20px;
}
#features .content .sttl span {
  font-size: 60px;
}
@media screen and (max-width: 768px) {
  #features .box {
      flex-direction: column;
  }
  #features .content .sttl span {
    font-size: 45px;
  }
  #features .box .text,
  #features .box .img {
    width: 100%;
  }
  #features .box .img {
    order: 2;
  }
  #features .box .text {
    order: 1;
  }
}


/****************************  strengths  ****************************/
#strengths .box_4 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
  flex-wrap: nowrap;
  align-items: stretch;
}
#strengths .box_4 > div {
  flex: 1;
  background: #fff;
  padding: 30px 15px 30px 15px;
  border-radius: 10px;
}
#strengths .box_4 p {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  padding-top: 20px;
}
#strengths .box_4 > div img {
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  #strengths .box_4 {
    flex-direction: row;
    flex-wrap: wrap;
      gap: 10px;
  }
  #strengths .box_4 > div {
    flex: 0 0 calc(50% - 5px);
    padding: 15px 10px;
  }
  #strengths .box_4 > div img {
    width: 80%;
  }
  #strengths .box_4 p {
    padding-top: 10px;
    font-size: 15px;
    line-height: 1.5;
  }
}


/****************************  flow  ****************************/
#flow table {
  background: #F5F5F5;
  padding: 20px;
}
#flow table th {
  background: #555555;
  color: #fff;
  font-size: 26px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 15px 0;
}
#flow table th span {
  display: block;
  font-size: 14px;
}
#flow table .orange {
  background: #FFEEDB;
  color: #fff;
  text-align: center;
  color: #292929;
  padding: 25px 0;
}
#flow table td {
  background: #fff; 
  text-align: center;
  color: #292929;
  padding: 25px 30px;
  margin: 5px 0;
}
#flow table td span {
  font-weight: bold;
  font-size: 18px;
}
#flow table .orange .fs_m {
  font-size: 20px;
  font-weight: bold;
}
#flow table .orange p {
  padding-top: 10px;
}
#flow table .orange .btn {
  margin-top: 15px;
}
#flow table .orange .img {
  display: inline-block;
}
.flow-images {
  display: flex;
  align-items: flex-end;      /* 縦位置を中央揃え */
  justify-content: center;  /* 全体を中央寄せ */
  gap: 20px;                /* 要素間の余白 */
}
.flow-images .img img {
  max-width: 150px; /* サイズ調整（必要に応じて） */
  height: auto;
}
.flow-text {
  text-align: center;
}
.triangle-top,
.triangle-bottom {
  position: relative;
}
.triangle-top::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 18px;
  background: url("../img/icon_triangle.png") no-repeat center;
  background-size: contain;
  z-index: 1;
}
.triangle-bottom::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 18px;
  background: url("../img/icon_triangle.png") no-repeat center;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #flow table {
    padding: 0px;
  }
  #flow table th {
    font-size: 22px;
  }
#flow table .orange {
    position: relative;
}
#flow table .orange .fs_m {
    font-size: 18px;
  }
  #flow table .orange p {
    text-align: left;
}
    #flow table .orange .img {
    display: inline-block;
    position: absolute;
    bottom: -55px;
}
  .flow-images {
    flex-direction: column;
    padding: 15px;
  }
  #flow table:last-child .orange .img {
    right: 0px;
  }
  #flow table:first-child .orange .img {
    left: 0px;
  }
  #flow .flow-text .btn a {
    margin-top: 15px;
    width: 100%;
}
#flow table td {
    padding: 20px;
}
}

/****************************  voice  ****************************/
#voice .box_3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
  flex-wrap: nowrap;
  align-items: stretch;
}
#voice .box_3 > div {
  flex: 1;
  border-radius: 10px;
}
#voice .box_3 div img {
  margin: 0 auto;
  display: block;
  padding-bottom: 20px;
}
#voice .box_3 .sttl {
  font-weight: bold;
  padding-bottom: 10px;
}
#voice .box_3 p {
  font-size: 14px;  
  padding-bottom: 6px;
}
#voice .box_3 span {
  font-size: 12px;
  font-weight: bold;
}
#voice .box_3 .text-link {
  padding-top: 10px;
  text-align: right;
  font-weight: bold;
}
#voice .box_3 .text-link a {
  position: relative;
  display: inline-block;
  padding-right: 16px; /* 矢印分の余白 */
  text-decoration: none;
  padding-bottom: 2px;
  transition: 0.3s;
}
#voice .box_3 .text-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  padding-top: 2px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 1px;
  transition: 0.3s;
}
#voice .box_3 .text-link a:hover {
  opacity: 0.6;
}
#voice .box_3 .text-link a:hover::after {
  right: -5px;
}

@media screen and (max-width: 768px) {
  #voice .box_3 {
    flex-direction: column;
  }
  #voice .box_3 div img {
      width: 100%;
      padding-bottom: 10px;
  }
}


/****************************  partner_recruitment  ****************************/
#partner_recruitment {
  background-color: #FFF8EF;
}
#partner_recruitment .sttl {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 15px;
}
#partner_recruitment p {
  text-align: center;
  line-height: 1.8;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #partner_recruitment .sttl {
      font-size: 16px;
  }
  #partner_recruitment p {
    text-align: left;;
  }
}

/****************************  news  ****************************/
#news .news_inner {    
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: flex-start;
}
#news .ttl {
  text-align: left;
  padding-right: 40px;
  width: 17%;
}
#news .ttl .ttl_en {
  padding-left: 3px;
}
#news .ttl::after {
  content: none;
}
#news .news_list {
  width: 83%;
}
#news li {
  border-top: 1px solid #DDD;
}
#news li a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding-top: 30px;
  padding-bottom: 30px;
  font-weight: bold;
  transition: 0.3s;
}
#news li span {
  display: block;
  display: inline-flex;
}
#news li span:first-child {
  font-weight: bold;
  padding-right: 20px;
  font-size: 16px;
}
#news li:last-child {
  border-bottom: 1px solid #DDD;
}
.news_list .link_none {
  pointer-events: none; /* クリック無効 */
  cursor: default;      /* マウスカーソルを通常に */
  color: inherit;       /* リンク色を解除 */
  /* font-weight: normal !important; */
}
.news_list li a.link_none::after {
  content: none;
}

.news_list li a {
  position: relative;
  display: block;
  padding-right: 56px; /* アイコン分の余白 */
}
.news_list li a:hover {
  opacity: 0.6;
}
.news_list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../img/icon_arrow.png") no-repeat center;
  background-size: contain;
}
.news_list li a.link_blank::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px; /* 矢印との間隔 */
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../img/icon_blank.png") no-repeat center;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  #news .news_inner {
      flex-direction: column;
  }
  #news .ttl {
      text-align: center;
      padding-right: 0;
      width: 100%;
  }
  #news .ttl {
    position: relative;
}
  #news .ttl::after {
    content: '';
    width: 46px;
    height: 3px;
    border-radius: 50px;
    display: inline-block;
    background-color: #FF8800;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 23px);
}
  #news .news_list {
      width: 100%;
  }
  #news li a {
      flex-direction: column;
      padding-right: 30px;
          padding-top: 15px;
      padding-bottom: 15px;
  }
  #news li a.link_none {
      padding-right: 0;
  }
  .news_list li a::after,
  .news_list li a.link_blank::after {
      right: 0;
  }
  #news li span:first-child {
      color: #777;
      font-weight: normal;
  }
  #news li span:first-child,
  #news li span {
      font-size: 15px;
  }
}

/****************************  CONTACT  ****************************/

#contact {
  position: relative;
  text-align: center;
}
#contact::before,
#contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: auto;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}
#contact::before {
  width: clamp(180px, 22vw, 301px);
  aspect-ratio: 301 / 98;
  left: clamp(20px, 5vw, 80px);
  background-image: url(../img/img_contact01.png);
}
#contact::after {
  width: clamp(200px, 25vw, 341px);
  aspect-ratio: 341 / 99;
  right: clamp(20px, 5vw, 80px);
  background-image: url(../img/img_contact02.png);
}
#contact {
  position: relative;
  overflow: hidden;
}
#contact::before {
  bottom: -3px;
}
#contact::after {
  bottom: -2px;
}

@media screen and (max-width: 768px) {
  #contact {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 80px;
  text-align: left;
  }
  #contact .btn a {
      margin-top: 15px;
  }  
  #contact::after {
      /*width: clamp(140px, 40vw, 220px);*/
      height: auto;
      aspect-ratio: 160 / 46;
      right: -35px;
      bottom: 0;
    }
  #contact::before {
      height: auto;
      aspect-ratio: 144 / 47;
      left: 2px;
      bottom: 0;
  }
}


/****************************  footer  ****************************/

#footer {
  background: #333333;
  color: #fff;
}
.footer_text_inner {
  display: flex;
  font-size: 16px;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}
.footer_company .logo img {
  width: clamp(200px, 25vw, 236px);
  aspect-ratio: 236 / 34;
}
.footer_company .address {
  padding-top: 20px;
  font-size: 16px;
  font-weight: 300;
}
.footer_nav_w .footer_nav_main {
  display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
}
.footer_nav_w .footer_nav_main li a {
  display: block;
  position: relative;
  padding: 20px;
  transition: 0.3s;
}
.footer_nav_w .footer_nav_main li a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 3px solid #FF8800;
    border-right: 3px solid #FF8800;
  transform: rotate(45deg);
  box-sizing: border-box;
   border-radius: 1px;
  transition: 0.3s;
}
.footer_nav_w .footer_nav_main li a:hover {
  opacity: 0.8;
}
.footer_nav_w .footer_nav_main li a:hover::before {
  right: auto;
  left: 5px;
}

.footer_nav_w .footer_nav_main li .btn {
  transition: 0.3s;
}
.footer_nav_w .footer_nav_main li .btn a {
  position: relative;
  display: block;
  width: 200px;
  background: #FF8800;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 10px 10px 25px;
  max-width: 200px;
  text-align: center;
  margin: 0 auto;
  border-radius: 50px;
  margin-top: 0;
  text-align: center;
}
.footer_nav_w .footer_nav_main li .btn:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.footer_nav_w .footer_nav_main li .btn-arrow-right a::before {  
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 27px;
  height: 20px;
  margin: auto;

  background-image: url(../img/icon_mail.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  border-top: none;
  border-right: none;
  transform: none;
  box-sizing: border-box;
  border-radius: 0;
  transition: 0.3s;
}

.footer_nav_w .footer_nav_main li .btn-arrow-right a:hover::before {  
  left: 20px;
  right: auto;
}
.footer_nav_w .footer_nav_main li .btn-arrow-right a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
    width: 12px;
    height: 12px;
    margin: auto;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
   border-radius: 1px;
  transition: 0.3s;
}
.footer_nav_w .footer_nav_main li .btn-arrow-right a:hover::after {
  right: 5px;
}

.footer_nav {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0;
  gap: 30px;
}
.footer_nav_w .footer_nav li a {
  transition: 0.3s;
}
.footer_nav_w .footer_nav li a:hover {
  opacity: 0.6;
}

#copyright {
  background: #292929;
  color: #fff;
  display: block;
  font-size: 12px;
  text-align: right;
}
section#copyright {
    padding: 10px 0;
}
#partner_recruitment_f .sttl {
  margin-bottom: 20px;
}
#partner_recruitment_f p {
  font-size: 14px;
}
#contact p {
  font-size: 16px;
}
@media screen and (min-width: 769px) {
#partner_recruitment_f .sttl {
  text-align: center;
}
#partner_recruitment_f p {
  text-align: center;
}
}
@media screen and (max-width: 768px) {
  section#footer {
    padding: 50px 15px 5px 15px;
  }
.footer_text_inner {
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    flex-direction: column;
    align-items: stretch;
}
.footer_company .address {
  padding-bottom: 30px;
  font-size: 13px;
}
.footer_nav_w .footer_nav_main {
    flex-direction: column;
    padding: 20px 0 30px 0;
    border-top: 1px solid #555;
    border-bottom: none;
    align-items: stretch;
}
.footer_nav_w .footer_nav_main li .btn {
    padding-top: 20px;
}
.footer_nav_w .footer_nav_main li .btn a {
  width: 100%;
  max-width: 100%;
    padding: 15px 15px 15px 25px;
}
.footer_nav {
  display: none;
}
.footer_nav_w .footer_nav_main li a {
    padding: 10px 10px 10px 20px;
}
.footer_nav {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
section#copyright {
    padding: 10px 15px;
}
}

body#index #partner_recruitment_f {
  display: none;
}

@media screen and (min-width: 769px) {
section#footer > div {
    max-width: 1080px;
}
}



/****************************  header  ****************************/
/*
@media (min-width: 769px) {
  .main-content {
    padding-right: 200px;
  }
}


.nav .logo {
  margin-right: 0;
}

.nav .logo img {
  width: clamp(30px, 5.5vw, 92px);
  margin-right: 0;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: clamp(30px, 3vw, 90px);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 21px);
  line-height: 1;
  letter-spacing: -0.05rem;
}

.nav-links a {
  color: #555555;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff6600;
}
*/
/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  display: block;
  border-radius: 2px;
}
/*
.nav {
  position: fixed;
  top: 38%;
  right: clamp(20px, 6vw, 90px);
  width: auto;
  max-height: 80vh;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  z-index: 1000;
  pointer-events: auto;
  text-align: right;
  transition: top 0.5s ease, transform 0.5s ease;
}

.nav a {
  text-decoration: none;
  padding: 10px 0;
}

.nav img {
  width: 100px;
  margin-bottom: 20px;
}

.logo {
  position: relative;
  display: inline-block;
  width: auto;
}

.logo img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease-in-out;
}
.logo .logo-default {
  opacity: 1;
  z-index: 1;
}

.logo .logo-hover {
  opacity: 0;
  z-index: 2;
}


.logo:hover .logo-default {
  opacity: 0;
}

.logo:hover .logo-hover {
  opacity: 1;
}

*/
/*
@media screen and (min-width: 769px) {
  .nav.fixed-top {
    top: 60px !important;
    transform: none !important;
  }

  .nav.fixed-top .nav-links {
    gap: 0;
    padding-top: 15px;
  }
}
*/
/*
.logo {
  position: relative;
  display: inline-block;
  width: clamp(30px, 5.5vw, 92px);
    height: auto;
  }

.logo img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
.logo .logo-default {
  position: relative;
  opacity: 1;
  z-index: 1;
}
.logo .logo-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}
.logo:hover .logo-default {
  opacity: 0;
}
.logo:hover .logo-hover {
  opacity: 1;
}
*/
@media screen and (max-width: 768px) {
  .nav {
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
    right: 0;
    top: 0;
    transform: none;
    background: rgba(34, 34, 34, 0.1);
    max-height: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 150px;
    height: 100vh;
    background: rgba(34, 34, 34, 0.9);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    font-size: clamp(15px, 5vw, 21px);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
    z-index: 999;
    margin-top: 0;
  }

  .nav .logo img {
    width: clamp(30px, 15vw, 160px);
  }

  .nav .logo {
    margin-top: 20px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    display: block;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav-links a {
    color: #fff;
    letter-spacing: 0;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .logo .logo-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
  }
}

@media screen and (max-width: 768px) {
}

/******************************　　nav　　****************************/
/* 親セクション */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}

/* ナビ中身 */
/*
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
*/
#header .nav {
}
section#header {
  padding: 12px 0;
}
section#header .nav-links {
  display: flex;
  gap: 30px;
  font-weight: bold;
    align-items: center;
    flex-direction: row;
}
section#header .nav-links .btn a {
  width: 200px;
  margin-top: 0;
}
section#header > div {
    max-width: 100%;
    margin: 0 30px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

section#header .nav-links .btn {
  transition: 0.3s;
}
section#header .nav-links .btn a {
  position: relative;
  display: block;
  width: 200px;
  background: #FF8800;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 10px 10px 25px;
  max-width: 200px;
  text-align: center;
  margin: 0 auto;
  border-radius: 50px;
  margin-top: 0;
  text-align: center;
}
section#header .nav-links a {
  transition: 0.3s;
}
section#header .nav-links a:hover {
  opacity: 0.7;
}
section#header .nav-links .btn:hover {
  opacity: 0.8;
  transition: 0.3s;
}
section#header .nav-links .btn-arrow-right a::before {  
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 27px;
  height: 20px;
  margin: auto;

  background-image: url(../img/icon_mail.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  border-top: none;
  border-right: none;
  transform: none;
  box-sizing: border-box;
  border-radius: 0;
  transition: 0.3s;
}





@media screen and (max-width: 768px) {
  section#header {
      padding: 0;
  }
  section#header > div {
    margin: 0;
    padding: 10px 15px;
  }
  .nav {
    background: rgba(255, 255, 255, 0.1);
  }
  .nav .logo {
      margin-top: 0;
  }
  .nav .logo img {
      width: clamp(30px, 50vw, 238px);
  }
  .hamburger span {
    background: #333;
  }
  section#header .nav-links {
    z-index: 999;
    display: flex;
        align-items: center;
        flex-direction: column;
        z-index: 999;
        justify-content: center;
        width: 70%;
        background: rgba(255, 248, 239, 0.96);
        color: #292929;
  }
      .nav-links a {
        color: #292929;
        letter-spacing: 0;
    }
    #header .btn {
        padding-right: 0;
    }
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
  }
}



#kv {
  display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
#kv #contact-section {
  width: 375px;
    right: 0;
    background: #FFF8EF;
    height: calc(100vh - 70px);
    margin-top: 0;
    padding: 15px 20px 0 20px;
    z-index: 10;
}
#formWrap table th,
#formWrap table td {
  display: block;
  text-align: left;
}
#formWrap table th {
  padding-top: 6px;
  padding-bottom: 5px;
}
#formWrap table tr:first-child th {
  padding-top: 0;
}
#formWrap table th span {
  font-size: 12px;
}
#kv :where(input, button, textarea, select) {
  width: 100%;
  border: 1px solid #CECECE;
  border-radius: 6px;
  padding: 7px 15px;
}
.radio_wrap input[type="radio"] {
  width: 20px!important;
  display: inline-block;
  margin-right: 8px;
}

.privacy-check a {
  color: #FF8800;
  text-decoration: underline;
  transition: 0.3s;
}
.privacy-check a:hover {
  opacity: 0.7;
}

#kv #formWrap .btn input[type="submit"] {
  border-radius: 25px;
  position: relative;
    display: block;
    background: #FF8800;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
    border-radius: 50px;
    margin-top: 0;
    text-align: center;
    border: none;
    margin-top: 20px;
  transition: 0.3s;
  padding: 12px;
}

#kv #formWrap .btn {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  width: 100%;
}

#kv #formWrap .btn .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
  pointer-events: none;
}

#kv #formWrap .btn:hover .arrow {
  right: 10px;
}




/******************************　　breadcrumbs　　****************************/

.breadcrumbs {
    background: #F8F8F8;
    padding: 20px 0;
    font-size: 14px;
    max-width: 100%;
    color: #999999;
}
.breadcrumbs > div {
max-width: 940px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
}
.breadcrumbs  img {
    display: block;
    width: 8px;
    height: 13px;
    position: relative;
    vertical-align: middle;
    top: 4px;
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    padding: 15px;
  }
}


/******************************　　Subpage all　　****************************/

section.mv {
    padding: 0;
	margin-top: 70px;
}
section.mv .ttl_w {
  display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    flex-wrap: nowrap;
}
section.mv .ttl_w .btn a {
    width: 210px;
    margin-top: 0;
}
section.mv .ttl {    
	margin-top: 50px;
	margin-bottom: 55px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
	align-items: flex-end;
}
section.mv .ttl .ttl_jp {
    font-size: clamp(12px, 8vw, 45px);
    padding: 0 20px 0 0;
}
section.mv .ttl .ttl_en {
    font-size: 18px;
    color: #FECC93;
    padding-top: 5px;
    padding-bottom: 10px;
}
section.mv .ttl::after {
	display: none;
}
.text_bold {
  font-weight: bold;
}
.sttl {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  section.mv {
    margin-top: 48px;
  }
  section.mv .ttl_w {
    display: flex;
    flex-direction: column;
        align-items: center;  
    justify-content: flex-start;
    align-content: center;
    flex-wrap: nowrap;
    padding: 25px 15px;
  }
  section.mv .ttl {
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }
  #contact_main section.mv .ttl,
  #contact_comp section.mv .ttl {
    margin-bottom: 0;
  }
  section.mv .ttl .ttl_jp {
    padding: 0;
  }
  section.mv .ttl_w .btn a {
    margin-top: 0;
  }
  .mt_sp_20 {
    margin-top: 20px!important;
  }
}

h3 {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 30px;
}



/******************************　　company　　****************************/
#company_message .message_inner > div {
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-start;
        gap: 20px;
}
#company_message .message_inner h3 {
  display: inline-block;  
  line-height: 1.6;
}
#company_message .message_inner p {
  font-size: 14px;
}
#company_message .message_inner img {
  display: inline-block;  
  padding-bottom: 15px;
}
#company_message .message_inner .text {
  flex: 1;           /* 残り全部 */
  min-width: 0;      /* 長文でも崩れない */
}
#company_message .message_inner img {
  width: 100%;
  height: auto;
  display: block;
}
#company_message .message_inner .img {
  text-align: center;
      margin: 0 auto;
}


#company_profile dl  {
  border-bottom: 1px solid #999999;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
#company_profile dt {
    border-top: 1px solid #999999;
    width: 15%;
    padding-left: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
    font-weight: bold;
}
#company_profile dd {
    border-top: 1px solid #999999;
    width: 85%;
    padding-right: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
}

#company_history dl  {
  border-bottom: 1px solid #999999;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

#company_history dt {
    border-top: 1px solid #999999;
    background: #555;
    color: #fff;
    width: 20%;
    padding-left: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
    font-weight: bold;
}
#company_history dd {
    border-top: 1px solid #999999;
    background: #fff;
    width: 80%;
    padding-left: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
}


@media screen and (max-width: 768px) {
  #company_message .message_inner > div {
    display: flex ;
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  h3 {
    padding-bottom: 20px;
}
  #company_message .message_inner img {
        order: 1;  
  padding-bottom: 5px;
    }   
  #company_message .message_inner .text {
        order: 2;
    }
    #company_profile dl,
    #company_profile dt,
    #company_profile dd,
    #company_history dt,
    #company_history dd {
        width: 100%;
    }
    #company_profile dt {
      padding-left: 0;
      padding-top: 15px;
      padding-bottom: 5px;
    }
    #company_profile dd {
        border-top: none;
        padding-top: 0;
        padding-bottom: 15px;    
    }
    #company_history dt {
        padding: 20px 15px;
    }
    #company_history dd {
        padding: 20px 15px;
    }
}


/******************************　　business　　****************************/

#service .box_3 ul {
  margin-left: 20px;
  padding-top: 20px;
}
#service .box_3 ul li {
  text-indent: -0.5em;
  margin-left: 1em;
  line-height: 1.6;
}
#service .box_3 ul li::before {
  content: "・";
  display: inline-block;
}

#service .box_3 ul.note {
  padding-top: 15px;
}
#service .box_3 ul.note li::before {
  content: "※";
  display: inline-block;
}
#service .box_3 ul.fs-s li {
  font-size: 12px;
}

#business #strengths .box_2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: stretch;
    padding-bottom: 20px;
}
#business #strengths .box_2 > div {
    flex: 1;
    background: #fff;
    padding: 30px 15px 30px 15px;
    border-radius: 10px;
}
#business #strengths .box_2 > div img {
    margin: 0 auto;
    display: block;
}
#business #strengths .box_2 > div p {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    padding-top: 20px;
}
#business #strengths .box_2 > div p:last-child {
    font-weight: normal;
    font-size: 16px;
}

#business #voice .box_1 > div:first-child {
  margin-top: 50px;
}
#business #voice .box_1 > div {
  display: flex;
  margin-top: 20px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}
#business #voice .box_1 > div .sttl {
  font-size: 24px;  
  font-weight: bold;
  line-height: 1.6;
  padding-bottom: 25px;
}
#business #voice .box_1 > div .sttl span {
  position: relative;
  z-index: 1;
}
#business #voice .box_1 > div .sttl span::before {
  position: absolute;
  z-index: -1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    -webkit-transform-origin: left;
    transform-origin: left;
    background: #FEE326;
    content: "";  
}
#business #voice .box_1 > div p {
  padding-top: 20px;
  border-top: 1px dotted #ccc;
  font-size: 14px;
  color: #555;
}
#business #voice .box_1 .voice_img {
  min-width: 320px;
  padding-right: 20px;
}
#business #voice .box_1 > div:nth-child(2n) .voice_img {
  padding-left: 20px;
  padding-right: 0;
}
#business #voice .box_1 .voice_img span {
  font-size: 12px;
  font-weight: bold;
  padding-top: 10px;
  display: inline-block;
}
#business #voice .box_1 .voice_img span:nth-child(2n) {
  padding-left: 15px;
}
#business #system p.sttl {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 10px;
}
#business #system p {
text-align: center;
padding-bottom: 25px;
}
#business #system .box_2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: flex-start;
    align-items: stretch;
}
#business #system .box_2 > div {
    flex: 1;
    background: #f8f8f8;
    width: 50%;
}
#business #system .box_2 > div .text {
    padding: 20px;
}
#business #system .box_2 > div .sttl {
  font-size: 20px;
  font-weight: bold;
    text-align: left;
    padding-bottom: 10px;
}
#business #system .box_2 > div .sttl span {
    font-size: 12px;
    color: #bababa;
    padding-left: 15px;
}
#business #system .box_2 > div p {
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    font-size: 16px;
}
#business #system .box_2 > div ul {
    padding-top: 15px;
}
#business #system .box_2 ul li {
    text-indent: -0.5em;
    margin-left: 1em;
    line-height: 1.6;
    font-weight: bold;
    font-size: 14px;
}
#business #system .box_2 ul li::before {
    content: "・";
    display: inline-block;
}
#business #system .orange {
  background-color: #FFF8EF;
  padding: 30px 20px;
  margin-top: 20px;
    background-image: url(../img/business/img_system03.png);
    background-repeat: no-repeat;
    background-position: left 30px bottom 5px, center;
    position: relative;
}
#business #system .orange::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 18px;
    background: url(../img/icon_triangle_orange.png) no-repeat center;
    background-size: contain;
    z-index: 1;
}
#business #system .orange .btn a {
  margin-top: 0;
}
#business #system .orange p {
  font-size: 16px;
}


#business_pr {
  border-top: 5px solid #f5f5f5;
}
#business_pr .sttl {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 15px;
}
#business_pr p {
    text-align: center;
    line-height: 1.8;
    font-size: 14px;
}


#business_pr .box_4 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: stretch;
    margin-top: 60px;
}
#business_pr .box_4 > div {
    flex: 1;
    background: #fff;
    padding: 40px 15px 30px 15px;
    border-radius: 10px;
    border: 2px solid #DDDDDD;
    position: relative;
}
#business_pr .box_4 > div .sttl {
    font-size: 16px;  
    line-height: 3.2;
    font-weight: bold;
    padding-bottom: 10px;
}
#business_pr .box_4 > div:first-child .sttl {
    line-height: 1.6;
}
#business_pr .box_4 > div p {
    line-height: 1.4;
}
#business_pr .box_4 > div .img {
  margin-top: 30px;
}
#business_pr .box_4 > div .img img {
  margin: 0 auto;
}

#business_pr .box_4 > div::before {
  content: "";
  position: absolute;
  top: -40px;                 /* はみ出し量（調整OK） */
  left: 50%;
  transform: translateX(-50%);
  width: 62px;                /* 画像サイズ */
  height: 68px;
  background: url(../img/business/icon_feature_01.png) no-repeat center;
  background-size: contain;
}
#business_pr .box_4 > div:nth-child(1)::before {
  background: url(../img/business/icon_feature_01.png) no-repeat center;
  background-size: contain;
}
#business_pr .box_4 > div:nth-child(2)::before {
  background: url(../img/business/icon_feature_02.png) no-repeat center;
  background-size: contain;
}
#business_pr .box_4 > div:nth-child(3)::before {
  background: url(../img/business/icon_feature_03.png) no-repeat center;
  background-size: contain;
}
#business_pr .box_4 > div:nth-child(4)::before {
  background: url(../img/business/icon_feature_04.png) no-repeat center;
  background-size: contain;
}
#business_pr .orange {
    background-color: #FFF8EF;
    padding: 30px 20px;
    margin-top: 20px;
    background-image: url(../img/business/img_system03.png);
    background-repeat: no-repeat;
    background-position: left 30px bottom 5px, center;
    position: relative;
}
#business_pr .orange::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 18px;
    background: url(../img/icon_triangle_orange.png) no-repeat center;
    background-size: contain;
    z-index: 1;
}
#business #partner_recruitment_f {
  display: none;
}

@media screen and (max-width: 768px) {
  #service .box_3 > div {
    padding: 25px 15px;
}

#service .box_3 > div > div:nth-child(2) {
    padding-top: 10px;
}
#service .box_3 > div img {
    padding-top: 10px;
}
  #service .box_3 ul {
    margin-left: 0;
  }
  #service .box_3 ul li {
    font-size: 14px;
  }
  #business #strengths .box_2 {
    flex-direction: column;
}
#business #strengths .box_2 > div {
    padding: 20px 15px;
}
#business #strengths .box_2 > div p {
    font-size: 18px;
    padding-top: 15px;
    line-height: 1.5;
}
#business #strengths .box_2 > div p:last-child {
    font-size: 14px;
    text-align: left;
}
#business #system p.sttl {
    font-size: 18px;
}
#business #system p {
    text-align: left;
}
#business #system .box_2 {
    flex-direction: column;
}
#business #system .box_2 > div {
    width: 100%;
}
#business #system .box_2 > div .text {
    padding: 15px;
}
#business #system .box_2 > div .sttl {
    font-size: 18px;
}
#business #system .box_2 > div p {
    font-size: 15px;
    line-height: 1.5;
}
#business #system .orange p {
    font-size: 15px;
    padding-bottom: 20px;
}
#business #system .orange {
    padding: 30px 20px 120px 20px;
}
#business #voice .box_1 > div {
    padding: 20px 15px;
    flex-direction: column;
}
#business #voice .box_1 > div .sttl {
    font-size: 18px;
    padding-bottom: 20px;
    padding-top: 10px;
}
#business #voice .box_1 > div p {
    padding-top: 15px;
}
#business #voice .box_1 .voice_img {
    width: 100%;
    padding-left: 0;
    text-align: center;
}
#business #voice .box_1 .voice_img img {
  margin: 0 auto;
}

  #business #voice .box_1 > div {
    flex-direction: column;
  }
  #business #voice .box_1 .voice_img {
    order: 1;
  }
  #business #voice .box_1 .voice_txt {
    order: 2;
  }

#business_pr .sttl {
  text-align: left;
  font-size: 16px;
}
#business_pr p {
    text-align: left;
}
#business_pr .box_4 {
    flex-direction: column;
    margin-top: 25px;
}
#business_pr .box_4 > div {
     display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 20px 15px;
}
#business_pr .box_4 > div::before {
  top: 5%;
  left: -10px;
  transform: translateY(-50%);
  width: 40px;
  height: 44px;
  background-size: contain;
}
#business_pr .box_4 > div .img {
    margin-top: 0;
}#business_pr .box_4 > div .sttl {
    line-height: 1.6;
}

#business_pr .orange p {
    font-size: 15px;
    padding-bottom: 20px;
}
#business_pr .orange {
    padding: 30px 20px 120px 20px;
}
#business_pr .orange .btn a {
    margin-top: 0;
}
}

/******************************　　sitemap　　****************************/
#sitemap #sitemap_list p {
  font-size: 20px;
  font-weight: bold;
}
#sitemap #sitemap_list p span {
  font-size: 14px;
  color: #777;
  padding-left: 20px;
}
#sitemap #sitemap_list a {
    display: block;
    position: relative;
    padding: 20px 20px 20px 30px;
    transition: 0.3s;
}
#sitemap #sitemap_list a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 14px;
    height: 14px;
    margin: auto;
    border-top: 3px solid #FF8800;
    border-right: 3px solid #FF8800;
    transform: rotate(45deg);
    box-sizing: border-box;
    border-radius: 1px;
    transition: 0.3s;
}
#sitemap #sitemap_list a:hover::before {
    left: 10px;
}
#sitemap #sitemap_list .anc p {
  font-weight: normal;
}
#sitemap #sitemap_list .anc a {
  margin-left: 45px;
  margin-bottom: 20px;
  padding: 0 20px 0 30px;
}


/******************************　　privacy_policy　　****************************/
#privacy_policy section.mv .ttl .ttl_jp span {
  font-size: 20px;
  padding-left: 15px;
}
#privacy_policy #privacy_policy_list p {
  font-size: 14px;
  padding-bottom: 5px;
}
#privacy_policy #privacy_policy_list dt,
.privacy-box dt {
  font-weight: bold;
  font-size: 15px;
  padding: 25px 20px 15px 0;
}
#privacy_policy #privacy_policy_list dd,
.privacy-box dd {
  font-size: 14px;
}
#privacy_policy #privacy_policy_list dd ul,
.privacy-box dd ul {
  padding: 10px 0;
}
#privacy_policy #privacy_policy_list dd ul li,
.privacy-box dd ul li {
  line-height: 1.8;
}
#privacy_policy #privacy_policy_list dd ul li::before,
.privacy-box dd ul li::before {
  content: "・";
}
#privacy_policy #privacy_policy_list dd span,
.privacy-box dd span {
  font-size: 12px;
}
#privacy_policy #privacy_policy_list dd div,
.privacy-box dd div {
  padding: 20px 30px;
  background: #fff;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  #privacy_policy section.mv .ttl .ttl_jp span {
    font-size: 14px;
    padding-left: 0;
    display: block;
    margin-bottom: 10px;
  }
  #privacy_policy section.mv .ttl {
    margin-bottom: 0;
  }
}


/******************************　　contact　　****************************/
.privacy-box h3 span {
  font-size: 12px;
}
.privacy-box p {
  font-size: 14px;
}
.privacy-box dd ul li {
  line-height: 1.6;
}
#contact_text p {
  font-size: 16px;
}
#contact_main #partner_recruitment_f,
#contact_main #contact {
  display: none;
}



/******************************　　btn_pagetop　　****************************/
.contact-btn_f,
.pagetop-btn {
  position: fixed;
  color: #fff;
  bottom: 60px;
  right: 30px;
  width: 90px;
  height: 90px;
  background: rgba(41, 41, 41, 0.9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: 0.3s;
}
.contact-btn_f:hover,
.pagetop-btn:hover {
  opacity: 0.8;
}
.contact-btn_f {
  position: fixed;
  bottom: 170px;
  right: 30px;
  width: 90px;
  height: 90px;
  background: rgba(255, 136, 0, 0.9);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}
.contact-btn_f .icon_contact {
  width: 27px;
  height: 20px;
  background-image: url(../img/icon_mail.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 6px;
}
.contact-btn_f .contact-text {
  line-height: 1.2;
  text-align: center;
}

.pagetop-btn .arrow-up {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagetop-btn .arrow-up::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg) translateX(-3px) translateY(3px);
  transition: 0.3s;
}
.pagetop-btn:hover .arrow-up:before {
  transform: rotate(-45deg) translateX(0px) translateY(-3px);
}

@media screen and (max-width: 768px) {
  .contact-btn_f, .pagetop-btn {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
  .contact-btn_f {
    bottom: 75px;
  }
  .contact-btn_f .contact-text {
    display: none;
  }
  .contact-btn_f .icon_contact {
    width: 26px;
    margin-bottom: 0;
  }
  .pagetop-btn .arrow-up::before {
      width: 14px;
      height: 14px;
  }
}

#contact_main .contact-btn_f {
  display: none;
}