* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  min-width: 320px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

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

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
}

p {
  line-break: strict;
}

.od-hero {
  position: relative;
  margin-top: -56px;
  padding: 56px 0 24px;
  background: #eef4f9;
}
@media screen and (max-width: 768px) {
  .od-hero {
    margin-top: 0px;
    padding: 40px 0 20px;
  }
}

.od-hero__name {
  color: #013388;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .od-hero__name {
    font-size: 2.2rem;
  }
}

.od-hero__badge {
  position: absolute;
  right: 0;
  top: -23px;
  display: flex;
  align-items: center;
  min-width: 380px;
  min-height: 50px;
  padding: 8px 30px 8px 74px;
  background: #013388;
  clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.od-hero__badge b {
  font-size: 2.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .od-hero__badge {
    top: -12px;
    min-width: 0;
    min-height: 34px;
    padding: 4px 16px 4px 40px;
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
    font-size: 1.2rem;
  }
  .od-hero__badge b {
    font-size: 1.4rem;
  }
}

.od-mains {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.od-mains__item {
  display: block;
}
.od-mains__item img {
  display: block;
  width: 100%;
  height: auto;
}

.od-mains--single {
  grid-template-columns: 1fr;
}
@media screen and (max-width: 768px) {
  .od-mains--single .od-mains__item img {
    aspect-ratio: 7/4;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.od-about {
  padding: 60px 0 80px;
  background: #eef4f9;
}
@media screen and (max-width: 768px) {
  .od-about {
    padding: 40px 0 48px;
  }
}

.od-about__ttl {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .od-about__ttl {
    font-size: 2rem;
  }
}

.od-about__desc {
  margin-top: 26px;
  font-size: 1.6rem;
  line-height: 1.625;
}
@media screen and (max-width: 768px) {
  .od-about__desc {
    margin-top: 18px;
    font-size: 1.4rem;
  }
}

.od-charts {
  display: flex;
  justify-content: center;
  gap: 86px;
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .od-charts {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
  }
}

.od-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.od-chart__pie {
  width: 360px;
  height: 360px;
}
.od-chart__pie svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .od-chart__pie {
    width: 280px;
    height: 280px;
  }
}

.od-chart__caption {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .od-chart__caption {
    font-size: 1.6rem;
  }
}

.split-pie__label {
  font-size: 18px;
  font-weight: 700;
}

.split-pie__value {
  font-family: "Roboto", sans-serif;
  font-size: 60px;
  font-weight: 700;
}

.split-pie__unit {
  font-size: 40px;
}

.split-pie__sub {
  font-size: 20px;
  font-weight: 700;
}

.od-section {
  padding: 70px 0 0;
}
.od-section .ttl_1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .od-section {
    padding: 48px 0 0;
  }
  .od-section .ttl_1 {
    margin-bottom: 28px;
  }
}

.od-lead {
  margin-bottom: 43px;
  font-size: 1.6rem;
  line-height: 1.625;
}
@media screen and (max-width: 768px) {
  .od-lead {
    margin-bottom: 28px;
    font-size: 1.4rem;
  }
}

.od-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .od-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.od-card {
  background: #f6f6f6;
}

.od-card__img {
  display: block;
}
.od-card__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 31/20;
  object-fit: cover;
}

.od-card__body {
  padding: 15px;
}

.od-card__ttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .od-card__ttl {
    font-size: 1.6rem;
  }
}

.od-card__text {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.625;
}
@media screen and (max-width: 768px) {
  .od-card__text {
    font-size: 1.4rem;
  }
}

.od-point {
  display: flex;
  align-items: stretch;
  margin-top: 45px;
  border: 2px solid #5ab6c3;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .od-point {
    flex-direction: column;
    margin-top: 28px;
  }
}

.od-point__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 200px;
  padding: 8px;
  background: #5ab6c3;
}
.od-point__head img {
  width: 188px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .od-point__head {
    flex: none;
  }
  .od-point__head img {
    width: 140px;
  }
}

.od-point__text {
  flex: 1;
  align-self: center;
  padding: 24px 30px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .od-point__text {
    padding: 16px;
    font-size: 1.4rem;
  }
}

.od-access {
  margin-top: 88px;
  padding: 57px 0 106px;
  background: #eef4f9;
}
.od-access .ttl_1 {
  margin-bottom: 62px;
}
@media screen and (max-width: 768px) {
  .od-access {
    margin-top: 56px;
    padding: 40px 0 56px;
  }
  .od-access .ttl_1 {
    margin-bottom: 32px;
  }
}

.od-access__item {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
}
.od-access__item + .od-access__item {
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .od-access__item {
    flex-direction: column;
    gap: 0;
  }
  .od-access__item + .od-access__item {
    margin-top: 28px;
  }
}

.od-access__info {
  flex: 1;
  padding: 30px 0 30px 30px;
}
@media screen and (max-width: 768px) {
  .od-access__info {
    width: 100%;
    padding: 20px 16px;
  }
}

.od-access__name {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .od-access__name {
    font-size: 2rem;
  }
}

.od-access__addr {
  margin-top: 24px;
  font-size: 1.6rem;
  line-height: 1.625;
}
@media screen and (max-width: 768px) {
  .od-access__addr {
    margin-top: 14px;
    font-size: 1.4rem;
  }
}

.od-access__way {
  margin-top: 20px;
}

.od-access__way-ttl {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 5px;
  border-bottom: 2px solid #013388;
  color: #013388;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.55;
}
.od-access__way-ttl img {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .od-access__way-ttl {
    font-size: 1.6rem;
  }
}

.od-access__way-text {
  margin-top: 9px;
  font-size: 1.6rem;
  line-height: 1.625;
}
@media screen and (max-width: 768px) {
  .od-access__way-text {
    font-size: 1.4rem;
  }
}

.od-access__map {
  flex: 0 0 500px;
  align-self: stretch;
}
.od-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}
@media screen and (max-width: 768px) {
  .od-access__map {
    flex: none;
    width: 100%;
  }
  .od-access__map iframe {
    min-height: 280px;
  }
}

.od-back {
  display: flex;
  justify-content: center;
  padding: 80px 15px 100px;
}
@media screen and (max-width: 768px) {
  .od-back {
    padding: 48px 15px 60px;
  }
}/*# sourceMappingURL=page_office_detail.css.map */