@charset "UTF-8";

/* --- 1. 変数の定義（色や幅を一括管理して保守性を向上） --- */
:root {
  --primary-color: #1640c8;
  --bg-creme: #FFFCF8;
  --text-main: #333;
  --inner-max: 1450px;
  --speed: 0.3s;
}

body {
  font-family: "Noto Sans Japanese", "Montserrat", sans-serif;
  color: var(--text-main);
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none !important;
  }
}


.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (min-width: 768px) and (max-width: 1400px) {
  html {
    font-size: 1.1428571429vw;
  }
}
@media (min-width: 1401px) {
  html {
    font-size: 16px; /* 1400px以上では16pxで固定 */
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* swiper button消失対策 */
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  text-rendering: auto;
}

.c-btn {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  background-color: #1640c8;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  max-width: 293px;
  max-width: 18.3125rem;
  padding: 30px 0;
  padding: 1.875rem 0;
  border-radius: 2.625rem;
}
@media screen and (max-width: 767px) {
  .c-btn {
    padding: 1.25rem 0;
  }
}

.c-btn__title {
  color: #FFFCF8;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-copy-right {
  padding-bottom: 27px;
  padding-bottom: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .c-copy-right {
    padding-bottom: 0.875rem;
  }
}

.c-copy-right__small {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.375;
  font-weight: 700;
  color: #333;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-copy-right__small {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .c-copy-right__small {
    line-height: 2.3333333333;
  }
}

.c-fb-btn {
  display: block;
  max-width: 31px;
  max-width: 1.9375rem;
  width: 100%;
}

.c-hamburger {
  position: relative;
  z-index: 9999;
  padding: 0;
  margin-left: auto;
  cursor: pointer;
  transition: transform var(--speed);
}

.c-hamburger:active {
  transform: scale(0.9);
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 3px;
  height: 0.1875rem;
  width: 30px;
  width: 1.875rem;
  background: #1640c8;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.c-hamburger::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 8px 0;
  margin: 0.5rem 0;
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

/*OPEN時の動き*/
.c-hamburger.is-open span {
  background: #1640c8;
}

.c-hamburger.is-open span:nth-child(1) {
  top: 11px;
  top: 0.6875rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-hamburger.is-open span:nth-child(2) {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
}

.c-hamburger.is-open span:nth-child(3) {
  top: -11px;
  top: -0.6875rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-hamburger.is-open::after {
  border: 3px solid #1640c8;
  border: 0.1875rem solid #1640c8;
}

.c-news-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.2777777778;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 767px) {
  .c-news-text {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-news-text {
    line-height: 2;
  }
}

.c-section-header {
  position: relative;
}

.c-section-header__title {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.3;
  font-weight: 700;
  display: grid;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .c-section-header__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-section-header__title {
    line-height: 1.0625;
  }
}

.c-section-header__title::after {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 1.6842105263;
  font-weight: 700;
  text-transform: uppercase;
  content: attr(data-en);
  padding-top: 10px;
  padding-top: 0.625rem;
}

.p-company__description {
  text-align: center; /* テキストを中央揃え */
  margin: 30px auto; /* 上下に30pxの余白、左右を自動で中央に配置 */
  padding: 0 10px; /* 左右にパディングを追加してテキストが広がりすぎないように調整 */
  font-size: 1.25rem; /* フォントサイズの調整 */
  line-height: 2; /* 行間を広げて読みやすくする */
  color: #333; /* テキストの色 */
  max-width: 800px; /* 最大幅を設定してテキストの横幅を制限 */
}

@media screen and (max-width: 767px) {
  .p-company__description {
    font-size: 1rem;
    padding: 0 20px;
  }
}


.c-text1 {
  font-size: 18px;
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 550;
}
@media screen and (max-width: 767px) {
  .c-text1 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-text1 {
    line-height: 1.5;
  }
}

.c-text2 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.8636363636;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 767px) {
  .c-text2 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-text2 {
    line-height: 1.5;
  }
}

.c-text3 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.1818181818;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-text3 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-text3 {
    line-height: 1.3333333333;
  }
}

.c-text4 {
  font-size: 1.15rem;
  line-height: 1.75;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-text4 {
    font-size: 1.15rem;
  }
}
@media screen and (max-width: 767px) {
  .c-text4 {
    line-height: 1.2;
  }
}

.c-the-content {
  max-width: inherit;
  margin-left: auto;
  margin-right: auto;
}
.c-the-content > * + * {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .c-the-content > * + * {
    margin-top: 2rem;
  }
}
.c-the-content p,
.c-the-content span,
.c-the-content ul li,
.c-the-content ol li,
.c-the-content blockquote,
.c-the-content table th,
.c-the-content table td,
.c-the-content dl dt,
.c-the-content dl dd,
.c-the-content pre,
.c-the-content code,
.c-the-content address {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8888888889;
  font-weight: 700;
  color: #333;
}
.c-the-content h1,
.c-the-content h2,
.c-the-content h3,
.c-the-content h4,
.c-the-content h5,
.c-the-content h6 {
  font-weight: 700;
  color: #333;
}
.c-the-content h1 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.5;
}
.c-the-content h2 {
  font-size: 20px;
  font-size: 1.25rem;
}
.c-the-content h3 {
  font-size: 18px;
  font-size: 1.125rem;
}
.c-the-content h4 {
  font-size: 16px;
  font-size: 1rem;
}
.c-the-content h5 {
  font-size: 14px;
  font-size: 0.875rem;
}
.c-the-content h6 {
  font-size: 12px;
  font-size: 0.75rem;
}
.c-the-content a {
  color: #203448;
}
.c-the-content strong {
  font-weight: 400;
}
.c-the-content em {
  font-style: italic;
}
.c-the-content .alignleft {
  float: left;
  margin-left: 0;
  margin-right: 5px;
  margin-right: 0.3125rem;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
.c-the-content .alignright {
  float: right;
  margin-left: 5px;
  margin-left: 0.3125rem;
  margin-right: 0;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
.c-the-content .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.c-the-content .alignwide,
.c-the-content .alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
  width: 100vw;
}
.c-the-content .wp-caption {
  max-width: inherit;
}
.c-the-content .wp-caption-text {
  margin: 0;
  font-size: 14px;
  font-size: 0.875rem;
}
.c-the-content .wp-caption.alignleft,
.c-the-content .wp-caption.alignright,
.c-the-content .wp-caption.aligncenter {
  margin-bottom: 0;
}
.c-the-content .wp-block-categories.aligncenter,
.c-the-content .wp-block-latest-posts.aligncenter,
.c-the-content .wp-block-archives.aligncenter,
.c-the-content .wp-block-tag-cloud.aligncenter,
.c-the-content .wp-block-latest-comments.aligncenter,
.c-the-content .wp-block-rss.aligncenter {
  text-align: center;
}
.c-the-content figure {
  margin-left: 0;
  margin-right: 0;
  width: auto;
}
.c-the-content figure img {
  width: auto;
}
.c-the-content ul li::before {
  content: "・";
}
.c-the-content ol li {
  counter-increment: number;
}
.c-the-content ol li::before {
  content: counter(number);
  padding-left: 5px;
  padding-left: 0.3125rem;
  padding-right: 5px;
  padding-right: 0.3125rem;
}
.c-the-content blockquote {
  position: relative;
  border-left: none;
  background-color: #FFFCF8;
  padding-left: 70px;
  padding-left: 4.375rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
.c-the-content blockquote::before {
  content: "“";
  position: absolute;
  top: -2px;
  top: -0.125rem;
  left: 17px;
  left: 1.0625rem;
  font-size: 12px;
  font-size: 0.75rem;
  color: #b4b4b4;
}
.c-the-content table {
  border-collapse: collapse;
  border-spacing: 0;
}
.c-the-content table thead th {
  font-weight: 400;
  text-align: center;
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
}
.c-the-content table tbody tr:nth-child(odd) {
  background-color: #FFFCF8;
}
.c-the-content table tbody tr:nth-child(even) {
  background-color: #FFFCF8;
}
.c-the-content table tbody tr a {
  font-size: 14px;
  font-size: 0.875rem;
  white-space: nowrap;
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
}
.c-the-content table tbody tr td {
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
}
.c-the-content table tbody tr td:nth-child(2) {
  white-space: nowrap;
}
.c-the-content dl dt {
  font-weight: 400;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.c-the-content dl dd {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  margin-left: 40px;
  margin-left: 2.5rem;
}
.c-the-content pre {
  display: block;
  font-family: monospace;
  white-space: pre;
  overflow: auto;
  margin-top: 5px;
  margin-top: 0.3125rem;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  background-color: #FFFCF8;
  border: 1px solid #ccc;
  border: 0.0625rem solid #ccc;
  padding-left: 5px;
  padding-left: 0.3125rem;
  padding-right: 5px;
  padding-right: 0.3125rem;
}
.c-the-content code {
  font-family: monospace;
}
.c-the-content sub {
  vertical-align: sub;
  font-size: smaller;
}
.c-the-content sup {
  vertical-align: super;
  font-size: smaller;
}

.c-the-title {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.7333333333;
  font-weight: 700;
  color: #333;
}

.c-title1 {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.625;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 767px) {
  .c-title1 {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title1 {
    line-height: 1.2857142857;
  }
}

.c-title2 {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.1923076923;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 767px) {
  .c-title2 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title2 {
    line-height: 1.2;
  }
}

.p-access-media__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1450px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .p-access-media__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 650px;
  }
}

.p-access-media__pic {
  position: relative;
  max-width: 700px;
  max-width: 43.75rem;
  width: 50%;
  height: auto;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-access-media__pic {
    max-width: none;
    width: 100%;
    height: auto;
  }
}

.p-access-media__pic img {
  width: 100%;
  height: auto; /* 自然な比率を保つ */
  display: block;
}



.p-access-media__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 700px;
  max-width: 43.75rem;
  width: 50%;
  padding-left: min(5.67708vw, 109px);
  padding-left: min(5.67708vw, 6.8125rem);
}
@media screen and (max-width: 767px) {
  .p-access-media__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: none;
    max-width: initial;
    width: 100%;
    padding-top: 0.9375rem;
    padding-left: 0;
  }
}

.p-access-media__body-pic {
  position: relative;
  max-width: 478px;
  max-width: 29.875rem;
  width: 100%;
  margin-top: min(3.28125vw, 63px);
  margin-top: min(3.28125vw, 3.9375rem);
}
@media screen and (max-width: 767px) {
  .p-access-media__body-pic {
    width: 45%;
    margin-top: 0;
    margin-right: auto;
  }
}

.p-access-media__body-pic::before {
  display: block;
  content: "";
  padding-top: 60.2510460251%;
}

.p-access-media__body-pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-access-media__body-textwrapper {
  margin-top: min(1.5625vw, 30px);
  margin-top: min(1.5625vw, 1.875rem);
  margin-bottom: auto;
}
@media screen and (max-width: 767px) {
  .p-access-media__body-textwrapper {
    width: 50%;
    margin-top: auto;
  }
}

.p-access-media__body-text {
  color: #333;
}

.p-access-media__body-text span {
  display: inline-block;
}

.p-article__the-title {
  margin-top: min(0.78125vw, 15px);
  margin-top: min(0.78125vw, 0.9375rem);
  margin-bottom: min(1.40625vw, 27px);
  margin-bottom: min(1.40625vw, 1.6875rem);
}
@media screen and (max-width: 767px) {
  .p-article__the-title {
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}

.p-article__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-article__info > * + * {
  margin-left: min(1.77083vw, 34px);
  margin-left: min(1.77083vw, 2.125rem);
}

.p-article__category {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.1111111111;
  font-weight: 700;
  color: #FFFCF8;
  display: inline-block;
  padding: 3.4px 16px;
  padding: 0.2125rem 1rem;
  background-color: #1640c8;
}

.p-article__date {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7777777778;
  font-weight: 700;
  color: #333;
}

.p-article__btn {
  text-align: center;
  margin-top: min(2.34375vw, 45px);
  margin-top: min(2.34375vw, 2.8125rem);
}
@media screen and (max-width: 767px) {
  .p-article__btn {
    margin-top: 2.8125rem;
  }
}

.p-aside > * + * {
  margin-top: min(3.75vw, 72px);
  margin-top: min(3.75vw, 4.5rem);
}
@media screen and (max-width: 767px) {
  .p-aside > * + * {
    margin-top: 3.125rem;
  }
}

.p-aside__common-list {
  margin-top: min(1.30208vw, 25px);
  margin-top: min(1.30208vw, 1.5625rem);
}
@media screen and (max-width: 767px) {
  .p-aside__common-list {
    margin-top: 1.25rem;
  }
}

.p-breadcrumb {
  position: relative;
  z-index: 999;
}

.p-breadcrumb__inner {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.9285714286;
  font-weight: 700;
  color: #333;
  padding-top: min(1.14583vw, 22px);
  padding-top: min(1.14583vw, 1.375rem);
  max-width: 1450px;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__inner {
    padding-top: 0.625rem;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.p-business-card__pic {
  position: relative;
  padding-top: 93.3526011561%;
}

.p-business-card__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-business-card__body {
  padding-top: 15.4px;
  padding-top: 0.9625rem;
}

.p-business-card__body-title {
  text-align: center;
}

.p-business-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-business-cards__item {
  width: 100%;
  max-width: calc(25% - 0.23438rem);
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-business-cards__item {
    max-width: calc(50% - 0.15625rem);
  }
}

.p-business-cards__item:first-child {
  margin-top: 0;
}

.p-business-cards__item + .p-business-cards__item {
  margin-left: 4.9px;
  margin-left: 0.30625rem;
}

.p-business-cards__item:nth-child(4n+1) {
  margin-left: 0;
}

.p-business-cards__item:nth-child(n+5) {
  margin-top: min(4.0625vw, 78px);
  margin-top: min(4.0625vw, 4.875rem);
}

@media screen and (max-width: 767px) {
  .p-business-cards__item + .p-business-cards__item {
    margin-left: 0.30625rem;
  }
  .p-business-cards__item:nth-child(2n+1) {
    margin-left: 0;
  }
  .p-business-cards__item:nth-child(n+4) {
    margin-top: 0;
  }
  .p-business-cards__item:nth-child(n+3) {
    margin-top: min(4.0625vw, 4.875rem);
  }
}
.ooooo-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .ooooo-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.ooooo-cards__item {
  width: 100%;
  max-width: calc(50% - 0.625rem);
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .ooooo-cards__item {
    max-width: calc(25% - 1.875rem);
  }
}

.ooooo-cards__item:first-child {
  margin-top: 0;
}

.ooooo-cards__item + .ooooo-cards__item {
  margin-left: 19.9px;
  margin-left: 1.24375rem;
}

.ooooo-cards__item:nth-child(2n+1) {
  margin-left: 0;
}

.ooooo-cards__item:nth-child(n+3) {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

@media screen and (max-width: 767px) {
  .ooooo-cards__item + .ooooo-cards__item {
    margin-left: 2.49375rem;
  }
  .ooooo-cards__item:nth-child(4n+1) {
    margin-left: 0;
  }
  .ooooo-cards__item:nth-child(n+2) {
    margin-top: 0;
  }
  .ooooo-cards__item:nth-child(n+5) {
    margin-top: 3.125rem;
  }
}
.p-business-media__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  max-width: 1450px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}

.p-business-media__pic {
  position: relative;
  max-width: 700px;
  max-width: 43.75rem;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-business-media__pic {
    max-width: none;
    max-width: initial;
    width: 100%;
    height: 100%;
  }
}

.p-business-media__pic::before {
  display: block;
  content: "";
  padding-top: 77.8571428571%;
}

.p-business-media__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-business-media__body {
  max-width: 700px;
  max-width: 43.75rem;
  width: 50%;
  padding-top: min(5.57292vw, 107px);
  padding-top: min(5.57292vw, 6.6875rem);
}
@media screen and (max-width: 767px) {
  .p-business-media__body {
    max-width: none;
    max-width: initial;
    width: 100%;
  }
}

.p-business-media__body-titlewrapper {
  width: min(20vw, 384px);
  width: min(20vw, 24rem);
  margin-top: min(2.03125vw, 39px);
  margin-top: min(2.03125vw, 2.4375rem);
  margin-bottom: min(1.5625vw, 30px);
  margin-bottom: min(1.5625vw, 1.875rem);
}
@media screen and (max-width: 767px) {
  .p-business-media__body-titlewrapper {
    width: auto;
    width: initial;
  }
}

.p-business-media__body-title {
  color: #333;
}

.p-business-media__body-text {
  color: #333;
}

@media screen and (max-width: 767px) {
  .p-business-media:nth-of-type(odd) .p-business-media__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-business-media:nth-of-type(odd) .p-business-media__pic {
  -webkit-box-shadow: -1.9375rem 2.0625rem 0rem 0 #1640c8;
          box-shadow: -1.9375rem 2.0625rem 0rem 0 #1640c8;
}
@media screen and (max-width: 767px) {
  .p-business-media:nth-of-type(odd) .p-business-media__pic {
    -webkit-box-shadow: -0.9375rem 0.9375rem 0rem 0 #1640c8;
            box-shadow: -0.9375rem 0.9375rem 0rem 0 #1640c8;
  }
}

.p-business-media:nth-of-type(odd) .p-business-media__body {
  padding-left: min(6.25vw, 120px);
  padding-left: min(6.25vw, 7.5rem);
  padding-right: min(4.16667vw, 80px);
  padding-right: min(4.16667vw, 5rem);
}
@media screen and (max-width: 767px) {
  .p-business-media:nth-of-type(odd) .p-business-media__body {
    padding: 1.5rem 0 0;
  }
}

.p-business-media:nth-of-type(even) .p-business-media__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-business-media:nth-of-type(even) .p-business-media__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-business-media:nth-of-type(even) .p-business-media__pic {
  -webkit-box-shadow: 1.9375rem 2.0625rem 0rem 0 #1640c8;
          box-shadow: 1.9375rem 2.0625rem 0rem 0 #1640c8;
}
@media screen and (max-width: 767px) {
  .p-business-media:nth-of-type(even) .p-business-media__pic {
    -webkit-box-shadow: 0.9375rem 0.9375rem 0rem 0 #1640c8;
            box-shadow: 0.9375rem 0.9375rem 0rem 0 #1640c8;
  }
}

.p-business-media:nth-of-type(even) .p-business-media__body {
  padding-left: min(5.10417vw, 98px);
  padding-left: min(5.10417vw, 6.125rem);
  padding-right: min(5.3125vw, 102px);
  padding-right: min(5.3125vw, 6.375rem);
}
@media screen and (max-width: 767px) {
  .p-business-media:nth-of-type(even) .p-business-media__body {
    padding: 1.5rem 0 0;
  }
}

.p-business-medias {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-business-medias__item {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-business-medias__item {
    max-width: 100%;
  }
}

.p-business-medias__item:first-child {
  margin-top: 0;
}

.p-business-medias__item:nth-child(n+2) {
  margin-top: min(6.875vw, 132px);
  margin-top: min(6.875vw, 8.25rem);
}

@media screen and (max-width: 767px) {
  .p-business-medias__item:nth-child(n+1) {
    margin-top: 0;
  }
  .p-business-medias__item:nth-child(n+2) {
    margin-top: 4.0625rem;
  }
}
.p-business-tab {
  height: inherit;
}

.p-business-tab a {
  position: relative;
  display: block;
}

.p-business-tab a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-right: 2px solid #333;
  border-right: 0.125rem solid #333;
  border-bottom: 2px solid #333;
  border-bottom: 0.125rem solid #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-business-tab:nth-child(4n+1) a::after {
  right: 30px;
  right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-business-tab:nth-child(4n+1) a::after {
    right: 0rem;
  }
}

.p-business-tab:nth-child(4n+2) {
  -webkit-transform: translateX(-1.1875rem);
          transform: translateX(-1.1875rem);
}
@media screen and (max-width: 767px) {
  .p-business-tab:nth-child(4n+2) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.p-business-tab:nth-child(4n+2) a::after {
  right: -40px;
  right: -2.5rem;
}
@media screen and (max-width: 767px) {
  .p-business-tab:nth-child(4n+2) a::after {
    right: 0rem;
  }
}

.p-business-tab:nth-child(4n+3) {
  -webkit-transform: translateX(0.5125rem);
          transform: translateX(0.5125rem);
}
@media screen and (max-width: 767px) {
  .p-business-tab:nth-child(4n+3) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.p-business-tab:nth-child(4n+3) a::after {
  right: -20px;
  right: -1.25rem;
}
@media screen and (max-width: 767px) {
  .p-business-tab:nth-child(4n+3) a::after {
    right: 0rem;
  }
}

.p-business-tab:nth-child(4n) a::after {
  right: -40px;
  right: -2.5rem;
}
@media screen and (max-width: 767px) {
  .p-business-tab:nth-child(4n) a::after {
    right: 0rem;
  }
}

.p-business-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-business-tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-business-tabs__item {
  width: 100%;
  max-width: calc(25% - 7.73438rem);
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-business-tabs__item {
    max-width: calc(50% - 1.5625rem);
  }
}

.p-business-tabs__item:first-child {
  margin-top: 0;
}

.p-business-tabs__item + .p-business-tabs__item {
  margin-left: 164.9px;
  margin-left: 10.30625rem;
}

.p-business-tabs__item:nth-child(4n+1) {
  margin-left: 0;
}

.p-business-tabs__item:nth-child(n+5) {
  margin-top: min(1.875vw, 36px);
  margin-top: min(1.875vw, 2.25rem);
}

@media screen and (max-width: 767px) {
  .p-business-tabs__item + .p-business-tabs__item {
    margin-left: 3.11875rem;
  }
  .p-business-tabs__item:nth-child(2n+1) {
    margin-left: 0;
  }
  .p-business-tabs__item:nth-child(n+4) {
    margin-top: 0;
  }
  .p-business-tabs__item:nth-child(n+3) {
    margin-top: 0.625rem;
  }
}
.p-business__box {
  max-width: 1705px;
  max-width: 106.5625rem;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  background-color: #FFFCF8;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(17, 17, 17, .1);
          box-shadow: 0 0.1875rem 0.375rem rgba(17, 17, 17, .1);
  padding-top: min(6.66667vw, 128px);
  padding-top: min(6.66667vw, 8rem);
  padding-bottom: min(7.29167vw, 140px);
  padding-bottom: min(7.29167vw, 8.75rem);
}
@media screen and (max-width: 767px) {
  .p-business__box {
    width: 100%;
  }
}

.p-business__section-header {
  text-align: center;
  color: #333;
}

.p-business__business-cards {
  margin-top: 39px;
  margin-top: 2.4375rem;
  margin-bottom: 76px;
  margin-bottom: 4.75rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-business__business-cards {
    margin-top: 1.5rem;
    margin-bottom: 2.625rem;
    margin-left: 0; /* 中央揃えのために左マージンを削除 */
    margin-right: 0; /* 中央揃えのために右マージンを削除 */
  }
}

.p-business__btn {
  text-align: center;
}

.p-business__business-tabs {
  max-width: 1200px;
  max-width: 75rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: min(2.91667vw, 56px);
  margin-top: min(2.91667vw, 3.5rem);
}
@media screen and (max-width: 767px) {
  .p-business__business-tabs {
    max-width: 37.5rem;
    margin-top: 2.5rem;
  }
}

.p-business__business-medias {
  margin-top: min(6.40625vw, 123px);
  margin-top: min(6.40625vw, 7.6875rem);
}
@media screen and (max-width: 767px) {
  .p-business__business-medias {
    max-width: 37.5rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4.0625rem;
  }
}

.p-common-list li + li {
  margin-top: clamp(10px, 1.40625vw, 27px);
  margin-top: clamp(0.625rem, 1.40625vw, 1.6875rem);
}

.p-common-list li a {
  color: #333;
  display: block;
}

.p-common-media__inner {
  display: flex;
  justify-content: center; /* 中央揃え */
  align-items: center; /* 垂直方向に中央揃え */
  width: 100%;
  max-width: 1200px; /* 必要に応じて最大幅を設定 */
  margin: 50px auto; /* 上下に余白を付け、左右を自動調整で中央揃え */
}


.p-common-media__pic {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-common-media__pic {
    max-width: none;
    max-width: initial;
    width: 100%;
    height: 100%;
  }
}

.p-common-media__section-header {
  color: #333;
}

.p-common-media__body-text {
  color: #333;
}

.p-common-media:nth-of-type(1) .p-common-media__inner {
  max-width: 1920px;
  max-width: 120rem;
}
@media screen and (max-width: 767px) {
  .p-common-media:nth-of-type(1) .p-common-media__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-common-media:nth-of-type(1) .p-common-media__pic {
  max-width: 960px;
  max-width: 60rem;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-common-media:nth-of-type(1) .p-common-media__pic {
    width: 100%;
  }
}

.p-common-media:nth-of-type(1) .p-common-media__pic::before {
  display: block;
  content: "";
  padding-top: 77.8125%;
}

.p-common-media:nth-of-type(1) .p-common-media__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-common-media:nth-of-type(1) .p-common-media__body {
  max-width: 960px;
  max-width: 60rem;
  width: 50%;
  padding-top: min(9.0625vw, 174px);
  padding-top: min(9.0625vw, 10.875rem);
  padding-left: min(5.20833vw, 100px);
  padding-left: min(5.20833vw, 6.25rem);
}
@media screen and (max-width: 767px) {
  .p-common-media:nth-of-type(1) .p-common-media__body {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 2.1875rem;
  }
}

.p-common-media:nth-of-type(1) .p-common-media__section-header {
  margin-bottom: min(1.51042vw, 29px);
  margin-bottom: min(1.51042vw, 1.8125rem);
}
@media screen and (max-width: 767px) {
  .p-common-media:nth-of-type(1) .p-common-media__section-header {
    margin-bottom: 0.625rem;
  }
}


.p-common-media:nth-of-type(even) .p-common-media__inner {
  max-width: 1400px;
  max-width: 87.5rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-common-media:nth-of-type(even) .p-common-media__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-common-media:nth-of-type(2) .p-common-media__pic {
  max-width: 700px;
  max-width: 43.75rem;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-common-media:nth-of-type(2) .p-common-media__pic {
    width: 100%;
  }
}

.p-common-media:nth-of-type(2) .p-common-media__pic div {
  max-width: 700px;
  max-width: 43.75rem;
  width: 100%;
  height: 750px;
  height: 46.875rem;
  background-color: gray;
}

.p-common-media:nth-of-type(2) .p-common-media__body {
  max-width: 700px;
  max-width: 43.75rem;
  width: 50%;
  padding-top: min(3.28125vw, 63px);
  padding-top: min(3.28125vw, 3.9375rem);
  padding-right: min(5.26042vw, 101px);
  padding-right: min(5.26042vw, 6.3125rem);
}
@media screen and (max-width: 767px) {
  .p-common-media:nth-of-type(2) .p-common-media__body {
    max-width: 37.5rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 2.1875rem;
  }
}

.p-common-media:nth-of-type(2) .p-common-media__section-header {
  padding-left: min(2.08333vw, 40px);
  padding-left: min(2.08333vw, 2.5rem);
  margin-bottom: min(2.23958vw, 43px);
  margin-bottom: min(2.23958vw, 2.6875rem);
}
@media screen and (max-width: 767px) {
  .p-common-media:nth-of-type(2) .p-common-media__section-header {
    margin-bottom: 0.625rem;
  }
}

/* メディアセクション */
.p-common-media__news-post {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-news-post__item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.p-news-post__item:last-child {
  border-bottom: none;
}

.p-news-post__link {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.p-news-post__link:hover {
  color: #007bff;
}

.p-news-post__date {
  font-size: 14px;
  color: #888;
}

.p-news-post__title {
  font-size: 18px;
  color: #333;
  margin-top: 5px;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .p-business__business-cards {
    flex-direction: column;
    gap: 20px;
  }

  .p-business-cards__item {
    flex: 1 1 100%;
  }

  .c-section-header__title {
    font-size: 28px;
  }

  .p-business-card__body-title,
  .p-news-post__title {
    font-size: 16px;
  }
}



.p-common-media:nth-of-type(1) .p-common-media__btn {
  margin-top: min(3.54167vw, 68px); /* margin-topを1つに統一 */
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-common-media:nth-of-type(1) .p-common-media__btn {
    margin-top: 1.875rem;
  }
}

.p-common-media:nth-of-type(2) .p-common-media__btn {
  margin-top: min(3.64583vw, 70px); /* margin-topを1つに統一 */
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-common-media:nth-of-type(2) .p-common-media__btn {
    margin-top: 1.875rem;
  }
}



.p-common-medias {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-common-medias__item {
  width: 100%;
  max-width: 100%;
  margin-top: 50px; /* 上のマージンを調整 */
  margin-bottom: 90px; /* 下のマージンを追加 */
}
@media screen and (max-width: 767px) {
  .p-common-medias__item {
    max-width: 100%;
    margin-top: 30px; /* モバイル時の上マージンを少し小さく */
    margin-bottom: 90px; /* モバイル時の下マージンを少し小さく */
  }
}

.p-common-medias__item:first-child {
  margin-top: 0;
}

.p-common-medias__item:nth-child(n+2) {
  margin-top: min(7.29167vw, 140px);
  margin-top: min(7.29167vw, 8.75rem);
}

@media screen and (max-width: 767px) {
  .p-common-medias__item:nth-child(n+1) {
    margin-top: 0;
  }
  .p-common-medias__item:nth-child(n+2) {
    margin-top: 4.0625rem;
  }
}
.p-company-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-company-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 1.25rem;
    padding-bottom: 0.9375rem;
  }
}

.p-company-list__term {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.0909090909;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  background-color: #f4f6f2;
  text-align: center;
  width: 23.8866396761%;
  padding-top: min(1.35417vw, 26px);
  padding-top: min(1.35417vw, 1.625rem);
}
@media screen and (max-width: 767px) {
  .p-company-list__term {
    font-size: 1.125rem;
    width: auto;
    width: initial;
    background-color: transparent;
    background-color: initial;
    text-align: left;
  }
}

.p-company-list__description {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.0909090909;
  font-weight: 700;
  color: #333;
  width: 76.1133603239%;
  padding-top: min(1.35417vw, 26px);
  padding-top: min(1.35417vw, 1.625rem);
  padding-bottom: min(2.13542vw, 41px);
  padding-bottom: min(2.13542vw, 2.5625rem);
  padding-left: min(4.42708vw, 85px);
  padding-left: min(4.42708vw, 5.3125rem);
}
@media screen and (max-width: 767px) {
  .p-company-list__description {
    font-size: 1rem;
    line-height: 1.625;
    width: auto;
    width: initial;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    margin-top: 1rem;
  }
}

.p-company-list__description span {
  display: inline-block;
}

.p-company-list__description span + span {
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-company-list__description span + span {
    margin-top: 0;
  }
}

.p-company-list__item:first-child {
  border-top: 2px solid #e8e8e8;
  border-top: 0.125rem solid #e8e8e8;
}
@media screen and (max-width: 767px) {
  .p-company-list__item:first-child {
    border-top: none;
  }
}

.p-company-list__item:last-child {
  border-bottom: 2px solid #e8e8e8;
  border-bottom: 0.125rem solid #e8e8e8;
}
@media screen and (max-width: 767px) {
  .p-company-list__item:last-child {
    border-bottom: 0.125rem solid #1640c8;
  }
}

@media screen and (max-width: 767px) {
  .p-company-list__item {
    border-bottom: 0.125rem solid #1640c8;
  }
}

.p-company-list__item:not(:last-child) .p-company-list__term {
  border-bottom: 2px solid #FFFCF8;
  border-bottom: 0.125rem solid #FFFCF8;
}
@media screen and (max-width: 767px) {
  .p-company-list__item:not(:last-child) .p-company-list__term {
    border-bottom: none;
  }
}

.p-company-list__item:not(:last-child) .p-company-list__description {
  border-bottom: 2px solid #e8e8e8;
  border-bottom: 0.125rem solid #e8e8e8;
}
@media screen and (max-width: 767px) {
  .p-company-list__item:not(:last-child) .p-company-list__description {
    border-bottom: none;
  }
}

.p-company-media {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(45.875rem, #FFFCF8), color-stop(45.875rem, transparent));
  background: linear-gradient(to top, #FFFCF8 45.875rem, transparent 45.875rem);
  padding-top: min(3.33333vw, 64px);
  padding-top: min(3.33333vw, 4rem);
  padding-bottom: min(3.64583vw, 70px);
  padding-bottom: min(3.64583vw, 4.375rem);
}
@media screen and (max-width: 767px) {
  .p-company-media {
    background: -webkit-gradient(linear, left bottom, left top, from(#FFFCF8), to(transparent));
    background: linear-gradient(to top, #FFFCF8 max(93.09896vw, 37.5rem), transparent max(93.09896vw, 37.5rem));
    padding: 2.1875rem 0;
  }
}

.p-company-media__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  max-width: 1450px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .p-company-media__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 650px;
  }
}

.p-company-media__pic {
  position: relative;
  max-width: 700px;
  max-width: 43.75rem;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-company-media__pic {
    max-width: none;
    max-width: initial;
    width: 100%;
    height: 100%;
  }
}

.p-company-media__pic::before {
  display: block;
  content: "";
  padding-top: 103%;
}

.p-company-media__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-company-media__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 700px;
  max-width: 43.75rem;
  width: 50%;
  padding-top: min(8.125vw, 156px);
  padding-top: min(8.125vw, 9.75rem);
  padding-left: min(5.20833vw, 100px);
  padding-left: min(5.20833vw, 6.25rem);
}
@media screen and (max-width: 767px) {
  .p-company-media__body {
    max-width: none;
    max-width: initial;
    width: 100%;
    padding-left: 0;
  }
}

.p-company-media__body-title {
  color: #333;
  max-width: 500px;
  max-width: 31.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-company-media__body-title {
    max-width: none;
    max-width: initial;
  }
}

.p-company-media__body h3:nth-of-type(2) {
  margin-top: min(2.60417vw, 50px);
  margin-top: min(2.60417vw, 3.125rem);
}

.p-company-media__body-textwrapper {
  margin-top: min(1.45833vw, 28px);
  margin-top: min(1.45833vw, 1.75rem);
  max-width: 500px;
  max-width: 31.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-company-media__body-textwrapper {
    max-width: none;
    max-width: initial;
  }
}

.p-company-media__body-text {
  color: #333;
}

.p-company-media__body-bottom-textwrapper {
  text-align: right;
  margin-top: auto;
  padding-bottom: min(3.80208vw, 73px);
  padding-bottom: min(3.80208vw, 4.5625rem);
  max-width: 472px;
  max-width: 29.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-company-media__body-bottom-textwrapper {
    padding-top: 2.1875rem;
    max-width: none;
    max-width: initial;
  }
}

.p-company-media__body-bottom-text span:nth-of-type(1) {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.3333333333;
  font-weight: 700;
  color: #333;
}

.p-company-media__body-bottom-text span:nth-of-type(2) {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.75;
  font-weight: 700;
  color: #333;
}

.p-company__title {
  text-align: center;
}

.p-company__company-list {
  max-width: clamp(1100px, 64.32292vw, 1235px);
  max-width: clamp(68.75rem, 64.32292vw, 77.1875rem);
  width: 100%;
  text-align: left;
  margin-right: auto;
  margin-top: min(3.125vw, 60px);
  margin-top: min(3.125vw, 3.75rem);
}
@media screen and (max-width: 767px) {
  .p-company__company-list {
    max-width: 37.5rem;
    margin-left: auto;
    margin-top: 2.375rem;
  }
}

.p-company__access-media {
  margin-top: min(3.22917vw, 62px);
  margin-top: min(3.22917vw, 3.875rem);
}
@media screen and (max-width: 767px) {
  .p-company__access-media {
    margin-top: 2.375rem;
  }
}

.p-contact-mailform {
  position: relative;
  max-width: clamp(1120px, 65.10417vw, 1250px);
  max-width: clamp(70rem, 65.10417vw, 78.125rem);
  margin-right: auto;
  margin-left: auto;
  padding-top: min(2.86458vw, 55px);
  padding-top: min(2.86458vw, 3.4375rem);
  padding-bottom: min(7.29167vw, 140px);
  padding-bottom: min(7.29167vw, 8.75rem);
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform {
    max-width: 37.5rem;
    padding-top: 2.1875rem;
    padding-bottom: 4.375rem;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.p-contact-mailform__caution-message {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 700;
  color: #333;
  -webkit-transform: translateX(max(-1.30208vw, -1.5625rem));
          transform: translateX(max(-1.30208vw, -1.5625rem));
  margin-bottom: min(1.45833vw, 28px);
  margin-bottom: min(1.45833vw, 1.75rem);
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__caution-message {
    text-align: center;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    margin-bottom: 0.875rem;
  }
}

.p-contact-mailform__caution-message span {
  display: inline-block;
}

.p-contact-mailform__dlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  -webkit-transform: translateX(max(-1.30208vw, -1.5625rem));
          transform: translateX(max(-1.30208vw, -1.5625rem));
  border-bottom: 2px solid #d6d6d6;
  border-bottom: 0.125rem solid #d6d6d6;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__dlist {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-contact-mailform__dlist:first-of-type {
  border-top: 2px solid #d6d6d6;
  border-top: 0.125rem solid #d6d6d6;
}

.p-contact-mailform__dlist:not(:last-of-type) {
  padding-top: 22px;
  padding-top: 1.375rem;
}

.p-contact-mailform__dlist:last-of-type {
  padding-top: 68px;
  padding-top: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__dlist:last-of-type {
    padding-top: 1.375rem;
  }
}

.p-contact-mailform--confirm .p-contact-mailform__dlist:last-of-type {
  padding-top: 22px;
  padding-top: 1.375rem;
}

.p-contact-mailform__term {
  width: 23.9388794567%;
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__term {
    width: auto;
    width: initial;
    padding-top: 0;
  }
}

.p-contact-mailform__term label {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.0909090909;
  font-weight: 700;
  color: #333;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__term label {
    font-size: 1.125rem;
  }
}

.p-contact-mailform__description {
  max-width: 896px;
  max-width: 56rem;
  width: 76.0611205433%;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__description {
    width: auto;
    width: initial;
    padding-top: 1.25rem;
  }
}

.p-contact-mailform--confirm .p-contact-mailform__description {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.4545454545;
  font-weight: 700;
  color: #333;
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform--confirm .p-contact-mailform__description {
    font-size: 1rem;
  }
}

.p-contact-mailform__description input,
.p-contact-mailform__description textarea {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.4545454545;
  font-weight: 700;
  color: #333;
  background-color: #f4f4f4;
  padding: 15px 32px 22px;
  padding: 0.9375rem 2rem 1.375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__description input,
  .p-contact-mailform__description textarea {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__description input,
  .p-contact-mailform__description textarea {
    padding: 0.625rem 0.9375rem;
  }
}

.p-contact-mailform__description textarea {
  resize: none;
  height: 362px;
  height: 22.625rem;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__description textarea {
    height: 15.625rem;
  }
}

.p-contact-mailform__description input::-webkit-input-placeholder,
.p-contact-mailform__description textarea::-webkit-input-placeholder {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.0909090909;
  font-weight: 700;
  color: #e0e0e0;
}

.p-contact-mailform__description input::-moz-placeholder,
.p-contact-mailform__description textarea::-moz-placeholder {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.0909090909;
  font-weight: 700;
  color: #e0e0e0;
}

.p-contact-mailform__description input::-ms-input-placeholder,
.p-contact-mailform__description textarea::-ms-input-placeholder {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.0909090909;
  font-weight: 700;
  color: #e0e0e0;
}

.p-contact-mailform__description input::placeholder,
.p-contact-mailform__description textarea::placeholder {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.0909090909;
  font-weight: 700;
  color: #e0e0e0;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__description input::-webkit-input-placeholder,
  .p-contact-mailform__description textarea::-webkit-input-placeholder {
    font-size: 1rem;
  }
  .p-contact-mailform__description input::-moz-placeholder,
  .p-contact-mailform__description textarea::-moz-placeholder {
    font-size: 1rem;
  }
  .p-contact-mailform__description input::-ms-input-placeholder,
  .p-contact-mailform__description textarea::-ms-input-placeholder {
    font-size: 1rem;
  }
  .p-contact-mailform__description input::placeholder,
  .p-contact-mailform__description textarea::placeholder {
    font-size: 1rem;
  }
}

.p-contact-mailform__required {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background-color: #333;
  display: inline-block;
  padding: 3px 7px 11px;
  padding: 0.1875rem 0.4375rem 0.6875rem;
  margin-right: min(0.98958vw, 19px);
  margin-right: min(0.98958vw, 1.1875rem);
}

.p-contact-mailform__any {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background-color: #cccccc;
  display: inline-block;
  padding: 3px 7px 11px;
  padding: 0.1875rem 0.4375rem 0.6875rem;
  margin-right: min(0.98958vw, 19px);
  margin-right: min(0.98958vw, 1.1875rem);
}

.p-contact-mailform__privacy-text {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.0909090909;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin-top: min(4.58333vw, 88px);
  margin-top: min(4.58333vw, 5.5rem);
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__privacy-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__privacy-text {
    margin-top: 2.625rem;
  }
}

.p-contact-mailform__privacy-text a {
  text-decoration: underline;
}

.p-contact-mailform__privacy-text span {
  display: inline-block;
}

.p-contact-mailform--confirm .p-contact-mailform__privacy-text {
  opacity: 0;
  height: 0;
  pointer-events: none;
}

.p-contact-mailform__privacy {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: min(2.76042vw, 53px);
  margin-top: min(2.76042vw, 3.3125rem);
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__privacy {
    margin-top: 0.9375rem;
  }
}

.p-contact-mailform__privacy .mwform-checkbox-field label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-contact-mailform__privacy-input {
  margin: 0;
  width: 0;
  opacity: 0;
}

.p-contact-mailform__privacy-input-dummy {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: min(1.66667vw, 32px);
  width: min(1.66667vw, 2rem);
  height: min(1.66667vw, 32px);
  height: min(1.66667vw, 2rem);
  border: 1px solid #333;
  border: 0.0625rem solid #333;
  background: #fff;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__privacy-input-dummy {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-contact-mailform__privacy-input-dummy.is-checked {
  border: 2px solid #333;
  border: 0.125rem solid #333;
  background: #fff;
}

.p-contact-mailform__privacy-input-dummy.is-checked::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hlY2siPjxwb2x5bGluZSBwb2ludHM9IjIwIDYgOSAxNyA0IDEyIj48L3BvbHlsaW5lPjwvc3ZnPg==") no-repeat center;
  background-size: contain;
}

.p-contact-mailform__privacy-input-dummy.is-focus {
  background: #dddddd !important;
  border: 2px solid #333;
  border: 0.125rem solid #333;
}

.p-contact-mailform__privacy .mwform-checkbox-field-text {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.0909090909;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__privacy .mwform-checkbox-field-text {
    font-size: 1.125rem;
  }
}

.p-contact-mailform__privacy .error {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  bottom: -1.5625rem;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

.p-contact-mailform__privacy:hover > .p-contact-mailform__privacy-input-dummy {
  background: #dddddd !important;
  border: solid 2px #333333;
}

.p-contact-mailform__privacy:focus + .p-contact-mailform__privacy-input-dummy {
  background: #dddddd !important;
  border: solid 2px #333333;
}

.p-contact-mailform--confirm .p-contact-mailform__privacy {
  opacity: 0;
  height: 0;
  visibility: hidden;
}

.p-contact-mailform__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 32.375rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5125rem;
  }
}

.p-contact-mailform--confirm .p-contact-mailform__btns {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 700px;
  max-width: 43.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 54px;
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform--confirm .p-contact-mailform__btns {
    margin-top: 0;
  }
}

.p-contact-mailform__browser-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 0;
  background-color: #f5f5f5;
  border-radius: 2.625rem;
}

.p-contact-mailform__browser-back button {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.1818181818;
  font-weight: 700;
  color: #203448;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: inherit;
  height: inherit;
  padding: 30px 0;
  padding: 1.875rem 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-contact-mailform__browser-back button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  left: 0.9375rem;
  margin: auto;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-top: 2px solid #0c67c2;
  border-top: 0.125rem solid #0c67c2;
  border-right: 2px solid #0c67c2;
  border-right: 0.125rem solid #0c67c2;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  pointer-events: auto;
}

.p-contact-mailform--confirm .p-contact-mailform__browser-back {
  max-width: 293px;
  max-width: 18.3125rem;
  width: 100%;
}

.p-contact-mailform__submit {
  max-width: 293px;
  max-width: 18.3125rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #333;
  border-radius: 2.625rem;
  margin-top: min(3.59375vw, 69px);
  margin-top: min(3.59375vw, 4.3125rem);
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__submit {
    margin-top: 3.5rem;
  }
}

.p-contact-mailform__submit input {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.1818181818;
  font-weight: 700;
  color: #fff;
  width: inherit;
  padding: 30px 0;
  padding: 1.875rem 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__submit input {
    font-size: 1rem;
  }
}

.p-contact-mailform--confirm .p-contact-mailform__submit {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-contact-mailform--confirm .p-contact-mailform__submit {
    margin-top: 2.1875rem;
  }
}

.p-contact-mailform__confirm-message {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.1818181818;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: min(1.40625vw, 27px);
  margin-bottom: min(1.40625vw, 1.6875rem);
}
@media screen and (max-width: 767px) {
  .p-contact-mailform__confirm-message {
    font-size: 1.125rem;
  }
}
.p-contact {
    position: relative;
    width: 100%;
    height: 550px; /* 背景全体の高さを指定 */
    overflow: hidden; /* 背景が要素をはみ出さないようにする */
  }



  /* 背景の上に半透明のオーバーレイを追加 */
.p-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(171, 170, 170, 0.5); /* 半透明の黒いオーバーレイ */
    z-index: 1; /* オーバーレイを背景より上に */
  }

  .p-contact .l-inner {
    position: relative;
    z-index: 2; /* コンテンツを背景の上に表示 */
    text-align: center;
  }

  .p-contact__section-header {
    text-align: center;
    color: #fff;
  }

  .p-contact__textwrapper {
    margin-top: 1.5625rem;
    margin-bottom: 4.0625rem;
  }

  .p-contact__text {
    color: #fff;
  }

  .p-contact__btn {
    text-align: center;
  }

  .p-contact__btn a {
    display: inline-block;
    background-color: #FFFCF8;
    padding: 1.875rem 2rem;
    border-radius: 2.625rem;
    transition: 0.3s ease-in-out;
    text-decoration: none;
    color: #203448;
  }

  .p-contact__btn a:hover {
    background-color: #f0f0f0;
  }



.p-container .l-inner {
  display: grid;
  grid-template-areas: "article-area aside-area" "post-navigation-area post-navigation-area";
  grid-template-columns: 66.3571428571% 30.5714285714%;
  -webkit-column-gap: min(2.23958vw, 2.6875rem);
     -moz-column-gap: min(2.23958vw, 2.6875rem);
          column-gap: min(2.23958vw, 2.6875rem);
}
@media screen and (max-width: 767px) {
  .p-container .l-inner {
    grid-template-areas: "article-area" "aside-area" "post-navigation-area";
    grid-template-columns: 100%;
  }
}

.p-container__article {
  grid-area: article-area;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(17, 17, 17, .1);
          box-shadow: 0 0.1875rem 0.375rem rgba(17, 17, 17, .1);
  padding-top: min(3.07292vw, 59px);
  padding-top: min(3.07292vw, 3.6875rem);
  padding-bottom: min(4.73958vw, 91px);
  padding-bottom: min(4.73958vw, 5.6875rem);
  padding-left: min(1.51042vw, 29px);
  padding-left: min(1.51042vw, 1.8125rem);
  padding-right: min(1.04167vw, 20px);
  padding-right: min(1.04167vw, 1.25rem);
}
@media screen and (max-width: 767px) {
  .p-container__article {
    padding-top: 1.875rem;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 1.875rem;
  }
}

.p-container__aside {
  grid-area: aside-area;
  padding-top: min(1.19792vw, 23px);
  padding-top: min(1.19792vw, 1.4375rem);
}
@media screen and (max-width: 767px) {
  .p-container__aside {
    padding-top: 3.375rem;
  }
}

.p-container__post-navigation {
  grid-area: post-navigation-area;
  border-top: 1px solid #333;
  border-top: 0.0625rem solid #333;
  margin-top: min(3.75vw, 72px);
  margin-top: min(3.75vw, 4.5rem);
}
@media screen and (max-width: 767px) {
  .p-container__post-navigation {
    margin-top: 2.1875rem;
  }
}

.p-footer__inner {
  max-width: 1450px;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    max-width: 640px;
    padding-right: 20px;
    padding-left: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-footer__left {
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__left {
    width: 100%;
  }
}

.p-footer__logo {
  height: inherit;
  z-index: 999;
  margin-left: 0; /* 左のマージンを削除 */
  padding-left: 0; /* 左のパディングを削除 */
}

.p-footer__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.p-footer__logo img {
  width: clamp(180px, 16.25vw, 312px); /* すべての値を4倍に */
  width: clamp(11.25rem, 16.25vw, 19.5rem); /* remも同様に4倍に */
  margin-right: 0px;
  margin-right: 0rem;
}


.p-footer__logo span {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-footer__logo span {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__logo span {
    line-height: 1.2;
  }
}

.p-footer__contents-pc {
  display: contents;
}
@media screen and (max-width: 767px) {
  .p-footer__contents-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-footer__address {
  font-style: normal;
  font-style: initial;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-footer__address-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-footer__address-text {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__address-text {
    line-height: 1.4285714286;
  }
}

.p-footer__pc-nav {
  height: min(2.60417vw, 50px);
  height: min(2.60417vw, 3.125rem);
  padding-top: min(2.29167vw, 44px);
  padding-top: min(2.29167vw, 2.75rem);
}

.p-footer__pc-nav .p-pc-nav__item a {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
}

.p-footer__pc-nav .p-pc-nav__item:first-child a {
  padding: 0 min(2.1875vw, 42px);
  padding: 0 min(2.1875vw, 2.625rem);
}

.p-footer__pc-nav .p-pc-nav__item:not(:first-child):not(:last-child) a {
  padding: 0 min(2.5vw, 48px);
  padding: 0 min(2.5vw, 3rem);
}

.p-footer__pc-nav .p-pc-nav__item:last-child a {
  padding-left: min(2.5vw, 48px);
  padding-left: min(2.5vw, 3rem);
}

.p-footer__fb-btn-pc {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-footer__sp-nav {
  width: 100%;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}

.p-footer__sp-nav .p-sp-nav__item a {
  display: inline-flex; /* Flexboxでアイコンとテキストを横に並べる */
  align-items: center; /* アイコンとテキストを垂直方向に中央揃えにする */
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  color: #333;
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  padding-left: 0; /* 追加の余白をゼロにする */
}

.p-footer__sp-nav .p-sp-nav__item a .nav-icon {
  width: 1.5rem; /* アイコンの幅 */
  height: auto; /* 高さを自動調整 */
  margin-right: 0; /* アイコンとテキストの間のスペースをゼロにする */
  padding-right: 0; /* 追加の余白をゼロにする */
  vertical-align: middle; /* アイコンをテキストと垂直に中央揃え */
}




.p-footer__fb-btn-sp {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
  margin-left: auto;
}

.p-header {
  height: auto;
  min-height: min(7.29167vw, 140px); /* header の高さを適切に調整 */
  padding: 10px 0; /* 内部の余白を調整 */
  background-color: #FFFCF8;
}

.p-header__inner {
  width: 100%;
  padding-left: min(6.19792vw, 119px);
  padding-left: min(6.19792vw, 7.4375rem);
  padding-right: min(3.85417vw, 74px);
  padding-right: min(3.85417vw, 4.625rem);
  margin-left: auto;
  margin-right: auto;
  height: min(7.29167vw, 140px);
  height: min(7.29167vw, 8.75rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    height: 5rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.p-header__logo {
  height: inherit;
  margin-right: auto;
  z-index: 9999;
}

.p-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  height: inherit;
}

.p-header__logo-pic {
  position: relative;
  width: calc(min(10.20834vw, 196px) * 1.3); /* 1.3倍に拡大 */
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .p-header__logo-pic {
    width: calc(6.25rem * 1.3); /* モバイル時も1.3倍に拡大 */
  }
}


.p-header__logo-pic img:first-child {
  position: relative;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.p-header__logo-pic img:last-child {
  position: relative;
  opacity: 0;
  height: 0;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.p-header__logo span {
  font-size: 80px; /* テキスト部分のフォントサイズを倍に */
  line-height: 1.2;
  font-weight: 700;
  color: #333;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
@media screen and (max-width: 767px) {
  .p-header__logo span {
    font-size: clamp(2.875rem, 7.8125vw, 3.75rem); /* モバイル時も倍のサイズ */
  }
}

.p-header__logo.is-active .p-header__logo-pic img:first-child {
  opacity: 0;
  height: 0;
}

.p-header__logo.is-active .p-header__logo-pic img:last-child {
  opacity: 1;
  height: auto;
}

.p-header__logo.is-active span {
  color: #fff;
}


.p-header__sp-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 999;
  background-color: #FFFCF8;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.p-header__sp-nav .p-sp-nav__items {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* 各項目を中央に揃える */
}

.p-header__sp-nav .p-sp-nav__item a {
  display: inline-flex; /* Flexboxでアイコンとテキストを横に並べる */
  align-items: center; /* アイコンとテキストを垂直方向に中央揃えにする */
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: #333;
  padding-top: 18px;
  padding-top: 1.125rem;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  text-align: left; /* テキストを左揃え */
}

.p-header__sp-nav .p-sp-nav__item a::after {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  font-weight: 700;
  color: #fff;
  content: attr(data-en);
  display: block;
}


.p-header__sp-nav .p-sp-nav__item a .nav-icon,
.p-header__sp-nav .p-sp-nav__item a .line-icon {
  width: 1.5rem; /* アイコンの幅 */
  height: auto; /* 高さを自動調整 */
  margin-right: 0.5rem; /* アイコンとテキストの間にスペースを作る */
}

.p-header__sp-nav .p-sp-nav__item a img {
  display: inline-block; /* インライン要素として扱う */
  vertical-align: middle; /* 垂直方向に中央揃え */
}

.p-header__pc-nav {
  height: inherit;
  margin-left: auto;
  display: flex;
}

.p-header__pc-nav .p-pc-nav__item:not(:last-child) a {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.1818181818;
  font-weight: 400;
  color: #333;
  text-transform: uppercase;
  padding: 0 min(1.5625vw, 30px);
  padding: 0 min(1.5625vw, 1.875rem);
}

.p-header__pc-nav .p-pc-nav__item:not(:last-child) a:hover {
  opacity: 1;
  color: #003B4A;
}

.p-header__pc-nav .p-pc-nav__item:last-child {
  display: grid;
  place-items: center;
}

.p-header__pc-nav .p-pc-nav__item:last-child a {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.1818181818;
  font-weight: 400;
  color: #fff;
  background-color: #00B900;
  border-radius: 0.625rem;
  height: min(4.32292vw, 83px);
  height: min(4.32292vw, 5.1875rem);
  padding: 0 min(2.70833vw, 52px);
  padding: 0 min(2.70833vw, 3.25rem);
  margin-left: min(2.55208vw, 49px);
  margin-left: min(2.55208vw, 3.0625rem);
  display: flex;
  align-items: center;
  justify-content: center;
}


.p-header__pc-nav .p-pc-nav__item:last-child a .line-icon {
  width: 1.5rem; /* アイコンのサイズ */
  height: auto;
  margin-right: 0.5rem; /* アイコンとテキストの間にスペースを作る */
  vertical-align: middle; /* テキストとアイコンを垂直に中央揃え */
}


.p-header__pc-nav .p-pc-nav__item:last-child a i.fab.fa-line {
  font-size: 1.5rem; /* アイコンサイズの調整 */
  margin-right: 0.5rem; /* アイコンとテキストの間にスペースを作る */
}

.p-header.is-bgChange {
  background-color: rgba(255, 255, 255, .7);
}

.p-header.is-fixed {
  position: fixed;
}

.p-latest-post__item:first-child {
  border-top: 1px solid #ccc;
  border-top: 0.0625rem solid #ccc;
}

.p-latest-post__item {
  border-bottom: 1px solid #ccc;
  border-bottom: 0.0625rem solid #ccc;
}

.p-latest-post__link {
  display: block;
  padding-top: min(0.72917vw, 14px);
  padding-top: min(0.72917vw, 0.875rem);
  padding-bottom: min(1.09375vw, 21px);
  padding-bottom: min(1.09375vw, 1.3125rem);
}
@media screen and (max-width: 767px) {
  .p-latest-post__link {
    padding-top: 0.75rem;
    padding-bottom: 1rem;
  }
}

.p-latest-post__title {
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.p-latest__latest-post {
  margin-top: min(1.40625vw, 27px);
  margin-top: min(1.40625vw, 1.6875rem);
}
@media screen and (max-width: 767px) {
  .p-latest__latest-post {
    margin-top: 0.875rem;
  }
}

/* ベーススタイル */
.p-mv-media__inner {
  display: flex;
  flex-direction: row-reverse; /* Flexboxの方向を逆に */
}

@media screen and (max-width: 767px) {
  .p-mv-media__inner {
    flex-direction: column; /* 小さなスクリーンでは縦方向に並べる */
    padding-bottom: 4.0625rem;
  }
}

/* 画像のスタイル */
.p-mv-media__pic {
  position: relative;
  max-width: 65.5rem;
  width: 95.2727%;
}

@media screen and (max-width: 767px) {
  .p-mv-media__pic {
    width: 100%;
    height: clamp(15.625rem, 55.41vw, 26.5625rem);
  }
}

.p-mv-media__pic::before {
  content: "";
  display: block;
  padding-top: 74.9%;
}

@media screen and (max-width: 767px) {
  .p-mv-media__pic::before {
    padding-top: 60%;
  }
}

.p-mv-media__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキストエリアのスタイル */
.p-mv-media__body {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  background: url(../images/top/mv-media-body-bg.png) no-repeat -176% 42%/96%;
  max-width: 54.5rem;
  width: 79.2727%;
  padding-top: min(12.34375vw, 14.8125rem);
  padding-right: min(5.9375vw, 7.125rem);
}

@media screen and (max-width: 767px) {
  .p-mv-media__body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: initial;
    width: fit-content;
    height: fit-content;
    background: none;
    padding-top: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-mv__top-pic::after {
    content: "";
    background-color: #333;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

/* タイトルのスタイル */
.p-mv-media__body-title {
  font-size: 2.125rem;
  line-height: 1.5294;
  letter-spacing: 0.2059em;
  font-weight: 700;
  color: #333;
  writing-mode: vertical-lr;
  display: flex;
  flex-direction: column-reverse;
}

@media screen and (max-width: 767px) {
  .p-mv-media__body-title {
    font-size: 1.75rem;
    line-height: 1.3571;
    color: #FFFCF8;
  }
}

.p-mv-media__body-title span:first-child {
  transform: translateY(-2.5rem);
}

@media screen and (max-width: 767px) {
  .p-mv-media__body-title span:first-child {
    transform: translateY(-1.875rem);
  }
}

/* テキストコンテンツのスタイル */
.p-mv-media__body-textwrapper {
  display: flex;
  flex-direction: row-reverse;
  margin-right: min(2.70833vw, 3.25rem);
}

@media screen and (max-width: 767px) {
  .p-mv-media__body-textwrapper {
    margin-right: 1.625rem;
    margin-bottom: 2.875rem;
  }
}

.p-mv-media__body-text {
  font-size: 1.125rem;
  line-height: 1.7222;
  letter-spacing: 0.5556em;
  font-weight: 700;
  color: #333;
  writing-mode: vertical-lr;
}

@media screen and (max-width: 767px) {
  .p-mv-media__body-text {
    line-height: 1.3889;
    color: #FFFCF8;
    white-space: nowrap;
  }
}


/* ニュースエリアのスタイル */
.p-mv__news {
  width: 50%;
  display: flex;
  align-items: center;
  background-color:#FFFCF8;
  position: absolute;
  right: 0;
  bottom: 0;
  padding-left: min(3.17708vw, 3.8125rem);
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .p-mv__news {
    width: 100%;
  }
}

.p-mv__news-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  line-height: 1.3333;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  transition: ease 0.3s;
  transform: translateY(0.1875rem);
}

@media screen and (max-width: 767px) {
  .p-mv__news-title {
    font-size: 1.25rem;
    line-height: 1.2;
    transform: translateY(0);
  }
}

/* ニュースリストのスタイル */
.p-mv__news-post {
  width: 100%;
  padding-left: min(2.96875vw, 3.5625rem);
  padding-right: min(8.85417vw, 10.625rem);
}

.p-mv__news-post .p-news-post__item a {
  padding-top: min(1.61458vw, 1.9375rem);
  padding-bottom: min(1.25vw, 1.5rem);
}

@media screen and (max-width: 767px) {
  .p-mv__news-post .p-news-post__item a {
    position: relative;
    z-index: 1;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

/* トップ画像のスタイル */
.p-mv__top {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

}


@media screen and (max-width: 767px) {
  .p-mv__top {
    position: static;
  }
}


/* 画像コンテナの高さを内容に応じて調整 */
.p-mv__top-pic {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-mv__top-pic {
    position: relative;
  }
}


/* 画像が親要素の高さにフィットするように設定 */
.p-mv__top-pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  opacity: 0; /* デフォルトで非表示に */
  transition: opacity 1s ease-in-out;
}

.p-mv__top-pic img.active {
  opacity: 1; /* activeクラスが付いた画像を表示する */

}

@media screen and (max-width: 767px) {
  .p-mv__top-pic img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
}


.p-news-post__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-news-post__titlewrapper {
  margin-left: 32px;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-news-post__titlewrapper {
    margin-top: 0.125rem;
    margin-bottom: 0;
    max-width: 35.75rem;
  }
}

.p-news-post__title {
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.p-news-post__title.p-news-post__title--hover-color {
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.p-news-post__item:hover .p-news-post__title.p-news-post__title--hover-color {
  color: #f9f871;
}

.p-page-header {
  position: relative;
  width: 100%;
  margin-top: min(7.29167vw, 140px);
  margin-top: min(7.29167vw, 8.75rem);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-page-header {
    margin-top: 5rem;
  }
}

.p-page-header::after {
  content: "";
  background-color: #333;
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.p-page-header__pic img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-header__title {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFFCF8;
  padding-top: min(12.13542vw, 233px);
  padding-top: min(12.13542vw, 14.5625rem);
  padding-bottom: min(11.82292vw, 227px);
  padding-bottom: min(11.82292vw, 14.1875rem);
}
@media screen and (max-width: 767px) {
  .p-page-header__title {
    padding-top: 7.75rem;
    padding-bottom: 7.625rem;
  }
}

.p-pc-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.p-pc-nav__item {
  height: inherit;
}

.p-pc-nav__item a {
  position: relative;
  display: flex; /* Flexboxレイアウトを使用 */
  align-items: center; /* 垂直方向で中央揃え */
  justify-content: flex-start; /* 左揃え */
  height: inherit;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.p-pc-nav__item a .nav-icon {
  width: 2.5rem; /* アイコンの幅 */
  height: auto; /* 高さを自動調整 */
  margin-right: 0.3rem; /* アイコンとテキストの間にスペースを作る */
  vertical-align: middle; /* アイコンをテキストと垂直に中央揃え */
}



.p-post-navigation {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  width: min(59.375vw, 1140px);
  width: min(59.375vw, 71.25rem);
  height: clamp(88px, 10.41667vw, 200px);
  height: clamp(5.5rem, 10.41667vw, 12.5rem);
  margin-top: min(3.38542vw, 65px);
  margin-top: min(3.38542vw, 4.0625rem);
}
@media screen and (max-width: 767px) {
  .p-post-navigation {
    width: 100%;
    margin-top: 3.4375rem;
  }
}

.p-post-navigation::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  width: 0.0625rem;
  height: 100%;
  background-color: #cccccc;
}

.p-post-navigation a {
  display: block;
}

.p-post-navigation__prev,
.p-post-navigation__next {
  position: relative;
  padding-top: min(2.03125vw, 39px);
  padding-top: min(2.03125vw, 2.4375rem);
  width: min(21.51042vw, 413px);
  width: min(21.51042vw, 25.8125rem);
}
@media screen and (max-width: 767px) {
  .p-post-navigation__prev,
  .p-post-navigation__next {
    padding-top: 0.625rem;
    width: clamp(8.125rem, 29.16667vw, 14rem);
  }
}

.p-post-navigation__prev-text,
.p-post-navigation__next-text {
  color: #333;
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: min(0.625vw, 12px);
  margin-top: min(0.625vw, 0.75rem);
}

.p-sp-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.p-sp-nav__item a {
  display: block;
  width: 100%;
  text-transform: uppercase;
}
.p-sp-nav__item {
  display: flex; /* フレックスボックスで画像とテキストを横並びに */
  align-items: center; /* 画像とテキストを縦方向に中央揃え */
}

.p-sp-nav__item img {
  width: 24px; /* 画像の幅 */
  height: 24px; /* 画像の高さ */
  margin-right: 8px; /* 画像とテキストの間の余白 */
}




.p-sp-nav.is-open {
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.p-thanks {
  text-align: center;
  padding-top: 130px;
  padding-top: 8.125rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}

.p-thanks__textwrapper {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-thanks__title,
.p-thanks__text {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.75;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-thanks__title,
  .p-thanks__text {
    font-size: 1.25rem;
  }
}

.p-thanks__br {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-thanks__br {
    display: block;
  }
}

.p-thanks__btn {
  text-align: center;
}

.p-thanks__btn .c-btn {
  text-transform: uppercase;
}

.l-business-sub {
  padding-bottom: min(6.875vw, 132px);
  padding-bottom: min(6.875vw, 8.25rem);
}
@media screen and (max-width: 767px) {
  .l-business-sub {
    padding-bottom: 4.6875rem;
  }
}

.l-business {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFCF8), to(transparent));
  background: linear-gradient(to bottom, #FFFCF8 min(54.6875vw, 65.625rem), transparent min(54.6875vw, 65.625rem));
  padding-top: min(5.20833vw, 100px);
  padding-top: min(5.20833vw, 6.25rem);
}
@media screen and (max-width: 767px) {
  .l-business {
    background: -webkit-gradient(linear, left top, left bottom, from(#FFFCF8));
    background: linear-gradient(to bottom, #FFFCF8);
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.l-common-medias {
  margin-top: min(7.29167vw, 140px);
  margin-top: min(7.29167vw, 8.75rem);
  margin-bottom: min(7.44792vw, 143px);
  margin-bottom: min(7.44792vw, 8.9375rem);
}
@media screen and (max-width: 767px) {
  .l-common-medias {
    margin-top: 2.1875rem;
    margin-bottom: 2.1875rem;
  }
}

.l-company-sub1 {
  margin-top: min(2.60417vw, 50px);
  margin-top: min(2.60417vw, 3.125rem);
  margin-bottom: min(6.92708vw, 133px);
  margin-bottom: min(6.92708vw, 8.3125rem);
}
@media screen and (max-width: 767px) {
  .l-company-sub1 {
    margin-top: 2.375rem;
    margin-bottom: 4.6875rem;
  }
}

.l-company-sub2 {
  margin-top: min(6.77083vw, 130px);
  margin-top: min(6.77083vw, 8.125rem);
  margin-bottom: min(10.52083vw, 202px);
  margin-bottom: min(10.52083vw, 12.625rem);
}
@media screen and (max-width: 767px) {
  .l-company-sub2 {
    margin-top: 4.6875rem;
    margin-bottom: 6.3125rem;
  }
}

.l-contact {
  position: relative;
  padding-top: min(6.66667vw, 128px);
  padding-top: min(6.66667vw, 8rem);
  padding-bottom: min(7.23958vw, 139px);
  padding-bottom: min(7.23958vw, 8.6875rem);
}
@media screen and (max-width: 767px) {
  .l-contact {
    padding-top: 5rem;
    padding-bottom: 4.6875rem;
  }
}

.l-contact::before {
  content: "";
  background-color: #333;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Googleマップのiframeを背景に配置 */
.p-contact__map-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2; /* 背景のさらに後ろに配置 */
  pointer-events: none; /* 背景に対するクリックを無効化 */
}

@media screen and (max-width: 767px) {
  .p-contact__map-background {
    height: 100%;

  }
}

.l-container {
  margin-top: min(3.48958vw, 67px);
  margin-top: min(3.48958vw, 4.1875rem);
  margin-bottom: min(5.46875vw, 105px);
  margin-bottom: min(5.46875vw, 6.5625rem);
}
@media screen and (max-width: 767px) {
  .l-container {
    margin-top: 2.1875rem;
    margin-bottom: 4.6875rem;
  }
}

.l-footer {
  padding-top: min(4.0625vw, 78px);
  padding-top: min(4.0625vw, 4.875rem);
  padding-bottom: min(3.64583vw, 70px);
  padding-bottom: min(3.64583vw, 4.375rem);
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.l-inner {
  max-width: var(--inner-max);
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.l-inner-about {
  max-width: 800px; /* 適切な最大幅を設定 */
  margin: 0 auto; /* 左右の余白を自動で設定して中央揃え */
  text-align: center; /* テキストを中央揃え */
}

@media screen and (max-width: 767px) {
  .l-inner-about {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.l-mv {
  position: relative;
  overflow: hidden;
  margin-top: min(7.29167vw, 140px);
  margin-top: min(7.29167vw, 8.75rem);
}
@media screen and (max-width: 767px) {
  .l-mv {
    margin-top: 5rem;
  }
}

.u-br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-br-sp {
    display: inline;
  }
}

.u-pt-adjust {
  padding-top: min(2.44792vw, 47px);
  padding-top: min(2.44792vw, 2.9375rem);
}
/*# sourceMappingURL=styles.css.map */
