@charset "UTF-8";
/*------------------------------------------------------------
reset
------------------------------------------------------------*/
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic Antique", "Noto Sans JP", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  overflow-x: hidden;
}

.fixed-image {
  position: fixed;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 60%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
  z-index: -1;
}

.fixed-image.visible {
  opacity: 1;
}

summary {
  display: block;
  list-style: none;
}

/* 一部ブラウザで消えなかった場合は以下も追記 */
summary::-webkit-details-marker {
  display: none;
}

a[href^="geo:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

ul li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

a {
  text-decoration: none;
}

a:visited {
  color: #333333;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーー
汎用Mixin
ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーー
テキスト、スクロールアニメーション
ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.heading-title span,
.heading span,
.section-title span {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn_down {
  opacity: 0;
  transform: translate(0, -50%);
  transition: 2s;
}

.fadeIn_down.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}

.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2s;
}

.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.delay01 {
  transition-delay: 0.1s;
}

.delay02 {
  transition-delay: 0.2s;
}

.delay03 {
  transition-delay: 0.3s;
}

.delay04 {
  transition-delay: 0.4s;
}

.delay05 {
  transition-delay: 0.5s;
}

.delay06 {
  transition-delay: 0.6s;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーー
汎用、ベースクラス
ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.cf::after,
.clearfix::after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  line-height: 0;
  clear: both;
}

.inner {
  width: 1230px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding-right: 5%;
    padding-left: 5%;
  }
}

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

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

.start {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.start p {
  position: fixed;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 200px;
  height: auto;
}
.start p img {
  width: 200px;
  height: auto;
}

.heading-title {
  font-family: "lore", serif;
  font-size: 68px;
  letter-spacing: 10px;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .heading-title {
    text-align: center;
    font-size: 32px;
    letter-spacing: 8px;
    line-height: 1.2;
  }
}
.heading-title span {
  font-weight: 100;
}

p.sub-title {
  font-size: 16px;
  letter-spacing: 3px;
  color: #016CD2;
}
@media screen and (max-width: 768px) {
  p.sub-title {
    font-size: 12px;
  }
}

.font-lora {
  font-family: "lore", serif;
}

header {
  position: fixed;
  width: 100%;
  padding: 0 5%;
  max-width: 100vw;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 8000;
  transition: all 1s ease-in-out;
}
@media screen and (max-width: 768px) {
  header {
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
    transform: none;
    padding: 0;
  }
}
header.scrolled {
  background: #fff;
  height: 90px;
}
header.scrolled .header-left-area {
  height: auto;
}
header.scrolled .logo {
  width: 78px;
  height: 72px;
}
header.scrolled .logo a img {
  width: 78px;
  height: auto;
}
header.scrolled .gNav {
  bottom: 0px;
}
header.scrolled nav .navi p {
  color: #0168b7;
}
header .header-left-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  height: 114px;
  position: relative;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  header .header-left-area {
    z-index: 100;
    width: 73px;
    height: 70px;
  }
}
header .logo {
  height: 114px;
  width: 119px;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  header .logo {
    width: 73px;
    height: 70px;
  }
}
header .logo a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo a img {
  width: 90px;
  height: 90px;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  header .logo a img {
    width: 60px;
    height: 57px;
  }
}
header .btn-gNav {
  display: none;
}
@media screen and (max-width: 768px) {
  header .btn-gNav {
    display: block;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 55px;
    height: 56px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 400ms;
    background: #0168B7;
  }
}
@media screen and (max-width: 768px) {
  header .btn-gNav span {
    position: absolute;
    width: 28px;
    height: 3px;
    background: #ffffff;
    transition: all 400ms;
    right: 50%;
    transform: translateX(50%);
  }
}
header .btn-gNav span:nth-child(1) {
  top: 15px;
}
header .btn-gNav span:nth-child(2) {
  top: 26px;
}
header .btn-gNav span:nth-child(3) {
  top: 36px;
}
header .btn-gNav.open span:nth-child(1) {
  background: #ffffff;
  top: 28px;
  left: 15px;
  transform: rotate(-45deg);
}
header .btn-gNav.open span:nth-child(2),
header .btn-gNav.open span:nth-child(3) {
  top: 28px;
  left: 15px;
  background: #ffffff;
  transform: rotate(45deg);
}
header .gNav {
  position: relative;
  bottom: 15px;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  header .gNav {
    position: fixed;
    top: 0;
    bottom: unset;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    font-size: 16px;
    box-sizing: border-box;
    z-index: 1;
    padding-top: 0px;
    transition: 0.3s;
  }
}
header .gNav-margin {
  width: 100%;
  height: 50px;
}
header .gNav.open {
  right: 0;
}
@media screen and (max-width: 768px) {
  header .gNav.open {
    overflow-y: scroll;
  }
}
header nav {
  font-family: "YuGothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}
header nav .navi {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  header nav .navi {
    padding: 0;
    width: 82%;
    height: auto;
    margin: 0 auto;
    display: block;
    flex-direction: column;
    text-align: left;
    position: relative;
    top: 100px;
  }
}
header nav .navi .pcNavi {
  height: 100px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header nav .navi .pcNavi {
    display: block;
    height: unset;
  }
}
@media screen and (max-width: 768px) {
  header nav .navi .pcOnly {
    display: none;
  }
}
header nav .navi a {
  color: white;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  header nav .navi a {
    color: #333333;
  }
}
header nav .navi a:visited {
  color: white;
}
@media screen and (max-width: 768px) {
  header nav .navi a:visited {
    color: #333333;
  }
}
header nav .navi a:hover p {
  color: #0168B7;
  border-bottom: 2px solid #0168B7;
}
header nav .navi a.contact-link {
  padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
  header nav .navi a.contact-link {
    padding-bottom: 0px;
  }
}
header nav .navi a.contact-link:hover p {
  border-bottom: unset;
}
header nav .navi .navi-txt {
  margin-right: 36px;
  padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
  header nav .navi .navi-txt {
    margin-right: 0px;
    padding-bottom: 10px;
  }
}
header nav .navi p {
  color: white;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  header nav .navi p {
    color: #333333;
    padding: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  header nav .navi .arrow {
    position: relative;
    right: 12px;
  }
}
@media screen and (max-width: 768px) {
  header nav .navi li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F1F1F1;
  }
}
@media screen and (max-width: 768px) {
  header nav .navi li img {
    width: 8px;
    height: 10px;
  }
}
header nav .navi li.contact {
  background: #FFB300;
  justify-content: space-between;
  width: 230px;
  box-sizing: border-box;
  border-radius: 100vh;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  header nav .navi li.contact {
    width: 100%;
    background: #FFB300;
    justify-content: center;
    border-radius: 100vh;
    padding: 0px 30px;
    margin-top: 27px;
    border-bottom: unset;
    gap: 10px;
  }
}
header nav .navi li.contact a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  header nav .navi li.contact a {
    color: #fff;
  }
}
header nav .navi li.contact a:visited {
  color: #fff;
}
@media screen and (max-width: 768px) {
  header nav .navi li.contact a:visited {
    color: #fff;
  }
}
header nav .navi li.contact p {
  color: #fff;
  padding: 0px;
}
@media screen and (max-width: 768px) {
  header nav .navi li.contact p {
    color: #fff;
    padding: 15px 0px 15px 0px;
    letter-spacing: 3px;
    font-weight: bold;
  }
}
header nav .navi li.contact img {
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 768px) {
  header nav .navi li.contact img {
    width: 33px;
    height: 33px;
  }
}
header nav .navi li.contact img.arrow {
  width: 6px;
  height: 8px;
  position: relative;
  left: 3px;
  top: 1px;
}
@media screen and (max-width: 768px) {
  header nav .navi li.contact img.arrow {
    left: 30px;
    top: 0px;
  }
}
@media screen and (max-width: 768px) {
  header nav .navi li.header-tel {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0px;
    justify-content: start;
    border-bottom: none;
    margin-top: 28px;
  }
}
@media screen and (max-width: 768px) {
  header nav .navi li.header-tel .blue-tel-icon {
    width: 43px;
    height: auto;
    position: relative;
    bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  header nav .navi li.header-tel .right-txt-area {
    position: relative;
    bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  header nav .navi li.header-tel .right-txt-area .tel-number {
    font-size: 32px;
    letter-spacing: 4px;
    padding: 0px;
    color: #0168B7;
    line-height: 1;
  }
}
@media screen and (max-width: 768px) {
  header nav .navi li.header-tel .right-txt-area .business-hour {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 0px;
    color: #0168B7;
  }
}
@media screen and (max-width: 768px) {
  header nav .navi #headerList-service_sp .plus,
header nav .navi #headerList-service_sp .minus {
    position: relative;
    right: 9px;
  }
}
header nav .navi #headerList-service_sp .plus {
  display: none;
}
@media screen and (max-width: 768px) {
  header nav .navi #headerList-service_sp .plus {
    width: 15px;
    height: 15px;
    display: block;
  }
}
header nav .navi #headerList-service_sp .minus {
  display: none;
}
@media screen and (max-width: 768px) {
  header nav .navi #headerList-service_sp .minus {
    width: 15px;
    height: 1px;
  }
}
header nav .navi #dropdown-wrapper {
  display: none;
}
header nav .navi .show {
  display: block;
}
@media screen and (max-width: 768px) {
  header nav .navi .dropdown {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
    margin: 30px 0;
  }
}
@media screen and (max-width: 768px) {
  header nav .navi .dropdown li {
    border-bottom: unset;
    align-items: flex-start;
    width: 150px;
    height: 144px;
  }
}
@media screen and (max-width: 768px) {
  header nav .navi .dropdown a {
    font-size: 13px;
    font-weight: bold;
    color: #0168B7;
  }
}
@media screen and (max-width: 768px) {
  header nav .navi .dropdown .thumbnail {
    width: 150px;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  header nav .navi .dropdown .arrow {
    width: 6px;
    height: 7.86px;
    margin-left: 10px;
    position: relative;
    bottom: 1px;
    right: 0px;
  }
}
@media screen and (max-width: 768px) {
  header nav .navi .dropdown .page-link {
    width: 11px;
    height: 11px;
    margin-left: 10px;
  }
}

#mouseover {
  display: none;
  width: 90%;
  max-width: 1100px;
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 30px;
  padding: 42px 120px;
  z-index: 100000;
  box-sizing: border-box;
}
#mouseover .mouseover-tab {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 48px;
       column-gap: 48px;
  row-gap: 27px;
}
#mouseover .mouseover-tab a {
  display: flex;
  flex-wrap: wrap;
}
#mouseover .mouseover-tab a span {
  font-size: 16px;
  font-weight: bold;
  color: #0168B7;
}
#mouseover .mouseover-tab .thumbnail {
  width: 100%;
  max-width: 180px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
#mouseover .mouseover-tab .arrow {
  width: 6px;
  height: 7.86px;
  margin-left: 10px;
  position: relative;
  bottom: 1px;
}
#mouseover .mouseover-tab .page-link {
  width: 11px;
  height: 11px;
  margin-left: 10px;
}

.parallax-mv {
  position: relative;
  width: 100%;
  height: 850px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .parallax-mv {
    height: 618px;
  }
}
.parallax-mv .sectionInner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip: rect(auto, auto, auto, auto);
  /* これで背景を切り抜く */
}
.parallax-mv .imageBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: right top;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  -webkit-animation: zoomOut 25s infinite;
          animation: zoomOut 25s infinite;
}
@media screen and (max-width: 768px) {
  .parallax-mv #imageBg01,
.parallax-mv #imageBg02 {
    background-position: top;
    background-size: contain;
  }
}
.parallax-mv .imageBg.active {
  opacity: 1;
}
@-webkit-keyframes zoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.parallax-mv div.cntFrame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  padding: 0 100px;
  margin-top: 100vh;
  color: #111;
}
@media screen and (max-width: 768px) {
  .parallax-mv div.cntFrame {
    padding: 0 15px;
  }
}
.parallax-mv .mv-txtArea {
  position: absolute;
  top: 40%;
  left: 5%;
  padding-bottom: 50px;
  text-align: left;
  color: #fff;
  line-height: 1.2;
  width: 100%;
  max-width: 771px;
}
@media screen and (max-width: 768px) {
  .parallax-mv .mv-txtArea {
    bottom: 4%;
    padding-bottom: unset;
    width: 100%;
    max-width: 100%;
    top: unset;
    left: 0;
  }
}
.parallax-mv .mv-txtArea .mv-subtitle {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 32px;
  color: #1EB9EF;
  letter-spacing: 10px;
}
@media screen and (max-width: 768px) {
  .parallax-mv .mv-txtArea .mv-subtitle {
    font-size: 12px;
    margin-bottom: 5px;
    font-family: "Lora", serif;
    letter-spacing: 4.9px;
    padding-left: 5%;
  }
}
.parallax-mv .mv-txtArea .mv-title {
  font-weight: 100;
  font-size: 87px;
  letter-spacing: 7px;
  line-height: 1;
  margin-bottom: 37px;
}
@media screen and (max-width: 768px) {
  .parallax-mv .mv-txtArea .mv-title {
    font-size: 40px;
    line-height: 1.6;
    letter-spacing: 10.8px;
    margin-bottom: 0px;
    padding-left: 5%;
  }
}
.parallax-mv .mv-txtArea .mv-txt {
  font-weight: 100;
  font-size: 32px;
  letter-spacing: 10px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .parallax-mv .mv-txtArea .mv-txt {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 4.8px;
    padding-left: 5%;
  }
}
.parallax-mv .mv-txtArea .mv-imgArea {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .parallax-mv .mv-txtArea .mv-imgArea {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 25px;
    width: 100%;
    max-width: 375px;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    padding: 0 5%;
  }
}
.parallax-mv .mv-txtArea .mv-imgArea img {
  width: 311px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .parallax-mv .mv-txtArea .mv-imgArea img {
    width: 100%;
  }
}

.normal-mv {
  width: 100%;
  height: 450px;
  background-image: url("../img/about/normal-mv.png");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .normal-mv {
    height: 150px;
    margin-top: 70px;
    background-image: url("../img/sp/about/sp_normal-mv.png");
  }
}
.normal-mv .sectionInner {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}
.normal-mv .sectionInner .mv-txtArea {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .normal-mv .sectionInner .mv-txtArea {
    width: 100%;
    max-width: 319px;
  }
}
.normal-mv .sectionInner .mv-txtArea .mv-title {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 15px;
}
@media screen and (max-width: 768px) {
  .normal-mv .sectionInner .mv-txtArea .mv-title {
    font-size: 24px;
    letter-spacing: 6px;
  }
}
.normal-mv .sectionInner .mv-txtArea .mv-subtitle {
  color: #0168B7;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .normal-mv .sectionInner .mv-txtArea .mv-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
  }
}

#advertising-txt {
  width: 1230px;
  margin: 43px auto;
  background: #fff;
  padding: 30px 10px;
}
@media screen and (max-width: 768px) {
  #advertising-txt {
    width: 100%;
    padding: 22px 10px;
  }
}
#advertising-txt p {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 8px;
  color: #016CD2;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #advertising-txt p {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.5;
  }
}

.section-heading {
  width: 100%;
  height: auto;
  margin: 0 auto 41px auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-heading {
    width: 80%;
    margin: 0 auto 27px auto;
  }
}
.section-heading .section-subTitle {
  font-size: 16px;
  font-weight: normal;
  color: #0168B7;
  letter-spacing: 6px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .section-heading .section-subTitle {
    font-size: 12px;
    letter-spacing: 3px;
  }
}
.section-heading .section-title {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 9px;
  font-family: "lore", serif;
}
@media screen and (max-width: 768px) {
  .section-heading .section-title {
    font-size: 30px;
    letter-spacing: 7px;
  }
}
.section-heading .section-title span {
  font-weight: 400;
  font-family: "lore", serif;
}

.flex-heading {
  width: 100%;
  display: flex;
  justify-content: start;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  .flex-heading {
    display: block;
  }
}
.flex-heading .left {
  width: 280px;
}
@media screen and (max-width: 768px) {
  .flex-heading .left {
    width: 100%;
  }
}
.flex-heading .left .section-heading {
  width: 100%;
  height: auto;
  margin: 0;
  text-align: left;
  position: relative;
  left: 50px;
}
@media screen and (max-width: 768px) {
  .flex-heading .left .section-heading {
    width: 90%;
    max-width: 240px;
    margin: 0 auto;
    text-align: center;
    left: unset;
  }
}
.flex-heading .right {
  width: 520px;
  position: relative;
  top: 10px;
}
.flex-heading .right p {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}

#voice {
  /* ↓ スライドの外枠 */
}
#voice .item__title {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  top: 30px;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #voice .item__title {
    top: 10px;
    justify-content: unset;
  }
}
#voice .item__title .logo {
  max-width: 641px;
  width: 60%;
  height: auto;
}
#voice .item__title h2 {
  font-weight: bold;
  font-size: 42px;
  letter-spacing: 7px;
}
#voice .item__title .line {
  width: 30%;
  max-width: 410px;
}
#voice .item__bg {
  background-image: linear-gradient(to bottom, #F8F8F8 0%, #F8F8F8 20%, #CAE6E0 20%, #CAE6E0 100%);
  padding: 120px 0px 5px 0px;
}
@media screen and (max-width: 768px) {
  #voice .item__bg {
    background-image: linear-gradient(to bottom, #F8F8F8 0%, #F8F8F8 15%, #CAE6E0 15%, #CAE6E0 100%);
    padding: 60px 20px 0px 20px;
  }
}
@media screen and (max-width: 768px) {
  #voice .item__bg h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
  }
}
@media screen and (max-width: 768px) {
  #voice .item__bg .border {
    border-bottom: 2px solid #CAE6E0;
    display: block;
    width: 36px;
    margin: 0 auto 23px auto;
  }
}
#voice .three-column {
  display: flex;
  justify-content: space-between;
  max-width: 1230px;
  margin: 0 auto 70px auto;
}
@media screen and (max-width: 768px) {
  #voice .three-column {
    display: none;
  }
}
#voice .three-column .item__box {
  width: 395px;
  height: auto;
  background-color: #fff;
  border-radius: 5%;
}
@media screen and (max-width: 768px) {
  #voice .three-column .item__box {
    max-width: 100%;
    width: 100%;
  }
}
#voice .three-column .item__box img {
  width: 395px;
  height: 228px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #voice .three-column .item__box img {
    width: 100%;
    height: auto;
  }
}
#voice .three-column .item__box .box__inner {
  padding: 35px;
}
#voice .three-column .item__box .box__title {
  font-size: 24px;
  font-weight: bold;
  color: #47A995;
  text-align: center;
}
#voice .three-column .item__box .box__address {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 25px 0px;
}
#voice .three-column .item__box .box__detail {
  font-size: 16px;
  border-top: 1px solid #47A995;
  padding-top: 25px;
  line-height: 2.1;
  height: 216px;
  /* 高さを固定 */
  overflow: hidden;
  /* 溢れた部分を隠す */
  display: -webkit-box;
  /* 必須 - ブラウザの互換性対応 */
  -webkit-line-clamp: 7;
  /* 表示する行数を設定 */
  -webkit-box-orient: vertical;
  /* 縦方向にレイアウトを指定 */
  text-overflow: ellipsis;
  /* 省略記号 (...) を表示 */
  word-wrap: break-word;
  /* テキストの折り返し */
}
@media screen and (max-width: 768px) {
  #voice .three-column .item__box .box__detail {
    -webkit-line-clamp: 7;
  }
}
#voice .slider-txt01 {
  /*  ↓ スライド（コンテンツ） */
  /* ↓ 左右のボタン */
  /* ↓ インジケーター */
}
@media screen and (max-width: 768px) {
  #voice .slider-txt01 {
    position: relative;
  }
}
#voice .slider-txt01 .slide-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  padding-bottom: 30px;
  /* はみ出したスライドを隠す */
}
#voice .slider-txt01 .slide {
  /*スライド全体 */
  width: 300%;
  height: 100%;
  display: flex;
  transition: all 0.3s;
}
#voice .slider-txt01 .slide .slide-inner {
  /* スライド */
  width: 33.33%;
  height: 100%;
  font-size: 16px;
}
#voice .slider-txt01 .slide .slide-inner .item__box {
  max-width: 395px;
  width: 33%;
  height: auto;
  background-color: #fff;
  border-radius: 5%;
}
@media screen and (max-width: 768px) {
  #voice .slider-txt01 .slide .slide-inner .item__box {
    max-width: 100%;
    width: 100%;
  }
}
#voice .slider-txt01 .slide .slide-inner .item__box img {
  width: 100%;
  height: auto;
}
#voice .slider-txt01 .slide .slide-inner .item__box .box__inner {
  padding: 35px;
}
#voice .slider-txt01 .slide .slide-inner .item__box .box__title {
  font-size: 24px;
  font-weight: bold;
  color: #47A995;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #voice .slider-txt01 .slide .slide-inner .item__box .box__title {
    font-size: 20px;
  }
}
#voice .slider-txt01 .slide .slide-inner .item__box .box__address {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 25px 0px;
}
@media screen and (max-width: 768px) {
  #voice .slider-txt01 .slide .slide-inner .item__box .box__address {
    font-size: 13px;
    margin: 10px 18px;
  }
}
#voice .slider-txt01 .slide .slide-inner .item__box .box__detail {
  font-size: 16px;
  border-top: 1px solid #47A995;
  padding-top: 25px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #voice .slider-txt01 .slide .slide-inner .item__box .box__detail {
    font-size: 14px;
    letter-spacing: 2px;
  }
}
#voice .slider-txt01 .slide1 {
  /* スライドさせるために必要なクラス */
  transform: translateX(0);
}
#voice .slider-txt01 .slide2 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-33.33%);
}
#voice .slider-txt01 .slide3 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-66.66%);
}
#voice .slider-txt01 .slide .slide-inner:nth-of-type(1) {
  /* 背景色 */
}
#voice .slider-txt01 .slide .slide-inner:nth-of-type(2) {
  /* 背景色 */
}
#voice .slider-txt01 .slide .slide-inner:nth-of-type(3) {
  /* 背景色 */
}
#voice .slider-txt01 .prev-wrapper,
#voice .slider-txt01 .next-wrapper {
  position: absolute;
  background-color: #F8F8F8;
  padding: 10px;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  bottom: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #voice .slider-txt01 .prev-wrapper,
#voice .slider-txt01 .next-wrapper {
    padding: 5px;
    bottom: 55%;
    transform: translateY(50%);
    width: 15px;
    height: 15px;
  }
}
#voice .slider-txt01 .next-wrapper {
  right: -30px;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  #voice .slider-txt01 .next-wrapper {
    right: 0px;
  }
}
@media screen and (max-width: 768px) {
  #voice .slider-txt01 .next-wrapper {
    right: -15px;
  }
}
#voice .slider-txt01 .prev-wrapper {
  left: -30px;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  #voice .slider-txt01 .prev-wrapper {
    left: 0px;
  }
}
@media screen and (max-width: 768px) {
  #voice .slider-txt01 .prev-wrapper {
    left: -15px;
  }
}
#voice .slider-txt01 .next {
  display: block;
  width: 15px;
  height: 15px;
  position: relative;
  bottom: 5px;
  left: 2px;
  cursor: pointer;
  border-top: solid 3px #CAE6E0;
  border-right: solid 3px #CAE6E0;
  transform: rotate(45deg) translateY(50%);
}
#voice .slider-txt01 .prev {
  display: block;
  width: 15px;
  height: 15px;
  position: relative;
  bottom: 5px;
  left: 5px;
  cursor: pointer;
  border-top: solid 3px #CAE6E0;
  border-right: solid 3px #CAE6E0;
  transform: rotate(-135deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
  #voice .slider-txt01 .next,
#voice .slider-txt01 .prev {
    width: 5px;
    height: 5px;
    bottom: 2px;
    border-top: solid 2px #CAE6E0;
    border-right: solid 2px #CAE6E0;
  }
}
#voice .slider-txt01 .indicator {
  margin-top: 20px;
  width: 100%;
  display: flex;
  -moz-column-gap: 18px;
       column-gap: 18px;
  z-index: 10;
  justify-content: center;
  align-items: center;
}
#voice .slider-txt01 .indicator li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  list-style: none;
  background-color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #voice .slider-txt01 .indicator li {
    width: 8px;
    height: 8px;
  }
}
#voice .slider-txt01 .indicator li:first-of-type {
  background-color: #333333;
}
#voice .one-column {
  max-width: 1230px;
  margin: 0 auto;
  /*  ↓ スライド（コンテンツ） */
  /* ↓ 左右のボタン */
  /* ↓ インジケーター */
}
@media screen and (max-width: 768px) {
  #voice .one-column {
    max-width: 100%;
  }
}
#voice .one-column .item__movie {
  background-color: #fff;
  border-radius: 2%;
  padding: 80px;
}
@media screen and (max-width: 768px) {
  #voice .one-column .item__movie {
    padding: 30px 20px;
  }
}
#voice .one-column .item__movie h3 {
  text-align: center;
  font-size: 32px;
  letter-spacing: 5px;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #voice .one-column .item__movie h3 {
    font-size: 15px;
  }
}
#voice .one-column .item__movie img {
  width: 100%;
  height: auto;
}
#voice .one-column .item__movie iframe {
  width: 100%;
  height: 595px;
}
@media screen and (max-width: 768px) {
  #voice .one-column .item__movie iframe {
    height: 164px;
  }
}
#voice .one-column .slide-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 30px;
  /* はみ出したスライドを隠す */
}
#voice .one-column .slide-overflow {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#voice .one-column .slide {
  /*スライド全体 */
  width: 300%;
  height: 100%;
  display: flex;
  transition: all 0.3s;
}
#voice .one-column .slide .slide-inner {
  /* スライド */
  width: 33.33%;
  height: 100%;
  font-size: 16px;
}
#voice .one-column .slide .slide-inner .item__movie {
  background-color: #fff;
  border-radius: 2%;
  padding: 80px;
}
@media screen and (max-width: 768px) {
  #voice .one-column .slide .slide-inner .item__movie {
    padding: 30px 20px 70px 20px;
  }
}
#voice .one-column .slide .slide-inner .item__movie h3 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #voice .one-column .slide .slide-inner .item__movie h3 {
    font-size: 15px;
  }
}
#voice .one-column .slide .slide-inner .item__movie img {
  width: 100%;
  height: auto;
}
#voice .one-column .slide1 {
  /* スライドさせるために必要なクラス */
  transform: translateX(0);
}
#voice .one-column .slide2 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-33.33%);
}
#voice .one-column .slide3 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-66.66%);
}
#voice .one-column .arrow-box {
  position: relative;
}
#voice .one-column .prev-wrapper,
#voice .one-column .next-wrapper {
  position: absolute;
  background-color: #F8F8F8;
  padding: 10px;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  bottom: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #voice .one-column .prev-wrapper,
#voice .one-column .next-wrapper {
    padding: 5px;
    bottom: 45%;
    transform: translateY(50%);
    width: 15px;
    height: 15px;
  }
}
#voice .one-column .next-wrapper {
  right: -30px;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  #voice .one-column .next-wrapper {
    right: 0px;
  }
}
@media screen and (max-width: 768px) {
  #voice .one-column .next-wrapper {
    right: -15px;
  }
}
#voice .one-column .prev-wrapper {
  left: -30px;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  #voice .one-column .prev-wrapper {
    left: 0px;
  }
}
@media screen and (max-width: 768px) {
  #voice .one-column .prev-wrapper {
    left: -15px;
  }
}
#voice .one-column .next {
  display: block;
  width: 15px;
  height: 15px;
  position: relative;
  bottom: 5px;
  left: 2px;
  cursor: pointer;
  border-top: solid 3px #CAE6E0;
  border-right: solid 3px #CAE6E0;
  transform: rotate(45deg) translateY(50%);
}
#voice .one-column .prev {
  display: block;
  width: 15px;
  height: 15px;
  position: relative;
  bottom: 5px;
  left: 5px;
  cursor: pointer;
  border-top: solid 3px #CAE6E0;
  border-right: solid 3px #CAE6E0;
  transform: rotate(-135deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
  #voice .one-column .next,
#voice .one-column .prev {
    width: 5px;
    height: 5px;
    bottom: 2px;
    border-top: solid 2px #CAE6E0;
    border-right: solid 2px #CAE6E0;
  }
}
#voice .one-column .indicator {
  margin-top: 20px;
  width: 100%;
  display: flex;
  -moz-column-gap: 18px;
       column-gap: 18px;
  z-index: 10;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
}
@media screen and (max-width: 768px) {
  #voice .one-column .indicator {
    bottom: 32px;
  }
}
#voice .one-column .indicator li {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  list-style: none;
  background-color: #CAE6E0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #voice .one-column .indicator li {
    width: 8px;
    height: 8px;
  }
}
#voice .one-column .indicator li:first-of-type {
  background-color: #333333;
}

#strength {
  background: #fff;
  margin-bottom: 0px;
  padding: 97px 0px 180px 0px;
}
@media screen and (max-width: 768px) {
  #strength {
    padding: 75px 0px 80px 0px;
  }
}
#strength .section-heading {
  margin: 0px auto 0px auto;
}
#strength .section-txt {
  margin: 25px auto 0 auto;
  width: 780px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #strength .section-txt {
    margin: 20px auto 0 auto;
    width: 320px;
    text-align: left;
  }
}
#strength .section-txt p {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #strength .section-txt p {
    font-size: 15px;
  }
}
#strength .contents {
  position: relative;
  background: #F8F8F8;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #strength .contents {
    width: 100%;
    margin-top: 60px;
  }
}
#strength .contents .img-wrapper {
  width: 1200px;
  margin: 0 auto;
  height: 487px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  bottom: 100px;
}
@media screen and (max-width: 768px) {
  #strength .contents .img-wrapper {
    width: 325px;
    height: 155px;
    bottom: 25px;
    gap: 5px;
  }
}
#strength .contents img.point {
  width: 389px;
  height: auto;
}
@media screen and (max-width: 768px) {
  #strength .contents img.point {
    width: 105px;
    height: auto;
  }
}
#strength .contents .point-bottom {
  position: relative;
  bottom: 30px;
}
@media screen and (max-width: 768px) {
  #strength .contents .point-bottom {
    bottom: 5px;
  }
}

#flow {
  background: #E6F0F8;
  padding-top: 42px;
  padding-bottom: 47px;
}
@media screen and (max-width: 768px) {
  #flow {
    padding: 70px 0px 0px 0px;
  }
}
#flow .contents {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1230px;
  margin: 0 auto;
  padding: 53px 40px 47px 53px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #flow .contents {
    width: 320px;
    padding: 52px 14px;
  }
}
#flow .section-heading {
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 768px) {
  #flow .section-heading {
    margin: 0 auto 0px auto;
  }
}
#flow .box {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  #flow .box {
    display: block;
  }
}
#flow .box .left {
  width: 370px;
}
@media screen and (max-width: 768px) {
  #flow .box .left {
    width: 290px;
    margin: 0 auto;
  }
}
#flow .box .left img {
  width: 100%;
  height: auto;
}
#flow .box .right {
  width: 645px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px;
  gap: 10px;
  flex-direction: column;
  justify-content: start;
}
@media screen and (max-width: 768px) {
  #flow .box .right {
    padding-top: 20px;
    width: 290px;
    margin: 0 auto;
    gap: 5px;
  }
}
#flow .box .box-title {
  font-size: 28px;
  font-weight: bold;
  color: #0168B7;
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  #flow .box .box-title {
    font-size: 20px;
  }
}
#flow .box .box-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  #flow .box .box-txt {
    font-size: 16px;
  }
}

#payment {
  background: #E6F0F8;
  margin-bottom: 86px;
}
@media screen and (max-width: 768px) {
  #payment {
    margin-bottom: 68px;
  }
}
#payment .section-wrapper {
  width: 1230px;
  margin: 0 auto;
  padding: 62px 58px;
  background: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #payment .section-wrapper {
    width: 320px;
    padding: 20px 14px 40px 14px;
  }
}
#payment .contents {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  /* 横の間隔 */
  row-gap: 37px;
  /* 縦の間隔 */
}
@media screen and (max-width: 768px) {
  #payment .contents {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #payment .box {
    width: 100%;
    margin-bottom: 15px;
  }
}
#payment .box h4 {
  background: #0168B7;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 8px 0px;
}
@media screen and (max-width: 768px) {
  #payment .box h4 {
    font-size: 16px;
  }
}
#payment .box .box-content {
  margin-top: 4px;
  border: 1px solid #E6F0F8;
  height: 170px;
}
@media screen and (max-width: 768px) {
  #payment .box .box-content {
    height: auto;
  }
}
#payment .box .box-content.img {
  padding: 21px 28px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #payment .box .box-content.img {
    padding: 17px 23px;
  }
}
#payment .box .box-content.img .flex-content {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 10px;
}
#payment .box .box-content.img .flex-content .left {
  width: 20%;
}
#payment .box .box-content.img .flex-content .right {
  width: 68%;
}
#payment .box .box-content.txt {
  padding: 40px 26px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #payment .box .box-content.txt {
    padding: 15px 24px;
  }
}
#payment .box .box-content.txt p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.9;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  #payment .box .box-content.txt p {
    font-size: 12px;
  }
}
#payment .box img {
  width: 100%;
  height: auto;
  height: auto;
}
#payment .box p {
  font-size: 14px;
  font-weight: bold;
}
#payment .box a {
  text-decoration: underline;
}

#qa {
  background: #fff;
  padding: 80px 0px 134px 0px;
}
@media screen and (max-width: 768px) {
  #qa {
    padding: 63px 0px 131px 0px;
  }
}
#qa .contents {
  width: 1230px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #qa .contents {
    width: 320px;
  }
}
#qa .contents .qa-box {
  width: 100%;
  margin-bottom: 9px;
}
#qa .contents .question,
#qa .contents .answer {
  display: flex;
  flex-wrap: nowrap;
}
#qa .contents .q-initial,
#qa .contents .a-initial {
  display: inline-block;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0px 0px 10px;
  font-weight: 700;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  #qa .contents .q-initial,
#qa .contents .a-initial {
    width: 45px;
    height: 62px;
    font-size: 22px;
  }
}
#qa .contents .q-initial {
  background: #0168B7;
  color: #fff;
}
#qa .contents .a-initial {
  background: #1EB9EF;
  color: #fff;
}
#qa .contents .q-txt,
#qa .contents .a-txt {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 19px 210px 19px 36px;
  width: 100%;
  height: auto;
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #qa .contents .q-txt,
#qa .contents .a-txt {
    padding: 11px 40px 11px 17px;
    font-size: 14px;
    line-height: 20px;
  }
}
#qa .contents .q-txt {
  background: #F8F8F8;
}
#qa .contents .a-txt {
  background: #fff;
}
#qa .contents .button .plus {
  position: relative;
}
#qa .contents .button .plus::after, #qa .contents .button .plus::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 30px;
  top: 18px;
  width: 3px;
  height: 25px;
  background-color: #0168B7;
  transition: transform 0.5s;
}
#qa .contents .button .plus::after {
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  #qa .contents .button .plus::after, #qa .contents .button .plus::before {
    content: "";
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 25px;
    width: 2px;
    height: 15px;
    background-color: #0168B7;
    transition: transform 0.5s;
  }
}
#qa .contents .qa-box[open] .button .plus {
  position: relative;
}
#qa .contents .qa-box[open] .button .plus::before {
  content: none;
}

@media screen and (max-width: 768px) {
  #contactArea {
    margin-bottom: 0;
  }
}
#contactArea .item__bg {
  background: url("../img/new_contact-bg.png");
  width: 100%;
  height: 525px;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  padding-top: 119px;
}
@media screen and (max-width: 768px) {
  #contactArea .item__bg {
    background: url("../img/sp/contactBg_sp.png");
    background-size: cover;
    height: auto;
    padding: 60px 19px 71px 19px;
  }
}
#contactArea .txt-area {
  width: 1100px;
  margin: 0 auto 64px auto;
  border-bottom: 1px solid #fff;
  padding-bottom: 37px;
}
@media screen and (max-width: 768px) {
  #contactArea .txt-area {
    width: 100%;
    padding-bottom: 23px;
    margin: 0 auto 28px auto;
  }
}
#contactArea .txt-area .heading-title {
  text-align: center;
  font-size: 72px;
  letter-spacing: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #contactArea .txt-area .heading-title {
    width: 100%;
    font-size: 46px;
    letter-spacing: 9px;
  }
}
#contactArea .txt-area p.sub-title {
  font-size: 28px;
  letter-spacing: 3px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contactArea .txt-area p.sub-title {
    font-size: 15px;
    letter-spacing: 3px;
  }
}
#contactArea .icon-area {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #contactArea .icon-area {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #contactArea .icon-area .left,
#contactArea .icon-area .right {
    width: 100%;
  }
}
#contactArea .icon-area .left a,
#contactArea .icon-area .right a {
  display: flex;
  align-items: center;
  gap: 17px;
}
@media screen and (max-width: 768px) {
  #contactArea .icon-area .left a,
#contactArea .icon-area .right a {
    gap: 9px;
  }
}
@media screen and (max-width: 768px) {
  #contactArea .icon-area .left {
    margin-bottom: 16px;
  }
}
#contactArea .icon-area .left img {
  width: 102px;
  height: 102px;
}
@media screen and (max-width: 768px) {
  #contactArea .icon-area .left img {
    width: 60px;
    height: auto;
    position: relative;
    bottom: 5px;
  }
}
#contactArea .icon-area .left .right-txt-area {
  position: relative;
  bottom: 5px;
}
#contactArea .icon-area .left .right-txt-area .tel-number {
  color: #fff;
  font-size: 56px;
  letter-spacing: 10px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #contactArea .icon-area .left .right-txt-area .tel-number {
    font-size: 30px;
    letter-spacing: 5px;
  }
}
#contactArea .icon-area .left .right-txt-area .business-hour {
  color: #fff;
  font-size: 20px;
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  #contactArea .icon-area .left .right-txt-area .business-hour {
    font-size: 12px;
    letter-spacing: 2px;
  }
}
#contactArea .icon-area .right .mailIcon {
  width: 45px;
  height: 34px;
  position: relative;
  top: 5px;
}
@media screen and (max-width: 768px) {
  #contactArea .icon-area .right .mailIcon {
    width: 31px;
    height: auto;
    top: 2px;
  }
}
#contactArea .icon-area .right .pageLink {
  position: relative;
  border-radius: 100vh;
  border: 1px solid #fff;
  padding: 25px 0px 25px 85px;
  width: 462px;
  box-sizing: border-box;
  letter-spacing: 2px;
  transition: color 0.8s ease, background 0.8s ease;
  color: #fff;
  justify-content: start;
}
#contactArea .icon-area .right .pageLink:hover {
  background: #FFF;
}
#contactArea .icon-area .right .pageLink:hover p {
  color: #016CD2 !important;
}
@media screen and (max-width: 768px) {
  #contactArea .icon-area .right .pageLink {
    margin: 0 auto;
    gap: 21px;
    width: 319px;
    border-radius: 100vh;
    border: 1px solid #ffffff;
    padding: 19px 45px;
  }
}
#contactArea .icon-area .right .pageLink p {
  font-size: 28px;
  color: #fff;
  letter-spacing: 5px;
  text-align: center;
  transition: color 0.8s ease;
}
@media screen and (max-width: 768px) {
  #contactArea .icon-area .right .pageLink p {
    font-size: 19px;
    font-weight: bold;
  }
}
#contactArea .icon-area .right .pageLink img.arrow {
  width: 7px;
  height: auto;
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #contactArea .icon-area .right .pageLink img.arrow {
    width: 8px;
    top: 54%;
    right: 40px;
    height: auto;
  }
}

.white-margin {
  width: 100%;
  height: 115px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .white-margin {
    height: 82px;
  }
}

.white-margin70 {
  width: 100%;
  height: 70px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .white-margin70 {
    height: 82px;
  }
}

.white-margin105 {
  width: 100%;
  height: 105px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .white-margin105 {
    height: 82px;
  }
}

.white-margin115 {
  width: 100%;
  height: 115px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .white-margin115 {
    height: 82px;
  }
}

.white-margin145 {
  width: 100%;
  height: 145px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .white-margin145 {
    height: 82px;
  }
}

footer {
  width: 100%;
  height: auto;
  background-color: #fff;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  footer {
    margin-bottom: 40px;
    padding-top: 0px;
    height: auto;
  }
}
footer a,
footer a:visited {
  color: #333333;
}
footer .footer__container {
  display: flex;
  max-width: 1230px;
  margin: 0 auto;
  gap: 70px;
  margin-bottom: 60px;
  font-family: "YuGothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}
@media screen and (max-width: 768px) {
  footer .footer__container {
    flex-wrap: wrap;
    padding: 80px 20px 0px 20px;
    margin-bottom: 34px;
    justify-content: center;
    gap: 40px;
  }
}
footer .column1 ul li,
footer .column2 ul li,
footer .column3 ul li {
  padding-left: 2px;
}
footer .column1 {
  width: 38%;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  footer .column1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .column1 a:hover,
footer .column1 p:hover {
  color: #333333;
}
footer .column1 .txt-space {
  margin-bottom: 10px;
}
footer .column1 .txt-space .big-address {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  footer .column1 p {
    font-size: 12px;
    text-align: left;
    line-height: 1.8;
  }
}
footer .column1 .logo {
  width: 213px;
  height: 200px;
  position: relative;
  left: 50px;
}
@media screen and (max-width: 768px) {
  footer .column1 .logo {
    width: 150px;
    height: auto;
    margin-bottom: 25px;
    left: 5px;
  }
}
footer .column2 {
  width: 31%;
}
@media screen and (max-width: 768px) {
  footer .column2 {
    width: 98%;
  }
}
footer .column2 ul.contactform-list {
  margin-top: 35px;
}
footer .column2 a:hover li p {
  color: #0168B7;
}
footer .column2 li {
  padding-bottom: 12px;
  padding-right: 6px;
  box-sizing: border-box;
  margin-top: 12px;
  border-bottom: 1px solid #F1F1F1;
}
@media screen and (max-width: 768px) {
  footer .column2 li {
    padding-bottom: 11px;
    margin-top: 11px;
  }
}
footer .column2 li p {
  transition: color 0.8s ease;
}
footer .column2 .margin-l {
  margin-left: 16px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
footer .column2 .margin-l p {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  footer .column2 .margin-l p {
    font-size: 13px;
  }
}
footer .column2 .margin-l .arrow {
  width: 6px;
  height: 7.86px;
}
@media screen and (max-width: 768px) {
  footer .column2 .margin-l .arrow {
    width: 7px;
    height: auto;
  }
}
footer .column2 .margin-l .page-link {
  width: 11px;
  height: 11px;
}
@media screen and (max-width: 768px) {
  footer .column2 .margin-l .page-link {
    width: 12px;
    height: 11px;
  }
}
footer .column3 {
  width: 30%;
}
@media screen and (max-width: 768px) {
  footer .column3 {
    width: 98%;
  }
}
footer .column3 a:hover li p {
  color: #0168B7;
}
footer .column3 li {
  font-size: 16px;
  padding-bottom: 12px;
  padding-right: 6px;
  box-sizing: border-box;
  margin-top: 12px;
  border-bottom: 1px solid #F1F1F1;
}
@media screen and (max-width: 768px) {
  footer .column3 li {
    padding-bottom: 11px;
    margin-top: 11px;
    font-size: 13px;
  }
}
footer .column3 li p {
  transition: color 0.8s ease;
}
footer .column3 .margin-l {
  margin-left: 16px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
footer .column3 .margin-l p {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  footer .column3 .margin-l p {
    font-size: 13px;
  }
}
footer .column3 .margin-l .arrow {
  width: 6px;
  height: 7.86px;
}
@media screen and (max-width: 768px) {
  footer .column3 .margin-l .arrow {
    width: 7px;
    height: auto;
  }
}
footer .column3 .margin-l .page-link {
  width: 11px;
  height: 11px;
}
@media screen and (max-width: 768px) {
  footer .column3 .margin-l .page-link {
    width: 12px;
    height: 11px;
  }
}
footer .footer__link {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
footer .footer__link p {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  footer .footer__link p {
    font-size: 13px;
  }
}
footer .footer__link img {
  width: 6px;
  height: 7.86px;
}
@media screen and (max-width: 768px) {
  footer .footer__link img {
    width: 7px;
    height: auto;
  }
}
footer .copyright {
  text-align: center;
  font-size: 12px;
  color: #333;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    font-size: 9px;
  }
}

#topPage #sp-parallax {
  position: relative;
}
@media screen and (max-width: 768px) {
  #topPage #sp-parallax {
    height: 164px;
    margin-bottom: 86px;
  }
}
#topPage #sp-parallax .sectionInner.active {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip: rect(auto, auto, auto, auto);
}
#topPage #sp-parallax .imageBg {
  width: 100%;
  height: 164px;
  background-size: cover;
  background-position: center;
}
#topPage #sp-parallax .active .imageBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 164px;
  background-size: cover;
  background-position: center;
}
#topPage #sp-parallax #imageBg03 {
  background-image: url("../img/parallax03-bg.png.png");
}
@media screen and (max-width: 768px) {
  #topPage #sp-parallax #imageBg03 {
    background-image: url("../img/sp/parallax03-bg-sp.png");
  }
}
#topPage section#greetings {
  margin-top: 220px;
  margin-bottom: 128px;
}
@media screen and (max-width: 768px) {
  #topPage section#greetings {
    margin-top: 75px;
    margin-bottom: 50px;
  }
}
#topPage section#greetings .contents {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 320px;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #topPage section#greetings .contents {
    height: auto;
    flex-wrap: wrap;
    margin-left: 0;
    align-items: unset;
    margin-bottom: 130px;
  }
}
@media screen and (max-width: 768px) {
  #topPage section#greetings .contents .sp_image-wrapper {
    position: relative;
    margin-bottom: 93px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #topPage section#greetings .contents .sp_image-wrapper .sp_num-01 {
    width: 235px;
    height: 178px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #topPage section#greetings .contents .sp_image-wrapper .sp_num-02 {
    width: 119px;
    height: 157px;
    position: absolute;
    right: 0;
    bottom: -60px;
  }
}
#topPage section#greetings .contents .txt-area {
  width: 620px;
  position: relative;
  left: 60%;
  transform: translateX(-50%);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #topPage section#greetings .contents .txt-area {
    width: 100%;
    padding: 0px 20px;
    box-sizing: border-box;
    left: unset;
    transform: unset;
  }
}
#topPage section#greetings .contents .txt-area .heading {
  font-size: 58px;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  #topPage section#greetings .contents .txt-area .heading {
    font-size: 32px;
    line-height: 1.8;
    letter-spacing: 8px;
  }
}
#topPage section#greetings .contents .txt-area .txt-content {
  margin: 58px 0px 72px 0px;
  font-size: 18px;
  line-height: 50px;
}
@media screen and (max-width: 768px) {
  #topPage section#greetings .contents .txt-area .txt-content {
    font-size: 15px;
    line-height: 2.6;
    letter-spacing: 2px;
    margin: 10px 0px 10px 0px;
  }
}
#topPage section#greetings .contents .txt-area .txt-content .small-txt {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #topPage section#greetings .contents .txt-area .txt-content .small-txt {
    font-size: 12px;
  }
}
#topPage section#greetings .contents .txt-area .pageLink {
  color: #016CD2;
  position: relative;
  top: 58px;
  display: inline-block;
  width: 240px;
  justify-content: center;
  gap: 30px;
  padding: 10px 0px;
  text-align: center;
  border-radius: 100vh;
  border: 1px solid #016CD2;
  transition: color 0.8s ease, background 0.8s ease;
  line-height: 1.5;
}
#topPage section#greetings .contents .txt-area .pageLink:hover {
  color: #fff;
  background: #016CD2;
}
@media screen and (max-width: 768px) {
  #topPage section#greetings .contents .txt-area .pageLink {
    padding: 10px 20px 10px 0px;
    width: 160px;
    position: absolute;
    top: unset;
    margin-top: 24px;
    right: 0;
    margin-right: 20px;
  }
}
#topPage section#greetings .contents .txt-area .pageLink p {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #topPage section#greetings .contents .txt-area .pageLink p {
    font-size: 14px;
    letter-spacing: 2px;
  }
}
#topPage section#greetings .contents .txt-area .pageLink img {
  width: 6px;
  height: 7.86px;
  position: absolute;
  right: 25px;
  transform: translateY(-50%);
  top: 50%;
}
@media screen and (max-width: 768px) {
  #topPage section#greetings .contents .txt-area .pageLink img {
    width: 4px;
    height: 6px;
  }
}
#topPage section#greetings .contents .image-area {
  width: 100%;
  position: absolute;
  top: -50px;
  z-index: 90;
}
#topPage section#greetings .contents .image-area .image-wrapper {
  position: relative;
  width: 100%;
}
#topPage section#greetings .contents .image-area .image-wrapper .num-01 {
  width: 341px;
  height: 261px;
  position: absolute;
  left: 30px;
  top: -80px;
}
#topPage section#greetings .contents .image-area .image-wrapper .num-02 {
  width: 206px;
  height: 193px;
  position: absolute;
  right: 150px;
  top: 5px;
}
#topPage section#greetings .contents .image-area .image-wrapper .num-03 {
  width: 340px;
  height: 260px;
  position: absolute;
  left: 200px;
  top: 385px;
}
#topPage section#greetings .contents .image-area .image-wrapper .num-04 {
  width: 158px;
  height: 157px;
  position: absolute;
  left: 60px;
  top: 660px;
}
#topPage section#greetings .contents .image-area .image-wrapper .num-05 {
  width: 269px;
  height: 206px;
  position: absolute;
  right: 235px;
  top: 630px;
}
#topPage section#greetings .imgArea img {
  width: 100%;
  height: auto;
}
#topPage section#greetings .parallax {
  position: relative;
  height: 445px;
}
@media screen and (max-width: 768px) {
  #topPage section#greetings .parallax {
    height: 164px;
  }
}
#topPage section#greetings .parallax .sectionInner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip: rect(auto, auto, auto, auto);
}
#topPage section#greetings .parallax .imageBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}
#topPage section#greetings .parallax #imageBg02 {
  background-image: url("../img/parallax03-bg.png");
}
@media screen and (max-width: 768px) {
  #topPage section#greetings .parallax #imageBg02 {
    background-image: url("../img/sp/parallax03-bg-sp.png");
  }
}
#topPage section.service {
  margin-bottom: 134px;
}
@media screen and (max-width: 768px) {
  #topPage section.service {
    margin-bottom: 84px;
  }
}
#topPage section.service .item__bg {
  background-color: #F8F8F8;
}
#topPage section.service .item__contents {
  text-align: center;
  padding: 92px 0px 134px 0px;
}
@media screen and (max-width: 768px) {
  #topPage section.service .item__contents {
    padding: 50px 0px 59px 0px;
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  #topPage section.service .item__contents .border {
    border-bottom: 2px solid #1EB9EF;
    display: block;
    width: 36px;
    margin: 0 auto 15px auto;
  }
}
#topPage section.service .item__contents h3 {
  font-size: 28px;
  margin-top: 60px;
  margin-bottom: 50px;
  letter-spacing: 2px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #topPage section.service .item__contents h3 {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 25px;
    line-height: 2.5;
  }
}
#topPage section.service .item__contents .box-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 37px;
       column-gap: 37px;
  row-gap: 37px;
  overflow: hidden;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #topPage section.service .item__contents .box-links {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 12px;
    padding: 0px 5px;
  }
}
#topPage section.service .item__contents .box-links li {
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  #topPage section.service .item__contents .box-links li {
    margin-bottom: 2px;
  }
}
#topPage section.service .item__contents .box-links .tile-link {
  overflow: hidden;
  position: relative;
}
#topPage section.service .item__contents .box-links figure {
  overflow: hidden;
  position: relative;
  border: unset !important;
}
#topPage section.service .item__contents .box-links img {
  width: 100%;
  transition: 0.5s;
  opacity: 1;
  overflow: hidden;
  display: block;
}
#topPage section.service .item__contents .box-links li:hover img {
  transform: scale(1.1);
}
#topPage section.service .item__contents .box-links figcaption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: white;
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  #topPage section.service .item__contents .box-links figcaption {
    font-size: 15px;
    letter-spacing: 2px;
  }
}
#topPage section.service .item__contents .box-links .tile {
  height: 345px;
}
#topPage section.voice {
  margin-bottom: 125px;
  /* ↓ スライドの外枠 */
}
@media screen and (max-width: 768px) {
  #topPage section.voice {
    margin-bottom: 110px;
  }
}
#topPage section.voice .item__bg {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 30%, #CAE6E0 30%, #CAE6E0 100%);
  padding: 0px 0px 85px 0px;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .item__bg {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 38%, #CAE6E0 38%, #CAE6E0 100%);
    padding: 0px 20px 41px 20px;
  }
}
#topPage section.voice .item__bg .item__titleArea {
  max-width: 1090px;
  height: 250px;
  margin: 0 auto 70px auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .item__bg .item__titleArea {
    width: 100%;
    height: auto;
    margin: 0 auto 40px auto;
  }
}
@media screen and (max-width: 768px) {
  #topPage section.voice .item__bg .item__titleArea .upper .sub-title {
    text-align: center;
  }
}
#topPage section.voice .item__bg .item__titleArea .down {
  position: absolute;
  right: 20px;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .item__bg .item__titleArea .down {
    position: relative;
    right: 0px;
  }
}
#topPage section.voice .item__bg .item__titleArea .down .txt-content {
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .item__bg .item__titleArea .down .txt-content {
    font-size: 15px;
    line-height: 2.5;
    margin-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  #topPage section.voice .item__bg .item__titleArea .border {
    border-bottom: 2px solid #CAE6E0;
    display: block;
    width: 36px;
    margin: 0 auto 23px auto;
  }
}
#topPage section.voice .three-column {
  display: flex;
  justify-content: space-between;
  max-width: 1230px;
  margin: 0 auto 63px auto;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .three-column {
    display: none;
  }
}
#topPage section.voice .three-column .item__box {
  width: 395px;
  height: auto;
  background-color: #fff;
  overflow: hidden;
  border-radius: 5%;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .three-column .item__box {
    max-width: 100%;
    width: 100%;
  }
}
#topPage section.voice .three-column .item__box img {
  width: 395px;
  height: 228px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5% 5% 0 0;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .three-column .item__box img {
    width: 100%;
    height: auto;
  }
}
#topPage section.voice .three-column .item__box .box__inner {
  padding: 35px;
}
#topPage section.voice .three-column .item__box .box__title {
  font-size: 24px;
  color: #47A995;
  text-align: center;
  letter-spacing: 1.5px;
  width: 230px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .three-column .item__box .box__title {
    width: 100%;
    margin: unset;
  }
}
#topPage section.voice .three-column .item__box .box__address {
  font-size: 16px;
  text-align: center;
  margin: 25px 0px;
}
#topPage section.voice .three-column .item__box .box__detail {
  font-size: 16px;
  border-top: 1px solid #47A995;
  padding-top: 25px;
  line-height: 2;
  height: 216px;
  /* 高さを固定 */
  overflow: hidden;
  /* 溢れた部分を隠す */
  display: -webkit-box;
  /* 必須 - ブラウザの互換性対応 */
  -webkit-line-clamp: 7;
  /* 表示する行数を設定 */
  -webkit-box-orient: vertical;
  /* 縦方向にレイアウトを指定 */
  text-overflow: ellipsis;
  /* 省略記号 (...) を表示 */
  word-wrap: break-word;
  /* テキストの折り返し */
}
@media screen and (max-width: 768px) {
  #topPage section.voice .three-column .item__box .box__detail {
    -webkit-line-clamp: 7;
  }
}
#topPage section.voice .slider-txt01 {
  /*  ↓ スライド（コンテンツ） */
  /* ↓ 左右のボタン */
  /* ↓ インジケーター */
}
@media screen and (max-width: 768px) {
  #topPage section.voice .slider-txt01 {
    position: relative;
  }
}
#topPage section.voice .slider-txt01 .slide-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 29px;
  /* はみ出したスライドを隠す */
}
#topPage section.voice .slider-txt01 .slide {
  /*スライド全体 */
  width: 300%;
  height: 100%;
  display: flex;
  transition: all 0.3s;
}
#topPage section.voice .slider-txt01 .slide .slide-inner {
  /* スライド */
  width: 33.33%;
  height: 100%;
  font-size: 16px;
}
#topPage section.voice .slider-txt01 .slide .slide-inner .item__box {
  max-width: 395px;
  width: 33%;
  height: auto;
  background-color: #fff;
  border-radius: 5%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .slider-txt01 .slide .slide-inner .item__box {
    max-width: 100%;
    width: 100%;
  }
}
#topPage section.voice .slider-txt01 .slide .slide-inner .item__box img {
  width: 100%;
  height: 184px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5% 5% 0 0;
}
#topPage section.voice .slider-txt01 .slide .slide-inner .item__box .box__inner {
  padding: 35px;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .slider-txt01 .slide .slide-inner .item__box .box__inner {
    padding: 30px 26px;
  }
}
#topPage section.voice .slider-txt01 .slide .slide-inner .item__box .box__title {
  font-size: 24px;
  font-weight: bold;
  color: #47A995;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .slider-txt01 .slide .slide-inner .item__box .box__title {
    font-size: 20px;
    letter-spacing: 3px;
  }
}
#topPage section.voice .slider-txt01 .slide .slide-inner .item__box .box__address {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 25px 0px;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .slider-txt01 .slide .slide-inner .item__box .box__address {
    font-size: 13px;
    margin: 7px 0px 15px;
  }
}
#topPage section.voice .slider-txt01 .slide .slide-inner .item__box .box__detail {
  font-size: 16px;
  border-top: 1px solid #47A995;
  padding-top: 25px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .slider-txt01 .slide .slide-inner .item__box .box__detail {
    font-size: 14px;
    height: 234px;
    /* 高さを固定 */
    overflow: hidden;
    /* 溢れた部分を隠す */
    display: -webkit-box;
    /* 必須 - ブラウザの互換性対応 */
    -webkit-line-clamp: 7;
    /* 表示する行数を設定 */
    -webkit-box-orient: vertical;
    /* 縦方向にレイアウトを指定 */
    text-overflow: ellipsis;
    /* 省略記号 (...) を表示 */
    word-wrap: break-word;
    /* テキストの折り返し */
    line-height: 2.5;
    letter-spacing: 2px;
  }
}
#topPage section.voice .slider-txt01 .slide1 {
  /* スライドさせるために必要なクラス */
  transform: translateX(0);
}
#topPage section.voice .slider-txt01 .slide2 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-33.33%);
}
#topPage section.voice .slider-txt01 .slide3 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-66.66%);
}
#topPage section.voice .slider-txt01 .slide .slide-inner:nth-of-type(1) {
  /* 背景色 */
}
#topPage section.voice .slider-txt01 .slide .slide-inner:nth-of-type(2) {
  /* 背景色 */
}
#topPage section.voice .slider-txt01 .slide .slide-inner:nth-of-type(3) {
  /* 背景色 */
}
#topPage section.voice .slider-txt01 .prev-wrapper,
#topPage section.voice .slider-txt01 .next-wrapper {
  position: absolute;
  background-color: #F8F8F8;
  padding: 10px;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  bottom: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .slider-txt01 .prev-wrapper,
#topPage section.voice .slider-txt01 .next-wrapper {
    padding: 5px;
    bottom: 55%;
    transform: translateY(50%);
    width: 15px;
    height: 15px;
  }
}
#topPage section.voice .slider-txt01 .next-wrapper {
  right: -30px;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  #topPage section.voice .slider-txt01 .next-wrapper {
    right: 0px;
  }
}
@media screen and (max-width: 768px) {
  #topPage section.voice .slider-txt01 .next-wrapper {
    right: -15px;
  }
}
#topPage section.voice .slider-txt01 .prev-wrapper {
  left: -30px;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  #topPage section.voice .slider-txt01 .prev-wrapper {
    left: 0px;
  }
}
@media screen and (max-width: 768px) {
  #topPage section.voice .slider-txt01 .prev-wrapper {
    left: -15px;
  }
}
#topPage section.voice .slider-txt01 .next {
  display: block;
  width: 15px;
  height: 15px;
  position: relative;
  bottom: 5px;
  left: 2px;
  cursor: pointer;
  border-top: solid 3px #CAE6E0;
  border-right: solid 3px #CAE6E0;
  transform: rotate(45deg) translateY(50%);
}
#topPage section.voice .slider-txt01 .prev {
  display: block;
  width: 15px;
  height: 15px;
  position: relative;
  bottom: 5px;
  left: 5px;
  cursor: pointer;
  border-top: solid 3px #CAE6E0;
  border-right: solid 3px #CAE6E0;
  transform: rotate(-135deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
  #topPage section.voice .slider-txt01 .next,
#topPage section.voice .slider-txt01 .prev {
    width: 5px;
    height: 5px;
    bottom: 2px;
    border-top: solid 2px #CAE6E0;
    border-right: solid 2px #CAE6E0;
  }
}
#topPage section.voice .slider-txt01 .indicator {
  margin-top: 20px;
  width: 100%;
  display: none;
  -moz-column-gap: 18px;
       column-gap: 18px;
  z-index: 10;
  justify-content: center;
  align-items: center;
}
#topPage section.voice .slider-txt01 .indicator li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  list-style: none;
  background-color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .slider-txt01 .indicator li {
    width: 8px;
    height: 8px;
  }
}
#topPage section.voice .slider-txt01 .indicator li:first-of-type {
  background-color: #333333;
}
#topPage section.voice .one-column {
  max-width: 1230px;
  margin: 0 auto;
  /*  ↓ スライド（コンテンツ） */
  /* ↓ 左右のボタン */
  /* ↓ インジケーター */
}
@media screen and (max-width: 768px) {
  #topPage section.voice .one-column {
    max-width: 100%;
  }
}
#topPage section.voice .one-column .item__movie {
  background-color: #fff;
  border-radius: 2%;
  padding: 80px;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .one-column .item__movie {
    padding: 30px 20px;
  }
}
#topPage section.voice .one-column .item__movie img {
  width: 100%;
  height: auto;
}
#topPage section.voice .one-column .item__movie iframe {
  width: 100%;
  height: 595px;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .one-column .item__movie iframe {
    height: 164px;
  }
}
#topPage section.voice .one-column .slide-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 0px;
  padding-bottom: 0px;
  /* はみ出したスライドを隠す */
}
#topPage section.voice .one-column .slide-overflow {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#topPage section.voice .one-column .slide {
  /*スライド全体 */
  width: 600%;
  height: 100%;
  display: flex;
  transition: all 0.3s;
}
#topPage section.voice .one-column .slide .slide-inner {
  /* スライド */
  width: 16.7%;
  height: 100%;
  font-size: 16px;
}
#topPage section.voice .one-column .slide .slide-inner .item__movie {
  background-color: #fff;
  border-radius: 2%;
  padding: 47px 65px 62px 65px;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .one-column .slide .slide-inner .item__movie {
    padding: 30px 20px 60px 20px;
  }
}
#topPage section.voice .one-column .slide .slide-inner .item__movie h3 {
  text-align: center;
  font-size: 32px;
  letter-spacing: 5px;
  font-style: normal;
  margin-bottom: 20px;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .one-column .slide .slide-inner .item__movie h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #topPage section.voice .one-column .slide .slide-inner .item__movie h3 .font-lora {
    font-size: 20px;
  }
}
#topPage section.voice .one-column .slide .slide-inner .item__movie img {
  width: 100%;
  height: auto;
}
#topPage section.voice .one-column .slide1 {
  /* スライドさせるために必要なクラス */
  transform: translateX(0);
}
#topPage section.voice .one-column .slide2 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-16.67%);
}
#topPage section.voice .one-column .slide3 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-33.33%);
}
#topPage section.voice .one-column .slide4 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-50%);
}
#topPage section.voice .one-column .slide5 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-66.67%);
}
#topPage section.voice .one-column .slide6 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-83.33%);
}
#topPage section.voice .one-column .arrow-box {
  position: relative;
}
#topPage section.voice .one-column .prev-wrapper,
#topPage section.voice .one-column .next-wrapper {
  position: absolute;
  background-color: #F8F8F8;
  padding: 10px;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  bottom: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .one-column .prev-wrapper,
#topPage section.voice .one-column .next-wrapper {
    padding: 5px;
    bottom: 45%;
    transform: translateY(50%);
    width: 15px;
    height: 15px;
  }
}
#topPage section.voice .one-column .next-wrapper {
  right: -30px;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  #topPage section.voice .one-column .next-wrapper {
    right: 0px;
  }
}
@media screen and (max-width: 768px) {
  #topPage section.voice .one-column .next-wrapper {
    right: -15px;
  }
}
#topPage section.voice .one-column .prev-wrapper {
  left: -30px;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  #topPage section.voice .one-column .prev-wrapper {
    left: 0px;
  }
}
@media screen and (max-width: 768px) {
  #topPage section.voice .one-column .prev-wrapper {
    left: -15px;
  }
}
#topPage section.voice .one-column .next {
  display: block;
  width: 12px;
  height: 12px;
  position: relative;
  bottom: 5px;
  left: 2px;
  cursor: pointer;
  border-top: solid 3px #CAE6E0;
  border-right: solid 3px #CAE6E0;
  transform: rotate(45deg) translateY(50%);
}
#topPage section.voice .one-column .prev {
  display: block;
  width: 12px;
  height: 12px;
  position: relative;
  bottom: 5px;
  left: 5px;
  cursor: pointer;
  border-top: solid 3px #CAE6E0;
  border-right: solid 3px #CAE6E0;
  transform: rotate(-135deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
  #topPage section.voice .one-column .next,
#topPage section.voice .one-column .prev {
    width: 5px;
    height: 5px;
    bottom: 2px;
    border-top: solid 2px #CAE6E0;
    border-right: solid 2px #CAE6E0;
  }
}
#topPage section.voice .one-column .indicator {
  margin-top: 20px;
  width: 100%;
  display: flex;
  -moz-column-gap: 18px;
       column-gap: 18px;
  z-index: 10;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .one-column .indicator {
    bottom: 32px;
  }
}
#topPage section.voice .one-column .indicator li {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  list-style: none;
  background-color: #CAE6E0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #topPage section.voice .one-column .indicator li {
    width: 8px;
    height: 8px;
  }
}
#topPage section.voice .one-column .indicator li:first-of-type {
  background-color: #333333;
}
#topPage section.company {
  margin-bottom: 220px;
}
@media screen and (max-width: 768px) {
  #topPage section.company {
    margin-bottom: 99px;
  }
}
#topPage section.company .item__bg {
  background: url("../img/company-blue-bg.png");
  background-size: cover;
  width: 100%;
  max-width: 100%;
  height: 670px;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  padding-left: 4%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #topPage section.company .item__bg {
    background: url("../img/sp/blue-bg.png");
    background-size: cover;
    height: 635px;
    background-position: top;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 0px 0px 49px 0px;
  }
}
#topPage section.company .left {
  color: #fff;
  width: 43%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  height: 80%;
}
@media screen and (max-width: 768px) {
  #topPage section.company .left {
    width: 100%;
    height: auto;
    order: 2;
    line-height: 2.2;
    padding: 0 20px;
  }
}
#topPage section.company .left .heading-title {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #topPage section.company .left .heading-title {
    text-align: left;
  }
}
#topPage section.company .left .sub-title {
  color: #fff;
}
#topPage section.company .left .border {
  border-bottom: 2px solid white;
  display: block;
  width: 70px;
}
@media screen and (max-width: 768px) {
  #topPage section.company .left .border {
    border-bottom: 1px solid white;
    width: 55px;
  }
}
#topPage section.company .left .txt24 {
  width: 100%;
  font-size: 24px;
  margin: 40px 0px 30px 0px;
}
@media screen and (max-width: 768px) {
  #topPage section.company .left .txt24 {
    font-size: 20px;
    line-height: 2;
    margin: 25px 0px 15px 0px;
  }
}
#topPage section.company .left .txt20 {
  font-size: 20px;
  width: 100%;
  line-height: 2;
  letter-spacing: 2px;
  margin-bottom: 38px;
  box-sizing: border-box;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  #topPage section.company .left .txt20 {
    font-size: 15px;
    margin-bottom: 30px;
    line-height: unset;
    padding-left: 0px;
  }
}
#topPage section.company .left .pageLink {
  position: relative;
  border-radius: 100vh;
  border: 1px solid #fff;
  padding: 10px 0px;
  width: 280px;
  box-sizing: border-box;
  letter-spacing: 2px;
  transition: color 0.8s ease, background 0.8s ease;
  color: #fff;
}
#topPage section.company .left .pageLink:hover {
  background: #FFF;
  color: #016CD2;
}
@media screen and (max-width: 768px) {
  #topPage section.company .left .pageLink {
    margin: 0 auto;
    gap: 10px;
    width: 211px;
    border-radius: 100vh;
    border: 1px solid #ffffff;
    padding: 3px 14px;
  }
}
#topPage section.company .left .pageLink p {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #topPage section.company .left .pageLink p {
    font-size: 14px;
  }
}
#topPage section.company .left .pageLink img {
  width: 6px;
  height: 7.86px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #topPage section.company .left .pageLink img {
    width: 4px;
    height: 6px;
  }
}
#topPage section.company .right {
  display: flex;
  flex-wrap: nowrap;
  width: 53%;
  position: relative;
  bottom: 60px;
}
@media screen and (max-width: 768px) {
  #topPage section.company .right {
    width: 100%;
    order: 1;
    position: relative;
    top: 5%;
    padding: 0 20px;
  }
}
#topPage section.company .right .imgBox {
  position: relative;
  top: 40px;
  display: flex;
  width: 100%;
  gap: 10px;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  #topPage section.company .right .imgBox {
    display: none;
  }
}
#topPage section.company .right .position-b {
  position: relative;
  bottom: 140px;
}
@media screen and (max-width: 768px) {
  #topPage section.company .right .position-t {
    position: relative;
    top: 60px;
    margin-left: 0px;
    width: 140px !important;
  }
}
@media screen and (max-width: 768px) {
  #topPage section.company .right .sp_imgBox {
    position: absolute;
    bottom: -15px;
    right: -30px;
  }
}
#topPage section.company .right .img-242 {
  width: 242px;
  height: 437px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #topPage section.company .right .img-242 {
    width: 142px;
    height: auto;
  }
}
#topPage section.company .right .img-230 {
  width: 220px;
  height: auto;
}
#topPage section.company .item__bg02 {
  padding: 100px 60px 60px 60px;
}
@media screen and (max-width: 768px) {
  #topPage section.company .item__bg02 {
    padding: 50px 20px;
    background: #e6f0f8;
  }
}
#topPage section.company .item__bg02 h3 {
  font-size: 32px;
  text-align: center;
  color: #0168B7;
  margin-bottom: 30px;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  #topPage section.company .item__bg02 h3 {
    font-size: 18px;
    letter-spacing: 2px;
  }
}
#topPage section.company .item__bg02 .box-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 39px;
       column-gap: 39px;
  max-width: 1230px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #topPage section.company .item__bg02 .box-links {
    display: block;
  }
}
#topPage section.company .item__bg02 .box-links figure {
  max-width: 380px;
  overflow: hidden;
  position: relative;
}
#topPage section.company .item__bg02 .box-links figure:hover img {
  transform: scale(1.2);
}
#topPage section.company .item__bg02 .box-links figure:hover figcaption {
  background: #fff;
}
#topPage section.company .item__bg02 .box-links figure:hover figcaption span {
  color: #016CD2;
}
#topPage section.company .item__bg02 .box-links figure:hover .arrow {
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #topPage section.company .item__bg02 .box-links figure {
    max-width: 100%;
    margin-bottom: 20px;
    height: 200px;
  }
}
#topPage section.company .item__bg02 .box-links img {
  width: 100%;
  transition: transform 0.8s ease;
}
@media screen and (max-width: 768px) {
  #topPage section.company .item__bg02 .box-links img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#topPage section.company .item__bg02 .box-links figcaption {
  position: absolute;
  top: 90%;
  transform: translateY(-90%);
  right: 5%;
  width: auto;
  text-align: center;
  padding: 5px 34px;
  border: 1px solid #fff;
  border-radius: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.8s ease;
}
@media screen and (max-width: 768px) {
  #topPage section.company .item__bg02 .box-links figcaption {
    text-align: center;
    padding: 5px 0px;
    width: 155px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#topPage section.company .item__bg02 .box-links figcaption span {
  color: #ffffff;
  font-size: 16px;
  transition: color 0.8s ease;
}
@media screen and (max-width: 768px) {
  #topPage section.company .item__bg02 .box-links figcaption span {
    letter-spacing: 1.2px;
  }
}
#topPage section.company .item__bg02 .box-links figcaption .arrow {
  width: 6px;
  height: 8px;
  position: absolute;
  right: 15px;
  top: 55%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #topPage section.company .item__bg02 .box-links figcaption .arrow {
    width: 4px;
    height: 6px;
    position: absolute;
    right: 15px;
  }
}
#topPage section.company .item__bg02 .box-links .tile {
  height: 345px;
}
#topPage section.news .contents {
  height: 680px;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 0px;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 68%, #E6F0F8 68%, #E6F0F8 100%);
  padding: 0px 0px 0px 4%;
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents {
    flex-wrap: wrap;
    height: auto;
    padding: 0px 0px 47px 0px;
    background-image: linear-gradient(to right, #E6F0F8 0%, #E6F0F8 3%, rgba(255, 255, 255, 0) 3%, rgba(255, 255, 255, 0) 100%);
  }
}
#topPage section.news .contents .left {
  width: 35%;
  padding-bottom: 90px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents .left {
    display: none;
    width: 100%;
    position: relative;
    top: 30px;
    padding: 0px;
    margin-bottom: 0px;
    z-index: 100;
    background: unset;
    background-image: unset;
  }
}
#topPage section.news .contents .left .news-img01 {
  width: 495px;
  height: 379px;
  position: absolute;
  top: -65px;
}
#topPage section.news .contents .left .news-img02 {
  width: 222px;
  height: 215px;
  position: absolute;
  left: 80px;
  bottom: 30px;
}
#topPage section.news .contents .left .news-img03 {
  width: 172px;
  height: 171px;
  position: absolute;
  bottom: -50px;
  left: 445px;
}
#topPage section.news .contents .right {
  position: relative;
  width: 61%;
  border-bottom-left-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 87px;
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents .right {
    display: block;
    width: 100%;
    padding-bottom: 43px;
    background-color: unset;
  }
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents .right .sp_image-area {
    width: 100%;
    height: 250px;
    position: relative;
    box-sizing: border-box;
    padding: 0px 15px;
  }
}
#topPage section.news .contents .right .sp_image-area .sp_news-img01 {
  width: 86px;
  height: auto;
  position: relative;
  top: 30px;
}
#topPage section.news .contents .right .sp_image-area .sp_news-img02 {
  width: 238px;
  height: auto;
  position: relative;
  left: 5px;
}
#topPage section.news .contents .right .sp_image-area .sp_news-img03 {
  width: 77px;
  height: auto;
  position: absolute;
  right: 5px;
  bottom: -3px;
}
#topPage section.news .contents .right .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 333px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents .right .heading {
    margin: 30px 0px 15px 0px;
    justify-content: center;
    height: auto;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents .right .heading-title {
    text-align: left;
    padding-left: 40px;
    left: unset;
    transform: unset;
  }
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents .right p.sub-title {
    text-align: left;
    padding-left: 40px;
  }
}
#topPage section.news .contents .right .news-heading {
  max-width: 622px;
  width: 100%;
  position: absolute;
  top: 10%;
  left: 80px;
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents .right .news-heading {
    position: relative;
    max-width: 100%;
    width: 220px;
    top: unset;
    left: unset;
    padding-left: 25px;
  }
}
#topPage section.news .contents .right .line {
  position: absolute;
  top: 20%;
  right: 0;
  width: calc(90% - 333px);
  height: 1px;
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents .right .border {
    border-bottom: 2px solid #1EB9EF;
    display: block;
    width: 36px;
  }
}
#topPage section.news .contents .right .news-area {
  max-width: 548px;
  position: relative;
}
#topPage section.news .contents .right .article-lists {
  margin-top: 70px;
  margin-bottom: 49px;
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents .right .article-lists {
    padding: 0 40px;
    margin-top: 32px;
    margin-bottom: 0px;
  }
}
#topPage section.news .contents .right .article-lists li:hover .article-title {
  color: #0168B7;
}
#topPage section.news .contents .right .article-lists .article-link {
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  padding-bottom: 26px;
  border-bottom: 1px solid #E6F0F8;
  margin-bottom: 26px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents .right .article-lists .article-link {
    justify-content: start;
    gap: 20px;
    padding-bottom: 5px;
  }
}
#topPage section.news .contents .right .article-lists .article-date {
  font-size: 20px;
  color: #0168B7;
  transition: color 0.8s ease;
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents .right .article-lists .article-date {
    font-size: 10px;
  }
}
#topPage section.news .contents .right .article-lists .article-title {
  font-size: 18px;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.8s ease;
  border-bottom: 1px solid rgba(51, 51, 51, 0);
  transition: color 0.8s ease;
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents .right .article-lists .article-title {
    font-size: 13px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}
#topPage section.news .contents .right .pageLink2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  color: #016CD2;
  position: absolute;
  right: 0;
  width: 227px;
  border-radius: 100vh;
  border: 1px solid #016CD2;
  padding: 8px 15px;
  transition: color 0.8s ease, background 0.8s ease;
}
#topPage section.news .contents .right .pageLink2:hover {
  background: #016CD2;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents .right .pageLink2 {
    justify-content: center;
    gap: 15px;
    border-radius: 100vh;
    border: 1px solid #016CD2;
    width: 140px;
    margin: 0 auto;
    padding: 8px 15px;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}
#topPage section.news .contents .right .pageLink2 p {
  font-size: 18px;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents .right .pageLink2 p {
    font-size: 15px;
    letter-spacing: 1.1px;
  }
}
#topPage section.news .contents .right .pageLink2 img {
  position: absolute;
  right: 20px;
  width: 6px;
  height: 7.86px;
}
@media screen and (max-width: 768px) {
  #topPage section.news .contents .right .pageLink2 img {
    position: relative;
    left: 2px;
  }
}
#topPage section.news .color-bottom-bg {
  height: 194px;
  width: 100%;
  background: #E6F0F8;
}
@media screen and (max-width: 768px) {
  #topPage section.news .color-bottom-bg {
    height: 72px;
  }
}

#privacyPage .sectionInner {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #privacyPage .sectionInner {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #privacyPage .section-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  #privacyPage .section-subTitle {
    font-size: 12px;
  }
}
#privacyPage .privacy-contents .sectionInner {
  margin: 80px auto 158px auto;
}
@media screen and (max-width: 768px) {
  #privacyPage .privacy-contents .sectionInner {
    width: 100%;
    margin: 30px auto 60px auto;
    padding: 0px 27px 60px 27px;
    box-sizing: border-box;
  }
}
#privacyPage .privacy-contents .sectionInner h3,
#privacyPage .privacy-contents .sectionInner ::marker {
  font-size: 22px;
  font-weight: bold;
  line-height: 2.5;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  #privacyPage .privacy-contents .sectionInner h3,
#privacyPage .privacy-contents .sectionInner ::marker {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 2.3;
  }
}
#privacyPage .privacy-contents .sectionInner .list-01 {
  margin-bottom: 20px;
  list-style: none;
}
#privacyPage .privacy-contents .sectionInner .list-01 p,
#privacyPage .privacy-contents .sectionInner .list-01 .normal-list {
  line-height: 2.3;
  font-size: 18px;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  #privacyPage .privacy-contents .sectionInner .list-01 p,
#privacyPage .privacy-contents .sectionInner .list-01 .normal-list {
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 2.3;
  }
}
#privacyPage .privacy-contents .sectionInner .list-01 li {
  list-style: none;
  line-height: 2;
  font-size: 16px;
  letter-spacing: 1px;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  #privacyPage .privacy-contents .sectionInner .list-01 li {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.8;
  }
}
#privacyPage .privacy-contents .sectionInner .list-01 .normal-list {
  padding-left: 0px !important;
}
#privacyPage .privacy-contents .sectionInner .list-01 a {
  color: #0168b7;
}
#privacyPage .privacy-contents .sectionInner .list-01 a:hover {
  opacity: 0.8;
}

#aboutPage section .sectionInner {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #aboutPage section .sectionInner {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #aboutPage section .section-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  #aboutPage section .section-subTitle {
    font-size: 12px;
  }
}
#aboutPage section.message {
  margin-top: 170px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.message {
    margin-top: 70px;
    margin-bottom: 0px;
  }
}
#aboutPage section.message .heading-img {
  max-width: 1017px;
  width: 75%;
  position: relative;
  left: 20px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.message .heading-img {
    max-width: 100%;
    width: 100%;
    left: 0;
  }
}
#aboutPage section.message .section-bg {
  background-color: #F8F8F8;
  position: relative;
}
#aboutPage section.message .presidentImg {
  max-width: 825px;
  width: 100%;
  height: auto;
  position: absolute;
  right: 0%;
  top: -18%;
}
@media screen and (max-width: 768px) {
  #aboutPage section.message .presidentImg {
    top: -4%;
    width: 312px;
    height: auto;
  }
}
#aboutPage section.message .sectionInner {
  padding: 167px 0px 97px 0px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.message .sectionInner {
    padding: 125px 27px 60px 27px;
    box-sizing: border-box;
  }
}
#aboutPage section.message .section-heading {
  margin-bottom: 31px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.message .section-heading {
    margin-bottom: 28px;
    line-height: 1;
    margin: 0px 0px 28px 0px;
  }
}
@media screen and (max-width: 768px) {
  #aboutPage section.message .section-heading .section-title {
    text-align: left;
  }
}
#aboutPage section.message .section-heading .underLine {
  max-width: 200px;
  width: 100%;
  height: 2px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.message .section-heading .underLine {
    max-width: 84px;
    width: 84px;
  }
}
@media screen and (max-width: 768px) {
  #aboutPage section.message .section-heading .section-subTitle {
    margin-top: 10px;
    font-size: 12px;
    text-align: left;
  }
}
#aboutPage section.message .section-content p {
  line-height: 2.5;
  font-size: 18px;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.message .section-content p {
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 2.3;
  }
}
#aboutPage section.philosophy {
  background-color: #F8F8F8;
  margin-bottom: 139px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.philosophy {
    background-color: #fff;
    overflow: hidden;
    margin-bottom: 103px;
  }
}
#aboutPage section.philosophy .heading-img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #aboutPage section.philosophy .sp_heading-img {
    height: 67px;
  }
}
#aboutPage section.philosophy .section-bg {
  background-image: url("../img/about/philosophybg.png");
  background-size: cover;
  background-position: bottom;
}
@media screen and (max-width: 768px) {
  #aboutPage section.philosophy .section-bg {
    background-image: url("../img/sp/about/philosophybg.png");
    padding: 0 27px;
  }
}
#aboutPage section.philosophy .sectionInner {
  max-width: 930px;
  width: 100%;
  margin: 0 auto;
  padding: 110px 0px 127px 0px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.philosophy .sectionInner {
    padding: 81px 0px 54px 0px;
  }
}
#aboutPage section.philosophy .section-heading {
  text-align: center;
  margin-bottom: 38px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.philosophy .section-heading {
    width: 100%;
    margin: 0px;
  }
}
#aboutPage section.philosophy .section-heading .section-title {
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #aboutPage section.philosophy .section-heading .section-title {
    font-weight: normal;
  }
}
@media screen and (max-width: 768px) {
  #aboutPage section.philosophy .section-heading .section-title span {
    font-weight: normal;
  }
}
#aboutPage section.philosophy .section-heading .underLine {
  margin-bottom: 23px;
  max-width: 64px;
  height: 2px;
}
#aboutPage section.philosophy .section-heading .section-subTitle {
  color: #fff;
  margin-top: 5px;
}
#aboutPage section.philosophy .section-heading .section-txt-content {
  color: #fff;
  font-size: 26px;
  font-weight: normal;
  line-height: 2.5;
  letter-spacing: 5px;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.philosophy .section-heading .section-txt-content {
    font-size: 17px;
    line-height: 2;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 20px 0px;
  }
}
#aboutPage section.philosophy .section-content {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #aboutPage section.philosophy .section-content {
    text-align: left;
  }
}
#aboutPage section.philosophy .section-content p {
  color: #fff;
  font-size: 16px;
  line-height: 3.5;
}
@media screen and (max-width: 768px) {
  #aboutPage section.philosophy .section-content p {
    font-size: 15px;
    line-height: 2;
  }
}
#aboutPage section.overview {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.overview {
    overflow: hidden;
    margin-bottom: 200px;
  }
}
#aboutPage section.overview .heading-img {
  max-width: 1230px;
  width: 85%;
  height: auto;
  position: relative;
  top: 60px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.overview .heading-img {
    width: 112%;
    top: 25px;
    left: -20px;
  }
}
#aboutPage section.overview .sectionInner {
  width: 1305px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.overview .sectionInner {
    width: 100%;
  }
}
#aboutPage section.overview .section-heading {
  max-width: 350px;
  height: auto;
  margin: 0 auto 50px auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #aboutPage section.overview .section-heading {
    margin: 0 auto 25px auto;
    width: auto;
  }
}
#aboutPage section.overview .section-heading .underLine {
  max-width: 64px;
  height: 2px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.overview .section-heading .underLine {
    max-width: 32px;
    width: 32px;
    line-height: 1;
  }
}
#aboutPage section.overview .section-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.overview .section-content {
    gap: 25px;
  }
}
#aboutPage section.overview .section-content .left {
  width: 40%;
  height: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  #aboutPage section.overview .section-content .left {
    width: 100%;
    padding: 0 27px;
    margin-bottom: 0px;
  }
}
#aboutPage section.overview .section-content .left .overview01 {
  width: 391px;
  height: 424px;
}
#aboutPage section.overview .section-content .left .overview02 {
  width: 289px;
  height: 318px;
  z-index: 2;
  position: absolute;
  top: 300px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.overview .section-content .left .overviewSp {
    width: 100%;
    height: auto;
  }
}
#aboutPage section.overview .section-content .right {
  width: 50%;
  height: auto;
}
@media screen and (max-width: 768px) {
  #aboutPage section.overview .section-content .right {
    width: 100%;
    padding: 0 27px;
  }
}
#aboutPage section.overview .section-content .table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.overview .section-content .table {
    font-size: 14px;
    padding: 0;
    letter-spacing: 1px;
  }
}
#aboutPage section.overview .section-content .row {
  display: table-row;
}
#aboutPage section.overview .section-content .cell {
  display: table-cell;
  padding: 15px 10px;
  border-bottom: 1px solid #E6F0F8;
}
@media screen and (max-width: 768px) {
  #aboutPage section.overview .section-content .cell {
    padding: 15px 0px;
  }
}
#aboutPage section.overview .section-content .indent {
  padding-left: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #aboutPage section.overview .section-content .indent {
    padding-left: 0;
    font-size: 13px;
  }
}
#aboutPage section.overview .section-content .cell-heading {
  font-weight: bold;
  width: 22%;
}
@media screen and (max-width: 768px) {
  #aboutPage section.overview .section-content .cell-heading {
    width: 31%;
  }
}
#aboutPage section.overview .section-content .content {
  width: 77%;
}
@media screen and (max-width: 768px) {
  #aboutPage section.overview .section-content .content {
    width: 66%;
  }
}
#aboutPage section.history {
  position: relative;
  margin-bottom: 0px;
  /* flex-schedul */
}
#aboutPage section.history .heading-img {
  max-width: 926px;
  width: 75%;
  height: auto;
  display: block;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #aboutPage section.history .heading-img {
    max-width: unset;
    width: 92%;
    margin: 0 auto 40px auto;
  }
}
#aboutPage section.history .section-bg {
  padding-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.history .section-bg {
    padding-bottom: 60px;
    background: #E6F0F8;
  }
}
#aboutPage section.history .sectionInner {
  margin-right: 0;
  padding: 0px 0px 133px 150px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.history .sectionInner {
    box-sizing: border-box;
    margin: 0px 0px 0px 26px;
    width: auto;
    padding: 15px 23px 30px 22px;
    border-bottom-left-radius: 5px;
    position: relative;
    background: #fff;
  }
}
#aboutPage section.history .sectionInner .section-content {
  width: 100%;
}
#aboutPage section.history .section-heading {
  text-align: center;
  margin-bottom: 58px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.history .section-heading {
    position: absolute;
    left: 50%;
    top: -10%;
    bottom: unset;
    transform: translateX(-50%);
  }
}
#aboutPage section.history .section-heading .underLine {
  max-width: 64px;
  width: 100%;
  height: 2px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.history .section-heading .underLine {
    max-width: 32px;
    width: 32px;
  }
}
#aboutPage section.history .flex-schedule {
  width: 100%;
  list-style: none;
  margin: 0 auto 0 0;
  box-sizing: border-box;
}
#aboutPage section.history .flex-schedule li {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
#aboutPage section.history .flex-schedule .area {
  padding: 10px 10px 10px 37px;
  display: block;
  width: 100%;
  border-left: 1px solid #000;
}
@media screen and (max-width: 768px) {
  #aboutPage section.history .flex-schedule .area {
    padding: 10px 0px 10px 17px;
    box-sizing: border-box;
  }
}
#aboutPage section.history .flex-schedule li .time {
  display: inline-flex;
  justify-content: flex-end;
  flex-basis: 5em;
  max-width: 5em;
  margin-right: 1em;
  margin-top: 30px;
}
#aboutPage section.history .flex-schedule .sch_box {
  position: relative;
  min-height: 1em;
  padding: 10px;
  border-radius: 6px;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  #aboutPage section.history .flex-schedule .sch_box {
    padding: 10px 0;
    display: block;
  }
}
#aboutPage section.history .flex-schedule .sch_box::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 20px;
  background: #1EB9EF;
  width: 15px;
  height: 15px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.history .flex-schedule .sch_box::before {
    left: -22px;
    top: 15px;
    width: 10px;
    height: 10px;
  }
}
#aboutPage section.history .flex-schedule .sch_title {
  font-size: 20px;
  font-weight: normal;
  max-width: 190px;
  width: 30%;
}
@media screen and (max-width: 768px) {
  #aboutPage section.history .flex-schedule .sch_title {
    font-size: 14px;
    width: 100%;
  }
}
#aboutPage section.history .flex-schedule .sch_tx {
  font-size: 20px;
  font-weight: normal;
  width: 65%;
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.history .flex-schedule .sch_tx {
    width: 100%;
    font-size: 14px;
    letter-spacing: 1px;
  }
}
#aboutPage section.access .section-heading {
  background: #fff;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #aboutPage section.access .section-heading {
    width: 100%;
  }
}
#aboutPage section.access .section-bg {
  background-color: #E6F0F8;
  padding: 82px 67px 132px 67px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.access .section-bg {
    padding: 0px 26px 49px 26px;
  }
}
#aboutPage section.access .sectionInner {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #aboutPage section.access .sectionInner {
    width: 100%;
    max-width: unset;
  }
}
#aboutPage section.access .section-heading {
  text-align: center;
  background-color: #fff;
  padding-top: 55px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.access .section-heading {
    line-height: 1;
    padding-top: 47px;
  }
}
#aboutPage section.access .underLine {
  max-width: 48px;
  height: 2px;
}
#aboutPage section.access .section-title {
  font-size: 49px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #aboutPage section.access .section-title {
    font-size: 30px;
  }
}
#aboutPage section.access .section-content {
  background-color: #fff;
  display: flex;
  justify-content: space-around;
  padding: 42px 56px 74px 56px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.access .section-content {
    flex-wrap: wrap;
    height: 580px;
    padding: 15px 26px 5px 26px;
  }
}
#aboutPage section.access .left,
#aboutPage section.access .right {
  text-align: center;
  width: 45%;
  height: 440px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.access .left,
#aboutPage section.access .right {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  #aboutPage section.access .left iframe,
#aboutPage section.access .right iframe {
    height: 191px !important;
  }
}
#aboutPage section.access .left p,
#aboutPage section.access .right p {
  font-size: 16px;
  font-weight: normal;
  margin-top: 20px;
  line-height: 2;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  #aboutPage section.access .left p,
#aboutPage section.access .right p {
    font-size: 12px;
    margin-top: 5px;
    letter-spacing: 1px;
    text-align: left;
  }
}
#trashhousePage,
#junk_removalPage,
#deodorizerPage,
#cleaningPage,
#coatingPage,
#dismantling_reformPage,
#recruitPage {
  background: #E6F0F8;
}
#trashhousePage .normal-mv,
#junk_removalPage .normal-mv,
#deodorizerPage .normal-mv,
#cleaningPage .normal-mv,
#coatingPage .normal-mv,
#dismantling_reformPage .normal-mv,
#recruitPage .normal-mv {
  width: 100%;
  height: 450px;
  background-image: url("../img/trashhouse/mv-trash.png");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #trashhousePage .normal-mv,
#junk_removalPage .normal-mv,
#deodorizerPage .normal-mv,
#cleaningPage .normal-mv,
#coatingPage .normal-mv,
#dismantling_reformPage .normal-mv,
#recruitPage .normal-mv {
    background-image: url("../img/sp/trashhouse/sp_mv-trashhouse.png");
    height: 150px;
  }
}
#trashhousePage section#about,
#junk_removalPage section#about,
#deodorizerPage section#about,
#cleaningPage section#about,
#coatingPage section#about,
#dismantling_reformPage section#about,
#recruitPage section#about {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#about,
#junk_removalPage section#about,
#deodorizerPage section#about,
#cleaningPage section#about,
#coatingPage section#about,
#dismantling_reformPage section#about,
#recruitPage section#about {
    margin-bottom: 50px;
  }
}
#trashhousePage section#about .section-wrapper,
#junk_removalPage section#about .section-wrapper,
#deodorizerPage section#about .section-wrapper,
#cleaningPage section#about .section-wrapper,
#coatingPage section#about .section-wrapper,
#dismantling_reformPage section#about .section-wrapper,
#recruitPage section#about .section-wrapper {
  width: 100%;
  background: #E6F0F8;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#about .section-wrapper,
#junk_removalPage section#about .section-wrapper,
#deodorizerPage section#about .section-wrapper,
#cleaningPage section#about .section-wrapper,
#coatingPage section#about .section-wrapper,
#dismantling_reformPage section#about .section-wrapper,
#recruitPage section#about .section-wrapper {
    height: auto;
  }
}
#trashhousePage section#about .bg-white,
#junk_removalPage section#about .bg-white,
#deodorizerPage section#about .bg-white,
#cleaningPage section#about .bg-white,
#coatingPage section#about .bg-white,
#dismantling_reformPage section#about .bg-white,
#recruitPage section#about .bg-white {
  width: 95%;
  background: #fff;
  padding-top: 90px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#about .bg-white,
#junk_removalPage section#about .bg-white,
#deodorizerPage section#about .bg-white,
#cleaningPage section#about .bg-white,
#coatingPage section#about .bg-white,
#dismantling_reformPage section#about .bg-white,
#recruitPage section#about .bg-white {
    padding-top: 74px;
    padding-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  #trashhousePage section#about .img-wrapper,
#junk_removalPage section#about .img-wrapper,
#deodorizerPage section#about .img-wrapper,
#cleaningPage section#about .img-wrapper,
#coatingPage section#about .img-wrapper,
#dismantling_reformPage section#about .img-wrapper,
#recruitPage section#about .img-wrapper {
    position: relative;
    height: 260px;
    width: 100%;
  }
}
#trashhousePage section#about .img-wrapper .left-img,
#junk_removalPage section#about .img-wrapper .left-img,
#deodorizerPage section#about .img-wrapper .left-img,
#cleaningPage section#about .img-wrapper .left-img,
#coatingPage section#about .img-wrapper .left-img,
#dismantling_reformPage section#about .img-wrapper .left-img,
#recruitPage section#about .img-wrapper .left-img {
  width: 235px;
  height: 178px;
}
#trashhousePage section#about .img-wrapper .right-img,
#junk_removalPage section#about .img-wrapper .right-img,
#deodorizerPage section#about .img-wrapper .right-img,
#cleaningPage section#about .img-wrapper .right-img,
#coatingPage section#about .img-wrapper .right-img,
#dismantling_reformPage section#about .img-wrapper .right-img,
#recruitPage section#about .img-wrapper .right-img {
  width: 117px;
  height: 157px;
  position: absolute;
  bottom: 50px;
  right: -20px;
}
#trashhousePage section#about .heading-txt,
#junk_removalPage section#about .heading-txt,
#deodorizerPage section#about .heading-txt,
#cleaningPage section#about .heading-txt,
#coatingPage section#about .heading-txt,
#dismantling_reformPage section#about .heading-txt,
#recruitPage section#about .heading-txt {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #0168B7;
  margin-bottom: 0px;
  margin-left: 8%;
  letter-spacing: 5px;
  line-height: 54px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#about .heading-txt,
#junk_removalPage section#about .heading-txt,
#deodorizerPage section#about .heading-txt,
#cleaningPage section#about .heading-txt,
#coatingPage section#about .heading-txt,
#dismantling_reformPage section#about .heading-txt,
#recruitPage section#about .heading-txt {
    font-size: 20px;
    text-align: left;
    line-height: 2;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
}
#trashhousePage section#about .contents,
#junk_removalPage section#about .contents,
#deodorizerPage section#about .contents,
#cleaningPage section#about .contents,
#coatingPage section#about .contents,
#dismantling_reformPage section#about .contents,
#recruitPage section#about .contents {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  margin-bottom: 64px;
  align-items: center;
  box-sizing: border-box;
  padding: 30px 64px 30px 31px;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#about .contents,
#junk_removalPage section#about .contents,
#deodorizerPage section#about .contents,
#cleaningPage section#about .contents,
#coatingPage section#about .contents,
#dismantling_reformPage section#about .contents,
#recruitPage section#about .contents {
    display: block;
    height: auto;
    flex-wrap: wrap;
    margin-left: 0;
    align-items: unset;
    padding: 0px 10px 0px 28px;
    margin-bottom: 0px;
  }
}
#trashhousePage section#about .contents .left,
#junk_removalPage section#about .contents .left,
#deodorizerPage section#about .contents .left,
#cleaningPage section#about .contents .left,
#coatingPage section#about .contents .left,
#dismantling_reformPage section#about .contents .left,
#recruitPage section#about .contents .left {
  width: calc(56% - 30px);
  position: relative;
  height: 400px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#about .contents .left,
#junk_removalPage section#about .contents .left,
#deodorizerPage section#about .contents .left,
#cleaningPage section#about .contents .left,
#coatingPage section#about .contents .left,
#dismantling_reformPage section#about .contents .left,
#recruitPage section#about .contents .left {
    width: 100%;
    padding: 0;
    margin-bottom: 11px;
  }
}
#trashhousePage section#about .contents .left .left01,
#junk_removalPage section#about .contents .left .left01,
#deodorizerPage section#about .contents .left .left01,
#cleaningPage section#about .contents .left .left01,
#coatingPage section#about .contents .left .left01,
#dismantling_reformPage section#about .contents .left .left01,
#recruitPage section#about .contents .left .left01 {
  width: 340px;
  height: auto;
}
#trashhousePage section#about .contents .left .left02,
#junk_removalPage section#about .contents .left .left02,
#deodorizerPage section#about .contents .left .left02,
#cleaningPage section#about .contents .left .left02,
#coatingPage section#about .contents .left .left02,
#dismantling_reformPage section#about .contents .left .left02,
#recruitPage section#about .contents .left .left02 {
  width: 250px;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 40px;
}
#trashhousePage section#about .contents .left .left03,
#junk_removalPage section#about .contents .left .left03,
#deodorizerPage section#about .contents .left .left03,
#cleaningPage section#about .contents .left .left03,
#coatingPage section#about .contents .left .left03,
#dismantling_reformPage section#about .contents .left .left03,
#recruitPage section#about .contents .left .left03 {
  width: 170px;
  height: auto;
  position: absolute;
  bottom: -90px;
  left: 37%;
  transform: translateX(-50%);
}
#trashhousePage section#about .contents .right,
#junk_removalPage section#about .contents .right,
#deodorizerPage section#about .contents .right,
#cleaningPage section#about .contents .right,
#coatingPage section#about .contents .right,
#dismantling_reformPage section#about .contents .right,
#recruitPage section#about .contents .right {
  width: calc(40% - 30px);
}
@media screen and (max-width: 768px) {
  #trashhousePage section#about .contents .right,
#junk_removalPage section#about .contents .right,
#deodorizerPage section#about .contents .right,
#cleaningPage section#about .contents .right,
#coatingPage section#about .contents .right,
#dismantling_reformPage section#about .contents .right,
#recruitPage section#about .contents .right {
    width: 100%;
  }
}
#trashhousePage section#about .contents .right .right__txt,
#junk_removalPage section#about .contents .right .right__txt,
#deodorizerPage section#about .contents .right .right__txt,
#cleaningPage section#about .contents .right .right__txt,
#coatingPage section#about .contents .right .right__txt,
#dismantling_reformPage section#about .contents .right .right__txt,
#recruitPage section#about .contents .right .right__txt {
  color: #333;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 40px;
  letter-spacing: 3px;
  line-height: 2.6;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#about .contents .right .right__txt,
#junk_removalPage section#about .contents .right .right__txt,
#deodorizerPage section#about .contents .right .right__txt,
#cleaningPage section#about .contents .right .right__txt,
#coatingPage section#about .contents .right .right__txt,
#dismantling_reformPage section#about .contents .right .right__txt,
#recruitPage section#about .contents .right .right__txt {
    line-height: 32px;
    font-size: 15px;
    padding: 0;
    line-height: 2.5;
    letter-spacing: 1.5px;
    margin-bottom: 0px;
  }
}
#trashhousePage section#service,
#junk_removalPage section#service,
#deodorizerPage section#service,
#cleaningPage section#service,
#coatingPage section#service,
#dismantling_reformPage section#service,
#recruitPage section#service {
  background-color: #fff;
  padding: 100px 60px 94px 60px;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#service,
#junk_removalPage section#service,
#deodorizerPage section#service,
#cleaningPage section#service,
#coatingPage section#service,
#dismantling_reformPage section#service,
#recruitPage section#service {
    padding: 86px 27px 30px 27px;
  }
}
#trashhousePage section#service .box-links,
#junk_removalPage section#service .box-links,
#deodorizerPage section#service .box-links,
#cleaningPage section#service .box-links,
#coatingPage section#service .box-links,
#dismantling_reformPage section#service .box-links,
#recruitPage section#service .box-links {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#service .box-links,
#junk_removalPage section#service .box-links,
#deodorizerPage section#service .box-links,
#cleaningPage section#service .box-links,
#coatingPage section#service .box-links,
#dismantling_reformPage section#service .box-links,
#recruitPage section#service .box-links {
    display: block;
    max-width: 100%;
  }
}
#trashhousePage section#service .box-links li,
#junk_removalPage section#service .box-links li,
#deodorizerPage section#service .box-links li,
#cleaningPage section#service .box-links li,
#coatingPage section#service .box-links li,
#dismantling_reformPage section#service .box-links li,
#recruitPage section#service .box-links li {
  width: 320px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#service .box-links li,
#junk_removalPage section#service .box-links li,
#deodorizerPage section#service .box-links li,
#cleaningPage section#service .box-links li,
#coatingPage section#service .box-links li,
#dismantling_reformPage section#service .box-links li,
#recruitPage section#service .box-links li {
    width: 320px;
    margin: 0 auto 35px auto;
  }
}
@media screen and (max-width: 768px) {
  #trashhousePage section#service .box-links li:last-of-type,
#junk_removalPage section#service .box-links li:last-of-type,
#deodorizerPage section#service .box-links li:last-of-type,
#cleaningPage section#service .box-links li:last-of-type,
#coatingPage section#service .box-links li:last-of-type,
#dismantling_reformPage section#service .box-links li:last-of-type,
#recruitPage section#service .box-links li:last-of-type {
    margin-bottom: 0px;
  }
}
#trashhousePage section#service .box-links figure,
#junk_removalPage section#service .box-links figure,
#deodorizerPage section#service .box-links figure,
#cleaningPage section#service .box-links figure,
#coatingPage section#service .box-links figure,
#dismantling_reformPage section#service .box-links figure,
#recruitPage section#service .box-links figure {
  width: 320px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#service .box-links figure,
#junk_removalPage section#service .box-links figure,
#deodorizerPage section#service .box-links figure,
#cleaningPage section#service .box-links figure,
#coatingPage section#service .box-links figure,
#dismantling_reformPage section#service .box-links figure,
#recruitPage section#service .box-links figure {
    width: 100%;
    max-width: 320px;
    margin-bottom: 18px;
  }
}
#trashhousePage section#service .box-links img,
#junk_removalPage section#service .box-links img,
#deodorizerPage section#service .box-links img,
#cleaningPage section#service .box-links img,
#coatingPage section#service .box-links img,
#dismantling_reformPage section#service .box-links img,
#recruitPage section#service .box-links img {
  width: 100%;
}
#trashhousePage section#service .box-links h4,
#junk_removalPage section#service .box-links h4,
#deodorizerPage section#service .box-links h4,
#cleaningPage section#service .box-links h4,
#coatingPage section#service .box-links h4,
#dismantling_reformPage section#service .box-links h4,
#recruitPage section#service .box-links h4 {
  font-size: 24px;
  font-weight: bold;
  color: #0168B7;
  margin: 18px 0px 10px 0px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#service .box-links h4,
#junk_removalPage section#service .box-links h4,
#deodorizerPage section#service .box-links h4,
#cleaningPage section#service .box-links h4,
#coatingPage section#service .box-links h4,
#dismantling_reformPage section#service .box-links h4,
#recruitPage section#service .box-links h4 {
    font-size: 18px;
  }
}
#trashhousePage section#service .box-links p,
#junk_removalPage section#service .box-links p,
#deodorizerPage section#service .box-links p,
#cleaningPage section#service .box-links p,
#coatingPage section#service .box-links p,
#dismantling_reformPage section#service .box-links p,
#recruitPage section#service .box-links p {
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#service .box-links p,
#junk_removalPage section#service .box-links p,
#deodorizerPage section#service .box-links p,
#cleaningPage section#service .box-links p,
#coatingPage section#service .box-links p,
#dismantling_reformPage section#service .box-links p,
#recruitPage section#service .box-links p {
    font-size: 15px;
    line-height: 2.3;
  }
}
#trashhousePage section#service02,
#junk_removalPage section#service02,
#deodorizerPage section#service02,
#cleaningPage section#service02,
#coatingPage section#service02,
#dismantling_reformPage section#service02,
#recruitPage section#service02 {
  width: 100%;
  background: #fff;
  padding: 102px 0px 144px 0px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#service02,
#junk_removalPage section#service02,
#deodorizerPage section#service02,
#cleaningPage section#service02,
#coatingPage section#service02,
#dismantling_reformPage section#service02,
#recruitPage section#service02 {
    padding: 86px 0px 80px 0px;
  }
}
#trashhousePage section#service02 .service02-inner,
#junk_removalPage section#service02 .service02-inner,
#deodorizerPage section#service02 .service02-inner,
#cleaningPage section#service02 .service02-inner,
#coatingPage section#service02 .service02-inner,
#dismantling_reformPage section#service02 .service02-inner,
#recruitPage section#service02 .service02-inner {
  width: 1230px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#service02 .service02-inner,
#junk_removalPage section#service02 .service02-inner,
#deodorizerPage section#service02 .service02-inner,
#cleaningPage section#service02 .service02-inner,
#coatingPage section#service02 .service02-inner,
#dismantling_reformPage section#service02 .service02-inner,
#recruitPage section#service02 .service02-inner {
    width: 100%;
  }
}
#trashhousePage section#service02 .personality-area .flex-wrapper,
#junk_removalPage section#service02 .personality-area .flex-wrapper,
#deodorizerPage section#service02 .personality-area .flex-wrapper,
#cleaningPage section#service02 .personality-area .flex-wrapper,
#coatingPage section#service02 .personality-area .flex-wrapper,
#dismantling_reformPage section#service02 .personality-area .flex-wrapper,
#recruitPage section#service02 .personality-area .flex-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 71px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#service02 .personality-area .flex-wrapper,
#junk_removalPage section#service02 .personality-area .flex-wrapper,
#deodorizerPage section#service02 .personality-area .flex-wrapper,
#cleaningPage section#service02 .personality-area .flex-wrapper,
#coatingPage section#service02 .personality-area .flex-wrapper,
#dismantling_reformPage section#service02 .personality-area .flex-wrapper,
#recruitPage section#service02 .personality-area .flex-wrapper {
    display: block;
    width: 320px;
    margin: 0 auto 40px auto;
  }
}
#trashhousePage section#service02 .personality-area .left,
#junk_removalPage section#service02 .personality-area .left,
#deodorizerPage section#service02 .personality-area .left,
#cleaningPage section#service02 .personality-area .left,
#coatingPage section#service02 .personality-area .left,
#dismantling_reformPage section#service02 .personality-area .left,
#recruitPage section#service02 .personality-area .left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#service02 .personality-area .left,
#junk_removalPage section#service02 .personality-area .left,
#deodorizerPage section#service02 .personality-area .left,
#cleaningPage section#service02 .personality-area .left,
#coatingPage section#service02 .personality-area .left,
#dismantling_reformPage section#service02 .personality-area .left,
#recruitPage section#service02 .personality-area .left {
    width: 100%;
  }
}
#trashhousePage section#service02 .personality-area .left .personality-img,
#junk_removalPage section#service02 .personality-area .left .personality-img,
#deodorizerPage section#service02 .personality-area .left .personality-img,
#cleaningPage section#service02 .personality-area .left .personality-img,
#coatingPage section#service02 .personality-area .left .personality-img,
#dismantling_reformPage section#service02 .personality-area .left .personality-img,
#recruitPage section#service02 .personality-area .left .personality-img {
  width: 100%;
}
#trashhousePage section#service02 .personality-area .right,
#junk_removalPage section#service02 .personality-area .right,
#deodorizerPage section#service02 .personality-area .right,
#cleaningPage section#service02 .personality-area .right,
#coatingPage section#service02 .personality-area .right,
#dismantling_reformPage section#service02 .personality-area .right,
#recruitPage section#service02 .personality-area .right {
  width: 41%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#service02 .personality-area .right,
#junk_removalPage section#service02 .personality-area .right,
#deodorizerPage section#service02 .personality-area .right,
#cleaningPage section#service02 .personality-area .right,
#coatingPage section#service02 .personality-area .right,
#dismantling_reformPage section#service02 .personality-area .right,
#recruitPage section#service02 .personality-area .right {
    width: 100%;
  }
}
#trashhousePage section#service02 .personality-area .right .personality-ttl,
#junk_removalPage section#service02 .personality-area .right .personality-ttl,
#deodorizerPage section#service02 .personality-area .right .personality-ttl,
#cleaningPage section#service02 .personality-area .right .personality-ttl,
#coatingPage section#service02 .personality-area .right .personality-ttl,
#dismantling_reformPage section#service02 .personality-area .right .personality-ttl,
#recruitPage section#service02 .personality-area .right .personality-ttl {
  font-size: 28px;
  font-weight: bold;
  color: #016CD2;
  margin-bottom: 25px;
  letter-spacing: 8px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#service02 .personality-area .right .personality-ttl,
#junk_removalPage section#service02 .personality-area .right .personality-ttl,
#deodorizerPage section#service02 .personality-area .right .personality-ttl,
#cleaningPage section#service02 .personality-area .right .personality-ttl,
#coatingPage section#service02 .personality-area .right .personality-ttl,
#dismantling_reformPage section#service02 .personality-area .right .personality-ttl,
#recruitPage section#service02 .personality-area .right .personality-ttl {
    font-size: 18px;
    margin: 18px 0px 10px 0px;
    letter-spacing: 1px;
    line-height: 1.5;
  }
}
#trashhousePage section#service02 .personality-area .right .personality-txt,
#junk_removalPage section#service02 .personality-area .right .personality-txt,
#deodorizerPage section#service02 .personality-area .right .personality-txt,
#cleaningPage section#service02 .personality-area .right .personality-txt,
#coatingPage section#service02 .personality-area .right .personality-txt,
#dismantling_reformPage section#service02 .personality-area .right .personality-txt,
#recruitPage section#service02 .personality-area .right .personality-txt {
  font-size: 18px;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#service02 .personality-area .right .personality-txt,
#junk_removalPage section#service02 .personality-area .right .personality-txt,
#deodorizerPage section#service02 .personality-area .right .personality-txt,
#cleaningPage section#service02 .personality-area .right .personality-txt,
#coatingPage section#service02 .personality-area .right .personality-txt,
#dismantling_reformPage section#service02 .personality-area .right .personality-txt,
#recruitPage section#service02 .personality-area .right .personality-txt {
    font-size: 15px;
    letter-spacing: 1px;
  }
}
#trashhousePage section#service02 .personality-area .reverse,
#junk_removalPage section#service02 .personality-area .reverse,
#deodorizerPage section#service02 .personality-area .reverse,
#cleaningPage section#service02 .personality-area .reverse,
#coatingPage section#service02 .personality-area .reverse,
#dismantling_reformPage section#service02 .personality-area .reverse,
#recruitPage section#service02 .personality-area .reverse {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#service02 .personality-area .reverse,
#junk_removalPage section#service02 .personality-area .reverse,
#deodorizerPage section#service02 .personality-area .reverse,
#cleaningPage section#service02 .personality-area .reverse,
#coatingPage section#service02 .personality-area .reverse,
#dismantling_reformPage section#service02 .personality-area .reverse,
#recruitPage section#service02 .personality-area .reverse {
    margin: 0 auto;
  }
}
#trashhousePage section#service02 .personality-area .reverse .left,
#junk_removalPage section#service02 .personality-area .reverse .left,
#deodorizerPage section#service02 .personality-area .reverse .left,
#cleaningPage section#service02 .personality-area .reverse .left,
#coatingPage section#service02 .personality-area .reverse .left,
#dismantling_reformPage section#service02 .personality-area .reverse .left,
#recruitPage section#service02 .personality-area .reverse .left {
  order: 2;
}
#trashhousePage section#service02 .personality-area .reverse .right,
#junk_removalPage section#service02 .personality-area .reverse .right,
#deodorizerPage section#service02 .personality-area .reverse .right,
#cleaningPage section#service02 .personality-area .reverse .right,
#coatingPage section#service02 .personality-area .reverse .right,
#dismantling_reformPage section#service02 .personality-area .reverse .right,
#recruitPage section#service02 .personality-area .reverse .right {
  order: 1;
}
#trashhousePage section#price,
#junk_removalPage section#price,
#deodorizerPage section#price,
#cleaningPage section#price,
#coatingPage section#price,
#dismantling_reformPage section#price,
#recruitPage section#price {
  padding-bottom: 60px;
  background: linear-gradient(to bottom, #fff 26%, #E6F0F8 26%);
}
@media screen and (max-width: 768px) {
  #trashhousePage section#price,
#junk_removalPage section#price,
#deodorizerPage section#price,
#cleaningPage section#price,
#coatingPage section#price,
#dismantling_reformPage section#price,
#recruitPage section#price {
    background: linear-gradient(to bottom, #fff 26%, #E6F0F8 26%);
  }
}
#trashhousePage section#price .contents,
#junk_removalPage section#price .contents,
#deodorizerPage section#price .contents,
#cleaningPage section#price .contents,
#coatingPage section#price .contents,
#dismantling_reformPage section#price .contents,
#recruitPage section#price .contents {
  width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#price .contents,
#junk_removalPage section#price .contents,
#deodorizerPage section#price .contents,
#cleaningPage section#price .contents,
#coatingPage section#price .contents,
#dismantling_reformPage section#price .contents,
#recruitPage section#price .contents {
    width: 100%;
  }
}
#trashhousePage section#price .contents table,
#junk_removalPage section#price .contents table,
#deodorizerPage section#price .contents table,
#cleaningPage section#price .contents table,
#coatingPage section#price .contents table,
#dismantling_reformPage section#price .contents table,
#recruitPage section#price .contents table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#price .contents table,
#junk_removalPage section#price .contents table,
#deodorizerPage section#price .contents table,
#cleaningPage section#price .contents table,
#coatingPage section#price .contents table,
#dismantling_reformPage section#price .contents table,
#recruitPage section#price .contents table {
    width: 320px;
    margin: 0 auto;
  }
}
#trashhousePage section#price .contents th,
#trashhousePage section#price .contents td,
#junk_removalPage section#price .contents th,
#junk_removalPage section#price .contents td,
#deodorizerPage section#price .contents th,
#deodorizerPage section#price .contents td,
#cleaningPage section#price .contents th,
#cleaningPage section#price .contents td,
#coatingPage section#price .contents th,
#coatingPage section#price .contents td,
#dismantling_reformPage section#price .contents th,
#dismantling_reformPage section#price .contents td,
#recruitPage section#price .contents th,
#recruitPage section#price .contents td {
  border: 1px solid #0168B7;
  padding: 20px;
  text-align: center;
  width: 50%;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#price .contents th,
#trashhousePage section#price .contents td,
#junk_removalPage section#price .contents th,
#junk_removalPage section#price .contents td,
#deodorizerPage section#price .contents th,
#deodorizerPage section#price .contents td,
#cleaningPage section#price .contents th,
#cleaningPage section#price .contents td,
#coatingPage section#price .contents th,
#coatingPage section#price .contents td,
#dismantling_reformPage section#price .contents th,
#dismantling_reformPage section#price .contents td,
#recruitPage section#price .contents th,
#recruitPage section#price .contents td {
    font-size: 15px;
    font-weight: bold;
    padding: 13px 0px;
  }
}
#trashhousePage section#price .contents thead th,
#junk_removalPage section#price .contents thead th,
#deodorizerPage section#price .contents thead th,
#cleaningPage section#price .contents thead th,
#coatingPage section#price .contents thead th,
#dismantling_reformPage section#price .contents thead th,
#recruitPage section#price .contents thead th {
  background-color: #0168B7;
  color: white;
}
#trashhousePage section#price .contents tbody td,
#junk_removalPage section#price .contents tbody td,
#deodorizerPage section#price .contents tbody td,
#cleaningPage section#price .contents tbody td,
#coatingPage section#price .contents tbody td,
#dismantling_reformPage section#price .contents tbody td,
#recruitPage section#price .contents tbody td {
  background-color: white;
  color: black;
}
#trashhousePage section#price .attention,
#junk_removalPage section#price .attention,
#deodorizerPage section#price .attention,
#cleaningPage section#price .attention,
#coatingPage section#price .attention,
#dismantling_reformPage section#price .attention,
#recruitPage section#price .attention {
  background: #fff;
  width: 100%;
  margin-top: 36px;
  padding: 25px 59px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#price .attention,
#junk_removalPage section#price .attention,
#deodorizerPage section#price .attention,
#cleaningPage section#price .attention,
#coatingPage section#price .attention,
#dismantling_reformPage section#price .attention,
#recruitPage section#price .attention {
    padding: 13px;
    width: 320px;
    margin: 30px auto 0 auto;
  }
}
#trashhousePage section#price .attention p,
#junk_removalPage section#price .attention p,
#deodorizerPage section#price .attention p,
#cleaningPage section#price .attention p,
#coatingPage section#price .attention p,
#dismantling_reformPage section#price .attention p,
#recruitPage section#price .attention p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#price .attention p,
#junk_removalPage section#price .attention p,
#deodorizerPage section#price .attention p,
#cleaningPage section#price .attention p,
#coatingPage section#price .attention p,
#dismantling_reformPage section#price .attention p,
#recruitPage section#price .attention p {
    font-size: 14px;
    line-height: 1.5;
  }
}
#trashhousePage section#option,
#junk_removalPage section#option,
#deodorizerPage section#option,
#cleaningPage section#option,
#coatingPage section#option,
#dismantling_reformPage section#option,
#recruitPage section#option {
  padding-bottom: 30px;
  margin-bottom: 94px;
  background: #E6F0F8;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#option,
#junk_removalPage section#option,
#deodorizerPage section#option,
#cleaningPage section#option,
#coatingPage section#option,
#dismantling_reformPage section#option,
#recruitPage section#option {
    padding-bottom: 0px;
    margin-bottom: 65px;
  }
}
#trashhousePage section#option .section-wrapper,
#junk_removalPage section#option .section-wrapper,
#deodorizerPage section#option .section-wrapper,
#cleaningPage section#option .section-wrapper,
#coatingPage section#option .section-wrapper,
#dismantling_reformPage section#option .section-wrapper,
#recruitPage section#option .section-wrapper {
  width: 1230px;
  margin: 0 auto;
  background: #fff;
  padding: 104px 65px 85px 65px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#option .section-wrapper,
#junk_removalPage section#option .section-wrapper,
#deodorizerPage section#option .section-wrapper,
#cleaningPage section#option .section-wrapper,
#coatingPage section#option .section-wrapper,
#dismantling_reformPage section#option .section-wrapper,
#recruitPage section#option .section-wrapper {
    width: 320px;
    padding: 45px 14px 63px 14px;
  }
}
#trashhousePage section#option .heading-area,
#junk_removalPage section#option .heading-area,
#deodorizerPage section#option .heading-area,
#cleaningPage section#option .heading-area,
#coatingPage section#option .heading-area,
#dismantling_reformPage section#option .heading-area,
#recruitPage section#option .heading-area {
  width: 100%;
  display: flex;
  justify-content: start;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#option .heading-area,
#junk_removalPage section#option .heading-area,
#deodorizerPage section#option .heading-area,
#cleaningPage section#option .heading-area,
#coatingPage section#option .heading-area,
#dismantling_reformPage section#option .heading-area,
#recruitPage section#option .heading-area {
    display: block;
  }
}
#trashhousePage section#option .heading-area .left,
#junk_removalPage section#option .heading-area .left,
#deodorizerPage section#option .heading-area .left,
#cleaningPage section#option .heading-area .left,
#coatingPage section#option .heading-area .left,
#dismantling_reformPage section#option .heading-area .left,
#recruitPage section#option .heading-area .left {
  width: 280px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#option .heading-area .left,
#junk_removalPage section#option .heading-area .left,
#deodorizerPage section#option .heading-area .left,
#cleaningPage section#option .heading-area .left,
#coatingPage section#option .heading-area .left,
#dismantling_reformPage section#option .heading-area .left,
#recruitPage section#option .heading-area .left {
    width: 100%;
  }
}
#trashhousePage section#option .heading-area .left .section-heading,
#junk_removalPage section#option .heading-area .left .section-heading,
#deodorizerPage section#option .heading-area .left .section-heading,
#cleaningPage section#option .heading-area .left .section-heading,
#coatingPage section#option .heading-area .left .section-heading,
#dismantling_reformPage section#option .heading-area .left .section-heading,
#recruitPage section#option .heading-area .left .section-heading {
  width: 100%;
  height: auto;
  margin: 0;
  text-align: left;
  position: relative;
  left: 50px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#option .heading-area .left .section-heading,
#junk_removalPage section#option .heading-area .left .section-heading,
#deodorizerPage section#option .heading-area .left .section-heading,
#cleaningPage section#option .heading-area .left .section-heading,
#coatingPage section#option .heading-area .left .section-heading,
#dismantling_reformPage section#option .heading-area .left .section-heading,
#recruitPage section#option .heading-area .left .section-heading {
    width: 90%;
    max-width: 240px;
    margin: 0 auto;
    text-align: center;
    left: unset;
  }
}
#trashhousePage section#option .heading-area .right,
#junk_removalPage section#option .heading-area .right,
#deodorizerPage section#option .heading-area .right,
#cleaningPage section#option .heading-area .right,
#coatingPage section#option .heading-area .right,
#dismantling_reformPage section#option .heading-area .right,
#recruitPage section#option .heading-area .right {
  width: auto;
  position: relative;
  top: 10px;
}
#trashhousePage section#option .heading-area .right p,
#junk_removalPage section#option .heading-area .right p,
#deodorizerPage section#option .heading-area .right p,
#cleaningPage section#option .heading-area .right p,
#coatingPage section#option .heading-area .right p,
#dismantling_reformPage section#option .heading-area .right p,
#recruitPage section#option .heading-area .right p {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}
#trashhousePage section#option .section-txt,
#junk_removalPage section#option .section-txt,
#deodorizerPage section#option .section-txt,
#cleaningPage section#option .section-txt,
#coatingPage section#option .section-txt,
#dismantling_reformPage section#option .section-txt,
#recruitPage section#option .section-txt {
  margin-top: 25px;
  font-size: 32px;
  font-weight: 700;
}
#trashhousePage section#option .contents,
#junk_removalPage section#option .contents,
#deodorizerPage section#option .contents,
#cleaningPage section#option .contents,
#coatingPage section#option .contents,
#dismantling_reformPage section#option .contents,
#recruitPage section#option .contents {
  width: 100%;
  box-sizing: border-box;
  display: grid;
  margin-top: 100px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
  /* 横の間隔 */
  row-gap: 90px;
  /* 縦の間隔 */
}
@media screen and (max-width: 768px) {
  #trashhousePage section#option .contents,
#junk_removalPage section#option .contents,
#deodorizerPage section#option .contents,
#cleaningPage section#option .contents,
#coatingPage section#option .contents,
#dismantling_reformPage section#option .contents,
#recruitPage section#option .contents {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 1fr);
    row-gap: 75px;
    margin-top: 90px;
  }
}
#trashhousePage section#option .contents .box,
#junk_removalPage section#option .contents .box,
#deodorizerPage section#option .contents .box,
#cleaningPage section#option .contents .box,
#coatingPage section#option .contents .box,
#dismantling_reformPage section#option .contents .box,
#recruitPage section#option .contents .box {
  background: #fff;
  padding: 65px 30px 28px 30px;
  position: relative;
  border: 1px solid #EFEFEF;
  box-shadow: 2px 2px 3px 0px #d7d7d7;
  box-sizing: border-box;
  height: 320px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#option .contents .box,
#junk_removalPage section#option .contents .box,
#deodorizerPage section#option .contents .box,
#cleaningPage section#option .contents .box,
#coatingPage section#option .contents .box,
#dismantling_reformPage section#option .contents .box,
#recruitPage section#option .contents .box {
    padding: 50px 30px 21px 30px;
    height: auto;
  }
}
#trashhousePage section#option .contents .box .icon,
#junk_removalPage section#option .contents .box .icon,
#deodorizerPage section#option .contents .box .icon,
#cleaningPage section#option .contents .box .icon,
#coatingPage section#option .contents .box .icon,
#dismantling_reformPage section#option .contents .box .icon,
#recruitPage section#option .contents .box .icon {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 270px;
  transform: translateX(-50%);
  width: 104px;
  height: 104px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#option .contents .box .icon,
#junk_removalPage section#option .contents .box .icon,
#deodorizerPage section#option .contents .box .icon,
#cleaningPage section#option .contents .box .icon,
#coatingPage section#option .contents .box .icon,
#dismantling_reformPage section#option .contents .box .icon,
#recruitPage section#option .contents .box .icon {
    bottom: unset;
    top: -56px;
    width: 88px;
    height: auto;
  }
}
#trashhousePage section#option .contents .box h4,
#junk_removalPage section#option .contents .box h4,
#deodorizerPage section#option .contents .box h4,
#cleaningPage section#option .contents .box h4,
#coatingPage section#option .contents .box h4,
#dismantling_reformPage section#option .contents .box h4,
#recruitPage section#option .contents .box h4 {
  height: 75px;
  font-size: 24px;
  font-weight: bold;
  color: #0168B7;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#option .contents .box h4,
#junk_removalPage section#option .contents .box h4,
#deodorizerPage section#option .contents .box h4,
#cleaningPage section#option .contents .box h4,
#coatingPage section#option .contents .box h4,
#dismantling_reformPage section#option .contents .box h4,
#recruitPage section#option .contents .box h4 {
    height: auto;
    font-size: 20px;
    line-height: 2;
    margin-bottom: 8px;
  }
}
#trashhousePage section#option .contents .box p,
#junk_removalPage section#option .contents .box p,
#deodorizerPage section#option .contents .box p,
#cleaningPage section#option .contents .box p,
#coatingPage section#option .contents .box p,
#dismantling_reformPage section#option .contents .box p,
#recruitPage section#option .contents .box p {
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
  letter-spacing: 1px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#option .contents .box p,
#junk_removalPage section#option .contents .box p,
#deodorizerPage section#option .contents .box p,
#cleaningPage section#option .contents .box p,
#coatingPage section#option .contents .box p,
#dismantling_reformPage section#option .contents .box p,
#recruitPage section#option .contents .box p {
    font-size: 14px;
    font-weight: normal;
    line-height: 2;
  }
}
#trashhousePage section#strength,
#junk_removalPage section#strength,
#deodorizerPage section#strength,
#cleaningPage section#strength,
#coatingPage section#strength,
#dismantling_reformPage section#strength,
#recruitPage section#strength {
  background: #fff;
  margin-bottom: 0px;
  padding: 97px 0px 180px 0px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#strength,
#junk_removalPage section#strength,
#deodorizerPage section#strength,
#cleaningPage section#strength,
#coatingPage section#strength,
#dismantling_reformPage section#strength,
#recruitPage section#strength {
    padding: 75px 0px 80px 0px;
  }
}
#trashhousePage section#strength .section-heading,
#junk_removalPage section#strength .section-heading,
#deodorizerPage section#strength .section-heading,
#cleaningPage section#strength .section-heading,
#coatingPage section#strength .section-heading,
#dismantling_reformPage section#strength .section-heading,
#recruitPage section#strength .section-heading {
  margin: 0px auto 0px auto;
}
#trashhousePage section#strength .section-txt,
#junk_removalPage section#strength .section-txt,
#deodorizerPage section#strength .section-txt,
#cleaningPage section#strength .section-txt,
#coatingPage section#strength .section-txt,
#dismantling_reformPage section#strength .section-txt,
#recruitPage section#strength .section-txt {
  margin: 25px auto 0 auto;
  width: 780px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#strength .section-txt,
#junk_removalPage section#strength .section-txt,
#deodorizerPage section#strength .section-txt,
#cleaningPage section#strength .section-txt,
#coatingPage section#strength .section-txt,
#dismantling_reformPage section#strength .section-txt,
#recruitPage section#strength .section-txt {
    margin: 20px auto 0 auto;
    width: 320px;
    text-align: left;
  }
}
#trashhousePage section#strength .section-txt p,
#junk_removalPage section#strength .section-txt p,
#deodorizerPage section#strength .section-txt p,
#cleaningPage section#strength .section-txt p,
#coatingPage section#strength .section-txt p,
#dismantling_reformPage section#strength .section-txt p,
#recruitPage section#strength .section-txt p {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#strength .section-txt p,
#junk_removalPage section#strength .section-txt p,
#deodorizerPage section#strength .section-txt p,
#cleaningPage section#strength .section-txt p,
#coatingPage section#strength .section-txt p,
#dismantling_reformPage section#strength .section-txt p,
#recruitPage section#strength .section-txt p {
    font-size: 15px;
  }
}
#trashhousePage section#strength .contents,
#junk_removalPage section#strength .contents,
#deodorizerPage section#strength .contents,
#cleaningPage section#strength .contents,
#coatingPage section#strength .contents,
#dismantling_reformPage section#strength .contents,
#recruitPage section#strength .contents {
  position: relative;
  background: #F8F8F8;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#strength .contents,
#junk_removalPage section#strength .contents,
#deodorizerPage section#strength .contents,
#cleaningPage section#strength .contents,
#coatingPage section#strength .contents,
#dismantling_reformPage section#strength .contents,
#recruitPage section#strength .contents {
    width: 100%;
    margin-top: 60px;
  }
}
#trashhousePage section#strength .contents .img-wrapper,
#junk_removalPage section#strength .contents .img-wrapper,
#deodorizerPage section#strength .contents .img-wrapper,
#cleaningPage section#strength .contents .img-wrapper,
#coatingPage section#strength .contents .img-wrapper,
#dismantling_reformPage section#strength .contents .img-wrapper,
#recruitPage section#strength .contents .img-wrapper {
  width: 1200px;
  margin: 0 auto;
  height: 487px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  bottom: 100px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#strength .contents .img-wrapper,
#junk_removalPage section#strength .contents .img-wrapper,
#deodorizerPage section#strength .contents .img-wrapper,
#cleaningPage section#strength .contents .img-wrapper,
#coatingPage section#strength .contents .img-wrapper,
#dismantling_reformPage section#strength .contents .img-wrapper,
#recruitPage section#strength .contents .img-wrapper {
    width: 325px;
    height: 155px;
    bottom: 25px;
    gap: 5px;
  }
}
#trashhousePage section#strength .contents img.point,
#junk_removalPage section#strength .contents img.point,
#deodorizerPage section#strength .contents img.point,
#cleaningPage section#strength .contents img.point,
#coatingPage section#strength .contents img.point,
#dismantling_reformPage section#strength .contents img.point,
#recruitPage section#strength .contents img.point {
  width: 389px;
  height: auto;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#strength .contents img.point,
#junk_removalPage section#strength .contents img.point,
#deodorizerPage section#strength .contents img.point,
#cleaningPage section#strength .contents img.point,
#coatingPage section#strength .contents img.point,
#dismantling_reformPage section#strength .contents img.point,
#recruitPage section#strength .contents img.point {
    width: 105px;
    height: auto;
  }
}
#trashhousePage section#strength .contents .point-bottom,
#junk_removalPage section#strength .contents .point-bottom,
#deodorizerPage section#strength .contents .point-bottom,
#cleaningPage section#strength .contents .point-bottom,
#coatingPage section#strength .contents .point-bottom,
#dismantling_reformPage section#strength .contents .point-bottom,
#recruitPage section#strength .contents .point-bottom {
  position: relative;
  bottom: 30px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#strength .contents .point-bottom,
#junk_removalPage section#strength .contents .point-bottom,
#deodorizerPage section#strength .contents .point-bottom,
#cleaningPage section#strength .contents .point-bottom,
#coatingPage section#strength .contents .point-bottom,
#dismantling_reformPage section#strength .contents .point-bottom,
#recruitPage section#strength .contents .point-bottom {
    bottom: 5px;
  }
}
#trashhousePage section#case,
#junk_removalPage section#case,
#deodorizerPage section#case,
#cleaningPage section#case,
#coatingPage section#case,
#dismantling_reformPage section#case,
#recruitPage section#case {
  padding-bottom: 120px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case,
#junk_removalPage section#case,
#deodorizerPage section#case,
#cleaningPage section#case,
#coatingPage section#case,
#dismantling_reformPage section#case,
#recruitPage section#case {
    padding-bottom: 84px;
  }
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .section-heading,
#junk_removalPage section#case .section-heading,
#deodorizerPage section#case .section-heading,
#cleaningPage section#case .section-heading,
#coatingPage section#case .section-heading,
#dismantling_reformPage section#case .section-heading,
#recruitPage section#case .section-heading {
    margin: 0 auto 23px auto;
  }
}
#trashhousePage section#case .contents,
#junk_removalPage section#case .contents,
#deodorizerPage section#case .contents,
#cleaningPage section#case .contents,
#coatingPage section#case .contents,
#dismantling_reformPage section#case .contents,
#recruitPage section#case .contents {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .contents,
#junk_removalPage section#case .contents,
#deodorizerPage section#case .contents,
#cleaningPage section#case .contents,
#coatingPage section#case .contents,
#dismantling_reformPage section#case .contents,
#recruitPage section#case .contents {
    isplay: flex;
    justify-content: start;
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
}
#trashhousePage section#case .box,
#junk_removalPage section#case .box,
#deodorizerPage section#case .box,
#cleaningPage section#case .box,
#coatingPage section#case .box,
#dismantling_reformPage section#case .box,
#recruitPage section#case .box {
  width: 520px;
  padding: 33px 0px;
  box-sizing: border-box;
  background: #E6F0F8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .box,
#junk_removalPage section#case .box,
#deodorizerPage section#case .box,
#cleaningPage section#case .box,
#coatingPage section#case .box,
#dismantling_reformPage section#case .box,
#recruitPage section#case .box {
    width: 320px;
    padding: 20px 14px;
  }
}
#trashhousePage section#case .box .box-heading,
#junk_removalPage section#case .box .box-heading,
#deodorizerPage section#case .box .box-heading,
#cleaningPage section#case .box .box-heading,
#coatingPage section#case .box .box-heading,
#dismantling_reformPage section#case .box .box-heading,
#recruitPage section#case .box .box-heading {
  width: 480px;
  background: #fff;
  text-align: center;
  margin-bottom: 12px;
}
#trashhousePage section#case .box .box-heading h4,
#junk_removalPage section#case .box .box-heading h4,
#deodorizerPage section#case .box .box-heading h4,
#cleaningPage section#case .box .box-heading h4,
#coatingPage section#case .box .box-heading h4,
#dismantling_reformPage section#case .box .box-heading h4,
#recruitPage section#case .box .box-heading h4 {
  font-size: 26px;
  font-weight: bold;
  color: #0168B7;
  padding: 10px 0px;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .box .box-heading h4,
#junk_removalPage section#case .box .box-heading h4,
#deodorizerPage section#case .box .box-heading h4,
#cleaningPage section#case .box .box-heading h4,
#coatingPage section#case .box .box-heading h4,
#dismantling_reformPage section#case .box .box-heading h4,
#recruitPage section#case .box .box-heading h4 {
    font-size: 16px;
    padding: 5px 0px;
  }
}
#trashhousePage section#case .box .content,
#junk_removalPage section#case .box .content,
#deodorizerPage section#case .box .content,
#cleaningPage section#case .box .content,
#coatingPage section#case .box .content,
#dismantling_reformPage section#case .box .content,
#recruitPage section#case .box .content {
  width: 480px;
  background: #fff;
  box-sizing: border-box;
  padding: 29px 21px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .box .content,
#junk_removalPage section#case .box .content,
#deodorizerPage section#case .box .content,
#cleaningPage section#case .box .content,
#coatingPage section#case .box .content,
#dismantling_reformPage section#case .box .content,
#recruitPage section#case .box .content {
    width: 100%;
    flex-wrap: wrap;
    padding: 17px 7px;
  }
}
#trashhousePage section#case .box .content img,
#junk_removalPage section#case .box .content img,
#deodorizerPage section#case .box .content img,
#cleaningPage section#case .box .content img,
#coatingPage section#case .box .content img,
#dismantling_reformPage section#case .box .content img,
#recruitPage section#case .box .content img {
  width: 434px;
  height: auto;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .box .content img,
#junk_removalPage section#case .box .content img,
#deodorizerPage section#case .box .content img,
#cleaningPage section#case .box .content img,
#coatingPage section#case .box .content img,
#dismantling_reformPage section#case .box .content img,
#recruitPage section#case .box .content img {
    width: 100%;
  }
}
#trashhousePage section#case .box .content .explanation,
#junk_removalPage section#case .box .content .explanation,
#deodorizerPage section#case .box .content .explanation,
#cleaningPage section#case .box .content .explanation,
#coatingPage section#case .box .content .explanation,
#dismantling_reformPage section#case .box .content .explanation,
#recruitPage section#case .box .content .explanation {
  display: flex;
  flex-wrap: nowrap;
  margin: 22px 0px 18px 0px;
}
#trashhousePage section#case .box .content .wrapper,
#junk_removalPage section#case .box .content .wrapper,
#deodorizerPage section#case .box .content .wrapper,
#cleaningPage section#case .box .content .wrapper,
#coatingPage section#case .box .content .wrapper,
#dismantling_reformPage section#case .box .content .wrapper,
#recruitPage section#case .box .content .wrapper {
  display: flex;
  flex-wrap: nowrap;
  margin-right: 18px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .box .content .wrapper,
#junk_removalPage section#case .box .content .wrapper,
#deodorizerPage section#case .box .content .wrapper,
#cleaningPage section#case .box .content .wrapper,
#coatingPage section#case .box .content .wrapper,
#dismantling_reformPage section#case .box .content .wrapper,
#recruitPage section#case .box .content .wrapper {
    margin-right: 1px;
  }
}
#trashhousePage section#case .box .content .wrapper span,
#junk_removalPage section#case .box .content .wrapper span,
#deodorizerPage section#case .box .content .wrapper span,
#cleaningPage section#case .box .content .wrapper span,
#coatingPage section#case .box .content .wrapper span,
#dismantling_reformPage section#case .box .content .wrapper span,
#recruitPage section#case .box .content .wrapper span {
  padding: 3px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  color: #0168B7;
  background: #fff;
  border: 1px solid #0168B7;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .box .content .wrapper span,
#junk_removalPage section#case .box .content .wrapper span,
#deodorizerPage section#case .box .content .wrapper span,
#cleaningPage section#case .box .content .wrapper span,
#coatingPage section#case .box .content .wrapper span,
#dismantling_reformPage section#case .box .content .wrapper span,
#recruitPage section#case .box .content .wrapper span {
    font-size: 11px;
    margin-right: 2px;
    padding: 0 1px;
  }
}
#trashhousePage section#case .box .content .wrapper p,
#junk_removalPage section#case .box .content .wrapper p,
#deodorizerPage section#case .box .content .wrapper p,
#cleaningPage section#case .box .content .wrapper p,
#coatingPage section#case .box .content .wrapper p,
#dismantling_reformPage section#case .box .content .wrapper p,
#recruitPage section#case .box .content .wrapper p {
  padding: 3px;
  font-size: 13px;
  font-weight: bold;
  color: #0168B7;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .box .content .wrapper p,
#junk_removalPage section#case .box .content .wrapper p,
#deodorizerPage section#case .box .content .wrapper p,
#cleaningPage section#case .box .content .wrapper p,
#coatingPage section#case .box .content .wrapper p,
#dismantling_reformPage section#case .box .content .wrapper p,
#recruitPage section#case .box .content .wrapper p {
    font-size: 11px;
    padding: 0;
  }
}
#trashhousePage section#case .box .content .detail,
#junk_removalPage section#case .box .content .detail,
#deodorizerPage section#case .box .content .detail,
#cleaningPage section#case .box .content .detail,
#coatingPage section#case .box .content .detail,
#dismantling_reformPage section#case .box .content .detail,
#recruitPage section#case .box .content .detail {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .box .content .detail,
#junk_removalPage section#case .box .content .detail,
#deodorizerPage section#case .box .content .detail,
#cleaningPage section#case .box .content .detail,
#coatingPage section#case .box .content .detail,
#dismantling_reformPage section#case .box .content .detail,
#recruitPage section#case .box .content .detail {
    font-size: 14px;
    padding: 0 5px;
  }
}
#trashhousePage section#case .box .work-price,
#junk_removalPage section#case .box .work-price,
#deodorizerPage section#case .box .work-price,
#cleaningPage section#case .box .work-price,
#coatingPage section#case .box .work-price,
#dismantling_reformPage section#case .box .work-price,
#recruitPage section#case .box .work-price {
  width: 480px;
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .box .work-price,
#junk_removalPage section#case .box .work-price,
#deodorizerPage section#case .box .work-price,
#cleaningPage section#case .box .work-price,
#coatingPage section#case .box .work-price,
#dismantling_reformPage section#case .box .work-price,
#recruitPage section#case .box .work-price {
    width: 100%;
  }
}
#trashhousePage section#case .box .work-price .left,
#junk_removalPage section#case .box .work-price .left,
#deodorizerPage section#case .box .work-price .left,
#cleaningPage section#case .box .work-price .left,
#coatingPage section#case .box .work-price .left,
#dismantling_reformPage section#case .box .work-price .left,
#recruitPage section#case .box .work-price .left {
  width: 170px;
  background: #0168B7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .box .work-price .left,
#junk_removalPage section#case .box .work-price .left,
#deodorizerPage section#case .box .work-price .left,
#cleaningPage section#case .box .work-price .left,
#coatingPage section#case .box .work-price .left,
#dismantling_reformPage section#case .box .work-price .left,
#recruitPage section#case .box .work-price .left {
    width: 33%;
    font-size: 14px;
  }
}
#trashhousePage section#case .box .work-price .right,
#junk_removalPage section#case .box .work-price .right,
#deodorizerPage section#case .box .work-price .right,
#cleaningPage section#case .box .work-price .right,
#coatingPage section#case .box .work-price .right,
#dismantling_reformPage section#case .box .work-price .right,
#recruitPage section#case .box .work-price .right {
  width: 347px;
  padding: 10px 40px;
  background: #fff;
  color: #0168B7;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .box .work-price .right,
#junk_removalPage section#case .box .work-price .right,
#deodorizerPage section#case .box .work-price .right,
#cleaningPage section#case .box .work-price .right,
#coatingPage section#case .box .work-price .right,
#dismantling_reformPage section#case .box .work-price .right,
#recruitPage section#case .box .work-price .right {
    width: 67%;
    padding: 10px 15px;
  }
}
#trashhousePage section#case .box .work-price .right .strikethrough,
#junk_removalPage section#case .box .work-price .right .strikethrough,
#deodorizerPage section#case .box .work-price .right .strikethrough,
#cleaningPage section#case .box .work-price .right .strikethrough,
#coatingPage section#case .box .work-price .right .strikethrough,
#dismantling_reformPage section#case .box .work-price .right .strikethrough,
#recruitPage section#case .box .work-price .right .strikethrough {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-decoration: line-through;
  -webkit-text-decoration-color: #333333;
          text-decoration-color: #333333;
  position: relative;
}
#trashhousePage section#case .box .work-price .right .strikethrough::after,
#junk_removalPage section#case .box .work-price .right .strikethrough::after,
#deodorizerPage section#case .box .work-price .right .strikethrough::after,
#cleaningPage section#case .box .work-price .right .strikethrough::after,
#coatingPage section#case .box .work-price .right .strikethrough::after,
#dismantling_reformPage section#case .box .work-price .right .strikethrough::after,
#recruitPage section#case .box .work-price .right .strikethrough::after {
  content: "→";
  font-size: 18px;
  height: 5px;
  width: 5px;
  position: absolute;
  right: 30%;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .box .work-price .right .strikethrough::after,
#junk_removalPage section#case .box .work-price .right .strikethrough::after,
#deodorizerPage section#case .box .work-price .right .strikethrough::after,
#cleaningPage section#case .box .work-price .right .strikethrough::after,
#coatingPage section#case .box .work-price .right .strikethrough::after,
#dismantling_reformPage section#case .box .work-price .right .strikethrough::after,
#recruitPage section#case .box .work-price .right .strikethrough::after {
    font-size: 14px;
    right: 15%;
  }
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .box .work-price .right .strikethrough,
#junk_removalPage section#case .box .work-price .right .strikethrough,
#deodorizerPage section#case .box .work-price .right .strikethrough,
#cleaningPage section#case .box .work-price .right .strikethrough,
#coatingPage section#case .box .work-price .right .strikethrough,
#dismantling_reformPage section#case .box .work-price .right .strikethrough,
#recruitPage section#case .box .work-price .right .strikethrough {
    font-size: 14px;
  }
}
#trashhousePage section#case .box .work-price .right .sale-price,
#junk_removalPage section#case .box .work-price .right .sale-price,
#deodorizerPage section#case .box .work-price .right .sale-price,
#cleaningPage section#case .box .work-price .right .sale-price,
#coatingPage section#case .box .work-price .right .sale-price,
#dismantling_reformPage section#case .box .work-price .right .sale-price,
#recruitPage section#case .box .work-price .right .sale-price {
  width: 100%;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#case .box .work-price .right .sale-price,
#junk_removalPage section#case .box .work-price .right .sale-price,
#deodorizerPage section#case .box .work-price .right .sale-price,
#cleaningPage section#case .box .work-price .right .sale-price,
#coatingPage section#case .box .work-price .right .sale-price,
#dismantling_reformPage section#case .box .work-price .right .sale-price,
#recruitPage section#case .box .work-price .right .sale-price {
    font-size: 18px;
  }
}
#trashhousePage section#voice,
#junk_removalPage section#voice,
#deodorizerPage section#voice,
#cleaningPage section#voice,
#coatingPage section#voice,
#dismantling_reformPage section#voice,
#recruitPage section#voice {
  position: relative;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#voice,
#junk_removalPage section#voice,
#deodorizerPage section#voice,
#cleaningPage section#voice,
#coatingPage section#voice,
#dismantling_reformPage section#voice,
#recruitPage section#voice {
    margin-bottom: 0px;
  }
}
#trashhousePage section#voice .item__bg,
#junk_removalPage section#voice .item__bg,
#deodorizerPage section#voice .item__bg,
#cleaningPage section#voice .item__bg,
#coatingPage section#voice .item__bg,
#dismantling_reformPage section#voice .item__bg,
#recruitPage section#voice .item__bg {
  background-image: linear-gradient(to bottom, #F8F8F8 0%, #F8F8F8 39%, #CAE6E0 39%, #CAE6E0 100%);
}
@media screen and (max-width: 768px) {
  #trashhousePage section#voice .item__bg,
#junk_removalPage section#voice .item__bg,
#deodorizerPage section#voice .item__bg,
#cleaningPage section#voice .item__bg,
#coatingPage section#voice .item__bg,
#dismantling_reformPage section#voice .item__bg,
#recruitPage section#voice .item__bg {
    background-image: linear-gradient(to bottom, #F8F8F8 0%, #F8F8F8 36%, #CAE6E0 36%, #CAE6E0 100%);
    padding: 75px 27px 0px 27px;
  }
}
#trashhousePage section#voice .section-heading,
#junk_removalPage section#voice .section-heading,
#deodorizerPage section#voice .section-heading,
#cleaningPage section#voice .section-heading,
#coatingPage section#voice .section-heading,
#dismantling_reformPage section#voice .section-heading,
#recruitPage section#voice .section-heading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#voice .section-heading,
#junk_removalPage section#voice .section-heading,
#deodorizerPage section#voice .section-heading,
#cleaningPage section#voice .section-heading,
#coatingPage section#voice .section-heading,
#dismantling_reformPage section#voice .section-heading,
#recruitPage section#voice .section-heading {
    top: -30px;
  }
}
@media screen and (max-width: 768px) {
  #trashhousePage section#voice .slider-txt01 .slide-wrapper,
#junk_removalPage section#voice .slider-txt01 .slide-wrapper,
#deodorizerPage section#voice .slider-txt01 .slide-wrapper,
#cleaningPage section#voice .slider-txt01 .slide-wrapper,
#coatingPage section#voice .slider-txt01 .slide-wrapper,
#dismantling_reformPage section#voice .slider-txt01 .slide-wrapper,
#recruitPage section#voice .slider-txt01 .slide-wrapper {
    padding-bottom: 68px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 768px) {
  #trashhousePage section#voice .indicator,
#junk_removalPage section#voice .indicator,
#deodorizerPage section#voice .indicator,
#cleaningPage section#voice .indicator,
#coatingPage section#voice .indicator,
#dismantling_reformPage section#voice .indicator,
#recruitPage section#voice .indicator {
    display: none;
  }
}
#trashhousePage section#flow,
#junk_removalPage section#flow,
#deodorizerPage section#flow,
#cleaningPage section#flow,
#coatingPage section#flow,
#dismantling_reformPage section#flow,
#recruitPage section#flow {
  background: #E6F0F8;
  padding-top: 42px;
  padding-bottom: 47px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#flow,
#junk_removalPage section#flow,
#deodorizerPage section#flow,
#cleaningPage section#flow,
#coatingPage section#flow,
#dismantling_reformPage section#flow,
#recruitPage section#flow {
    padding: 70px 0px 0px 0px;
  }
}
#trashhousePage section#flow .contents,
#junk_removalPage section#flow .contents,
#deodorizerPage section#flow .contents,
#cleaningPage section#flow .contents,
#coatingPage section#flow .contents,
#dismantling_reformPage section#flow .contents,
#recruitPage section#flow .contents {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1230px;
  margin: 0 auto;
  padding: 53px 40px 47px 53px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#flow .contents,
#junk_removalPage section#flow .contents,
#deodorizerPage section#flow .contents,
#cleaningPage section#flow .contents,
#coatingPage section#flow .contents,
#dismantling_reformPage section#flow .contents,
#recruitPage section#flow .contents {
    width: 320px;
    padding: 52px 14px;
  }
}
#trashhousePage section#flow .section-heading,
#junk_removalPage section#flow .section-heading,
#deodorizerPage section#flow .section-heading,
#cleaningPage section#flow .section-heading,
#coatingPage section#flow .section-heading,
#dismantling_reformPage section#flow .section-heading,
#recruitPage section#flow .section-heading {
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#flow .section-heading,
#junk_removalPage section#flow .section-heading,
#deodorizerPage section#flow .section-heading,
#cleaningPage section#flow .section-heading,
#coatingPage section#flow .section-heading,
#dismantling_reformPage section#flow .section-heading,
#recruitPage section#flow .section-heading {
    margin: 0 auto 0px auto;
  }
}
#trashhousePage section#flow .box,
#junk_removalPage section#flow .box,
#deodorizerPage section#flow .box,
#cleaningPage section#flow .box,
#coatingPage section#flow .box,
#dismantling_reformPage section#flow .box,
#recruitPage section#flow .box {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#flow .box,
#junk_removalPage section#flow .box,
#deodorizerPage section#flow .box,
#cleaningPage section#flow .box,
#coatingPage section#flow .box,
#dismantling_reformPage section#flow .box,
#recruitPage section#flow .box {
    display: block;
  }
}
#trashhousePage section#flow .box .left,
#junk_removalPage section#flow .box .left,
#deodorizerPage section#flow .box .left,
#cleaningPage section#flow .box .left,
#coatingPage section#flow .box .left,
#dismantling_reformPage section#flow .box .left,
#recruitPage section#flow .box .left {
  width: 370px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#flow .box .left,
#junk_removalPage section#flow .box .left,
#deodorizerPage section#flow .box .left,
#cleaningPage section#flow .box .left,
#coatingPage section#flow .box .left,
#dismantling_reformPage section#flow .box .left,
#recruitPage section#flow .box .left {
    width: 290px;
    margin: 0 auto;
  }
}
#trashhousePage section#flow .box .left img,
#junk_removalPage section#flow .box .left img,
#deodorizerPage section#flow .box .left img,
#cleaningPage section#flow .box .left img,
#coatingPage section#flow .box .left img,
#dismantling_reformPage section#flow .box .left img,
#recruitPage section#flow .box .left img {
  width: 100%;
  height: auto;
}
#trashhousePage section#flow .box .right,
#junk_removalPage section#flow .box .right,
#deodorizerPage section#flow .box .right,
#cleaningPage section#flow .box .right,
#coatingPage section#flow .box .right,
#dismantling_reformPage section#flow .box .right,
#recruitPage section#flow .box .right {
  width: 645px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px;
  gap: 10px;
  flex-direction: column;
  justify-content: start;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#flow .box .right,
#junk_removalPage section#flow .box .right,
#deodorizerPage section#flow .box .right,
#cleaningPage section#flow .box .right,
#coatingPage section#flow .box .right,
#dismantling_reformPage section#flow .box .right,
#recruitPage section#flow .box .right {
    padding-top: 20px;
    width: 290px;
    margin: 0 auto;
    gap: 5px;
  }
}
#trashhousePage section#flow .box .box-title,
#junk_removalPage section#flow .box .box-title,
#deodorizerPage section#flow .box .box-title,
#cleaningPage section#flow .box .box-title,
#coatingPage section#flow .box .box-title,
#dismantling_reformPage section#flow .box .box-title,
#recruitPage section#flow .box .box-title {
  font-size: 28px;
  font-weight: bold;
  color: #0168B7;
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#flow .box .box-title,
#junk_removalPage section#flow .box .box-title,
#deodorizerPage section#flow .box .box-title,
#cleaningPage section#flow .box .box-title,
#coatingPage section#flow .box .box-title,
#dismantling_reformPage section#flow .box .box-title,
#recruitPage section#flow .box .box-title {
    font-size: 20px;
  }
}
#trashhousePage section#flow .box .box-txt,
#junk_removalPage section#flow .box .box-txt,
#deodorizerPage section#flow .box .box-txt,
#cleaningPage section#flow .box .box-txt,
#coatingPage section#flow .box .box-txt,
#dismantling_reformPage section#flow .box .box-txt,
#recruitPage section#flow .box .box-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#flow .box .box-txt,
#junk_removalPage section#flow .box .box-txt,
#deodorizerPage section#flow .box .box-txt,
#cleaningPage section#flow .box .box-txt,
#coatingPage section#flow .box .box-txt,
#dismantling_reformPage section#flow .box .box-txt,
#recruitPage section#flow .box .box-txt {
    font-size: 16px;
  }
}
#trashhousePage section#payment,
#junk_removalPage section#payment,
#deodorizerPage section#payment,
#cleaningPage section#payment,
#coatingPage section#payment,
#dismantling_reformPage section#payment,
#recruitPage section#payment {
  background: #E6F0F8;
  margin-bottom: 86px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#payment,
#junk_removalPage section#payment,
#deodorizerPage section#payment,
#cleaningPage section#payment,
#coatingPage section#payment,
#dismantling_reformPage section#payment,
#recruitPage section#payment {
    margin-bottom: 68px;
  }
}
#trashhousePage section#payment .section-wrapper,
#junk_removalPage section#payment .section-wrapper,
#deodorizerPage section#payment .section-wrapper,
#cleaningPage section#payment .section-wrapper,
#coatingPage section#payment .section-wrapper,
#dismantling_reformPage section#payment .section-wrapper,
#recruitPage section#payment .section-wrapper {
  width: 1230px;
  margin: 0 auto;
  padding: 62px 58px;
  background: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#payment .section-wrapper,
#junk_removalPage section#payment .section-wrapper,
#deodorizerPage section#payment .section-wrapper,
#cleaningPage section#payment .section-wrapper,
#coatingPage section#payment .section-wrapper,
#dismantling_reformPage section#payment .section-wrapper,
#recruitPage section#payment .section-wrapper {
    width: 320px;
    padding: 20px 14px 40px 14px;
  }
}
#trashhousePage section#payment .contents,
#junk_removalPage section#payment .contents,
#deodorizerPage section#payment .contents,
#cleaningPage section#payment .contents,
#coatingPage section#payment .contents,
#dismantling_reformPage section#payment .contents,
#recruitPage section#payment .contents {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  /* 横の間隔 */
  row-gap: 37px;
  /* 縦の間隔 */
}
@media screen and (max-width: 768px) {
  #trashhousePage section#payment .contents,
#junk_removalPage section#payment .contents,
#deodorizerPage section#payment .contents,
#cleaningPage section#payment .contents,
#coatingPage section#payment .contents,
#dismantling_reformPage section#payment .contents,
#recruitPage section#payment .contents {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #trashhousePage section#payment .box,
#junk_removalPage section#payment .box,
#deodorizerPage section#payment .box,
#cleaningPage section#payment .box,
#coatingPage section#payment .box,
#dismantling_reformPage section#payment .box,
#recruitPage section#payment .box {
    width: 100%;
    margin-bottom: 15px;
  }
}
#trashhousePage section#payment .box h4,
#junk_removalPage section#payment .box h4,
#deodorizerPage section#payment .box h4,
#cleaningPage section#payment .box h4,
#coatingPage section#payment .box h4,
#dismantling_reformPage section#payment .box h4,
#recruitPage section#payment .box h4 {
  background: #0168B7;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 8px 0px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#payment .box h4,
#junk_removalPage section#payment .box h4,
#deodorizerPage section#payment .box h4,
#cleaningPage section#payment .box h4,
#coatingPage section#payment .box h4,
#dismantling_reformPage section#payment .box h4,
#recruitPage section#payment .box h4 {
    font-size: 16px;
  }
}
#trashhousePage section#payment .box .box-content,
#junk_removalPage section#payment .box .box-content,
#deodorizerPage section#payment .box .box-content,
#cleaningPage section#payment .box .box-content,
#coatingPage section#payment .box .box-content,
#dismantling_reformPage section#payment .box .box-content,
#recruitPage section#payment .box .box-content {
  margin-top: 4px;
  border: 1px solid #E6F0F8;
  height: 170px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#payment .box .box-content,
#junk_removalPage section#payment .box .box-content,
#deodorizerPage section#payment .box .box-content,
#cleaningPage section#payment .box .box-content,
#coatingPage section#payment .box .box-content,
#dismantling_reformPage section#payment .box .box-content,
#recruitPage section#payment .box .box-content {
    height: auto;
  }
}
#trashhousePage section#payment .box .box-content.img,
#junk_removalPage section#payment .box .box-content.img,
#deodorizerPage section#payment .box .box-content.img,
#cleaningPage section#payment .box .box-content.img,
#coatingPage section#payment .box .box-content.img,
#dismantling_reformPage section#payment .box .box-content.img,
#recruitPage section#payment .box .box-content.img {
  padding: 21px 28px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#payment .box .box-content.img,
#junk_removalPage section#payment .box .box-content.img,
#deodorizerPage section#payment .box .box-content.img,
#cleaningPage section#payment .box .box-content.img,
#coatingPage section#payment .box .box-content.img,
#dismantling_reformPage section#payment .box .box-content.img,
#recruitPage section#payment .box .box-content.img {
    padding: 17px 23px;
  }
}
#trashhousePage section#payment .box .box-content.txt,
#junk_removalPage section#payment .box .box-content.txt,
#deodorizerPage section#payment .box .box-content.txt,
#cleaningPage section#payment .box .box-content.txt,
#coatingPage section#payment .box .box-content.txt,
#dismantling_reformPage section#payment .box .box-content.txt,
#recruitPage section#payment .box .box-content.txt {
  padding: 40px 26px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#payment .box .box-content.txt,
#junk_removalPage section#payment .box .box-content.txt,
#deodorizerPage section#payment .box .box-content.txt,
#cleaningPage section#payment .box .box-content.txt,
#coatingPage section#payment .box .box-content.txt,
#dismantling_reformPage section#payment .box .box-content.txt,
#recruitPage section#payment .box .box-content.txt {
    padding: 15px 24px;
  }
}
#trashhousePage section#payment .box .box-content.txt p,
#junk_removalPage section#payment .box .box-content.txt p,
#deodorizerPage section#payment .box .box-content.txt p,
#cleaningPage section#payment .box .box-content.txt p,
#coatingPage section#payment .box .box-content.txt p,
#dismantling_reformPage section#payment .box .box-content.txt p,
#recruitPage section#payment .box .box-content.txt p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.9;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#payment .box .box-content.txt p,
#junk_removalPage section#payment .box .box-content.txt p,
#deodorizerPage section#payment .box .box-content.txt p,
#cleaningPage section#payment .box .box-content.txt p,
#coatingPage section#payment .box .box-content.txt p,
#dismantling_reformPage section#payment .box .box-content.txt p,
#recruitPage section#payment .box .box-content.txt p {
    font-size: 12px;
  }
}
#trashhousePage section#payment .box img,
#junk_removalPage section#payment .box img,
#deodorizerPage section#payment .box img,
#cleaningPage section#payment .box img,
#coatingPage section#payment .box img,
#dismantling_reformPage section#payment .box img,
#recruitPage section#payment .box img {
  width: 100%;
  height: auto;
  height: auto;
}
#trashhousePage section#payment .box p,
#junk_removalPage section#payment .box p,
#deodorizerPage section#payment .box p,
#cleaningPage section#payment .box p,
#coatingPage section#payment .box p,
#dismantling_reformPage section#payment .box p,
#recruitPage section#payment .box p {
  font-size: 14px;
  font-weight: bold;
}
#trashhousePage section#payment .box a,
#junk_removalPage section#payment .box a,
#deodorizerPage section#payment .box a,
#cleaningPage section#payment .box a,
#coatingPage section#payment .box a,
#dismantling_reformPage section#payment .box a,
#recruitPage section#payment .box a {
  text-decoration: underline;
}
#trashhousePage section#qa,
#junk_removalPage section#qa,
#deodorizerPage section#qa,
#cleaningPage section#qa,
#coatingPage section#qa,
#dismantling_reformPage section#qa,
#recruitPage section#qa {
  background: #fff;
  padding: 80px 0px 134px 0px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#qa,
#junk_removalPage section#qa,
#deodorizerPage section#qa,
#cleaningPage section#qa,
#coatingPage section#qa,
#dismantling_reformPage section#qa,
#recruitPage section#qa {
    padding: 63px 0px 131px 0px;
  }
}
#trashhousePage section#qa .contents,
#junk_removalPage section#qa .contents,
#deodorizerPage section#qa .contents,
#cleaningPage section#qa .contents,
#coatingPage section#qa .contents,
#dismantling_reformPage section#qa .contents,
#recruitPage section#qa .contents {
  width: 1230px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#qa .contents,
#junk_removalPage section#qa .contents,
#deodorizerPage section#qa .contents,
#cleaningPage section#qa .contents,
#coatingPage section#qa .contents,
#dismantling_reformPage section#qa .contents,
#recruitPage section#qa .contents {
    width: 320px;
  }
}
#trashhousePage section#qa .contents .qa-box,
#junk_removalPage section#qa .contents .qa-box,
#deodorizerPage section#qa .contents .qa-box,
#cleaningPage section#qa .contents .qa-box,
#coatingPage section#qa .contents .qa-box,
#dismantling_reformPage section#qa .contents .qa-box,
#recruitPage section#qa .contents .qa-box {
  width: 100%;
  margin-bottom: 9px;
}
#trashhousePage section#qa .contents .question,
#trashhousePage section#qa .contents .answer,
#junk_removalPage section#qa .contents .question,
#junk_removalPage section#qa .contents .answer,
#deodorizerPage section#qa .contents .question,
#deodorizerPage section#qa .contents .answer,
#cleaningPage section#qa .contents .question,
#cleaningPage section#qa .contents .answer,
#coatingPage section#qa .contents .question,
#coatingPage section#qa .contents .answer,
#dismantling_reformPage section#qa .contents .question,
#dismantling_reformPage section#qa .contents .answer,
#recruitPage section#qa .contents .question,
#recruitPage section#qa .contents .answer {
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#qa .contents .answer,
#junk_removalPage section#qa .contents .answer,
#deodorizerPage section#qa .contents .answer,
#cleaningPage section#qa .contents .answer,
#coatingPage section#qa .contents .answer,
#dismantling_reformPage section#qa .contents .answer,
#recruitPage section#qa .contents .answer {
    margin-top: 3px;
  }
}
#trashhousePage section#qa .contents .q-initial,
#trashhousePage section#qa .contents .a-initial,
#junk_removalPage section#qa .contents .q-initial,
#junk_removalPage section#qa .contents .a-initial,
#deodorizerPage section#qa .contents .q-initial,
#deodorizerPage section#qa .contents .a-initial,
#cleaningPage section#qa .contents .q-initial,
#cleaningPage section#qa .contents .a-initial,
#coatingPage section#qa .contents .q-initial,
#coatingPage section#qa .contents .a-initial,
#dismantling_reformPage section#qa .contents .q-initial,
#dismantling_reformPage section#qa .contents .a-initial,
#recruitPage section#qa .contents .q-initial,
#recruitPage section#qa .contents .a-initial {
  display: inline-block;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0px 0px 10px;
  font-weight: 700;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#qa .contents .q-initial,
#trashhousePage section#qa .contents .a-initial,
#junk_removalPage section#qa .contents .q-initial,
#junk_removalPage section#qa .contents .a-initial,
#deodorizerPage section#qa .contents .q-initial,
#deodorizerPage section#qa .contents .a-initial,
#cleaningPage section#qa .contents .q-initial,
#cleaningPage section#qa .contents .a-initial,
#coatingPage section#qa .contents .q-initial,
#coatingPage section#qa .contents .a-initial,
#dismantling_reformPage section#qa .contents .q-initial,
#dismantling_reformPage section#qa .contents .a-initial,
#recruitPage section#qa .contents .q-initial,
#recruitPage section#qa .contents .a-initial {
    width: 45px;
    height: 62px;
    font-size: 22px;
  }
}
#trashhousePage section#qa .contents .q-initial,
#junk_removalPage section#qa .contents .q-initial,
#deodorizerPage section#qa .contents .q-initial,
#cleaningPage section#qa .contents .q-initial,
#coatingPage section#qa .contents .q-initial,
#dismantling_reformPage section#qa .contents .q-initial,
#recruitPage section#qa .contents .q-initial {
  background: #0168B7;
  color: #fff;
}
#trashhousePage section#qa .contents .a-initial,
#junk_removalPage section#qa .contents .a-initial,
#deodorizerPage section#qa .contents .a-initial,
#cleaningPage section#qa .contents .a-initial,
#coatingPage section#qa .contents .a-initial,
#dismantling_reformPage section#qa .contents .a-initial,
#recruitPage section#qa .contents .a-initial {
  background: #1EB9EF;
  color: #fff;
}
#trashhousePage section#qa .contents .q-txt,
#trashhousePage section#qa .contents .a-txt,
#junk_removalPage section#qa .contents .q-txt,
#junk_removalPage section#qa .contents .a-txt,
#deodorizerPage section#qa .contents .q-txt,
#deodorizerPage section#qa .contents .a-txt,
#cleaningPage section#qa .contents .q-txt,
#cleaningPage section#qa .contents .a-txt,
#coatingPage section#qa .contents .q-txt,
#coatingPage section#qa .contents .a-txt,
#dismantling_reformPage section#qa .contents .q-txt,
#dismantling_reformPage section#qa .contents .a-txt,
#recruitPage section#qa .contents .q-txt,
#recruitPage section#qa .contents .a-txt {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 19px 210px 19px 36px;
  width: 100%;
  height: auto;
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #trashhousePage section#qa .contents .q-txt,
#trashhousePage section#qa .contents .a-txt,
#junk_removalPage section#qa .contents .q-txt,
#junk_removalPage section#qa .contents .a-txt,
#deodorizerPage section#qa .contents .q-txt,
#deodorizerPage section#qa .contents .a-txt,
#cleaningPage section#qa .contents .q-txt,
#cleaningPage section#qa .contents .a-txt,
#coatingPage section#qa .contents .q-txt,
#coatingPage section#qa .contents .a-txt,
#dismantling_reformPage section#qa .contents .q-txt,
#dismantling_reformPage section#qa .contents .a-txt,
#recruitPage section#qa .contents .q-txt,
#recruitPage section#qa .contents .a-txt {
    padding: 11px 40px 11px 17px;
    font-size: 14px;
    line-height: 20px;
  }
}
#trashhousePage section#qa .contents .q-txt,
#junk_removalPage section#qa .contents .q-txt,
#deodorizerPage section#qa .contents .q-txt,
#cleaningPage section#qa .contents .q-txt,
#coatingPage section#qa .contents .q-txt,
#dismantling_reformPage section#qa .contents .q-txt,
#recruitPage section#qa .contents .q-txt {
  background: #F8F8F8;
}
#trashhousePage section#qa .contents .a-txt,
#junk_removalPage section#qa .contents .a-txt,
#deodorizerPage section#qa .contents .a-txt,
#cleaningPage section#qa .contents .a-txt,
#coatingPage section#qa .contents .a-txt,
#dismantling_reformPage section#qa .contents .a-txt,
#recruitPage section#qa .contents .a-txt {
  background: #fff;
}
#trashhousePage section#qa .contents .button .plus,
#junk_removalPage section#qa .contents .button .plus,
#deodorizerPage section#qa .contents .button .plus,
#cleaningPage section#qa .contents .button .plus,
#coatingPage section#qa .contents .button .plus,
#dismantling_reformPage section#qa .contents .button .plus,
#recruitPage section#qa .contents .button .plus {
  position: relative;
}
#trashhousePage section#qa .contents .button .plus::after, #trashhousePage section#qa .contents .button .plus::before,
#junk_removalPage section#qa .contents .button .plus::after,
#junk_removalPage section#qa .contents .button .plus::before,
#deodorizerPage section#qa .contents .button .plus::after,
#deodorizerPage section#qa .contents .button .plus::before,
#cleaningPage section#qa .contents .button .plus::after,
#cleaningPage section#qa .contents .button .plus::before,
#coatingPage section#qa .contents .button .plus::after,
#coatingPage section#qa .contents .button .plus::before,
#dismantling_reformPage section#qa .contents .button .plus::after,
#dismantling_reformPage section#qa .contents .button .plus::before,
#recruitPage section#qa .contents .button .plus::after,
#recruitPage section#qa .contents .button .plus::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 30px;
  top: 18px;
  width: 3px;
  height: 25px;
  background-color: #0168B7;
  transition: transform 0.5s;
}
#trashhousePage section#qa .contents .button .plus::after,
#junk_removalPage section#qa .contents .button .plus::after,
#deodorizerPage section#qa .contents .button .plus::after,
#cleaningPage section#qa .contents .button .plus::after,
#coatingPage section#qa .contents .button .plus::after,
#dismantling_reformPage section#qa .contents .button .plus::after,
#recruitPage section#qa .contents .button .plus::after {
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  #trashhousePage section#qa .contents .button .plus::after, #trashhousePage section#qa .contents .button .plus::before,
#junk_removalPage section#qa .contents .button .plus::after,
#junk_removalPage section#qa .contents .button .plus::before,
#deodorizerPage section#qa .contents .button .plus::after,
#deodorizerPage section#qa .contents .button .plus::before,
#cleaningPage section#qa .contents .button .plus::after,
#cleaningPage section#qa .contents .button .plus::before,
#coatingPage section#qa .contents .button .plus::after,
#coatingPage section#qa .contents .button .plus::before,
#dismantling_reformPage section#qa .contents .button .plus::after,
#dismantling_reformPage section#qa .contents .button .plus::before,
#recruitPage section#qa .contents .button .plus::after,
#recruitPage section#qa .contents .button .plus::before {
    content: "";
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 25px;
    width: 2px;
    height: 15px;
    background-color: #0168B7;
    transition: transform 0.5s;
  }
}
#trashhousePage section#qa .contents .qa-box[open] .button .plus,
#junk_removalPage section#qa .contents .qa-box[open] .button .plus,
#deodorizerPage section#qa .contents .qa-box[open] .button .plus,
#cleaningPage section#qa .contents .qa-box[open] .button .plus,
#coatingPage section#qa .contents .qa-box[open] .button .plus,
#dismantling_reformPage section#qa .contents .qa-box[open] .button .plus,
#recruitPage section#qa .contents .qa-box[open] .button .plus {
  position: relative;
}
#trashhousePage section#qa .contents .qa-box[open] .button .plus::before,
#junk_removalPage section#qa .contents .qa-box[open] .button .plus::before,
#deodorizerPage section#qa .contents .qa-box[open] .button .plus::before,
#cleaningPage section#qa .contents .qa-box[open] .button .plus::before,
#coatingPage section#qa .contents .qa-box[open] .button .plus::before,
#dismantling_reformPage section#qa .contents .qa-box[open] .button .plus::before,
#recruitPage section#qa .contents .qa-box[open] .button .plus::before {
  content: none;
}
#trashhousePage section#message,
#junk_removalPage section#message,
#deodorizerPage section#message,
#cleaningPage section#message,
#coatingPage section#message,
#dismantling_reformPage section#message,
#recruitPage section#message {
  width: 1230px;
  margin: 75px auto 91px auto;
  position: relative;
}
#trashhousePage section#message .tel-icon,
#junk_removalPage section#message .tel-icon,
#deodorizerPage section#message .tel-icon,
#cleaningPage section#message .tel-icon,
#coatingPage section#message .tel-icon,
#dismantling_reformPage section#message .tel-icon,
#recruitPage section#message .tel-icon {
  width: 45px;
  height: 29px;
  position: absolute;
  left: 40px;
}
#trashhousePage section#message .section-title,
#junk_removalPage section#message .section-title,
#deodorizerPage section#message .section-title,
#cleaningPage section#message .section-title,
#coatingPage section#message .section-title,
#dismantling_reformPage section#message .section-title,
#recruitPage section#message .section-title {
  text-align: center;
  font-size: 38px;
  color: #FFB300;
  line-height: 58px;
  font-weight: 700;
  letter-spacing: 8px;
}

#junk_removalPage .normal-mv {
  width: 100%;
  height: 450px;
  background-image: url("../img/junk_removal/mv_junkremoval.png");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #junk_removalPage .normal-mv {
    height: 150px;
  }
}
#junk_removalPage section#items-case {
  width: 1230px;
  background: #fff;
  margin: 83px auto 0px auto;
  padding: 83px 0px 131px 0px;
  margin-bottom: 108px;
}
@media screen and (max-width: 768px) {
  #junk_removalPage section#items-case {
    width: 100%;
    padding: 76px 0px 80px 0px;
  }
}
#junk_removalPage section#items-case .section-heading {
  margin-bottom: 71px;
}
@media screen and (max-width: 768px) {
  #junk_removalPage section#items-case .section-heading {
    margin-bottom: 24px;
  }
}
#junk_removalPage section#items-case .section-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #junk_removalPage section#items-case .section-wrapper {
    width: 100%;
  }
}
#junk_removalPage section#items-case .items-wrapper .item-lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 35px;
  margin-bottom: 107px;
}
@media screen and (max-width: 768px) {
  #junk_removalPage section#items-case .items-wrapper .item-lists {
    display: block;
    margin-bottom: 60px;
  }
}
#junk_removalPage section#items-case .items-wrapper .item-lists .item {
  width: 250px;
  height: 224px;
}
@media screen and (max-width: 768px) {
  #junk_removalPage section#items-case .items-wrapper .item-lists .item {
    width: 320px;
    height: 300px;
    margin: 0 auto;
  }
}
#junk_removalPage section#items-case .items-wrapper .item-lists .item img {
  width: 100%;
  height: auto;
}
#junk_removalPage section#items-case .items-wrapper .item-lists .item p {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #0168B7;
  margin-top: 7px;
}
#junk_removalPage section#items-case .case-wrapper .case-lists {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #junk_removalPage section#items-case .case-wrapper .case-lists {
    display: block;
  }
}
#junk_removalPage section#items-case .case-wrapper .case-lists .case {
  width: 340px;
  height: 386px;
  background: #F8F8F8;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  #junk_removalPage section#items-case .case-wrapper .case-lists .case {
    width: 320px;
    height: 330px;
    margin: 0 auto 20px auto;
  }
}
#junk_removalPage section#items-case .case-wrapper .case-lists .case img {
  width: 100%;
  height: auto;
}
#junk_removalPage section#items-case .case-wrapper .case-lists .case .case-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  padding: 24px 23px 0px 23px;
}
@media screen and (max-width: 768px) {
  #junk_removalPage section#items-case .case-wrapper .case-lists .case .case-name {
    font-size: 16px;
    padding: 12px 0px 0px 23px;
  }
}
#junk_removalPage section#items-case .case-wrapper .case-lists .case .wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  gap: 15px;
  align-items: center;
  padding: 5px 0px 0px 23px;
}
@media screen and (max-width: 768px) {
  #junk_removalPage section#items-case .case-wrapper .case-lists .case .wrapper {
    padding: 10px 0px 0px 22px;
  }
}
#junk_removalPage section#items-case .case-wrapper .case-lists .case .wrapper span {
  display: inline-block;
  height: 37px;
  box-sizing: border-box;
  background: #0168B7;
  color: #fff;
  padding: 3px 10px;
  font-size: 18px;
  border-radius: 10px;
  position: relative;
  top: 3px;
}
@media screen and (max-width: 768px) {
  #junk_removalPage section#items-case .case-wrapper .case-lists .case .wrapper span {
    font-size: 15px;
    height: auto;
  }
}
#junk_removalPage section#items-case .case-wrapper .case-lists .case .wrapper p {
  font-size: 38px;
  font-weight: bold;
  color: #0168B7;
}
@media screen and (max-width: 768px) {
  #junk_removalPage section#items-case .case-wrapper .case-lists .case .wrapper p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #junk_removalPage section#strength {
    padding: 75px 0px 40px 0px;
  }
}
#junk_removalPage section#voice {
  margin-bottom: 0px;
}
#junk_removalPage section#flow {
  padding-top: 71px;
}

#deodorizerPage .normal-mv {
  width: 100%;
  height: 450px;
  background-image: url("../img/deodorizer/mv-deodorizer.png");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #deodorizerPage .normal-mv {
    height: 150px;
  }
}
#deodorizerPage section#equipment {
  background-color: #fff;
  padding: 100px 60px 140px 60px;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #deodorizerPage section#equipment {
    padding: 86px 27px 90px 27px;
  }
}
#deodorizerPage section#equipment .flex-heading {
  width: 1100px;
  margin: 0 auto 40px auto;
  gap: 0px;
}
@media screen and (max-width: 768px) {
  #deodorizerPage section#equipment .flex-heading {
    width: 100%;
  }
}
#deodorizerPage section#equipment .flex-heading .left {
  width: 411px;
}
@media screen and (max-width: 768px) {
  #deodorizerPage section#equipment .flex-heading .left {
    width: 100%;
  }
}
#deodorizerPage section#equipment .flex-heading .left .section-heading {
  left: unset;
}
@media screen and (max-width: 768px) {
  #deodorizerPage section#equipment .flex-heading .left .section-heading {
    width: 100%;
    max-width: unset;
  }
}
@media screen and (max-width: 768px) {
  #deodorizerPage section#equipment .flex-heading .left .section-title {
    width: 265px;
    margin: 0 auto;
  }
}
#deodorizerPage section#equipment .flex-heading .right {
  width: auto;
  top: 30px;
}
#deodorizerPage section#equipment .box-links {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #deodorizerPage section#equipment .box-links {
    display: block;
    max-width: 100%;
  }
}
#deodorizerPage section#equipment .box-links li {
  width: 243px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #deodorizerPage section#equipment .box-links li {
    width: 320px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 768px) {
  #deodorizerPage section#equipment .box-links li:last-of-type {
    margin-bottom: 0px;
  }
}
#deodorizerPage section#equipment .box-links figure {
  width: 243px;
  height: 243px;
  overflow: hidden;
  position: relative;
  background: #D9D9D9;
}
@media screen and (max-width: 768px) {
  #deodorizerPage section#equipment .box-links figure {
    width: 100%;
    max-width: 320px;
    height: 225px;
    margin-bottom: 18px;
  }
}
#deodorizerPage section#equipment .box-links img {
  width: 100%;
}
#deodorizerPage section#equipment .box-links h4 {
  font-size: 20px;
  font-weight: bold;
  color: #0168B7;
  margin: 18px 0px 10px 0px;
}
@media screen and (max-width: 768px) {
  #deodorizerPage section#equipment .box-links h4 {
    font-size: 16px;
  }
}
#deodorizerPage section#equipment .box-links p {
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  #deodorizerPage section#equipment .box-links p {
    font-size: 14px;
    line-height: 2.3;
  }
}
#deodorizerPage section#option .section-wrapper {
  padding: 104px 65px 119px 65px;
}
@media screen and (max-width: 768px) {
  #deodorizerPage section#option .section-wrapper {
    padding: 45px 14px 63px 14px;
  }
}
#deodorizerPage section#option .contents {
  grid-template-rows: repeat(1, 1fr);
}
#deodorizerPage section#option .heading-area .right {
  top: 30px;
}
#deodorizerPage section#strength {
  padding: 97px 0px 220px 0px;
}
@media screen and (max-width: 768px) {
  #deodorizerPage section#strength {
    padding: 75px 0px 120px 0px;
  }
}
#deodorizerPage section#case {
  padding-bottom: 180px;
}
@media screen and (max-width: 768px) {
  #deodorizerPage section#case {
    padding-bottom: 140px;
  }
}
@media screen and (max-width: 768px) {
  #deodorizerPage section#case .box .wrapper:first-of-type {
    margin-right: 10px;
  }
}
#deodorizerPage section#price {
  background: linear-gradient(to bottom, #fff 32%, #E6F0F8 32%);
}

#cleaningPage .normal-mv {
  width: 100%;
  height: 450px;
  background-image: url("../img/cleaning/mv-cleaning.png");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #cleaningPage .normal-mv {
    height: 150px;
  }
}
#cleaningPage section#service02 {
  width: 100%;
  background: #fff;
  padding: 102px 0px 144px 0px;
}
@media screen and (max-width: 768px) {
  #cleaningPage section#service02 {
    padding: 86px 0px 80px 0px;
  }
}
#cleaningPage section#service02 .service02-inner {
  width: 1230px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #cleaningPage section#service02 .service02-inner {
    width: 100%;
  }
}
#cleaningPage section#service02 .personality-area .flex-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 71px;
}
@media screen and (max-width: 768px) {
  #cleaningPage section#service02 .personality-area .flex-wrapper {
    display: block;
    width: 320px;
    margin: 0 auto 40px auto;
  }
}
#cleaningPage section#service02 .personality-area .left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #cleaningPage section#service02 .personality-area .left {
    width: 100%;
  }
}
#cleaningPage section#service02 .personality-area .left .personality-img {
  width: 100%;
}
#cleaningPage section#service02 .personality-area .right {
  width: 41%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #cleaningPage section#service02 .personality-area .right {
    width: 100%;
  }
}
#cleaningPage section#service02 .personality-area .right .personality-ttl {
  font-size: 28px;
  font-weight: bold;
  color: #016CD2;
  margin-bottom: 25px;
  letter-spacing: 8px;
}
@media screen and (max-width: 768px) {
  #cleaningPage section#service02 .personality-area .right .personality-ttl {
    font-size: 18px;
    margin: 18px 0px 10px 0px;
    letter-spacing: 1px;
    line-height: 1.5;
  }
}
#cleaningPage section#service02 .personality-area .right .personality-txt {
  font-size: 18px;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  #cleaningPage section#service02 .personality-area .right .personality-txt {
    font-size: 15px;
    letter-spacing: 1px;
  }
}
#cleaningPage section#service02 .personality-area .reverse {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #cleaningPage section#service02 .personality-area .reverse {
    margin: 0 auto;
  }
}
#cleaningPage section#service02 .personality-area .reverse .left {
  order: 2;
}
#cleaningPage section#service02 .personality-area .reverse .right {
  order: 1;
}
@media screen and (max-width: 768px) {
  #cleaningPage section#price {
    background: linear-gradient(to bottom, #fff 23%, #E6F0F8 23%);
  }
}
#cleaningPage section#price .attention {
  background: #fff;
  width: 100%;
  margin-top: 36px;
  padding: 25px 59px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #cleaningPage section#price .attention {
    padding: 13px;
    width: 320px;
    margin: 30px auto 0 auto;
  }
}
#cleaningPage section#price .attention p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #cleaningPage section#price .attention p {
    font-size: 14px;
    line-height: 1.5;
  }
}
#cleaningPage section#price.price-aircon {
  padding-top: 86px;
  background: linear-gradient(to bottom, #fff 44%, #E6F0F8 44%);
}
@media screen and (max-width: 768px) {
  #cleaningPage section#price.price-aircon {
    background: linear-gradient(to bottom, #fff 40%, #E6F0F8 40%);
  }
}
#cleaningPage section#price.price-aircon td .smallTxt {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  #cleaningPage section#price.price-aircon td .smallTxt {
    font-size: 12px;
  }
}
#cleaningPage section#strength {
  padding: 146px 0px 220px 0px;
}
@media screen and (max-width: 768px) {
  #cleaningPage section#strength {
    padding: 75px 0px 120px 0px;
  }
}
#cleaningPage section#case {
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  #cleaningPage section#case {
    padding-bottom: 140px;
  }
}
@media screen and (max-width: 768px) {
  #cleaningPage section#case .box .wrapper:first-of-type {
    margin-right: 10px;
  }
}
#cleaningPage section#voice {
  margin-bottom: 0px;
}

#coatingPage .normal-mv {
  width: 100%;
  height: 450px;
  background-image: url("../img/coating/mv-coating.png");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #coatingPage .normal-mv {
    height: 150px;
  }
}
@media screen and (max-width: 768px) {
  #coatingPage section#service {
    padding: 86px 27px 80px 27px;
  }
}
#coatingPage section#strength {
  padding: 178px 0px 260px 0px;
}
@media screen and (max-width: 768px) {
  #coatingPage section#strength {
    padding: 75px 0px 80px 0px;
  }
}
#coatingPage section#voice {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #coatingPage section#case .box .wrapper:first-of-type {
    margin-right: 10px;
  }
}

#dismantling_reformPage .normal-mv {
  width: 100%;
  height: 450px;
  background-image: url("../img/dismantling_reform/mv-reform.png");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #dismantling_reformPage .normal-mv {
    height: 150px;
  }
}
@media screen and (max-width: 768px) {
  #dismantling_reformPage section#service {
    padding: 86px 27px 80px 27px;
  }
}
#dismantling_reformPage section#strength {
  padding: 178px 0px 260px 0px;
}
@media screen and (max-width: 768px) {
  #dismantling_reformPage section#strength {
    padding: 75px 0px 80px 0px;
  }
}
#dismantling_reformPage section#voice {
  margin-bottom: 0px;
}
#dismantling_reformPage section#case .box .work-price .right {
  padding: 10px 20px;
}

#newsPage .normal-mv {
  width: 100%;
  height: 450px;
  background-image: url("../img/news/mv-news.png");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #newsPage .normal-mv {
    height: 150px;
  }
}
#newsPage section#news-area {
  width: 1100px;
  margin: 41px auto 106px auto;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #newsPage section#news-area {
    width: 100%;
    margin: 41px auto 50px auto;
  }
}
#newsPage section#news-area .tab-area {
  display: flex;
  justify-content: start;
  gap: 25px;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  #newsPage section#news-area .tab-area {
    flex-wrap: wrap;
    padding: 0 40px;
    justify-content: space-between;
    row-gap: 15px;
  }
}
#newsPage section#news-area .tab-area .tab-heading,
#newsPage section#news-area .tab-area .news-tab {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #newsPage section#news-area .tab-area .tab-heading,
#newsPage section#news-area .tab-area .news-tab {
    font-size: 15px;
    flex: 0 1 calc(48% - 10px);
  }
}
#newsPage section#news-area .tab-area .news-tab {
  cursor: pointer;
  transition: color 0.8s ease;
  border-bottom: 1px solid rgba(1, 104, 183, 0);
}
#newsPage section#news-area .tab-area .news-tab:hover {
  color: #0168B7;
  border-bottom: 1px solid #0168B7;
}
#newsPage section#news-area .tab-area .news-tab.active-tab {
  color: #0168B7;
  border-bottom: 1px solid #0168B7;
}
#newsPage section#news-area .article-lists {
  margin-top: 70px;
  margin-bottom: 49px;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  #newsPage section#news-area .article-lists {
    padding: 0 40px;
    margin-top: 32px;
    margin-bottom: 0px;
  }
}
#newsPage section#news-area .article-lists li:hover .article-title {
  color: #0168B7;
}
#newsPage section#news-area .article-lists .article-link {
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  padding-bottom: 26px;
  border-bottom: 1px solid #E6F0F8;
  margin-bottom: 26px;
  gap: 0px;
}
@media screen and (max-width: 768px) {
  #newsPage section#news-area .article-lists .article-link {
    gap: 0px;
    padding-bottom: 5px;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 10px;
  }
}
#newsPage section#news-area .article-lists .article-link:hover .article-category p {
  color: #0168B7;
  background: #fff;
  border: 1px solid #0168B7;
}
#newsPage section#news-area .article-lists .article-date {
  font-size: 20px;
  color: #0168B7;
  transition: color 0.8s ease;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  #newsPage section#news-area .article-lists .article-date {
    font-size: 10px;
  }
}
#newsPage section#news-area .article-lists .article-category {
  width: 160px;
}
#newsPage section#news-area .article-lists .article-category p {
  color: #fff;
  background: #0168B7;
  font-size: 15px;
  border-radius: 20px;
  padding: 5px 15px;
  display: inline-block;
  transition: color 0.8s ease, background 0.8s ease, border 0.8s ease;
  border: 1px solid rgba(1, 104, 183, 0);
}
@media screen and (max-width: 768px) {
  #newsPage section#news-area .article-lists .article-category p {
    font-size: 10px;
    padding: 2px 6px;
  }
}
#newsPage section#news-area .article-lists .article-title {
  font-size: 16px;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.8s ease;
  border-bottom: 1px solid rgba(51, 51, 51, 0);
}
@media screen and (max-width: 768px) {
  #newsPage section#news-area .article-lists .article-title {
    font-size: 13px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
  }
}
#newsPage section#news-area .active-content {
  display: block;
  opacity: 1;
}
#newsPage section#news-area .pagination {
  text-align: center;
}
#newsPage section#news-area .pagination a {
  font-size: 16px;
  font-weight: bold;
  color: #0168B7;
}
@media screen and (max-width: 768px) {
  #newsPage section#news-area .pagination a {
    font-size: 13px;
  }
}
#newsPage section#news-area .pagination a:hover {
  opacity: 0.8;
}
#newsPage section#news-area .pagination .page-numbers {
  margin: 0px 5px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #newsPage section#news-area .pagination .page-numbers {
    margin: 0px 2px;
    font-size: 13px;
  }
}
#newsPage section#news-area .viewmore {
  color: #016CD2;
  position: relative;
  top: 58px;
  display: inline-block;
  width: 240px;
  justify-content: center;
  gap: 30px;
  padding: 10px 0px;
  text-align: center;
  border-radius: 100vh;
  border: 1px solid #016CD2;
  transition: color 0.8s ease, background 0.8s ease;
  line-height: 1.5;
}
#newsPage section#news-area .viewmore:hover {
  color: #fff;
  background: #016CD2;
}
@media screen and (max-width: 768px) {
  #newsPage section#news-area .viewmore {
    padding: 10px 20px 10px 0px;
    width: 160px;
    position: absolute;
    top: unset;
    margin-top: 24px;
    right: 0;
    margin-right: 20px;
  }
}
#newsPage section#news-area .viewmore p {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #newsPage section#news-area .viewmore p {
    font-size: 14px;
    letter-spacing: 2px;
  }
}
#newsPage section#news-area .viewmore img {
  width: 6px;
  height: 7.86px;
  position: absolute;
  right: 25px;
  transform: translateY(-50%);
  top: 50%;
}
@media screen and (max-width: 768px) {
  #newsPage section#news-area .viewmore img {
    width: 4px;
    height: 6px;
  }
}

#newsSingle .single-news-wrapper {
  background-color: #E6F0F8;
  padding: 80px 0px 88px 0px;
}
@media screen and (max-width: 768px) {
  #newsSingle .single-news-wrapper {
    padding: 40px 0px 50px 0px;
  }
}
#newsSingle .single-news-wrapper article {
  padding: 5%;
}
@media screen and (max-width: 768px) {
  #newsSingle .single-news-wrapper article {
    padding: 0px;
    width: 320px;
    margin: 0 auto;
  }
}
#newsSingle .single-news-wrapper .single-news-inner {
  background: #fff;
}
@media screen and (max-width: 768px) {
  #newsSingle .single-news-wrapper .single-news-inner {
    padding: 30px 0px 30px 0px;
  }
}
#newsSingle .single-news-wrapper .single-news-inner .meta-area {
  display: flex;
  width: 100%;
  gap: 10px;
  font-size: 15px;
  align-items: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #newsSingle .single-news-wrapper .single-news-inner .meta-area {
    font-size: 13px;
  }
}
#newsSingle .single-news-wrapper .single-news-inner .meta-area .meta-category {
  background: #0168b7;
  color: #fff;
  text-align: center;
  display: block;
  padding: 5px 25px;
}
@media screen and (max-width: 768px) {
  #newsSingle .single-news-wrapper .single-news-inner .meta-area .meta-category {
    padding: 5px 15px;
  }
}
#newsSingle .single-news-wrapper .single-news-inner .meta-area .meta-category a {
  color: #fff;
}
#newsSingle .single-news-wrapper .single-news-inner h1 {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 9px;
  font-family: "lore", serif;
}
@media screen and (max-width: 768px) {
  #newsSingle .single-news-wrapper .single-news-inner h1 {
    font-size: 20px;
    letter-spacing: 7px;
  }
}
#newsSingle .single-news-wrapper .single-news-inner .single-content {
  margin: 58px 0px 72px 0px;
  font-size: 18px;
  line-height: 50px;
}
@media screen and (max-width: 768px) {
  #newsSingle .single-news-wrapper .single-news-inner .single-content {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 2px;
    margin: 10px 0px 30px 0px;
  }
}
#newsSingle .single-news-wrapper .single-news-inner .single-content img {
  margin: 20px 0px;
}
#newsSingle .single-news-wrapper .single-news-inner .post-navigation {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
#newsSingle .single-news-wrapper .single-news-inner .post-navigation a {
  font-size: 16px;
  font-weight: bold;
  color: #0168B7;
}
@media screen and (max-width: 768px) {
  #newsSingle .single-news-wrapper .single-news-inner .post-navigation a {
    font-size: 14px;
  }
}
#newsSingle .single-news-wrapper .single-news-inner .post-navigation a:hover {
  opacity: 0.8;
}

#recruitPage .normal-mv {
  width: 100%;
  height: 450px;
  background-image: url("../img/recruit/mv-recruit.png");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #recruitPage .normal-mv {
    height: 150px;
  }
}
#recruitPage .heading-txt-area {
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 80px 0px 0px 0px;
}
@media screen and (max-width: 768px) {
  #recruitPage .heading-txt-area {
    width: 100%;
    padding: 0;
    text-align: left;
    margin-bottom: 15px;
  }
}
#recruitPage .heading-txt-area .heading-txt {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #0168B7;
  margin-bottom: 0px;
  margin-left: 8%;
  letter-spacing: 5px;
  line-height: 54px;
}
@media screen and (max-width: 768px) {
  #recruitPage .heading-txt-area .heading-txt {
    width: 100%;
    font-size: 20px;
    line-height: normal;
    margin-left: 0;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  #recruitPage section#intro-about {
    width: 100%;
  }
}
#recruitPage section#intro-about .section-heading {
  width: 100%;
  max-width: 100%;
  height: auto;
  text-align: left;
  margin: 0px 0px 21px 0px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#intro-about .section-heading {
    width: 100%;
  }
}
#recruitPage section#intro-about .section-heading .section-subTitle {
  font-size: 16px;
  font-weight: normal;
  color: #0168B7;
  letter-spacing: 6px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#intro-about .section-heading .section-subTitle {
    font-size: 12px;
    letter-spacing: 3px;
  }
}
#recruitPage section#intro-about .section-heading .section-title {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#intro-about .section-heading .section-title {
    font-size: 30px;
  }
}
#recruitPage section#intro-about .flex-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 71px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #recruitPage section#intro-about .flex-wrapper {
    display: block;
  }
}
#recruitPage section#intro-about .left {
  width: 560px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#intro-about .left {
    width: 320px;
    margin-left: auto;
    margin-right: 13px;
  }
}
#recruitPage section#intro-about .left .personality-img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #recruitPage section#intro-about .left .personality-img {
    width: 320px;
    margin-bottom: 31px;
  }
}
#recruitPage section#intro-about .right {
  width: 460px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#intro-about .right {
    width: 320px;
    margin-left: auto;
    margin-right: 13px;
  }
}
#recruitPage section#intro-about .right .personality-ttl {
  font-size: 32px;
  font-weight: bold;
  color: #016CD2;
  margin-bottom: 30px;
  letter-spacing: 8px;
}
#recruitPage section#intro-about .right .personality-txt {
  font-size: 16px;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  #recruitPage section#intro-about .right .personality-txt {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 4px;
  }
}
#recruitPage section#intro-about .first-wrapper {
  width: 1298px;
  padding: 110px 5% 100px 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #recruitPage section#intro-about .first-wrapper {
    width: 360px;
    background: #fff;
    padding: 74px 0px 30px 0px;
  }
}
#recruitPage section#intro-about .reverse {
  margin-bottom: 0px;
  width: 100%;
  margin: 0 auto;
  padding: 110px 0px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#intro-about .reverse {
    width: 100%;
    padding: 61px 0px 80px 0px;
  }
}
#recruitPage section#intro-about .reverse .padding-wrapper {
  width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 150px;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  #recruitPage section#intro-about .reverse .padding-wrapper {
    width: 100%;
    display: block;
  }
}
#recruitPage section#intro-about .reverse .left {
  order: 2;
  width: 560px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#intro-about .reverse .left {
    width: 320px;
    margin: 0 auto;
  }
}
#recruitPage section#intro-about .reverse .right {
  order: 1;
  width: 450px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#intro-about .reverse .right {
    width: 320px;
    margin: 0 auto;
  }
}
#recruitPage section#personality {
  background: url("../img/recruit/personality-bg.png");
  background-repeat: no-repeat;
  background-size: 110% auto;
  background-position: center;
  padding: 88px 0px 0px 0px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#personality {
    background: url("../img/sp/recruit/personality-bg.png");
    padding: 60px 0px;
    background-size: 100% auto;
  }
}
#recruitPage section#personality .section-heading .section-title,
#recruitPage section#personality .section-heading .section-subTitle {
  color: #fff;
}
#recruitPage section#personality .inner {
  width: 1230px;
  margin: 0 auto;
  display: flex;
  justify-content: start;
  gap: 68px;
  align-items: center;
  position: relative;
  bottom: 50px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#personality .inner {
    display: block;
    width: 100%;
    padding: 0;
    bottom: 0px;
    margin-top: 5px;
  }
}
#recruitPage section#personality .left {
  width: 589px;
  height: 544px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #recruitPage section#personality .left {
    width: 320px;
    height: 294px;
    margin: 0 auto 25px auto;
  }
}
#recruitPage section#personality .left img {
  width: 306px;
  height: auto;
}
@media screen and (max-width: 768px) {
  #recruitPage section#personality .left img {
    width: 165px;
  }
}
#recruitPage section#personality .left img.personality-img01 {
  position: relative;
  left: 39px;
}
#recruitPage section#personality .left img.personality-img02 {
  position: absolute;
  bottom: 85px;
  right: 0px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#personality .left img.personality-img02 {
    bottom: 35px;
  }
}
#recruitPage section#personality .left img.personality-img03 {
  position: absolute;
  bottom: 0%;
  left: 0%;
}
#recruitPage section#personality .right {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #recruitPage section#personality .right {
    width: 320px;
    margin: 0 auto;
  }
}
#recruitPage section#personality .right .personality-ttl {
  font-size: 24px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 3px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #recruitPage section#personality .right .personality-ttl {
    font-size: 18px;
    font-weight: bold;
  }
}
#recruitPage section#personality .right .personality-txt {
  font-size: 16px;
  line-height: 2.3;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #recruitPage section#personality .right .personality-txt {
    font-size: 15px;
  }
}
#recruitPage section#jobDescription {
  width: 100%;
  background: #fff;
  padding-top: 167px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#jobDescription {
    padding-top: 100px;
  }
}
#recruitPage section#jobDescription .section-heading {
  width: 100%;
  max-width: 100%;
}
#recruitPage section#jobDescription .description-table {
  width: 1100px;
  margin: 0 auto;
  border-collapse: collapse;
  border: 1px solid #d7d7d7;
}
@media screen and (max-width: 768px) {
  #recruitPage section#jobDescription .description-table {
    width: 320px;
  }
}
#recruitPage section#jobDescription .description-table th, #recruitPage section#jobDescription .description-table td {
  border-bottom: 1px solid #d7d7d7;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #recruitPage section#jobDescription .description-table th, #recruitPage section#jobDescription .description-table td {
    display: block;
    box-sizing: border-box;
  }
}
#recruitPage section#jobDescription .description-table th {
  background: #E6F0F8;
  text-align: center;
  padding: 32px 0px;
  font-size: 20px;
  font-weight: bold;
  width: 270px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #recruitPage section#jobDescription .description-table th {
    width: 100%;
    font-size: 18px;
    padding: 12px 16px;
    text-align: left;
  }
}
#recruitPage section#jobDescription .description-table td {
  padding: 32px 0px 32px 62px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#jobDescription .description-table td {
    font-size: 15px;
    padding: 18px 14px;
  }
}
#recruitPage section#recruit-flow {
  width: 100%;
  background: #fff;
  padding: 94px 0px 158px 0px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#recruit-flow {
    padding: 76px 0px 166px 0px;
  }
}
#recruitPage section#recruit-flow .flow-chart {
  width: 1100px;
  margin: 0 auto 107px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #recruitPage section#recruit-flow .flow-chart {
    width: 320px;
    margin: 0 auto;
    flex-wrap: wrap;
    row-gap: 26px;
  }
}
#recruitPage section#recruit-flow .flow-chart .flow-content {
  width: 250px;
  height: 250px;
  border-radius: 20px;
  padding: 30px 0px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #recruitPage section#recruit-flow .flow-chart .flow-content {
    width: 150px;
    height: 170px;
    padding: 17px 8px;
  }
}
#recruitPage section#recruit-flow .flow-chart .flow-content p {
  text-align: center;
}
#recruitPage section#recruit-flow .flow-chart .flow-content .flow-number {
  font-size: 36px;
  font-weight: bold;
  color: #0168B7;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#recruit-flow .flow-chart .flow-content .flow-number {
    font-size: 21px;
    margin-bottom: 9px;
  }
}
#recruitPage section#recruit-flow .flow-chart .flow-content .flow-ttl {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#recruit-flow .flow-chart .flow-content .flow-ttl {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
#recruitPage section#recruit-flow .flow-chart .flow-content .flow-txt {
  font-size: 15px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #recruitPage section#recruit-flow .flow-chart .flow-content .flow-txt {
    font-size: 12px;
  }
}
#recruitPage section#recruit-flow .flow-chart .flow-content.flow01 {
  border: 1px solid #0168B7;
}
#recruitPage section#recruit-flow .flow-chart .flow-content.flow02, #recruitPage section#recruit-flow .flow-chart .flow-content.flow03 {
  background: #E6F0F8;
}
#recruitPage section#recruit-flow .flow-chart .flow-content.flow04 {
  background: #0168B7;
}
#recruitPage section#recruit-flow .flow-chart .flow-content.flow04 .p,
#recruitPage section#recruit-flow .flow-chart .flow-content.flow04 .flow-number,
#recruitPage section#recruit-flow .flow-chart .flow-content.flow04 .flow-ttl,
#recruitPage section#recruit-flow .flow-chart .flow-content.flow04 .flow-txt {
  color: #fff;
}
#recruitPage section#recruit-flow .flow-chart .flow-arrow {
  width: 23px;
  height: 62px;
  position: relative;
  left: 3px;
}
@media screen and (max-width: 768px) {
  #recruitPage section#recruit-flow .flow-chart .flow-arrow {
    width: 12px;
    height: 34px;
    left: 1px;
  }
}
#recruitPage section#recruit-flow .entry-link {
  background: #FFB300;
  border-radius: 100vh;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  width: 465px;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #recruitPage section#recruit-flow .entry-link {
    width: 320px;
    background: #FFB300;
    justify-content: center;
    border-radius: 100vh;
    padding: 0px 30px;
    margin-top: 55px;
    border-bottom: unset;
    gap: 10px;
  }
}
#recruitPage section#recruit-flow .entry-link p {
  color: #fff;
  padding: 23px 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #recruitPage section#recruit-flow .entry-link p {
    color: #fff;
    padding: 23px 0px;
    letter-spacing: 3px;
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  #staffPage .heading-bottomTxt.inner {
    padding: 0px;
    width: 320px;
    margin: 0 auto;
  }
}
#staffPage .heading-bottomTxt p {
  font-size: 28px;
  font-weight: bold;
  color: #016CD2;
  margin: 80px auto 71px auto;
  text-align: center;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  #staffPage .heading-bottomTxt p {
    font-size: 20px;
    text-align: left;
    line-height: 2;
    letter-spacing: 2px;
    margin: 74px 0px 50px 0px;
  }
}
#staffPage section.normal-mv {
  background-image: url("../img/staff/about_mv.png");
}
@media screen and (max-width: 768px) {
  #staffPage section.normal-mv {
    background-position: center;
  }
}
#staffPage section .sectionInner {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #staffPage section .sectionInner {
    width: 100%;
  }
}
#staffPage section .section-title {
  font-family: "lore", serif;
  font-size: 48px;
  font-weight: normal;
  letter-spacing: 9px;
}
#staffPage section .section-subTitle {
  font-size: 16px;
  letter-spacing: 6px;
  color: #016CD2;
}
#staffPage section.staff-wrapper.inner {
  width: 1130px;
}
@media screen and (max-width: 768px) {
  #staffPage section.staff-wrapper.inner {
    padding: 0px;
    width: 320px;
    margin: 0 auto;
  }
}
#staffPage section.staff-wrapper ul.staff-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 75px;
  margin-bottom: 136px;
}
@media screen and (max-width: 768px) {
  #staffPage section.staff-wrapper ul.staff-lists {
    display: block;
    margin-bottom: 50px;
  }
}
#staffPage section.staff-wrapper ul.staff-lists a.staff-list {
  width: 325px;
  transition: opacity 0.8s ease;
}
@media screen and (max-width: 768px) {
  #staffPage section.staff-wrapper ul.staff-lists a.staff-list {
    width: 320px;
    margin-bottom: 50px;
    display: inline-block;
  }
}
#staffPage section.staff-wrapper ul.staff-lists a.staff-list:hover {
  opacity: 0.5;
}
#staffPage section.staff-wrapper ul.staff-lists a.staff-list:hover .profile_name {
  color: #0168b7 !important;
}
#staffPage section.staff-wrapper ul.staff-lists a.staff-list .top {
  position: relative;
}
#staffPage section.staff-wrapper ul.staff-lists a.staff-list .top .profile_img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10%;
}
@media screen and (max-width: 768px) {
  #staffPage section.staff-wrapper ul.staff-lists a.staff-list .top .profile_img {
    height: 220px;
  }
}
#staffPage section.staff-wrapper ul.staff-lists a.staff-list .top .profile_position {
  background: #0168b7;
  color: #fff;
  text-align: center;
  display: block;
  padding: 5px 25px;
  bottom: 20px;
  left: -25px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  #staffPage section.staff-wrapper ul.staff-lists a.staff-list .top .profile_position {
    font-size: 15px;
    padding: 5px 15px;
    left: -10px;
  }
}
#staffPage section.staff-wrapper ul.staff-lists a.staff-list .bottom .profile_name {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-top: 5px;
  transition: color 0.8s ease;
}
@media screen and (max-width: 768px) {
  #staffPage section.staff-wrapper ul.staff-lists a.staff-list .bottom .profile_name {
    font-size: 18px;
  }
}

#staffSingle .section-heading {
  text-align: center;
  margin-bottom: 68px;
}
@media screen and (max-width: 768px) {
  #staffSingle .section-heading {
    width: 100%;
    margin-bottom: 27px;
  }
}
#staffSingle .section-title {
  font-family: "lore", serif;
  font-size: 48px;
  font-weight: normal;
  letter-spacing: 9px;
}
@media screen and (max-width: 768px) {
  #staffSingle .section-title {
    font-size: 30px;
    letter-spacing: 7px;
  }
}
#staffSingle .section-title span {
  font-weight: bold;
  font-family: "lore", serif;
}
#staffSingle .section-subTitle {
  font-size: 16px;
  letter-spacing: 6px;
  color: #016CD2;
}
@media screen and (max-width: 768px) {
  #staffSingle .section-subTitle {
    font-size: 12px;
    letter-spacing: 3px;
  }
}
#staffSingle .staff-mv {
  width: 100%;
  height: 577px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-mv {
    height: auto;
  }
}
#staffSingle .staff-mv .main_img {
  width: 100%;
  height: 577px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-mv .main_img {
    height: 200px;
  }
}
#staffSingle .staff-mv .mv-txtArea {
  position: absolute;
  left: 5%;
  bottom: 8%;
  width: 560px;
  background: #fff;
  padding: 17px 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-mv .mv-txtArea {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 10px;
    display: block;
  }
}
#staffSingle .staff-mv .mv-txtArea .mv-title {
  color: #0168B7;
  font-size: 26px;
  font-weight: bold;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-mv .mv-txtArea .mv-title {
    font-size: 18px;
    width: 100%;
  }
}
#staffSingle .staff-mv .mv-txtArea .mv-subtitle {
  color: #333;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-mv .mv-txtArea .mv-subtitle {
    font-size: 13px;
    width: auto;
    color: #fff;
    background: #0168B7;
  }
}
#staffSingle .staff-mv .mv-txtArea .sp_mv-subtitle {
  display: none;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-mv .mv-txtArea .sp_mv-subtitle {
    display: inline-block;
    font-size: 13px;
    width: auto;
    color: #fff;
    background: #0168B7;
    padding: 2px 10px;
    margin-bottom: 5px;
  }
}
#staffSingle .staff-details-wrapper {
  background-color: #E6F0F8;
  padding: 80px 0px 88px 0px;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-details-wrapper {
    padding: 40px 0px 50px 0px;
  }
}
#staffSingle .staff-details-wrapper .staff-white-bg {
  background: #fff;
}
#staffSingle .staff-details-wrapper .padding-content {
  padding: 5%;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-details-wrapper .padding-content {
    padding: 0px;
    width: 320px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-details-wrapper .inner {
    padding: 0px 0px 30px 0px;
  }
}
#staffSingle .staff-details-wrapper .profile-area {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-details-wrapper .profile-area {
    margin-bottom: 100px;
    padding-top: 30px;
  }
}
#staffSingle .staff-details-wrapper .profile-area .flex-wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-details-wrapper .profile-area .flex-wrapper {
    display: block;
  }
}
#staffSingle .staff-details-wrapper .profile-area .left {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-details-wrapper .profile-area .left {
    width: 320px;
    margin: 0 auto;
  }
}
#staffSingle .staff-details-wrapper .profile-area .left .main_img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10%;
}
#staffSingle .staff-details-wrapper .profile-area .right {
  width: 49%;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-details-wrapper .profile-area .right {
    width: 320px;
    margin: 0 auto;
  }
}
#staffSingle .staff-details-wrapper .profile-area .right .table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-details-wrapper .profile-area .right .table {
    font-size: 14px;
    padding: 0;
    letter-spacing: 1px;
  }
}
#staffSingle .staff-details-wrapper .profile-area .right .row {
  display: table-row;
}
#staffSingle .staff-details-wrapper .profile-area .right .cell {
  display: table-cell;
  padding: 15px 10px 10px 10px;
  border-bottom: 1px solid #E6F0F8;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-details-wrapper .profile-area .right .cell {
    padding: 15px 0px;
  }
}
#staffSingle .staff-details-wrapper .profile-area .right .indent {
  padding-left: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-details-wrapper .profile-area .right .indent {
    padding-left: 0;
    font-size: 14px;
  }
}
#staffSingle .staff-details-wrapper .profile-area .right .cell-heading {
  font-weight: bold;
  width: 30%;
}
#staffSingle .staff-details-wrapper .profile-area .right .content {
  width: 65%;
}
#staffSingle .staff-details-wrapper .personality-area .flex-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 71px;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-details-wrapper .personality-area .flex-wrapper {
    display: block;
  }
}
#staffSingle .staff-details-wrapper .personality-area .flex-wrapper:last-of-type {
  margin-bottom: 0px;
}
#staffSingle .staff-details-wrapper .personality-area .left {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-details-wrapper .personality-area .left {
    width: 100%;
  }
}
#staffSingle .staff-details-wrapper .personality-area .left .personality-img {
  width: 100%;
}
#staffSingle .staff-details-wrapper .personality-area .right {
  width: 49%;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-details-wrapper .personality-area .right {
    width: 100%;
  }
}
#staffSingle .staff-details-wrapper .personality-area .right .personality-ttl {
  font-size: 32px;
  font-weight: bold;
  color: #016CD2;
  margin-bottom: 30px;
  letter-spacing: 8px;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-details-wrapper .personality-area .right .personality-ttl {
    font-size: 18px;
    letter-spacing: 1px;
    margin: 18px 0px 10px 0px;
  }
}
#staffSingle .staff-details-wrapper .personality-area .right .personality-txt {
  font-size: 16px;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  #staffSingle .staff-details-wrapper .personality-area .right .personality-txt {
    font-size: 15px;
    letter-spacing: 1px;
  }
}
#staffSingle .staff-details-wrapper .personality-area .reverse {
  margin-bottom: 71px;
}
#staffSingle .staff-details-wrapper .personality-area .reverse .left {
  order: 2;
}
#staffSingle .staff-details-wrapper .personality-area .reverse .right {
  order: 1;
}
#staffSingle .otherStaff-wrapper {
  margin-bottom: 264px;
  padding-top: 90px;
}
#staffSingle .otherStaff-wrapper.inner {
  width: 1130px;
}
@media screen and (max-width: 768px) {
  #staffSingle .otherStaff-wrapper.inner {
    width: 320px;
    margin: 0 auto;
    padding: 30px 0px 120px 0px;
  }
}
#staffSingle .otherStaff-wrapper .section-heading {
  margin-bottom: 51px;
}
@media screen and (max-width: 768px) {
  #staffSingle .otherStaff-wrapper .section-heading {
    margin-bottom: 27px;
  }
}
#staffSingle .otherStaff-wrapper ul.staff-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 75px;
}
@media screen and (max-width: 768px) {
  #staffSingle .otherStaff-wrapper ul.staff-lists {
    display: block;
  }
}
#staffSingle .otherStaff-wrapper ul.staff-lists a.staff-list {
  width: 325px;
  transition: opacity 0.8s ease;
}
@media screen and (max-width: 768px) {
  #staffSingle .otherStaff-wrapper ul.staff-lists a.staff-list {
    width: 320px;
    margin-bottom: 50px;
    display: inline-block;
  }
}
#staffSingle .otherStaff-wrapper ul.staff-lists a.staff-list:hover {
  opacity: 0.5;
}
#staffSingle .otherStaff-wrapper ul.staff-lists a.staff-list:hover .profile_name {
  color: #0168b7 !important;
}
#staffSingle .otherStaff-wrapper ul.staff-lists a.staff-list .top {
  position: relative;
}
#staffSingle .otherStaff-wrapper ul.staff-lists a.staff-list .top .profile_img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10%;
}
@media screen and (max-width: 768px) {
  #staffSingle .otherStaff-wrapper ul.staff-lists a.staff-list .top .profile_img {
    height: 220px;
  }
}
#staffSingle .otherStaff-wrapper ul.staff-lists a.staff-list .top .profile_position {
  background: #0168b7;
  color: #fff;
  text-align: center;
  display: block;
  padding: 5px 25px;
  bottom: 20px;
  left: -25px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  #staffSingle .otherStaff-wrapper ul.staff-lists a.staff-list .top .profile_position {
    font-size: 15px;
    padding: 5px 15px;
    left: -10px;
  }
}
#staffSingle .otherStaff-wrapper ul.staff-lists a.staff-list .bottom .profile_name {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-top: 5px;
  transition: color 0.8s ease;
}
@media screen and (max-width: 768px) {
  #staffSingle .otherStaff-wrapper ul.staff-lists a.staff-list .bottom .profile_name {
    font-size: 18px;
  }
}
#staffSingle .otherStaff-wrapper .link-wrapper {
  position: relative;
}
#staffSingle .otherStaff-wrapper .pageLink {
  color: #016CD2;
  display: inline-block;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -120px;
  width: 240px;
  justify-content: center;
  gap: 30px;
  padding: 10px 0px;
  text-align: center;
  border-radius: 100vh;
  border: 1px solid #016CD2;
  transition: color 0.8s ease, background 0.8s ease;
}
#staffSingle .otherStaff-wrapper .pageLink:hover {
  color: #fff;
  background: #016CD2;
}
@media screen and (max-width: 768px) {
  #staffSingle .otherStaff-wrapper .pageLink {
    padding: 10px 20px 10px 0px;
    width: 160px;
    position: absolute;
    right: 0;
    margin-right: 20px;
    bottom: -30px;
  }
}
#staffSingle .otherStaff-wrapper .pageLink p {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #staffSingle .otherStaff-wrapper .pageLink p {
    font-size: 14px;
    letter-spacing: 2px;
  }
}
#staffSingle .otherStaff-wrapper .pageLink img {
  width: 6px;
  height: 7.86px;
  position: absolute;
  right: 25px;
  transform: translateY(-50%);
  top: 50%;
}
@media screen and (max-width: 768px) {
  #staffSingle .otherStaff-wrapper .pageLink img {
    width: 4px;
    height: 6px;
  }
}

#contactPage .normal-mv,
#contact_mediaPage .normal-mv,
#contact_lawyerPage .normal-mv {
  width: 100%;
  height: 450px;
  background-image: url("../img/contact/mv-contact.png");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #contactPage .normal-mv,
#contact_mediaPage .normal-mv,
#contact_lawyerPage .normal-mv {
    height: 150px;
  }
}
#contactPage .heading-txt-area,
#contact_mediaPage .heading-txt-area,
#contact_lawyerPage .heading-txt-area {
  width: 1100px;
  margin: 87px auto 80px auto;
}
@media screen and (max-width: 768px) {
  #contactPage .heading-txt-area,
#contact_mediaPage .heading-txt-area,
#contact_lawyerPage .heading-txt-area {
    width: 320px;
    margin: 50px auto 40px auto;
  }
}
#contactPage .heading-txt-area .heading-txt,
#contact_mediaPage .heading-txt-area .heading-txt,
#contact_lawyerPage .heading-txt-area .heading-txt {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
}
#contactPage .heading-txt-area .heading-txt .tel-blue,
#contact_mediaPage .heading-txt-area .heading-txt .tel-blue,
#contact_lawyerPage .heading-txt-area .heading-txt .tel-blue {
  font-size: 26px;
  color: #1EB9EF;
  letter-spacing: 1px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contactPage .heading-txt-area .heading-txt,
#contact_mediaPage .heading-txt-area .heading-txt,
#contact_lawyerPage .heading-txt-area .heading-txt {
    font-size: 18px;
  }
  #contactPage .heading-txt-area .heading-txt .tel-blue,
#contact_mediaPage .heading-txt-area .heading-txt .tel-blue,
#contact_lawyerPage .heading-txt-area .heading-txt .tel-blue {
    font-size: 18px;
    color: #1EB9EF;
  }
}
#contactPage section .wpcf7-spinner,
#contact_mediaPage section .wpcf7-spinner,
#contact_lawyerPage section .wpcf7-spinner {
  display: none !important;
}
#contactPage section#form-content,
#contact_mediaPage section#form-content,
#contact_lawyerPage section#form-content {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #contactPage section#form-content,
#contact_mediaPage section#form-content,
#contact_lawyerPage section#form-content {
    width: 320px;
  }
}
#contactPage section#form-content .form-table,
#contact_mediaPage section#form-content .form-table,
#contact_lawyerPage section#form-content .form-table {
  width: 100%;
  border-collapse: collapse;
}
#contactPage section#form-content th,
#contactPage section#form-content td,
#contact_mediaPage section#form-content th,
#contact_mediaPage section#form-content td,
#contact_lawyerPage section#form-content th,
#contact_lawyerPage section#form-content td {
  padding: 51px 0px 74px 0px;
  border-bottom: 1px solid #979797;
}
#contactPage section#form-content th:last-of-type,
#contactPage section#form-content td:last-of-type,
#contact_mediaPage section#form-content th:last-of-type,
#contact_mediaPage section#form-content td:last-of-type,
#contact_lawyerPage section#form-content th:last-of-type,
#contact_lawyerPage section#form-content td:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  #contactPage section#form-content th,
#contactPage section#form-content td,
#contact_mediaPage section#form-content th,
#contact_mediaPage section#form-content td,
#contact_lawyerPage section#form-content th,
#contact_lawyerPage section#form-content td {
    display: block;
    border-bottom: none;
    padding: 0px;
  }
}
#contactPage section#form-content th,
#contact_mediaPage section#form-content th,
#contact_lawyerPage section#form-content th {
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  #contactPage section#form-content th,
#contact_mediaPage section#form-content th,
#contact_lawyerPage section#form-content th {
    display: flex;
    justify-content: space-between;
    padding-top: 28px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  #contactPage section#form-content th p,
#contact_mediaPage section#form-content th p,
#contact_lawyerPage section#form-content th p {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
#contactPage section#form-content .form-heading,
#contact_mediaPage section#form-content .form-heading,
#contact_lawyerPage section#form-content .form-heading {
  font-size: 20px;
  font-weight: bold;
  width: 212px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #contactPage section#form-content .form-heading,
#contact_mediaPage section#form-content .form-heading,
#contact_lawyerPage section#form-content .form-heading {
    width: auto;
    font-size: 18px;
    margin-right: 10px;
    display: block;
  }
}
#contactPage section#form-content .form-mark,
#contact_mediaPage section#form-content .form-mark,
#contact_lawyerPage section#form-content .form-mark {
  font-size: 12px;
  font-weight: bold;
  padding: 5px 12px;
  background: #0168B7;
  color: #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  #contactPage section#form-content .form-mark,
#contact_mediaPage section#form-content .form-mark,
#contact_lawyerPage section#form-content .form-mark {
    display: block;
  }
}
#contactPage section#form-content td,
#contact_mediaPage section#form-content td,
#contact_lawyerPage section#form-content td {
  width: 765px;
}
@media screen and (max-width: 768px) {
  #contactPage section#form-content td,
#contact_mediaPage section#form-content td,
#contact_lawyerPage section#form-content td {
    width: 100%;
  }
}
#contactPage section#form-content td input,
#contactPage section#form-content td textarea,
#contact_mediaPage section#form-content td input,
#contact_mediaPage section#form-content td textarea,
#contact_lawyerPage section#form-content td input,
#contact_lawyerPage section#form-content td textarea {
  width: 100%;
  border-radius: 0.25rem;
  border: 1px solid #707070;
  padding: 5px 10px;
  box-sizing: border-box;
}
#contactPage section#form-content td input,
#contact_mediaPage section#form-content td input,
#contact_lawyerPage section#form-content td input {
  height: 60px;
}
@media screen and (max-width: 768px) {
  #contactPage section#form-content td input,
#contact_mediaPage section#form-content td input,
#contact_lawyerPage section#form-content td input {
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  #contactPage section#form-content td textarea,
#contact_mediaPage section#form-content td textarea,
#contact_lawyerPage section#form-content td textarea {
    height: 393px !important;
  }
}
#contactPage section#form-content .info-txt,
#contact_mediaPage section#form-content .info-txt,
#contact_lawyerPage section#form-content .info-txt {
  font-size: 20px;
  color: #0168B7;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contactPage section#form-content .info-txt,
#contact_mediaPage section#form-content .info-txt,
#contact_lawyerPage section#form-content .info-txt {
    font-size: 20px;
    margin-top: 59px;
  }
}
#contactPage section#form-content .info-txt a,
#contact_mediaPage section#form-content .info-txt a,
#contact_lawyerPage section#form-content .info-txt a {
  border-bottom: 1px solid #0168B7;
  color: #0168B7;
  font-size: 20px;
}
#contactPage section#form-content .submit-area,
#contact_mediaPage section#form-content .submit-area,
#contact_lawyerPage section#form-content .submit-area {
  text-align: center;
  margin-bottom: 180px;
}
@media screen and (max-width: 768px) {
  #contactPage section#form-content .submit-area,
#contact_mediaPage section#form-content .submit-area,
#contact_lawyerPage section#form-content .submit-area {
    margin-bottom: 190px;
  }
}
#contactPage section#form-content .submit-area p,
#contact_mediaPage section#form-content .submit-area p,
#contact_lawyerPage section#form-content .submit-area p {
  display: flex;
  justify-content: center;
}
#contactPage section#form-content .submit-area .entry-link,
#contactPage section#form-content .submit-area input[type=submit],
#contactPage section#form-content .submit-area input[type=button],
#contact_mediaPage section#form-content .submit-area .entry-link,
#contact_mediaPage section#form-content .submit-area input[type=submit],
#contact_mediaPage section#form-content .submit-area input[type=button],
#contact_lawyerPage section#form-content .submit-area .entry-link,
#contact_lawyerPage section#form-content .submit-area input[type=submit],
#contact_lawyerPage section#form-content .submit-area input[type=button] {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic Antique", "Noto Sans JP", serif;
  background: #FFB300;
  border-radius: 100vh;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  width: 416px;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
  margin: 76px auto 0px auto;
  border: none;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 2;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #contactPage section#form-content .submit-area .entry-link,
#contactPage section#form-content .submit-area input[type=submit],
#contactPage section#form-content .submit-area input[type=button],
#contact_mediaPage section#form-content .submit-area .entry-link,
#contact_mediaPage section#form-content .submit-area input[type=submit],
#contact_mediaPage section#form-content .submit-area input[type=button],
#contact_lawyerPage section#form-content .submit-area .entry-link,
#contact_lawyerPage section#form-content .submit-area input[type=submit],
#contact_lawyerPage section#form-content .submit-area input[type=button] {
    width: auto;
    background: #FFB300;
    justify-content: center;
    border-radius: 100vh;
    padding: 15px 40px;
    margin-top: 55px;
    border-bottom: unset;
    gap: 10px;
    color: #fff;
    letter-spacing: 3px;
    font-size: 20px;
  }
}
#contactPage section#form-content .submit-area input[type=button],
#contact_mediaPage section#form-content .submit-area input[type=button],
#contact_lawyerPage section#form-content .submit-area input[type=button] {
  background: #0168B7;
  color: #fff;
}

#contact_mediaPage .normal-mv {
  width: 100%;
  height: 450px;
  background-image: url("../img/contact/mv-contact_media.png");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #contact_mediaPage .normal-mv {
    height: 150px;
  }
}
#contact_mediaPage .normal-mv .mv-txtArea {
  width: 100%;
}

#contact_lawyerPage .normal-mv {
  width: 100%;
  height: 450px;
  background-image: url("../img/contact/lawyer/mv.png");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage .normal-mv {
    height: 200px;
  }
}
#contact_lawyerPage .normal-mv .mv-txtArea {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage .heading-txt-area {
    margin: 35px auto 50px auto;
  }
}
#contact_lawyerPage .heading-txt-area .heading-ttl {
  text-align: center;
  font-size: 38px;
  font-weight: bold;
  color: #0168B7;
  letter-spacing: 7px;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage .heading-txt-area .heading-ttl {
    font-size: 20px;
    text-align: left;
    letter-spacing: 4px;
    line-height: 2;
  }
}
#contact_lawyerPage .heading-txt-area .heading-txt {
  margin-top: 24px;
  letter-spacing: 6px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage .heading-txt-area .heading-txt {
    text-align: left;
    font-size: 15px;
    margin-top: 5px;
  }
}
#contact_lawyerPage .heading-txt-area02 {
  width: 1100px;
  margin: 39px auto 51px auto;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage .heading-txt-area02 {
    width: 340px;
    margin: 28px auto 40px auto;
  }
}
#contact_lawyerPage .heading-txt-area02 .heading-txt {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage .heading-txt-area02 .heading-txt {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
#contact_lawyerPage .heading-txt-area02 .heading-txt .tel-blue {
  font-size: 20px;
  color: #1EB9EF;
  font-weight: bold;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage .heading-txt-area02 .heading-txt .tel-blue {
    font-size: 18px;
    color: #1EB9EF;
    letter-spacing: 1px;
  }
}
#contact_lawyerPage section#service {
  background-color: #fff;
  padding: 0px 60px 94px 60px;
  margin-bottom: 0px;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage section#service {
    padding: 0px;
    margin-bottom: 82px;
    margin-top: 0px;
  }
}
#contact_lawyerPage section#service .box-links {
  display: flex;
  justify-content: start;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  -moz-column-gap: 70px;
       column-gap: 70px;
  row-gap: 66px;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage section#service .box-links {
    display: flex;
    max-width: 322px;
    -moz-column-gap: 17px;
         column-gap: 17px;
    row-gap: 40px;
    justify-content: space-between;
  }
}
#contact_lawyerPage section#service .box-links li {
  width: 320px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage section#service .box-links li {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage section#service .box-links li:last-of-type {
    margin-bottom: 0px;
  }
}
#contact_lawyerPage section#service .box-links figure {
  width: 320px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage section#service .box-links figure {
    width: 100%;
    max-width: 150px;
  }
}
#contact_lawyerPage section#service .box-links img {
  width: 100%;
}
#contact_lawyerPage section#service .box-links h4 {
  font-size: 24px;
  font-weight: bold;
  color: #0168B7;
  margin: 18px 0px 10px 0px;
  display: flex;
  align-items: center;
  height: 80px;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage section#service .box-links h4 {
    font-size: 15px;
    height: 45px;
    margin: 11px 0px 10px 0px;
  }
}
#contact_lawyerPage section#service .box-links p {
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage section#service .box-links p {
    font-size: 12px;
    line-height: 2.3;
  }
}
#contact_lawyerPage section#contact-strength {
  background: linear-gradient(to bottom, #fff 10%, #F1F1F1 10%);
  height: 500px;
  margin-bottom: 135px;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage section#contact-strength {
    background: linear-gradient(to bottom, #fff 3%, #F1F1F1 3%);
    height: 920px;
    margin-bottom: 110px;
  }
}
#contact_lawyerPage section#contact-strength .section-heading {
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage section#contact-strength .section-heading {
    margin: 0 auto 15px auto;
  }
}
#contact_lawyerPage section#contact-strength .contents-wrapper {
  width: 1100px;
  height: 406px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  position: relative;
  top: 10px;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage section#contact-strength .contents-wrapper {
    width: 320px;
    height: 857px;
    display: block;
  }
}
#contact_lawyerPage section#contact-strength .contents-wrapper .box-wrapper {
  width: 350px;
  height: 270px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage section#contact-strength .contents-wrapper .box-wrapper {
    width: 320px;
    height: 225px;
    margin-bottom: 35px;
  }
}
#contact_lawyerPage section#contact-strength .contents-wrapper .box-wrapper img {
  width: 65px;
  height: auto;
  position: relative;
  z-index: 2;
}
#contact_lawyerPage section#contact-strength .contents-wrapper .box-wrapper .box {
  width: 350px;
  height: 227px;
  background: #fff;
  border: 1px solid #EFEFEF;
  box-shadow: 2px 2px 3px 0px #d7d7d7;
  padding: 36px 24px 0px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  justify-content: start;
  position: relative;
  bottom: 15px;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage section#contact-strength .contents-wrapper .box-wrapper .box {
    width: 320px;
    height: 200px;
    padding: 37px 15px 0px 15px;
    bottom: 30px;
    display: block;
  }
}
#contact_lawyerPage section#contact-strength .contents-wrapper .box-wrapper .box-ttl {
  font-size: 18px;
  font-weight: bold;
  color: #0168B7;
  text-align: center;
  display: flex;
  height: 55px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage section#contact-strength .contents-wrapper .box-wrapper .box-ttl {
    height: unset;
    margin-bottom: 10px;
  }
}
#contact_lawyerPage section#contact-strength .contents-wrapper .box-wrapper .box-txt {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #contact_lawyerPage section#contact-strength .contents-wrapper .box-wrapper .box-txt {
    text-align: center;
  }
}