@charset "UTF-8";
/* -------------------------------------------------------------------------*/
/* MIXIN / ARGUMENT / COMMON CLASS
/* -------------------------------------------------------------------------*/
.default_ftz {
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (max-width:640px) {
  .default_ftz {
    font-size: 16px;
    font-size: 1rem;
  }
}

.text_out {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.fixed_area {
  max-width: 1200px;
  margin: 0 auto;
}

.tbl_scroll {
  overflow-x: auto;
}
.tbl_scroll table {
  min-width: 600px;
}

.link_btn {
  text-align: center;
  line-height: 1.5;
}
.link_btn a {
  font-size: 20px;
  font-size: 1.25rem;
  position: relative;
  display: inline-block;
  padding: 10px 60px;
  background-color: var(--color_1);
  color: #fff;
  text-decoration: none;
  border-radius: 5rem;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.link_btn a::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 100%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.link_btn a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color_1);
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg) translateY(-60%);
  position: absolute;
  right: 30px;
  top: 50%;
}

.mt_L {
  margin-top: 3rem;
}

.ta_R {
  text-align: right;
}

a[target=_blank]::after {
  content: url(../img/ic_blank.png);
  display: inline-block;
  margin-left: 5px;
}

:root {
  --color_1: #43c094;
  --color_2: #f0faf6;
  --color_3: #0c9e95;
  --color_text: #455a64;
  --color_text_2: #333;
}

a.pdf::after {
  content: url(../img/ic_pdf.png);
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  transform: translateY(3px);
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* FONT
/* -------------------------------------------------------------------------*/
.gothic, body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.mincho, .cmp_caption, .contact_block .fax, .contact_block .tel, .contact_block .text, #TP_service .text, #TP_insurance .text, #TP_kv .caption p {
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* COMMON / BASE
/* -------------------------------------------------------------------------*/
html {
  font-size: 100%;
  line-height: 1.5em;
}
@media only screen and (max-width:980px) {
  html {
    font-size: 90%;
  }
}
@media only screen and (max-width:640px) {
  html {
    font-size: 90%;
  }
}
@media print {
  html {
    width: 1000px !important;
  }
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

body {
  color: var(--color_text);
  margin: 0;
  padding: 0;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* HD
/* -------------------------------------------------------------------------*/
body.page {
  padding-top: 67px;
}
@media only screen and (max-width:980px) {
  body.page {
    padding-top: 50px;
  }
}

#HD {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 67px;
  background-color: #fff;
}
body.scrolled #HD {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
#HD #HD_logo {
  margin: 0;
  padding: 12px 20px;
}
#HD #HD_logo a {
  display: block;
  width: 250px;
}
#HD #HD_logo img {
  width: 100%;
  height: auto;
}
#HD #NV {
  flex: 1;
}
#HD #NV ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: right;
}
#HD #NV ul ul {
  display: none;
}
#HD #NV li {
  position: relative;
  margin: 0;
  padding: 0;
}
#HD #NV li::before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background-color: #e7f1f0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#HD #NV a {
  display: flex;
  align-items: center;
  height: 67px;
  padding: 5px 40px;
  text-decoration: none;
  color: var(--color_text);
  transition: color 0.2s ease;
}
#HD #NV a span {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #9ca599;
  transition: background 0.2s ease;
}
#HD #NV a span img {
  width: 20px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#HD #NV a:hover {
  color: #2bb3c5;
}
#HD #NV a:hover span {
  background-color: #2bb3c5;
}
#HD #NV li.home {
  display: none;
}
body.ctg_company #HD #NV li.company a, body.ctg_insurance #HD #NV li.insurance a, body.ctg_services #HD #NV li.services a, body.ctg_faq #HD #NV li.faq a {
  color: #2ca90f;
}
body.ctg_company #HD #NV li.company a span, body.ctg_insurance #HD #NV li.insurance a span, body.ctg_services #HD #NV li.services a span, body.ctg_faq #HD #NV li.faq a span {
  background-color: #6cbb5a;
}
#HD .hd_contact {
  font-size: 18px;
  font-size: 1.125rem;
  display: flex;
}
#HD .hd_contact a {
  display: flex;
  align-items: center;
  background-color: #2bb3c5;
  color: #fff;
  text-decoration: none;
  padding: 5px 30px;
  transition: background 0.2s ease;
}
#HD .hd_contact a:hover {
  background-color: #47cfe0;
}
@media only screen and (max-width: 1300px) {
  #HD #NV a {
    padding: 5px 20px;
  }
  #HD .hd_contact {
    font-size: 16px;
    font-size: 1rem;
  }
  #HD .hd_contact a {
    padding: 5px 20px;
  }
}
@media only screen and (max-width:1200px) {
  #HD #HD_logo {
    padding: 15px 10px;
  }
  #HD #HD_logo a {
    width: 220px;
  }
}
@media only screen and (max-width: 1050px) {
  #HD #NV a {
    padding: 5px 15px;
  }
  #HD .hd_contact {
    font-size: 16px;
    font-size: 1rem;
  }
  #HD .hd_contact a {
    padding: 5px 10px;
  }
}
@media only screen and (max-width:980px) {
  #HD {
    height: 50px;
  }
  #HD #HD_logo {
    margin: 0;
    padding: 8px 10px;
  }
  #HD #HD_logo a {
    width: 200px;
  }
  #HD #NV {
    display: none;
  }
  #HD .hd_contact {
    display: none;
  }
}
@media only screen and (max-width:640px) {
  #HD #HD_logo {
    margin: 0;
    padding: 12px 10px;
  }
  #HD #HD_logo a {
    width: 180px;
  }
}

@media print {
  #HD {
    font-size: 14px;
    font-size: 0.875rem;
    position: absolute;
  }
  #HD a {
    white-space: nowrap;
  }
  #HD #NV a {
    padding: 5px 10px;
  }
  #HD #NV ul {
    width: 100%;
  }
  .parallax-mirror {
    display: none !important;
  }
  body.page .pg_title {
    background-image: url(../img/pg_kv.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  body.ctg_services .pg_title {
    background-image: url(../../services/img/pg_kv.jpg);
  }
  body.ctg_company .pg_title {
    background-image: url(../../company/img/pg_kv.jpg);
  }
  body.ctg_insurance .pg_title {
    background-image: url(../../insurance/img/pg_kv.jpg);
  }
  body.ctg_faq .pg_title {
    background-image: url(../../faq/img/pg_kv.jpg);
  }
}
/* TOP PAGE
#HD{
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;

    background-color: rgba(#fff, 0.6);

    display: flex;


    #HD_logo{
        margin: 0;
        padding: 15px 20px;

        a{
            display: block;
            width: 250px;
        }

        img{
            width: 100%;
            height: auto;
        }
    }

    #NV{
        flex: 1;

        ul{
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }
    }

    .hd_contact{
        display: flex;

        a{
            background-color: #2bb3c5;
            color: #fff;
        }
    }
}
*/
/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* TOP
/* -------------------------------------------------------------------------*/
/* -- HD -- */
body.ctg_home #HD {
  background-color: rgba(255, 255, 255, 0.8);
  transition: background 0.2s ease;
}
body.ctg_home #HD #NV {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
body.ctg_home #HD #HD_logo {
  position: relative;
  transition: padding 0.3s ease;
}
body.ctg_home #HD #HD_logo::before {
  content: "";
  display: block;
  width: 120%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}
body.ctg_home #HD #HD_logo a {
  position: relative;
}
body.ctg_home.nv_top #HD {
  background-color: #fff;
  pointer-events: auto;
}
body.ctg_home.nv_top #HD #HD_logo {
  padding: 12px 20px;
}
body.ctg_home.nv_top #HD #HD_logo::before {
  opacity: 0;
  height: 0;
}
body.ctg_home.nv_top #HD #NV {
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (max-width:980px) {
  body.ctg_home #HD #HD_logo {
    position: relative;
    padding: 15px 10px 0;
  }
  body.ctg_home.nv_top #HD #HD_logo {
    padding: 12px 10px 0;
  }
}

@media only screen and (max-width:640px) {
  body.ctg_home .parallax-mirror {
    display: none;
  }
}

#TP_kv {
  position: relative;
  padding-top: 800px;
  background: transparent;
}
#TP_kv .caption {
  position: absolute;
  top: 60%;
  left: 100px;
  transform: translateY(-50%);
  text-shadow: 0 0 8px #184758;
}
#TP_kv .caption p {
  font-size: 55px;
  font-size: 3.4375rem;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 60px;
  opacity: 0;
  transition: opacity 1.5s ease;
  transition-delay: 0.5s;
}
body.loaded #TP_kv .caption p {
  opacity: 1;
}
#TP_kv .caption ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 20px;
  width: 634px;
}
#TP_kv .caption li {
  margin: 0;
  padding: 0;
}
#TP_kv .caption li a {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: opacity 0.2s ease;
}
#TP_kv .caption li a:hover {
  opacity: 0.8;
}
#TP_kv .caption li img {
  width: 100%;
  height: auto;
}
#TP_kv .caption li:nth-child(1) a {
  border: 2px solid #43c094;
}
#TP_kv .caption li:nth-child(2) a {
  border: 2px solid #19afc3;
}
#TP_kv .sp_btn {
  display: none;
}
@media only screen and (max-width: 1500px) {
  #TP_kv {
    padding-top: 53.3333333333%;
  }
  #TP_kv .caption {
    left: 3vw;
  }
  #TP_kv .caption p {
    font-size: 3.5vw;
    line-height: 5vw;
    margin-bottom: 3vw;
  }
  #TP_kv .caption ul {
    width: 45vw;
    column-gap: 1vw;
  }
}
@media only screen and (max-width:640px) {
  #TP_kv {
    padding-top: 0;
    height: 100vh;
    max-height: 600px;
    background: url(../img/top/sp_kv.jpg) center top !important;
    background-size: cover;
  }
  #TP_kv .caption {
    top: 60%;
    left: 5vw;
    transform: translateY(-50%);
  }
  #TP_kv .caption p {
    font-size: 7vw;
    margin-left: 0;
    line-height: 10vw;
  }
  #TP_kv .caption ul {
    display: none;
  }
  #TP_kv .sp_btn {
    display: block;
    position: absolute;
    left: 0;
    bottom: 35px;
    right: 0;
    padding: 0 5px;
  }
  #TP_kv .sp_btn ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    column-gap: 5px;
    width: 100%;
  }
  #TP_kv .sp_btn li {
    margin: 0;
    padding: 0;
  }
  #TP_kv .sp_btn li a {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: opacity 0.2s ease;
  }
  #TP_kv .sp_btn li a:hover {
    opacity: 0.8;
  }
  #TP_kv .sp_btn li img {
    width: 100%;
    height: auto;
  }
  #TP_kv .sp_btn li:nth-child(1) a {
    border: 2px solid #43c094;
  }
  #TP_kv .sp_btn li:nth-child(2) a {
    border: 2px solid #19afc3;
  }
}
@media print {
  #TP_kv {
    padding-top: 580px;
    background: url(../img/top/kv.jpg) center top no-repeat;
    background-size: cover;
  }
  #TP_kv .caption {
    left: 20px;
  }
  #TP_kv .caption p {
    font-size: 35px;
    font-size: 2.1875rem;
    margin-bottom: 30px;
  }
  #TP_kv .caption ul {
    width: 450px;
  }
}

#TP_nv {
  font-size: 21px;
  font-size: 1.3125rem;
  padding: 0 10px;
  background-color: #f4f8f9;
}
#TP_nv ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  max-width: 1200px;
  background-color: #fff;
  border-bottom: 4px solid var(--color_1);
  border-radius: 10px;
  overflow: hidden;
  transform: translateY(-50%);
}
#TP_nv li {
  flex: 1;
  position: relative;
  margin: 0;
  padding: 0;
}
#TP_nv li::before {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  background-color: #e7f1f0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#TP_nv li:nth-child(2):before {
  display: none;
}
#TP_nv a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 22px 10px;
  color: var(--color_text);
  transition: color 0.2s ease;
}
#TP_nv a span {
  display: block;
  position: relative;
  background-color: #6cbb5a;
  border-radius: 100%;
  overflow: hidden;
  width: 55px;
  height: 55px;
  margin-right: 15px;
  box-shadow: 4px 4px 3px 4px #fff, 0 0 1px 5px rgba(0, 0, 0, 0.075);
  transition: background 0.2s ease;
}
#TP_nv a span img {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#TP_nv a:hover {
  color: #54be3c;
}
#TP_nv a:hover span {
  background-color: #64df48;
}
#TP_nv .home {
  display: none;
}
@media only screen and (max-width:1200px) {
  #TP_nv {
    font-size: 20px;
    font-size: 1.25rem;
  }
  #TP_nv a span {
    width: 45px;
    height: 45px;
    margin-right: 12px;
  }
  #TP_nv a span img {
    width: 28px;
    height: 28px;
  }
}
@media only screen and (max-width:980px) {
  #TP_nv {
    font-size: 18px;
    font-size: 1.125rem;
  }
  #TP_nv ul {
    border-radius: 5px;
  }
  #TP_nv li {
    flex: auto;
  }
  #TP_nv a {
    padding: 15px 10px;
  }
  #TP_nv a span {
    width: 35px;
    height: 35px;
    margin-right: 8px;
  }
  #TP_nv a span img {
    width: 24px;
    height: 24px;
  }
}
@media only screen and (max-width:640px) {
  #TP_nv {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  #TP_nv ul {
    transform: none;
    flex-wrap: wrap;
    transform: translateY(-10px);
  }
  #TP_nv li {
    width: 50%;
  }
  #TP_nv li:nth-child(2), #TP_nv li:nth-child(3) {
    border-bottom: 1px solid #e7f1f0;
  }
  #TP_nv a {
    justify-content: flex-start;
    padding: 15px 5px 15px 10px;
  }
  #TP_nv a span {
    width: 30px;
    height: 30px;
    margin-right: 8px;
    box-shadow: 2px 2px 1px 2px #fff, 0 0 1px 3px rgba(0, 0, 0, 0.075);
  }
  #TP_nv a span img {
    width: 20px;
    height: 20px;
  }
}

.tp_title::after, .contact_block .title::after, #TP_pickup h2::after, #TP_company h2::after, #TP_service h2::after, #TP_insurance h2::after, #TP_news h2::after {
  content: "";
  display: block;
  margin: 20px auto;
  width: 70px;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(to right, #0c9e95 50%, #d2d2d2 50.1%);
}

#TP_news {
  background: #FFFFFF;
  background: linear-gradient(to top, #FFFFFF 40%, #F4F8F9 80%);
  padding: 48px 20px 120px;
}
#TP_news .inner {
  max-width: 1200px;
  margin: 0 auto;
}
#TP_news h2 {
  font-size: 40px;
  font-size: 2.5rem;
  text-align: center;
  margin: 0;
  color: var(--color_3);
  font-weight: normal;
  letter-spacing: 5px;
  line-height: 1;
}
#TP_news ul {
  list-style: none;
  margin: 48px auto 0;
  padding: 0 15px;
  width: fit-content;
}
#TP_news li {
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 30px;
}
#TP_news li + li {
  margin-top: 1.25em;
  padding-top: 1.25em;
  border-top: 1px dotted #727272;
}
#TP_news li .date {
  font-weight: bold;
  color: #888;
  letter-spacing: 0.1em;
}
#TP_news li .txt {
  font-size: 1.125rem;
}
#TP_news li a {
  color: var(--color_3);
  text-decoration: none;
}
#TP_news li a:hover {
  text-decoration: underline;
}
@media only screen and (max-width:980px) {
  #TP_news {
    padding: 48px 15px 100px;
  }
  #TP_news .inner h2 {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}
@media only screen and (max-width:640px) {
  #TP_news {
    padding: 70px 15px 80px;
  }
  #TP_news .inner h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  #TP_news .inner ul {
    margin-top: 36px;
  }
  #TP_news .inner li {
    flex-direction: column;
  }
  #TP_news .inner .txt {
    font-size: 1rem;
    margin-top: 5px;
  }
}

#TP_insurance {
  background: url(../img/top/insurance_bc.jpg) left bottom no-repeat #f4f8f9;
  background-size: 1000px auto;
  padding: 36px 20px 0;
}
#TP_insurance .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40%;
  padding-top: 65px;
  padding-bottom: 150px;
}
#TP_insurance h2 {
  font-size: 40px;
  font-size: 2.5rem;
  text-align: center;
  margin: 0;
  color: var(--color_3);
  font-weight: normal;
  letter-spacing: 5px;
  line-height: 1;
}
#TP_insurance .text {
  font-size: 20px;
  font-size: 1.25rem;
  color: #588a97;
  line-height: 1.8;
}
#TP_insurance ul {
  list-style: none;
  margin: 70px 0 0;
  padding: 0;
  display: flex;
  column-gap: 30px;
  justify-content: center;
}
#TP_insurance li {
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(20%);
  transition: all 0.8s ease;
}
#TP_insurance li:nth-child(2) {
  transition-delay: 0.2s;
}
#TP_insurance li.anm_on {
  opacity: 1;
  transform: none;
}
#TP_insurance li a {
  display: block;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#TP_insurance li a:hover {
  transform: scale(1.08);
}
#TP_insurance li a img {
  width: 100%;
  height: auto;
  max-width: 246px;
}
@media only screen and (min-width: 1501px) {
  #TP_insurance .inner {
    padding-left: 500px;
  }
}
@media only screen and (max-width:1200px) {
  #TP_insurance {
    background-size: 80% auto;
  }
  #TP_insurance .inner {
    padding-top: 50px;
  }
  #TP_insurance ul {
    column-gap: 3vw;
  }
}
@media only screen and (max-width:980px) {
  #TP_insurance {
    background-size: 90% auto;
  }
  #TP_insurance .inner {
    padding-left: 0;
    padding-top: 50px;
    padding-bottom: 40vw;
    max-width: 500px;
  }
  #TP_insurance h2 {
    font-size: 35px;
    font-size: 2.1875rem;
  }
  #TP_insurance ul {
    margin-top: 40px;
  }
}
@media only screen and (max-width:640px) {
  #TP_insurance h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

#TP_service {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
}
#TP_service::before {
  content: "";
  display: block;
  background-color: var(--color_1);
  width: 100vw;
  height: 100px;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(3deg) translateY(-90%);
}
#TP_service .inner {
  max-width: 1200px;
  margin: 0 auto;
}
#TP_service h2 {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: normal;
  text-align: center;
  margin: 0;
  color: var(--color_3);
  letter-spacing: 5px;
  line-height: 1;
}
#TP_service .text {
  font-size: 20px;
  font-size: 1.25rem;
  color: #588a97;
  line-height: 1.8;
  text-align: center;
}
#TP_service ul {
  display: flex;
  column-gap: 2.3%;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}
#TP_service li {
  flex: 1;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
#TP_service li:nth-child(2) {
  transition-delay: 0.2s;
}
#TP_service li:nth-child(3) {
  transition-delay: 0.4s;
}
#TP_service li:nth-child(4) {
  transition-delay: 0.6s;
}
#TP_service li.anm_on {
  opacity: 1;
}
#TP_service li a {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 2px;
  font-weight: bold;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 3%;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#TP_service li a:hover figure img {
  transform: scale(1.08);
}
#TP_service li a figure {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#TP_service li a figure img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
#TP_service li a p {
  position: relative;
  margin: 0;
  padding: 30px 10px 30px 10px;
}
#TP_service li a p::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: rotate(45deg) translateY(-50%);
  border: 1px solid #fff;
  border-left: none;
  border-bottom: none;
}
#TP_service li:nth-child(1) a {
  background-color: #3ebb8f;
}
#TP_service li:nth-child(2) a {
  background-color: #31b7a1;
}
#TP_service li:nth-child(3) a {
  background-color: #25b3b2;
}
#TP_service li:nth-child(4) a {
  background-color: #19afc3;
}
@media only screen and (max-width:980px) {
  #TP_service {
    padding: 100px 15px;
  }
  #TP_service h2 {
    font-size: 35px;
    font-size: 2.1875rem;
  }
  #TP_service ul {
    column-gap: 1.5%;
  }
  #TP_service li a {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0;
  }
  #TP_service li a p {
    padding: 20px 5px;
  }
  #TP_service li a p::after {
    display: none;
  }
}
@media only screen and (max-width:640px) {
  #TP_service {
    padding: 80px 15px;
  }
  #TP_service h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  #TP_service ul {
    flex-wrap: wrap;
    gap: 16px;
  }
  #TP_service li {
    flex: none;
    width: calc(50% - 8px);
  }
}

#TP_company {
  padding: 120px 20px;
  background: transparent;
  color: #fff;
  text-align: center;
}
#TP_company .inner {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 1.5s ease;
}
#TP_company .inner.anm_on {
  opacity: 1;
}
#TP_company h2 {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: normal;
  text-align: center;
  margin: 0;
  letter-spacing: 5px;
  line-height: 1;
}
#TP_company h2::after {
  background: linear-gradient(to right, #fff 50%, #d2d2d2 50.1%);
}
#TP_company ul {
  display: flex;
  column-gap: 26px;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}
#TP_company li {
  flex: 1;
  margin: 0;
  padding: 0;
}
#TP_company li a {
  font-size: 24px;
  font-size: 1.5rem;
  display: block;
  padding: 60px 0 40px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: rgba(23, 89, 78, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}
#TP_company li a img {
  width: 100px;
  height: auto;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
#TP_company li a p {
  position: relative;
  margin: 0;
  padding: 20px 10px 20px 10px;
  letter-spacing: 2px;
}
#TP_company li a p::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: rotate(45deg) translateY(-50%);
  border: 1px solid #fff;
  border-left: none;
  border-bottom: none;
}
#TP_company li a:hover {
  border-color: #fff;
  background-color: rgba(23, 89, 78, 0.8);
  box-shadow: none;
}
#TP_company li a:hover img {
  opacity: 1;
}
@media only screen and (max-width:980px) {
  #TP_company {
    padding: 100px 15px;
  }
  #TP_company h2 {
    font-size: 35px;
    font-size: 2.1875rem;
  }
  #TP_company ul {
    column-gap: 1.5%;
  }
  #TP_company li a {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 40px 0 20px;
  }
  #TP_company li a img {
    width: 75px;
  }
}
@media only screen and (max-width:640px) {
  #TP_company {
    padding: 80px 15px;
    background: url(../img/top/company_bc.jpg) center center no-repeat;
    background-size: cover;
  }
  #TP_company h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  #TP_company ul {
    flex-wrap: wrap;
    gap: 16px;
  }
  #TP_company li {
    flex: none;
    width: calc(50% - 8px);
  }
  #TP_company li a p::after {
    display: none;
  }
}
@media print {
  #TP_company {
    background: url(../img/top/company_bc.jpg) center center no-repeat;
    background-size: cover;
  }
}

#TP_pickup {
  padding: 120px 20px;
  background: transparent;
}
#TP_pickup .inner {
  max-width: 1000px;
  margin: 0 auto;
}
#TP_pickup h2 {
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: normal;
  text-align: center;
  margin: 0 0 5rem;
  line-height: 1;
}
#TP_pickup .pickup_block {
  border: 1px dotted #727272;
  border-left: none;
  border-right: none;
  padding: 50px 0;
}
#TP_pickup .pickup_block + .pickup_block {
  border-top: none;
}
#TP_pickup .pickup_block .inner {
  display: flex;
  gap: 30px;
}
#TP_pickup .pickup_block .text {
  flex: 1;
  line-height: 1.8;
}
#TP_pickup .pickup_block .text h4 {
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0 0 1.5rem;
  font-weight: normal;
}
#TP_pickup .pickup_block figure {
  margin: 0;
  padding: 0;
}
#TP_pickup .pickup_block figure img {
  width: auto;
  height: auto;
  max-width: 100%;
}
#TP_pickup .pickup_block .link_btn {
  margin-top: 1rem;
}
@media only screen and (max-width:980px) {
  #TP_pickup {
    padding: 100px 15px;
  }
  #TP_pickup h2 {
    font-size: 35px;
    font-size: 2.1875rem;
  }
  #TP_pickup .pickup_block {
    padding: 35px 0;
  }
  #TP_pickup .pickup_block .inner {
    gap: 20px;
  }
}
@media only screen and (max-width:640px) {
  #TP_pickup {
    padding: 80px 15px;
  }
  #TP_pickup .pickup_block .inner {
    display: block;
  }
  #TP_pickup .pickup_block figure {
    margin: 1rem 0;
    text-align: center;
  }
  #TP_pickup .pickup_block .link_btn {
    margin-top: 2rem;
  }
}

@media print {
  #TP_CNT .wp_1 {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* CONTACT
/* -------------------------------------------------------------------------*/
.contact_block {
  padding: 70px 20px 50px;
  background-color: #f9f6ef;
}
.contact_block .inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.contact_block .inner::before {
  content: "";
  display: block;
  background: #dfdfdf;
  width: 1px;
  height: 220px;
  position: absolute;
  left: 50%;
  top: 0;
}
.contact_block .contact_column {
  text-align: center;
}
.contact_block .title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: normal;
  text-align: center;
  margin: 0 0 2rem;
  line-height: 1;
  color: #000;
}
.contact_block .text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  margin: 1rem 0 0;
  color: #4a4a4a;
}
.contact_block .tel {
  font-size: 42px;
  font-size: 2.625rem;
  margin: 2.25rem 0 0;
  line-height: 1;
  color: #3b3b3b;
  text-decoration: none;
}
.contact_block .tel a {
  text-decoration: none;
  color: #3b3b3b;
}
.contact_block .info {
  margin: 1.75rem 0 0;
  color: #636363;
}
.contact_block .fax {
  font-size: 30px;
  font-size: 1.875rem;
  margin: 3rem 0 0;
  color: #595959;
}
.contact_block .btn {
  margin: 1.5rem 0 0;
  text-align: center;
}
.contact_block .btn a {
  font-size: 18px;
  font-size: 1.125rem;
  display: inline-block;
  padding: 8px 30px 8px 8px;
  background-color: var(--color_1);
  color: #fff;
  text-decoration: none;
  line-height: 1;
  border-radius: 5rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.contact_block .btn a img {
  width: 42px;
  vertical-align: middle;
  margin-right: 10px;
}
@media only screen and (max-width:980px) {
  .contact_block {
    padding: 50px 50px 30px;
  }
  .contact_block .inner {
    width: 100%;
  }
  .contact_block .title {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .contact_block .text {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .contact_block .tel {
    font-size: 50px;
    font-size: 3.125rem;
  }
  .contact_block .fax {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .contact_block .btn {
    margin-top: 2rem;
  }
}
@media only screen and (max-width:640px) {
  .contact_block {
    padding: 40px 20px 30px;
  }
  .contact_block .inner {
    display: block;
  }
  .contact_block .inner::before {
    width: 100%;
    height: 1px;
    top: calc(50% - 1rem);
    left: 0;
  }
  .contact_block .contact_column + .contact_column {
    margin-top: 3rem;
  }
  .contact_block .title {
    font-size: 26px;
    font-size: 1.625rem;
  }
  .contact_block .text {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 1rem;
  }
  .contact_block .tel {
    font-size: 40px;
    font-size: 2.5rem;
    margin-top: 1rem;
  }
  .contact_block .fax {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.contact_area table {
  border-collapse: collapse;
  width: 100%;
}
.contact_area th, .contact_area td {
  padding: 20px;
  border: 1px solid #dddddd;
  text-align: left;
}
.contact_area th {
  background-color: var(--color_2);
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* FT
/* -------------------------------------------------------------------------*/
.tp_btn {
  font-size: 14px;
  font-size: 0.875rem;
  position: fixed;
  right: 20px;
  bottom: 20px;
}
.tp_btn a {
  display: block;
  text-decoration: none;
  color: #fff;
  background-color: var(--color_1);
  line-height: 1;
  padding: 10px 10px 15px;
  border-radius: 4px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  user-select: none;
}
.tp_btn a::before {
  display: block;
  content: "";
  margin: 0 auto 7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 4px 6px 4px;
  border-color: transparent transparent #FFFFFF transparent;
}
body.scrolled .tp_btn a {
  opacity: 0.8;
  pointer-events: auto;
}
body.scrolled .tp_btn a:hover {
  opacity: 1;
}

#FT .ft_nv {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 20px;
  background: url(../img/ft_line.png) left bottom repeat-x;
}
#FT .ft_nv ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
#FT .ft_nv li {
  flex: auto;
  position: relative;
}
#FT .ft_nv li:last-child::after {
  display: none;
}
#FT .ft_nv li::after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background-color: #dfdfdf;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#FT .ft_nv li a {
  display: block;
  text-decoration: none;
  border: none;
  padding: 5px;
  color: var(--color_text);
}
#FT .ft_nv li a:hover {
  text-decoration: underline;
}
#FT address {
  font-style: normal;
  display: flex;
  margin-top: 40px;
  gap: 40px;
  justify-content: center;
}
#FT address .adrs_block h1 {
  margin: 0;
}
#FT address .adrs_block h1 a {
  display: block;
}
#FT address .adrs_block h1 img {
  width: 240px;
  height: auto;
}
#FT address .adrs_block p {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 1rem 0 0;
  padding-left: 10px;
}
#FT address figure {
  margin: 0;
  padding: 0;
}
#FT address figure img {
  width: 69px;
  height: auto;
}
#FT .copyright {
  display: block;
  color: #fff;
  text-align: center;
  background-color: var(--color_1);
  padding: 20px 10px;
  margin: 40px 0 0;
}
@media only screen and (max-width:980px) {
  #FT .ft_nv {
    text-align: left;
    padding: 20px 15px;
  }
  #FT .ft_nv li {
    flex: none;
  }
  #FT .ft_nv li a {
    padding: 5px 15px;
  }
}
@media only screen and (max-width:640px) {
  #FT .ft_nv {
    padding: 0;
  }
  #FT .ft_nv ul {
    display: block;
    border-top: 1px solid #d4d4d4;
  }
  #FT .ft_nv li {
    border-bottom: 1px solid #d4d4d4;
  }
  #FT .ft_nv li::after {
    display: none;
  }
  #FT .ft_nv li a {
    padding: 15px 10px;
    background-color: #f5f5f5;
  }
  #FT address {
    gap: 20px;
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* PAGE
/* -------------------------------------------------------------------------*/
.pg_title {
  position: relative;
  height: 364px;
  text-align: center;
}
.pg_title h2 {
  font-size: 38px;
  font-size: 2.375rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(27, 58, 56, 0.3);
  color: #fff;
  margin: 0;
  padding: 30px 20px;
  letter-spacing: 10px;
  line-height: 1.3;
}
.pg_title h2.noLS {
  letter-spacing: 0;
}
.pg_title h2.fz_s {
  font-size: 30px;
  font-size: 1.875rem;
}
@media only screen and (max-width:980px) {
  .pg_title {
    height: 300px;
  }
  .pg_title h2 {
    font-size: 33px;
    font-size: 2.0625rem;
    padding: 20px 10px;
  }
  .pg_title h2.fz_s {
    font-size: 27px;
    font-size: 1.6875rem;
  }
}
@media only screen and (max-width:640px) {
  .pg_title {
    height: 200px;
  }
  .pg_title h2 {
    font-size: 28px;
    font-size: 1.75rem;
    padding: 15px 10px;
  }
  .pg_title h2.fz_s {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.pankuzu {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 15px 20px 20px;
}
.pankuzu, .pankuzu a {
  color: #919191;
}
.pankuzu a {
  text-decoration: none;
}
.pankuzu a:hover {
  text-decoration: underline;
}
.pankuzu ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  max-width: 1366px;
}
.pankuzu li {
  margin: 0;
  padding: 0;
}
.pankuzu li + li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 2px 0 2px 4px;
  border-color: transparent transparent transparent #919191;
}

.pg_nv {
  font-size: 20px;
  font-size: 1.25rem;
  padding: 20px;
}
.pg_nv ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  max-width: 1366px;
}
.pg_nv li {
  flex: 1;
  position: relative;
}
.pg_nv li::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #fff;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.pg_nv li:first-child::before {
  display: none;
}
.pg_nv li a {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 30px 10px 35px;
  text-decoration: none;
  color: #fff;
  background-color: #43c094;
}
.pg_nv li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-color: #000;
  opacity: 0.1;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.pg_nv li a::after {
  content: "";
  display: inline-block;
  margin-left: 20px;
  margin-top: 9px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 7.5px 0 7.5px;
  border-color: #FFFFFF transparent transparent transparent;
}
.pg_nv li.nv_link a {
  background-color: #a6b6b3;
  transition: background 0.2s ease;
}
.pg_nv li.nv_link a::after {
  transform: rotate(-90deg);
}
.pg_nv li.nv_link a:hover {
  background-color: #31b7a1;
}
@media only screen and (max-width:980px) {
  .pg_nv {
    padding: 15px;
  }
  .pg_nv li a {
    padding: 20px 10px 25px;
  }
  .pg_nv li a::after {
    margin-left: 10px;
    border-width: 7.5px 5px 0 5px;
  }
}
@media only screen and (max-width:640px) {
  .pg_nv {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 10px;
  }
  .pg_nv ul {
    display: block;
  }
  .pg_nv li {
    display: block;
    margin: 0 0 1px;
  }
  .pg_nv li::before {
    display: none;
  }
  .pg_nv li a {
    display: block;
    padding: 15px 10px;
  }
  .pg_nv li a::before {
    display: none;
  }
}

.cnt_area, .cnt_area_2 {
  padding: 80px 20px;
  line-height: 1.8;
  font-size: 18px;
}
@media only screen and (max-width:980px) {
  .cnt_area, .cnt_area_2 {
    padding: 60px 15px;
    font-size: 17px;
  }
}
@media only screen and (max-width:640px) {
  .cnt_area, .cnt_area_2 {
    padding: 40px 10px;
    font-size: 16px;
  }
}

.cnt_area_2 {
  background-color: #f4f8f9;
}

.cnt_block {
  max-width: 1000px;
  margin: 0 auto;
}
.cnt_block + .cnt_block {
  margin-top: 6rem;
}
.cnt_block > *:first-child {
  margin-top: 0;
}
.cnt_block h3 {
  font-size: 32px;
  font-size: 2rem;
  margin: 3rem 0;
  padding-bottom: 40px;
  line-height: 1.3;
  font-weight: normal;
  color: var(--color_text_2);
  background: url(../img/line_1.png) left bottom repeat-x;
}
.cnt_block h4 {
  font-size: 22px;
  font-size: 1.375rem;
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.cnt_block h4 span {
  padding: 4px 20px 8px;
  display: inline-block;
  font-weight: normal;
  color: #fff;
  background-color: var(--color_3);
  border-radius: 3px;
}
.cnt_block h5 {
  font-size: 22px;
  font-size: 1.375rem;
  margin: 2rem 0 1rem;
  color: var(--color_3);
}
.cnt_block .caption {
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: -1px;
  color: var(--color_3);
}
@media only screen and (max-width:980px) {
  .cnt_block + .cnt_block {
    margin-top: 5rem;
  }
  .cnt_block h3 {
    font-size: 30px;
    font-size: 1.875rem;
    margin: 2.5rem 0;
  }
  .cnt_block h4 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
  }
  .cnt_block h4 span {
    padding: 4px 15px 6px;
  }
  .cnt_block h5 {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 1.5rem 0 1rem;
  }
  .cnt_block .caption {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width:640px) {
  .cnt_block + .cnt_block {
    margin-top: 4rem;
  }
  .cnt_block h3 {
    font-size: 28px;
    font-size: 1.75rem;
    margin: 2rem 0;
  }
  .cnt_block h4 {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 1.5rem 0 1rem;
  }
  .cnt_block h4 span {
    padding: 8px 10px 6px;
  }
  .cnt_block h5 {
    font-size: 17px;
    font-size: 1.0625rem;
    margin: 1rem 0 1rem;
  }
  .cnt_block .caption {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

.cnt_bx_tf {
  display: flex;
  column-gap: 30px;
}
.cnt_bx_tf .cell_text {
  flex: 1;
}
.cnt_bx_tf .cell_fig {
  width: 30%;
}
.cnt_bx_tf .cell_fig figure {
  margin: 0;
  padding: 0;
}
.cnt_bx_tf .cell_fig figure img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.cnt_bx_tf .cell_fig figure figcaption {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 10px;
}
@media only screen and (max-width:980px) {
  .cnt_bx_tf {
    display: block;
  }
  .cnt_bx_tf .cell_fig {
    width: auto;
    text-align: center;
  }
  .cnt_bx_tf .cell_fig figure {
    max-width: 300px;
    margin: 0 auto;
  }
}

/*-- CATEGORY KV --*/
.ctg_kv {
  margin-top: -1.5rem;
}
.ctg_kv img {
  width: auto;
  height: auto;
  max-width: 100%;
}

/* ----- TABLE ----- */
.tbl_1 {
  border-collapse: separate;
  border-spacing: 3px;
}
.tbl_1 th, .tbl_1 td {
  padding: 10px;
}
.tbl_1 th {
  color: #277860;
  background-color: #d1ede5;
  text-align: left;
  font-weight: normal;
}
.tbl_1 td {
  background-color: #fff;
}

.tbl_2 {
  border-collapse: collapse;
  min-width: 60%;
}
.tbl_2 th, .tbl_2 td {
  padding: 5px 10px;
  border: 1px solid #dfdfdf;
}
.tbl_2 th {
  background-color: var(--color_2);
}

/* ----- LIST ----- */
.ul_1, .svc_block ul, .ins_block ul, .ul_2 {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}
.ul_1 li, .svc_block ul li, .ins_block ul li, .ul_2 li {
  position: relative;
  margin: 0;
  padding: 0 0 0 28px;
}
.ul_1 li + li, .svc_block ul li + li, .ins_block ul li + li, .ul_2 li + li {
  margin-top: 0.5rem;
}
.ul_1 li::before, .svc_block ul li::before, .ins_block ul li::before, .ul_2 li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--color_1);
  position: absolute;
  left: 10px;
  top: 15px;
}

.ul_2 li::before {
  background-color: var(--color_3);
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* COMPANY
/* -------------------------------------------------------------------------*/
.cmp_caption {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 3rem;
}
@media only screen and (max-width:980px) {
  .cmp_caption {
    font-size: 22px;
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width:640px) {
  .cmp_caption {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}

.cmp_president figcaption {
  font-size: 18px;
  font-size: 1.125rem !important;
  text-align: right;
  font-weight: bold;
}
.cmp_president figcaption span {
  display: block;
  font-weight: normal;
}

.tbl_company {
  width: 100%;
}
.tbl_company th {
  width: 130px;
}
.tbl_company th, .tbl_company td {
  padding: 15px;
}
@media only screen and (max-width:980px) {
  .tbl_company th, .tbl_company td {
    padding: 10px;
  }
}
@media only screen and (max-width:640px) {
  .tbl_company, .tbl_company tbody, .tbl_company tr, .tbl_company th, .tbl_company td {
    display: block;
    width: 100%;
  }
  .tbl_company tr {
    margin-top: 10px;
  }
  .tbl_company td {
    padding-left: 20px;
  }
}

.cmp_branch + .cmp_branch {
  margin-top: 4rem;
}

.cmp_map iframe {
  width: 100%;
  height: 450px;
}

.fs_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fs_list li {
  margin: 0;
}
.fs_list li + li {
  margin-top: 10px;
}
.fs_list a {
  display: block;
  text-decoration: none;
  padding: 10px;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  color: var(--color_3);
  transition: background 0.2s ease, border 0.2s ease;
}
.fs_list a:hover {
  background-color: #eafdf6;
  border-color: #b9dfd1;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* Insurance
/* -------------------------------------------------------------------------*/
.ins_block {
  margin: 1rem 0;
  padding: 25px;
  background-color: #f0faf6;
  border-radius: 5px;
  border: 1px solid #dceee7;
}
.ins_block > *:first-child {
  margin-top: 0;
}
.ins_block > *:last-child {
  margin-bottom: 0;
}
.ins_block h5 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px dotted var(--color_1);
}
.ins_block h6 {
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
  margin: 1.5rem 0 1rem;
  padding-left: 20px;
  padding-bottom: 5px;
  line-height: 1.5;
  font-weight: bold;
  color: var(--color_3);
}
.ins_block h6::before {
  content: "";
  display: block;
  width: 5px;
  background-color: var(--color_3);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
.ins_block .etc {
  text-align: right;
  margin: 0;
}
@media only screen and (max-width:980px) {
  .ins_block {
    padding: 20px;
  }
}
@media only screen and (max-width:640px) {
  .ins_block {
    padding: 15px;
  }
}

.ins_info {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px dotted #000;
}
.ins_info p {
  margin: 0;
}
.ins_info p + p {
  margin-top: 1rem;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* Services
/* -------------------------------------------------------------------------*/
.svc_block {
  margin: 1rem 0;
  padding: 25px;
  background-color: #f0faf6;
  border-radius: 5px;
  border: 1px solid #dceee7;
}
.svc_block > *:first-child {
  margin-top: 0;
}
.svc_block > *:last-child {
  margin-bottom: 0;
}
.svc_block h5 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px dotted var(--color_1);
}
.svc_block h6 {
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
  margin: 1.5rem 0 1rem;
  padding-left: 20px;
  padding-bottom: 5px;
  line-height: 1.5;
  font-weight: bold;
  color: var(--color_3);
}
.svc_block h6::before {
  content: "";
  display: block;
  width: 5px;
  background-color: var(--color_3);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
.svc_block .etc {
  text-align: right;
  margin: 0;
}
@media only screen and (max-width:980px) {
  .svc_block {
    padding: 20px;
  }
}
@media only screen and (max-width:640px) {
  .svc_block {
    padding: 15px;
  }
}
.svc_block .list_insurance {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  /*         display: flex;
          justify-content: space-between;
          flex-wrap: wrap;*/
}
.svc_block .list_insurance li {
  background-color: #fff;
  border-radius: 8px;
  padding: 10px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #fff;
  font-size: 14px;
}
.svc_block .list_insurance li a {
  color: #333;
  text-align: center;
  text-decoration: none;
}
.svc_block .list_insurance li:hover {
  border: solid 1px #e0e0e0;
}
.svc_block .list_insurance li::before,
.svc_block .list_insurance li a[target=_blank]::after {
  display: none;
}
.svc_block .list_insurance li img {
  max-width: 100%;
  height: auto;
  display: block;
}

.svc_building {
  display: flex;
  column-gap: 30px;
  padding: 20px;
  border: 1px solid #d8d8d8;
  border-left: none;
  border-right: none;
  margin-top: -1px;
}
.svc_building figure {
  margin: 0;
  padding: 0;
}
.svc_building .text {
  font-size: 16px;
  font-size: 1rem;
}
.svc_building .text .title {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0;
  color: var(--color_3);
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* FAQ
/* -------------------------------------------------------------------------*/
.faq_btn {
  margin: 3rem 0 5rem;
}
.faq_btn ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 30px;
}
.faq_btn li {
  flex: 1;
}
.faq_btn li a {
  font-size: 30px;
  font-size: 1.875rem;
  display: block;
  padding: 30px;
  text-decoration: none;
  text-align: center;
  border: 2px solid var(--color_1);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  color: var(--color_3);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.faq_btn li a:hover {
  box-shadow: none;
  background-color: #f3fffb;
}
.faq_btn li a::after {
  display: none;
}
.faq_btn li a p {
  margin: 0;
  font-weight: bold;
}
.faq_btn li a p span {
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
  font-weight: normal;
  color: var(--color_text);
}
.faq_btn li a p span::after {
  content: url(../img/ic_blank.png);
  margin-left: 10px;
}
@media only screen and (max-width:980px) {
  .faq_btn {
    margin: 2.5rem 0 4rem;
  }
  .faq_btn ul {
    column-gap: 20px;
  }
  .faq_btn li a {
    font-size: 28px;
    font-size: 1.75rem;
    padding: 25px;
  }
}
@media only screen and (max-width:640px) {
  .faq_btn {
    margin: 2rem 0 4rem;
  }
  .faq_btn ul {
    column-gap: 10px;
  }
  .faq_btn li a {
    font-size: 26px;
    font-size: 1.625rem;
    padding: 20px;
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* Policy
/* -------------------------------------------------------------------------*/
.bd_box {
  border: 2px solid #e4e3e3;
  padding: 20px;
  margin: 2rem 0;
}
.bd_box > *:first-child {
  margin-top: 0;
}
.bd_box > *:last-child {
  margin-bottom: 0;
}
.bd_box ul {
  margin: 0;
}
@media only screen and (max-width:980px) {
  .bd_box {
    padding: 15px;
  }
}
@media only screen and (max-width:640px) {
  .bd_box {
    padding: 10px;
  }
}

.policy_area > *:first-child {
  margin-top: 0;
}
.policy_area h5 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 4rem;
  padding-bottom: 1rem;
  border-bottom: 1px dotted var(--color_3);
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* SP
/* -------------------------------------------------------------------------*/
.btn_burgur {
  display: none;
  position: relative;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}
.btn_burgur span {
  display: inline-block;
  transition: all 0.2s;
  position: absolute;
  left: 13px;
  height: 2px;
  border-radius: 2px;
  width: 45%;
  background: var(--color_3);
}
.btn_burgur span:nth-of-type(1) {
  top: 15px;
}
.btn_burgur span:nth-of-type(2) {
  top: 23px;
}
.btn_burgur span:nth-of-type(3) {
  top: 31px;
}
body.spMenu_active .btn_burgur span:nth-of-type(1) {
  top: 18px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 45%;
}
body.spMenu_active .btn_burgur span:nth-of-type(2) {
  opacity: 0;
}
body.spMenu_active .btn_burgur span:nth-of-type(3) {
  top: 30px;
  left: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 45%;
}
@media only screen and (max-width:980px) {
  .btn_burgur {
    display: block;
  }
}

.spMenu {
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 110vh;
  padding: 45px 0;
}
.spMenu__inner {
  position: relative;
  padding: 1px 10px;
  height: calc(100vh - 45px);
  overflow-y: auto;
  background-color: #fff;
}
.spMenu .hd_contact {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: right;
}
.spMenu .hd_contact a {
  display: inline-block;
  background-color: #2bb3c5;
  color: #fff;
  text-decoration: none;
  padding: 8px 30px;
  border-radius: 5rem;
}
.spMenu #NV {
  font-size: 18px;
  font-size: 1.125rem;
}
.spMenu #NV > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.spMenu #NV > ul > li {
  margin: 5px 0;
  padding: 1px;
  background-color: rgba(0, 0, 0, 0.5);
}
.spMenu #NV > ul > li > a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 12px 10px;
  border-radius: 3px;
}
.spMenu #NV > ul > li > a img {
  width: 25px;
  height: auto;
  margin-right: 5px;
}
.spMenu #NV ul ul {
  font-size: 16px;
  font-size: 1rem;
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0 10px 10px;
}
.spMenu #NV ul ul li {
  margin: 0;
  padding: 0;
  width: calc(50% - 1px);
}
.spMenu #NV ul ul a {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.spMenu .ft_nv {
  margin-top: 15px;
  padding-bottom: 150px;
}
.spMenu .ft_nv ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.spMenu .ft_nv li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #cacaca;
}
.spMenu .ft_nv a {
  display: block;
  text-decoration: none;
  padding: 20px 15px;
  color: var(--color_text);
}
@media only screen and (max-width:980px) {
  body.spMenu_active .spMenu {
    display: block;
  }
}

@media only screen and (max-width:980px) {
  body.spMenu_active {
    overflow: hidden;
  }
  body.spMenu_active #HD {
    background-color: #fff;
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* HB/ TRAVEL
/* -------------------------------------------------------------------------*/
.hb_linkBnr {
  list-style: none;
  margin: 35px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.hb_linkBnr li a::after {
  display: none;
}
.hb_linkBnr li a img {
  width: auto;
  height: 60px;
}
@media only screen and (max-width:980px) {
  .hb_linkBnr {
    gap: 20px;
  }
}

/* -------------------------------------------------------------------------*/