@charset "UTF-8";
/* reset
---------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, button,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

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

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

pre {
  white-space: pre-wrap;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* common
---------------------------------------------------------------------------- */
/* タイトル系
---------------------------------------------------------------------------- */
/* common
---------------------------------------------------------------------------- */
/* フェードインエフェクト
---------------------------------------------------------------------------- */
.fadeIn {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  -webkit-transition: all 1s 0.5s;
  transition: all 1s 0.5s;
}
.fadeIn.isActive {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* parts
-----------------------------------------------------------------------------*/
/* base
---------------------------------------------------------------------------- */
/*------------- General Elements -------------*/
html {
  font-size: 62.5%;
  height: 100%;
}

body {
  height: 100%;
  font-family: "BIZ UDPGothic", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 500;
  color: #000000;
  font-size: 1.6rem;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

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

img {
  max-width: 100%;
}

* {
  word-break: normal;
}

main {
  margin-bottom: 50px;
}

.contents-inner {
  padding-top: 140px;
}
@media screen and (max-width: 768px) {
  .contents-inner {
    padding-top: 60px;
  }
}

.inner {
  width: min(100% - 60px, 1200px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding: 0 20px;
  }
}

.bg-gray {
  width: 100vw !important;
  margin: 0 calc(50% - 50vw) !important;
  background-color: #ABABB2;
  padding: 80px 0;
}

.is-bg {
  background-image: url("../../assets/images/common/bg-texture-gray.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .is-bg {
    padding: 50px 0;
  }
}

/* ---------- カスタムカラーパレット ---------- */
.has-black-color {
  color: #000000;
}

.has-white-color {
  color: #FFFFFF;
}

.has-gray-color {
  color: #888888;
}

.has-main-color, .has-main-color-color {
  color: #FF34CC;
}

.has-blue-color {
  color: #1E90FF;
}

.has-light-blue-color {
  color: #00BFFF;
}

.has-navy-color {
  color: #000080;
}

.has-brown-color {
  color: #8B4513;
}

.has-orange-color {
  color: #FF8C00;
}

.has-light-orange-color {
  color: #FFA500;
}

.has-green-color {
  color: #32CD32;
}

.has-red-color {
  color: #FF4500;
}

.has-yellow-color {
  color: #FFD700;
}

/* ---------- breadcrumb ---------- */
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  list-style: none;
  font-size: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 55px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    font-size: 3.1944444444vw;
    margin-bottom: 35px;
  }
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}
.breadcrumb .breadcrumb-item.active {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: hidden;
}

/* ---------- ブロックエディタのスタイル ---------- */
.block-contents p {
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .block-contents p {
    font-size: 16px;
  }
}
.block-contents p a {
  text-decoration: underline;
  color: #404040;
}
.block-contents p a:hover {
  color: #FF34CC;
  opacity: 1;
}
.block-contents p a.external {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block-contents p a.external:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 16px;
  background: url(../../assets/images/common/icon-blank.svg) no-repeat center/contain;
  margin-left: 5px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .wp-block-button {
    margin: auto !important;
  }
}

@media screen and (max-width: 900px) {
  .wp-block-buttons {
    text-align: center;
  }
}
.wp-block-buttons .wp-block-button__link {
  background-color: #404040;
  border: 2px solid #404040;
  max-width: 300px;
  width: 300px !important;
  max-height: 50px;
  padding-right: 2em;
  position: relative;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .wp-block-buttons .wp-block-button__link {
    font-size: 13px;
    width: 210px !important;
    max-height: 30px;
  }
}
.wp-block-buttons .wp-block-button__link::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 21px;
  background: url("../../assets/images/common/arrow-btn.svg") no-repeat center center;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .wp-block-buttons .wp-block-button__link::after {
    width: 9px;
    height: 15px;
  }
}
.wp-block-buttons .wp-block-button__link::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: -100%;
  top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: -1;
}
.wp-block-buttons .wp-block-button__link:hover::before {
  left: 0;
}
.wp-block-buttons .wp-block-button__link:hover {
  color: #404040;
}

.wp-block-cover {
  min-height: initial !important;
  overflow: initial !important;
  padding: 80px 0 60px !important;
}
@media screen and (max-width: 768px) {
  .wp-block-cover {
    padding: 40px 0 10px !important;
  }
}
.wp-block-cover .wp-block-cover__image-background {
  width: 100vw !important;
  margin: 0 calc(50% - 50vw) !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  z-index: -1 !important;
  min-height: initial !important;
  border-radius: initial;
}
.wp-block-cover__inner-container {
  position: relative;
  z-index: 1;
}
.wp-block-cover .wp-block-embed iframe {
  display: block;
  margin: 0 auto;
  aspect-ratio: 16/9;
  width: 900px;
  height: 506px;
}
@media screen and (max-width: 900px) {
  .wp-block-cover .wp-block-embed iframe {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .wp-block-cover .wp-block-embed {
    min-height: initial !important;
    margin-bottom: 20px;
  }
}
.wp-block-cover img {
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .wp-block-cover img {
    border-radius: 20px;
  }
}

ul.wp-block-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  ul.wp-block-list li {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  ul.wp-block-list li {
    font-size: 3.75vw;
    padding-left: 18px;
  }
}
ul.wp-block-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background-color: #FF34CC;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  ul.wp-block-list li::before {
    top: 7px;
  }
}
ul.wp-block-list li a {
  text-decoration: none;
  color: inherit;
}
ul.wp-block-list li a.pdf {
  position: relative;
  display: inline;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4em;
}
ul.wp-block-list li a.pdf::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 16px;
  background: url("../../assets/images/common/icon-pdf.svg") no-repeat center/contain;
  margin-left: 5px;
  vertical-align: middle;
}
ul.wp-block-list li a:hover {
  color: #FF34CC;
  opacity: 1;
}

ol.wp-block-list {
  counter-reset: my-counter;
  text-indent: -28px;
}
@media screen and (max-width: 768px) {
  ol.wp-block-list {
    text-indent: -20px;
  }
}
ol.wp-block-list li {
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  ol.wp-block-list li {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  ol.wp-block-list li {
    font-size: 3.75vw;
    padding-left: 18px;
  }
}
ol.wp-block-list li::before {
  counter-increment: my-counter;
  content: counter(my-counter);
  margin-right: 16px;
  color: #FF34CC;
}
@media screen and (max-width: 768px) {
  ol.wp-block-list li::before {
    font-size: 3.75vw;
    margin-right: 11px;
  }
}
ol.wp-block-list li ul.wp-block-list {
  counter-reset: child-counter;
  padding-left: 1.5em;
}
ol.wp-block-list li ul.wp-block-list li {
  margin-top: 5px;
  margin-bottom: 5px;
}
ol.wp-block-list li ul.wp-block-list li::before {
  counter-increment: child-counter;
  content: counter(child-counter, lower-alpha);
  color: #9B9B9B;
  position: initial;
  background: none;
}

.wp-element-caption {
  font-size: 14px;
  margin-top: 0 !important;
}
@media screen and (max-width: 768px) {
  .wp-element-caption {
    font-size: 12px;
  }
}

/* ---------- wp-pagenavi ---------- */
.pagination-wrap {
  text-align: center;
  margin-top: 40px;
}
.pagination-wrap .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "archivo-narrow-variable", sans-serif;
}
.pagination-wrap .wp-pagenavi a, .pagination-wrap .wp-pagenavi span.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 5px;
  width: 50px;
  height: 50px;
  border: 1px solid #9B9B9B;
  text-decoration: none;
  color: #404040;
  position: relative;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .pagination-wrap .wp-pagenavi a, .pagination-wrap .wp-pagenavi span.current {
    width: 40px;
    height: 40px;
    margin: 0 3px;
  }
}
.pagination-wrap .wp-pagenavi a.current, .pagination-wrap .wp-pagenavi span.current.current {
  background-color: #404040;
  color: #fff;
  border-color: #404040;
}
.pagination-wrap .wp-pagenavi a.nextpostslink {
  color: transparent;
  font-size: 0;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .pagination-wrap .wp-pagenavi a.nextpostslink {
    margin-left: 18px;
    margin-right: 0;
  }
}
.pagination-wrap .wp-pagenavi a.nextpostslink::after {
  content: "";
  display: block;
  width: 13px;
  height: 22px;
  background: url("../../assets/images/common/arrow-btn-black-next.svg") no-repeat center center;
  background-size: contain;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .pagination-wrap .wp-pagenavi a.nextpostslink::after {
    width: 9px;
    height: 16px;
  }
}
.pagination-wrap .wp-pagenavi a.nextpostslink:hover {
  background-color: #404040;
  opacity: 1;
}
.pagination-wrap .wp-pagenavi a.nextpostslink:hover:after {
  background: url(../../assets/images/common/arrow-btn-white-next.svg) no-repeat center center;
}
.pagination-wrap .wp-pagenavi a.previouspostslink {
  color: transparent;
  font-size: 0;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .pagination-wrap .wp-pagenavi a.previouspostslink {
    margin-right: 18px;
    margin-left: 0;
  }
}
.pagination-wrap .wp-pagenavi a.previouspostslink::after {
  content: "";
  display: block;
  width: 13px;
  height: 22px;
  background: url("../../assets/images/common/arrow-btn-black-prev.svg") no-repeat center center;
  background-size: contain;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .pagination-wrap .wp-pagenavi a.previouspostslink::after {
    width: 9px;
    height: 16px;
  }
}
.pagination-wrap .wp-pagenavi a.previouspostslink:hover {
  background-color: #404040;
  opacity: 1;
}
.pagination-wrap .wp-pagenavi a.previouspostslink:hover:after {
  background: url(../../assets/images/common/arrow-btn-white-prev.svg) no-repeat center center;
}
.pagination-wrap .wp-pagenavi span.extend {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ---------- Flexible Table ---------- */
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  background-color: #404040 !important;
  color: #fff;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  padding: 5px !important;
}
@media screen and (max-width: 768px) {
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
    padding: 7px !important;
  }
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th, .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  font-size: 18px !important;
}
@media screen and (max-width: 768px) {
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th, .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    font-size: 14px !important;
  }
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  padding: 11px !important;
}
@media screen and (max-width: 768px) {
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    padding: 15px !important;
  }
}

/* ---------- post-navigation ---------- */
.post-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 30px 0 70px;
}
@media screen and (max-width: 768px) {
  .post-navigation {
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .post-navigation::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background-color: #000;
  }
}
@media screen and (max-width: 768px) {
  .post-navigation .page {
    position: relative;
  }
}
.post-navigation .page a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}
.post-navigation .page a:before, .post-navigation .page a:after {
  content: none;
}
.post-navigation .page.prev-post a {
  border-right: 1px solid #000;
  border-radius: 0;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .post-navigation .page.prev-post a {
    font-size: 14px;
    border: none;
    padding-right: 0;
  }
}
.post-navigation .page.prev-post a:before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(../../assets/images/common/arrow-circle-prev.svg) no-repeat center center;
  background-size: contain;
  margin-right: 10px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .post-navigation .page.prev-post a:before {
    width: 35px;
    height: 35px;
  }
}
.post-navigation .page.prev-post a:hover:before {
  background: url(../../assets/images/common/arrow-circle-bk-prev.svg) no-repeat center center;
}
@media screen and (max-width: 768px) {
  .post-navigation .page.prev-post a:hover:before {
    background: url(../../assets/images/common/arrow-circle-bk-prev-sp.svg) no-repeat center center;
    width: 35px;
    height: 35px;
  }
}
.post-navigation .page.next-post a {
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .post-navigation .page.next-post a {
    font-size: 14px;
  }
}
.post-navigation .page.next-post a:after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(../../assets/images/common/arrow-circle-next.svg) no-repeat center center;
  background-size: contain;
  margin-left: 10px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .post-navigation .page.next-post a:after {
    width: 35px;
    height: 35px;
  }
}
.post-navigation .page.next-post a:hover:after {
  background: url(../../assets/images/common/arrow-circle-bk-next.svg) no-repeat center center;
}
@media screen and (max-width: 768px) {
  .post-navigation .page.next-post a:hover:after {
    background: url(../../assets/images/common/arrow-circle-bk-next-sp.svg) no-repeat center center;
    width: 35px;
    height: 35px;
  }
}

/* module
---------------------------------------------------------------------------- */
/* RWD表示切り替え
---------------------------------------------------------------------------- */
@media all and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
/* フォントサイズ
---------------------------------------------------------------------------- */
.fs50 {
  font-size: 5rem !important;
}

.fs49 {
  font-size: 4.9rem !important;
}

.fs48 {
  font-size: 4.8rem !important;
}

.fs47 {
  font-size: 4.7rem !important;
}

.fs46 {
  font-size: 4.6rem !important;
}

.fs45 {
  font-size: 4.5rem !important;
}

.fs44 {
  font-size: 4.4rem !important;
}

.fs43 {
  font-size: 4.3rem !important;
}

.fs42 {
  font-size: 4.2rem !important;
}

.fs41 {
  font-size: 4.1rem !important;
}

.fs40 {
  font-size: 4rem !important;
}

.fs39 {
  font-size: 3.9rem !important;
}

.fs38 {
  font-size: 3.8rem !important;
}

.fs37 {
  font-size: 3.7rem !important;
}

.fs36 {
  font-size: 3.6rem !important;
}

.fs35 {
  font-size: 3.5rem !important;
}

.fs34 {
  font-size: 3.4rem !important;
}

.fs33 {
  font-size: 3.3rem !important;
}

.fs32 {
  font-size: 3.2rem !important;
}

.fs31 {
  font-size: 3.1rem !important;
}

.fs30 {
  font-size: 3rem !important;
}

.fs29 {
  font-size: 2.9rem !important;
}

.fs28 {
  font-size: 2.8rem !important;
}

.fs27 {
  font-size: 2.7rem !important;
}

.fs26 {
  font-size: 2.6rem !important;
}

.fs25 {
  font-size: 2.5rem !important;
}

.fs24 {
  font-size: 2.4rem !important;
}

.fs23 {
  font-size: 2.3rem !important;
}

.fs22 {
  font-size: 2.2rem !important;
}

.fs21 {
  font-size: 2.1rem !important;
}

.fs20 {
  font-size: 2rem !important;
}

.fs19 {
  font-size: 1.9rem !important;
}

.fs18 {
  font-size: 1.8rem !important;
}

.fs17 {
  font-size: 1.7rem !important;
}

.fs16 {
  font-size: 1.6rem !important;
}

.fs15 {
  font-size: 1.5rem !important;
}

.fs14 {
  font-size: 1.4rem !important;
}

.fs13 {
  font-size: 1.3rem !important;
}

.fs12 {
  font-size: 1.2rem !important;
}

.fs11 {
  font-size: 1.1rem !important;
}

.fs10 {
  font-size: 1rem !important;
}

.fs9 {
  font-size: 0.9rem !important;
}

.fs8 {
  font-size: 0.8rem !important;
}

.fs7 {
  font-size: 0.7rem !important;
}

.fs6 {
  font-size: 0.6rem !important;
}

@media screen and (max-width: 768px) {
  .spfs50 {
    font-size: 6.6666666667vw !important;
  }
  .spfs49 {
    font-size: 6.5333333333vw !important;
  }
  .spfs48 {
    font-size: 6.4vw !important;
  }
  .spfs47 {
    font-size: 6.2666666667vw !important;
  }
  .spfs46 {
    font-size: 6.1333333333vw !important;
  }
  .spfs45 {
    font-size: 6vw !important;
  }
  .spfs44 {
    font-size: 5.8666666667vw !important;
  }
  .spfs43 {
    font-size: 5.7333333333vw !important;
  }
  .spfs42 {
    font-size: 5.6vw !important;
  }
  .spfs41 {
    font-size: 5.4666666667vw !important;
  }
  .spfs40 {
    font-size: 5.3333333333vw !important;
  }
  .spfs39 {
    font-size: 5.2vw !important;
  }
  .spfs38 {
    font-size: 5.0666666667vw !important;
  }
  .spfs37 {
    font-size: 4.9333333333vw !important;
  }
  .spfs36 {
    font-size: 4.8vw !important;
  }
  .spfs35 {
    font-size: 4.6666666667vw !important;
  }
  .spfs34 {
    font-size: 4.5333333333vw !important;
  }
  .spfs33 {
    font-size: 4.4vw !important;
  }
  .spfs32 {
    font-size: 4.2666666667vw !important;
  }
  .spfs31 {
    font-size: 4.1333333333vw !important;
  }
  .spfs30 {
    font-size: 4vw !important;
  }
  .spfs29 {
    font-size: 3.8666666667vw !important;
  }
  .spfs28 {
    font-size: 3.7333333333vw !important;
  }
  .spfs27 {
    font-size: 3.6vw !important;
  }
  .spfs26 {
    font-size: 3.4666666667vw !important;
  }
  .spfs25 {
    font-size: 3.3333333333vw !important;
  }
  .spfs24 {
    font-size: 3.2vw !important;
  }
  .spfs23 {
    font-size: 3.0666666667vw !important;
  }
  .spfs22 {
    font-size: 2.9333333333vw !important;
  }
  .spfs21 {
    font-size: 2.8vw !important;
  }
  .spfs20 {
    font-size: 2.6666666667vw !important;
  }
  .spfs19 {
    font-size: 2.5333333333vw !important;
  }
  .spfs18 {
    font-size: 2.4vw !important;
  }
  .spfs17 {
    font-size: 2.2666666667vw !important;
  }
  .spfs16 {
    font-size: 2.1333333333vw !important;
  }
  .spfs15 {
    font-size: 2vw !important;
  }
  .spfs14 {
    font-size: 1.8666666667vw !important;
  }
  .spfs13 {
    font-size: 1.7333333333vw !important;
  }
  .spfs12 {
    font-size: 1.6vw !important;
  }
  .spfs11 {
    font-size: 1.4666666667vw !important;
  }
  .spfs10 {
    font-size: 1.3333333333vw !important;
  }
  .spfs9 {
    font-size: 1.2vw !important;
  }
  .spfs8 {
    font-size: 1.0666666667vw !important;
  }
  .spfs7 {
    font-size: 0.9333333333vw !important;
  }
  .spfs6 {
    font-size: 0.8vw !important;
  }
}
/* print
---------------------------------------------------------------------------- */
/* 印刷設定
---------------------------------------------------------------------------- */
@media print {
  * html body {
    zoom: 70%;
  }
}
/* header
---------------------------------------------------------------------------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #FAFAFA;
  z-index: 100;
}
#header .header-inner {
  width: min(100% - 60px, 1205px);
  margin: 0 auto;
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  #header .header-inner {
    height: 60px;
    width: 100%;
    padding: 0 20px;
  }
}
#header .header-logo img {
  height: 90px;
  width: auto;
}
@media screen and (max-width: 1050px) {
  #header .header-logo img {
    max-height: 50px;
  }
}
@media screen and (max-width: 768px) {
  #header .header-logo img {
    height: 40px;
  }
}
#header .header-nav {
  position: relative;
}
@media screen and (max-width: 900px) {
  #header .header-nav {
    display: none;
  }
}
#header .header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#header .header-nav-list li {
  position: relative;
}
#header .header-nav-list li a {
  color: #000000;
  text-decoration: none;
  font-size: min(1.1vw, 14px);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1050px) {
  #header .header-nav-list li a {
    font-size: 12px;
  }
}
#header .header-nav-list li a::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  bottom: 2px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
#header .header-nav-list li a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
#header .header-nav-list li.has-submenu {
  position: relative;
}
#header .header-nav-list li.has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
#header .header-nav-list li.has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  list-style: none;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
  width: 100%;
}
#header .header-nav-list li.has-submenu .submenu li {
  margin: 0;
}
#header .header-nav-list li.has-submenu .submenu li a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 12px;
  text-align: left;
}
#header .header-nav-list li.has-submenu .submenu li a::before {
  left: 16px;
  width: calc(100% - 32px);
}
#header .header-nav-list li.has-submenu .submenu li a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
#header .is-blank {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .is-blank::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../../assets/images/common/icon-blank.svg) no-repeat center center;
  background-size: contain;
  margin: 0 0 4px 6px;
}
@media screen and (max-width: 768px) {
  #header .is-blank::after {
    margin: 0;
    position: absolute;
    right: 0;
    top: 40%;
  }
}
#header .header-hamburger {
  width: 22px;
  height: 40px;
  position: relative;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  /* ここにCSS変数を定義 */
  --transition: 0.3s var(--ease-out-quad);
  --ease-out-quad: cubic-bezier(.25, .46, .45, .94);
}
@media screen and (min-width: 901px) {
  #header .header-hamburger {
    display: none;
  }
}
#header .header-hamburger:before, #header .header-hamburger:after {
  content: "";
  width: 18px;
  height: 2px;
  background-color: #000000;
  -webkit-transition: -webkit-transform var(--transition);
  transition: -webkit-transform var(--transition);
  transition: transform var(--transition);
  transition: transform var(--transition), -webkit-transform var(--transition);
}
#header .header-hamburger:before {
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
#header .header-hamburger:after {
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
#header .header-hamburger.is-active:before {
  -webkit-transform: rotate(25deg) translate(6%, 0);
          transform: rotate(25deg) translate(6%, 0);
  -webkit-transition: -webkit-transform var(--transition);
  transition: -webkit-transform var(--transition);
  transition: transform var(--transition);
  transition: transform var(--transition), -webkit-transform var(--transition);
}
#header .header-hamburger.is-active:after {
  -webkit-transform: rotate(-25deg) translate(6%, 0);
          transform: rotate(-25deg) translate(6%, 0);
  -webkit-transition: -webkit-transform var(--transition);
  transition: -webkit-transform var(--transition);
  transition: transform var(--transition);
  transition: transform var(--transition), -webkit-transform var(--transition);
}
#header .header-hamburger.is-active .header-hamburger__line {
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: transform 1.5s ease, opacity 1.5s ease;
  transition: transform 1.5s ease, opacity 1.5s ease, -webkit-transform 1.5s ease;
}
#header .header-hamburger__line {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #000000;
  -webkit-transition: opacity var(--transition), -webkit-transform var(--transition);
  transition: opacity var(--transition), -webkit-transform var(--transition);
  transition: transform var(--transition), opacity var(--transition);
  transition: transform var(--transition), opacity var(--transition), -webkit-transform var(--transition);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
#header .header-sp-close {
  width: 22px;
  height: 40px;
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  --transition: 0.6s ease;
}
#header .header-sp-close:before, #header .header-sp-close:after {
  content: "";
  width: 18px;
  height: 2px;
  background-color: #000000;
}
#header .header-sp-close:before {
  -webkit-transform: rotate(45deg) translate(0, 0);
          transform: rotate(45deg) translate(0, 0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
#header .header-sp-close:after {
  -webkit-transform: rotate(-45deg) translate(3%, -2%);
          transform: rotate(-45deg) translate(3%, -2%);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
#header .header-sp-close__line {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #000000;
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: opacity var(--transition), -webkit-transform var(--transition);
  transition: opacity var(--transition), -webkit-transform var(--transition);
  transition: transform var(--transition), opacity var(--transition);
  transition: transform var(--transition), opacity var(--transition), -webkit-transform var(--transition);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
#header body:not(.menu-open) .header-hamburger .header-hamburger__line {
  opacity: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
#header .header-sp-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #f5f5f5;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 900px) {
  #header .header-sp-menu {
    display: block;
  }
}
#header .header-sp-menu.is-open {
  opacity: 1;
  visibility: visible;
}
#header .header-sp-menu-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  padding: 0;
}
#header .header-sp-top {
  width: 100%;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  height: 60px;
}
#header .header-sp-logo img {
  height: 40px;
  width: auto;
}
#header .header-sp-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 15px;
  font-size: 14px;
  font-weight: bold;
  color: #000000;
}
#header .header-sp-nav {
  padding: 20px;
}
#header .header-sp-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#header .header-sp-nav-list > li {
  border-bottom: 1px solid #ddd;
}
#header .header-sp-nav-list > li:first-child {
  border-top: 1px solid #ddd;
}
#header .header-sp-nav-list > li > a,
#header .header-sp-nav-list > li > button {
  display: block;
  padding: 18px 15px;
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#header .header-sp-nav-list > li.has-children > button {
  position: relative;
}
#header .header-sp-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .header-sp-toggle .toggle-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  right: 0;
}
#header .header-sp-toggle .toggle-icon::before, #header .header-sp-toggle .toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #404040;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#header .header-sp-toggle .toggle-icon::before {
  width: 15px;
  height: 2px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#header .header-sp-toggle .toggle-icon::after {
  width: 2px;
  height: 15px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#header .header-sp-toggle.is-open .toggle-icon::after {
  opacity: 0;
}
#header .header-sp-submenu {
  display: none;
}
#header .header-sp-submenu li:last-child {
  border-bottom: none;
}
#header .header-sp-submenu li a {
  display: block;
  padding: 15px;
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .header-sp-submenu li a::after {
  content: "";
  display: block;
  width: 8px;
  height: 13px;
  background-image: url(../../assets/images/common/arrow-right.svg);
  background-size: auto;
  background-repeat: no-repeat;
  margin-left: 10px;
}
#header .header-sp-button {
  display: block;
  margin-top: 15px;
  padding: 15px 20px;
  background: #d0d0d0;
  color: #000000;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#header .header-sp-button:hover {
  background: #b7b7b7;
}
#header li.contact {
  border: 2px solid #000;
  border-radius: 30px;
  margin-top: -14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: border-color 0.9s ease;
  transition: border-color 0.9s ease;
}
@media screen and (max-width: 900px) {
  #header li.contact {
    width: 180px;
    margin: 30px auto 0;
    border: 1px solid;
  }
}
#header li.contact::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid #FF34CC;
  border-radius: 30px;
  clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
  -webkit-transition: clip-path 0.4s ease-out;
  transition: clip-path 0.4s ease-out;
}
#header li.contact:hover {
  border-color: transparent;
}
#header li.contact:hover::before {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
#header li.contact a {
  background: none;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 26px;
  color: #000;
  font-size: min(1vw, 14px);
  font-weight: 700;
  position: relative;
  vertical-align: middle;
  border-radius: 30px;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 900px) {
  #header li.contact a {
    padding: 7px;
    text-align: center;
    font-size: 16px;
  }
}
#header li.contact a::before {
  content: none;
}
#header li.contact:hover a {
  color: #FF34CC;
}

body.menu-open {
  overflow: hidden;
}

.request-btn a {
  position: fixed;
  right: 0;
  bottom: -2%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #404040;
  color: #fff;
  padding: 14px 27px 14px 18px;
  border-radius: 50px 0 0 50px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: bottom 0.3s ease;
  transition: bottom 0.3s ease;
}
@media screen and (max-width: 768px) {
  .request-btn a {
    padding: 6px 8px 6px 9px;
  }
}
.request-btn a:hover {
  color: #FF34CC;
  opacity: 1;
}
.request-btn-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 68px;
  height: 68px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .request-btn-icon {
    width: 29px;
    height: 29px;
  }
}
.request-btn-icon img {
  width: 30px;
  height: 29px;
}
@media screen and (max-width: 768px) {
  .request-btn-icon img {
    width: 13px;
    height: 12px;
  }
}
.request-btn-text p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .request-btn-text p {
    font-size: 13px;
  }
}

/* footer
---------------------------------------------------------------------------- */
#footer {
  background: #eee;
  padding: 25px 30px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 24px 20px 30px;
  }
}
#footer .footer-inner {
  max-width: 1205px;
  margin: 0 auto;
}
#footer .footer-logo-area {
  margin-bottom: 20px;
}
#footer .footer-logo-area .footer-logo {
  max-width: 250px;
  height: auto;
}
@media screen and (max-width: 768px) {
  #footer .footer-logo-area .footer-logo {
    max-width: 190px;
  }
}
#footer .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2em;
  margin: 0 auto 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #C4C4C4;
}
@media screen and (max-width: 768px) {
  #footer .footer-nav {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-nav-pc {
    display: none;
  }
}
#footer .footer-nav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #footer .footer-nav-sp {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 4px 0;
  }
}
#footer .footer-nav li a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: relative;
  padding-bottom: 12px;
}
@media screen and (max-width: 768px) {
  #footer .footer-nav li a {
    font-size: 12px;
  }
}
#footer .footer-nav li a::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  bottom: 2px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
#footer .footer-nav li a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
#footer .footer-links-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #footer .footer-links-area {
    display: block;
  }
}
#footer .footer-links-area .copyright {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  #footer .footer-links-area .copyright {
    font-size: 10px;
  }
}
#footer .footer-links-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
}
@media screen and (max-width: 768px) {
  #footer .footer-links-list {
    margin-bottom: 4.1666666667vw;
  }
}
#footer .footer-links-list li a {
  font-size: 12px;
  position: relative;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #footer .footer-links-list li a {
    font-size: 10px;
  }
}
#footer .footer-links-list li a::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  bottom: 2px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
#footer .footer-links-list li a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/* ---------- page-top ---------- */
.page-top {
  width: 60px;
  height: 60px;
  margin-left: auto;
  border-radius: 50%;
  background-color: #404040;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .page-top {
    width: 40px;
    height: 40px;
    margin-bottom: -34px;
  }
}
.page-top a.goTop {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: block;
  text-align: center;
}
.page-top a.goTop img {
  width: 20px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .page-top a.goTop img {
    width: 16px;
  }
}
.page-top a.goTop img.original {
  z-index: 2;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.page-top a.goTop img.clone {
  z-index: 1;
  -webkit-transform: translate(-50%, 300%);
          transform: translate(-50%, 300%);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.page-top a.goTop:hover img.original {
  -webkit-animation: origMoveUp 1s cubic-bezier(0.25, 0.9, 0.25, 1) forwards;
          animation: origMoveUp 1s cubic-bezier(0.25, 0.9, 0.25, 1) forwards;
}
.page-top a.goTop:hover img.clone {
  -webkit-animation: cloneFromBelow 1.2s cubic-bezier(0.25, 0.9, 0.25, 1) 0.35s forwards;
          animation: cloneFromBelow 1.2s cubic-bezier(0.25, 0.9, 0.25, 1) 0.35s forwards;
}

@-webkit-keyframes origMoveUp {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  60% {
    -webkit-transform: translate(-50%, -500%);
            transform: translate(-50%, -500%);
  }
  100% {
    -webkit-transform: translate(-50%, -500%);
            transform: translate(-50%, -500%);
  }
}

@keyframes origMoveUp {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  60% {
    -webkit-transform: translate(-50%, -500%);
            transform: translate(-50%, -500%);
  }
  100% {
    -webkit-transform: translate(-50%, -500%);
            transform: translate(-50%, -500%);
  }
}
@-webkit-keyframes cloneFromBelow {
  0% {
    -webkit-transform: translate(-50%, 300%);
            transform: translate(-50%, 300%);
  }
  60% {
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@keyframes cloneFromBelow {
  0% {
    -webkit-transform: translate(-50%, 300%);
            transform: translate(-50%, 300%);
  }
  60% {
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
/* pages
-----------------------------------------------------------------------------*/
/* ---------- #page ---------- */
#page {
  padding: 200px 0 100px;
}
@media screen and (max-width: 768px) {
  #page {
    padding: 73px 0 50px;
  }
}
#page.company, #page.product {
  padding-bottom: 0;
}
#page h1 {
  position: relative;
  padding-left: 44px;
  font-size: 40px;
  line-height: 1;
  margin-bottom: clamp(20px, 4vw, 80px);
  font-family: "Archivo Narrow", "BIZ UDPGothic", sans-serif;
}
@media screen and (max-width: 768px) {
  #page h1 {
    font-size: 7.5vw;
    padding-left: 32px;
  }
}
#page h1::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 28px;
  background: url("../../assets/images/common/icon-triangle.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #page h1::before {
    width: 15px;
    height: 20px;
  }
}
#page h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #page h2 {
    font-size: 4.7222222222vw;
    margin-bottom: 18px;
  }
}
#page h3 {
  position: relative;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #page h3 {
    font-size: 4.3055555556vw;
    margin-bottom: 18px;
  }
}
#page h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #C7C7C7;
}
#page h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100px;
  height: 2px;
  background-color: #FF34CC;
  z-index: 10;
}
#page h4 {
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #page h4 {
    font-size: 3.75vw;
    margin-bottom: 18px;
  }
}
#page h4::before {
  content: "";
  display: block;
  width: 5px;
  height: 22px;
  background: -webkit-gradient(linear, left top, left bottom, from(#B4B4B4), to(#3C3C3C));
  background: linear-gradient(to bottom, #B4B4B4 0%, #3C3C3C 100%);
}
#page .post-date {
  font-family: "archivo-narrow-variable", sans-serif;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #page .collaboration-works-item {
    margin-bottom: 20px;
  }
}
#page .collaboration-works-item h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #page .collaboration-works-item h2 {
    font-size: 3.75vw;
  }
}
#page .collaboration-works-item .date {
  font-family: "archivo-narrow-variable", sans-serif;
  font-size: 14px;
  margin: 0 0 4px;
}
@media screen and (max-width: 768px) {
  #page .collaboration-works-item .date {
    font-size: 3.1944444444vw;
  }
}
#page .block-contents figure {
  text-align: center;
}
#page .block-contents figure img {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #page .block-contents figure img {
    margin-bottom: 20px;
  }
}
#page .block-contents p {
  margin-bottom: 30px;
}
#page .block-contents p.has-large-font-size {
  font-size: 26px !important;
}
@media screen and (max-width: 768px) {
  #page .block-contents p.has-large-font-size {
    font-size: 18px !important;
  }
}
#page .block-contents p.has-medium-font-size {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #page .block-contents p.has-medium-font-size {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 768px) {
  #page .block-contents p {
    font-size: 3.75vw;
    line-height: 1.5;
    margin-bottom: 18px;
  }
}
#page.medical-use .medical-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
#page.medical-use .medical-modal.is-active {
  display: block;
}
#page.medical-use .medical-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(118, 118, 118, 0.5);
  backdrop-filter: blur(30px) brightness(1.15);
}
#page.medical-use .medical-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 30px;
  width: 100%;
  max-width: 800px;
  padding: 90px 40px;
  text-align: center;
  -webkit-box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
          box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #page.medical-use .medical-modal__content {
    width: 90%;
    padding: 85px 24px;
  }
}
#page.medical-use .medical-modal__close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border: 1px solid #404040;
  border-radius: 30px;
}
#page.medical-use .medical-modal__close::before, #page.medical-use .medical-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background-color: #404040;
  border-radius: 2px;
  -webkit-transform-origin: center;
          transform-origin: center;
}
#page.medical-use .medical-modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
#page.medical-use .medical-modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
#page.medical-use .medical-modal__close:hover::before, #page.medical-use .medical-modal__close:hover::after {
  background-color: #000;
}
#page.medical-use .medical-modal__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #page.medical-use .medical-modal__title {
    font-size: 4.7222222222vw;
  }
}
#page.medical-use .medical-modal__text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #page.medical-use .medical-modal__text {
    font-size: 3.6111111111vw;
  }
}
#page .wp-block-columns {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#page .wp-block-columns .wp-block-column img {
  border-radius: 30px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #page .wp-block-columns .wp-block-column img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  #page .wp-block-columns.is-reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#page .wp-block-image.size-large img {
  width: 100% !important;
  aspect-ratio: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
#page .wp-block-image.size-medium img {
  width: 900px;
  max-height: 506px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #page .wp-block-image.is-resized img {
    max-height: 189px !important;
  }
}
@media screen and (max-width: 768px) {
  #page .wp-block-image img {
    max-height: 189px !important;
  }
}
#page .wp-block-image figcaption {
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  #page .wp-block-image figcaption {
    font-size: 2.7777777778vw;
  }
}

/* ---------- collaboration-works ---------- */
.collaboration-works-contents .title {
  font-size: 46px;
  margin-bottom: 50px;
}
.collaboration-works-contents .wp-block-buttons {
  text-align: right;
}
@media screen and (max-width: 900px) {
  .collaboration-works-contents .wp-block-buttons {
    text-align: center;
  }
}
.collaboration-works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 55px;
}
@media screen and (min-width: 901px) and (max-width: 1275px) {
  .collaboration-works-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 13px;
  }
}
@media screen and (max-width: 900px) {
  .collaboration-works-list {
    display: block;
  }
}
.collaboration-works-item {
  width: 33.3333333333%;
  max-width: 380px;
  background: #FAFAFA;
  border-radius: 10px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1270px) and (min-width: 769px) {
  .collaboration-works-item {
    width: 30%;
  }
}
@media screen and (max-width: 900px) {
  .collaboration-works-item {
    width: 100%;
    max-width: initial;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .collaboration-works-item {
    padding: 25px;
  }
}
.collaboration-works-item a {
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.collaboration-works-item a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.collaboration-works-item a:hover h2,
.collaboration-works-item a:hover h4 {
  color: #FF34CC;
}
.collaboration-works-item h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}
.collaboration-works-item p {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .collaboration-works-item p {
    font-size: 14px;
  }
}
.collaboration-works-img {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  width: 100%;
  aspect-ratio: 276/169;
}
@media screen and (max-width: 900px) {
  .collaboration-works-img {
    margin: 0 auto 20px;
    aspect-ratio: initial;
  }
}
.collaboration-works-img img {
  margin: 0 auto 20px;
  display: block;
  width: 100%;
  height: 168px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 900px) {
  .collaboration-works-img img {
    height: auto;
  }
}
@media screen and (max-width: 450px) {
  .collaboration-works-img img {
    max-height: 168px;
  }
}

.details.collaboration .post-content {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .details.collaboration .post-content {
    margin-bottom: 80px;
  }
}
.details.collaboration .wp-block-buttons {
  text-align: center;
}

/* ---------- product-service ---------- */
.products-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.products-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 15px);
          flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  max-width: 550px;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .products-item {
    margin-bottom: 25px;
  }
}
.products-item:last-of-type {
  margin-bottom: 0;
}
.products-item h2 {
  margin-bottom: 25px !important;
}
.products-item p {
  line-height: 1.8;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .products-item p {
    font-size: 3.6111111111vw;
  }
}
.products-item img {
  max-height: 183px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .products-item img {
    max-height: 112px;
  }
}
.products-item .summary {
  margin-bottom: 35px;
}

.request-information-are {
  text-align: center;
}
.request-information-are p {
  font-size: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .request-information-are p {
    font-size: 16px;
    padding: 0 20px;
    margin-bottom: 20px;
  }
}

/* ---------- company ---------- */
@media screen and (max-width: 768px) {
  #page.company .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr {
    border-top: 2px solid #EAEAEA;
  }
}
#page.company .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr:last-of-type {
  border-bottom: 2px solid #EAEAEA;
}
#page.company .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  border-left: none !important;
  border-right: none !important;
  border-width: 2px !important;
  border-color: #EAEAEA !important;
  font-size: 18px;
  padding: 14px 0 !important;
}
@media screen and (max-width: 768px) {
  #page.company .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    border: none;
    font-size: 14px !important;
  }
}
#page.company .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td strong {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #page.company .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td.is-bold {
    padding-bottom: 5px !important;
  }
}
@media screen and (max-width: 768px) {
  #page.company .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td.is-text {
    padding-top: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  #page.company .message .wp-block-image.is-resized img {
    max-height: 120px !important;
  }
}
@media screen and (max-width: 768px) {
  #page.company .mission .wp-block-image.is-resized img {
    max-height: 251px !important;
  }
}
@media screen and (max-width: 768px) {
  #page.company .officer-introduction .wp-block-image.is-resized img {
    max-height: 335px !important;
    height: 335px !important;
    width: 335px !important;
  }
}
@media screen and (max-width: 768px) {
  #page.company .officer-introduction .wp-block-columns {
    gap: 0;
  }
}

/* ---------- sitemap ---------- */
.sitemap-section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px;
}
@media screen and (max-width: 768px) {
  .sitemap-section ul {
    display: block;
  }
}
.sitemap-section li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sitemap-section li a {
    margin-bottom: 18px;
    font-size: 3.75vw;
  }
}
.sitemap-section li a::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  background-image: url("../../assets/images/common/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .sitemap-section li:last-child a {
    margin-bottom: 0;
  }
}
.sitemap-section li .sub-list {
  display: block;
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .sitemap-section li .sub-list {
    padding-top: 0;
    margin: -10px 0 20px;
  }
}
.sitemap-section li .sub-list .sub-item a {
  max-width: 180px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  padding-right: 1.2em;
  margin-bottom: 6px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sitemap-section li .sub-list .sub-item a {
    max-width: initial;
    font-size: 3.0555555556vw;
  }
}
.sitemap-section li .sub-list .sub-item a::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  background-image: url("../../assets/images/common/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0;
  position: absolute;
  right: 2px;
}

/* ---------- privacy-policy ---------- */
@media screen and (max-width: 768px) {
  #page.privacy-policy .block-contents p {
    font-size: 3.0555555556vw;
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px) {
  #page.privacy-policy .block-contents p.has-medium-font-size {
    font-size: 13px !important;
  }
}
@media screen and (max-width: 768px) {
  #page.privacy-policy .block-contents h2 {
    font-size: 3.75vw;
    margin-bottom: 10px;
  }
}

/* news
-----------------------------------------------------------------------------*/
/* ---------- NEWS ---------- */
.news-contents .title {
  font-family: "archivo-narrow-variable", sans-serif;
  font-size: 50px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .news-contents .title {
    font-size: 6.6666666667vw;
    margin-bottom: 25px;
  }
}
.news-contents .wp-block-buttons {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .news-contents .wp-block-buttons {
    text-align: center;
  }
}
.news-list {
  margin-bottom: 65px;
}
.news-item {
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .news-item {
    margin-bottom: 40px;
  }
}
.news-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news-item a {
    display: block;
  }
}
.news-item a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background-color: #999;
  border-radius: 50%;
  background-image: url("../../assets/images/common/arrow-btn-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 900px) {
  .news-item a::after {
    content: none;
  }
}
.news-item a:hover .news-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.news-item a:hover h2,
.news-item a:hover h4 {
  color: #FF34CC;
}
.news-item a:hover::after {
  background-color: #FF34CC;
}
.news-img {
  border-radius: 10px;
  border: 1px solid #EAEAEA;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 300px;
  max-height: 169px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .news-img {
    max-width: initial;
    max-height: initial;
    margin: 0 auto 20px;
  }
}
.news-img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 450px) {
  .news-img img {
    max-height: 188px;
  }
}
.news-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  .news-txt {
    gap: 10px;
    padding: 0;
  }
}
.news-txt .date {
  font-family: "archivo-narrow-variable", sans-serif;
  font-size: 14px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .news-txt .date {
    font-size: 12px;
  }
}
.news-txt h2 {
  font-size: 20px !important;
  font-weight: bold;
  margin: 0 !important;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .news-txt h2 {
    font-size: 14px !important;
  }
}
.news-txt .summary {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .news-txt .summary {
    font-size: 3.6111111111vw;
  }
}
.news-details .block-contents {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .news-details .block-contents {
    margin-bottom: 80px;
  }
}
.news-details .wp-block-image img {
  border-radius: 30px;
}
.news-details .wp-block-buttons {
  text-align: center;
}