@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Zen+Kaku+Gothic+New:wght@500;700&display=swap');

:root {
  --yellow: #FFD737;
  --shadow: #73788E40;
  --gray-01: #DBE5EC;
  --gray-02: #9EB5C6;
  --gray-03: #A9B0B5;
  --gray-04: #444958;
  --blue: #11B7DA;
  --link: #0055FF;
  --red: #E31923;
  --font-family-base: "Orbitron", "Zen Kaku Gothic New", "Helvetica Neue", Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
}

*,
::before,
::after {
  font-family: var(--font-family-base);
}

html {
  font-size: 62.5%;
  font-weight: 500;
  box-sizing: border-box;
  scroll-behavior: smooth;
  line-height: 1.2;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font-family-base);
}

body {
  font-size: 16px;
  font-weight: 500;
  box-sizing: border-box;
  position: relative;
  text-size-adjust: 100%;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  min-width: 320px;
  overflow-x: hidden;
  color: #ffffff;
  background-color: #202534;
}

p {
  line-height: 1.6;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: var(--blue);
}

a:not([class]):hover {
  text-decoration: none;
  color: var(--blue);
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none
}

img {
  display: block;
  width: 100%;
  border-style: none;
}

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

ol,
ul {
  list-style: none
}

blockquote,
q {
  quotes: none
}

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

q {
  display: inline;
  font-style: italic
}

q:before {
  content: '"';
  font-style: normal
}

q:after {
  content: '"';
  font-style: normal
}

textarea,
input[type="text"],
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="search"],
input[type="password"] {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 0;
  background: none;
  border: none;
  font-family: var(--font-family-base);
}

input[type="search"] {
  -webkit-appearance: textfield
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
  width: 100%;
}

th,
td {
  padding: 2px
}

big {
  font-size: 120%
}

small,
sup,
sub {
  font-size: 80%
}

sup {
  vertical-align: super
}

sub {
  vertical-align: sub
}

dd {
  margin-left: 20px
}

kbd,
tt {
  font-family: courier;
  font-size: 12px
}

ins {
  text-decoration: underline
}

del,
strike,
s {
  text-decoration: line-through
}

dt {
  font-weight: 700
}

address,
cite,
var {
  font-style: italic
}

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

strong {
  font-weight: 700;
}

/*----------------------
icon
-----------------------*/

@font-face {
  font-family: 'ic';
  src:
    url('../fonts/ic.ttf?u9nx6e') format('truetype'),
    url('../fonts/ic.woff?u9nx6e') format('woff'),
    url('../fonts/ic.svg?u9nx6e#ic') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="ic-"],
[class*=" ic-"] [class^="ic-"]::before,
[class*=" ic-"]::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'ic' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ic-category:before {
  content: "\e909";
}

.ic-search:before {
  content: "\e90a";
}

.ic-tag:before {
  content: "\e90b";
}

.ic-time:before {
  content: "\e90c";
}

.ic-update:before {
  content: "\e90d";
}

.ic-a:before {
  content: "\e907";
}

.ic-q:before {
  content: "\e908";
}

.ic-arrow_down:before {
  content: "\e900";
}

.ic-arrow_next:before {
  content: "\e901";
}

.ic-arrow_prev:before {
  content: "\e902";
}

.ic-arrow_up:before {
  content: "\e903";
}

.ic-mail:before {
  content: "\e904";
}

.ic-more:before {
  content: "\e905";
}

.ic-plus:before {
  content: "\e906";
}

/*----------------------
common
-----------------------*/
body.no_scroll {
  overflow: hidden;
}

.pc_br {
  display: block;
}

.sp_br {
  display: none;
}

.max-w {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: auto;
}

.max-w800 {
  width: 100%;
  max-width: 840px;
  padding: 0 20px;
  margin: auto;
}

#error .max-w800 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.max-w1080 {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.w-half {
  width: 51%;
}

main {
  display: block;
  padding-top: 65px;
}

#totop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 80;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 100%;
  transition: all 0.2s;
  background-color: #000000c4;
  -webkit-backdrop-filter: invert(1);
  backdrop-filter: invert(1);

}

#totop:hover {
  transform: translate(0, -4px);
  background-color: var(--blue);
}

#to_contact {
  position: fixed;
  bottom: 80px;
  right: 0;
  z-index: 80;
  text-align: center;
  color: #fff;
  width: 45px;
  height: 130px;
  background-color: #11b9dac5;
  padding: 14px;
  border-radius: 5px 0 0 5px;
  -webkit-backdrop-filter: invert(1);
  backdrop-filter: invert(1);

  text-decoration: none;
}

@media screen and (max-width: 1080px) {
  .w-half {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .pc_br {
    display: none;
  }

  .sp_br {
    display: block;
  }

  #totop {
    bottom: 10px;
    right: 10px;
  }
}

@media screen and (max-width: 500px) {
  main {
    padding-top: 50px;
  }
}

/*----------------------
header
-----------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #202534;
}

.header {
  width: 100%;
  max-width: 1120px;
  padding: 15px 0 15px 20px;
  margin: auto;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-l {
  display: block;
  width: 170px;
}

header.open .hm-btn div:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
  top: 0;
}

header.open .hm-btn div:nth-of-type(2) {
  opacity: 0;
}

header.open .hm-btn div:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
  top: 20px;
}

.header-r ul {
  display: flex;
  align-items: center;
}

.header-r a {
  color: #ffffff;
  display: block;
  font-weight: 700;
  padding: 5px 15px;
  text-decoration: none;
}

.header-r a:hover {
  color: var(--blue);
}

/* ハンバーガボタン */
.hm-btn {
  display: none;
  width: 30px;
  height: 25px;
  margin: 0;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.hm-btn div {
  width: 100%;
  height: 4px;
  border-radius: 5rem;
  position: absolute;
  left: 0;
  background-color: #ffffff;
  transition: transform 0.4s ease, opacity 0.4s ease, top 0.4s ease;
}

.hm-btn div:nth-child(1) {
  top: 0;
}

.hm-btn div:nth-child(2) {
  top: calc(50% - 2px);
}

.hm-btn div:nth-child(3) {
  top: calc(100% - 4px);
}

@media screen and (max-width: 900px) {
  .header {
    padding: 15px 20px;
  }

  .header nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: calc(100svb - 65px);
    transform: translate(0, -100%);
    background-color: #202534;
    transition: all 0.2s;
  }

  .open .header nav {
    top: 65px;
    transform: translate(0, 0);
  }

  .header-r ul {
    display: block;
    padding: 20px;
  }

  .header-r ul li+li {
    border-top: solid 1px var(--gray-03);
  }

  .header-r a {
    padding: 15px;
  }

  .hm-btn {
    display: block;
  }
}

@media screen and (max-width: 500px) {
  .header {
    height: 50px;
  }

  .header nav {
    height: calc(100svb - 50px);
  }

  .open .header nav {
    top: 50px;
  }

  .header-l {
    width: 120px;
  }
}

/*----------------------
btn
-----------------------*/
.btn-wrap {
  display: flex;
  justify-content: center;
}

.btn-wrap .btn {
  display: block;
  min-width: 260px;
  text-align: center;
  padding: 15px 40px 15px 20px;
  border-radius: 5rem;
  margin: auto;
  position: relative;
  background-color: var(--blue);
  color: #fff;
  text-decoration: none;
}

.btn-wrap .btn::before {
  color: #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
  font-size: 1em;
}

.btn-wrap .btn:hover {
  background-color: #fff;
  color: var(--blue);
}

.btn-wrap .btn:hover::before {
  color: var(--blue);
}

/*----------------------
contact
-----------------------*/
.contact {
  margin: 0 auto 70px;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 100px;
  background-image: url(../img/contact_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.contact .h2-wrap {
  font-size: 48px;
  margin-bottom: 1em;
  color: #fff;
}

.contact p {
  color: #fff;
  margin-bottom: 50px;
}

@media screen and (max-width: 640px) {
  .contact .h2-wrap {
    font-size: 32px;
  }
}

/*----------------------
bnr-wrap
-----------------------*/
.bnr-wrap {
  max-width: 640px;
  padding: 0 20px;
  margin: auto;
}

.bnr-wrap .has-small-font-size {
  margin-bottom: 1em;
}

/*----------------------
footer
-----------------------*/
footer {
  margin-top: 70px;
  padding: 60px 0 20px;
  background-color: #202534;
}

.footer-logo {
  width: 170px;
  margin: 0 auto 60px;
}

.footer-link ul {
  display: flex;
  justify-content: center;
}

.footer-link a {
  display: block;
  font-size: 14px;
  padding: 5px 15px;
  color: var(--blue);
  text-decoration: none;
}

.footer-link a:hover {
  color: var(--blue);
}

.copyright {
  text-align: center;
  font-size: 11px;
  color: #9EB5C6;
  margin-top: 20px;
}

@media screen and (max-width: 900px) {
  .footer-link ul {
    padding: 0 50px;
    flex-wrap: wrap;
    justify-items: center;
  }

  .footer-link ul li {
    width: 50%;
  }

  .footer-link a {
    text-align: center;
    padding: 10px 15px;
  }
}

/*----------------------
pager 一覧用ページネーション
-----------------------*/
.pager-wrap {
  display: flex;
  justify-content: center;
  border-radius: 5rem;
  overflow: hidden;
  border: solid 1px var(--gray-03);
  /* max-width: 450px; */
  margin: 60px auto 0;
  width: fit-content;
}

.pager-wrap .pagenation-select {
  position: relative;
  min-width: 190px;
  text-align: center;
  border-left: solid 1px var(--gray-03);
  border-right: solid 1px var(--gray-03);
}

.pager-wrap .pagenation-select::before {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
}

.pager-wrap select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-align: center;
  padding: 1em 2em;
  background-color: #fff;
}

.pager-wrap a {
  color: #000;
  display: block;
  text-decoration: none;
  padding: 1em 1.5em;
}

.pager-wrap a:hover {
  background-color: #000;
  color: #fff;
}

.pager-wrap a.disabled {

  -webkit-filter: opacity(0.5);
  filter: opacity(0.5);
  background-color: var(--gray-02);
  pointer-events: none
}


/*----------------------
paging 記事内
前の記事/一覧/次の記事
-----------------------*/
.paging {
  display: flex;
  justify-content: center;
  border-radius: 5rem;
  overflow: hidden;
  background-color: #fff;
  margin: 60px auto 0;
  width: fit-content;
}

.paging a {
  color: #fff;
  background-color: var(--blue);
  display: block;
  text-decoration: none;
  padding: 1em 1.5em;

}

.paging a:hover {
  background-color: #000;
  color: #fff;
}

.paging .gotolist a {
  background-color: #fff;
  color: #000;
}

.paging a.disabled {
  -webkit-filter: opacity(0.5);
  filter: opacity(0.5);
  background-color: var(--gray-01);
  pointer-events: none
}

@media screen and (max-width: 500px) {
  .paging a {
    font-size: 12px;
  }
}

/*----------------------
レイアウト
-----------------------*/
/* #container{
padding-top: 65px;
} */

h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.result-tx {
  margin-bottom: 20px;
  color: var(--gray-04);
}

@media screen and (max-width: 640px) {
  h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/*----------------------
mv
-----------------------*/
.mv {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 0 15px;
}

.mv+* {
  margin-top: 0;
}

.mv .h1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  min-height: 400px;
  min-width: 290px;
  max-width: 1080px;
  margin: auto;
  padding: 0 40px;
  color: #fff;
}

#error .mv .h1,
#contact.mv .h1 {
  background-image: url(../img/page_h1_w_bg.png);
}

.mv-sub .h1 {
  min-height: 265px;
  min-width: 180px;
}

.mv .h1 p {
  font-size: 16px;
}

.mv .h1 h1,
.mv .h1 .tx-l {
  font-size: 64px;
  margin: 0;
  color: var(--blue);
}

.mv .h1 h1+p {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.mv .page-link {
  display: flex;
  justify-content: center;
  padding: 0px 0px 0px;
  width: 100%;
  align-self: flex-end;
  gap: 0;
  outline: solid 1px #fff;
}

.mv .page-link .wp-block-button,
.mv .page-link>a {
  width: 180px;
}

.mv .page-link .wp-block-button {
  outline: solid 1px #fff;
}

.mv .page-link a {
  display: block;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  position: relative;
  padding: 10px 5px 28px;
  font-weight: 700;
  font-size: 13px !important;
}

.mv .page-link a:hover {
  background-color: #00000080 !important;
}

.mv .page-link>a {
  color: #fff;
  padding: 28px 5px 30px 5px;
}

.mv .page-link .wp-block-button:hover a,
.mv .page-link>a:hover {
  color: var(--blue);
  background-color: var(--blue);
}

.mv .page-link a::before,
.mv .page-link>a::before {
  content: "\e900";
  font-family: 'ic' !important;
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
}

.mv .page-link .wp-block-button:hover a::before,
.mv .page-link>a:hover::before {
  color: var(--blue);
}


.mv .page-link img {
  height: 70px !important;
  width: auto !important;
  margin: auto;
}

@media screen and (max-width: 900px) {

  .mv .page-link .wp-block-button,
  .mv .page-link>a {
    width: calc(100% / 3);
  }

  .mv .page-link a {
    font-size: 11px !important;
  }

  .mv .page-link img {
    height: 60px !important;
  }
}

@media screen and (max-width: 640px) {

  .mv .h1 h1,
  .mv .h1 .tx-l {
    font-size: 42px;
  }


  .mv .h1 h1+p {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 25px;
  }

  .mv .h1 {
    padding: 10px 20px;
    min-height: 250px;
  }

  .mv .page-link a {
    font-size: 10px !important;
  }
}

@media screen and (max-width: 400px) {
  .mv .page-link a {
    font-size: 9px !important;
  }
}

/*----------------------
img-h2-wrap
-----------------------*/
.img-h2-wrap {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.img-h2-wrap .wp-block-cover__inner-container {
  max-width: 1040px;
  margin: auto;
}

.img-h2-wrap h2 {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 420px;
  font-size: 48px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .img-h2-wrap h2 {
    font-size: 32px;
  }

  .img-h2-wrap.wp-block-cover,
  .img-h2-wrap.wp-block-cover-image,
  .img-h2-wrap h2 {
    min-height: 300px;
    max-height: 300px;
  }
}

@media screen and (max-width: 500px) {
  .img-h2-wrap h2 {
    font-size: 24px;
  }
}

/*----------------------
class="tit-wrap" 
-----------------------*/
.h2-0 h2 {
  font-size: 48px;
  padding: 20px 0 10px;
  margin: 0;
  position: relative;
}

.h2-0 h2::before {
  content: "";
  width: 0.6em;
  height: 4px;
  background-color: var(--blue);
  position: absolute;
  top: 0;
  left: 0;
}

.accordion-wrap+.h2-0,
.not-match+.h2-0 {
  margin-top: 50px;
}

.accordion-wrap+.h2-0 {
  margin-top: 100px;
}

/* data-h2="1" */
.tit-wrap[data-h2="1"] .h2-wrap {
  flex-direction: column;
}

.tit-wrap[data-h2="1"] .tx-s {
  font-size: 16px;
  color: var(--blue);
}

.tit-wrap[data-h2="1"] .tx-s+.tx-l {
  margin-top: 5px;
}

.tit-wrap[data-h2="1"] .tx-l {
  font-size: 28px;
}

@media screen and (max-width: 500px) {
  .h2-0 h2 {
    font-size: 24px;
  }
}

/*----------------------
img-tx
-----------------------*/
.is-layout-flex> :is(h2) {
  margin-bottom: 30px;
}

.img-tx {
  display: flex;
  align-items: center;
}

/* data-h2="1" */
.img-tx .h2-wrap {
  flex-direction: column;
}

.img-tx .tx-s {
  font-size: 16px;
  color: var(--blue);
}

.img-tx .tx-s+.tx-l {
  margin-top: 8px;
}

.img-tx .tx-l {
  font-size: 28px;
}

.img-tx .tx-wrap {
  width: 50%;
  padding: 20px 6%;
}

.img-tx .h2-wrap+.tx {
  margin-top: 30px;
  line-height: 1.6;
}

.img-tx .img-wrap,
.img-tx .wp-block-embed {
  width: 50%;
}

.wp-block-embed.is-provider-youtube .wp-block-embed__wrapper,
.wp-block-embed.is-provider-vimeo .wp-block-embed__wrapper {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.wp-block-embed.is-provider-youtube .wp-block-embed__wrapper iframe,
.wp-block-embed.is-provider-vimeo .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 680px) {
  body .is-layout-flex.img-tx {
    flex-direction: column;
  }

  .img-tx .tx-wrap {
    width: 100%;
    order: 1;
    padding: 20px 1%;
  }

  .img-tx .img-wrap,
  .img-tx .wp-block-embed {
    width: 100%;
    order: 2;
  }
}

/*----------------------
accordion
-----------------------*/
.acc-item {
  /* background-color: #fff;
  border: solid 1px var(--gray-02);
  border-radius: 10px; */
  overflow: hidden;
}

.acc-item+.acc-item {
  margin-top: 10px;
}

.acc-head {
  position: relative;
  z-index: 1;
  cursor: pointer;
  font-size: 16px;
  /* background-color: var(--gray-02); */
  padding: 1em 3em 1em 1em;
}

.acc-head:hover {
  -webkit-filter: saturate(0.5);
  filter: saturate(0.5);

}

.faq .acc-head {
  padding: 1em 3em 1em 3em;
}

.acc-head::after,
.faq .acc-head::before {
  position: absolute;
  font-size: 1.8em;
  top: 50%;
  transform: translate(0, -50%);
}

.acc-head::after {
  font-family: 'ic' !important;
  content: "\e906";
  right: 11px;
  transition: all 0.2s;
}

.acc-head.is-active::after {
  transform: rotate(45deg);
}

.faq .acc-head::before {
  content: "Q";
  color: var(--blue);
  left: 8px;
}

.acc-head p {
  /* padding-right: 25px; */
  line-height: 1.2;
}

.acc-body {
  padding: 0.8em 1em;
}

.faq .acc-body {
  padding: 0.8em 1em 0.8em 3em;
  position: relative;
  border-top: solid 1px var(--gray-02);
}

.faq .acc-body::before {
  content: "A";
  position: absolute;
  font-size: 2em;
  top: 6px;
  left: 8px;
  color: var(--red);
}

.acc-body p a {
  color: var(--blue);
  padding-left: 1em;
}

@media screen and (max-width: 500px) {

  .acc-head p,
  .acc-body p {
    font-size: 15px;
    line-height: 1.4;
  }

  .faq .acc-head {
    padding: 0.7em 2.5em 0.7em 2.5em;
  }

  .acc-head::after,
  .faq .acc-head::before {
    font-size: 1.6em;
  }
}

/*----------------------
post single
-----------------------*/
.has_sidebar {
  display: flex;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 110px;
}

.has_sidebar .contents {
  width: calc(100% - 300px);
}

.has_sidebar .sidebar {
  width: 260px;
  margin-left: 40px;
}

.post-data {
  color: var(--gray-02);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.post-data .date {
  padding-left: 1.5em;
  position: relative;
}

.post-data .date::before {
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 1.3em;
}

.post-data .category_list {
  margin-left: 15px;
}

.post-data .category_list a {
  color: #000;
  text-decoration: none;
  color: var(--gray-02);
  padding-left: 1.5em;
  position: relative;
}

.post-data .category_list a::before {
  font-family: 'ic' !important;
  content: "\e909";
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 1.3em;
}

.has_sidebar h1 {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .has_sidebar {
    display: block;
  }

  .has_sidebar .contents {
    width: 100%;
  }

  .has_sidebar .sidebar {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
    border: none;
    border-top: solid 1px var(--gray-03);
    border-radius: 0;
    padding-top: 40px;
  }
}

/*----------------------
faq
-----------------------*/
#faq {
  padding-top: 70px;
  padding-bottom: 110px;
}

#faq .post_content h1 {
  padding-left: 50px;
  position: relative;
}

#faq .detail {
  padding-top: 50px;
  position: relative;
}

#faq .post_content h1::before,
#faq .detail::before {
  position: absolute;
  font-size: 35px;
  font-family: "Orbitron";
}

#faq .post_content h1::before {
  content: "Q";
  top: -8px;
  left: 0px;
  color: var(--blue);
}

#faq .detail::before {
  content: "A";
  top: 0;
  left: 0;
  color: var(--red);
}

#faq .not-match {
  text-align: center;
}

#faq.faq-list .h2-0 {
  margin-bottom: 40px;
}

/*----------------------
search-form
-----------------------*/
.search-box form {
  display: flex;
  align-items: center;
  background-color: var(--gray-01);
  border-radius: 5px;
  padding: 10px;
}

.search-box input[name="s"] {
  width: calc(100% - 20px);
}

.search-box button {
  width: 20px;
  font-size: 20px;
  height: 20px;
}

.search-box button:hover {
  color: var(--blue);
}

/*----------------------
category-list
-----------------------*/
.search-box+.category-list {
  margin-top: 20px;
}

.category-list .tit {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.category-list li+li {
  margin-top: 10px;
}

.category-list a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  position: relative;
  display: block;
  padding: 0.2em 0 0.2em 1.5em;
}

.category-list a::before {
  font-family: 'ic' !important;
  content: "\e901";
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 1.2em;
  color: var(--gray-02);
}

.category-list a:hover {
  color: var(--blue);
}

/*----------------------
popular-list
-----------------------*/
.category-list+.popular-list {
  margin-top: 20px;
}

.popular-list .tit {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.popular-list li+li {
  margin-top: 10px;
}

.popular-list a {
  color: #fff;
  display: block;
  font-size: 13px;
  text-decoration: none;
}

#faq .popular-list a {
  font-size: 12px;
  padding: 0.5em;
  border-radius: 5px;
  border: solid 1px var(--gray-03);
}

#faq .popular-list a:hover {
  color: var(--blue);
}

/*----------------------
casestudy
-----------------------*/
#casestudy {
  padding-top: 30px;
  padding-bottom: 110px;
}

.eyecatch {
  margin-bottom: 40px;
}

.casestudy-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px;
}

.casestudy-list>li {
  width: calc((100% - 60px)/ 3);
}

.casestudy-list a {
  color: #ffffff;
  display: block;
  text-decoration: none;
  position: relative;
}

.casestudy-list .thumbnail-img {
  width: 100%;
  height: 15vw;
  min-height: 120px;
  max-height: 210px;
  position: relative;
  border-radius: 10px 10px 10px 0;
  overflow: hidden;
}

.casestudy-list .thumbnail-img .thumbnail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.casestudy-list a:hover .thumbnail-img .thumbnail {
  transform: translate(-50%, -50%) scale(1.1);
}

.casestudy-list .thumbnail-img .tx {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  font-size: 11px;
  padding: 5px 10px 4px 6px;
  border-radius: 0 5px 0 0;
  background-color: var(--gray-04);
  color: var(--blue);
}

.casestudy-list .tx-wrap {
  margin-top: 10px;
}

.casestudy-list .tit {
  font-weight: 700;
}

.casestudy-list .tx-wrap .more {
  width: 70px;
  margin: 5px 0 0 auto;
}

@media screen and (max-width: 1000px) {
  .casestudy-list>li {
    width: calc((100% - 30px)/ 2);
  }

  .casestudy-list .thumbnail-img {
    height: 21vw;
  }
}

@media screen and (max-width: 768px) {
  #casestudy {
    padding-top: 10px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 640px) {
  .casestudy-list>li {
    width: 100%;
  }

  .casestudy-list .thumbnail-img {
    height: 56vw;
  }
}

/*----------------------
casestudy 詳細
-----------------------*/
#casestudy .contents .mv {
  max-width: 1010px;
  flex-direction: row;
  margin: 0 auto;
  padding: 0 40px;
}

#casestudy .contents .mv .eyecatch {
  width: 450px;
  height: 400px;
  margin: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}

#casestudy .contents .mv .h1 {
  padding: 0 0 0 50px;
  width: calc(100% - 450px);
  line-height: 1.4;
}

#casestudy .contents .mv .tx-l {
  font-size: 47px;
  margin: 0 0 30px;
}

#casestudy .contents .mv h1 {
  color: #fff;
  font-size: 30px;
}

#casestudy .contents .mv .h1 p {
  color: var(--gray-02);
  font-size: 16px;
  margin-bottom: 0;
}

#casestudy .post_content {
  max-width: 880px;
  padding: 0 40px;
  margin: 50px auto 0;
}

#casestudy .post_content .post-data {
  margin-bottom: 2em;
}

#casestudy .post_content .detail p {
  line-height: 1.8;
}

#casestudy .post_content .detail *+* {
  margin-top: 40px;
}

#casestudy .post_content .detail .has-text-color+h2 {
  margin-top: 10px;
}

@media screen and (max-width: 1080px) {
  #casestudy .contents .mv .eyecatch {
    width: 45vw;
    height: 45vw;
  }

  #casestudy .contents .mv .h1 {
    padding: 0 0 0 40px;
    width: calc(100% - 45vw);
  }

  #casestudy .contents .mv .tx-l {
    font-size: 40px;
  }

  #casestudy .contents .mv h1 {
    font-size: 26px;
  }
}

@media screen and (max-width: 600px) {

  #casestudy .contents .mv {
    display: block;
  }

  #casestudy .contents .mv .eyecatch {
    width: 100%;
    height: 45vw;
  }

  #casestudy .contents .mv .h1 {
    padding: 30px 0 0 0;
    width: 100%;
    min-height: auto;
  }

  #casestudy .contents .mv .tx-l {
    font-size: 33px;
    margin: 0 0 20px;
  }

  #casestudy .contents .mv h1 {
    font-size: 22px;
  }
}

/*----------------------
formparts
-----------------------*/
/* フォーム要素　基本スタイル設定 -------------------------  */
input,
select,
textarea {
  line-height: 1.2;
}

.formItem .inputArea>p {
  width: 100%;
}

.formItem .inputArea input,
.formItem .inputArea textarea {
  appearance: none;
  margin: 0;
  padding: 0.7em 1em;
  font-size: 16px;
  background: none;
  border-radius: 5px;
  outline: none;
  color: #fff !important;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  /* background-color: rgba(0, 0, 0, 0.3); */
  /* box-shadow: 1px 1px 5px 0px #000 inset; */
  border: solid 1px var(--gray-03);
}

.formItem .inputArea textarea {
  width: 100%;
  min-height: 100px;
  display: block;
  resize: vertical;
}

.formItem .inputArea input[type="text"],
.formItem .inputArea input[type="email"],
.formItem .inputArea input[type="tel"],
.formItem .inputArea input[type="number"] {
  width: 100%;
}

.formItem .inputArea select::placeholder,
.formItem .inputArea input::placeholder,
.formItem .inputArea textarea::placeholder {
  color: #808080;
}

.formItem .inputArea select:focus,
.formItem .inputArea textarea:focus,
.formItem .inputArea input:focus {
  border-color: var(--blue);
}

.formItem .inputArea input:-webkit-autofill {
  transition: background-color 10000s cubic-bezier(0.6, -0.28, 0.74, 0.05) 0s, color 10000s cubic-bezier(0.6, -0.28, 0.74, 0.05) 0s;
}

.wpcf7-turnstile {
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {

  .formItem .inputArea input,
  .formItem .inputArea textarea {
    font-size: 16px;
    padding: 1em;
  }

  .formItem .inputArea textarea {
    min-height: 200px;
  }
}

/* セレクトボックス -------------------------  */
.formItem .inputArea .select-container {
  position: relative;
  margin-right: 0.5em;
}

.formItem .inputArea .select-container::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 6px 0 6px;
  border-color: #ffffff transparent transparent transparent;
}

.formItem .inputArea .select-container+p {
  margin-right: 1.5em;
  font-size: 18px;
}

.formItem .inputArea select {
  -webkit-appearance: none;
  appearance: none;
  padding: 10px 35px 10px 10px;
  width: 100%;
  font-size: 18px;
  background: none;
  border: none;
  border-radius: 5px;
  outline: none;
  background-color: #f3f6f9;
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 5px 0px #000 inset;
}

@media screen and (max-width: 599px) {
  .formItem .inputArea .select-container+p {
    margin-right: 1em;
  }
}

/* ラジオボタン -------------------------  */
.formItem .radio-block label {
  display: flex;
  margin: 5px 40px 5px 0;
  cursor: pointer;
}

.formItem .radio-block label:hover {
  color: #2bc0c9;
}


.formItem .radio-block input[type="radio"] {
  display: none;
}

.formItem .radio-block label>span {
  position: relative;
  cursor: pointer;
  line-height: 1;
  width: 30px;
  height: 30px;
  display: block;
  margin-right: 10px;
}

.formItem .radio-block label>span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 5px 0px #000 inset;
  border-radius: 100%;
  transform: translate(0, -50%);
}

.formItem .radio-block label>span::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 5px;
  width: 20px;
  height: 20px;
  background-color: #2bc0c9;
  border-radius: 100%;
  transform-origin: top;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: scale(0, 0) translate(0, -50%);
  transform: scale(0, 0) translate(0, -50%);
}

.formItem .radio-block input:checked+span::after {
  -webkit-transform: scale(1, 1) translate(0, -50%);
  transform: scale(1, 1) translate(0, -50%);
}

.formItem .radio-block label p {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

@media screen and (max-width: 599px) {
  .formItem .radio-block label {
    width: 100%;
    margin: 15px 40px 15px 0;
  }
}

/* チェックボックス */
.check-block label {
  display: flex;
  margin: 5px 40px 5px 0;
  cursor: pointer;
  font-size: 16px;
  align-items: flex-start;
}

.check-block label:hover {
  color: #2bc0c9;
}

.check-block input[type="checkbox"] {
  display: none;
}

.check-block label>span {
  position: relative;
  cursor: pointer;
  line-height: 1;
  width: 30px;
  height: 30px;
  display: block;
  margin-right: 10px;
}

.check-block label>span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 5px 0px #000 inset;
  transform: translate(0, -50%);
  border-radius: 6px;
}

.check-block label>span::after {
  content: "";
  border-right: 3px solid #2bc0c9;
  border-bottom: 3px solid #2bc0c9;
  content: '';
  display: block;
  height: 18px;
  left: 11px;
  margin-top: -16px;
  opacity: 0;
  position: absolute;
  top: 19px;
  transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(.7, .7, 1);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  width: 9px;
}

.check-block input:checked+span::after {
  opacity: 1;
  transform: rotate(45deg) scale3d(1, 1, 1);
}

.check-block label p {
  padding-top: 4px;
  line-height: 1.5;
}

@media screen and (max-width: 599px) {
  .formItem .check-block label {
    width: 100%;
    margin: 15px 40px 15px 0;
  }
}

/* 入力単位 ------  */
.formItem {
  display: flex;
  margin-bottom: 20px;
}

/* 入力項目名 ------  */
.formItem .Form-Item-tit {
  width: 300px;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  padding: 8px 1em 8px 0;
  flex-wrap: wrap;
  line-height: 1.2;
}

/* 必須・任意 ------  */
.required,
.any {
  margin-right: 10px;
  border: solid 1px var(--blue);
  color: var(--blue);
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.any {
  border-color: var(--gray-02);
  color: var(--gray-02);
}

@media screen and (max-width: 599px) {

  .required,
  .any {
    margin-right: 15px;
    font-weight: normal;
  }
}

/* 入力エリア ------  */
.formItem .inputArea {
  width: calc(100% - 300px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 640px) {
  .formItem {
    margin-bottom: 15px;
    display: block;
  }

  .formItem .Form-Item-tit {
    width: 100%;
    font-weight: normal;
  }

  .formItem .inputArea {
    width: 100%;
  }
}

/*----------------------
news
-----------------------*/
#news {
  padding-top: 70px;
  padding-bottom: 110px;
}

.news-list li {
  border-bottom: solid 2px var(--gray-02);
}

.news-list li a {
  color: #ffffff;
  text-decoration: none;
  padding: 20px 40px 20px 20px;
  display: flex;
  align-items: center;
  position: relative;
}

.news-list li a::before {
  position: absolute;
  top: 50%;
  right: 10px;
  color: var(--blue);
  transform: translate(-50%, -50%);
}

.news-list li a:hover {
  background-color: var(--gray-02);
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 200px;
  margin-right: 10px;
}

.news-list .date {
  font-size: 14px;
  margin-right: 1em;
}

.news-list .category_list {
  border: solid 1px #fff;
  font-size: 12px;
  border-radius: 5rem;
  padding: 2px 1em;
  line-height: 1;
}

.news-list .tit {
  width: calc(100% - 210px);
}

@media screen and (max-width: 768px) {
  .news-list li a {
    display: block;
    padding: 15px 40px 15px 5px;
  }

  .news-list .tit {
    width: 100%;
    margin-top: 10px;
  }

  .news-list li a::before {
    right: 5px;
  }
}

/*----------------------
front-page TOPページ
-----------------------*/
/* ニュースエリア */
.code-news-list {
  min-width: 500px;
  width: 50%;
  max-width: 640px;
  background: #343949 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  display: flex;
  margin: 0 auto 0 0;
  transform: translate(0, -100%);
}

.code-news-list>p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  padding: 1em;
  border-right: solid 1px #ddd;
}

.code-news-list>ul {
  width: calc(100% - 145px);
  padding: 0 1em;
  align-self: center;
}

.code-news-list>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  background-color: #11b7da;
  color: #fff;
  text-decoration: none;
  font-size: 43px;
}

.code-news-list>a:hover {
  background-color: var(--blue);
}

.code-news-list ul a {
  display: flex;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  color: #ffffff;
}

.code-news-list ul a:hover {
  color: var(--blue);
}

.code-news-list ul a .date {
  margin-right: 1em;
}

.code-news-list ul a .title {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  /* ブラウザがサポートしていない場合のフェールセーフ */
  max-height: 17px;
}

@media screen and (max-width: 550px) {
  .code-news-list {
    min-width: auto;
    width: calc(100% - 10px);
  }

  .code-news-list>p {
    padding: 0.8em;
  }

  .code-news-list>ul {
    width: calc(100% - 121px);
  }

  .code-news-list>a {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}

/*----------------------
テーブル
-----------------------*/
/* 全体 */
.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;
}

@media screen and (max-width: 768px) {
  .wp-block-flexible-table-block-table.is-scroll-on-mobile {
    overflow-x: scroll;
    width: 100%;
  }

  .wp-block-flexible-table-block-table.is-scroll-on-mobile table {
    min-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;
  }
}

/* 会社概要 */
.basic_table.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.basic_table.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td {
  border: none;
}


.company_table {
  border-top: solid 1px var(--gray-02);
  border-bottom: solid 1px var(--gray-02);
}

.company_table table {
  border-left: solid 1px var(--gray-02);
}

@media screen and (max-width: 768px) {
  .basic_table.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td+td {
    border-top: dashed 1px var(--gray-02);
  }

  .company_table tr+tr {
    border-top: solid 1px var(--gray-02);
  }
}

/*----------------------
search-wrap
-----------------------*/
.search-wrap {
  display: flex;
  align-items: center;
}

.search-wrap p {
  font-weight: 700;
}

.search-wrap .select-wrap {
  margin-left: 10px;
  position: relative;
}

.search-wrap .select-wrap::before {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 0;
  transform: translate(0, -50%);
  color: #000;
}

.search-wrap select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  font-size: 14px;
  padding: 0.8em 2em 0.7em 1em;
  cursor: pointer;
  color: #000;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px var(--gray-04);
}

.search-wrap .category {
  display: flex;
  align-items: center;
  max-width: 320px;
  padding: 10px 15px;
  border-radius: 5px;

}

.search-wrap .category .select-wrap {
  width: calc(100% - 74px);
  /* border-left: solid 1px #fff; */
}

.search-wrap .keyword {
  width: 220px;
  padding: 10px 15px;
  border-left: solid 1px #fff;
}

.search-wrap .keyword form {
  display: flex;
  align-items: center;
  background-color: var(--gray-01);
  border-radius: 5px;
  padding: 10px;
}

.keyword form input[name="s"] {
  width: calc(100% - 20px);
}

.keyword form input[name="s"]::placeholder {
  color: var(--gray-02);
}

.keyword form button {
  width: 20px;
  font-size: 20px;
  height: 20px;
  color: var(--blue);
}

.keyword form button:hover {
  color: #000;
}

.search-wrap .orderby {
  display: flex;
  align-items: center;
  width: 180px;
  padding: 10px 15px;
  border-left: solid 1px #fff;
  border-right: solid 1px #fff;
}

@media screen and (max-width: 800px) {
  .search-wrap .category {
    width: 100%;
  }

  .search-wrap .keyword,
  .search-wrap .orderby {
    padding: 5px 8px;
  }

  .search-wrap .keyword {
    width: 200px;
  }

  .search-wrap .orderby {
    width: 160px;
  }

  .search-wrap .orderby p {
    font-size: 14px;
  }

  /* .search-wrap .keyword,
  .search-wrap .orderby {
    width: 100%;
  }

  .search-wrap .keyword {
    border-right: solid 1px #fff;
  }

  .search-wrap .orderby {
    border-top: solid 1px #fff;
  }

  .search-wrap p {
    width: 70px;
  } */
}

/*----------------------
loading
-----------------------*/
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  will-change: opacity;
  background-color: #ffffff8f;
  -webkir-backdrop-filter: blur(21px);
  backdrop-filter: blur(21px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}

.spinner {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 100%;
  opacity: 1;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes sk-scaleout {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
  }

  100% {
    transform: translate(-50%, -50%) scale(1.0);
    opacity: 0;
  }
}

/*----------------------
その他スタイル上書き系
-----------------------*/
.aligncenter,
div.aligncenter {
  margin: 0;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table td img,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table th img {
  margin: auto;
}

.wp-block-image a:hover img {
  opacity: 0.7;
  -webkit-filter: hue-rotate(20deg);
  filter: hue-rotate(20deg);
}

/*----------------------
top
-----------------------*/
#front_page .mv {
  padding: 0 30px 15px;
}

#front_page h1 {
  line-height: 1;
}

#front_page h1 span {
  font-size: 0.8em;
  color: #11B7DA;
}

#front_page .bg-navy {
  background-color: rgba(32, 37, 52, 0.7);
}

#front_page .top_page_link {
  display: flex;
  justify-content: center;
  gap: 0;
  outline: solid 1px #9EB5C6;
}

#front_page .top_page_link figure {
  outline: solid 1px #9EB5C6;
}

#front_page .top_page_link .wp-block-image>a,
#front_page .top_page_link .wp-block-image>figure>a {
  display: block;
}

#front_page .casestudy-list {
  gap: 50px 20px;
}

#front_page .casestudy-list>li {
  width: calc((100% - 60px) / 4);
}

#front_page #casestudy .btn {
  display: block;
  width: 200px;
  margin: 50px auto 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  color: #fff;
  padding: 1em;
  border-radius: 5rem;
}

#front_page #casestudy .btn:hover {
  background-color: #fff;
  color: #202534;
}

.wp-block-buttons>.wp-block-button:hover .wp-block-button__link {
  background-color: var(--blue);
}

.link-wrap {
  gap: 10px;
}

.link-wrap .wp-block-button {
  width: calc((100% - 30px) / 4);
}

.link-wrap .wp-block-button a {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 14px;
  text-align: left;
}

@media screen and (max-width: 1080px) {
  #front_page .casestudy-list>li {
    width: calc((100% - 40px) / 3);
  }

  #front_page .top_page_link {
    flex-wrap: wrap;
  }

  #front_page .top_page_link figure {
    max-width: 200px;
  }

  .link-wrap .wp-block-button {
    width: calc((100% - 10px) / 2);
  }
}

@media screen and (max-width: 768px) {
  #front_page h1 {
    font-size: 60px !important;
  }

  #front_page .casestudy-list>li {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (max-width: 500px) {
  #front_page h1 {
    font-size: 40px !important;
  }

  #front_page .mv .wp-block-spacer {
    height: 90px !important;
  }

  #front_page .casestudy-list {
    gap: 20px;
  }

  #front_page .casestudy-list>li {
    width: 100%;
  }

  .link-wrap .wp-block-button {
    width: 100%;
  }
}