@charset "UTF-8";
/* コピペ用 */
/* background: rgba(0,0,0,0.2); */
/* シンプルリンクホバー */
/* @include link-hover-simple; */
/* @include incSmooth(); */
/* @include btm(); */
/* @include top(); */
/* 基準フォントサイズ（PC） */
/* px → rem変換関数 */
/* フォントサイズ用Mixin（汎用）

  font-size のみ
  @include fs(16);
  この場合、line-heightは自動的に適用される
  例）
  @include fs(95);  → font-size: 5.9375rem; line-height: 1.2;
  @include fs(25);  → font-size: 1.5625rem; line-height: 1.4;
  @include fs(16);  → font-size: 1rem;      line-height: 1.8;
  @include fs(12);  → font-size: 0.75rem;   line-height: 2.0;

  手動指定1
  font-size + line-height
  @include fs(16, 1.8);

  手動指定2
  font-size + line-height + letter-spacing
  @include fs(16, 1.8, 0.04em);
*/
/* clamp フォントサイズ用Mixin

  大見出し（vw手動指定）
  .head01Main {
    @include fsc(44, 6.25, 100);
  }
  → font-size: clamp(44px, 6.25vw, 100px);
  SP(375px):    44px  ← min が下限として効く
  PC(1280px):   80px  ← vw が効く
  大画面(1600px): 100px ← max が上限として効く

  vw の値の求め方
  vw = max ÷ デザイン基準幅(px) × 100
  例）PC最大100px、基準幅1600px の場合
  100 ÷ 1600 × 100 = 6.25vw
*/
/* clamp フォントサイズ用Mixin2（vw自動計算）

  大見出し2（min・max を入れると vw を自動計算）
  .head01Main {
    @include fsc2(44, 100);
  }
  → font-size: clamp(44px, 6.25vw, 100px);  ※基準幅1600pxで自動計算

  基準幅を変えたい場合
  @include fsc2(44, 100, 1440);
*/
/* パディング生成（null安全＋レスポンシブ対応）
  .section {
    @include responsive-padding(70px, 40px);
  }
  PC: padding: 70px 40px;
  SP: padding: 52.5px 30px;
*/
/* マージンボトム汎用クラス吐き出し */
/* 幅設定汎用クラス吐き出し */
/*

.sampleClass {

$font-base: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, sans-serif;
$font-min:  "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
$font-en: "EB Garamond", serif;

背景色
background: rgba(0,0,0,0.2);

通常テキスト（SPはhtmlのフォントサイズに追従）
@include fs(16);

大見出し
@include fsc(44, 6.25, 100);

大見出し2（min・max を入れると vw を自動計算）
@include fsc2(44, 100);

マージン（SPは60%）
@include btm();
@include top();

パディング
@include responsive-padding(70px, 40px); 

シンプルホバー
@include link-hover-simple;

フォントスムーズ
@include incSmooth();

}


*/
.company01 {
  margin-bottom: 0;
  padding: 0 40px 140px; }
  .company01 .inr {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 1360px; }
    .company01 .inr .img {
      margin-right: 6%;
      width: 37%; }
    .company01 .inr .data h2 {
      color: #516989;
      font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
      font-feature-settings: "palt" 1;
      font-size: 2rem;
      line-height: 1.4;
      font-size: clamp(20px, 2.2857142857vw, 32px);
      line-height: 1.65;
      margin-bottom: 60px; }
    .company01 .inr .data .ftBtnList {
      display: flex;
      justify-content: space-between;
      max-width: 580px; }
      .company01 .inr .data .ftBtnList li {
        width: 47.5%; }
        .company01 .inr .data .ftBtnList li a {
          background: #0B73CF;
          border: 1px solid #0B73CF;
          border-radius: 6px;
          color: #FFF;
          display: flex;
          justify-content: center;
          align-items: center;
          font-weight: 600;
          min-height: 64px;
          position: relative;
          text-decoration: none;
          transition: 0.2s; }
          .company01 .inr .data .ftBtnList li a:after {
            background: #FFF;
            border-radius: 100%;
            content: '';
            display: inline-block;
            height: 9px;
            width: 9px;
            position: absolute;
            top: calc(50% - 3px);
            right: 16px;
            transition: 0.2s; }
          .company01 .inr .data .ftBtnList li a:hover {
            background-color: #FFF;
            color: #0B73CF; }
            .company01 .inr .data .ftBtnList li a:hover:after {
              background: #0B73CF; }

@media only screen and (max-width: 960px) {
  .company01 {
    padding: 0 5vw 60px; }
    .company01 .inr {
      display: block;
      max-width: 100%; }
      .company01 .inr .img {
        margin: 0 0 24px;
        text-align: center;
        width: 100%; }
        .company01 .inr .img img {
          display: inline-block;
          width: 80%; }
      .company01 .inr .data {
        width: 100%; }
        .company01 .inr .data h2 {
          text-align: center;
          margin-bottom: 40px; }
        .company01 .inr .data .ftBtnList {
          max-width: 100%; }
          .company01 .inr .data .ftBtnList li {
            width: 100%; }
            .company01 .inr .data .ftBtnList li a {
              font-size: 15px;
              padding-right: 12px; }
              .company01 .inr .data .ftBtnList li a:after {
                height: 7px;
                width: 7px;
                top: calc(50% - 2px);
                right: 12px; } }
.company02 {
  padding: 0 40px 40px; }
  .company02 .inr {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 1360px; }
    .company02 .inr ul {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px; }
      .company02 .inr ul li {
        cursor: pointer;
        overflow: hidden; }
        .company02 .inr ul li a {
          display: block;
          transition: 0.2s; }
          .company02 .inr ul li a .img {
            margin-bottom: 12px;
            aspect-ratio: 16 / 9;
            overflow: hidden; }
            .company02 .inr ul li a .img img {
              object-fit: cover;
              object-position: center;
              width: 100%;
              height: 100%; }
          .company02 .inr ul li a h2 {
            border-bottom: 1px solid #B2BCCB;
            font-size: 1.3125rem;
            line-height: 1.8;
            line-height: 1.55;
            font-weight: 500;
            padding: 16px 0;
            position: relative; }
            .company02 .inr ul li a h2:before {
              background: #066DC8;
              content: '';
              display: block;
              height: 1px;
              width: 110px;
              position: absolute;
              bottom: -1px;
              left: 0; }
          .company02 .inr ul li a:hover {
            opacity: 0.8; }

@media only screen and (max-width: 960px) {
  .company02 {
    padding: 0 5vw 20px; }
    .company02 .inr {
      display: block; }
      .company02 .inr ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px; }
        .company02 .inr ul li {
          padding-bottom: 12px; }
          .company02 .inr ul li a .img {
            margin-bottom: 0; }
          .company02 .inr ul li a h2 {
            font-size: 14px;
            line-height: 1.45;
            padding: 12px 0 10px;
            position: relative; }
            .company02 .inr ul li a h2:before {
              background: #066DC8;
              content: '';
              display: block;
              height: 1px;
              width: 110px;
              position: absolute;
              bottom: -1px;
              left: 0; }
          .company02 .inr ul li a:hover {
            opacity: 0.8; } }
.greeting01 {
  margin-bottom: 60px; }

@media only screen and (max-width: 960px) {
  .greeting01 {
    margin-bottom: 40px; } }
.greeting02 p {
  color: #565C63;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 32px; }

@media only screen and (max-width: 960px) {
  .greeting02 p {
    font-size: 16px;
    margin-bottom: 24px; } }
.about00 {
  margin-bottom: 100px; }
  .about00 h3 {
    color: #516989;
    font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
    font-size: 1.875rem;
    line-height: 1.4;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 28px; }

@media only screen and (max-width: 960px) {
  .about00 {
    margin-bottom: 80px; }
    .about00 h3 {
      font-size: 20px;
      margin-bottom: 24px; } }
.about01 .companyInfo {
  display: flex;
  flex-wrap: wrap; }
  .about01 .companyInfo > dt {
    border-bottom: 1px solid #066DC8;
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 500;
    line-height: 1.6;
    padding: 22px 20px 20px;
    width: 22%; }
  .about01 .companyInfo > dd {
    border-bottom: 1px solid #B2BCCB;
    font-size: 0.9375rem;
    line-height: 2;
    padding: 22px 32px 20px;
    width: 78%; }
  .about01 .companyInfo .companyInfoInr {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9375rem;
    line-height: 2; }
    .about01 .companyInfo .companyInfoInr > dt {
      background: #E1E5EF;
      font-weight: 500;
      width: 106px;
      margin-bottom: 6px;
      padding: 2px 20px;
      text-align: center; }
    .about01 .companyInfo .companyInfoInr > dd {
      margin-bottom: 6px;
      padding: 2px 24px;
      width: calc(100% - 106px); }
  .about01 .companyInfo .area {
    padding: 12px 0; }
    .about01 .companyInfo .area dt {
      border-left: 3px solid #0B73CF;
      line-height: 1.6;
      margin-bottom: 4px;
      padding-left: 12px; }
    .about01 .companyInfo .area dd {
      line-height: 1.6;
      padding-top: 8px; }
  .about01 .companyInfo .list01 li {
    font-size: 0.9375rem;
    line-height: 2;
    line-height: 1.65;
    margin-bottom: 2px;
    position: relative;
    padding-left: 1.5em; }
    .about01 .companyInfo .list01 li:before {
      color: #0B73CF;
      content: '●';
      display: inline-block;
      font-size: 0.9375rem;
      line-height: 2;
      line-height: 1.65;
      position: absolute;
      left: 0;
      top: 0; }

@media only screen and (max-width: 960px) {
  .about01 .companyInfo {
    display: block; }
    .about01 .companyInfo > dt {
      border-bottom: none;
      font-size: 1.125rem;
      line-height: 1.8;
      font-weight: 500;
      line-height: 1.6;
      padding: 16px 0 8px;
      width: 100%; }
    .about01 .companyInfo > dd {
      border-bottom: 1px solid #B2BCCB;
      font-size: 0.9375rem;
      line-height: 2;
      padding: 0 0 16px;
      width: 100%;
      position: relative; }
      .about01 .companyInfo > dd:after {
        background: #066DC8;
        content: '';
        display: block;
        height: 1px;
        width: 20%;
        position: absolute;
        bottom: -1px;
        left: 0; }
    .about01 .companyInfo .companyInfoInr {
      padding-top: 16px; }
      .about01 .companyInfo .companyInfoInr > dt {
        width: 25%;
        padding: 2px 12px; }
      .about01 .companyInfo .companyInfoInr > dd {
        padding: 2px 16px;
        width: 75%; }
    .about01 .companyInfo .area {
      padding: 12px 0; }
      .about01 .companyInfo .area dt {
        border-left: 3px solid #0B73CF;
        line-height: 1.6;
        margin-bottom: 4px;
        padding-left: 12px; }
      .about01 .companyInfo .area dd {
        line-height: 1.6;
        padding-top: 8px; }
    .about01 .companyInfo .list01 li {
      font-size: 0.9375rem;
      line-height: 2;
      line-height: 1.65;
      margin-bottom: 2px;
      position: relative;
      padding-left: 1.5em; }
      .about01 .companyInfo .list01 li:before {
        color: #0B73CF;
        content: '●';
        display: inline-block;
        font-size: 0.9375rem;
        line-height: 2;
        line-height: 1.65;
        position: absolute;
        left: 0;
        top: 0; } }
.about02 .historyBox {
  margin-top: 100px; }
  .about02 .historyBox h3 {
    color: #516989;
    font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
    font-size: 2.9375rem;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 20px;
    position: relative; }
  .about02 .historyBox .generationDl {
    display: flex;
    align-items: flex-start;
    padding-top: 40px; }
    .about02 .historyBox .generationDl dt {
      color: #516989;
      font-family: "EB Garamond", serif;
      font-size: 2.5rem;
      line-height: 1.2;
      line-height: 1;
      font-weight: 500;
      position: relative;
      width: 160px; }
      .about02 .historyBox .generationDl dt:after {
        background: #516989;
        content: '';
        display: inline-block;
        height: 1px;
        width: 40px;
        position: absolute;
        top: 50%;
        right: 20px; }
    .about02 .historyBox .generationDl dd {
      font-size: 1.125rem;
      line-height: 1.8;
      line-height: 1.65;
      padding-top: 4px;
      width: calc(100% - 160px); }

@media only screen and (max-width: 960px) {
  .about02 .historyBox {
    margin-top: 60px; }
    .about02 .historyBox h3 {
      font-size: 36px;
      margin: 0; }
    .about02 .historyBox .generationDl {
      display: block;
      align-items: flex-start;
      padding-top: 28px; }
      .about02 .historyBox .generationDl dt {
        color: #516989;
        font-family: "EB Garamond", serif;
        font-size: 2.5rem;
        line-height: 1.2;
        line-height: 1;
        font-weight: 500;
        position: relative;
        width: 160px; }
        .about02 .historyBox .generationDl dt:after {
          background: #516989;
          content: '';
          height: 1px;
          width: 40px;
          position: absolute;
          top: 50%;
          right: 20px; }
      .about02 .historyBox .generationDl dd {
        font-size: 14px;
        padding-top: 12px;
        width: 100%; } }
.officesSec {
  margin-bottom: 60px; }
  .officesSec .officesList {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .officesSec .officesList > li {
      overflow: hidden;
      margin-bottom: 60px;
      width: 47.5%; }
      .officesSec .officesList > li .img {
        margin-bottom: 12px;
        aspect-ratio: 16 / 9;
        overflow: hidden; }
        .officesSec .officesList > li .img img {
          object-fit: cover;
          object-position: center;
          width: 100%;
          height: 100%; }
      .officesSec .officesList > li h2 {
        border-bottom: 1px solid #B2BCCB;
        font-size: 1.3125rem;
        line-height: 1.8;
        line-height: 1.55;
        font-weight: 500;
        padding: 16px 0;
        position: relative; }
        .officesSec .officesList > li h2:before {
          background: #066DC8;
          content: '';
          display: block;
          height: 1px;
          width: 110px;
          position: absolute;
          bottom: -1px;
          left: 0; }
      .officesSec .officesList > li .address {
        font-size: 0.9375rem;
        line-height: 2;
        line-height: 1.65;
        font-weight: 500;
        margin: 20px 0 24px; }

@media only screen and (max-width: 960px) {
  .officesSec .officesList {
    display: block;
    padding: 0 2.5vw; }
    .officesSec .officesList > li {
      margin-bottom: 48px;
      width: 100%; }
      .officesSec .officesList > li:last-child {
        margin-bottom: 0; }
      .officesSec .officesList > li h2 {
        font-size: 18px;
        padding: 12px 0; } }
.group01 .white {
  background: #FFF;
  border-radius: 4px;
  padding: 24px; }
  .group01 .white .address {
    font-size: 0.9375rem;
    line-height: 2;
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 16px; }

@media only screen and (max-width: 960px) {
  .group01 .white {
    margin-top: 24px;
    padding: 20px 5vw; } }
.group02 {
  margin-bottom: 60px; }
  .group02 .officesList {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .group02 .officesList > li {
      overflow: hidden;
      margin-bottom: 60px;
      width: 46%; }
      .group02 .officesList > li .desc {
        line-height: 1.65;
        margin-bottom: 24px; }
      .group02 .officesList > li .white {
        background: #FFF;
        border-radius: 4px;
        margin-top: 20px;
        padding: 24px; }
        .group02 .officesList > li .white .address {
          font-size: 0.9375rem;
          line-height: 2;
          line-height: 1.65;
          font-weight: 500;
          margin-bottom: 16px; }
        .group02 .officesList > li .white a.underline {
          text-decoration: underline; }
          .group02 .officesList > li .white a.underline:hover {
            text-decoration: none; }

@media only screen and (max-width: 960px) {
  .group02 .officesList {
    display: block;
    padding: 0; }
    .group02 .officesList > li {
      margin-bottom: 48px;
      width: 100%; }
      .group02 .officesList > li:last-child {
        margin-bottom: 0; }
      .group02 .officesList > li .white {
        margin-top: 24px;
        padding: 20px 5vw; } }
.permit01 .tekikaku span {
  color: #0B73CF;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-right: 8px; }
.permit01 .tekikaku strong {
  font-size: 1.125rem;
  line-height: 1.8;
  display: inline-block;
  padding-bottom: 4px; }

.permit02 .tableScroll table {
  background: #FFF;
  border-left: 1px solid #B2BCCB;
  border-top: 1px solid #B2BCCB;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%; }
  .permit02 .tableScroll table th, .permit02 .tableScroll table td {
    border-right: 1px solid #B2BCCB;
    border-bottom: 1px solid #B2BCCB;
    font-size: 0.9375rem;
    line-height: 2;
    line-height: 1.25;
    padding: 16px 8px;
    text-align: center; }
    .permit02 .tableScroll table th .permit-icon, .permit02 .tableScroll table td .permit-icon {
      display: block;
      height: 100%;
      width: 100%;
      transition: 0.2s; }
      .permit02 .tableScroll table th .permit-icon:hover, .permit02 .tableScroll table td .permit-icon:hover {
        opacity: 0.7; }
    .permit02 .tableScroll table th img, .permit02 .tableScroll table td img {
      display: inline-block; }
  .permit02 .tableScroll table thead th {
    background: #516989;
    color: #FFF; }
  .permit02 .tableScroll table .size12 {
    font-size: 0.75rem;
    line-height: 2;
    line-height: 1.35; }

@media only screen and (max-width: 960px) {
  .permit02 .tableScroll {
    width: 100%;
    overflow-x: auto; }
    .permit02 .tableScroll table {
      width: 850px; }
      .permit02 .tableScroll table th, .permit02 .tableScroll table td {
        font-size: 13px;
        padding: 12px 4px; }
      .permit02 .tableScroll table .size12 {
        font-size: 10px; } }
.complianceSec .declaration {
  text-align: center; }
  .complianceSec .declaration img {
    display: inline-block;
    width: 90%; }
.complianceSec .whiteBox {
  background: #FFF;
  border-radius: 8px;
  margin-top: 40px;
  padding: 28px; }
  .complianceSec .whiteBox .head04 {
    margin-bottom: 20px; }
  .complianceSec .whiteBox .mapBtn a {
    max-width: 260px; }

.clientsSec .head02 {
  margin-bottom: 28px; }
.clientsSec .select {
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 16px; }
  .clientsSec .select:before {
    content: '●';
    color: #0B73CF;
    font-size: 9px;
    margin-right: 12px;
    vertical-align: 3px; }
.clientsSec .areaSortList {
  background: #FFF;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  padding: 20px; }
  .clientsSec .areaSortList li {
    color: #0B73CF;
    cursor: pointer;
    line-height: 2;
    text-decoration: underline; }
    .clientsSec .areaSortList li:after {
      content: '/';
      display: inline-block;
      margin: 0 8px;
      text-decoration: none; }
    .clientsSec .areaSortList li:last-child:after {
      display: none; }
    .clientsSec .areaSortList li:hover {
      text-decoration: none; }
    .clientsSec .areaSortList li.current {
      color: #1c1d1e;
      font-weight: 600;
      text-decoration: none; }
.clientsSec .areaBox {
  padding-top: 40px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease; }
  .clientsSec .areaBox.is-active {
    opacity: 1;
    transform: translateY(0); }
  .clientsSec .areaBox .list01 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .clientsSec .areaBox .list01 li {
      font-size: 0.875rem;
      line-height: 2;
      line-height: 1.65;
      margin-bottom: 8px;
      position: relative;
      padding-left: 1.5em;
      width: 48%; }
      .clientsSec .areaBox .list01 li:before {
        color: #0B73CF;
        content: '●';
        display: inline-block;
        font-size: 0.9375rem;
        line-height: 2;
        line-height: 1.65;
        position: absolute;
        left: 0;
        top: 0; }
      .clientsSec .areaBox .list01 li a {
        color: #0B73CF;
        text-decoration: underline; }
        .clientsSec .areaBox .list01 li a:hover {
          text-decoration: none; }

@media only screen and (max-width: 960px) {
  .clientsSec .head02 {
    margin-bottom: 20px; }
  .clientsSec .areaSortList {
    display: flex;
    flex-wrap: wrap;
    padding: 16px 5vw; }
    .clientsSec .areaSortList li {
      font-size: 15px; }
      .clientsSec .areaSortList li:after {
        content: '/';
        display: inline-block;
        margin: 0 4px;
        text-decoration: none; }
      .clientsSec .areaSortList li:first-child {
        display: block;
        width: 100%; }
        .clientsSec .areaSortList li:first-child:after {
          display: none; }
  .clientsSec .areaBox {
    padding-top: 28px; }
    .clientsSec .areaBox .list01 {
      display: block;
      padding: 0 0.5em; }
      .clientsSec .areaBox .list01 li {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 10px;
        width: 100%; }
        .clientsSec .areaBox .list01 li:before {
          font-size: 13px;
          line-height: 1.55;
          position: absolute;
          left: 0;
          top: 0; }
        .clientsSec .areaBox .list01 li a {
          color: #0B73CF;
          text-decoration: underline; }
          .clientsSec .areaBox .list01 li a:hover {
            text-decoration: none; } }
.healthSec p.img {
  text-align: center; }
  .healthSec p.img img {
    display: inline-block; }
