@charset "UTF-8";

.breadcrumbsWrap {
  display: block;
  position: relative;
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media screen and (max-width: 980px) {
  .breadcrumbsWrap {
      padding: 0 1em;
      width: 100%;
  }
}

.area {
  line-height: 1.6;
}

@media screen and (min-width: 981px) {
  .area {
      font-size: 1.8rem;
  }
}

@media screen and (min-width: 981px) {
  .container {
      margin: 0 auto;
      width: 90%;
  }
}

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

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

.title {
  position: relative;
  padding-bottom: 10px;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: #002169;
}

@media screen and (min-width: 981px) {
  .title {
    font-size: 4rem;
  }    
}

.title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20%;
  border-bottom: 1px solid #eb7730;
  transform: translateX(-50%);
}

@media screen and (min-width: 981px) {
  .title::after {
      width: 10%;
  }
}

.title small {
  font-size: 1.6rem;
}

@media screen and (min-width: 981px) {
  .title small {
    font-size: 2rem;
  }
}

.subTitle {
    position: relative;
    padding-bottom: 10px;
    font-size: 2rem;
    font-weight: bold;
    color: #002169;
}

@media screen and (min-width: 981px) {
    .subTitle {
        padding-bottom: 30px;
        font-size: 2.6rem;
    }
}

.subTitle.--large {
  width: calc(100% / 3);
  font-size: 2.4rem;
  text-align: center;
}

@media screen and (min-width: 981px) {
  .subTitle.--large {
    display: inline-block;
    margin-left: 40px;
    padding-bottom: 10px;
    width: auto;
    font-size: 3rem;
    text-align: left;
  }
}

.subTitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    border-bottom: 3px solid #eb7730;
}

@media screen and (min-width: 981px) {
    .subTitle::after {
        width: 60px;
    }
}

.subTitle.--large::after {
  left: 50%;
  width: 50px;
  transform: translateX(-50%);
}

@media screen and (min-width: 981px) {
  .subTitle.--large::after {
    left: 0;
    width: 100%;
    transform: none;
  }
}

.introText {
  margin-top: 20px;
}

@media screen and (min-width: 981px) {
  .introText {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
  }
}

.regionList {
  margin: 40px 0;
}

.regionList__item:not(:first-child) {
  margin-top: 20px;
}

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

.prefecturesList__item {
  position: relative;
  width: calc(100% / 3);
  text-align: center;
}

.prefecturesList__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 60%;
  border-right: 2px solid #000;
  transform: translateY(-50%);
}

.prefecturesList__item:last-child::after, .prefecturesList__item:nth-child(3n)::after {
  content: none;
}

.prefecturesList__item a {
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
}

.offices {
  padding: 40px 1em;
}

.offices:nth-child(odd) {
  background-color: #f2f2f2;
}

@media screen and (min-width: 981px) {
  .offices:nth-child(odd) {
    background-color: transparent;
  }
}

@media screen and (min-width: 981px) {
  .offices:nth-child(even) {
    background-color: #f2f2f2;
  }
}

@media screen and (min-width: 981px) {
  .offices {
      padding: 60px;
  }
}

.officesList {
  margin-top: 40px;
}

.officesList__item {
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
}

.officesList__item:not(:first-child) {
  margin-top: 20px;
}

@media screen and (min-width: 981px) {
  .officesList__item:not(:first-child) {
      margin-top: 30px;
  }
}

.officesList__link {
  display: block;
  position: relative;
  padding: 20px 50px 20px 20px;
  text-decoration: none;
}

@media screen and (min-width: 981px) {
  .officesList__link {
      display: flex;
      align-items: flex-start;
      gap: 5%;
      padding: 40px 70px 40px 40px;
  }
}

.officesList__link:hover {
  text-decoration: none;
  color: inherit;
}

.officesList__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: #eb7730;
  border-radius: 15px;
  transform: translateY(-50%);
}

@media screen and (min-width: 981px) {
  .officesList__link::before {
      right: 20px;
  }
}

.officesList__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  border-top: 6px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
  transform: translateY(-50%);
}

@media screen and (min-width: 981px) {
  .officesList__link::after {
      right: 20px;
  }
}

.officesList__title {
  font-size: 1.8rem;
}

@media screen and (min-width: 981px) {
  .officesList__title {
      width: 30%;
      font-size: 2.2rem;
  }
}

.officesList__content {
  margin-top: 20px;
}

@media screen and (min-width: 981px) {
  .officesList__content {
      margin-top: 0;
      width: 65%;
  }
}

.officesList__list {
  margin-top: 10px;
}

@media screen and (min-width: 981px) {
  .officesList__list {
      display: flex;
  }
}

.officesList__term {
  font-weight: bold;
}

@media screen and (min-width: 981px) {
  .officesList__term {
      padding-right: 20px;
      min-width: 110px;
      font-weight: normal;
  }
}

@media screen and (min-width: 981px) {
  .officesList__description {
      position: relative;
      padding-left: 20px;
  }
}

@media screen and (min-width: 981px) {
  .officesList__description::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      border-left: 1px solid #ccc;
  }
}

.c-content-block--map {
  padding-top: 42px;
  padding-bottom: 44px;
  background-color: #f2f2f2;
}
    @media print, screen and (min-width: 61.25em) {
      .c-content-block--map {
        display: block;
        padding-top: 70px;
        padding-bottom: 46px; } }
  
        .p-area {
          display: none; }
          @media print, screen and (min-width: 61.25em) {
            .p-area {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -ms-flex-wrap: wrap;
                  flex-wrap: wrap;
              -webkit-box-align: start;
                  -ms-flex-align: start;
                      align-items: flex-start;
              -webkit-box-pack: justify;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
              width: 784px;
              margin-right: auto;
              margin-left: auto; } }
          .p-area a {
            background-color: #fff;
            color: #012169;
            font-weight: bold;
            -webkit-font-feature-settings: "palt" 1;
                    font-feature-settings: "palt" 1;
            -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
                    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15); }
            @media only screen and (max-width: 47.9375em) {
              .p-area a {
                font-family: "YakuHanJP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo"; } }
            @media print, screen and (min-width: 48em) {
              .p-area a {
                font-family: "YakuHanJP", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo"; } }
            .p-area a:hover {
              color: #38499f;
              -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
                      box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3); }
        
        /* 1×1マス */
        .p-area__1 {
          margin-left: 4px;
          margin-top: 4px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          background-color: #ccc;
          color: #999999;
          font-size: 14px;
          font-size: 0.875rem;
          width: 60px;
          min-height: 40px; }
        
        /* 2×1マス */
        .p-area__2 {
          margin-left: 4px;
          margin-top: 4px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          background-color: #ccc;
          color: #999999;
          font-size: 14px;
          font-size: 0.875rem;
          width: 124px;
          min-height: 40px; }
        
        /* 1×2マス */
        .p-area__3 {
          margin-left: 4px;
          margin-top: 4px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          background-color: #ccc;
          color: #999999;
          font-size: 14px;
          font-size: 0.875rem;
          width: 60px;
          min-height: 84px; }
        
        /* 0.66×2マス */
        .p-area__4, .p-area__okinawa {
          margin-left: 4px;
          margin-top: 4px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          background-color: #ccc;
          color: #999999;
          font-size: 14px;
          font-size: 0.875rem;
          width: calc(33.3% - 4px);
          min-height: 84px; }
        
        .p-area__okinawa {
          position: relative;
          margin-right: auto;
          margin-bottom: 88px;
          margin-left: 4px; }
          .p-area__okinawa:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            display: block;
            -webkit-box-sizing: border-box;
                    box-sizing: border-box;
            width: 80px;
            height: 125px;
            border-right: 1px solid #dedede;
            border-bottom: 1px solid #dedede; }
        
        /* スペーサー */
        .p-area__space {
          margin-left: 4px;
          margin-top: 4px;
          width: 60px;
          height: 40px; }
        
        .p-area__br {
          width: 100%;
          height: 0; }
        
        .p-area__hokkaido {
          margin-left: 4px;
          margin-top: 4px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          background-color: #ccc;
          color: #999999;
          font-size: 14px;
          font-size: 0.875rem;
          width: 124px;
          height: 84px;
          margin-right: 0;
          margin-left: auto; }
        
        .p-area__group1 {
          width: 640px;
          margin-top: calc(20px - 4px);
          margin-right: 0;
          margin-left: 16px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: end;
              -ms-flex-pack: end;
                  justify-content: flex-end;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
        
        .p-area__group2 {
          width: 128px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: end;
              -ms-flex-pack: end;
                  justify-content: flex-end;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          margin-top: calc(20px - 4px); }
        
        .p-area__row1 {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          width: 128px; }
        
        .p-area__row2 {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          width: 384px; }
        
        @media only screen and (max-width: 47.9375em) {
          .p-area-list > li + li {
            margin-top: 20px; } }
        
        @media print, screen and (min-width: 48em) {
          .p-area-list > li + li {
            margin-top: 40px; } }
        
        .p-area-list__address {
          line-height: 1.56;
          color: #333; }
          @media only screen and (max-width: 47.9375em) {
            .p-area-list__address {
              font-size: 14px;
              font-size: 0.875rem; } }
          @media print, screen and (min-width: 48em) {
            .p-area-list__address {
              font-size: 18px;
              font-size: 1.125rem; } }
        
        .p-area-list__number {
          line-height: 1.56;
          color: #333; }
          @media only screen and (max-width: 47.9375em) {
            .p-area-list__number {
              margin-top: 8px;
              font-size: 14px;
              font-size: 0.875rem; } }
          @media print, screen and (min-width: 48em) {
            .p-area-list__number {
              font-size: 18px;
              font-size: 1.125rem; } }
        
        .p-area-list__area {
          margin-top: 7px;
          color: #333; }
          @media print, screen and (min-width: 48em) {
            .p-area-list__area {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex; } }
          .p-area-list__area > dt {
            white-space: nowrap;
            line-height: 1.75; }
            @media only screen and (max-width: 47.9375em) {
              .p-area-list__area > dt {
                font-weight: bold;
                font-size: 14px;
                font-size: 0.875rem; } }
          .p-area-list__area > dd {
            position: relative;
            line-height: 1.75; }
            @media only screen and (max-width: 47.9375em) {
              .p-area-list__area > dd {
                font-size: 14px;
                font-size: 0.875rem; } }
            @media print, screen and (min-width: 48em) {
              .p-area-list__area > dd {
                margin-left: 20px;
                padding-left: 21px; } }
            @media print, screen and (min-width: 48em) {
              .p-area-list__area > dd:before {
                content: '';
                position: absolute;
                top: 0.4em;
                bottom: 0.35em;
                left: 0;
                width: 1px;
                background-color: #dedede; } }
        
        .p-area-list__more {
          padding-top: 20px;
          border-bottom: 1px solid #dedede; }
        
        @media print, screen and (min-width: 48em) {
          .p-area-info {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex; } }
        
        @media print, screen and (min-width: 48em) {
          .p-area-info__content {
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1; } }
        
        @media only screen and (max-width: 47.9375em) {
          .p-area-info__thumb {
            margin-top: 20px; } }
        
        @media print, screen and (min-width: 48em) {
          .p-area-info__thumb {
            width: 240px;
            margin-left: 40px; } }
        
        .p-area-info__thumb > img {
          display: block;
          max-width: 100%;
          height: auto; }
        
        .p-area-info__item + .p-area-info__item {
          margin-top: 20px; }
