@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.SNS a,
.navig {
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

body {
  font-size: 14px;
  line-height: 1.6;
  color: #4e4a4a;
  /* font-family:'Noto Sans JP', sans-serif
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  padding-top: 80px;
}

a {
  color: #15608c;
}

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

ul {
  list-style: none;
}

/* ここからがヘッダー */

.header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  border: solid 1px #eae1e1;
}

.top {
  width: 90%;
  max-width: 100%;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top img {
  width: 60%;
  display: inline-block;
}

/* ここからがナビ */
nav {
  display: inline-block;
  margin-right: 7%;
}

nav li {
  font-size: 9px;
}

.navig {
  font-size: 14px;
  letter-spacing: 0.1em;
  padding-bottom: 5px;
  position: relative;
  justify-content: center;
}

.navig::before {
  background: #c9968a;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.navig:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

.navi_inner {
  max-width: 100%;
  display: flex;
  gap: 3%;
  margin-right: 10%;
}

.navi ul {
  list-style: none;
}

.navi_inner li a {
  text-decoration: none;
  color: #4e4a4a;
}

.toggle {
  display: none;
}

.toggle span:nth-of-type(3)::after {
  content: "Menu";
  /*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: 5px;
  left: 0px;
  color: #4e4a4a;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.toggle.active span:nth-of-type(3)::after {
  content: "Close";
  /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-45deg);
  top: 10px;
  left: 15px;
}

.topname {
  display: none;
}

.topname a {
  color: #4e4a4a;
  text-decoration: none;
}

/*.current {
    border-bottom: 3px solid #c9968a;
}

/* ここまでがナビ */
/* ここまでがヘッダー */

/**ここからトップ*/

.topimg {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.topimg_sp {
  display: none;
}

.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

.comname {
  font-size: 20px;
  font-weight: lighter;
  display: block;
  position: absolute;
  bottom: 6%;
  left: 18%;
}

.top_comment {
  color: #ffffff;
  font-size: 15px;
  line-height: 30px;
  position: absolute;
  top: 13%;
  left: 27%;
}

.top_subcomment {
  font-size: 12px;
  line-height: 30px;
}

/*ここからトップCTA*/

.top_cta {
  width: 1000px;
  max-width: 100%;
  margin: 150px auto;
}

.spbr {
  display: none;
}

.top_cta h2 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 30px auto;
}

.top_cta h3 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 30px auto;
}

.top_cta h4 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 30px auto;
}

.top_cta p {
  text-align: center;
  font-size: 17px;
}

.cta {
  margin: 50px auto;
  margin-bottom: 30px;
  text-align: center;
}

.cta a {
  background-color: #e6e45f;
  padding: 30px 80px;
  border-radius: 20px;
  box-shadow: 3px 3px 10px 0px rgba(255, 255, 255, 0.75) inset,
    -3px -3px 10px 0px rgba(0, 0, 0, 0.75) inset;
  font-size: 16px;
  text-decoration: none;
  color: #111;
  white-space: nowrap;
}

.cta a:hover {
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.75) inset,
    -3px -3px 10px 0px rgba(255, 255, 255, 0.75) inset;
  color: #746f6f;
}

section .cta_comment {
  font-size: 12px;
  text-align: center;
}

/* ここからがアバウトアス */
.aboutus {
  width: 1000px;
  max-width: 100%;
  margin: 80px auto;
  position: relative;
  margin-bottom: 250px;
}

.aboutus {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 3s, transform 3s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.aboutimg {
  text-align: right;
}

.aboutimg img {
  z-index: 5;
  max-width: 100%;
  height: auto;
}

.aboutus_around {
  max-width: 820px;
  width: 100%;
  height: 440px;
  background-color: rgba(137, 139, 151, 0.1);
  position: absolute;
  top: 30%;
  left: 0;
  z-index: 1;
  padding: 50px 50px;
}

.aboutus_inner {
  position: absolute;
  top: -5%;
  left: 18%;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.5em;
}

.aboutus_text {
  font-size: 15px;
  font-weight: lighter;
  line-height: 2;
  padding-left: 40px;
}

.nextpage {
  margin-left: 120px;
  margin-top: 30px;
}

.nextpage a {
  background-color: #111;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  border: solid 0.4px #aaa;
  padding: 15px 40px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.nextpage a:after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.nextpage a:hover {
  color: #111;
}

.nextpage a:hover::after {
  transform: scale(1, 1);
}

/* ここまでがアバウトアス */

/* ここからが会社概要 */
.businesscontent {
  max-width: 100%;
  margin-top: 300px;
}

.businesscontent {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 3s, transform 3s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.bcarea {
  background-color: rgba(137, 139, 151, 0.1);
  height: 1400px;
  margin-bottom: 100px;
  position: relative;
}

.bcback {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

.bch2 {
  position: absolute;
  top: -2%;
  right: 15%;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.5em;
}

.bc_inner {
  padding-top: 11%;
  display: flex;
  justify-content: space-around;
  max-width: 100%;
}

.bcimg {
  width: 35%;
}

.bcint p {
  text-align: center;
  margin: 5% 0;
}

.bcint div {
  text-align: center;
}

.bcint_inner {
  font-weight: bold;
  font-size: 17px;
}

.bc_andmore {
  margin-top: 5px;
}

.bc_andmore a {
  text-decoration: none;
  background-color: #111;
  color: #fff;
  display: inline-block;
  border: solid 0.4px #aaa;
  padding: 15px 50px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.bc_andmore a:after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.bc_andmore a:hover {
  color: #111;
}

.bc_andmore a:hover::after {
  transform: scale(1, 1);
}

.ctaa {
  margin-top: 150px;
}

/* ここまでが会社概要 */
/*ここから解決事例*/
.koe_sec {
  max-width: 100%;
  margin: 150px auto;
  margin-bottom: 250px;
}

.koe_inner {
  width: 1000px;
  max-width: 100%;
  margin: 50px auto;
}

.koe_inner li {
  font-size: 16px;
}

.koe1 {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 60px;
}

.koe1::before {
  content: url(../images/koeleft.png);
  vertical-align: middle;
  padding-right: 10px;
}
.koe1::after {
  content: url(../images/koeright.png);
  vertical-align: middle;
  padding-left: 10px;
}

.koe_inner li img {
  vertical-align: middle;
  width: 40px;
  margin: 15px;
}

.underline {
  text-decoration: underline;
  text-underline-offset: -0.2em;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 228, 0, 0.4);
  text-decoration-skip-ink: none;
}

.tovoice {
  text-align: center;
  margin: 60px;
}

.tovoice a {
  background-color: #111;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  border: solid 0.4px #aaa;
  padding: 15px 50px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.tovoice a:after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.tovoice a:hover {
  color: #111;
}

.tovoice a:hover::after {
  transform: scale(1, 1);
}

/*ここまで解決事例*/
/* ここからがお知らせ */

.news {
  max-width: 100%;
  margin: 0 auto;
}

.news {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 3s, transform 3s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.news_inner img {
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /*webkit系*/
  -moz-box-sizing: border-box;
  /*Firefox*/
}

.news_inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.newsh3 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.5em;
  position: absolute;
  top: -5%;
  left: 18%;
}

.news_int {
  position: absolute;
  top: 25%;
  left: 10%;
}

.newsdl {
  display: flex;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  border-bottom: solid 0.3px #aaa;
}

.newsdl a {
  color: #4e4a4a;
}

.newsdl a:hover {
  color: #d3b5ae;
  display: inline-block;
}

.newsdl dt,
.newsdl dd {
  padding: 10px 20px;
  font-size: 14px;
}

/* ここまでがお知らせ */

/* ここからがカンパニー */
.company {
  width: 100%;
  margin: 0 auto;
}

.company {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 3s, visibility 3s, transform 3s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.companyd {
  max-width: 1000px;
  width: 100%;
  margin: 17% auto;
}

.companyh4 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.5em;
  text-align: right;
  margin-right: 15%;
  margin-bottom: 5%;
}

.company_inner {
  display: flex;
  gap: 2%;
  margin: 0 auto;
  max-width: 100%;
}

.company_inner div {
  width: 48%;
  max-width: 100%;
}

.company_info {
  padding: 5% 2%;
  vertical-align: middle;
  margin: 0 1% 0 8%;
}

.company_info p {
  margin: 3% 0 0 27%;
}

.infodl {
  display: flex;
  font-size: 14px;
}

.infodl dt {
  display: inline-block;
  width: 100px;
  padding-bottom: 15px;
}

.infodl dd {
  display: inline-block;
  width: 200px;
  padding-bottom: 15px;
}

.map {
  /*background-image: url(../images/MAPbackground.png);*/
  background-color: rgba(211, 181, 174, 0.4);
  width: 100%;
  margin: 0 auto;
  vertical-align: center;
}

.map iframe {
  width: 90%;
  max-width: 100%;
  height: 90%;
  margin: 4% 5%;
  vertical-align: center;
}

/* ここまでがカンパニー*/

.totop {
  position: absolute;
  right: 5%;
  bottom: 0;
  position: fixed;
  z-index: 99;
}

.totop a {
  display: inline-block;
  background-color: #c9a49b;
  padding: 10px 30px;
  font-size: 14px;
  border-radius: 5px;
  color: #4e4a4a;
  text-decoration: none;
}

.totop a:hover {
  transform: translateY(-5px);
  opacity: 0.8;
}

/* ここからがフッター */
.footer {
  max-width: 100%;
  background-color: rgba(137, 139, 151, 0.7);
  color: #fff;
}

/* ここからがコンタクト */

.contact {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 0 40px 0;
}

.contact nav {
  text-align: center;
  margin: 0 auto;
}

.contacth5 {
  width: 680px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  font-size: 27px;
}

.contacth5:before,
.contacth5:after {
  content: "";
  height: 0.4px;
  flex-grow: 1;
  background-color: #fff;
}

.contacth5:before {
  margin-right: 1rem;
}

.contacth5:after {
  margin-left: 1rem;
}

.conextlogo {
  text-align: center;
  margin: 40px 0;
}

.conextlogo img {
  width: 16%;
}

.footernavi_inner a:hover {
  color: #111;
}

.foconect {
  width: 680px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
}

.coconect {
  background-color: #ece9d3;
  display: inline-block;
  padding: 15px 30px;
  text-align: center;
  font-size: 17px;
  width: 250px;
  border-radius: 10px;
  margin: 30px;
}

.coconect a {
  text-decoration: none;
  color: #4e4a4a;
}

.coconect:hover {
  background: #d3b5ae;
  color: #ece9d3;
}

.SNS {
  margin: 20px auto;
  text-align: center;
  display: flex;
  justify-content: center;
  font-size: 14px;
}

.SNS a {
  text-decoration: none;
  color: #ece9d3;
  margin: 0 20px;
  vertical-align: middle;
  text-align: center;
}

.SNS a:hover {
  color: #111;
}

.SNS i:hover {
  transform: scale(0.9, 0.9);
}

.footernavi {
  text-align: center;
  margin: 0 auto;
}

.footernavi_inner {
  display: flex;
}

.footernavi_inner a {
  color: whitesmoke;
  text-decoration: none;
  font-size: 16px;
  padding: 15px;
}

/* ここまでがコンタクト */
.copyl {
  max-width: 100%;
  background-color: #d3b5ae;
  padding: 15px 0;
}

.copylight_inner {
  width: 680px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.copylight {
  color: #4e4a4a;
  font-size: 13px;
}

/* ここまでがフッター */

.bthome {
  margin: 150px auto;
  text-align: center;
}

.bthome a {
  text-decoration: none;
  margin: 0 auto;
  background-color: #aaa;
  display: inline-block;
  border: solid 0.2px #aaa;
  border-radius: 50%;
  color: #111;
  padding: 10px 20px;
  transition-duration: 0.4s;
}

.bthome a:hover {
  transform: scale(1.1);
  background-color: #fff;
}

/**パンくずリスト*/
.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline;
  /*横に並ぶように*/
  list-style: none;
  font-weight: bold;
  /*太字*/
}

.breadcrumb li:after {
  /* ▶を表示*/
  font-family: FontAwesome;
  content: "\f0da";
  padding: 0 0.2em;
  color: silver;
}

.breadcrumb li:last-child:after {
  content: "";
}

.breadcrumb li a {
  text-decoration: none;
  color: #888;
}

.breadcrumb li:first-child a:before {
  /*家アイコン*/
  font-family: FontAwesome;
  content: "\f015";
  font-weight: normal;
  font-size: 1.1em;
  color: #f3948f;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

/* ここからQ&A */
.qanda {
  max-width: 100%;
  margin-bottom: 100px;
}

.quanda_top {
  height: 300px;
  background-image: url(../images/kaso1.png);
  padding-top: 100px;
}

.quanda_top h1 {
  background-color: hsl(229, 16%, 87%, 0.5);
  text-align: center;
  height: 100px;
  font-size: 27px;
  padding: 25px;
}

.qanda_inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

.qimage {
  width: 40px;
}

.aimage {
  width: 40px;
}

.qa-list {
  margin: 100px 30px;
}

.qa {
  font-size: 16px;
  margin: 0px 0 80px 0;
}

.qa dt {
  margin-bottom: 0px;
}

.qa dd {
  margin-left: 50px;
}

.qa div {
  margin-left: 47px;
}

.qa-list dl {
  position: relative;
  margin: 0;
  padding: 10px 80px 28px 30px;
  cursor: pointer;
  border-bottom: 0.4px solid #4e4a4a;
}

.qa-list dl:first-child {
  border-top: 0.4px solid #4e4a4a;
}

.qa-list dl::before {
  position: absolute;
  top: 50px;
  right: 35px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: "";
  transform: rotate(135deg);
  border-top: 2px solid #4e4a4a;
  border-right: 2px solid #4e4a4a;
}

.qa-list .open::before {
  transform: rotate(-45deg);
}

.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 0 0 0 50px;
  font-size: 16px;
}

/* .qa-list dl dt::before {
    font-size: 20px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 0;
    display: block;
    content: '';
    color: #3285bf;
}
.qa-list dl dd::before {
    font-size: 20px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: '';
    font-weight: bold;
    color: #3285bf;
} */
.qa-list dl dd {
  position: relative;
  display: none;
  height: auto;
  margin: 20px 0 0;
  padding: 0 0 0 50px;
  color: #4e4a4a;
}

.qa-list dl dd p {
  margin: 30px 0 0;
}

.qa-list dl dd p:first-child {
  margin-top: 0;
}

.openbtn4.active span:nth-of-type(3)::after {
  content: "Close";
  /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-45deg);
  top: 5px;
  left: 4px;
}

@media screen and (max-width: 767px) {
  .qa-list dl {
    position: relative;
    padding: 15px 40px 15px 10px;
  }

  .qa-list dl dt {
    padding: 0 0 0 30px;
    font-size: 14px;
  }

  .qa-list dl dt::before {
    font-size: 14px;
    top: 3px;
    left: 5px;
    content: "";
  }

  .qa-list dl dd::before {
    font-size: 14px;
    top: 5px;
    left: 5px;
    content: "";
  }

  .qa-list dl dd {
    margin: 10px 0 0;
    padding: 0 0 0 30px;
    font-size: 14px;
  }

  .qa-list dl dd p {
    margin: 30px 0 0;
  }

  .qa-list dl dd p:first-child {
    margin-top: 0;
  }
}

/* ここまでがQ&A */

/* ここからが事業所概要 */

.companypage {
  max-width: 100%;
}

.company_top {
  margin: 0 auto;
  height: 300px;
  background-image: url(../images/kaso.png);
  padding-top: 100px;
}

.company_top h1 {
  background-color: hsl(229, 16%, 87%, 0.8);
  text-align: center;
  height: 100px;
  font-size: 27px;
  padding: 25px;
}

.companylink {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

.identity {
  margin: 60px 30px 0 30px;
  font-size: 18px;
}

.identity h3 {
  font-weight: bold;
  background-color: #ebd3ca;
  padding: 15px 35px;
  font-size: 20px;
  margin: 20px 25px;
}

.identity h2 {
  font-size: 18px;
  margin-bottom: 100px;
}

.greeting {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 10px;
}

.id_inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.id_inner img {
  width: 280px;
  max-width: 100%;
  margin: 20px 30px;
}

.id_int {
  width: 470px;
  max-width: 100%;
  font-size: 17px;
}

.name {
  font-weight: bold;
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
}

.company_wrap {
  width: 1024px;
  max-width: 100%;
  margin: 100px auto;
}

.company_wrap h5 {
  font-weight: bold;
  font-size: 22px;
  padding: 10px 50px;
  margin-left: 65px;
}

.cw {
  margin: 0 auto;
  padding: 50px 100px;
  max-width: 100%;
  text-align: center;
}

.cw img {
  width: 273px;
}

.cw_dl {
  display: flex;
  margin: 10px 0;
  font-size: 16px;
}

.cw_dl dt {
  width: 200px;
  max-width: 100%;
  padding-left: 20px;
}

.cw_dl dd {
  margin-left: 80px;
}

.fmap {
  text-align: center;
  margin: 50px 10px;
}

.fmap iframe {
  width: 700px;
}

.profire {
  margin: 5% 10%;
}

.pro_table td {
  border: none;
  width: 65%;
  padding: 10px;
}

.pro_table th {
  padding: 10px 0;
}

.pro_table img {
  width: 25px;
  vertical-align: top;
  display: inline-block;
  margin-top: 2px;
}

.career {
  display: flex;
  margin-top: 10px;
}

.career img {
  width: 25px;
  vertical-align: top;
  display: inline-block;
  margin-top: 2px;
}

.career div {
  width: 155px;
}

.career p {
  width: 80%;
}

/* ここまでが事業所概要 */

/* ここからが業務内容 */
.business_sec {
  max-width: 100%;
  margin: 0 auto;
}

.kaigyo {
  display: none;
}

.business_h1 {
  margin: 0 0;
  height: 300px;
  background-image: url(../images/kaso2.png);
  background-image: 100%;
  padding-top: 100px;
}

.business_h1 h1 {
  background-color: hsl(229, 16%, 87%, 0.3);
  text-align: center;
  height: 100px;
  font-size: 27px;
  padding: 25px;
}

.business_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 20px auto 100px auto;
}

.business_pp {
  margin: 60px 30px 0 30px;
  font-size: 18px;
}

.business_inn {
  padding: 100px 30px 0 30px;
  display: flex;
}

.business_inn img {
  width: 400px;
  margin: 10px 10px;
}

.business_inn h3 {
  font-size: 20px;
  font-weight: bold;
}

.business_inn p {
  margin: 10px 10px;
}

.bsn_int {
  width: 500px;
  margin: 0 20px;
}

.bsn_li {
  display: flex;
}

li {
  font-size: 14px;
  margin-left: 20px;
}

ul {
  margin: 15px 0;
}

.bsn_ul {
  margin-left: 40px;
}

/* ここまでが業務内容 */

/* ここから料金表 */
.pricelist {
  max-width: 100%;
  margin: 0 auto;
}

.ptema {
  display: none;
}

.tetuduki {
  display: none;
}

.price_top {
  height: 300px;
  background-image: url(../images/kaso3.png);
  padding-top: 100px;
}

.price_top h1 {
  background-color: hsl(229, 16%, 87%, 0.8);
  text-align: center;
  height: 100px;
  font-size: 27px;
  padding: 25px;
}

.bs_p {
  margin: 60px 30px 0 30px;
  font-size: 18px;
}

.pricelist_inner {
  width: 1000px;
  max-width: 100%;
  margin: 20px auto 100px auto;
}

.pl_in {
  margin: 120px auto;
  width: 600px;
}

.pl_in h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.pl_in table {
  margin: 0 auto;
}

.pl_in table th,
td {
  border: 1px solid #111;
  width: 300px;
  text-align: center;
  vertical-align: middle;
  padding: 8px 5px;
}

.pl_in p {
  margin-left: 20px;
  margin-top: 20px;
  font-size: 16px;
}

.adv {
  margin: 50px auto;
  text-align: center;
}

.adv a {
  color: #111;
  background-color: #e9d3cd;
  font-size: 16px;
  text-align: center;
  border: solid #b3b0b0 0.1px;
  border-radius: 50%;
  padding: 30px 20px;
  text-decoration: none;
  display: inline-block;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(
    to right,
    #4e4a4a 0%,
    #4e4a4a 50%,
    #e9d3cd 50%,
    #e9d3cd 100%
  );
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
  transition: background-position ease 0.4s;
}

.bururi {
  animation: bururi 1s infinite;
}

@keyframes bururi {
  50% {
    transform: scale(1, 1);
  }

  52% {
    transform: scale(0.98, 0.95);
  }

  54% {
    transform: scale(1, 1);
  }

  56% {
    transform: scale(0.98, 0.95);
  }

  58% {
    transform: scale(1, 1);
  }

  60% {
    transform: scale(0.98, 0.95);
  }
}

.adv a:hover {
  background-position: 0 0;
  background-color: #4e4a4a;
  color: #e9d3cd;
}

.price_cartion {
  margin-left: 20%;
}

/* ここまでが料金表 */

/* ここからが顧問契約 */
.advisor_top {
  max-width: 100%;
  margin: 0 auto;
}

.advisor_inner {
  width: 1000px;
  margin: 0 auto;
  max-width: 100%;
}

.advisor_inner h2 {
  font-size: 18px;
  margin: 60px 30px 0 30px;
}

.advisor_table {
  margin: 0 auto;
  margin-top: 100px;
  max-width: 100%;
}

.advisor_table th,
td {
  border: 1px solid #111;
  text-align: left;
  padding: 8px 8px;
}

.advisor_cart p {
  font-size: 14px;
  margin: 20px 15px 0 15px;
}

/* ここまでが顧問契約 */

/* ここからがお問い合わせ */

form {
  max-width: 680px;
  width: calc(100% - 10px);
  margin: 0 auto;
  font-size: 20px;
}

.item {
  display: flex;
  align-items: center;
  padding-top: 20px;
}

.item label {
  width: 400px;
}

.sex {
  padding-top: 20px;
}

.label {
  width: 220px;
  padding-left: 10px;
  border-left: solid 5px #d3b5ae;
}

.label-required {
  color: #b66b5f;
  font-weight: bold;
  font-size: 18px;
}

input[type="text"],
input[type="email"] {
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 10px;
  font-size: 15px;
}

select {
  appearance: none;
  cursor: pointer;
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 10px;
  font-size: 15px;
}

textarea {
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 10px;
  height: 160px;
  width: 480px;
  font-size: 15px;
}

.btn {
  text-align: center;
  margin: 25px auto;
}

button {
  background: #d3b5ae;
  border-radius: 7px;
  cursor: pointer;
  color: #4e4a4a;
  font-size: 17px;
  font-weight: bold;
  padding: 10px 100px;
}

/* ここまでがお問い合わせ */

/* ここからがニュースページ */

.news_20 {
  margin: 10% 20% 0 20%;
}

.newsh1 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.5em;
}

.news_day {
  padding: 100px 50px 0 50px;
  font-weight: bold;
}

.newspage {
  padding: 50px 50px 100px 50px;
  font-size: 16px;
}

/* ここまでがニュースページ */

/*ここからがお客様の声*/

.voicepage {
  max-width: 100%;
}

.voice_top {
  margin: 0 auto;
  height: 300px;
  background-image: url(../images/voice.jpg);
  padding-top: 100px;
}

.voice_top h1 {
  background-color: hsl(229, 16%, 87%, 0.8);
  text-align: center;
  height: 100px;
  font-size: 27px;
  padding: 25px;
}

.voice_inner {
  width: 900px;
  max-width: 100%;
  margin: 20px auto 100px auto;
}

.voice_contents {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 100px auto;
}

.voice_p {
  padding: 3% 3%;
  border: #aeabab solid 1.5px;
  border-radius: 10px;
  width: 90%;
  margin: 0 auto;
  word-wrap: normal;
}

.voice_h {
  font-size: 20px;
  border-bottom: 3px solid #64aadc;
  color: #64aadc;
  padding: 10px;
}

.voice_i {
  font-size: 20px;
  border-bottom: 3px solid #dd81a7;
  color: #dd81a7;
  padding: 10px;
}

.voice_p img {
  display: none;
}

/*ここまでがお客様の声*/

/*ここからがプライバシーポリシー*/
.privacyp {
  width: 100%;
  max-width: 100%;
  margin: 100px auto;
}

.privacyp_inner {
  width: 780px;
  max-width: 100%;
  margin: 0 auto;
}

.privacyp_inner h1 {
  text-align: center;
  font-size: 25px;
  margin-bottom: 80px;
}

.privacyp_inner h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.privacyp_inner h3 {
  font-size: 18px;
  margin: 20px auto;
  padding-bottom: 15px;
  border-bottom: 1px solid #4e4a4a;
}

.privacyp_inner div {
  margin: 10% 0;
}

/*ここまでがプライバシーポリシー*/

/*ここからレスポンシブ*/

@media screen and (max-width: 2560px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 1030px) {
  .cw img {
    width: 220px;
  }
}

@media screen and (max-width: 1024px) {
  .price_cartion {
    margin: 0 50px;
  }

  .id_int {
    width: 400px;
    margin: 10px 50px;
  }

  .top_message {
    padding-right: 10px;
  }

  .top_logo {
    padding: 0 12px;
  }
}

@media screen and (max-width: 960px) {
  .advisor_inner {
    width: 900px;
  }
}

@media screen and (max-width: 879px) {
  .aboutus_around {
    max-width: 88%;
    margin: 0 3%;
  }

  .bcaa {
    margin-left: 32%;
    margin-bottom: 10%;
  }

  .bcbb {
    margin-left: 15%;
    margin-bottom: 45%;
  }

  .bccc {
    margin-left: 30%;
    margin-bottom: 25%;
  }

  .bcdd {
    margin-left: 30%;
    margin-bottom: 43%;
  }

  .bc_andmore {
    margin-left: 30px;
  }

  .news_inner img {
    padding: 0 3%;
  }

  .companyd {
    margin-bottom: 25%;
  }
}

@media screen and (max-width: 837px) {
  .top_cta p {
    font-size: 15px;
  }

  .nav_inner {
    margin-right: 5%;
  }

  .comname {
    font-size: 17px;
  }

  .aboutus_inner {
    left: 12%;
    top: -4%;
  }

  .aboutus_top {
    font-size: 16px;
  }

  .aboutus_text {
    font-size: 15px;
  }

  .bch2 {
    top: -2%;
  }

  .bcaa,
  .bcbb,
  .bccc,
  .bcdd {
    font-size: 15px;
  }

  .bcbb {
    margin-left: 26%;
    margin-bottom: 40%;
  }

  .bcdd {
    margin-left: 35%;
  }

  .newsh3 {
    top: -10%;
  }

  .companyh4 {
    text-align: center;
    margin: 0 auto;
  }

  .company_info {
    margin-left: 3%;
  }

  .qa-list {
    margin: 100px 20px;
  }

  .pl_in p {
    margin: 0 auto;
    font-size: 16px;
  }

  .company_top h4 {
    font-size: 19px;
    padding: 33px;
  }

  .identity h2 {
    font-size: 18px;
  }

  .identity h3 {
    font-size: 16px;
  }

  .id_inner img {
    width: 200px;
    height: auto;
  }

  .id_int {
    width: 400px;
    font-size: 15px;
    margin: 50px 50px 0 0;
  }

  .fmap {
    text-align: center;
    margin: 50px 10px;
  }

  .fmap iframe {
    width: 500px;
  }

  .company_wrap h5 {
    font-size: 18px;
  }

  .cw {
    margin: 0 auto;
    padding: 50px 100px;
    max-width: 100%;
    text-align: center;
  }

  .cw img {
    width: 160px;
  }

  .cw_dl {
    display: flex;
    margin: 10px 0;
    font-size: 15px;
  }

  .cw_dl dt {
    width: 150px;
  }
}

@media screen and (max-width: 768px) {
  .aboutus_text {
    padding-left: 0px;
  }

  .top_cta {
    width: 100%;
    max-width: 100%;
    margin: 120px auto;
    padding: 0 10px;
  }

  .bc_andmore {
    margin-left: 22px;
  }

  .bcbb {
    margin-left: 20%;
  }

  .bcdd {
    margin-left: 30%;
  }

  .qa {
    font-size: 16px;
  }

  .advisor_top {
    font-size: 18px;
  }

  .advisor_inner {
    margin: 100px 30px;
    font-size: 14px;
  }

  .advisor_table th,
  td {
    width: 220px;
    text-align: left;
    padding: 8px 8px;
  }

  .advisor_cart {
    font-size: 15px;
    margin: 0 20px;
  }

  .pl_in td {
    width: 300px;
  }

  .conextlogo img {
    width: 20%;
  }
}

@media screen and (max-width: 660px) {
  .top img {
    width: 100%;
  }

  nav li {
    font-size: 9px;
    margin-left: 5px;
  }

  .aboutus_around {
    padding: 80px 30px;
  }

  .bcint {
    top: 53%;
  }

  .koe_sec {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 130px;
  }

  .bcaa {
    margin-left: 22%;
    margin-bottom: 5%;
  }

  .bcbb {
    margin-left: 10%;
  }

  .news_int {
    top: 17%;
  }

  .company_inner {
    margin: 0 auto;
  }

  .infodl {
    margin: 0 auto;
  }
}

@media screen and (max-width: 634px) {
  .company_inner {
    flex-direction: column;
  }

  .company_inner div {
    width: 90%;
    max-width: 100%;
  }

  .company_info {
    margin: 0 auto;
    text-align: center;
  }

  .infodl {
    margin-left: 20%;
  }

  .map iframe {
    height: 300px;
  }

  .companylink {
    margin: 0 auto;
  }

  .company_top {
    max-width: 100%;
  }

  .company_top h4 {
    font-size: 19px;
    padding: 32px;
  }

  .identity h2 {
    font-size: 18px;
    margin: 0;
    margin-bottom: 15px;
    padding: 18px 15px;
  }

  .identity h3 {
    font-size: 17px;
  }

  .profire {
    margin: 0 auto;
    font-size: 14px;
  }

  .profire h4 {
    margin-top: 40px;
  }

  .pro_table th {
    width: 100px;
  }

  .pro_table td {
    width: 70%;
  }

  .pro_table img {
    margin-top: 0;
    width: 20px;
  }

  .career img {
    margin-top: 0;
    width: 20px;
  }

  .career {
    display: block;
  }

  .career div {
    margin: 10px 0;
  }

  .career p {
    width: 100%;
  }

  .id_inner img {
    width: 200px;
    height: auto;
  }

  .id_int {
    width: 280px;
    font-size: 14px;
  }

  .company_wrap {
    margin: 70px auto;
  }

  .company_wrap h5 {
    font-size: 19px;
  }

  .cw {
    padding: 30px 30px;
  }

  .cw img {
    width: 150px;
  }

  .cw_dl {
    font-size: 14px;
  }

  .cw_dl dt {
    width: 200px;
    max-width: 100%;
    padding-left: 20px;
  }

  .cw_dl dd {
    margin-left: 15px;
  }

  .fmap {
    text-align: center;
    margin: 50px 10px;
  }

  .fmap iframe {
    width: 400px;
  }

  .pl_in {
    width: 400px;
    max-width: 90%;
  }

  .pl_in table th,
  .pl_in table td {
    width: 200px;
  }

  .spot {
    padding-left: 200px;
  }

  .footernavi_inner {
    display: block;
  }

  .bcarea {
    height: 1300px;
  }
}

@media screen and (max-width: 607px) {
  .top_logoname {
    padding: 30px 0 10px 20px;
    font-size: 16px;
    list-style: none;
    float: left;
  }

  .conect {
    border: solid 3px #d3b5ae;
    border-radius: 12px;
    display: inline-block;
    margin: 10px 200px 0px 10px;
    padding: 3px 10px;
    text-align: center;
    font-size: 15px;
    width: 150px;
  }
}

@media screen and (max-width: 587px) {
  body {
    padding-top: 0px;
  }

  .top img {
    width: 80%;
  }

  .top {
    justify-content: flex-start;
  }

  .topname {
    display: block;
    display: inline-block;
    font-size: 18px;
    line-height: 0.7;
  }

  .topname span {
    font-size: 10px;
  }

  .navi_inner span {
    display: none;
  }

  .toggle {
    display: block;
    position: fixed;
    right: 50px;
    top: 20px;
    width: 42px;
    height: 42px;
    z-index: 1000;
  }

  .toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 3px #333;
    transition: 0.35s ease-in-out;
    left: 6px;
  }

  .toggle span:nth-child(1) {
    top: 9px;
  }

  .toggle span:nth-child(2) {
    top: 18px;
  }

  .toggle span:nth-child(3) {
    top: 27px;
  }

  .toggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .toggle.active span:nth-child(2),
  .toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .navi_inner {
    width: 100%;
    position: fixed;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -110%;
    transition: ease 0.7s;
    z-index: 10;
    background-color: #fff;
    opacity: 0.8;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .navi_inner.active {
    top: 18px;
  }

  .navi_inner ul {
    display: block;
    color: #4e4a4a;
  }

  .navi_inner a {
    text-align: center;
  }

  .navi_inner li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #b2a9b5;
    color: #4e4a4a;
    padding: 7px 0;
    font-size: 14px;
  }

  .navi {
    max-width: 100%;
    height: 15px;
    background-color: #ead4ce;
    display: inline-block;
  }

  .navig {
    padding-bottom: 5px;
    position: relative;
  }

  /* 
    .top_logoname {
        padding: 30px 0 10px 20px;
        font-size: 16px;
        list-style: none;
        float: left;
    }

    .conect {
        border: solid 3px #d3b5ae;
        border-radius: 12px;
        display: inline-block;
        margin: 5px 0;
        padding: 3px 10px;
        text-align: center;
        font-size: 15px;
        width: 150px;
    } */

  .top_logoname {
    padding: 30px 0 10px 20px;
    font-size: 16px;
    list-style: none;
    float: left;
  }

  .conect {
    border: solid 3px #d3b5ae;
    border-radius: 12px;
    display: inline-block;
    margin: 10px 200px 0 0;
    padding: 3px 10px;
    text-align: center;
    font-size: 15px;
    width: 150px;
  }

  .comname {
    left: 14%;
  }

  .topimg {
    margin-top: 80px;
  }

  .business_sec {
    margin-top: 80px;
  }

  .pricelist {
    margin-top: 80px;
  }

  .companypage {
    margin-top: 80px;
  }

  .qanda {
    margin-top: 80px;
  }

  .script {
    margin-top: 80px;
  }

  .news_20 {
    margin-top: 150px;
  }

  .aboutus_inner {
    margin-bottom: 15px;
    top: -7%;
  }

  .aboutus_top {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .aboutus_text {
    font-size: 13px;
    line-height: 2;
  }

  .aboutus_around {
    padding: 50px 30px;
    height: 330px;
  }

  .businesscontent {
    margin-top: 300px;
  }

  .bcaa {
    margin-left: 37%;
  }

  .bcbb {
    margin-left: 20%;
  }

  .bccc {
    margin-left: 30%;
    margin-bottom: 20%;
  }

  .bcdd {
    margin-bottom: 38%;
  }

  .company {
    padding: 50px;
  }

  .company_info {
    font-size: 14px;
  }

  .company_info p {
    margin-left: 40%;
  }

  .contacth5 {
    font-size: 18px;
  }

  .business_wrap {
    margin: 20px auto 30px auto;
    font-size: 15px;
  }

  .business_h2 h2 {
    font-size: 19px;
  }

  .business_inn {
    padding: 50px 30px;
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .business_inn div {
    margin: 0 auto;
    text-align: center;
  }

  .business_inn img {
    width: 400px;
    margin: 10px auto;
  }

  .business_inn h3 {
    font-size: 17px;
  }

  .business_inn p {
    margin: 10px 0;
    margin-left: 10px;
  }

  .bsn_int {
    width: 320px;
    margin: 0 auto;
  }

  li {
    font-size: 13px;
  }

  .quanda_top h2 {
    font-size: 19px;
  }

  .bs_p {
    font-size: 15px;
  }

  .pricelist_inner {
    margin: 20px auto 70px auto;
  }

  .pl_in {
    margin: 60px auto;
    font-size: 15px;
  }

  .pl_in h3 {
    font-size: 17px;
    font-weight: bold;
  }

  .pl_in table {
    margin: 10px auto 10px auto;
  }

  .pl_in p {
    font-size: 14px;
  }

  .adv {
    font-size: 15px;
    padding: 10px 0px;
  }

  .price_cartion {
    font-size: 15px;
  }

  .advisor_inner {
    font-size: 13px;
    margin: 100px 15px;
  }

  .news_day {
    padding: 20px 7px 0 7px;
    font-size: 16px;
  }

  .newspage {
    padding: 50px 7px 100px 7px;
    font-size: 13px;
  }

  .business_pp {
    font-size: 14px;
  }

  .script {
    margin-top: 80px;
  }

  .price_top {
    margin-top: 80px;
  }

  .voice_top {
    margin-top: 80px;
  }
}

@media screen and (max-width: 558px) {
  .top_logoname {
    padding: 30px 0 10px 30px;
  }

  .conect {
    margin: 10px 100px 10px 0;
  }

  .qa-list dl::before {
    top: 0;
    bottom: -38px;
  }
}

@media screen and (max-width: 520px) {
  .aboutus_inner {
    top: -4%;
  }

  .aboutus_around {
    top: 40%;
  }

  .bcaa {
    margin-left: 30%;
  }

  .bcbb {
    margin-left: 15%;
  }

  .bccc {
    margin-left: 25%;
  }

  .bcdd {
    margin-left: 25%;
  }

  .bc_andmore {
    margin-left: 15px;
  }

  .newsh3 {
    top: -15%;
  }

  .news_int {
    top: 11%;
  }

  .conextlogo img {
    width: 30%;
  }

  .advisor_inner {
    width: 490px;
  }
}

@media screen and (max-width: 500px) {
  .identity h3 {
    font-size: 16px;
  }

  .aboutus {
    margin-bottom: 440px;
  }

  .id_inner {
    display: block;
  }

  .id_inner img {
    width: 150px;
    height: auto;
    margin: 20px 15px 10px 15px;
    float: left;
  }

  .id_int {
    width: 500px;
    max-width: 100%;
    font-size: 14px;
    margin: 0 auto;
    padding: 15px 15px;
  }

  .bcarea {
    padding-bottom: 11%;
  }

  .bcarea {
    height: auto;
  }

  .cw img {
    width: 100px;
  }

  .cw_dl dt {
    width: 110px;
    display: inline-block;
  }

  .cw_dl dd {
    flex-wrap: wrap-reverse;
    display: inline-block;
    word-break: break-all;
  }

  .fmap iframe {
    width: 300px;
    height: 300px;
  }

  form {
    font-size: 17px;
  }

  .navi_inner li {
    padding: 5px 0;
  }

  .qa-list dl dt {
    padding: 0 0 0 5px;
  }

  .business_h3 {
    margin-top: 40px;
  }

  .mailad {
    font-size: 13px;
  }

  .bc_inner {
    display: block;
    padding: 30px;
  }

  .bch2 {
    top: -23px;
  }

  .ctaa {
    margin-top: 0;
  }

  .bcimg {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 35px 0;
  }
}

@media screen and (max-width: 474px) {
  .top_logoname {
    padding: 30px 0 10px 10px;
  }

  .conect {
    margin: 10px 50px 10px 0;
  }

  .aboutus_around {
    padding: 50px 30px;
    height: 400px;
  }
}

@media screen and (max-width: 464px) {
  .ptema {
    display: block;
  }
}

@media screen and (max-width: 428px) {
  .topimg_pc {
    display: none;
  }

  .topimg_sp {
    display: block;
  }

  .top_comment {
    color: #ffffff;
    font-size: 15px;
    line-height: 30px;
    position: absolute;
    top: 30%;
    left: 12%;
  }
  .coconect {
    margin: 15px 30px;
  }

  .nextpage {
    margin-left: 0px;
    text-align: center;
  }

  .koe_inner li img {
    vertical-align: middle;
    width: 30px;
    margin: 0 15px;
  }

  .koe_inner li {
    margin: 25px 10px;
  }

  .quanda_top {
    height: 150px;
    background-image: url(../images/mobil1.png);
    padding-top: 50px;
  }

  .quanda_top h1 {
    background-color: hsl(229, 16%, 87%, 0.5);
    text-align: center;
    height: 50px;
    font-size: 27px;
    padding: 5px;
  }

  .company_top {
    margin: 0 auto;
    height: 150px;
    background-image: url(../images/mobil.png);
    padding-top: 50px;
  }

  .company_top h4 {
    background-color: hsl(229, 16%, 87%, 0.8);
    text-align: center;
    height: 50px;
    font-size: 27px;
    padding: 5px;
  }

  .business_h2 {
    margin: 0 auto;
    height: 150px;
    background-image: url(../images/mobil2.png);
    background-image: 100%;
    padding-top: 50px;
  }

  .business_h2 h2 {
    background-color: hsl(229, 16%, 87%, 0.3);
    text-align: center;
    height: 50px;
    font-size: 27px;
    padding: 5px;
  }

  .price_top {
    height: 150px;
    background-image: url(../images/mobil3.png);
    padding-top: 50px;
  }

  .price_top h2 {
    background-color: hsl(229, 16%, 87%, 0.8);
    text-align: center;
    height: 50px;
    font-size: 27px;
    padding: 5px;
  }

  .voicepage {
    max-width: 100%;
  }

  .voice_top {
    height: 150px;
    background-image: url(../images/mobilvoice.jpg);
    padding-top: 50px;
  }

  .voice_top h4 {
    background-color: hsl(229, 16%, 87%, 0.8);
    text-align: center;
    height: 50px;
    font-size: 27px;
    padding: 5px;
  }

  .voice_inner {
    max-width: 95%;
    margin: 20px auto 100px auto;
  }

  .voice_contents {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0px;
    margin: 50px auto;
  }

  .voice_p {
    padding: 3% 3%;
    border: #aeabab solid 1.5px;
    border-radius: 10px;
    width: 120%;
    margin: 0 auto;
  }

  .voice_h {
    font-size: 20px;
    border-bottom: 3px solid #64aadc;
    color: #64aadc;
    padding: 10px;
  }

  .voice_i {
    font-size: 20px;
    border-bottom: 3px solid #dd81a7;
    color: #dd81a7;
    padding: 10px;
  }

  .voice_image img {
    display: none;
  }

  .voice_p img {
    display: block;
    width: 70px;
    height: 70px;
    float: left;
  }

  .voice_spp {
    font-size: 12px;
    color: #aaa;
    text-align: right;
    display: flex;
    justify-content: flex-end;
  }

  .voice_spp::before {
    content: "\A";
    white-space: pre;
  }

  .voice_del {
    display: none;
  }

  /*
    .voice_j{
        display: flex;
        align-items: flex-end;
    }
*/

  .comname {
    bottom: 4%;
    left: 20%;
  }

  .spbr {
    display: block;
  }

  .top_cta h3 {
    font-size: 17px;
  }

  .aboutus_around {
    top: 60%;
  }

  .koe1 {
    font-size: 17px;
  }

  .bcaa {
    margin-left: 20%;
    margin-bottom: 0;
  }

  .bcbb {
    margin-left: 0;
    margin-bottom: 50%;
  }

  .bccc {
    margin-left: 20%;
    margin-bottom: 30%;
  }

  .bcdd {
    margin-left: 20%;
    margin-bottom: 50%;
  }

  .bc_andmore {
    margin-left: 3px;
    margin-top: 8px;
  }

  .newsdl dt,
  .newsdl dd {
    padding: 6px;
  }

  .infodl {
    margin-left: 10%;
  }

  .company_info p {
    margin-left: 35%;
  }

  .bcc_andmore a {
    padding: 10px 40px;
  }

  .company_info p {
    margin-left: 26%;
  }

  .advisor_inner {
    margin: 100px auto;
    width: 395px;
  }
}

@media screen and (max-width: 425px) {
  .top_logoname {
    padding: 30px 0 8px 5px;
  }

  .conect {
    margin: 8px 50px 10px 0;
  }

  .bsn_int {
    width: 350px;
  }
}

@media screen and (max-width: 419px) {
  .map iframe {
    height: 250px;
  }

  .top_cta p {
    font-size: 14px;
  }

  .pl_in {
    width: 350px;
    max-width: 90%;
  }

  .pl_in table th,
  .pl_in table td {
    width: 175px;
  }

  .taiouarea {
    font-size: 13px;
  }

  .bcc_andmore a {
    padding: 10px 40px;
  }

  .id_int {
    padding: 0 0;
  }
}

@media screen and (max-width: 413px) {
  .top_logoname {
    padding: 30px 0 8px 5px;
  }

  .conect {
    margin: 8px 30px 10px 0;
    font-size: 14px;
  }

  .top_name img {
    width: 130px;
    height: 70px;
  }

  .bsn_int {
    width: 320px;
  }

  .aboutus_around {
    padding: 50px 20px;
  }
}

@media screen and (max-width: 400px) {
  .conect {
    margin: 8px 70px 5px 0;
    font-size: 14px;
  }
}

@media screen and (max-width: 390px) {
  .aboutus_top {
    font-size: 12px;
  }

  .aboutus_around {
    padding: 40px 25px;
    height: 480px;
  }

  .aboutus {
    margin-bottom: 550px;
  }

  .bcbb {
    margin-left: 3%;
  }

  .bcdd {
    margin-left: 18%;
  }

  .bc_andmore {
    margin-left: 1px;
  }

  .map iframe {
    height: 220px;
  }

  .bcc_andmore a {
    padding: 10px 40px;
  }

  .advisor_inner {
    margin: 100px auto;
    width: 375px;
  }

  .identity h2 {
    font-size: 17px;
  }
}

@media screen and (max-width: 385px) {
  .price_cartion {
    margin: 0 35px;
  }
}

@media screen and (max-width: 375px) {
  .conect {
    margin: 8px 40px 10px 0;
  }

  .bsn_int {
    width: 300px;
  }

  .tetuduki {
    display: block;
  }

  .tetudukii {
    padding-left: 240px;
  }

  .bcc_andmore a {
    padding: 10px 40px;
  }

  .advisor_inner {
    margin: 100px auto;
    width: 355px;
  }

  .identity h2 {
    font-size: 16px;
  }
}

@media screen and (max-width: 371px) {
  .cw_dl dt {
    padding-left: 10px;
  }
}

@media screen and (max-width: 363px) {
  .romukyuyo {
    padding-left: 130px;
  }

  .romujosei {
    padding-left: 140px;
  }

  .bsn_int {
    width: 260px;
    margin: 0 auto;
  }

  .cw img {
    width: 85px;
  }

  .business_pp {
    padding: 0 20px;
    margin: 5px 15px;
  }

  .spot {
    padding-left: 180px;
  }

  .bcbb {
    font-size: 10px;
    margin-bottom: 60%;
  }

  .bccc {
    margin-left: 15%;
    margin-bottom: 33%;
  }

  .bcdd {
    margin-left: 13%;
    margin-bottom: 55%;
  }

  .bc_andmore {
    font-size: 11px;
  }

  .advisor_inner {
    margin: 100px auto;
    width: 340px;
  }
}

@media screen and (max-width: 355px) {
  .top_logoname {
    padding: 30px 0 5px 0px;
  }

  .cta a {
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: 3px 3px 10px 0px rgba(255, 255, 255, 0.75) inset,
      -3px -3px 10px 0px rgba(0, 0, 0, 0.75) inset;
    font-size: 16px;
    text-decoration: none;
    color: #111;
    white-space: nowrap;
  }

  .conect {
    margin: 8px 0px 10px 0;
    font-size: 14px;
  }

  .toggle {
    right: 25px;
    top: 25px;
  }

  .tetudukii {
    padding-left: 230px;
  }

  .identity h2 {
    font-size: 17px;
  }
}

@media screen and (max-width: 326px) {
  .tetudukii {
    padding-left: 220px;
  }
}

@media screen and (max-width: 320px) {
  .comname {
    font-size: 11px;
  }

  .aboutus {
    margin: 20px auto;
  }

  .aboutus_inner {
    top: -5%;
    left: 9%;
  }

  .aboutus_top {
    font-size: 11px;
  }

  .aboutus_text {
    font-size: 10px;
  }

  .aboutus_around {
    height: 270px;
  }

  .bcbb {
    font-size: 11px;
    margin-bottom: 38%;
    margin-left: 10%;
  }

  .bccc {
    margin-bottom: 38%;
  }

  .bcdd {
    margin-bottom: 63%;
  }

  .bc_andmore {
    font-size: 11px;
    text-align: center;
  }

  .bc_andmore a {
    padding: 5px 12px;
    text-align: center;
  }

  .news_int {
    left: 7%;
  }

  .companyh4 {
    margin-right: 10%;
  }

  .map iframe {
    height: 190px;
  }

  .company_info p {
    margin-left: 11%;
  }

  .bcc_andmore a {
    padding: 10px 40px;
  }

  .infodl {
    margin-left: 0;
  }

  .advisor_inner {
    margin: 100px auto;
    width: 300px;
  }
}
