@charset "UTF-8";
/* reset.scss - 2025年最新版の軽量モダンリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #000;
  background-color: #fff;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

hr {
  border: none;
  height: 1px;
  background-color: #ccc;
}

:focus-visible {
  outline: 2px solid #2684ff;
  outline-offset: 2px;
}

/*
 変数定義用のファイルです 
 自由に書き換えてください
*/
/*========= Media Size ===============*/
/*========= Font ===============*/
/*========= Color ===============*/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  background-color: #001236;
  color: #f2f6ff;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 1.4rem;
  }
}

main {
  position: relative;
  padding-bottom: 120px;
  overflow: hidden;
}

.c-main-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

p {
  line-height: 2;
}

a {
  cursor: pointer;
}

.pc {
  display: block !important;
}
@media (max-width: 800px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media (max-width: 800px) {
  .sp {
    display: block !important;
  }
}

/* ページネーション　*/
.wp-pagenavi {
  display: flex;
  gap: 10px;
  width: fit-content;
  margin: 100px auto 0 auto;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi span,
.wp-pagenavi a {
  border: unset !important;
}
.wp-pagenavi .page {
  opacity: 0.5;
}
.wp-pagenavi .current {
  opacity: 1;
}

/*========= トップページ(front)用のCSS ===============*/
.p-front__fv {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 800px) {
  .p-front__fv {
    height: auto;
  }
}
.p-front__fv__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 800px) {
  .p-front__fv__video {
    aspect-ratio: 1/1;
  }
}
.p-front__fv__content {
  position: absolute;
  left: 10%;
  bottom: 30%;
}
@media screen and (max-width: 800px) {
  .p-front__fv__content {
    position: relative;
  }
}
.p-front__fv__catchcopy {
  margin-bottom: 65px;
  font-size: 4.3rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 800px) {
  .p-front__fv__catchcopy {
    margin-top: 60px;
    margin-bottom: 15px;
    font-size: 2.9rem;
  }
}
.p-front__fv__catchcopy span {
  color: #94c927;
}
.p-front__fv__text {
  font-weight: bold;
}
.p-front__about {
  padding: 120px 0;
}
.p-front__about h2 {
  font-size: 2.6rem;
}
.p-front__about__content {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 800px) {
  .p-front__about__content {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
}
.p-front__about__content p {
  flex: 1;
}
.p-front__about__content div {
  width: 190px;
}
.p-front__about__content__philosophy {
  width: 100%;
  margin-bottom: 28px;
}
.p-front__about__content__logo {
  width: 87%;
  margin: 0 auto;
}
.p-front__news {
  padding: 0 0 120px 0;
}
.p-front__news__content {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .p-front__news__content {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
}
.p-front__news__content__title {
  width: fit-content;
}
.p-front__news__list {
  flex: 1;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-front__news__item {
  position: relative;
  display: flex;
  gap: 20px;
}
.p-front__news__item:after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: #94c927;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.p-front__news__item__content {
  position: relative;
  flex: 1;
  transition: top 0.3s ease;
  top: 0;
}
.p-front__news__item__date {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.p-front__news__item__title {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 800px) {
  .p-front__news__item__title {
    font-size: 1.4rem;
  }
}
.p-front__news__item__image {
  position: relative;
  width: 80px;
  aspect-ratio: 1/1;
  transition: top 0.3s ease;
  top: 0;
}
.p-front__news__item__image__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
.p-front__news__item__image__overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-front__news__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-front__news__item:hover:after {
  width: 100%;
  opacity: 1;
}
@media screen and (max-width: 800px) {
  .p-front__news__item:hover:after {
    width: 0%;
  }
}
.p-front__news__item:hover .p-front__news__item__content {
  top: -8px;
}
@media screen and (max-width: 800px) {
  .p-front__news__item:hover .p-front__news__item__content {
    top: 0;
  }
}
.p-front__news__item:hover .p-front__news__item__image {
  top: -8px;
}
@media screen and (max-width: 800px) {
  .p-front__news__item:hover .p-front__news__item__image {
    top: 0;
  }
}
.p-front__news__item:hover .p-front__news__item__image__overlay {
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .p-front__news__item:hover .p-front__news__item__image__overlay {
    opacity: 1;
  }
}
.p-front__service {
  position: relative;
  padding: 120px 0;
}
.p-front__service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/front/service_bg.jpg) no-repeat center center;
  background-size: cover;
  opacity: 0.48;
  z-index: -1;
  transition: opacity 0.7s ease;
}
.p-front__service__content {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .p-front__service__content {
    flex-direction: column;
    gap: 40px;
  }
}
.p-front__service.is-active::before {
  opacity: 0.17;
}
.p-front__service__right {
  flex: 1;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 800px) {
  .p-front__service__right {
    gap: 20px;
  }
}
.p-front__service__right h3 {
  padding-left: 20px;
  font-size: 2.6rem;
  border-left: 1px solid #f2f6ff;
}
@media screen and (max-width: 800px) {
  .p-front__service__right h3 {
    font-size: 2rem;
    padding-left: 10px;
  }
}
.p-front__attorneys {
  padding: 120px 0;
  /* スライドの動き等速 */
}
@media screen and (max-width: 800px) {
  .p-front__attorneys {
    padding: 120px 0 70px 0;
  }
}
.p-front__attorneys__title {
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .p-front__attorneys__title {
    margin: 0;
  }
  .p-front__attorneys__title .c-title {
    text-align: left;
  }
}
.p-front__attorneys .swiper-wrapper {
  transition-timing-function: linear;
}
.p-front__attorneys .swiper-slide {
  height: initial;
}
.p-front__attorneys__list {
  padding: 0 5%;
  margin-top: 77px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0%);
}
@media screen and (max-width: 800px) {
  .p-front__attorneys__list {
    margin-top: 30px;
  }
}
.p-front__attorneys__list__inner {
  width: fit-content;
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  white-space: nowrap;
}
.p-front__attorneys__item {
  position: relative;
  display: block;
  height: 100%;
}
.p-front__attorneys__item__name--en {
  position: absolute;
  width: 100%;
  top: 63%;
  right: 0px;
  transform: rotate(90deg);
  transform-origin: right top;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(242, 246, 255, 0.5);
}
@media screen and (max-width: 800px) {
  .p-front__attorneys__item__name--en {
    top: 67%;
  }
}
.p-front__attorneys__item__image {
  position: relative;
  width: 90%;
  aspect-ratio: 270/320;
}
.p-front__attorneys__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-front__attorneys__item__image__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-front__attorneys__item__image__overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 136, 187, 0.44);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-front__attorneys__item__content {
  width: 90%;
  padding: 20px;
  transition: background-color 0.3s ease;
}
.p-front__attorneys__item__name {
  margin-bottom: 40px;
  text-align: center;
}
.p-front__attorneys__item__catchcopy {
  font-size: 2.6rem;
  line-height: 1.4;
  color: rgba(242, 246, 255, 0.5);
}
@media screen and (max-width: 800px) {
  .p-front__attorneys__item__catchcopy {
    font-size: 2rem;
  }
}
.p-front__attorneys__item:hover .p-front__attorneys__item__content {
  background-color: #94c927;
}
@media screen and (max-width: 800px) {
  .p-front__attorneys__item:hover .p-front__attorneys__item__content {
    background-color: transparent;
  }
}
.p-front__attorneys__item:hover .p-front__attorneys__item__image__overlay::before {
  opacity: 1;
}
@media screen and (max-width: 800px) {
  .p-front__attorneys__item:hover .p-front__attorneys__item__image__overlay::before {
    opacity: 0;
  }
}
@media screen and (max-width: 800px) {
  .p-front__access .c-title {
    margin: 0 !important;
    text-align: left;
  }
}
.p-front__access__map {
  width: 100%;
  aspect-ratio: 998/445;
  margin: 40px 0;
}
@media screen and (max-width: 800px) {
  .p-front__access__map {
    aspect-ratio: 3/4;
  }
}
.p-front__access__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-front__access__address {
  margin-top: 14px;
  line-height: 1.4;
}

/*========= 所属弁護士用のCSS ===============*/
.p-archive-attorneys {
  padding: 150px 0 200px 0;
}
.p-archive-attorneys__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 195px);
  gap: 60px 40px;
  justify-content: center;
}
.p-archive-attorneys__item {
  position: relative;
  width: 195px;
}
.p-archive-attorneys__item__image {
  width: 100%;
  aspect-ratio: 195/232;
  position: relative;
  overflow: hidden;
}
.p-archive-attorneys__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.p-archive-attorneys__item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(121, 165, 31, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.p-archive-attorneys__item__catchcopy {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #f2f6ff;
  text-align: center;
}
.p-archive-attorneys__item__view {
  font-size: 1.2rem;
  color: #f2f6ff;
  padding: 6px 16px;
  border: 1px solid #f2f6ff;
}
.p-archive-attorneys__item__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
}
.p-archive-attorneys__item__name {
  color: #f2f6ff;
}
.p-archive-attorneys__item__name--en {
  font-size: 1.1rem;
  color: rgba(242, 246, 255, 0.5);
}
.p-archive-attorneys__item:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 800px) {
  .p-archive-attorneys__item:hover img {
    transform: scale(1);
  }
}
.p-archive-attorneys__item:hover .p-archive-attorneys__item__overlay {
  opacity: 1;
}
@media screen and (max-width: 800px) {
  .p-archive-attorneys__item:hover .p-archive-attorneys__item__overlay {
    opacity: 0;
  }
}

.p-single-attorneys {
  padding-top: 100px;
  padding-bottom: 200px;
}
.p-single-attorneys section {
  padding: 50px 0;
}
@media screen and (max-width: 800px) {
  .p-single-attorneys section {
    padding: 30px 0;
  }
}
.p-single-attorneys .p-single-attorneys__profile__history,
.p-single-attorneys .p-single-attorneys__profile__position,
.p-single-attorneys .p-single-attorneys__profile__specialties,
.p-single-attorneys .p-single-attorneys__profile__publications {
  width: 90%;
  margin: 0 auto;
}
.p-single-attorneys__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 70px 0 140px 0;
}
.p-single-attorneys__header .is-hidden {
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .p-single-attorneys__header {
    width: 90vw;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
    margin: 20px 0 70px 0;
  }
}
.p-single-attorneys__profile {
  margin-bottom: 120px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .p-single-attorneys__profile {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.p-single-attorneys__profile__image {
  width: 100%;
  max-width: 240px;
}
@media screen and (max-width: 800px) {
  .p-single-attorneys__profile__image {
    margin: 0 auto;
  }
}
.p-single-attorneys__profile__image__preview {
  width: 100%;
  aspect-ratio: 244/290;
  margin-bottom: 20px;
}
.p-single-attorneys__profile__image__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-single-attorneys__profile__image__gallery {
  display: flex;
  gap: 13px;
}
.p-single-attorneys__profile__image__gallery__item {
  width: calc(33.3333333333% - 13px);
  aspect-ratio: 1/1;
  cursor: pointer;
  position: relative;
}
.p-single-attorneys__profile__image__gallery__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.p-single-attorneys__profile__image__gallery__item.is-active::after {
  border-color: #f2f6ff;
}
.p-single-attorneys__profile__image__gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-single-attorneys__profile__content {
  flex: 1;
  padding-top: 15px;
}
.p-single-attorneys__profile__name {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 2.3rem;
}
.p-single-attorneys__profile__name span {
  font-size: 1.4rem;
  color: rgba(242, 246, 255, 0.5);
}
.p-single-attorneys__profile__catchcopy {
  font-size: 2.3rem;
  margin-top: 5px;
  margin-bottom: 25px;
  color: rgba(242, 246, 255, 0.5);
}
@media screen and (max-width: 800px) {
  .p-single-attorneys__profile__catchcopy {
    font-size: 2rem;
    line-height: 1.6;
  }
}
.p-single-attorneys__profile__history {
  margin-top: 40px;
}
.p-single-attorneys__profile__history__item {
  display: flex;
  gap: 40px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(242, 246, 255, 0.3);
}
.p-single-attorneys__profile__history__item:last-child {
  border: none;
}
@media screen and (max-width: 800px) {
  .p-single-attorneys__profile__history__item {
    gap: 20px;
  }
}
.p-single-attorneys__profile__history__date {
  width: 100px;
  flex-shrink: 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 800px) {
  .p-single-attorneys__profile__history__date {
    font-size: 1.4rem;
    width: 60px;
  }
}
.p-single-attorneys__profile__history__content {
  flex: 1;
  font-size: 1.6rem;
}
@media screen and (max-width: 800px) {
  .p-single-attorneys__profile__history__content {
    font-size: 1.4rem;
  }
}

.p-about {
  padding-top: 80px;
}
.p-about__fv {
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 800px) {
  .p-about__fv {
    padding: 20px 0;
  }
}
.p-about__fv .c-title--blue-bg {
  width: fit-content;
  padding: 20px 40px;
  margin-left: -20px;
}
@media screen and (max-width: 800px) {
  .p-about__fv .c-title--blue-bg {
    font-size: 1.8rem;
    padding: 20px 20px;
    margin-bottom: 0;
  }
}
.p-about__fv img {
  position: absolute;
  top: 11%;
  left: 350px;
  width: 570px;
  z-index: -1;
}
@media screen and (max-width: 800px) {
  .p-about__fv img {
    position: relative;
    left: 0;
    top: -20px;
  }
}
.p-about__policy-detail {
  max-width: 570px;
  height: 240px;
  margin: 30px auto 90px auto;
  overflow-y: scroll;
}
.p-about__policy-detail::-webkit-scrollbar {
  width: 15px;
}
.p-about__policy-detail::-webkit-scrollbar-track {
  background: rgba(0, 136, 187, 0.3294117647);
}
.p-about__policy-detail::-webkit-scrollbar-thumb {
  background-image: url("../images/common/scrollbar.png");
  background-size: contain;
}
.p-about__office-image {
  margin-top: 20px;
  margin-bottom: 40px;
  /* スライドの動き等速 */
}
.p-about__office-image .swiper-wrapper {
  transition-timing-function: linear;
}
.p-about__office-overview {
  max-width: 630px;
  margin: 0 auto;
}
.p-about__office-overview th,
.p-about__office-overview td {
  padding: 20px;
  text-align: left;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
}
.p-about__office-overview th {
  padding: 0;
  width: 150px;
}
@media screen and (max-width: 800px) {
  .p-about__office-overview th {
    width: 80px;
  }
}
.p-about__office-overview tr:last-child th,
.p-about__office-overview tr:last-child td {
  border-bottom: none;
}
.p-about__office-history {
  max-width: 630px;
  margin: 30px auto 120px auto;
  padding: 40px 70px 40px 70px;
  background-color: rgba(205, 217, 242, 0.1882352941);
  border: solid 1px rgba(112, 112, 112, 0.1882352941);
}
@media screen and (max-width: 800px) {
  .p-about__office-history {
    padding: 30px 40px;
    width: 100vw;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
  }
}
.p-about__office-history th,
.p-about__office-history td {
  padding-bottom: 10px;
  vertical-align: text-top;
}
@media screen and (max-width: 800px) {
  .p-about__office-history th,
  .p-about__office-history td {
    padding-bottom: 18px;
  }
}
.p-about iframe {
  width: 100%;
  display: block;
  margin: 50px auto 100px auto;
}

/*========= プライバシーポリシーページ用のCSS ===============*/
.p-privacy h1 {
  margin: 150px auto 100px;
  text-align: center;
  font-size: 2.6rem;
}
.p-privacy p {
  margin-bottom: 30px;
  margin-left: -2rem;
}
.p-privacy ol {
  list-style: decimal;
}
.p-privacy__privacy-policy {
  margin-top: 82px;
  margin-bottom: 200px;
  line-height: 2;
}
.p-privacy__privacy-policy__category {
  padding-left: 1rem;
  counter-reset: num;
}
.p-privacy__privacy-policy__category > li {
  margin-bottom: 30px;
  padding-left: 2rem;
  counter-increment: num;
}
@media screen and (max-width: 800px) {
  .p-privacy__privacy-policy__category > li {
    padding-left: 0rem;
  }
}
.p-privacy__privacy-policy__sub-category {
  padding-left: 6rem;
}
@media screen and (max-width: 800px) {
  .p-privacy__privacy-policy__sub-category {
    padding-left: 2rem;
  }
}
.p-privacy__privacy-policy__sub-category li {
  margin-bottom: 2.8rem;
  counter-increment: cnt;
}

.p-service {
  padding-top: 80px;
}
.p-service__fv {
  margin: 80px 0;
  background-color: rgba(205, 217, 242, 0.18);
  padding: 60px;
}
@media screen and (max-width: 800px) {
  .p-service__fv {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 40px;
    margin-top: 40px;
  }
}
.p-service__fv h2 {
  margin-bottom: 60px;
  font-size: 2.6rem;
}
@media screen and (max-width: 800px) {
  .p-service__fv h2 {
    font-size: 2rem;
    margin-bottom: 37px;
  }
}
.p-service__practice-areas {
  padding: 120px 0;
}
.p-service__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  width: 97%;
  margin: 50px auto;
  font-size: 1.5rem;
}
@media screen and (max-width: 800px) {
  .p-service__tabs {
    width: 92vw;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
  }
  .p-service__tabs:after {
    content: "";
    width: calc(50% - 10px);
    display: block;
  }
}
.p-service__tabs a {
  width: 222px;
  padding: 13px 0px;
  text-align: center;
  border: 1px solid rgba(242, 246, 255, 0.5);
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .p-service__tabs a {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 73px;
  }
}
.p-service__tabs a:hover {
  background-color: #79a51f;
  border-color: transparent;
}
@media screen and (max-width: 800px) {
  .p-service__tabs a:hover {
    background-color: transparent;
    border-color: rgba(242, 246, 255, 0.5);
  }
}
@media (max-width: 468px) {
  .p-service__tabs {
    justify-content: center;
  }
}
.p-service__item {
  padding: 40px 0;
}
.p-service__item h4 {
  margin-bottom: 25px;
  font-size: 2.6rem;
}
@media screen and (max-width: 800px) {
  .p-service__item h4 {
    font-size: 1.8rem;
  }
}
.p-service__item__contents {
  display: flex;
  align-items: flex-start;
  margin-top: 15px;
  gap: 24px;
}
@media screen and (max-width: 800px) {
  .p-service__item__contents {
    flex-direction: column;
    gap: 10px;
  }
}
.p-service__item__contents img {
  width: 38%;
  margin-top: 9px;
}
@media screen and (max-width: 800px) {
  .p-service__item__contents img {
    width: 100%;
  }
}
.p-service__item__contents__text {
  flex: 1;
}

/*========= お知らせのCSS ===============*/
.p-category {
  padding-top: 170px;
}
@media screen and (max-width: 800px) {
  .p-category {
    padding-top: 120px;
  }
}
.p-category__tabs {
  width: 100%;
  margin-bottom: 90px;
  padding-bottom: 20px;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 800px) {
  .p-category__tabs {
    gap: 0;
    justify-content: space-around;
  }
}
.p-category__tab-btn {
  opacity: 0.23;
  display: inline-block;
  width: 140px;
  padding: 8px 14px;
  font-size: 2.6rem;
  transition: opacity 0.5s ease;
}
@media screen and (max-width: 800px) {
  .p-category__tab-btn {
    width: fit-content;
    font-size: 1.6rem;
  }
}
.p-category__tab-btn span {
  display: block;
  font-weight: bold;
  font-size: 1.4rem;
  color: rgba(242, 246, 255, 0.5);
}
.p-category__tab-btn.is-active {
  opacity: 1;
}
.p-category__post-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.p-category__post-item {
  width: 100%;
  display: flex;
  gap: 3%;
}
@media screen and (max-width: 800px) {
  .p-category__post-item {
    gap: 20px;
    align-items: flex-start;
  }
}
.p-category__post-item__thumb {
  position: relative;
  width: 40%;
  aspect-ratio: 258/153;
}
@media screen and (max-width: 800px) {
  .p-category__post-item__thumb {
    width: 30%;
    aspect-ratio: 1/1;
  }
}
.p-category__post-item__thumb__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
.p-category__post-item__thumb__overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-category__post-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-category__post-item__content {
  flex: 1;
}
.p-category__post-item__date {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: block;
}
@media screen and (max-width: 800px) {
  .p-category__post-item__date {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
}
.p-category__post-item__title {
  display: block;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(242, 246, 255, 0.3);
  font-size: 1.8rem;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 800px) {
  .p-category__post-item__title {
    font-size: 1.4rem;
    -webkit-line-clamp: 2;
    margin-bottom: 8px;
  }
}
.p-category__post-item__excerpt {
  font-size: 1.4rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 800px) {
  .p-category__post-item__excerpt {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
.p-category__post-item:hover .p-category__post-item__thumb__overlay {
  opacity: 0;
}

/*========= お知らせのCSS ===============*/
.p-single-news {
  padding-top: 100px;
}
.p-single-news article {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .p-single-news article {
    width: 100%;
  }
}
.p-single-news__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .p-single-news__footer {
    justify-content: center;
    gap: 82px;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 800px) {
  .p-single-news__footer .c-more-btn--back {
    transform-origin: left !important;
  }
}
.p-single-news__footer .c-more-btn--back p {
  transform: rotate(180deg) translateX(85px);
}

.c-breadcrumbs {
  margin-bottom: 40px;
}
.c-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.c-breadcrumbs__list__item a {
  font-size: 1.4rem;
}
.c-breadcrumbs__list__item span {
  font-size: 1.4rem;
}
.c-breadcrumbs__list__home {
  width: 16px;
}

.c-more-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 80px;
}
.c-more-btn p {
  font-size: 1.4rem;
}
.c-more-btn__arrow {
  position: relative;
  display: flex;
  align-items: center;
}
.c-more-btn__arrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #f2f6ff;
}
.c-more-btn__arrow__line {
  position: absolute;
  left: 8px;
  width: 35px;
  height: 1px;
  background-color: #f2f6ff;
  transition: width 0.3s ease;
}
.c-more-btn__arrow__line::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 1px;
  background-color: #f2f6ff;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
.c-more-btn__arrow__line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 1px;
  background-color: #f2f6ff;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: right center;
}
.c-more-btn:hover .c-more-btn__arrow__line {
  width: 70px;
}
@media screen and (max-width: 800px) {
  .c-more-btn:hover .c-more-btn__arrow__line {
    width: 35px;
  }
}
.c-more-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.c-more-btn--back {
  transform: rotate(180deg);
}

.c-title {
  font-size: 2.6rem;
  text-align: left;
}
@media screen and (max-width: 800px) {
  .c-title {
    font-size: 2rem;
  }
}
.c-title span {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  opacity: 0.5;
}
.c-title--center {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

.c-title--blue-bg {
  position: relative;
  display: flex;
  gap: 40px;
  align-items: center;
  font-size: 2.6rem;
  padding: 16px 20px;
  font-weight: 400;
  margin-bottom: 40px;
  background-color: #0088bb;
}
@media screen and (max-width: 800px) {
  .c-title--blue-bg {
    flex-direction: column-reverse;
    font-size: 2rem;
    margin-bottom: 26px;
    gap: 5px;
    align-items: flex-start;
  }
}
.c-title--blue-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #94c927;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.c-title--blue-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 15px 15px;
  border-color: transparent transparent #94c927 transparent;
}
.c-title--blue-bg span {
  font-weight: bold;
  font-size: 1.4rem;
  color: rgba(242, 246, 255, 0.5019607843);
}
@media screen and (max-width: 800px) {
  .c-title--blue-bg span {
    font-size: 1.2rem;
  }
}

.c-front-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #001236;
  z-index: 999;
}

.c-front-loading__logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 256px;
  height: 150px;
  z-index: 1000;
}
@media screen and (max-width: 800px) {
  .c-front-loading__logo {
    transform: translate(-50%, -50%) scale(0.6);
  }
}
.c-front-loading__logo__o {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 1.2s ease;
}
.c-front-loading__logo__o.is-active {
  left: 0;
  transform: unset;
}
.c-front-loading__logo__w {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 1.2s ease;
}
.c-front-loading__logo__w.is-active {
  opacity: 1;
  left: 25%;
  transform: unset;
}
.c-front-loading__logo__l {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 1.2s ease;
}
.c-front-loading__logo__l.is-active {
  opacity: 1;
  left: auto;
  transform: translateX(50%);
  right: 31%;
}
.c-front-loading__logo__o2 {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 1.2s ease;
}
.c-front-loading__logo__o2.is-active {
  opacity: 1;
  right: 11%;
  left: auto;
  transform: translateX(50%);
}
.c-front-loading__logo__ja {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 255px;
  opacity: 0;
  transition: all 1.2s ease;
}
.c-front-loading__logo__ja.is-active {
  opacity: 1;
  left: 0%;
}

.c-page-loading {
  width: fit-content;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  transition: all 1.2s ease;
  transition-delay: 0.3s;
}
.c-page-loading:before {
  content: "";
  width: 100vw;
  height: 100vh;
  background-color: #001236;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: all 1.2s ease;
}
.c-page-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.c-page-loading.is-hidden:before {
  width: 0;
  opacity: 0;
}

.c-cookie-modal {
  position: fixed;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  transform: translatex(-50%);
  left: 50%;
  bottom: 30px;
  width: 100%;
  max-width: 900px;
  padding: 25px 30px;
  font-size: 1.2rem;
  background-color: #0088bb;
  color: #f2f6ff;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}
@media screen and (max-width: 800px) {
  .c-cookie-modal {
    flex-direction: column;
    justify-content: center;
    bottom: 0;
    width: 100%;
    padding: 25px 30px;
    gap: 30px;
  }
}
.c-cookie-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.c-cookie-modal__right {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .c-cookie-modal__right {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
}
.c-cookie-modal__btns {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.c-cookie-modal__privacypolicy {
  text-decoration: underline;
}
.c-cookie-modal__allow {
  width: 120px;
  padding: 5px 15px;
  color: #3a558b;
  background-color: #f2f6ff;
  cursor: pointer;
  transition: 0.4s;
}
.c-cookie-modal__deny {
  width: 120px;
  padding: 5px 15px;
  border: 1px solid #f2f6ff;
  cursor: pointer;
  transition: 0.4s;
}

.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: block;
  background-color: #79a51f;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 105;
}
@media screen and (max-width: 800px) {
  .c-nav {
    background-color: #79a51f;
  }
}
.c-nav.is-active {
  visibility: visible;
  opacity: 1;
}
.c-nav__bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/common/c-nav-bg.png?v=1.0.0);
  background-repeat: repeat;
  mix-blend-mode: darken;
  z-index: -1;
}
@media screen and (max-width: 800px) {
  .c-nav__bg-wrap {
    display: none;
  }
}
.c-nav__logo {
  position: absolute;
  top: 23px;
  left: 3%;
  width: 200px;
}
.c-nav__logo img {
  width: 100%;
}
.c-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 43px;
  cursor: pointer;
  z-index: 100;
}
@media screen and (max-width: 800px) {
  .c-nav__close {
    top: 14px;
    right: 10px;
    width: 35px;
  }
}
.c-nav__close img {
  width: 100%;
}
.c-nav__inner {
  display: flex;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .c-nav__inner {
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
}
.c-nav__inner > div {
  width: 33.3333333333%;
}
@media screen and (max-width: 800px) {
  .c-nav__inner > div {
    width: 100%;
  }
}
.c-nav__access {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.c-nav__access__inner {
  max-width: 280px;
  margin: 0 auto;
}
.c-nav__access__address {
  margin-bottom: 40px;
  font-size: 1.2rem;
}
@media screen and (max-width: 800px) {
  .c-nav__access__address {
    margin-bottom: 15px;
  }
}
.c-nav__menu {
  background-color: #79a51f;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
}
.c-nav__menu__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: fit-content;
}
.c-nav__menu__list__item {
  display: flex;
  gap: 19px;
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 2.2rem;
}
@media screen and (max-width: 800px) {
  .c-nav__menu__list__item {
    font-size: 1.8rem;
  }
}
.c-nav__menu__list__item a {
  position: relative;
  height: fit-content;
  transition: all 0.3s ease;
}
.c-nav__menu__list__item a:hover {
  opacity: 0.5;
}
.c-nav__menu__list__sub-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-nav__menu__list__sub-menu__dash {
  display: inline-block;
  width: 38px;
  height: 1px;
  margin-top: 17px;
  background-color: #f2f6ff;
}
.c-nav__menu__list__sub-menu__item {
  letter-spacing: 0.148em;
  font-size: 1.8rem;
}
@media screen and (max-width: 800px) {
  .c-nav__menu__list__sub-menu__item {
    font-size: 1.4rem;
  }
}

.l-header {
  border-top: 3px solid #94c927;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0 3%;
  z-index: 100;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
}
.l-header__logo {
  width: 200px;
}
.l-header__logo img {
  display: inline;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav__list {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.l-header__nav__list__item {
  position: relative;
  padding: 0 20px;
}
.l-header__nav__list__item.has-sub-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 136, 187, 0.77);
  z-index: -1;
  height: 0;
  transition: all 0.3s ease;
}
.l-header__nav__list__item:hover.has-sub-menu::before {
  height: 100%;
}
.l-header__nav__list__item:hover .l-header__nav__list__sub-menu {
  opacity: 1;
  visibility: visible;
  margin: 20px 0;
  height: auto;
}
.l-header__nav__list__item.is-current:after {
  content: "";
  position: absolute;
  display: block;
  top: -20px;
  left: 0;
  width: 100%;
  height: 56px;
  background-color: #0088bb;
  z-index: -1;
}
.l-header__nav__list__item a:after {
  content: "";
  width: 0%;
  height: 1px;
  background-color: #94c927;
  display: block;
  transition: all 0.3s ease;
}
.l-header__nav__list__item:hover a:after {
  width: 100%;
}
.l-header__nav__list__sub-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all 0.3s ease;
}
.l-header__nav__list__sub-menu__item {
  font-size: 1.4rem;
}
.l-header__nav__list__sub-menu__item a:after {
  content: none;
}
.l-header__space {
  width: 200px;
}

.c-side-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 100vh;
  z-index: 100;
}
@media screen and (max-width: 800px) {
  .c-side-nav {
    width: fit-content;
  }
}
.c-side-nav__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 10px 0;
}
@media screen and (max-width: 800px) {
  .c-side-nav__inner {
    align-items: flex-start;
  }
}
.c-side-nav__menu-btn {
  position: relative;
  display: flex;
  gap: 5px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #001236;
}
@media screen and (max-width: 800px) {
  .c-side-nav__menu-btn {
    right: 0px;
  }
}
.c-side-nav__menu-btn span {
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #f2f6ff;
  border-radius: 100%;
  transition: all 0.2s ease-out;
}
.c-side-nav__menu-btn span:nth-child(1) {
  z-index: 3;
  top: 11px;
  background-color: #94c927;
}
.c-side-nav__menu-btn span:nth-child(2) {
  top: 20px;
}
.c-side-nav__menu-btn span:nth-child(3) {
  top: 29px;
}
.c-side-nav__menu-btn:hover span:nth-child(1) {
  z-index: 3;
  top: 20px;
}
.c-side-nav__menu-btn:hover span:nth-child(3) {
  top: 20px;
}
.c-side-nav__middle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: -10vh;
}
@media screen and (max-width: 800px) {
  .c-side-nav__middle {
    margin-top: -30vh;
  }
}
.c-side-nav__logo {
  width: 80px;
}
@media screen and (max-width: 800px) {
  .c-side-nav__logo {
    width: 40px;
  }
}
.c-side-nav__logo img {
  width: 100%;
}
.c-side-nav__title {
  width: fit-content;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .c-side-nav__title {
    font-size: 1rem;
  }
}
.c-side-nav__title.is-hidden {
  opacity: 0;
  width: 1px;
}
.c-side-nav__copyright {
  font-size: 1rem;
  transform: translateY(400%) rotate(90deg);
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .c-side-nav__copyright {
    position: absolute;
    top: 130px;
  }
}
.c-side-nav__scroll {
  width: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .c-side-nav__scroll {
    position: relative;
    top: -18vh;
    right: -18px;
  }
}
.c-side-nav__scroll-top {
  position: relative;
  width: 100%;
  height: 60px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.c-side-nav__scroll-top.is-active {
  opacity: 1;
  visibility: visible;
}
.c-side-nav__scroll-top__btn {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 40px;
  width: 1px;
  background-color: #f2f6ff;
  transition: height 0.3s ease;
}
.c-side-nav__scroll-top__btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 1px;
  background-color: #f2f6ff;
  transform: translateY(-50%) rotate(230deg);
  transform-origin: right center;
}
.c-side-nav__scroll-top__btn::after {
  content: "";
  position: absolute;
  top: 0%;
  right: 0;
  width: 6px;
  height: 1px;
  background-color: #f2f6ff;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: right center;
}
.c-side-nav__scroll-top:hover .c-side-nav__scroll-top__btn {
  height: 60px;
}
.c-side-nav__scroll-dot {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #f2f6ff;
}
.c-side-nav__scroll-down {
  position: relative;
  width: 100%;
  height: 60px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.c-side-nav__scroll-down.is-active {
  opacity: 1;
  visibility: visible;
}
.c-side-nav__scroll-down__btn {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 40px;
  width: 1px;
  background-color: #f2f6ff;
  transition: height 0.3s ease;
}
.c-side-nav__scroll-down__btn::before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 6px;
  height: 1px;
  background-color: #f2f6ff;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
.c-side-nav__scroll-down__btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 6px;
  height: 1px;
  background-color: #f2f6ff;
  transform: translateY(-50%) rotate(127deg);
  transform-origin: right center;
}
.c-side-nav__scroll-down:hover .c-side-nav__scroll-down__btn {
  height: 60px;
}

.l-footer {
  padding: 90px 0;
  background-color: #001236;
}
.l-footer__inner {
  display: flex;
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .l-footer__inner {
    flex-direction: column;
  }
}
.l-footer__info {
  width: fit-content;
}
.l-footer__info p {
  font-size: 1.4rem;
}
.l-footer__info p span {
  font-size: 2.3rem;
}
.l-footer__menu {
  max-width: 500px;
  font-weight: bold;
}
.l-footer__menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 60px;
}
@media screen and (max-width: 800px) {
  .l-footer__menu ul {
    gap: 20px 20px;
    margin-top: 60px;
  }
}
.l-footer__menu ul a {
  transition: opacity 0.3s ease;
}
.l-footer__menu ul a:hover {
  opacity: 0.5;
}

.l-inner {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .l-inner {
    width: 78%;
  }
}

.l-inner--700 {
  position: relative;
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .l-inner--700 {
    width: 78%;
  }
}

.l-blog > * {
  padding: 20px 0;
}
@media screen and (max-width: 800px) {
  .l-blog > * {
    padding: 12px 0;
  }
}
.l-blog a {
  text-decoration: underline;
}
.l-blog ul {
  list-style: disc;
  padding-left: 20px;
}
.l-blog ol {
  list-style: decimal;
  padding-left: 20px;
}
.l-blog .has-dark-blue-color {
  color: #001236 !important;
}
.l-blog .has-blue-color {
  color: #0088bb !important;
}
.l-blog .has-green-color {
  color: #94c927 !important;
}
.l-blog .has-dark-blue-background-color {
  background-color: #001236 !important;
}
.l-blog .has-blue-background-color {
  background-color: #0088bb !important;
}
.l-blog .has-green-background-color {
  background-color: #94c927 !important;
}/*# sourceMappingURL=style.css.map */