@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
  /*=========================================================================
  # リキッドコーディングの場合以下を追加
  ========================================================================= */
}
@media screen and (max-width: 519px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  background: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  color: #000000;
}
body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #000000;
}
a:hover {
  cursor: pointer;
}

img {
  max-width: 100%; /* 1 */
  height: auto; /* 1 */
  vertical-align: middle; /* 2 */
  font-style: italic; /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover; /* 4 */
  shape-margin: 0.75rem; /* 5 */
}

::-webkit-input-placeholder {
  color: gray;
}

::-moz-placeholder {
  color: gray;
}

:-ms-input-placeholder {
  color: gray;
}

::-ms-input-placeholder {
  color: gray;
}

::placeholder {
  color: gray;
}

/*=========================================================================
# アニメーション
========================================================================= */
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.l-header {
  background: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.l-header__wrapper {
  width: 100%;
  max-width: 100rem;
  height: inherit;
  padding: 0 2rem;
  margin: 0 auto;
  height: 9.375rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-header__wrapper {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__wrapper {
    width: 100%;
    height: 4.375rem;
    padding: 0 1rem;
  }
}

.l-header__logo {
  position: absolute;
  left: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 185px;
  height: auto;
  aspect-ratio: 185/76;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 120px;
    left: 16px;
  }
}
.l-header__logo a img {
  width: 100%;
  height: 100%;
}
.l-header__01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
}
@media screen and (max-width: 767px) {
  .l-header__01 {
    display: none;
  }
}

.l-header__description {
  font-size: 14px;
  font-weight: 400;
}

.l-header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .l-header__info {
    display: none;
  }
}

.l-header__address {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 1250px) {
  .l-header__address {
    display: none;
  }
}

.l-header__02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
}
@media screen and (max-width: 1023px) {
  .l-header__02 {
    padding-top: 15px;
  }
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: calc(100% - 240px);
}
.l-header__nav li {
  width: 14%;
  max-width: 140px;
  position: relative;
}
.l-header__nav li::after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 16px;
  height: auto;
  aspect-ratio: 16/8;
  background: url(../img/common/arrow_header.png) no-repeat center center/cover;
}
.l-header__nav li:last-of-type a {
  border-right: 1px solid #D0D0D0;
}
.l-header__nav a {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  border-left: 1px solid #D0D0D0;
}
.l-header__nav a:hover {
  color: #0088CF;
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    display: none;
  }
}

.l-main {
  margin-top: 9.375rem;
}
@media screen and (max-width: 1023px) {
  .l-main {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 4.375rem;
  }
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: inherit;
  padding: 0 2.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    padding: 0 1rem;
  }
}

.l-footer__main {
  background: #FAFAFA;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .l-footer__main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.l-footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer__wrap {
    display: block;
  }
}

.l-footer__head {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .l-footer__head {
    width: 100%;
  }
}
.l-footer__head h2 {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-footer__head h2 {
    text-align: center;
  }
}
.l-footer__head span {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-footer__head span {
    text-align: center;
  }
}
.l-footer__head p {
  margin-top: 36px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}
@media screen and (max-width: 767px) {
  .l-footer__head p {
    margin-top: 24px;
    font-size: 16px;
    text-align: center;
  }
}

.l-footer__body {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .l-footer__body {
    width: 100%;
  }
}

.l-footer__tel {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__tel {
    margin-top: 20px;
  }
}
.l-footer__tel span {
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-footer__tel span {
    font-size: 14px;
  }
}
.l-footer__tel a {
  color: #0088CF;
  font-size: 36px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-footer__tel a {
    font-size: 24px;
  }
}

.l-footer__time {
  text-align: center;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-footer__time {
    font-size: 14px;
  }
}

.l-footer__link {
  text-align: center;
  margin-top: 36px;
}
.l-footer__link a {
  display: inline-block;
  min-width: 307px;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 4px;
  background: #00388C;
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer__link a {
    min-width: 0;
    max-width: 307px;
    width: 100%;
  }
}
.l-footer__link a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 47px;
  width: 21px;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_mail.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .l-footer__link a::before {
    left: 30px;
  }
}
.l-footer__link a:hover {
  opacity: 0.7;
}

.l-footer__copy {
  background: #0088CF;
  padding-top: 36px;
  padding-bottom: 31px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.l-footer__copy small {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
}

.l-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.l-under {
  padding-top: 85px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .l-under {
    padding-bottom: 50px;
  }
}

/*=========================================================================
# 共通パーツ
========================================================================= */
.c-btn {
  display: inline-block;
  min-width: 188px;
  background-color: #00388C;
  border-radius: 999px;
  padding: 16px 0;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
.c-btn:hover {
  opacity: 0.7;
}

.c-tel {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding-left: 26px;
  position: relative;
}
.c-tel::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 23px;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_tel.png) no-repeat center center/cover;
}
.c-tel:hover {
  color: #0088CF;
}

.c-sectionHeading {
  text-align: center;
}
.c-sectionHeading h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-sectionHeading h2 {
    font-size: 28px;
  }
}
.c-sectionHeading span {
  display: block;
  margin-top: 11px;
  color: #0088CF;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.46;
  letter-spacing: 0.05em;
}
.c-sectionHeading--left {
  -moz-text-align-last: left;
       text-align-last: left;
}

.p-drawer__icon {
  display: none;
  width: 47px;
  height: 47px;
  background: #0088CF;
  border-radius: 50%;
  position: relative;
}
.p-drawer__icon--wrap {
  position: fixed;
  top: 40px;
  right: 12px;
  z-index: 103;
}
@media screen and (max-width: 1023px) {
  .p-drawer__icon--wrap {
    top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-drawer__icon--wrap {
    top: 12px;
  }
}
.p-drawer__icon .bar {
  width: 20px;
  height: 2px;
  background: #FAFAFA;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  left: 14px;
}
.p-drawer__icon .bar1 {
  top: 16px;
}
.p-drawer__icon .bar2 {
  top: 22px;
}
.p-drawer__icon .bar3 {
  top: 28px;
}
.p-drawer__icon.js-open .bar {
  left: 12px;
  width: 25px;
  top: 22px;
}
.p-drawer__icon.js-open .bar1 {
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}
.p-drawer__icon.js-open .bar3 {
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}
.p-drawer__icon.js-open .bar2 {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-drawer__icon {
    display: block;
  }
}

.p-drawer__menu {
  position: fixed;
  top: 0;
  right: -120%;
  width: 300px;
  height: 100svh;
  z-index: 102;
  background: #FAFAFA;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.p-drawer__menu.js-open {
  right: 0;
}

.p-drawer__container {
  height: 100%;
  padding-top: 100px;
  padding-left: 38px;
  padding-right: 37px;
  position: relative;
}

.p-drawer__logo {
  width: 120px;
  height: auto;
  aspect-ratio: 185/76;
  position: absolute;
  left: 20px;
  top: 20px;
}
.p-drawer__logo img {
  width: 100%;
  height: 100%;
}

.p-drawer__nav li {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-drawer__nav li a:hover {
  color: #0088CF;
}
.p-drawer__nav li + li {
  margin-top: 20px;
}

.p-drawer__info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.p-drawer__info p {
  line-height: 1.5;
}

.p-drawer__tel {
  margin-top: 20px;
}

.p-drawer__btn {
  margin-top: 20px;
}

.p-drawer__bg {
  display: none;
  width: 100%;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(62, 58, 57, 0.4);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 101;
}
.p-drawer__bg.js-open {
  display: block;
}

.p-fv {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-fv {
    padding-top: 50px;
  }
}

.p-fv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-fv__title p {
  font-size: 48px;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 64px;
  border-bottom: 2px solid #000000;
}
@media screen and (max-width: 767px) {
  .p-fv__title p {
    font-size: 36px;
    line-height: 2;
  }
}

.p-fv__breadcrumb {
  margin-top: 112px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-fv__breadcrumb {
    margin-top: 50px;
  }
}
.p-fv__breadcrumb span {
  font-size: 12px;
  font-weight: 500;
}
.p-fv__breadcrumb a:hover {
  opacity: 0.7;
}

.p-archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 138px;
}
@media screen and (max-width: 1023px) {
  .p-archive {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-archive {
    display: block;
    max-width: 500px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-archive__aside {
    margin-top: 80px;
  }
}

.p-archive__articles {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-archive__articles {
    width: 100%;
  }
}

.p-archive__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 30px;
  padding-right: 30px;
  border-bottom: 1px solid #A5A5A5;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-archive__card + .p-archive__card {
  padding-top: 30px;
}
.p-archive__card:hover {
  color: #0088CF;
}
.p-archive__card:hover .p-archive__image > img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-archive__card a {
  display: block;
  position: absolute;
  inset: 0;
}

.p-archive__image {
  width: 140px;
  height: auto;
  aspect-ratio: 141/96;
  overflow: hidden;
  border: 1px solid #00388C;
  border-radius: 10px;
}
.p-archive__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.p-archive__content {
  width: calc(100% - 140px);
  padding-left: 34px;
}
@media screen and (max-width: 767px) {
  .p-archive__content {
    padding-left: 20px;
  }
}

.p-archive__time {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-archive__title {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-archive__pagination {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-archive__pagination {
    margin-top: 40px;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.page-numbers {
  display: grid;
  place-items: center;
  width: 33px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #F0F0F0;
  border-radius: 5px;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
}
.page-numbers.current {
  background-color: #2A1C4F;
  color: #FFFFFF;
}

.p-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 157px;
}
@media screen and (max-width: 1023px) {
  .p-single {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-single {
    display: block;
    max-width: 500px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-single__aside {
    margin-top: 80px;
  }
}

.p-single__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-single__main {
    width: 100%;
  }
}

.p-single__title {
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.p-single__time {
  padding-left: 5px;
  margin-top: 18px;
  color: #777777;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-single__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 671/360;
  margin-top: 44px;
}
.p-single__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single__content {
  margin-top: 44px;
}
.p-single__content h2:first-child {
  margin-top: 0;
}
.p-single__content h3:first-child {
  margin-top: 0;
}
.p-single__content h4:first-child {
  margin-top: 0;
}
.p-single__content h2 {
  background-color: #0088CF;
  color: #FFFFFF;
  margin-top: 40px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 63px;
  letter-spacing: 0.05em;
}
.p-single__content h2 + p {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-single__content h2 {
    line-height: 2;
    padding: 16px;
    font-size: 18px;
  }
}
.p-single__content h3 {
  color: #0088CF;
  padding-left: 20px;
  margin-top: 40px;
  border-left: 3px solid #0088CF;
  font-size: 20px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0.05em;
}
.p-single__content h3 + p {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-single__content h3 {
    font-size: 18px;
    line-height: 2;
  }
}
.p-single__content h4 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 30px;
  padding-bottom: 2px;
  margin-top: 40px;
  line-height: 24px;
  border-bottom: 1px solid #0088CF;
  color: #0088CF;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.p-single__content h4 + p {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-single__content h4 {
    line-height: 2;
    padding-right: 0;
  }
}
.p-single__content p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-single__content p {
    font-size: 14px;
    line-height: 1.8;
  }
}
.p-single__content figure {
  margin-top: 24px;
}

.p-single__link {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-single__link {
    margin-top: 40px;
  }
}
.p-single__link a {
  display: inline-block;
  min-width: 308px;
  line-height: 60px;
  background-color: #00388C;
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-single__link a {
    min-width: 0px;
    max-width: 308px;
    width: 100%;
  }
}
.p-single__link a:hover {
  opacity: 0.7;
}

.wp-block-gallery.has-nested-images figure.wp-block-image {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.p-aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 78px;
  width: 250px;
}
@media screen and (max-width: 767px) {
  .p-aside {
    width: 100%;
    gap: 40px;
  }
}

.p-aside__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}

.p-aside__head {
  padding-bottom: 10px;
  border-bottom: 2px solid #0088CF;
  color: #0088CF;
  font-size: 20px;
  letter-spacing: 0.05em;
}

.p-aside__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.p-aside__body a {
  padding-left: 28px;
  position: relative;
}
.p-aside__body a::before {
  content: ">";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
  font-size: 16px;
}
.p-aside__body a:hover {
  color: #0088CF;
}

.p-contact {
  max-width: 874px;
  margin-inline: auto;
}

.p-contact__info {
  max-width: 524px;
  width: 100%;
  border: 1px solid #0088CF;
  text-align: center;
  padding-top: 28px;
  padding-bottom: 36px;
  margin-inline: auto;
}

.p-contact__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 10px;
}
.p-contact__tel span {
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-contact__tel span {
    font-size: 16px;
  }
}
.p-contact__tel a {
  color: #0088CF;
  font-size: 47px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-contact__tel a {
    font-size: 36px;
  }
}

.p-contact__time {
  margin-top: 20px;
  font-size: 21px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-contact__time {
    font-size: 16px;
  }
}

.p-contact__wrap {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.p-contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-contact__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-contact__row dt {
  width: 336px;
  margin-top: 18px;
  max-width: 100%;
}
.p-contact__row dt label {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-contact__row dt label {
    font-size: 20px;
  }
}
.p-contact__row dt br {
  display: none;
}
.p-contact__row dt span {
  margin-left: 25px;
  padding: 4px 10px;
  background-color: #00388C;
  color: #FFFFFF;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-contact__row dt span {
    font-size: 12px;
    margin-left: 16px;
  }
}
.p-contact__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.p-contact__row dd input,
.p-contact__row dd textarea {
  width: 100%;
  padding: 16px;
  border: none;
  background-color: #F2F2F2;
}
.p-contact__row dd input {
  height: 67px;
}
@media screen and (max-width: 767px) {
  .p-contact__row dd input {
    height: 50px;
  }
}
.p-contact__row dd textarea {
  height: 194px;
  resize: vertical;
}

.p-contact__text {
  margin-top: 30px;
  height: 238px;
  padding: 28px;
  border: 1px solid #707070;
}

.p-contact__text--wrap {
  height: 182px;
  overflow-y: scroll;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.3;
}

.p-contact__check {
  margin-top: 38px;
  margin-right: 100px;
  text-align: center;
}
@media screen and (max-width: 519px) {
  .p-contact__check {
    margin-right: 0;
  }
}
.p-contact__check span {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.p-contact__button {
  text-align: center;
  margin-top: 50px;
}
.p-contact__button input {
  min-width: 339px;
  background-color: #00388C;
  line-height: 64px;
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contact__button input {
    min-width: 0;
    max-width: 339px;
    width: 100%;
  }
}
.p-contact__button input:hover {
  opacity: 0.7;
}

form:has(.wpcf7-not-valid-tip) .p-contact__button input {
  pointer-events: none;
  opacity: 0.5;
}

.checkbox-cl01 input {
  display: none;
}

.checkbox-cl01 input + span {
  padding-left: 48px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.checkbox-cl01 input + span::after,
.checkbox-cl01 input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}

.checkbox-cl01 input + span::before {
  border: 1px solid #707070;
  background-color: #ffffff;
  height: 32px;
  width: 32px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.checkbox-cl01 input + span::after {
  border: none;
  background-color: #0088CF;
  height: 16px;
  width: 16px;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

.checkbox-cl01 input:checked + span::after {
  display: block;
}

.p-topFv {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-topFv {
    padding-bottom: 0;
  }
}

.p-topFv__balloon {
  width: 498px;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 0;
  right: 50%;
  -webkit-transform: translateX(calc(50% + 460px));
          transform: translateX(calc(50% + 460px));
  z-index: -1;
}
@media screen and (max-width: 1599px) {
  .p-topFv__balloon {
    right: 0%;
    -webkit-transform: translateX(-85px);
            transform: translateX(-85px);
  }
}
@media screen and (max-width: 1023px) {
  .p-topFv__balloon {
    display: none;
  }
}
.p-topFv__balloon img {
  width: 100%;
  height: 100%;
}

.p-topFv__inner {
  position: relative;
  width: 100%;
  max-width: 1540px;
  height: inherit;
  padding: 0 2.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-topFv__inner {
    width: 100%;
    padding: 0 1rem;
  }
}

.p-topFv__wrap {
  position: relative;
  border-radius: 10px;
}

.p-topFv__copy {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .p-topFv__copy {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-topFv__copy {
    font-size: 24px;
    top: 44%;
  }
}

.p-topFv__info {
  width: 510px;
  position: absolute;
  left: -1px;
  bottom: 20px;
  z-index: 1;
  background: #FFFFFF;
  border-radius: 0 10px 0 10px;
  padding: 35px 25px;
}
@media screen and (max-width: 767px) {
  .p-topFv__info {
    padding: 20px;
    left: 20px;
    bottom: 40px;
    width: 80%;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
  }
}

.p-topFv__infoHead {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-topFv__items {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.p-topFv__news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-topFv__news:hover .p-topFv__newsTitle {
  color: #0088CF;
}
@media screen and (max-width: 767px) {
  .p-topFv__news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 10px;
  }
}

.p-topFv__newsTag {
  width: 126px;
  height: 26px;
  margin-right: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #00388C;
  border-radius: 999px;
}

.p-topFv__newsTitle {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-topFv__image {
  width: 100%;
  height: 702px;
}
@media screen and (max-width: 767px) {
  .p-topFv__image {
    height: calc(100svh - 70px - 21px);
  }
}
.p-topFv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.slick_top {
  visibility: hidden;
}

.slick_top.slick-initialized {
  visibility: visible;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 11px;
  margin-top: 13px;
}
.slick-dots li {
  display: inline-block;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  background: #E0E0E0;
  border-radius: 50%;
  cursor: pointer;
}
.slick-dots button {
  display: block;
  width: 0%;
  height: 8px;
  margin: 0;
  font-size: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  background: #00388C;
}
.slick-dots .slick-active {
  background: #00388C;
  opacity: 1;
}

.p-topAbout {
  padding-top: 50px;
  padding-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .p-topAbout {
    padding-bottom: 50px;
  }
}

.p-topAbout__wrap {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-topAbout__wrap {
    margin-top: 40px;
  }
}
.p-topAbout__wrap h3 {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-topAbout__wrap h3 {
    font-size: 20px;
  }
}
.p-topAbout__wrap p {
  margin-top: 30px;
  margin-inline: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topAbout__wrap p {
    line-height: 1.5;
  }
}

.p-topService {
  background: url(../img/top/bg_top-service.webp) no-repeat center center/cover;
  position: relative;
}

.p-topService__balloon {
  width: 304px;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: -161px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 570px));
          transform: translateX(calc(-50% - 570px));
  z-index: -1;
}
.p-topService__balloon img {
  width: 100%;
  height: 100%;
}

.p-topService__body {
  margin-top: 83px;
}
@media screen and (max-width: 767px) {
  .p-topService__body {
    margin-top: 40px;
    max-width: 500px;
    margin-inline: auto;
  }
}

.p-topService__shops {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-topService__shops {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-topService__shops--big {
  gap: 46px;
}
@media screen and (max-width: 767px) {
  .p-topService__shops--big {
    gap: 40px;
  }
}
.p-topService__shops--big li {
  width: calc((100% - 46px) / 2);
}
@media screen and (max-width: 767px) {
  .p-topService__shops--big li {
    width: 100%;
  }
}
.p-topService__shops--small {
  gap: 42px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-topService__shops--small {
    gap: 40px;
    margin-top: 40px;
  }
}
.p-topService__shops--small li {
  width: calc((100% - 84px) / 3);
}
@media screen and (max-width: 767px) {
  .p-topService__shops--small li {
    width: 100%;
  }
}

.p-topService__imgage {
  width: 100%;
  height: auto;
  position: relative;
}
.p-topService__imgage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.p-topService__imgage p {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #FFFFFF;
  border-radius: 0 10px 0 10px;
  font-weight: 700;
}
.p-topService__imgage--big {
  aspect-ratio: 517/357;
}
.p-topService__imgage--big p {
  font-size: 29px;
  padding: 26px 28px;
}
@media screen and (max-width: 767px) {
  .p-topService__imgage--big p {
    font-size: 16px;
    padding: 16px;
  }
}
.p-topService__imgage--small {
  aspect-ratio: 332/229;
}
.p-topService__imgage--small p {
  padding: 16px 23px;
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  .p-topService__imgage--small p {
    font-size: 16px;
    padding: 16px;
  }
}

.p-topService__content {
  margin-top: 30px;
  font-weight: 400;
  line-height: 1.7;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-topService__content {
    margin-top: 20px;
    padding-right: 20px;
  }
}
.p-topService__content--big {
  font-size: 23px;
}
@media screen and (max-width: 767px) {
  .p-topService__content--big {
    font-size: 15px;
    max-width: 100%;
  }
}
.p-topService__content--small {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .p-topService__content--small {
    max-width: 100%;
  }
}

.p-topBlog__wrap {
  padding-top: 47px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-topBlog__wrap {
    padding-top: 40px;
  }
}

.p-topBlog__link {
  position: absolute;
  right: 0;
  top: -36px;
}
.p-topBlog__link a {
  padding-right: 68px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-topBlog__link a {
    padding-right: 40px;
  }
}
.p-topBlog__link a::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/top/arrow_blog.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-topBlog__link a::after {
    width: 30px;
  }
}
.p-topBlog__link a:hover {
  color: #0088CF;
}

.p-topBlog__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
}
@media screen and (max-width: 1023px) {
  .p-topBlog__items {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-topBlog__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    max-width: 500px;
    margin-inline: auto;
  }
}

.p-topBlog__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc((100% - 76px) / 3);
}
@media screen and (max-width: 1023px) {
  .p-topBlog__card {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .p-topBlog__card {
    width: 100%;
  }
}
@media (hover: hover) {
  .p-topBlog__card:hover > .p-topBlog__image > img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); /* 拡大 */
  }
  .p-topBlog__card:hover .p-topBlog__content {
    color: #0088CF;
  }
}

.p-topBlog__image {
  width: 100%;
  height: 229px;
  border: 1px solid #00388C;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.p-topBlog__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-topBlog__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-topBlog__time {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: center;
}

.p-topBlog__title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
  text-align: center;
}

.p-topBlog__text p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p-topAccess {
  background: #F6FAFB;
}

.p-topAccess__wrap {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-topAccess__wrap {
    margin-top: 40px;
    max-width: 500px;
    margin-inline: auto;
  }
}

.p-topAccess__shops {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 74px 0;
  margin-top: 86px;
}
@media screen and (max-width: 767px) {
  .p-topAccess__shops {
    display: block;
    margin-top: 40px;
  }
}

.p-topAccess__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-topAccess__card--big {
  padding: 0 38px;
}
@media screen and (max-width: 767px) {
  .p-topAccess__card--big {
    padding: 0;
  }
}
.p-topAccess__card--small {
  width: 50%;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .p-topAccess__card--small {
    width: 100%;
    padding-right: 0;
  }
  .p-topAccess__card--small + .p-topAccess__card--small {
    margin-top: 40px;
  }
}

.p-topAccess__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-topAccess__name {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.41;
}
@media screen and (max-width: 767px) {
  .p-topAccess__name {
    font-size: 20px;
  }
}
.p-topAccess__name--big {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topAccess__name--big {
    text-align: left;
  }
}
.p-topAcess__address {
  font-size: 16px;
  font-weight: 400;
  margin-top: 30px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-topAcess__address {
    margin-top: 8px;
    font-size: 14px;
  }
}
.p-topAcess__address--big {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topAcess__address--big {
    text-align: left;
  }
}
.p-topAccess__number {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-topAccess__number {
    margin-top: 8px;
    font-size: 14px;
  }
}
.p-topAccess__number--big {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topAccess__number--big {
    text-align: left;
  }
}
.p-topAccess__map {
  display: block;
  width: 100%;
  position: relative;
  margin: 48px auto 0;
}
@media screen and (max-width: 767px) {
  .p-topAccess__map {
    margin-top: 10px;
  }
}
.p-topAccess__map--big {
  aspect-ratio: 1005/340;
}
@media screen and (max-width: 767px) {
  .p-topAccess__map--big {
    aspect-ratio: 500/263;
  }
}
.p-topAccess__map--small {
  aspect-ratio: 500/263;
}
.p-topAccess__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px;
}

.p-topMessage__wrap {
  margin-top: 42px;
}
@media screen and (max-width: 767px) {
  .p-topMessage__wrap {
    margin-top: 40px;
  }
}

.p-topMessage__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {
  .p-topMessage__text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.p-topMessage__text + .p-topMessage__text {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-topMessage__text + .p-topMessage__text {
    margin-top: 20px;
  }
}

.p-topMessage__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 20px;
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .p-topMessage__name {
    margin-top: 20px;
  }
}
.p-topMessage__name span {
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-topMessage__name span {
    font-size: 16px;
  }
}
.p-topMessage__name img {
  width: 144px;
}
@media screen and (max-width: 767px) {
  .p-topMessage__name img {
    width: 120px;
  }
}

.p-topCompany {
  background: url(../img/top/bg_top-company.webp) no-repeat center center/cover;
  position: relative;
}

.p-topCompany__balloon {
  width: 304px;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: -210px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 730px));
          transform: translateX(calc(-50% - 730px));
  z-index: -1;
}
.p-topCompany__balloon img {
  width: 100%;
  height: 100%;
}

.p-topCompany__wrap {
  max-width: 574px;
  margin-inline: auto;
  margin-top: 77px;
}
@media screen and (max-width: 767px) {
  .p-topCompany__wrap {
    margin-top: 40px;
  }
}

.p-topCompany__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-topCompany__row + .p-topCompany__row {
  margin-top: 34px;
}
.p-topCompany__row dt {
  width: 198px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-topCompany__row dt {
    width: 100px;
    font-size: 16px;
  }
}
.p-topCompany__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-topCompany__row dd {
    font-size: 14px;
  }
}

@media screen and (max-width: 519px) {
  .u-hidden--sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-hidden--tab {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .u-hidden--pc {
    display: none;
  }
}

.u-appear--sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .u-appear--sp {
    display: block;
  }
}
.u-appear--tab {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-appear--tab {
    display: block;
  }
}
.u-appear--pc {
  display: none;
}
@media screen and (max-width: 1023px) {
  .u-appear--pc {
    display: block;
  }
}