@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,700&family=Noto+Sans+JP:wght@100..900&display=swap');

/*
Theme Name: bf
Theme URI: https://wordpress.org/themes/bf/
Author: Norit Japon
Author URI: https://www.norit.jp/
Description:
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 8.2
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bf
Tags:

This theme WordPress Theme, (C) 2025 WordPress.org
This theme distributed under the terms of the GNU GPL.
*/

/* reset＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}
body {
line-height:1.5;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
display:block;
}
nav ul {
list-style:none;
}
blockquote, q {
quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content:'';
content:none;
}
a {
margin:0;
padding:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
word-break: break-all;
}
ins {
background-color:#ff9;
color:#000;
text-decoration:none;
}
mark {
background-color:#ff9;
color:#000;
font-style:italic;
font-weight:bold;
}
del {
text-decoration: line-through;
}
abbr[title], dfn[title] {
border-bottom:1px dotted;
cursor:help;
}
table {
border-collapse:collapse;
border-spacing:0;
}
hr {
display:block;
height:1px;
border:0;
border-top:1px solid #cccccc;
margin:1em 0;
padding:0;
}
input, select {
vertical-align:middle;
}
input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}
/* reset end＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* common ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 100%;
  color: #000;
}
body {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: #000;
}
img {
  -webkit-backface-visibility: hidden;
  width: 100%;
  display: block;
}
p {
  text-align: justify;
  word-break: break-all;
}
li { list-style: none; }
#box{
  width: 100%;
  overflow-x: hidden;

  position: relative;
}
div{
  box-sizing: border-box;
}

.title p,
.title h2,
.title h3{
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.title p{
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  letter-spacing: .1em;
}
.title h2,
.title h3{
  font-size: 1.5rem;
  margin-top: 10px;
}

.btn_more{
  line-height: 1;
  border: 2px solid #ff6700;
  border-radius: 50px;
  position: relative;
  padding: 15px 68px;
  transition: .3s;
  display: table;
  background: #fff;
}
.btn_more_arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.btn_more_arrow::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 2px;
  background-color: #ff6700;
  transition: .3s;
}
.btn_more_arrow::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #ff6700;
  transition: .3s;
}
.btn_more:hover{
  background: #ff6700;
  color: #fff;
}
.btn_more:hover .btn_more_arrow::before{
  background-color: #fff;
}
.btn_more:hover .btn_more_arrow::after{
  border-left: 8px solid #fff;
}

.arrow{
  display: flex;
  align-items: center;
}
.arrow::before{
  content: "";
  display: inline-block;
}
.arrow::after{
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
}

/* .copy_orange{
  font-size: 2.8125rem;
  font-weight: 900;
  color: #fff;
}
.copy_orange span{
  display: inline-block;
  background: #ff6700;
  padding: 0 34px;
}
.copy_orange span:not(:last-of-type){
  margin-bottom: 15px;
} */

.copy_orange {
  /* font-size: 2.8125rem; */
  font-size: min(3.90625vw, 50px);
  font-weight: 900;
  color: #fff;
}
.copy_orange span {
  display: inline-block;
  background: #ff6700;
  padding: 0 34px;
  position: relative;
  overflow: hidden;
}
.serviceContents_text h3,
.serviceContents_text_l h3 span,
h3.serviceContents_title_2line span,
.recruitIntro{
  position: relative;
  overflow: hidden;
}
.copy_orange span::after,
.serviceContents_text h3::after,
.serviceContents_text_l h3 span::after,
h3.serviceContents_title_2line span::after,
.recruitIntro::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #115fad;
  z-index: 1;
  pointer-events: none;
  transition: none;
}
.serviceContents_text.serviceContents_text_l h3::after,
h3.serviceContents_title_2line::after{
  content: none;
}

.copy_orange span:not(:last-of-type) {
  margin-bottom: 15px;
}

.copy_orange.animate span::after,
.serviceContents_text h3.animate::after,
.serviceContents_text_l h3.animate span::after,
h3.serviceContents_title_2line.animate span::after,
.recruitIntro.animate::after{
  animation: cover-then-uncover 1s ease forwards;
}
.copy_orange.animate span:last-of-type::after,
h3.serviceContents_title_2line.animate span:last-of-type::after,
.serviceContents_text_l h3.animate span:last-of-type::after{
  animation-delay: .3s;
}
@keyframes cover-then-uncover {
  0% {
    left: 0;
    width: 0%;
  }
  40% {
    left: 0;
    width: 100%;
  }
  45% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0%;
  }
}

.gmap iframe{
  aspect-ratio: 3 / 1;
	width: 100%;
	height: auto;
  display: block;
}

.fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.fadeUp.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fadeIn {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity;
}
.fadeIn.is-visible {
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next{
  width: 40px;
  height: 40px;
}
.swiper-button-prev{
  left: -5.5%;
}
.swiper-button-next{
  right: -5.5%;
}
.swiper-button-prev:after,
.swiper-button-next:after{
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background-size: cover;
}
.swiper-button-prev:after{
  background-image: url(assets/images/slide-arrow_left.png);
}
.swiper-button-next:after{
  background-image: url(assets/images/slide-arrow_right.png);
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
  bottom: -10px;
}
.swiper-pagination-bullet{
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background: #7db9cd;
}

.link{
  transition: .3s;
}
.link:hover{
  opacity: .7;
}

.spOnly{
  display: none;
}
.br_spOnly{
  display: none;
}
.br_u-1000{
  display: none;
}
/* common end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* sp menu ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.btn_spMenu {
  display: none;
  position: relative;
  z-index: 100;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
.btn_spMenu span {
  display: block;
  position: absolute;
  left: 5px;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
  border-radius: 10px;
}
.btn_spMenu span:nth-of-type(1) {
  top: 7px;
}
.btn_spMenu span:nth-of-type(2) {
  top: 19px;
}
.btn_spMenu span:nth-of-type(3) {
  top: 31px;
}

.btn_spMenu.active span:nth-of-type(1) {
  top: 19px;
  transform: rotate(45deg);
}

.btn_spMenu.active span:nth-of-type(2) {
  opacity: 0;
}

.btn_spMenu.active span:nth-of-type(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* sp menu end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* header ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
#pageheader{
  width: 100%;
  height: 100px;

  padding: 30px 0;
  box-sizing: border-box;

  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;

  transform: translateY(0);
  transition: transform 0.3s ease;
}
.header-inner{
  width: 100%;
  padding: 0 22px 0 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo_header{
  /* width: 304px; */
  max-width: 304px;
  display: block;
}
.header_contents{
  display: flex;
  justify-content: flex-end;
}

.navheader{
  width: max-content;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: #fff;
  border-radius: 30px;
  /* margin-right: 18px; */
  margin: 0 18px;
}
.navheader li{
  padding: 0 8px;
  font-size: 15px;
}
.navheader li a{
  /* font-size: 0.9375rem; */
  font-size: 15px;
  transition: .3s;
}
.navheader li a:hover{
  opacity: .7;
}

.fontSize{
  display: flex;
  align-items: center;
}
.fontSize p{
  /* font-size: 0.8125rem; */
  font-size: 13px;
  margin-right: 8px;
  color: #fff;
  word-break: keep-all;
}
.fontSize_change{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  background: #fff;
  border-radius: 30px;
  padding: 4px;
  box-sizing: border-box;
}
.fontSize_change li{
  width: 50px;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
}
.fontSize_current{
  background: #7db9cd;
  color: #fff;
  pointer-events: none;
}

#pageheader.is-fixed {
  position: fixed;
  background-color: #7db9cd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#pageheader.is-hidden {
  transform: translateY(-100%);
}
/* header end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* footer ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
#pagefooter{
  width: 100%;
  padding: 86px 0 90px;
  background: #7db9cd;
}
.footer-inner{
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.footer_left{
  width: 316px;
}
.logo_footer{
  width: 100%;
  margin: 0 0 30px;
}

.footer_sns{
  display: flex;
  margin-top: 50px;
}
.footer_sns li{
  width: 40px;
}
.footer_sns li a{
  transition: .3s;
}
.footer_sns li a:hover{
  opacity: .7;
}


.footerCopy{
  font-size: 0.8125rem;
  font-weight: 400;
  margin-top: 30px;
}

.navfooter-wrap{
  width: 580px;
  display: flex;
}

.navFooter_block{
  width: 290px;
  box-sizing: border-box;
  border-left: 1px solid #fff;
  padding-left: 35px;
}

.navfooter{
  /* width: 290px;
  box-sizing: border-box;
  border-left: 1px solid #fff;
  padding-left: 35px; */
  width: 100%;
}
.navfooter li{
  margin: 0 0 12px;
}
.navfooter ul{
  margin: 12px 0 0;
}
.navfooter ul li{
  padding-left: 1em;
  position: relative;
}
.navfooter ul li::before{
  content: "\30FC";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.navfooter a{
  transition: .3s;
}
.navfooter a:hover{
  opacity: .7;
}

.btn_top{
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #7db9cd;
  border-radius: 50%;
  position: fixed;
  z-index: 5;
  right: 30px;
  bottom: 30px;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 100;
}
.btn_top.visible{
  opacity: 1;
  pointer-events: auto;
}

.btn_top span{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.btn_top span::before{
  content: "";
  display: block;
  border-style: solid;
  border-width: 0 5px 15px 5px;
  border-color: transparent transparent #7db9cd transparent;
}
.btn_top span::after{
  content: "";
  display: block;
  width: 2px;
  height: 14px;
  background-color: #7db9cd;
}
/* footer end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* top ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.mv-wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #7db9cd;
  border-radius: 0 0 70px 70px;
}
.mv-wrap img{
  max-width: 1280px;
}
.mv-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.mv-fade-in {
  opacity: 1;
  transform: translateY(0);
}








.topNews-wrap{
  width: 100%;
  padding: 160px 0 144px;
}
.topNews-inner{
  width: 100%;
  max-width: 1276px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.title_topNews{
  width: 360px;
  padding-left: 90px;
}
.title_topNews p,
.title_topNews h2{
  text-align: left;
  letter-spacing: .1em;
}
.title_topNews p{
  color: #ff6700;
}
.topNews_list{
  width: calc(100% - 360px);
  max-width: 916px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.topNews_list::after{
  content: "";
  display: block;
  width: calc((100% - 14px) / 3);
  max-width: 300px;
}
.topNews_box{
  width: calc((100% - 14px) / 3);
  max-width: 300px;
  display: block;
}
.topNews_image{
  width: 100%;
  aspect-ratio: 5 / 4;
  background-size: cover;
  background-position: center;
  position: relative;
}
.topNews_image::after{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  background: #b3b3b3;
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 3;
  top: 0;
}
.topNews_image p{
  font-size: 0.875rem;
  color: #fff;
  padding: 0 19px;
  border: 1px solid #fff;
  border-radius: 50px;
  position: absolute;
  z-index: 5;
  top: 10px;
  left: 8px;
}
.topNews_contents{
  padding: 10%;
}
.topNews_contents p{
  font-size: 0.9375rem;
  line-height: 1;
  margin-bottom: 10px;
}
.topNews_contents h3{
  font-weight: 500;
  line-height: 1.875;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.topNews_btn_more-wrap{
  width: 100%;
  max-width: 1276px;
  margin: 30px auto 0;
  padding-right: 40px;
  display: flex;
  justify-content: flex-end;
}


.topAbout-wrap{
  width: 100%;
  padding: 76px 0 86px;
  background: #d2ebf5;
}
.topAbout-inner{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.topAbout_contents{
  width: 48%;
}
.topAbout_text{
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  margin: 35px 0 30px;
}
/* .topAbout_logo{
  width: 48%;
  background: #c6c6c6;
} */


.logoScroll {
  width: 100%;
  overflow: hidden;
  margin: 0 0 80px;
}
.logoScroll__track {
  display: flex;
  width: max-content;
  animation: scrollLeft 100s linear infinite;
}
.logoScroll__track img {
  width: 595px;
  flex-shrink: 0;
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.topService-wrap{
  width: 100%;
  padding-left: 50px;
}
.topService-inner{
  width: 100%;
  padding: 112px 0 90px;
  padding-right: 50px;
  background: #d2ebf5;
  border-radius: 70px 0 0 70px;
}
.topServiceContents{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.topService_text{
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 700;
  text-align: center;
  margin-top: 34px;
}
.topServiceLink-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 60px 0 100px;
}
.topServiceLink{
  width: 46%;
  padding: 10px;
  background: #fff;
  border-radius: 30px;
  position: relative;
}
.topServiceLink img{
  width: 100%;
  border-radius: 20px;
}
.topServiceLink h3{
  font-size: 1.6875rem;
  font-weight: 700;
  text-align: center;
  padding: 24px 0 54px;
}
.topServiceLink .btn_more{
  width: 300px;
  height: 80px;
  padding: 0 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 18px;
  font-size: 1.25rem;
  font-weight: 700;
}
.topServiceLink .btn_more_arrow{
  right: 26px;
}
.topServiceLink .btn_more_arrow::before {
  width: 26px;
  height: 4px;
}
.topServiceLink .btn_more_arrow::after {
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 22px solid #ff6700;
}
.topServiceLink .btn_more:hover .btn_more_arrow::after {
  border-left: 22px solid #fff;
}
.topServiceIcon{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 40px 0 0;
}
.topServiceIcon li{
  width: 21%;
}


/* .top_CompanyLogo-wrap{
  width: 100%;
  height: 420px;
} */
.companyLogo_scroll-wrap{
  padding: 50px 0;
}
.companyLogo_scroll_1 {
  overflow: hidden;
  width: 100%;
}
.loopScroll__track {
  display: flex;
  width: max-content;
  animation: scrollLeft 60s linear infinite;
}
.loopScroll__track img {
  width: 1280px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.companyLogo_scroll_2 {
  overflow: hidden;
  width: 100%;
}
.companyLogo_scroll_2 .loopScroll__track {
  display: flex;
  width: max-content;
  animation: scrollRight 60s linear infinite;
}
.companyLogo_scroll_2 .loopScroll__track img {
  width: 1280px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}


.topRecruit-wrap{
  width: 100%;
  padding-right: 50px;
  margin: 0 0 140px;
}
.topRecruit-inner{
  width: 100%;
  padding: 100px 0 136px;
  padding-left: 50px;
  background-image: url(assets/images/top/recruit_bg.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 0 70px 70px 0;
}
.topRecruitContents{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.topRecruitContents .title{
  color: #fff;
}
.topRecruitLink-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 80px 0 0;
}
.topRecruitLink{
  width: 46%;
  position: relative;
  background: #000;
  border-radius: 30px;
}
.topRecruitLink a{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0 40px;
  box-sizing: border-box;
  border-radius: 30px;
  background: #fff;
  transition: .3s;
}
.topRecruitLink a:hover{
  opacity: .7;
}
.topRecruitLink a h3{
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px;
  padding: 0 5%;
}
.topRecruitLink a p{
  width: 260px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #fff;
  background: #ff6700;
  border-radius: 17px;
  margin: 0 auto;
}
.topRecruitLink a p span{
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  letter-spacing: .2em;
}
.topRecruitLink_arrow{
  display: flex;
  align-items: center;
  margin: 45px 0 0;
}
.topRecruitLink_arrow::before{
  content: "";
  display: inline-block;
  width: 26px;
  height: 4px;
  background-color: #ff6700;
}
.topRecruitLink_arrow::after{
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 22px solid #ff6700;
}
.topRecruit_ill{
  width: 94px;
  position: absolute;
}
.topRecruit_ill_1{
  bottom: -40px;
  left: -42px;
}
.topRecruit_ill_2{
  bottom: -36px;
  right: -28px;
}


.contactLink-wrap{
  width: 100%;
  /* background: #eff3f4; */
  background: linear-gradient(to top, transparent 0 75px, #eff3f4 75px);
  padding: 100px 0 0;
  margin: 0 0 168px;
}
.contactLink-inner{
  width: 90%;
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
}
.contactLink-inner a{
  width: 46%;
  min-height: 150px;
  padding: 15px 95px 15px 115px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border: 2px solid #ff6700;
  border-radius: 30px;
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 700;
  background: #fff;
  position: relative;
}
.contactLink-inner a::before{
  content: "";
  width: 60px;
  height: 60px;
  background-image: url(assets/images/top/icon_mail.png);
  background-size: cover;
  position: absolute;
  left: 30px;
}

.contactLink_arrow{
  display: flex;
  align-items: center;
  position: absolute;
  right: 25px;
}
.contactLink_arrow::before{
  content: "";
  display: inline-block;
  width: 22px;
  height: 4px;
  background-color: #ff6700;
}
.contactLink_arrow::after{
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 20px solid #ff6700;
}

.bnr_top-recruit{
  width: 150px;
  display: block;
  position: fixed;
  z-index: 5;
  top: 120px;
  right: 0;
  transition: .3s;
}
.bnr_top-recruit:hover{
  opacity: .9;
}
/* top end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* page common ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pageTitle_about,
.pageTitle_locations,
.page_title_bgc{
  background: #d2ebf5;
}
.pageTitle_mvv{
  background: #5be0e6;
}

.pageTitle-inner{
  width: 100%;
  height: 315px;
  padding-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 70px 70px;
}
.pageTitle_about .pageTitle-inner{
  background-image: url(assets/images/about/title_bg.jpg);
}
.pageTitle_mvv .pageTitle-inner{
  background-image: url(assets/images/about/mvv/title_bg.jpg);
}
.pageTitle_sustainability .pageTitle-inner{
  background-image: url(assets/images/about/sustainability/title_bg.jpg);
}
.pageTitle_service .pageTitle-inner{
  background-image: url(assets/images/service/title_bg.jpg);
}
.pageTitle_pc .pageTitle-inner{
  background-image: url(assets/images/service/pc/title_bg.jpg);
}
.pageTitle_outside .pageTitle-inner{
  background-image: url(assets/images/service/outside/title_bg.jpg);
}
.pageTitle_recruit .pageTitle-inner{
  background-image: url(assets/images/recruit/title_bg.jpg);
}
.pageTitle_staff .pageTitle-inner{
  background-image: url(assets/images/recruit/staff/title_bg.jpg);
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding-top: 100px;
}
.pageTitle_member .pageTitle-inner{
  background-image: url(assets/images/recruit/member/title_bg.jpg);
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding-top: 100px;
}
.pageTitle_locations .pageTitle-inner{
  background-image: url(assets/images/locations/title_bg.jpg);
}
.pageTitle_location .pageTitle-inner{
  background: #7db9cd;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding-top: 100px;
}
.pageTitle_noimage .pageTitle-inner{
  background: #7db9cd;
}
.pageTitle_news .pageTitle-inner{
  height: auto;
  min-height: 315px;
}
.pageTitle_news_contents{
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 0;
}

.pageTitle_recruit_sub{
  font-size: 2.1875rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .15em;
  margin: 0 0 15px;
}

.pageTitle-inner h1{
  font-size: 2.8125rem;
  font-weight: 900;
  letter-spacing: .15em;
  color: #fff;
  text-align: center;
}
.pageTitle-inner h1 span{
  font-size: 2.1875rem;
}

.pageTitle_recruit_main{
  width: 400px;
  height: 120px;
  background: #ff6700;
  border-radius: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pageTitle_recruit_main p{
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #fff;
  line-height: 1;
  letter-spacing: .15em;
}
.pageTitle_recruit_main h1{
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  margin: 5px 0 0;
}
.titleStaff_ill{
  width: 100px;
  position: absolute;
  bottom: -84px;
  right: -118px;
}
.titleMember_ill{
  width: 98px;
  position: absolute;
  bottom: -84px;
  right: -112px;
}

.pageTitle_location .pageTitle-inner p{
  font-size: 2.1875rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .15em;
  margin: 0 0 14px;
}
.pageTitle_location .pageTitle-inner h1{
  background: #ff6700;
  padding: 6px 50px;
  box-sizing: border-box;
  border-radius: 50px;
}


.pageIntro-wrap{
  width: 100%;
}
.pageIntro-inner{
  width: 90%;
  max-width: 1000px;
  margin: 100px auto 0;
  border-radius: 70px;
  padding: 40px 50px 70px;
  background: #eff3f4;
}
.pageIntro-inner h2,
.pageIntro-inner h3{
  font-size: 2.8125rem;
  font-weight: 900;
  letter-spacing: .1em;
  color: #ff6700;
  text-align: center;
  /* margin: 0 0 30px; */
}
.pageSustainabilityIntro h2{
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.35;
}

.pageIntro-inner p{
  width: 100%;
  max-width: 740px;
  /* margin: 0 auto; */
  margin: 30px auto 0;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 700;
}

.pageIntro-inner img{
  width: 100%;
  max-width: 640px;
  margin: 50px auto 0;
  border-radius: 30px;
}

/* page common end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* about ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.aboutLink-wrap{
  width: 100%;
  background: #d2ebf5;;
  padding: 100px 0 66px;
}
.aboutLink-inner{
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.aboutLink{
  width: 47%;
  height: 150px;
  max-width: 460px;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 15px 80px 15px 40px;
  border: 2px solid #7db9cd;
  box-sizing: border-box;
  border-radius: 30px;
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 50px;
  transition: .3s;
}
.aboutLink .arrow{
  position: absolute;
  right: 25px;
}
.aboutLink .arrow::before{
  width: 22px;
  height: 3px;
  background-color: #7db9cd;
  transition: .3s;
}
.aboutLink .arrow::after{
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 20px solid #7db9cd;
  transition: .3s;
}
.aboutLink:hover{
  background: #7db9cd;
  color: #fff;
}
.aboutLink:hover .arrow::before{
  background-color: #fff;
}
.aboutLink:hover .arrow::after{
  border-left: 20px solid #fff;
}
/* about end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* mvv ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.mvv_visionMap-wrap{
  width: 100%;
  padding: 80px 0 100px;
  background: linear-gradient(to bottom, #5be0e6, #0050db);
  border-radius: 0 0 70px 70px;
}
.mvv_visionMap-inner{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.mvv_visionMap-inner img{
  border-radius: 20px;
}

.mvvPhilosophy-wrap{
  width: 100%;
  padding: 80px 0 0;
}
.mvvPhilosophy-inner{
  width: 90%;
  max-width: 1000px;
  margin: 38px auto 0;
}
.mvvPhilosophy{
  width: 100%;
  padding: 11% 8%;
  background: #eff3f4;
  border-radius: 70px;
  margin: 0 0 80px;

  display: flex;
  justify-content: space-between;
}
.mvvPhilosophy_top{
  /* width: 378px; */
  width: 45%;
  max-width: 378px;
}
.mvvPhilosoph_title{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 35px;
}
.mvvPhilosoph_title p{
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .1em;
  color: #ff6700;
  display: inline-block;
  margin: 0 0 5px;
}
.mvvPhilosoph_title h3{
  font-size: 1.5rem;
}

.mvvPhilosoph_title_sub{
  font-size: 1.375rem;
  font-weight: 700;
  padding: 20px 0;
}

.mvvPhilosophy_bottom{
  /* width: 420px; */
  width: 50%;
  max-width: 420px;
}
.mvvPhilosophy_text{
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 700;
  /* margin: 40px 0 0; */
}

.mvvPhilosophy:nth-child(even){
  flex-direction: row-reverse;
}
.mvvPhilosophy:nth-child(even) .mvvPhilosoph_title{
  align-items: flex-end;
}

.mvvValue-wrap{
  width: 100%;
  margin: 0 0 80px;
}
.mvvValue-inner{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  background: #d2ebf5;
  padding: 50px;
  border-radius: 70px;
}

.mvvValue_contents{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px 0 0;
}
.mvvValue{
  width: 260px;
  padding: 0 20px;
  box-sizing: content-box;
  margin: 0 0 42px;
}
.mvvValue:nth-child(1){
  margin-left: 5px;
}
.mvvValue:nth-child(2){
  margin-right: 5px;
}
.mvvValue h3{
  width: 100%;
  display: block;
  margin: 0 0 12px;
}
.mvvValue p{
  line-height: 2;
  text-align: center;
}

.mvvCompany-wrap{
  width: 100%;
  padding: 80px 0;
}
.mvvCompany-inner{
  width: 100%;
  margin: 40px 0 0;
  padding: 0 0 100px;
  background: #d2ebf5;
  border-radius: 0 0 70px 70px;
}
.mvvCompanyInfo{
  width: 90%;
  max-width: 640px;
  margin: 80px auto;
}
.mvvCompanyInfo th,
.mvvCompanyInfo td{
  font-weight: 500;
  background: #fff;
  border-top: 1px solid #7db9cd;
  border-bottom: 1px solid #7db9cd;
  box-sizing: border-box;
}
.mvvCompanyInfo th{
  width: 150px;
  text-align: left;
  padding: 16px 0 16px 35px;
}
.mvvCompanyInfo td{
  width: calc(100% - 150px);
  padding: 16px 20px 16px 50px;
}
.gmap_companyInfo{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.gmap_companyInfo iframe{
  border-radius: 30px;
}

.mvvMessage-wrap{
  width: 100%;
  padding: 80px 0 60px;
}
.mvvMessage-inner{
  width: 90%;
  /* max-width: 640px; */
  max-width: 1000px;
  margin: 65px auto 0;
}
.mvvMessage_image{
  margin: 0 0 65px;
}
.mvvMessage_image img{
  border-radius: 30px;
}
.mvvMessage-inner p{
  line-height: 2;
}
.mvvMessage-inner p:not(:last-of-type){
  margin: 0 0 30px;
}
.message_sign{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin: 25px 0 0;
}
.message_sign p{
  width: 298px;
  display: block;
}

.mvvExecutives-wrap{
  width: 100%;
  padding: 80px 0;
}
.mvvExecutives_title{
  font-size: 2.8125rem;
  font-weight: 900;
  text-align: center;
}
.mvvExecutives-inner{
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0;
}
.mvvExecutives{
  width: 100%;
  border-radius: 70px;
  background: #d2ebf5;
  margin: 0 0 60px;

  display: flex;
  justify-content: space-between;
  padding: 7%;
}
.mvvExecutives_ph{
  width: 42%;
  max-width: 360px;
}
.mvvExecutives_ph img{
  border-radius: 30px;
}
.mvvExecutives_contents{
  width: 53%;
  max-width: 450px;
}
.mvvExecutives_name{
  font-size: 0.9375rem;
  display: inline-block;
  margin: 50px 0 36px;
}
.mvvExecutives_name span{
  font-size: 1.375rem;
  margin-top: 4px;
}
.mvvExecutives_text{
  line-height: 2;
}

/* mvv end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* sustainability ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.initiatives-wrap{
  width: 100%;
  /* margin: 100px 0 120px; */
  margin: 100px 0 0;
  background: #d2ebf5;
  border-radius: 68px;
  padding: 70px 0 30px;
}

.initiatives-wrap > h2{
  font-size: 2.8125rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-align: center;
}
.initiatives-wrap > p{
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  margin: 20px 0 80px;
}

.initiatives-inner{
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
}
.initiatives{
  width: 100%;
  background: #fff;
  border-radius: 28px;
  padding: 4.6511% 6.7441% 9.7674%;
  margin: 0 0 80px;
}
.initiatives_head{
  width: 100%;
  padding: 0 0 24px;
  border-bottom: 1px solid #7db9cd;
  margin: 0 0 32px;
}
.initiatives_head p{
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #ff6700;
  text-align: center;
  margin: 0 0 15px;
}
.initiatives_head h3{
  font-size: 1.5rem;
  text-align: center;
}
.initiatives_contents{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
.initiatives_text{
  width: 54%;
  max-width: 400px;
  line-height: 2;
}
.initiatives_ph{
  width: 40.33%;
  max-width: 300px;
}
.initiatives_ph img{
  border-radius: 28px;
}

.logo_sdgs-wrap{
  width: 100%;
  padding: 100px 0;
}
.logo_sdgs-wrap a{
  width: 90%;
  max-width: 460px;
  margin: 0 auto;
  display: block;
}
/* sustainability end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* service ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.serviceIntro_table{
  width: 100%;
  max-width: 740px;
  margin: 20px auto 0;
  table-layout: fixed;
}
.serviceIntro_table th,
.serviceIntro_table td{
  border: 1px solid #c6c6c6;
  padding: 10px 15px;
  box-sizing: border-box;
  vertical-align: middle;
  text-align: center;
  background: #fff;
}
.serviceIntro_table thead th:nth-child(1){
  width: 100px;
}
.serviceIntro_table thead th:nth-child(2){
  background: #b4c8dc;
}
.serviceIntro_table tbody td:nth-child(2){
  background: #eaf0f6;
}
.serviceIntro_table tbody tr:last-of-type td:nth-child(2){
  font-weight: 700;
}

.serviceCat-wrap{
  width: 100%;
  padding: 56px 0 170px;
}
.serviceCat-wrap h2{
  font-size: 2.8125rem;
  font-weight: 900;
  text-align: center;
  margin: 0 0 36px;
}
.serviceCat-inner{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.serviceCat{
  width: 48%;
  padding: 10px 10px 110px;
  background: #d2ebf5;
  border-radius: 30px;
  position: relative;
}
.serviceCat img{
  border-radius: 28px 28px 0 0;
  margin: 0 0 34px;
}
.serviceCat_contents{
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.serviceCat_contents h3{
  font-size: 1.625rem;
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  background: #ff6700;
  padding: 0 15px;
  box-sizing: border-box;
  border-radius: 30px;
  margin: 0 0 28px;
}
.serviceCat_contents p{
  line-height: 2;
}
.serviceCat .btn_more{
  width: 300px;
  height: 80px;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 17px;
  border-color: #7db9cd;
  padding: 0 90px 0 25px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
}
.serviceCat .btn_more .arrow{
  position: absolute;
  right: 26px;
}
.serviceCat .btn_more .arrow::before{
  width: 26px;
  height: 4px;
  background-color: #7db9cd;
  transition: .3s;
}
.serviceCat .btn_more .arrow::after{
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 22px solid #7db9cd;
  transition: .3s;
}
.serviceCat .btn_more:hover{
  background: #7db9cd;
  color: #fff;
}
.serviceCat .btn_more:hover .arrow::before{
  background-color: #fff;
}
.serviceCat .btn_more:hover .arrow::after{
  border-left: 22px solid #fff;
}

.serviceContents-wrap{
  width: 100%;
  background: #eff3f4;
  padding: 70px 0 90px;
}
.serviceContents-wrap > h2{
  font-size: 2.8125rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: .15em;
}
.serviceContents-wrap > p{
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  margin: 30px 0 90px;
}
.serviceContents-inner{
  width: 100%;
  /* max-width: 1280px;
  margin: 0 auto; */
}
.serviceContents{
  width: 100%;
  display: flex;
  margin: 0 0 120px;
}
.serviceContents:nth-child(even){
  flex-direction: row-reverse;
}

.serviceContents_image{
  width: 50%;
  /* max-width: 640px; */
  margin-right: 60px;
  position: relative;
}
.serviceContents:nth-child(even) .serviceContents_image{
  margin-right: 0;
  margin-left: 60px;
}

.serviceContents_image img{
  border-radius: 0 65px 65px 0;
}
.serviceContents:nth-child(even) .serviceContents_image img{
  border-radius: 65px 0 0 65px;
}

.serviceContents_area{
  width: 20.32%;
  max-width: 130px;
  position: absolute;
  right: 32px;
  top: 32px;
}
.serviceContents:nth-child(even) .serviceContents_area{
  right: auto;
  left: 32px;
}

.serviceContents_text{
  width: calc( 50% - 90px );
  max-width: 450px;
}
.serviceContents_text_l{
  max-width: 520px;
}

.serviceContents_text_l-inner{
  padding-right: 70px;
}
.serviceContents:nth-child(even) .serviceContents_text_l-inner{
  padding-right: 0;
  padding-left: 70px;
}

.serviceContents_text h3{
  /* font-size: 2.1875rem; */
  font-size: min(2.734375vw, 35px);
  font-weight: 900;
  color: #fff;
  display: table;
  background: #ff6700;
  letter-spacing: .1em;
  padding: 9px 25px;
}
.serviceContents_text_l h3,
h3.serviceContents_title_2line{
  background: transparent;
  padding: 0;
}
.serviceContents_text_l h3 span,
h3.serviceContents_title_2line span{
  /* display: inline-block; */
  display: table;
  background: #ff6700;
  padding: 9px 25px;
}
.serviceContents_text_l h3 span:not(:last-of-type),
h3.serviceContents_title_2line span:not(:last-of-type){
  margin: 0 0 15px;
}

.serviceContents_text p{
  line-height: 2;
}
.serviceContents_margin{
  margin: 16px 0 38px;
}

.serviceContents_text h4{
  color: #ff6700;
  margin: 0 0 8px;
}
.serviceContents_text ul li{
  padding-left: 1em;
  position: relative;
}
.serviceContents_text ul li::before{
  content: "\30FB";
  position: absolute;
  left: 0;
  top: 0;
}
.serviceContents_text ul li:not(:last-of-type){
  margin: 0 0 10px;
}

.serviceContents_wh{
  margin: 1em 0 0;
}

.serviceInfo-wrap{
  width: 100%;
  padding: 80px 0 120px;
}
.serviceInfo{
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
.serviceInfo:not(:last-of-type){
  margin-bottom: 110px;
}
.serviceInfo h2,
.serviceInfo h3{
  font-size: 2.8125rem;
  font-weight: 900;
  text-align: center;
}
.serviceInfo p{
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin: 35px 0;
}
.serviceInfo a{
  width: 100%;
  display: block;
}
/* service end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* pc ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pcContents-wrap{
  margin: 120px 0 40px;
}

.serviceFlow-wrap{
  width: 100%;
  padding: 80px 0 60px;
}
.serviceFlow-wrap h2{
  font-size: 2.8125rem;
  font-weight: 900;
  text-align: center;
  margin: 0 0 50px;
}
/* .serviceFlow-wrap > p{
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  margin: 30px 0 60px;
} */

.serviceFlow-inner{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.serviceFlow_box{
  width: 100%;
  padding: 7% 10%;
  display: flex;
  justify-content: space-between;
  background: #d2ebf5;
  border-radius: 70px;
}
.serviceFlow{
  width: calc( 50% - 30px );
}
.serviceFlow dl{
  display: flex;
  flex-wrap: wrap;
}
.serviceFlow dl dt,
.serviceFlow dl dd{
  font-size: 1.25rem;
  box-sizing: border-box;
}
.serviceFlow dl dt{
  /* padding-right: 32px; */
  width: 90px;
  border-right: 6px solid #7db9cd;
  position: relative;
}
.serviceFlow dl dt:last-of-type{
  border-color: transparent;
}
.serviceFlow dl dt::after{
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid #7db9cd;
  box-sizing: border-box;
  position: absolute;
  right: -18px;
  top: 0;
}

.serviceFlow dl dd{
  width: calc( 100% - 90px );
  padding-left: 32px;

}
.serviceFlow dl dd:not(:last-of-type){
  padding-bottom: 35px;
}

.serviceFlow p{
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75;
  margin: 30px 0 0;
}

.serviceFlow_ph{
  width: 50%;
}
.serviceFlow_ph img{
  border-radius: 30px;
}

.serviceRec-wrap{
  width: 100%;
  padding: 80px 0;
  margin: 0 0 100px;
}

.serviceRec-wrap > p{
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 60px;
}

.serviceRec-inner{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.serviceRec_list{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 0 60px;
}
.serviceRec_list li{
  width: 31%;
  min-height: 150px;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #d2ebf5;
  border-radius: 30px;
  padding: 20px;
  box-sizing: border-box;
}

.serviceRec_comment-wrap{
  width: 100%;
}
.serviceRec_comment{
  width: 100%;
  min-height: 150px;
  border: 1px solid #7db9cd;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 16px 50px 16px 212px;
  background-size: 192px;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.serviceRec_comment:nth-child(1){
  background-image: url(assets/images/service/pc/rec_ill01.png);
}
.serviceRec_comment:nth-child(2){
  background-image: url(assets/images/service/pc/rec_ill02.png);
}
.serviceRec_comment:nth-child(3){
  background-image: url(assets/images/service/pc/rec_ill03.png);
}
.serviceRec_comment:not(:last-of-type){
  margin: 0 0 30px;
}
.serviceRec_comment p{
  line-height: 2;
}
/* pc end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* outseide ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.serviceFlow_title{
  width: 100%;
  max-width: 280px;
  font-size: 1.25rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  background: #ff6700;
  margin: 0 0 20px;
  padding: 5px 10px;
}
/* outseide end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* recruit ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.recruit_about-bf{
  /* padding: 80px 0 0; */
  padding: 80px 0;
}
.recruit_about-bf .title h2{
  font-size: 3.5rem;
}
.recruit_about-bf .pageIntro-inner{
  margin: 50px auto 0;
}


.recruit_intro{
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  padding: 96px 0 80px;
}

.slideRecruit-wrap{
  width: 100%;
  height: 300px;
  background: #efefef;
}

/* .recruitScroll-wrap{
  padding: 50px 0;
} */
/* .recruitScroll{
  overflow: hidden;
  width: 100%;
}
.recruitScroll__track{
  display: flex;
  width: max-content;
  animation: recruitScroll 30s linear infinite;
}
.recruitScroll__track img {
  width: 300px;
  height: auto;
  flex-shrink: 0;
  display: block;
  border-radius: 24px;
  padding: 0 2px;
}
@keyframes recruitScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
} */

.recruitScroll {
  width: 100%;
  overflow: hidden;
}
.recruitScroll-inner {
  display: flex;
  gap: 4px;
  animation: scroll var(--duration) linear infinite;
}
.recruitScroll-inner img {
  width: 300px;
  height: auto;
  border-radius: 24px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--scroll-width));
  }
}

.recruitType-wrap{
  width: 100%;
  padding: 84px 0 176px;
}
.recruitType-inner{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.recruitType{
  width: 48%;
  padding: 10px 10px 90px;
  background: #d2ebf5;
  border-radius: 34px;
  position: relative;
}
.recruitType img{
  border-radius: 28px 28px 0 0;
}
.recruitType_desc{
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  margin: 35px 0 22px;
}

.recruitType_contents{
  padding: 0 8.69%;
}
.recruitType_title{
  width: 100%;
  background: #ff6700;
  border-radius: 50px;
  padding: 24px 10px;
}
.recruitType_title p{
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin: 0 0 5px;
}
.recruitType_title h3{
  line-height: 1;
  color: #fff;
  text-align: center;
}
.recruitType_text{
  line-height: 2;
  margin: 18px 0 35px;
}
.recruitType_contents h4{
  margin: 0 0 8px;
}
.recruitType_contents ul li{
  padding-left: 1em;
  position: relative;
}
.recruitType_contents ul li::before{
  content: "\30FB";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.recruitType_contents ul li:not(:last-of-type){
  margin-bottom: 8px;
}

.recruitType .btn_more{
  width: 300px;
  min-height: 80px;
  display: flex;
  align-items: center;
  border-color: #7db9cd;
  box-sizing: border-box;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 15px 85px 15px 30px;
  border-radius: 18px;
}
.recruitType .btn_more .arrow{
  position: absolute;
  right: 25px;
}
.recruitType .btn_more .arrow::before{
  width: 26px;
  height: 4px;
  background-color: #7db9cd;
  transition: .3s;
}
.recruitType .btn_more .arrow::after{
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 22px solid #7db9cd;
  transition: .3s;
}
.recruitType .btn_more:hover{
  background: #7db9cd;
  color: #fff;
}
.recruitType .btn_more:hover .arrow::before{
  background-color: #fff;
}
.recruitType .btn_more:hover .arrow::after{
  border-left: 22px solid #fff;
}

.recruitType_ill{
  width: 94px;
  position: absolute;
  z-index: 1;
}
.recruitType_staff_ill{
  bottom: 66px;
  right: 36px;
}
.recruitType_member_ill{
  bottom: 68px;
  right: 44px;
}
/* recruit end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* staff ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.staffProblems_text{
  max-width: 740px;
  line-height: 2;
  margin: 30px auto 0;
}

.staffIntro-info_image{
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #b3b3b3;
}

.jobType-wrap{
  width: 100%;
  background: #d2ebf5;
  padding: 70px 0 80px;
  border-radius: 70px;
  margin: 0 0 50px;
}
.jobType-wrap > h2{
  font-size: 2.8125rem;
  font-weight: 900;
  text-align: center;
  margin: 0 0 35px;
}
.jobType-inner{
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
}
.jobType{
  width: 100%;
  border-radius: 30px;
  background: #fff;
  margin: 0 0 50px;
}
.jobType > h3{
  font-size: 2.1875rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  background: #7db9cd;
  padding: 33px 20px;
  letter-spacing: .15em;
  border-radius: 30px 30px 0 0;
}
.jobType_contents{
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 6% 7.2% 7.2%;
}

.jobType_text{
  width: 52.18%;
  max-width: 384px;
}
.jobType_text h4{
  font-weight: 500;
  margin: 0 0 8px;
}
.jobType_text ul li{
  padding-left: 1em;
  position: relative;
}
.jobType_text ul li::before{
  content: "\30FB";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.jobType_text ul li:not(:last-of-type){
  margin: 0 0 8px;
}
.jobType_text p{
  line-height: 2;
  margin: 0 0 1em;
}

.jobType_ph{
  width: 40.76%;
  max-width: 300px;
}
.jobType_ph img{
  border-radius: 24px;
}

.staffInfo-wrap{
  width: 100%;
  padding: 80px 0;
  margin: 0 0 80px;
}
.staffInfo-inner{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.staffInfo_box{
  width: 100%;
  background: #eff3f4;
  border-radius: 70px;
  padding: 60px 120px 100px;
  position: relative;
}
.staffInfo_box:not(:last-of-type){
  margin: 0 0 50px;
}
.staffInfo_box > h2{
  font-size: 2.8125rem;
  font-weight: 900;
  text-align: center;
  margin: 0 0 50px;
}
.staffInfo_contents{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.staffInfo{
  width: 48%;
  max-width: 360px;
}
.staffInfo h3{
  width: 100%;
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: #ff6700;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  line-height: 1.6666;
}
.staffInfo_event .staffInfo h3{
  background: #7db9cd;
  min-height: auto;
  padding: 6px;
  box-sizing: border-box;
}

.staffInfo p{
  line-height: 2;
  margin: 20px 0;
}

.staffInfo img{
  border-radius: 24px;
}

.staffInfo_ill{
  position: absolute;
}
.staffInfo_benefits .staffInfo_ill{
  width: 142px;
  bottom: -18px;
  right: -64px;
}
.staffInfo_event .staffInfo_ill{
  width: 170px;
  bottom: -42px;
  left: -74px;
}

.staffInfoTable-wrap{
  width: 100%;
  background: #d2ebf5;
  border-radius: 70px;
  padding: 70px 0 134px;
}
.staffInfoTable-wrap > h2{
  font-size: 2.8125rem;
  font-weight: 900;
  text-align: center;
  margin: 0 0 35px;
}
.staffInfoTable-inner{
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
}
.staffInfoTable-inner > h3{
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7db9cd;
  border-radius: 30px 30px 0 0;
  font-size: 1.5rem;
  color: #fff;
}
.staffInfoTable{
  width: 100%;
  padding: 20px 40px 50px;
  background: #fff;
  border-radius: 0 0 30px 30px;
}
.staffInfoTable table{
  width: 100%;
}
.staffInfoTable table th,
.staffInfoTable table td{
  line-height: 2;
  padding: 15px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #7db9cd;
}
.staffInfoTable table th{
  width: 150px;
  padding-left: 25px;
  text-align: left;
  color: #7db9cd;
  vertical-align: top;
}
.staffInfoTable table td{
  width: calc( 100% - 150px );
  padding-right: 15px;
}
.staffInfoTable table tr:last-of-type th,
.staffInfoTable table tr:last-of-type td{
  border-bottom: none;
}
.staffInfoTable table th span,
.staffInfoTable table td span{
  display: block;
}

.staffBnr-wrap{
  width: 100%;
  padding: 100px 0;
}
.staffBnr-wrap p{
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
}
.staffBnr-wrap a{
  width: 90%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
}
#engage-contributions-widget-wrapper{
  margin: 0 auto;
}
/* staff end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* member ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.memberTimeSchedule-wrap{
  width: 100%;
  padding: 20px 0 60px;
}
.memberTimeSchedule-wrap > h2{
  font-size: 2.8125rem;
  font-weight: 900;
  text-align: center;
  margin: 0 0 35px;
}
.memberTimeSchedule-inner{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.memberTimeSchedule{
  width: 48%;
  background: #d2ebf5;
  border-radius: 26px;
  padding: 4.6% 3% 6.5%;
  position: relative;
}
.memberTimeSchedule h3{
  font-size: 1.5rem;
  font-weight: 700;
  width: 100%;
  display: block;
  background: #7db9cd;
  border-radius: 30px;
  padding: 6px;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  margin: 0 0 46px;
}

.inside_ill{
  width: 49.6%;
  max-width: 238px;
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  margin: auto;
}
.outside_ill{
  width: 51%;
  max-width: 244px;
  position: absolute;
  bottom: 45px;
  right: 36px;
}


.memberTimeSchedule dl{
  display: flex;
  flex-wrap: wrap;
}
.memberTimeSchedule dl dt,
.memberTimeSchedule dl dd{
  font-size: 1.25rem;
  box-sizing: border-box;
}
.memberTimeSchedule dl dt{
  /* padding-right: 32px; */
  width: 90px;
  border-right: 6px solid #7db9cd;
  position: relative;
}
.memberTimeSchedule dl dt:last-of-type{
  border-color: transparent;
}
.memberTimeSchedule dl dt::after{
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid #7db9cd;
  box-sizing: border-box;
  position: absolute;
  right: -18px;
  top: 0;
}

.memberTimeSchedule dl dd{
  width: calc( 100% - 90px );
  padding-left: 32px;

}
.memberTimeSchedule dl dd:not(:last-of-type){
  padding-bottom: 35px;
}

.memberFlow-wrap{
  width: 100%;
  margin: 0 0 100px;
}
.memberFlow-inner{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.memberFlow_box-wrap{
  width: 100%;
  padding: 6% 7% 7%;
  background: #d2ebf5;
  border-radius: 70px;
}
.memberFlow_box-wrap > h2,
.memberFlow_box-wrap > h4{
  font-size: 2.8125rem;
  text-align: center;
}
.memberFlow_box-wrap > p{
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin: 15px 0 60px;
}
.memberFlow_box{
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 20px 27px;
  border-radius: 30px;
  position: relative;
}
.memberFlow_box:not(:last-of-type){
  margin-bottom: 40px;
}
.memberFlow_box:not(:last-of-type)::after{
  content: "";
  display: block;
  width: 50px;
  height: 24px;
  background-image: url(assets/images/recruit/member/arrow.png);
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  margin: auto;
}

.memberFlow_num{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.memberFlow_num p{
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  width: 114px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 30px;
  line-height: 1;
}

.memberFlow_num1{
  background-color: #7db9cd;
}
.memberFlow_num1 p{
  color: #7db9cd;
}
.memberFlow_num2{
  background-color: #5993be;
}
.memberFlow_num2 p{
  color: #5993be;
}
.memberFlow_num3{
  background-color: #5993be;
}
.memberFlow_num3 p{
  color: #5993be;
}
.memberFlow_num4{
  background-color: #407cb6;
}
.memberFlow_num4 p{
  color: #407cb6;
}
.memberFlow_num5{
  background-color: #2f6eb2;
}
.memberFlow_num5 p{
  color: #2f6eb2;
}
.memberFlow_num6{
  background-color: #115fad;
}
.memberFlow_num6 p{
  color: #115fad;
}

.memberFlow_num p span{
  font-size: 1.5625rem;
  margin-left: 5px;
}

.memberFlow_num h3,
.memberFlow_num h5{
  font-size: 1.25rem;
  color: #fff;
  margin-top: 5px;
  text-align: center;
}

.memberFlow_box > p{
  width: calc( 100% - 150px );
  display: block;
  padding: 0 10px 0 24px;
  box-sizing: border-box;
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 700;
}

.service_creative_priceList{
  width: 100%;
  max-width: 640px;
  margin: 75px auto 0;
  background: #fff;
}
.service_creative_priceList caption{
  font-family: "Inter", sans-serif;
  font-size: 1.875rem;
  letter-spacing: .1em;
  color: #fff;
  padding: 10px 15px;
  background: #7db9cd;
}

.service_creative_priceList th,
.service_creative_priceList td{
  font-size: 1.25rem;
  font-weight: 500;
}
.service_creative_priceList th{
  width: calc(100% - 200px);
  text-align: left;
  padding: 13px 0 13px 35px;
}
.service_creative_priceList td{
  width: 200px;
  text-align: center;
}
.service_creative_priceList tr:not(:last-of-type) th,
.service_creative_priceList tr:not(:last-of-type) td{
  border-bottom: 1px solid #b3b3b3;
}
.service_creative_priceList tr:nth-child(even) th,
.service_creative_priceList tr:nth-child(even) td{
  background: #eff3f4;
}
/* member end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* locations ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.locations-wrap{
  width: 100%;
  padding: 100px 0 140px;
  background: #d2ebf5;
}
.locations-inner{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.locations{
  width: 100%;
  background: #fff;
  border-radius: 30px;
  position: relative;
}
.locations:not(:last-of-type){
  margin: 0 0 140px;
}
.locations_head{
  position: relative;
}
.locations_head h2{
  width: 100%;
  height: 120px;
  position: relative;
  padding: 0 150px;
  box-sizing: border-box;
  border-radius: 30px 30px 0 0;
  background: #7db9cd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1875rem;
  font-weight: 900;
  color: #fff;
}
.locations_head p{
  width: 160px;
  height: 160px;
  font-size: 2.1875rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 5;
  top: -20px;
  left: -30px;
  border-radius: 50%;
  background: #ff6700;
}
.locations_contents{
  padding: 5% 5% 80px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.locations_info{
  width: 53%;
  max-width: 472px;
}
.locations_info dt,
.locations_info dd{
  margin: 0 0 7px;
}
.locations_info dt{
  line-height: 1;
  color: #7db9cd;
  font-weight: 700;
}
.locations_info dt::before{
  content: "[";
  display: inline-block;
  padding-right: .5em;
}
.locations_info dt::after{
  content: "]";
  display: inline-block;
  padding-left: .5em;
}
.locations_info dd{
  line-height: 2;
}
.locations_info p{
  line-height: 2;
  margin: 30px 0 0;
}

.locationsImage-wrap{
  width: 43%;
  max-width: 380px;
}
.locations_ph{
  width: 100%;
}
.locations_ph img{
  border-radius: 30px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.locations_ph img.fade-out {
  opacity: 0;
}
.locations_ph_thumb-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0;
}
.locations_ph_thumb{
  width: 24%;
  background: #000;
}
.locations_ph_thumb img{
  opacity: .5;
}
.locations_ph_thumb.current{
  pointer-events: none;
}
.locations_ph_thumb.current img{
  opacity: 1;
}


.locations .btn_more{
  width: 300px;
  min-height: 80px;
  display: flex;
  align-items: center;
  border-color: #7db9cd;
  box-sizing: border-box;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 15px 85px 15px 30px;
  border-radius: 18px;
}
.locations .btn_more .arrow{
  position: absolute;
  right: 25px;
}
.locations .btn_more .arrow::before{
  width: 26px;
  height: 4px;
  background-color: #7db9cd;
  transition: .3s;
}
.locations .btn_more .arrow::after{
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 22px solid #7db9cd;
  transition: .3s;
}
.locations .btn_more:hover{
  background: #7db9cd;
  color: #fff;
}
.locations .btn_more:hover .arrow::before{
  background-color: #fff;
}
.locations .btn_more:hover .arrow::after{
  border-left: 22px solid #fff;
}


/* locations end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* location ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.locationInfo-wrap{
  width: 100%;
  padding: 100px 0 0;
}
.locationInfo-inner{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 125px;
}
.locationInfo{
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin: 0 0 90px;
}
.locationInfo_contents{
  width: 45%;
}
.locationInfo_contents dl{
  margin: 0 0 32px;
}
.locationInfo_contents dt{
  line-height: 1;
  color: #7db9cd;
  font-weight: 700;
  margin: 0 0 6px;
}
.locationInfo_contents dt::before{
  content: "[";
  display: inline-block;
  padding-right: .5em;
}
.locationInfo_contents dt::after{
  content: "]";
  display: inline-block;
  padding-left: .5em;
}
.locationInfo_contents dd{
  line-height: 2;
}
.locationInfo_contents dd:not(:last-of-type){
  margin: 0 0 38px;
}
.locationInfo_contents p{
  line-height: 2;
  margin: 30px 0 0;
}

.locationInfo_ph{
  width: 50%;
  max-width: 498px;
}
.locationInfo_ph img{
  border-radius: 30px;
}

.gmap_locationInfo_title{
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 12px;
}
.gmap_locationInfo{
  /* width: 1000px; */
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.gmap_locationInfo iframe{
  border-radius: 30px;
}

.locationSlide-wrap{
  width: 100%;
  background: #d2ebf5;
  padding: 96px 0 100px;
  border-radius: 0 0 70px 70px;
}
.locationSlide-inner{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 45px 0 45px;
  position: relative;
}
.locationSlide-inner .swiper-slide img{
  border-radius: 20px;
}

.locationSlide-wrap > h2{
  font-size: 1.5rem;
  text-align: center;
}

.locationActivity-wrap{
  width: 100%;
  padding: 100px 0;
}
.locationActivity-wrap > h2{
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 58px;
}
.locationActivity{
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sannoActivity{
  max-width: 900px;
}
.omachiActivity{
  max-width: 600px;
}
.locationActivity li{
  width: 260px;
  padding: 0 20px;
  margin: 0 0 40px;
}
.sannoActivity li:nth-child(1){
  margin-left: 5px;
}
.sannoActivity li:nth-child(2){
  margin-right: 5px
}
.bnr_litalico{
  width: 90%;
  max-width: 460px;
  margin: 10px auto 0;
  display: block;
}
/* location end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* qa ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.qa-wrap{
  width: 100%;
  padding: 96px 0 140px;
  background: #d2ebf5;
}
.qa-inner{
  width: 90%;
  max-width: 840px;
  margin: 0 auto;
}
.qa{
  width: 100%;
}
.qa dt{
  font-size: 1.125rem;
  color: #fff;
  background: #7db9cd;
  border-radius: 13px;
  /* padding: 18px 30px 18px 50px; */
  padding: 18px 50px 18px 50px;
  box-sizing: border-box;
  margin: 20px 0 0;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.qa dt::before{
  content: "Q.";
  display: block;
  position: absolute;
  left: 26px;
  top: 18px;
}
.qa dt::after{
  content: "";
  display: block;
  border-style: solid;
  border-width: 14px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  right: 28px;
  transition: .3s;
}
.qa dt.active::after{
  transform: rotate(180deg);
}

.qa dd {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;

  line-height: 2;
  background: #fff;

  box-sizing: border-box;
  border-radius: 13px;
}
.qa dd span,
.qa dd div{
  padding: 35px 50px;
  display: block;
}

.qa dd div table{
  width: 100%;
  table-layout: fixed;
  margin: 20px 0 0;
}
.qa dd div table th,
.qa dd div table td{
  border: 1px solid #c6c6c6;
  padding: 10px 15px;
  box-sizing: border-box;
  vertical-align: middle;
  /* text-align: center; */
}
.qa dd div table th{
  text-align: left;
  background: #7db9cd;
  color: #fff;
}
.qa dd div table th:nth-child(1){
  width: 380px;
}

/* qa end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* report ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.report-wrap{
  width: 100%;
  background: #d2ebf5;
  padding: 116px 0 140px;
}
.report-inner{
  width: 90%;
  max-width: 840px;
  margin: 0 auto;
}
.report_link{
  width: 100%;
  display: flex;
  align-items: center;
  border: 2px solid #7db9cd;
  border-radius: 11px;
  background: #fff;

  padding: 13px 0;
  padding-right: 95px;
  box-sizing: border-box;

  font-size: 1.125rem;
  line-height: 1.8888;

  position: relative;
  transition: .3s;
}
.report_link:not(:last-of-type){
  margin: 0 0 20px;
}
.report_link:hover{
  opacity: .7;
}

.report_link span{
  box-sizing: border-box;
}
.report_date{
  color: #7db9cd;
  width: 150px;
  padding-left: 30px;
}
.report_title{
  width: calc( 100% - 150px );
}

.report_link .arrow{
  position: absolute;
  right: 28px;
}
.report_link .arrow::before{
  width: 22px;
  height: 3px;
  background-color: #7db9cd;
  transition: .3s;
}
.report_link .arrow::after{
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 20px solid #7db9cd;
  transition: .3s;
}
/* report end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* news list ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pageNewsList-wrap{
  width: 100%;
  padding: 90px 0 85px;
}
.pageNewsList-wrap .topNews_list{
  width: 90%;
  max-width: 916px;
  margin: 0 auto;
}
.pageNewsList-wrap .topNews_list .topNews_box{
  margin: 0 0 35px;
}

.archive_pagination{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.archive_pagination .nav-links{
  display: flex;
  justify-content: center;
}
.page-numbers{
  padding: 0 23px;
  border-left: 1px solid #000;
  line-height: 1;
  margin: 0 0 15px;
}
.dots.page-numbers{
  padding: 0 15px;
}
.prev.page-numbers,
.next.page-numbers{
  border-left: none;
  padding: 0;
}
.page-numbers:first-child,
.prev.page-numbers + .page-numbers{
  border-left: none;
}
/* news list end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* news detail ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.newsDetail_cat{
  font-size: 0.875rem;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  letter-spacing: .15em;
  padding: 0 15px;
}
.newsDetail_date{
  font-size: 0.9375rem;
  color: #fff;
  margin: 14px 0 4px;
}
h1.newsDetail_title{
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
}

.newsDetail-wrap{
  padding: 100px 0 96px;
}
.newsDetail-inner{
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.newsDetail_image{
  width: 100%;
}
.newsDetail_contents{
  /* padding: 27px 0 42px; */
  padding: 0 0 42px;
}
.newsDetail_contents p{
  line-height: 2;
  margin: 0 0 30px;
}
.newsDetail_contents iframe{
  max-width: none;
  max-height: none;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.newsDetail-wrap .btn_more{
  width: 300px;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 0 0 120px;
  box-sizing: border-box;
  margin: 0 auto;
  border-color: #7db9cd;
  border-radius: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
.arrow_newsDetail{
  display: flex;
  align-items: center;
  position: absolute;
  left: 17px;
}
.arrow_newsDetail::before{
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 22px solid #000;
  transition: .3s;
}
.arrow_newsDetail::after{
  content: "";
  display: inline-block;
  width: 26px;
  height: 4px;
  background-color: #000;
  transition: .3s;
}
.newsDetail-wrap .btn_more:hover{
  background: #7db9cd;
}
.newsDetail-wrap .btn_more:hover .arrow_newsDetail::before{
  border-right: 22px solid #fff;
}
.newsDetail-wrap .btn_more:hover .arrow_newsDetail::after{
  background-color: #fff;
}

/* news detail end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* contact ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.contact-wrap{
  width: 100%;
  padding: 100px 0 134px;
}
.contact-tabs{
  width: 90%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.contact-tab {
  width: 50%;
  max-width: 500px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px 20px;
  box-sizing: border-box;
  background: #e6e6e6;
  color: #b3b3b3;
  border: none;
  border-radius: 30px 30px 0 0;
  font-size: 1.25rem;
  font-weight: 700;
}
.contact-tab.active {
  background: #d2ebf5;
  color: #000;
}
.contact-inner{
  width: 100%;
  padding: 85px 0 90px;
  background: #d2ebf5;
  border-radius: 0 0 70px 70px;
}
.contact-form {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.contact-form.active {
  display: block;
  opacity: 1;
}
.contact-form > p{
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  padding: 0 5%;
}
.contactForm-wrap{
  width: 90%;
  max-width: 840px;
  margin: 95px auto 0;
}

.contactForm_line{
  margin: 0 0 26px;
}
.contactForm_title{
  font-size: 1.125rem;
  margin-bottom: 7px;
}
.contactForm_title span{
  color: #ff6700;
}
.input-wrap input,
.input-wrap textarea{
  width: 100%;
  display: block;
  padding: 23px 15px;
  box-sizing: border-box;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

.contactForm_required{
  font-size: 1.125rem;
  color: #ff6700;
}
.contactForm_privacy{
  display: flex;
  align-items: center;
}
.contactForm_privacy .wpcf7-list-item{
  margin: 0;
}

.wpcf7-acceptance input[type="checkbox"] {
  appearance: none;
  width: 25px;
  height: 25px;
  border: 2px solid #000;
  border-radius: 0;
  background-color: #fff;
  cursor: pointer;
  margin-right: 8px;
}
.wpcf7-acceptance input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3Csvg%20fill%3D'black'%20viewBox%3D'0%200%2016%2016'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M6%2010.2L3.3%207.5%202.5%208.3%206%2011.8l7-7-0.8-0.8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem;
}

.contactForm_privacy p{
  font-size: 1.125rem;
}
.contactForm_privacy_text{
  font-size: 1.125rem;
  margin-top: 10px;
}
.contactForm_privacy_text a{
  color: #7db9cd;
}

.btn_send {
  margin-top: 100px;
}
.btn_send p{
  position: relative;
  display: table;
  margin: 0 auto;
}
.btn_send input{
  font-family: "Noto Sans JP", sans-serif;
  width: 400px;
  height: 100px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  border: 2px solid #7db9cd;
  background: #fff;
  font-size: 1.625rem;
  font-weight: 700;
  text-align: left;
  padding: 0 95px 0 40px;
  box-sizing: border-box;
  border-radius: 20px;
  color: #000;
  transition: .3s;
}

.contact_arrow{
  display: flex;
  align-items: center;
  position: absolute;
  top: 46px;
  right: 30px;
}
.contact_arrow::before{
  content: "";
  display: inline-block;
  width: 26px;
  height: 4px;
  background-color: #000;
  transition: .3s;
}
.contact_arrow::after{
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 22px solid #000;
  transition: .3s;
}

.form_send_note{
  width: 90%;
  margin: 25px auto 0;
  text-align: center;
  line-height: 2;
}
.form_send_note a{
  text-decoration: underline;
}
.grecaptcha-badge{
  display: none;
}
/* contact end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* for business ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.forBusiness_about-wrap{
  width: 100%;
  padding: 100px 0 150px;
}
.staffIntro-info{
  /* padding: 0 0 100px; */
  padding: 0;
}

.forBusiness_about-inner{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
  border-radius: 70px;
  background: #eff3f4;
  position: relative;
}
.staffIntro-info .forBusiness_about-inner{
  width: 100%;
  margin-top: 100px;
}

.forBusiness_about-inner > h2{
  font-size: 2.8125rem;
  font-weight: 900;
  text-align: center;
  margin: 0 0 55px;
}
.forBusiness_about_image{
  width: 90%;
  max-width: 640px;
  margin: 0 auto 70px;
}
.forBusiness_about_image img{
  border-radius: 30px;
}

.forBusiness_about_copy{
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.forBusiness_about_copy.spOnly{
  display: none;
}
.forBusiness_about_copy span{
  display: inline-block;
  background: linear-gradient(to right, #7feff2 0%, #004fe0 100%);
  /* padding: 9px 0 9px 26px; */
  padding: 9px 26px;
}
.forBusiness_about_copy span:not(:last-of-type){
  margin-bottom: 20px;
}
.forBusiness_about_text{
  line-height: 2;
  text-align: center;
  padding: 40px 0;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}
.forBusiness_about_box-wrap{
  width: 90%;
  max-width: 726px;
  margin: 0 auto;
  padding: 50px 0;

  display: flex;
  justify-content: space-between;
}
.forBusiness_about_box{
  width: 48.21%;
  max-width: 350px;
  background: #fff;
  border-radius: 18px;
  position: relative;

  padding: 25px;
}
.forBusiness_about_box h3{
  width: 280px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;

  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;

  position: absolute;
  left: 0;
  right: 0;
  top: -25px;
  margin: auto;
}
.forBusiness_about_box1 h3{
  background: #ff6700;
}
.forBusiness_about_box2 h3{
  background: #7db9cd;
}

.forBusiness_about_box_image{
  width: 100%;
  height: 195px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 1px solid #b3b3b3;
  box-sizing: border-box;
}
.forBusiness_about_box1 .forBusiness_about_box_image{
  padding: 0 0 15px;
}
.forBusiness_about_box2 .forBusiness_about_box_image{
  padding: 0 0 8px;
}
.forBusiness_about_box1 .forBusiness_about_box_image img{
  width: 69%;
  max-width: 206px;
}
.forBusiness_about_box2 .forBusiness_about_box_image img{
  width: 77%;
  max-width: 230px;
}

.forBusiness_about_box p{
  line-height: 2;
  padding: 12px 0 0;
}

.btn_forBusiness_about{
  width: 400px;
  height: 100px;
  padding: 0 95px 0 45px;
  box-sizing: border-box;
  border-radius: 23px;
  border-color: #7db9cd;

  display: flex;
  align-items: center;

  font-size: 1.625rem;
  font-weight: 700;

  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  margin: 0 auto;
}

.btn_forBusiness_about .arrow{
  position: absolute;
  right: 25px;
}
.btn_forBusiness_about .arrow::before{
  width: 26px;
  height: 4px;
  background-color: #7db9cd;
  transition: .3s;
}
.btn_forBusiness_about .arrow::after{
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 22px solid #7db9cd;
  transition: .3s;
}
.btn_forBusiness_about:hover{
  background: #7db9cd;
  color: #fff;
}
.btn_forBusiness_about:hover .arrow::before{
  background-color: #fff;
}
.btn_forBusiness_about:hover .arrow::after{
  border-left: 22px solid #fff;
}

.forBusiness_voice-wrap{
  width: 100%;
  background: #d2ebf5;
  padding: 70px 0 135px;
  border-radius: 68px;
  margin: 0 0 100px;
}
.forBusiness_voice-wrap > h2{
  font-size: 2.8125rem;
  font-weight: 900;
  text-align: center;
  margin: 0 0 148px;
}
.forBusiness_voice-inner{
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
}
.forBusiness_voice{
  width: 100%;
  background: #fff;
  padding: 96px 7% 46px;
  border-radius: 30px;
  border: 2px solid #7db9cd;
  position: relative;
}
.forBusiness_voice:not(:last-of-type){
  margin: 0 0 144px;
}
.forBusiness_voice_ph{
  width: 150px;
  position: absolute;
  top: -75px;
  left: 0;
  right: 0;
  margin: auto;
}
.forBusiness_voice_company,
.forBusiness_voice_name{
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6666;
  text-align: center;
  color: #7db9cd;
}
.forBusiness_voice_text{
  padding: 22px 0;
}
.forBusiness_voice_text p{
  line-height: 2;
}
.forBusiness_voice_text p:not(:last-of-type){
  margin: 0 0 30px;
}

.voice_bottom{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.voice_bottom_contents{
  width: 50%;
}
.forBusiness_voice h4{
  width: 280px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: #ff6700;
  margin: 0 0 26px;
}
.forBusiness_voice_list li{
  padding-left: 1em;
  position: relative;
  margin: 0 0 8px;
}
.forBusiness_voice_list li::before{
  content: "\30FB";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.voice_logo{
  width: 45%;
  max-width: 300px;
}

.forBusiness_service-wrap{
  width: 100%;
}
.title_forBusiness_service{
  font-size: 2.8125rem;
  color: #fff;
  background: #ff6700;
  padding: 10px 80px;
  border-radius: 50px;
  display: table;
  margin: 0 auto 100px;
}

.title_service_creative{
  margin: 0 0 100px;
}

.title_flow_design{
  margin: 0 0 60px;
}

.service_bpo-wrap{
  width: 100%;
  padding: 80px 0 100px;
  background: #eff3f4;
  border-radius: 0 0 70px 70px;
}
.service_bpo-wrap > h3,
.service_outside-wrap > h3{
  font-size: 2.8125rem;
  font-weight: 900;
  text-align: center;
}
.service_bpo-wrap > p{
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin: 25px 0 65px;
}
.service_bpo_price{
  width: 700px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff6700;
  border-radius: 50px;
  margin: 0 auto 95px;
}
.service_bpo_price dt,
.service_bpo_price dd{
  color: #fff;
}
.service_bpo_price dt{
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 1em;
}
.service_bpo_price dd{
  font-size: 2.1875rem;
  font-weight: 900;
}

.service_bpo_ex-wrap{
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 45px 45px;
  background: #fff;
  position: relative;
  border: 1px solid #7db9cd;
  border-radius: 30px;
}
.service_bpo_ex-wrap h4{
  width: 280px;
  height: 40px;
  background: #7db9cd;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}
.service_bpo_ex-inner{
  display: flex;
  justify-content: space-between;
}
.service_bpo_ex li{
  font-size: 1.25rem;
  padding-left: 1em;
  position: relative;
}
.service_bpo_ex li::before{
  content: "\30FB";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.service_bpo_ex li:not(:last-of-type){
  margin: 0 0 10px;
}
.service_bpo_ex:nth-child(1){
  width: 40%
}
.service_bpo_ex:nth-child(2){
  width: 57%
}

.service_outside-wrap{
  width: 100%;
  padding: 80px 0 100px;
}
.service_outside-inner{
  width: 90%;
  max-width: 1000px;
  margin: 80px auto 0;
  position: relative;

  padding: 90px 60px 100px;
  background: #eff3f4;
  border-radius: 70px;
}
.service_outside_copy{
  width: 600px;
  height: 60px;
  background: linear-gradient(to right, #7feff2 0%, #004fe0 100%);
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  margin: auto;

  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
}

.service_outside_contents{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 0 85px;
}
.service_outside_content{
  width: 32%;
  max-width: 260px;
}
.service_outside_num{
  font-family: "Inter", sans-serif;
  font-size: 3.125rem;
  font-weight: 700;
  color: #ff6700;
  text-align: center;
}
.service_outside_content img{
  margin: 6px 0 12px;
}
.service_outside_text{
  line-height: 2;
  text-align: center;
}

.service_outside_info-wrap{
  width: 100%;
  max-width: 726px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
}
.service_outside_info{
  width: 49%;
  max-width: 350px;
  position: relative;
  padding: 50px 25px 25px;
  background: #fff;
  border-radius: 20px;
}
.service_outside_info h4{
  width: 280px;
  height: 50px;
  background: #ff6700;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: auto;
}
.service_outside_info ul li{
  padding-left: 1em;
  position: relative;
}
.service_outside_info ul li::before{
  content: "\30FB";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.service_outside_info ul li:not(:last-of-type){
  margin: 0 0 10px;
}

.service_outside_info:nth-child(2){
  background-image: url(assets/images/for-business/outside_info_ill.png);
  background-size: 92px;
  background-position: right 25px bottom 25px;
  background-repeat: no-repeat;
}
.service_outside_info:nth-child(2) ul{
  padding-right: 100px;
}
/* for business end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* privacy ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pagePrivacy-wrap{
  width: 100%;
  padding: 80px 0;
}
.pagePrivacy-inner{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.pagePrivacy-inner p{
  line-height: 2;
  margin-bottom: 1em;
}
.pagePrivacy-inner p:first-of-type{
  margin-bottom: 50px;
}
.privacy_intro dt{
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.privacy_intro dd{
  line-height: 2;
  margin-bottom: 30px;
}
.pagePrivacy-inner h2{
  font-size: 1.5rem;
  margin: 50px 0 15px;
}
.pagePrivacy-inner h3{
  font-size: 1.125rem;
  margin: 30px 0 5px;
}
.pagePrivacy-inner li{
  line-height: 2;
  padding-left: 1em;
  position: relative;
}
.pagePrivacy-inner li::before{
  content: "\30FB";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.pagePrivacy-inner li:not(:last-of-type){
  margin: 0 0 10px;
}
.privacy_contact div{
  display: flex;
  flex-wrap: wrap;
}
.privacy_contact div:not(:last-of-type){
  margin: 0 0 10px;
}
.privacy_contact dt,
.privacy_contact dd{
  line-height: 2;
}
/* privacy end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


@media screen and (max-width: 1200px) {
  .header-inner{
    padding: 0 15px;
  }
}
@media screen and (max-width: 1160px) {
  .logo_footer{
    width: 210px;
    display: block;
  }
}
@media screen and (max-width: 1080px) {
  .navheader{
    margin: 0 15px;
  }

  .navheader li,
  .navheader li a{
    font-size: 14px;
  }
  .fontSize_change{
    width: 92px;
  }
  .fontSize_change li{
    width: 40px;
    font-size: 15px;
  }

  /* staff */
  .outside_ill{
    bottom: 10px;
    right: 10px;
  }
}

@media screen and (max-width: 1000px) {
  .br_u-1000{
    display: inline;
  }

  /* sp menu */
  .scroll-no{
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  .btn_spMenu {
    display: block;
  }
  .header_contents {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #7db9cd;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 0 150px;
    overflow-y: scroll;
  }
  .header_contents.active {
    opacity: 1;
    visibility: visible;
  }
  .navheader{
    width: 280px;
    height: auto;
    flex-direction: column;
    margin: 0 0 30px;
    padding: 30px 40px;
    border-radius: 48px;
  }

  .navheader li,
  .navheader li a{
    font-size: 1.25rem;
  }
  .navheader li{
    width: 100%;
    text-align: center;
    padding: 16px;
  }
  .navheader li:not(:last-of-type){
    border-bottom: 1px solid #7db9cd;
  }
  .fontSize p{
    font-size: .8125rem;
  }
  .fontSize_change{
    width: 144px;
  }
  .fontSize_change li{
    font-size: 1rem;
    width: 55px;
  }


  /* footer */
  #pagefooter{
    padding: 50px 0 20px;
  }
  .footer-inner{
    flex-direction: column-reverse;
    align-items: center;
  }
  .navfooter-wrap{
    width: 100%;
    justify-content: center;
  }
  .navFooter_block{
    width: 176px;
    padding-left: 15px;
  }
  .navFooter_block:first-of-type{
    width: 160px;
    border-left: none;
    padding-left: 0;
  }
  .navfooter a{
    font-size: 0.8125rem;
  }
  .footer_sns{
    margin-top: 30px;
  }
  .footer_sns li{
    width: 30px;
  }
  .footer_left{
    width: auto;
    margin-top: 30px;
  }
  .logo_footer{
    margin: 0 0 10px;
  }
  .footerCopy{
    margin-top: 0;
    text-align: center;
  }
  .btn_top{
    width: 43px;
    height: 43px;
    right: 20px;
    bottom: 20px;
  }

  /* top */
  .title_topNews {
    width: 250px;
    padding-left: 30px;
  }
  .topNews_list{
    width: calc(100% - 250px);
  }

  .topServiceLink{
    width: 48%;
  }
  .topServiceLink .btn_more{
    width: 240px;
  }

  /* mvv */
  .mvvValue-inner{
    padding: 50px 30px;
  }
  .mvvValue:nth-child(1){
    margin-left: 0;
  }
  .mvvValue:nth-child(2){
    margin-right: 0;
  }
  .mvvExecutives_name{
    margin: 0 0 36px;
  }

  /* recruit */
  .recruitType_desc{
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* staff */
  .staffInfo_box{
    padding: 60px 30px 100px;
  }
  .staffInfo_contents{
    max-width: 760px;
    margin: 0 auto;
  }
  .staffInfo_benefits .staffInfo_ill{
    width: 72px;
    bottom: -9px;
    right: -32px;
  }
  .staffInfo_event .staffInfo_ill{
    width: 85px;
    bottom: -21px;
    left: -37px;
  }

  /* member */
  .memberTimeSchedule{
    padding-bottom: 123px;
  }
}

@media screen and (max-width: 860px) {
  .mvvPhilosophy{
    padding: 8% 5%;
  }

  /* pc */
  .serviceContents_text_l h3 span,
  h3.serviceContents_title_2line span{
    padding: 9px 20px;
  }

  /* sanno */
  .sannoActivity li:nth-child(1){
    margin-left: 0;
  }
  .sannoActivity li:nth-child(2){
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  /* common */
  .title p{
    /* font-size: 2.625rem; */
    font-size: 2.25rem;
  }
  .title h2,
  .title h3{
    font-size: 1.125rem;
  }

  .copy_orange{
    font-size: min(8.3333vw, 50px);
    /* font-size: 8.3333vw; */
  }
  .copy_orange span:not(:last-of-type){
    margin-bottom: 0;
  }

  .pcOnly{
    display: none;
  }
  .spOnly{
    display: block;
  }
  .br_pcOnly{
    display: none;
  }
  .br_spOnly{
    display: inline;
  }
  /* common end */

  /* header */
  #pageheader{
    height: auto;
    padding: 10px 0;
  }
  .logo_header{
    width: 152px;
  }
  /* heaer end */

  /* top */
  .mv-wrap{
    padding: 78px 10px 20px;
    border-radius: 0 0 40px 40px;
  }
  .mv-wrap img{
    max-width: 340px;
  }
  .bnr_top-recruit{
    width: 100%;
    max-width: 340px;
    position: static;
    margin: 30px auto 0;
  }

  .topNews-wrap{
    padding: 70px 0 100px;
  }
  .topNews-inner{
    display: block;
    width: 90%;
    max-width: 360px;
    margin: 0 auto;
  }
  .title_topNews{
    width: auto;
    padding-left: 0;
  }
  .topNews_list{
    width: 100%;
    margin-top: 50px;
  }
  .topNews_box{
    width: 100%;
    max-width: none;
  }
  .topNews_box:not(:last-of-type){
    margin-bottom: 20px;
  }
  .topNews_contents{
    padding: 25px;
  }
  .topNews_btn_more-wrap{
    justify-content: center;
  }

  .topAbout-wrap{
    padding: 70px 0;
  }
  .topAbout-inner{
    display: block;
  }
  .topAbout_contents{
    width: 100%;
  }
  .topAbout_text{
    margin: 20px 0 25px;
  }
  .topAbout_contents .btn_more{
    margin: 0 auto;
  }
  .topAbout_logo{
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .logoScroll{
    margin: 0 0 50px;
  }
  .logoScroll__track img{
    width: 446px;
  }

  .topService-wrap{
    padding-left: 0;
  }
  .topService-inner{
    padding: 60px 0;
    padding-right: 0;
  }
  .topServiceContents{
    width: 90%;
    margin: 0 auto;
  }
  .topService_text{
    font-size: 1.125rem;
  }
  .topServiceLink-wrap{
    display: block;
    margin: 50px 0 70px;
  }
  .topServiceLink{
    width: 100%;
  }
  .topServiceLink:not(:last-child){
    margin-bottom: 62px;
  }
  .topServiceLink h3{
    font-size: 1.125rem;
  }
  .topServiceLink .btn_more{
    font-size: 1rem;
    /* width: 240px; */
    height: 64px;
    bottom: -32px;
  }
  .topServiceIcon{
    max-width: 400px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px auto 0;
  }
  .topServiceIcon li{
    width: 147px;
    padding: 12px;
  }
  .topServiceIcon li:nth-child(odd){
    padding-left: 0;
  }
  .topServiceIcon li:nth-child(even){
    padding-right: 0;
  }

  .companyLogo_scroll-wrap{
    padding: 30px 0;
  }
  .loopScroll__track img{
    width: 960px;
  }

  .topRecruit-wrap{
    padding-right: 0;
    margin: 0 0 70px;
  }
  .topRecruit-inner{
    padding: 60px 0 70px;
    padding-left: 0;
  }

  .topRecruitLink-wrap{
    display: block;
    margin: 50px 0 0;
  }
  .topRecruitLink{
    width: 100%;
  }
  .topRecruitLink:not(:last-of-type){
    margin: 0 0 30px;
  }
  .topRecruitLink a{
    padding: 30px 0 25px;
  }
  .topRecruitLink a h3{
    font-size: 1.125rem;
    margin: 0 0 15px;
  }
  .topRecruitLink a p{
    width: 180px;
    height: 76px;
    font-size: 0.875rem;
  }
  .topRecruitLink a p span{
    font-size: 1.375rem;
  }
  .topRecruitLink_arrow{
    margin: 30px 0 0;
  }
  .topRecruit_ill{
    width: 64px;
  }
  .topRecruit_ill_1 {
    bottom: -5px;
    left: -10px;
  }
  .topRecruit_ill_2{
    bottom: -2px;
    right: -10px;
  }

  .contactLink-wrap{
    background: #eff3f4;
    padding: 60px 0 70px;
    margin: 0 0 70px;
  }
  .contactLink-inner{
    display: block;
    margin-top: 48px;
  }
  .contactLink-inner a{
    width: 324px;
    height: 104px;
    min-height: auto;
    font-size: 1rem;
    padding: 0 64px;
    margin: 0 auto;
  }
  .contactLink-inner a::before{
    width: 42px;
    height: 42px;
    left: 12px;
  }
  .contactLink_arrow{
    right: 12px;
  }
  .contactLink-inner a:not(:last-of-type){
    margin-bottom: 16px;
  }
  /* top end */


  /* page common */
  .pageTitle-inner{
    height: 150px;
    padding-top: 0;
    border-radius: 0 0 50px 50px;
  }
  .pageTitle-inner h1{
    font-size: 1.3125rem;
  }
  .pageTitle-inner h1 span{
    font-size: 1.125rem;
  }
  /* page common end */


  /* about */
  .aboutLink-wrap{
    padding: 70px 0 40px;
  }
  .aboutLink-inner{
    flex-direction: column;
    align-items: center;
  }
  .aboutLink{
    width: 100%;
    max-width: 280px;
    height: 64px;
    font-size: 1rem;
    margin: 0 0 30px;
    border-radius: 18px;
    padding: 15px 75px 15px 24px;
  }
  .aboutLink .arrow{
    right: 20px;
  }
  /* about end */


  /* mvv */
  .mvv_visionMap-wrap{
    padding: 50px 0;
    border-radius: 0 0 20px 20px;
  }

  .mvvPhilosophy-wrap{
    padding: 50px 0 0;
  }
  .mvvPhilosophy{
    display: block;
    padding: 40px 20px 45px;
    border-radius: 30px;
    margin: 0 0 40px;
  }
  .mvvPhilosophy_top{
    width: 100%;
    max-width: none;
  }
  .mvvPhilosophy_bottom{
    width: 100%;
    max-width: none;
  }
  .mvvPhilosoph_title p{
    font-size: 2.875rem;
  }
  .mvvPhilosoph_title h3{
    font-size: 1.125rem;
  }
  .mvvPhilosophy_text{
    margin: 0 0 25px;
  }

  .mvvValue-wrap{
    margin: 50px 0;
  }
  .mvvValue-inner{
    width: 100%;
    border-radius: 30px;
  }
  .mvvValue:last-of-type{
    margin-bottom: 0;
  }

  .mvvCompany-wrap{
    padding: 50px 0 20px;
  }
  .mvvCompany-inner{
    padding: 0 0 50px;
    border: 0 0 50px 50px;
  }
  .mvvCompanyInfo{
    margin: 30px auto;
  }
  .mvvCompanyInfo th{
    width: 100px;
    padding-left: 10px;
  }
  .mvvCompanyInfo td{
    width: calc(100% - 100px);
    padding-left: 18px;
  }
  .gmap_companyInfo iframe{
    aspect-ratio: 8 / 5;
  }

  .mvvMessage-wrap{
    padding: 50px 0 20px;
  }
  .mvvMessage-inner{
    margin: 30px auto 0;
  }
  .mvvMessage_image{
    margin: 0 0 20px;
  }
  .message_sign p{
    width: 172px;
  }

  .mvvExecutives-wrap{
    padding: 50px 0 20px;
  }
  .mvvExecutives_title{
    font-size: 	1.875rem;
  }
  .mvvExecutives-inner{
    margin: 30px auto 0;
  }

  .mvvExecutives{
    display: block;
    padding: 50px 20px;
    border-radius: 30px;
    margin: 0 0 30px;
  }
  .mvvExecutives_ph,
  .mvvExecutives_contents{
    width: 100%;
    max-width: none;
  }
  .mvvExecutives_name{
    margin: 25px 0 15px;
  }
  /* mvv end */

  /* sustainability */
  .pageIntro-inner{
    margin: 50px auto 0;
  }
  .pageSustainabilityIntro h2{
    font-size: 1.75rem;
  }
  .pageIntro-inner{
    border-radius: 30px;
    padding: 40px 20px 50px;
  }
  .pageIntro-inner p{
    margin-top: 10px;
  }
  .pageIntro-inner img{
    margin-top: 20px;
  }

  .initiatives-wrap{
    margin: 50px 0 0;
    padding: 40px 0 20px;
    border-radius: 30px;
  }
  .initiatives-wrap > h2{
    font-size: 1.875rem;
  }
  .initiatives-wrap > p{
    margin: 15px 0 25px;
  }
  .initiatives{
    margin: 0 0 30px;
  }
  .initiatives_contents{
    flex-direction: column-reverse;
  }
  .initiatives_text,
  .initiatives_ph{
    width: 100%;
    max-width: none;
  }
  .initiatives_ph{
    margin-bottom: 22px;
  }

  .logo_sdgs-wrap{
    padding: 50px 0;
  }
  /* sustainability end */


  /* service */
  .pageIntro-inner h2,
  .pageIntro-inner h3{
    font-size: 1.875rem;
  }
  p.serviceIntro_text{
    margin-top: 30px;
  }
  .serviceIntro_table th,
  .serviceIntro_table td{
    font-size: .875rem;
    padding: 10px;
  }
  .serviceIntro_table thead th:nth-child(1){
    width: 65px;
    padding: 0;
  }
  .serviceIntro_table tbody th{
    padding: 0;
  }

  .serviceCat-wrap{
    padding: 56px 0 0;
  }
  .serviceCat-wrap h2{
    font-size: 1.875rem;
  }
  .serviceCat-inner{
    display: block;
  }
  .serviceCat{
    width: 100%;
    padding: 10px 10px 55px;
    margin: 0 0 80px;
  }
  .serviceCat img{
    margin: 0 0 20px;
  }
  .serviceCat_contents{
    max-width: none;
  }
  .serviceCat_contents h3{
    font-size: 1.125rem;
    width: 250px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
  }
  .serviceCat .btn_more{
    font-size: 1rem;
    width: 240px;
    height: 60px;
    bottom: -30px;
  }

  .serviceContents-wrap{
    padding: 40px 0 20px;
    border-radius: 30px;
  }
  .serviceContents-wrap > p{
    font-size: 1.125rem;
    margin: 30px 0 40px;
  }
  .serviceContents-wrap > h2{
    font-size: 1.875rem;
  }
  .serviceContents{
    display: block;
    margin: 0 0 50px;
  }
  .serviceContents_image{
    width: 95%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .serviceContents:nth-child(even) .serviceContents_image{
    margin-left: 5%;
  }
  .serviceContents_image img{
    border-radius: 0 30px 30px 0;
  }
  .serviceContents:nth-child(even) .serviceContents_image img{
    border-radius: 30px 0 0 30px;
  }
  .serviceContents_text h3{
    font-size: min(6.6667vw, 24px);
  }
  .serviceContents_text{
    width: 90%;
    max-width: none;
    margin: 0 auto;
  }
  .serviceContents_text_l-inner{
    padding-right: 0;
  }

  .serviceInfo-wrap{
    padding: 50px 0 70px;
  }
  .serviceInfo:not(:last-of-type) {
    margin-bottom: 80px;
  }
  .serviceInfo h2, .serviceInfo h3{
    font-size: 1.25rem;
  }
  .serviceInfo p{
    font-size: 1rem;
    line-height: 2;
    margin: 20px 0;
  }
  /* service end */


  /* pc */
  .pcContents-wrap{
    margin: 70px 0 20px;
  }
  .serviceFlow-wrap{
    padding: 50px 0 10px;
  }
  .serviceFlow-wrap h2{
    font-size: 1.875rem;
    margin: 0 0 35px;
  }
  .serviceFlow_box{
    display: block;
    padding: 50px 20px;
    border-radius: 30px;
  }
  .serviceFlow{
    width: 100%;
  }
  .serviceFlow dl dt{
    width: 80px;
  }
  .serviceFlow dl dd{
    width: calc( 100% - 80px );
  }
  .serviceFlow p{
    margin: 30px 0;
  }
  .serviceFlow_ph{
    width: 100%;
  }

  .serviceRec-wrap{
    padding: 50px 0;
    margin: 0 0 20px;
  }
  .serviceRec-wrap > p{
    font-size: 1.125rem;
    margin: 0 0 45px;
  }
  .serviceRec_list{
    flex-direction: column;
    align-items: center;
  }
  .serviceRec_list li{
    width: 280px;
    height: 100px;
    min-height: auto;
  }
  .serviceRec_list li:not(:last-of-type){
    margin-bottom: 30px;
  }

  .serviceRec_comment{
    padding: 180px 18px 22px 18px;
  }
  .serviceRec_comment:nth-child(1){
    background-position: calc(50% - 20px) 20px;
  }
  .serviceRec_comment:nth-child(2){
    background-position: calc(50% - 10px) 20px;
  }
  .serviceRec_comment:nth-child(3){
    background-position: calc(50% - 12px) 20px;
  }
  /* pc end */


  /* for business */
  .forBusiness_about-wrap{
    padding: 50px 0 80px;
  }
  .forBusiness_about-inner{
    border-radius: 30px;
    padding: 40px 0 30px;
  }
  .forBusiness_about-inner > h2{
    font-size: 1.3125rem;
    margin: 0 0 30px;
  }

  .forBusiness_about_copy{
    flex-direction: column;
  }

  .forBusiness_about_box-wrap{
    display: block;
  }
  .forBusiness_about-inner .forBusiness_about_box{
    width: 100%;
    max-width: none;
  }
  .forBusiness_about-inner .forBusiness_about_box:not(:last-of-type){
    margin-bottom: 54px;
  }
  .forBusiness_about_box h3{
    font-size: 1.125rem;
    width: 240px;
  }
  .btn_forBusiness_about{
    font-size: 1rem;
    width: 240px;
    height: 64px;
    bottom: -32px;
  }

  .forBusiness_voice-wrap{
    border-radius: 30px;
    padding: 50px 0;
    margin: 0 0 70px;
  }
  .forBusiness_voice-wrap > h2{
    font-size: 1.3125rem;
    margin: 0 0 100px;
  }

  .forBusiness_voice:not(:last-of-type):not(:last-of-type){
    margin: 0 0 110px;
  }

  .forBusiness_voice_company, .forBusiness_voice_name{
    font-size: 1.125rem;
    text-align: justify;
  }

  .voice_bottom{
    display: block;
  }
  .voice_bottom_contents{
    width: 100%;
  }
  .voice_logo{
    width: 100%;
    margin: 30px auto 0;
  }
  .forBusiness_voice h4{
    font-size: 1.125rem;
    width: 100%;
    height: auto;
    padding: 11px;
    box-sizing: border-box;
  }

  .title_forBusiness_service{
    font-size: 1.5rem;
    margin: 0 auto 50px;
  }
  .title_service_creative{
    margin: 0 0 50px;
  }

  .memberFlow-wrap{
    margin: 0 0 20px;
  }
  .memberFlow_box-wrap{
    padding: 50px 0;
    border-radius: 30px;
  }
  .memberFlow_box-wrap > h2,
  .memberFlow_box-wrap > h4{
    font-size: 1.3125rem;
  }
  .title_flow_design{
    margin: 0 0 30px;
  }
  .memberFlow_box{
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
  }
  .memberFlow_box > p{
    width: 100%;
    padding: 0;
    font-size: 1rem;
    padding: 10px 0;
  }

  .service_creative_priceList{
    width: 90%;
    margin: 54px auto 0;

  }
  .service_creative_priceList caption{
    font-size: 1.5rem;
  }

  .service_creative_priceList th,
  .service_creative_priceList td{
    font-size: 1rem;
    box-sizing: border-box;
  }

  .service_creative_priceList th{
    width: 180px;
    padding: 15px 0 15px 10px;
  }
  .service_creative_priceList td{
    width: calc(100% - 180px);
    text-align: right;
    padding: 15px 10px 15px 0;
  }

  .service_bpo-wrap{
    padding: 50px 0;
    border-radius: 0 0 30px 30px;
  }
  .service_bpo-wrap > h3,
  .service_outside-wrap > h3{
    font-size: 1.875rem;
  }
  .service_bpo-wrap > p{
    font-size: 1rem;
    width: 90%;
    margin: 25px auto 50px;
  }
  .service_bpo_price{
    flex-direction: column;
    width: 90%;
    height: 94px;
    margin: 0 auto 50px;
  }
  .service_bpo_price dt{
    font-size: 1.125rem;
  }
  .service_bpo_price dd{
    font-size: 1.5rem;
  }
  .service_bpo_ex-wrap{
    padding: 35px 20px 15px;
  }
  .service_bpo_ex-inner{
    display: block;
  }
  .service_bpo_ex:nth-child(1),
  .service_bpo_ex:nth-child(2){
    width: 100%;
  }
  .service_bpo_ex li{
    font-size: 1rem;
  }

  .service_outside-wrap{
    padding: 70px 0;
  }
  .service_outside_copy{
    font-size: 1.5rem;
    width: 300px;
    height: 94px;
    text-align: center;
  }
  .service_outside_copy{
    top: -47px;
  }
  .service_outside-inner{
    border-radius: 30px;
    padding: 70px 10px 50px;
  }

  .service_outside_contents{
    flex-direction: column;
    align-items: center;
  }
  .service_outside_content{
    width: 100%;
  }
  .service_outside_content:not(:last-of-type){
    margin-bottom: 20px;
  }

  .service_outside_info-wrap{
    flex-direction: column;
  }
  .service_outside_info{
    width: 100%;
    max-width: none;
  }
  .service_outside_info:not(:last-of-type){
    margin-bottom: 58px;
  }
  /* for business end */


  /* locations */
  .locations-wrap{
    padding: 70px 0 80px;
  }
  .locations:not(:last-of-type){
    margin: 0 0 125px;
  }
  .locations_head h2{
    font-size: 1.25rem;
    height: 70px;
    padding: 0;
  }
  .locations_head p{
    width: 70px;
    height: 70px;
    font-size: 	1.125rem;
    left: -10px;
    top: -43px;
  }
  .locations_contents{
    flex-direction: column-reverse;
    padding: 30px 5% 60px;
  }
  .locationsImage-wrap{
    width: 100%;
    max-width: none;
    margin-bottom: 30px;
  }
  .locations_info{
    width: 100%;
    max-width: none;
  }
  .locations .btn_more{
    width: 240px;
    height: 64px;
    min-height: auto;
    font-size: 1rem;
    bottom: -32px;
  }
  /* locations end */


  /* sanno */
  .pageTitle_location .pageTitle-inner{
    justify-content: center;
    padding-top: 35px;
  }
  .pageTitle_location .pageTitle-inner p{
    font-size: 	1.125rem;
    margin: 0 0 7px;
  }
  .locationInfo-wrap{
    padding: 50px 0 0;
  }
  .locationInfo-inner{
    margin: 0 auto 50px;
  }
  .locationInfo{
    flex-direction: column-reverse;
    margin: 0 0 40px;
  }
  .locationInfo_ph{
    width: 100%;
    max-width: none;
    margin: 0 0 30px;
  }
  .locationInfo_contents{
    width: 100%;
  }
  .gmap_locationInfo_title{
    text-align: center;
  }
  .gmap_locationInfo iframe{
    aspect-ratio: 8 / 5;
  }

  .locationSlide-wrap{
    padding: 50px 0;
    border-radius: 0 0 30px 30px;
  }
  .locationSlide-wrap > h2{
    font-size: 1.125rem;
  }

  .locationSlide-inner{
    width: 70%;
    padding: 30px 0 25px;
  }
  .swiper-button-prev,
  .swiper-button-next,
  .swiper-button-prev:after,
  .swiper-button-next:after{
    width: 30px;
    height: 30px;
  }
  .swiper-button-prev{
    left: -44px;
  }
  .swiper-button-next{
    right: -44px;
  }

  .locationActivity-wrap{
    padding: 50px 0 70px;
  }
  .locationActivity-wrap > h2{
    margin: 0 0 30px;
  }
  .locationActivity li{
    margin: 0 0 30px;
  }
  .bnr_litalico{
    margin: 0 auto;
  }
  /* sanno end */


  /* for business */
  .forBusiness_about_image{
    margin: 0 auto 30px;
  }
  .forBusiness_about_copy.pcOnly{
    display: none;
  }
  .forBusiness_about_copy.spOnly{
    display: flex;
  }
  .forBusiness_about_copy{
    font-size: 1.5rem;
  }
  .forBusiness_about_copy span{
    width: 90%;
    max-width: 330px;
    box-sizing: border-box;
  }
  .forBusiness_about_copy span:not(:last-of-type){
    margin-bottom: 10px;
  }
  .forBusiness_about_text{
    padding: 30px 0;
  }
  /* for business end */


  /* recruit */
  .recruit_about-bf{
    padding: 50px 0;
  }
  .recruit_about-bf .title h2{
    font-size: 2.25rem;
  }

  .recruitScroll-inner img{
    width: 200px;
  }

  .recruitType-wrap{
    padding: 50px 0 100px;
  }
  .recruitType-inner{
    flex-direction: column;
  }
  .recruitType{
    width: 100%;
    padding-bottom: 25px;
  }
  .recruitType:not(:last-of-type){
    margin-bottom: 64px;
  }
  .recruitType_desc{
    font-size: 1rem;
    height: auto;
    margin-top: 25px;
  }

  .recruitType .btn_more{
    font-size: 1rem;
    width: 240px;
    height: 64px;
    border-bottom: -32px;
  }

  /* recruit end */


  /* staff */
  .pageTitle_staff .pageTitle-inner,
  .pageTitle_member .pageTitle-inner{
    height: auto;
    padding: 70px 0 30px;
  }
  .pageTitle_recruit_sub{
    font-size: 1.125rem;
  }
  .pageTitle_recruit_main{
    width: 200px;
    height: 60px;
  }
  .pageTitle_recruit_main p{
    font-size: 1.625rem;
  }
  .pageTitle-inner .pageTitle_recruit_main h1{
    font-size: .875rem;
  }
  .titleStaff_ill{
    width: 50px;
    bottom: -44px;
    right: -59px;
  }

  .recruit_intro{
    padding: 60px 0 10px;
    font-size: 1.125rem;
  }

  .jobType-wrap{
    padding: 50px 0;
    border-radius: 30px;
    margin: 0
  }
  .jobType-wrap > h2{
    font-size: 1.875rem;
    margin: 0 0 25px;
  }
  .jobType{
    margin: 0 0 30px;
  }
  .jobType > h3{
    font-size: 1.25rem;
    padding: 15px;
  }
  .jobType_contents{
    flex-direction: column-reverse;
  }
  .jobType_ph,
  .jobType_text{
    width: 100%;
    max-width: none;
  }
  .jobType_ph{
    margin-bottom: 30px;
  }

  .staffInfo-wrap{
    padding: 50px 0 0;
    margin: 0;
  }
  .staffInfo_box{
    padding: 40px 20px 50px;
    border-radius: 30px;
  }
  .staffInfo_box:not(:last-of-type){
    margin: 0 0 70px;
  }
  .staffInfo_box > h2{
    font-size: 1.875rem;
    margin: 0 0 30px;
  }
  .staffInfo_contents{
    display: block;
  }
  .staffInfo{
    width: 100%;
    max-width: none;
  }
  .staffInfo h3{
    font-size: 1.125rem;
    min-height: 100px;
  }
  .staffInfo_benefits .staffInfo_ill{
    bottom: -48px;
    right: -9px;
  }
  .staffInfo_event .staffInfo_ill{
    bottom: -64px;
    left: -9px;
  }

  .pageStaff-info .forBusiness_about-inner{
    margin-top: 0;
    padding-top: 25px;
  }

  .staffInfoTable-wrap{
    border-radius: 30px;
    padding: 40px 0 50px;
  }
  .staffInfoTable-wrap > h2{
    font-size: 	1.875rem;
  }
  .staffInfoTable-inner > h3{
    font-size: 1.25rem;
    height: 70px;
  }
  .staffInfoTable{
    padding: 10px 20px 50px;
  }

  .staffInfoTable table th,
  .staffInfoTable table td{
    display: block;
    width: 100%;
  }
  .staffInfoTable table th{
    border-bottom: none;
    padding: 15px 0 0;
  }
  .staffInfoTable table td{
    padding: 0 0 15px;
  }

  .staffBnr-wrap{
    padding: 50px 0 80px;
  }
  .staffBnr-wrap p{
    margin: 0 0 20px;
  }

  #engage-contributions-widget-wrapper{
    width: 320px !important;
  }
  /* staff end */


  /* member */
  .titleMember_ill{
    width: 49px;
    bottom: -42px;
    right: -56px;
  }
  .jobType_member-wrap{
    margin: 50px 0 0;
  }

  .memberTimeSchedule-wrap{
    padding: 100px 0 70px;
  }
  .memberTimeSchedule-wrap > h2{
    font-size: 1.875rem;
    margin: 0 0 20px;
  }
  .memberInfo_event{
    padding-bottom: 80px;
  }
  .memberTimeSchedule-inner{
    display: block;
  }
  .memberTimeSchedule{
    width: 100%;
    padding: 50px 20px 123px;
  }
  .memberTimeSchedule:first-of-type{
    padding-bottom: 44px;
    margin-bottom: 30px;
  }

  .memberTimeSchedule dl dt,
  .memberTimeSchedule dl dd{
    font-size: 1rem;
  }
  .memberTimeSchedule dl dt{
    width: 66px;
  }
  .memberTimeSchedule dl dd{
    width: calc(100% - 66px);
    padding-left: 26px;
  }
  .inside_ill{
    position: static;
    margin-top: 20px;
  }

  .memberFlow_box-wrap > p{
    font-size: 1rem;
    margin: 15px 0 30px;
  }
  /* member end */







  /* contact */
  .contact-wrap{
    padding: 50px 0;
  }
  .contact-tab{
    font-size: .875rem;
    height: 68px;
  }
  .contact-inner{
    padding: 45px 0 36px;
    border-radius: 0 0 30px 30px;
  }
  .contactForm-wrap{
    margin: 45px auto 0;
  }
  .contact-form > p{
    font-size: 1rem;
    text-align: justify;
  }
  .btn_send input{
    font-size: 1rem;
    width: 240px;
    height: 64px;
  }
  .btn_send{
    margin-top: 45px;
  }
  .contact_arrow{
    top: 25px;
  }
  .form_send_note{
    text-align: justify;
  }
  /* contact end */


  /* qa */
  .qa-wrap{
    padding: 30px 0 50px;
  }
  .qa dd span,
  .qa dd div{
    padding: 20px;
  }
  .qa dd div table th,
  .qa dd div table td{
    font-size: .9375rem;
    padding: 10px;
  }
  .qa dd div table th:nth-child(1){
    width: auto;
  }
  .qa dt::before{
    left: 20px;
  }
  .qa dt::after{
    right: 22px;
  }
  /* qa end */


  /* report */
  .report-wrap{
    padding: 50px 0 70px;
  }
  .report_link{
    display: block;
    padding: 15px 20px 50px;
  }
  .report_link span{
    display: block;
  }
  .report_date{
    width: 100%;
    padding-left: 0;
  }
  .report_title{
    width: 100%;
  }
  .report_link .arrow{
    display: flex;
    justify-content: center;
    right: 0;
    left: 0;
    bottom: 20px;
  }
  /* report end */


  /* privacy */
  .pagePrivacy-wrap{
    padding: 50px 0;
  }
  /* privacy end */


  /* news list */
  .pageNewsList-wrap{
    padding: 50px 0;
  }
  .pageNewsList-wrap .topNews_list .topNews_box{
    margin: 0 0 25px;
  }
  /* news list end */

  /* news detail */
  .pageTitle_news .pageTitle-inner{
    min-height: auto;
  }
  .pageTitle_news_contents{
    padding: 70px 0 50px;
  }
  h1.newsDetail_title{
    font-size: 1.125rem;
  }
  .newsDetail-wrap{
    padding: 50px 0;
  }
  .newsDetail-wrap .btn_more{
    font-size: 1rem;
    width: 240px;
    height: 64px;
  }
  /* news detail end */

}
