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

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, 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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

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

html {
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  font-family: "Karla", sans-serif;
  position: relative;
  background-color: #F6F5F8;
  -webkit-animation: fadein 0.8s ease-in;
          animation: fadein 0.8s ease-in;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  body {
    -webkit-animation: fadein 0.5s ease-in;
            animation: fadein 0.5s ease-in;
  }
}
body a {
  text-decoration: none;
  color: #333;
}

.inner {
  max-width: calc(1000px + 2rem);
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 5%;
  }
}

section {
  text-align: center;
}

.front-page section {
  padding: 64px 0;
}
@media screen and (max-width: 767px) {
  .front-page section {
    padding: 40px 0;
  }
}

.sub section {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .sub section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

h1, h2, h3, h4, h5, p, span, li, th, td {
  color: #333;
}

#wpadminbar span {
  color: #fff;
}

h1, h2, h3, h4, h5, a, p, span, ul, li, th, td, dl, dt, dd, label {
  letter-spacing: 0.02em;
  line-height: 1.75;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  p, li {
    font-size: 14px;
  }
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.6;
}

strong {
  font-weight: bold;
}

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

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

.dib {
  display: inline-block;
}

.main_btn {
  margin-top: 40px;
}
.main_btn a {
  display: inline-block;
  padding: 10px 32px;
  color: #fff;
  background: #003373;
  border: 1px solid #003373;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
  margin-inline: auto;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .main_btn a {
    padding: 8px 32px;
    font-size: 14px;
  }
}
.main_btn a:hover {
  opacity: 1;
  color: #333;
  background: transparent;
  border: 1px solid #333;
}
.main_btn a:hover::before, .main_btn a:hover::after {
  background: #333;
}
.main_btn a::before {
  content: "";
  display: inline-block;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-mask: url("../img/svg/icon_circle_right.svg") no-repeat center center/contain;
          mask: url("../img/svg/icon_circle_right.svg") no-repeat center center/contain;
  width: 24px;
  height: 24px;
}

.main_btn.orange a {
  background: #FF8C00;
  border: 1px solid #FF8C00;
}
.main_btn.orange a:hover {
  color: #333;
  background: #F6F5F8;
  border: 1px solid #333;
}
.main_btn.orange a:hover::before, .main_btn.orange a:hover::after {
  background: #333;
}
.main_btn.orange a::before, .main_btn.orange a::after {
  content: "";
  display: inline-block;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.main_btn.orange a::before {
  -webkit-mask: url("../img/svg/icon_mail.svg") no-repeat center center/contain;
          mask: url("../img/svg/icon_mail.svg") no-repeat center center/contain;
  width: 24px;
  height: 24px;
}
.main_btn.orange a::after {
  -webkit-mask: url("../img/svg/icon_arrow_right.svg") no-repeat center center/contain;
          mask: url("../img/svg/icon_arrow_right.svg") no-repeat center center/contain;
  width: 24px;
  height: 24px;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.sub_btn {
  margin-top: 20px;
}
.sub_btn a {
  color: #003373;
  display: inline-block;
  -webkit-text-decoration: dotted underline;
          text-decoration: dotted underline;
  -webkit-text-decoration-color: #003373;
          text-decoration-color: #003373;
  text-underline-offset: 4px;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .sub_btn a {
    font-size: 14px;
  }
}
.sub_btn a::before {
  content: "";
  display: inline-block;
  background-color: #003373;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-mask: url("../img/svg/icon_circle_right.svg") no-repeat center center/contain;
          mask: url("../img/svg/icon_circle_right.svg") no-repeat center center/contain;
  width: 24px;
  height: 24px;
}

.clip-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-left: 16px;
  color: #1B1F32;
  font-size: 16px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  margin-right: 24px;
}
.clip-btn:before {
  content: url();
  display: inline-block;
  background-image: url(../img/copy.png);
  background-size: contain;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-right: 2px;
}
.clip-btn:hover {
  opacity: 0.7;
}

.clip-btn-on {
  color: #999;
}
.clip-btn-on:before {
  background-image: url(../img/check.png);
}

span.dib {
  display: inline-block;
}

.subtitle {
  display: block;
  width: 100%;
  font-size: 12px;
  position: relative;
  font-weight: bold;
  color: #003373;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 10px;
  }
}

.maintitle {
  font-size: 28px;
  margin-bottom: 64px;
  display: inline-block;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .maintitle {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.maintitle:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 55px;
  height: 1px;
  left: 50%;
  bottom: -40%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #aaa;
}

div.link-style {
  font-size: 12px;
}
div.link-style a {
  color: #1da1f2;
}

.breadcrumbs {
  margin-bottom: 1em;
  color: gray;
}
.breadcrumbs a {
  display: inline;
  color: gray;
  font-size: 0.87em;
  text-decoration: none;
}

.header.login {
  margin-top: 32px;
}

.header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 60px;
  background: #F6F5F8;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header_inner {
  max-width: 1280px;
  margin: 0 auto;
}
.header_wrap {
  padding: 0 0 0 3%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
@media screen and (max-width: 1024px) {
  .header_wrap {
    padding: 0 5%;
  }
}
.header_wrap_logo {
  z-index: 100;
}
.header_wrap_logo a {
  width: 160px;
  height: 60px;
  line-height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header_wrap_logo a.is-active {
  color: #fff;
}
.header_wrap_logo a img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .header_wrap_nav {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50vh;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
  }
  .header_wrap_nav.is-active {
    visibility: visible;
    opacity: 1;
  }
}
.header_wrap_nav ul {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -webkit-justify-content: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
@media screen and (max-width: 1024px) {
  .header_wrap_nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    gap: 8px;
  }
}
.header_wrap_nav ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .header_wrap_nav ul li {
    display: block;
  }
}
.header_wrap_nav ul li a {
  font-size: 13px;
  font-weight: bold;
  padding: 0 16px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .header_wrap_nav ul li a {
    font-size: 16px;
    color: #fff;
    margin-top: 8px;
    margin-bottom: 8px;
    text-align: center;
  }
}
.header_wrap_nav ul li a:hover {
  background: #003373;
  color: #fff;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .header_wrap_nav ul li a:hover {
    background: initial;
    opacity: 0.6;
  }
}
.header_wrap_nav ul li a:hover span {
  color: #fff;
}
.header_wrap_nav ul li a span {
  display: block;
  font-size: 10px;
  color: #003373;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .header_wrap_nav ul li a span {
    color: #fff;
    margin-bottom: 2px;
  }
}
@media screen and (max-width: 1024px) {
  .header_wrap_nav ul li.nav-contact {
    display: none;
  }
}
.header_wrap_nav ul li.nav-contact a {
  color: #fff;
  background: #FF8C00;
}
.header_wrap_nav ul li.nav-contact a:hover {
  background: #003373;
}
.header_wrap_nav ul li.nav-contact a span {
  color: #fff;
}
.header_wrap_nav .main_btn {
  display: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .header_wrap_nav .main_btn {
    display: block;
  }
}
.header_wrap_nav .main_btn a:hover {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}
.header_wrap_nav .main_btn a:hover::before, .header_wrap_nav .main_btn a:hover::after {
  background: #fff;
}
.header input {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header input:checked + label span.hamburger_icon i:nth-child(1) {
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
  }
  .header input:checked + label span.hamburger_icon i:nth-child(2) {
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
    top: 0;
    bottom: 0;
  }
  .header input:checked + label span.hamburger_icon i:nth-child(3) {
    margin: auto;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 0;
    right: 0;
    bottom: 0;
  }
}
.header label {
  display: none;
}
.header label:hover {
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .header label {
    display: block;
    position: fixed;
    top: 18px;
    right: 5%;
  }
  .header label span {
    display: inline-block;
    width: 26px;
  }
  .header label span i {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #1B1F32;
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header label span i:nth-child(1) {
    top: 5px;
  }
  .header label span i:nth-child(2) {
    margin: auto;
    top: 0;
    bottom: 0;
  }
  .header label span i:nth-child(3) {
    bottom: 5px;
  }
}

@media screen and (max-width: 1024px) {
  .nav_cover {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .nav_cover.is-active {
    opacity: 1;
    z-index: 99;
  }
}

.mv {
  padding: 0;
}
.mv .mv_wrap {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.mv .mv_img {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  max-height: 800px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .mv .mv_img {
    aspect-ratio: 1/1;
  }
}
.mv .mv_img .splide__track--draggable {
  height: 100%;
}
.mv .mv_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .mv_title {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  text-align: left;
  padding: 0 5%;
}
.mv .mv_title .mv_title_main span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(64px, 32px + 32 * (100vw - 768px) / 1152);
  letter-spacing: 0.1em;
  line-height: 1.2;
  padding: 0.5rem;
  color: #fff;
  font-weight: bold;
  background: #003373;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .mv .mv_title .mv_title_main span {
    font-size: max(20px, 20px + 12 * (100vw - 375px) / 392);
  }
}
.mv .mv_title .mv_title_sub span {
  background: #003373;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  display: inline;
  padding: 0.5rem;
  line-height: 2;
  color: #fff;
  font-size: min(30px, 16px + 14 * (100vw - 768px) / 1152);
}
@media screen and (max-width: 767px) {
  .mv .mv_title .mv_title_sub span {
    font-size: max(13px, 13px + 5 * (100vw - 375px) / 392);
  }
}

/* ========== トップお知らせ ========== */
section.top_news {
  padding: 60px 0 0;
}
section.top_news .news_wrap {
  background: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px 5% 30px;
}
section.top_news .news_wrap .news_wrap_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
section.top_news .news_wrap .news_wrap_title .maintitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
  line-height: 1.25;
}
section.top_news .news_wrap .news_wrap_title .maintitle::after {
  display: none;
}
section.top_news .news_wrap .news_wrap_title .subtitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
section.top_news .news_wrap .post_wrap .post {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 24px 16px;
  border-bottom: 1px solid #e5e7ed;
}
@media screen and (max-width: 767px) {
  section.top_news .news_wrap .post_wrap .post {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 8px 16px;
  }
}
section.top_news .news_wrap .post_wrap .post:first-of-type {
  border-top: 1px solid #e5e7ed;
}
section.top_news .news_wrap .post_wrap .post .post_date {
  font-size: 14px;
  color: #a5aaaf;
  display: inline-block;
}
section.top_news .news_wrap .post_wrap .post .post_category ul.post-categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
section.top_news .news_wrap .post_wrap .post .post_category ul.post-categories li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
section.top_news .news_wrap .post_wrap .post .post_category ul.post-categories li a {
  font-size: 12px;
  display: inline-block;
  background: #003373;
  border: 1px solid #003373;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1px 16px;
  border-radius: 40px;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.top_news .news_wrap .post_wrap .post .post_category ul.post-categories li a:hover {
  opacity: 1;
  background: transparent;
  color: #333;
}
section.top_news .news_wrap .post_wrap .post .post_title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  section.top_news .news_wrap .post_wrap .post .post_title {
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
  }
}
section.top_news .news_wrap .post_wrap .post .post_title::after {
  content: "";
  display: inline-block;
  -webkit-mask: url(../img/svg/icon_arrow_right.svg) center/contain no-repeat;
          mask: url(../img/svg/icon_arrow_right.svg) center/contain no-repeat;
  background: #333;
  width: 24px;
  height: 24px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
section.top_news .news_wrap .post_wrap .post .post_title h2 {
  font-size: 16px;
  text-align: left;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  section.top_news .news_wrap .post_wrap .post .post_title h2 {
    font-size: 14px;
  }
}
section.top_news .news_wrap .sub_btn a {
  margin-left: auto;
}

/* ========== /トップお知らせ ========== */
/* ========== フリースペース ========== */
@media screen and (max-width: 767px) {
  .free-space {
    padding: 80px 0 40px;
  }
}
.free-space .osusume {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 26px;
  text-align: center;
  font-weight: bold;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .free-space .osusume {
    font-size: 20px;
  }
}
.free-space .osusume::before, .free-space .osusume::after {
  content: "";
  width: 3px;
  height: 40px;
  background-color: #003373;
}
.free-space .osusume::before {
  margin-right: 20px;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}
.free-space .osusume::after {
  margin-left: 20px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}
.free-space .osusume .point {
  color: #FF8C00;
}
.free-space .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin: 20px auto 60px;
}
@media screen and (max-width: 767px) {
  .free-space .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.free-space .flex > div.flex_item {
  width: calc(50% - 20px);
  border-radius: 8px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  padding: 4% 4%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgba(0, 51, 115, 0.03);
}
@media screen and (max-width: 767px) {
  .free-space .flex > div.flex_item {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
}
.free-space .flex > div.flex_item h3::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #003373;
}
.free-space .flex > div.flex_item.code h3::before {
  -webkit-mask: url(../img/svg/icon_code.svg) center/contain no-repeat;
          mask: url(../img/svg/icon_code.svg) center/contain no-repeat;
}
.free-space .flex > div.flex_item.site h3::before {
  -webkit-mask: url(../img/svg/icon_site.svg) center/contain no-repeat;
          mask: url(../img/svg/icon_site.svg) center/contain no-repeat;
}
.free-space .flex > div.flex_item.blog h3::before {
  -webkit-mask: url(../img/svg/icon_blog.svg) center/contain no-repeat;
          mask: url(../img/svg/icon_blog.svg) center/contain no-repeat;
}
.free-space .flex > div.flex_item h3 {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px dotted #003373;
  padding-bottom: 8px;
  color: #003373;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .free-space .flex > div.flex_item h3 {
    font-size: 16px;
  }
}
.free-space .flex > div.flex_item ul {
  text-align: left;
  margin-bottom: 16px;
}
.free-space .flex > div.flex_item ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .free-space .flex > div.flex_item ul li {
    font-size: 14px;
  }
}
.free-space .flex > div.flex_item ul li::before {
  content: "";
  -webkit-mask: url(../img/svg/icon_check.svg) center/contain no-repeat;
          mask: url(../img/svg/icon_check.svg) center/contain no-repeat;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #003373;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .free-space .flex > div.flex_item ul li::before {
    width: 20px;
    height: 20px;
  }
}
.free-space .flex > div.flex_item p {
  text-align: left;
  margin-bottom: 16px;
}
.free-space .flex > div.flex_item .main_btn {
  margin-top: auto;
}
.free-space > p {
  line-height: 1.75;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .free-space > p {
    font-size: 14px;
  }
}
.free-space .contact_wrap {
  background: #003373;
  margin: 0 calc(50% - 50vw);
  padding: 64px 5%;
}
.free-space .contact_wrap p, .free-space .contact_wrap span {
  color: #fff;
  text-align: center;
}
.free-space .main_btn {
  margin-top: 20px;
}

/* ========== /フリースペース ========== */
/* ========== やまとウェブについて ========== */
@media screen and (max-width: 767px) {
  .about {
    padding-bottom: 64px;
  }
}
.about .maintitle {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .about .maintitle {
    margin-bottom: 40px;
  }
}
.about_wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .about_wrap {
    display: block;
  }
}
.about_icon {
  width: 50%;
  margin-right: 40px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .about_icon {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
  }
}
.about_icon img {
  width: 100%;
  max-width: 350px;
  border-radius: 2px;
  margin-bottom: 16px;
  -webkit-box-shadow: 10px 10px 0 #003373;
          box-shadow: 10px 10px 0 #003373;
}
@media screen and (max-width: 767px) {
  .about_icon img {
    max-width: 100%;
  }
}
.about_icon_link {
  max-width: 350px;
  margin-left: auto;
  text-align: center;
}
.about_icon_link a {
  color: #1da1f2;
}
@media screen and (max-width: 767px) {
  .about_icon_link a {
    font-size: 14px;
  }
}
.about_text {
  text-align: left;
  width: 50%;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .about_text {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
}
.about_text ul li {
  font-size: 14px;
  margin-bottom: 8px;
  text-indent: -3em;
  padding-left: 3em;
}
@media screen and (max-width: 767px) {
  .about_text ul li {
    font-size: 12px;
  }
}
.about .x_wrap {
  margin-top: 40px;
}
.about .x_wrap .twitter-timeline {
  margin-inline: auto;
}
.about .main_btn {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .about .main_btn {
    margin-top: 40px;
  }
}

/* ========== /やまとウェブについて ========== */
main.about-page section {
  padding: 100px 5% 120px;
}
@media screen and (max-width: 767px) {
  main.about-page section {
    padding: 64px 0;
  }
}

.career {
  background: #ebedf1;
}
.career_wrap {
  text-align: left;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.career_wrap dl {
  position: relative;
}
.career_wrap dl::before {
  border-left: 1px solid #ccc;
  bottom: calc(var(--_half-leading, 0.4) * 1rem);
  content: "";
  display: block;
  left: 0.7rem;
  position: absolute;
  top: calc(var(--_half-leading, 0.4) * 1rem);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .career_wrap dl::before {
    left: 0.5rem;
  }
}
.career_wrap dl dt {
  font-size: 1.5em;
  font-weight: 400;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  z-index: 10;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .career_wrap dl dt {
    font-size: 1.1em;
  }
}
.career_wrap dl dd {
  margin-top: 70px;
  margin-bottom: 24px;
  line-height: 2;
  margin-left: 4em;
}
@media screen and (max-width: 767px) {
  .career_wrap dl dd {
    margin-left: 3em;
    font-size: 12px;
    margin-top: 64px;
  }
}
.career_wrap dl dd:first-of-type {
  padding-top: 54px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .career_wrap dl dd:first-of-type {
    padding-top: 40px;
  }
}

.skill_wrap {
  text-align: left;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 500px) {
  .skill_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.skill_wrap ul {
  width: calc(50% - 16px);
}
@media screen and (max-width: 767px) {
  .skill_wrap ul {
    width: 100%;
  }
  .skill_wrap ul:first-of-type {
    margin-bottom: 24px;
  }
}
.skill_wrap ul h3 {
  position: relative;
  margin-bottom: 16px;
  font-size: 1.5em;
  font-weight: bold;
  color: #63C1E5;
  padding-left: 56px;
}
@media screen and (max-width: 767px) {
  .skill_wrap ul h3 {
    font-size: 1.1em;
    margin-bottom: 8px;
  }
}
.skill_wrap ul h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 4px;
  border-top: 2px solid #63C1E5;
  border-bottom: 2px solid #63C1E5;
}
.skill_wrap ul li {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .skill_wrap ul li {
    font-size: 12px;
  }
}

.sgf {
  background: #ebedf1;
}
.sgf_wrap {
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .sgf_wrap {
    padding: 0;
  }
}
.sgf .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .sgf .flex {
    display: block;
  }
}
.sgf .flex .flex-item {
  width: calc(33.3333333333% - 8px);
}
@media screen and (max-width: 1024px) {
  .sgf .flex .flex-item {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 12px);
    margin-top: 40px;
  }
  .sgf .flex .flex-item:last-of-type {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .sgf .flex .flex-item {
    display: block;
    width: 100%;
  }
  .sgf .flex .flex-item:first-of-type {
    margin-top: 24px;
  }
  .sgf .flex .flex-item:not(:first-of-type) {
    margin-top: 64px;
  }
  .sgf .flex .flex-item:last-of-type {
    width: 100%;
  }
}
.sgf .flex .flex-item h3 {
  font-size: 16px;
  margin-bottom: 1em;
}
.sgf .flex .flex-item h3:after {
  content: "";
  display: block;
  width: 2rem;
  border-top: 6px dotted #c0c1c4;
  border-top: 6px dotted #96979a;
  margin: 0.4rem auto 0;
}
.sgf .flex .flex-item ol {
  text-align: left;
}
.sgf .flex .flex-item ol li {
  padding: 1em 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sgf .flex .flex-item ol li h4 {
  font-size: 16px;
  width: 130px;
  position: relative;
  margin-bottom: 0.5em;
}
.sgf .flex .flex-item ol li h4::after {
  position: absolute;
  display: inline-block;
  word-break: keep-all;
  font-size: 10px;
  font-weight: bold;
  margin-left: 16px;
  left: 10em;
  top: 0.5em;
}
.sgf .flex .flex-item ol li.EX h4::after {
  content: "実行力";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #d2eea5));
  background: -webkit-linear-gradient(transparent 70%, #d2eea5 70%);
  background: linear-gradient(transparent 70%, #d2eea5 70%);
}
.sgf .flex .flex-item ol li.IN h4::after {
  content: "影響力";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #fae497));
  background: -webkit-linear-gradient(transparent 70%, #fae497 70%);
  background: linear-gradient(transparent 70%, #fae497 70%);
}
.sgf .flex .flex-item ol li.RB h4::after {
  content: "人間関係構築力";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #e5adac));
  background: -webkit-linear-gradient(transparent 70%, #e5adac 70%);
  background: linear-gradient(transparent 70%, #e5adac 70%);
}
.sgf .flex .flex-item ol li.ST h4::after {
  content: "戦略的思考力";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #9cd8dd));
  background: -webkit-linear-gradient(transparent 70%, #9cd8dd 70%);
  background: linear-gradient(transparent 70%, #9cd8dd 70%);
}
.sgf .flex .flex-item ol li p {
  font-size: 12px;
  text-indent: 2em;
}
@media screen and (max-width: 767px) {
  .sgf .flex .flex-item ol li p {
    text-indent: 0;
  }
}
.sgf .flex .flex-item:nth-of-type(2) li h4::after {
  left: 12em;
}
.sgf .flex .flex-item .sgf-img {
  padding: 1em 0;
}

main.service-page .service_wrap p, main.service-page .service_wrap ul, main.service-page .service_wrap li, main.service-page .service_wrap div {
  text-align: left;
}
main.service-page .service_wrap .tag_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .tag_wrap {
    gap: 8px;
  }
}
main.service-page .service_wrap .tag_wrap a {
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  background: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-weight: bold;
  color: #003373;
  border: 1px solid #003373;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .tag_wrap a {
    font-size: 12px;
    padding: 4px 16px;
    gap: 2px;
  }
}
main.service-page .service_wrap .tag_wrap a:hover {
  opacity: 1;
  background: #003373;
  color: #fff;
}
main.service-page .service_wrap .tag_wrap a:hover::before {
  background-color: #fff;
}
main.service-page .service_wrap .tag_wrap a::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-mask: url(../img/svg/icon_arrow.svg) center/contain no-repeat;
          mask: url(../img/svg/icon_arrow.svg) center/contain no-repeat;
  background-color: #003373;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .tag_wrap a::before {
    width: 20px;
    height: 20px;
  }
}
main.service-page .service_wrap .service_wrap_item {
  margin-bottom: 40px;
  padding: 5%;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
main.service-page .service_wrap .service_wrap_item h2 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  position: relative;
  margin-bottom: 24px;
  color: #003373;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-bottom: 1px dotted #003373;
  padding-bottom: 8px;
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .service_wrap_item h2 {
    font-size: 24px;
  }
}
main.service-page .service_wrap .service_wrap_item h2::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #003373;
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .service_wrap_item h2::before {
    width: 32px;
    height: 32px;
  }
}
main.service-page .service_wrap .service_wrap_item.code h2::before {
  -webkit-mask: url(../img/svg/icon_code.svg) center/contain no-repeat;
          mask: url(../img/svg/icon_code.svg) center/contain no-repeat;
}
main.service-page .service_wrap .service_wrap_item.site h2::before {
  -webkit-mask: url(../img/svg/icon_site.svg) center/contain no-repeat;
          mask: url(../img/svg/icon_site.svg) center/contain no-repeat;
}
main.service-page .service_wrap .service_wrap_item.blog h2::before {
  -webkit-mask: url(../img/svg/icon_blog.svg) center/contain no-repeat;
          mask: url(../img/svg/icon_blog.svg) center/contain no-repeat;
}
main.service-page .service_wrap .service_wrap_item .item_wrap {
  margin-top: 48px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .service_wrap_item .item_wrap {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
main.service-page .service_wrap .service_wrap_item .item_wrap:last-of-type {
  margin-bottom: 0;
}
main.service-page .service_wrap .service_wrap_item .item_wrap .item {
  margin-bottom: 48px;
  padding: 0 2% 48px;
  border-bottom: 1px solid #e5e7ed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px 80px;
}
@media screen and (max-width: 1024px) {
  main.service-page .service_wrap .service_wrap_item .item_wrap .item {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .service_wrap_item .item_wrap .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
}
main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_left {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_left {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_left {
    width: 100%;
    display: contents;
  }
}
main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_left h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_left h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_left h3 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_left .item_left_text {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_left .item_left_text p {
  margin-bottom: 8px;
}
main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_left .item_left_text ul {
  text-align: left;
  margin-top: 16px;
  margin-bottom: 16px;
}
main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_left .item_left_text ul li {
  padding: 2px 0;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_left .item_left_text ul li {
    font-size: 14px;
  }
}
main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_left .item_left_text ul li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #003373;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 8px;
  vertical-align: 1px;
}
main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_right {
    display: contents;
  }
}
main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_right img {
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .service_wrap_item .item_wrap .item .item_right img {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }
}
main.service-page .service_wrap .service_wrap_item .item_wrap .chui {
  background: rgba(255, 140, 0, 0.1);
  border-radius: 8px;
  padding: 5%;
}
main.service-page .service_wrap .service_wrap_item .item_wrap .chui h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 3px solid #FF8C00;
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .service_wrap_item .item_wrap .chui h4 {
    font-size: 16px;
  }
}
main.service-page .service_wrap .service_wrap_item .item_wrap .chui ul {
  text-align: left;
  margin-top: 16px;
  margin-bottom: 16px;
}
main.service-page .service_wrap .service_wrap_item .item_wrap .chui ul li {
  padding: 2px 0;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .service_wrap_item .item_wrap .chui ul li {
    font-size: 14px;
  }
}
main.service-page .service_wrap .service_wrap_item .item_wrap .chui ul li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FF8C00;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 8px;
  vertical-align: 1px;
}
main.service-page .service_wrap .service_wrap_item .btn_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: 40px;
  margin-bottom: 32px;
}
main.service-page .service_wrap .service_wrap_item .btn_wrap .main_btn {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .service_wrap_item .btn_wrap .main_btn {
    width: 100%;
  }
}
main.service-page .service_wrap .service_wrap_item .btn_wrap .main_btn a::after {
  content: "";
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #fff;
  -webkit-mask: url("../img/svg/icon_arrow_right.svg") no-repeat center center/contain;
          mask: url("../img/svg/icon_arrow_right.svg") no-repeat center center/contain;
  width: 24px;
  height: 24px;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
@media screen and (max-width: 767px) {
  main.service-page .service_wrap .service_wrap_item .btn_wrap .main_btn a {
    width: 100%;
    max-width: 300px;
  }
}

.work-child .url a, .work-child .comment a {
  color: #1da1f2;
}
.work-child_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .work-child_wrap {
    margin-bottom: 40px;
  }
}
.work-child_img {
  width: calc(50% - 16px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .work-child_img {
    width: 100%;
  }
}
.work-child_img .img_wrap--pc, .work-child_img .img_wrap--sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  overflow-x: scroll;
}
@media screen and (max-width: 767px) {
  .work-child_img .img_wrap--pc, .work-child_img .img_wrap--sp {
    width: 100%;
  }
}
.work-child_img .img_wrap--pc::-webkit-scrollbar, .work-child_img .img_wrap--sp::-webkit-scrollbar {
  display: none;
}
.work-child_img .img_wrap--pc img, .work-child_img .img_wrap--sp img {
  margin-right: 1em;
  -o-object-fit: cover;
     object-fit: cover;
}
.work-child_img .img_wrap--pc img:last-of-type, .work-child_img .img_wrap--sp img:last-of-type {
  margin-right: 0;
}
.work-child_img .img_wrap--pc {
  height: 300px;
}
.work-child_img .img_wrap--pc img {
  min-width: 400px;
}
@media screen and (max-width: 1024px) {
  .work-child_img .img_wrap--pc {
    height: 225px;
  }
  .work-child_img .img_wrap--pc img {
    min-width: 300px;
  }
}
.work-child_img .img_wrap--sp {
  height: 445px;
}
.work-child_img .img_wrap--sp img {
  min-width: 250px;
}
.work-child_img h3 {
  position: relative;
  display: inline-block;
  margin-right: auto;
  font-size: 16px;
  margin-bottom: 1em;
}
.work-child_img h3:not(:first-of-type) {
  margin-top: 3em;
}
.work-child_img h3::before, .work-child_img h3::after {
  content: "";
  position: absolute;
  width: 2em;
  height: 1px;
  background: #333;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.work-child_img h3::before {
  margin-right: 1em;
  left: -3em;
}
.work-child_img h3::after {
  margin-left: 1em;
  right: -3em;
}
.work-child_text {
  width: calc(50% - 16px);
  text-align: left;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .work-child_text {
    padding: 24px 0;
    width: 100%;
    margin-top: 3em;
  }
}
.work-child_text .border-wrap {
  position: relative;
  padding: 1.5em 1.5em 1em;
  border: solid 1px #333;
  border-radius: 2px;
}
.work-child_text .border-wrap:not(:first-of-type) {
  margin-top: 3em;
  padding-top: 2em;
}
.work-child_text .border-wrap h3 {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  font-size: 16px;
  background: #F6F5F8;
}
.work-child_text .border-wrap p {
  font-size: 14px;
}
.work-child_text .border-wrap.comment p {
  margin-bottom: 1.5em;
}
.work-child table {
  width: 100%;
  word-break: break-all;
}
.work-child table tr th {
  padding: 8px 0;
  white-space: nowrap;
  font-size: 14px;
}
.work-child table tr td {
  padding: 8px 0 8px 16px;
  font-size: 14px;
}
.work-child table .login-id input {
  display: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input[type=checkbox] {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

/* ==================== お問い合わせフォーム ====================*/
#page_content {
  max-width: 640px;
  margin: 0 auto;
}
#page_content p {
  text-align: left;
}
#page_content .wpcf7-form {
  margin: 40px auto 0;
  /* お問い合わせ内容 */
  /* 必須ボタン */
  /* 任意ボタン */
}
#page_content .wpcf7-form .form_item {
  border-top: 1px solid #ddd;
  padding: 24px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  #page_content .wpcf7-form .form_item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
#page_content .wpcf7-form .form_label {
  width: 100%;
  max-width: 240px;
  font-size: 14px;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #page_content .wpcf7-form .form_label {
    margin-bottom: 8px;
  }
}
#page_content .wpcf7-form .form_label + p {
  width: 100%;
}
#page_content .wpcf7-form input {
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 0 16px;
  height: 40px;
  width: 100%;
  font-size: 16px;
  background: #eaedf2;
  font-family: "Karla", sans-serif;
}
#page_content .wpcf7-form textarea {
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 16px;
  height: 240px;
  width: 100%;
  font-size: 16px;
  background: #eaedf2;
  margin-top: 4px;
  font-family: "Karla", sans-serif;
}
@media screen and (max-width: 767px) {
  #page_content .wpcf7-form textarea {
    margin-top: 0;
  }
}
#page_content .wpcf7-form .your-message_label {
  margin-bottom: auto;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  #page_content .wpcf7-form .your-message_label {
    margin-top: 0;
    margin-bottom: 16px;
  }
}
#page_content .wpcf7-form .must_mark {
  border-radius: 2px;
  margin-right: 8px;
  width: 40px;
  display: inline-block;
  text-align: center;
  background: #003373;
  color: #fff;
  font-size: 12px;
  vertical-align: 2px;
}
@media screen and (max-width: 767px) {
  #page_content .wpcf7-form .must_mark {
    margin-right: 4px;
  }
}
#page_content .wpcf7-form .any_mark {
  border-radius: 2px;
  margin-right: 8px;
  width: 40px;
  display: inline-block;
  text-align: center;
  background: #aaa;
  color: #fff;
  font-size: 12px;
  vertical-align: 2px;
}
@media screen and (max-width: 767px) {
  #page_content .wpcf7-form .any_mark {
    margin-right: 4px;
  }
}
#page_content .wpcf7-form .wpcf7-submit {
  width: 240px;
  font-size: 16px;
  background-color: #FF8C00;
  color: #fff;
  margin: 0 auto;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#page_content .wpcf7-form .wpcf7-submit:hover {
  background-color: #003373;
}
#page_content .wpcf7-form span[data-name=agree-check] {
  width: 100%;
  display: block;
  text-align: center;
}
#page_content .wpcf7-form .wpcf7-list-item {
  margin: 24px 0 24px 0;
  font-size: 14px;
}
#page_content .wpcf7-form input[name=agree-check] {
  border: 0px solid #ddd;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  height: 20px;
  width: 20px;
  background: none;
  vertical-align: -4px;
  margin-right: 12px;
}
#page_content .wpcf7-form .wpcf7-not-valid-tip {
  font-size: 14px;
}

/* contactここまで */
.p404 {
  text-align: center;
  margin: 120px 0;
}
@media screen and (max-width: 767px) {
  .p404 {
    margin: 60px 0;
  }
}
.p404 h1 {
  font-size: 64px;
  font-weight: normal;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}
@media screen and (max-width: 767px) {
  .p404 h1 {
    font-size: 40px;
  }
}
.p404 p {
  font-size: 18px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p404 p {
    font-size: 16px;
  }
}

/* contact */
.contact {
  background: #003373;
  padding: 64px 0 40px;
}
.contact span, .contact h2, .contact p {
  color: #fff;
}

/* contactここまで */
.footer {
  background-color: #1B1F32;
  text-align: center;
  padding: 20px 0;
}
.footer_inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px 56px;
  padding: 0 5%;
}
.footer_logo {
  color: #fff;
  display: inline-block;
  width: 160px;
}
.footer_nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .footer_nav ul {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.footer_nav ul li {
  margin: 0 8px;
}
@media screen and (max-width: 767px) {
  .footer_nav ul li {
    margin: 0 4px;
  }
  .footer_nav ul li:first-of-type {
    margin-left: 0;
  }
}
.footer_nav ul li a {
  color: #fff;
  display: inline-block;
  line-height: 16px;
  border-bottom: 1px solid rgba(238, 238, 238, 0);
  font-size: 12px;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
.footer_nav ul li a:hover {
  border-bottom: 1px solid rgb(238, 238, 238);
  opacity: 1;
}
.footer_nav ul li a span {
  display: none;
}
.footer .copyright {
  font-size: 12px;
  color: #fff;
}

.pagetop a {
  background: #fff;
  border: 1px solid #003373;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  z-index: 100;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    width: 40px;
    height: 40px;
  }
}
.pagetop a:hover {
  background: #003373;
}
.pagetop a:hover::before {
  background-color: #fff;
}
.pagetop a::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  -webkit-mask: url(../img/svg/icon_arrow.svg) center/contain no-repeat;
          mask: url(../img/svg/icon_arrow.svg) center/contain no-repeat;
  background-color: #003373;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .pagetop a::before {
    width: 30px;
    height: 30px;
  }
}

.sub .work_wrap {
  padding-left: 5%;
  padding-right: 5%;
}
@media screen and (max-width: 767px) {
  .sub .work_wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
.sub .others {
  background: #ebedf1;
  padding: 80px 5%;
}
@media screen and (max-width: 767px) {
  .sub .others {
    padding-bottom: 64px;
  }
}
.sub .others ul {
  text-align: left;
  width: 50%;
  margin: 0 auto;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sub .others ul {
    width: 100%;
  }
}
.sub .others ul li {
  font-size: 14px;
  padding: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sub .others ul li:not(:first-of-type) {
  border-top: 1px solid #666;
}

main.archive .breadcrumbs {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(67, 133, 187, 0.0705882353);
          box-shadow: 0 2px 4px rgba(67, 133, 187, 0.0705882353);
  margin: 0 0 1.5em 0;
}
main.archive h1 {
  font-size: 1.375rem;
  margin: 1rem 0;
  letter-spacing: 0.2px;
  font-weight: bold;
}
main.archive .post_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  gap: 2em;
}
main.archive .post_wrap .content_left {
  width: calc(70% - 2em);
  padding-right: 2em;
  border-radius: 10px;
  font-size: 15.5px;
  font-family: sans-serif;
  letter-spacing: 1;
}
main.archive .post_wrap .content_left .post_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 30px;
}
main.archive .post_wrap .content_left .post_list .post {
  width: calc(50% - 15px);
  -webkit-box-shadow: 0 2px 4px rgba(67, 133, 187, 0.0705882353);
          box-shadow: 0 2px 4px rgba(67, 133, 187, 0.0705882353);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
main.archive .post_wrap .content_left .post_list .post .post-thumbnail {
  height: 250px;
}
@media screen and (max-width: 1199px) {
  main.archive .post_wrap .content_left .post_list .post .post-thumbnail {
    height: calc(100px + 150 * (100vw - 768px) / 431);
  }
}
main.archive .post_wrap .content_left .post_list .post .post-thumbnail img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main.archive .post_wrap .content_left .post_list .post .text_wrap {
  padding: 0 20px 20px 20px;
}
main.archive .post_wrap .content_left .post_list .post .text_wrap .post_date {
  margin: 15px 0 0;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: #a5aaaf;
  margin-bottom: 8px;
  display: inline-block;
}
main.archive .post_wrap .content_left .post_list .post .text_wrap .post_category {
  font-size: 12px;
  margin-bottom: 8px;
  margin-left: 8px;
  display: inline-block;
}
main.archive .post_wrap .content_left .post_list .post .text_wrap .post_title h2 {
  font-size: 16px;
}
main.archive .post_wrap .sidebar {
  width: 30%;
}
main.archive .post_wrap .sidebar > div {
  background: #fff;
  padding: 20px 24px;
  -webkit-box-shadow: 0 2px 4px rgba(67, 133, 187, 0.0705882353);
          box-shadow: 0 2px 4px rgba(67, 133, 187, 0.0705882353);
  border-radius: 10px;
  margin: 0 0 2rem;
}
main.archive .post_wrap .sidebar img {
  margin: 0 0 2rem;
}

main.single .inner {
  max-width: calc(1180px + 2em);
}
main.single .post_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  gap: 2em;
}
main.single .post_wrap article {
  width: calc(70% - 2em);
  padding-right: 2em;
  background: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(67, 133, 187, 0.0705882353);
          box-shadow: 0 2px 4px rgba(67, 133, 187, 0.0705882353);
  padding: 20px 24px;
  border-radius: 10px;
  font-size: 15.5px;
  font-family: sans-serif;
  letter-spacing: 1;
}
main.single .post_wrap article .breadcrumbs {
  margin-bottom: 1em;
  color: gray;
}
main.single .post_wrap article .breadcrumbs a {
  display: inline;
  color: gray;
  font-size: 0.87em;
  text-decoration: none;
}
main.single .post_wrap article .post_date {
  margin: 15px 0 0;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #a5aaaf;
}
main.single .post_wrap article .post-thumbnail {
  margin: 1em 0 2em;
}
main.single .post_wrap article h1 {
  font-size: 1.375rem;
  margin-bottom: 1.8rem;
  letter-spacing: 0.2px;
  font-weight: bold;
}
main.single .post_wrap article h2 {
  margin: 2.5em 0 0.7em;
  font-size: 1.4em;
  line-height: 1.6;
  background: #003373;
  color: #fff;
  padding: 0.5rem 0.6rem 0.6rem 2.5rem;
  margin: 4rem 0 2rem;
  font-weight: bold;
  letter-spacing: 0.2px;
}
main.single .post_wrap article h3 {
  margin: 2.6em 0 0.7em;
  padding: 10px 0 10px 10px;
  font-size: 1.2em;
  line-height: 1.5;
  margin: 5rem 0 1.5rem;
  border-bottom: dotted 1px #65c2e9;
  font-weight: bold;
  letter-spacing: 0.2px;
}
main.single .post_wrap article p {
  line-height: 2;
  margin: 0 0 2rem;
  letter-spacing: 0.2px;
}
main.single .post_wrap article a {
  color: #848bce;
  text-decoration: underline;
  letter-spacing: 0.2px;
}
main.single .post_wrap .sidebar {
  width: 30%;
}
main.single .post_wrap .sidebar > div {
  background: #fff;
  padding: 20px 24px;
  -webkit-box-shadow: 0 2px 4px rgba(67, 133, 187, 0.0705882353);
          box-shadow: 0 2px 4px rgba(67, 133, 187, 0.0705882353);
  border-radius: 10px;
  margin: 0 0 2rem;
}
main.single .post_wrap .sidebar img {
  margin: 0 0 2rem;
}
main.single .news_wrap {
  background: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 40px 5%;
}
main.single .news_wrap .post {
  text-align: left;
}
main.single .news_wrap .post .post_date {
  font-size: 14px;
  color: #a5aaaf;
  display: inline-block;
}
main.single .news_wrap .post .post_category {
  display: inline-block;
  margin-left: 8px;
}
main.single .news_wrap .post .post_category ul.post-categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
main.single .news_wrap .post .post_category ul.post-categories li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
main.single .news_wrap .post .post_category ul.post-categories li a {
  font-size: 12px;
  display: inline-block;
  background: #003373;
  border: 1px solid #003373;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1px 16px;
  border-radius: 40px;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
main.single .news_wrap .post .post_category ul.post-categories li a:hover {
  opacity: 1;
  background: transparent;
  color: #333;
}
main.single .news_wrap .post .post_title h1 {
  text-align: left;
  font-weight: bold;
  font-size: 32px;
  margin: 20px 0 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  main.single .news_wrap .post .post_title h1 {
    font-size: 22px;
  }
}
main.single .news_wrap .post .post_title h1::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #003373;
  border-radius: 2px;
}
main.single .news_wrap .post .post_content {
  margin-top: 30px;
  text-align: left;
}
main.single .news_wrap .post .post_content p {
  margin: 0 0 20px;
}
main.single .news_wrap .post .post_content a {
  color: #003373;
  text-decoration: underline;
  -webkit-text-decoration-color: #003373;
          text-decoration-color: #003373;
}
main.single .news_wrap .post .post_content ul, main.single .news_wrap .post .post_content ol {
  margin: 0 0 20px;
  padding: 0 0 0 20px;
}
main.single .news_wrap .post .post_content ul li, main.single .news_wrap .post .post_content ol li {
  margin: 0 0 5px;
  position: relative;
}
main.single .news_wrap .post .post_content ul li::before, main.single .news_wrap .post .post_content ol li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -15px;
  width: 6px;
  height: 6px;
  background: #003373;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
main.single .news_wrap .post .post_content .main_btn a {
  color: #fff;
  text-decoration: none;
}
main.single .news_wrap .post .post_content .main_btn a:hover {
  color: #003373;
  background: #fff;
  border: 1px solid #003373;
}

main.news .news_wrap {
  background: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 40px 5%;
}
main.news .news_wrap .post {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 24px 16px;
  border-bottom: 1px solid #e5e7ed;
}
@media screen and (max-width: 767px) {
  main.news .news_wrap .post {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 8px 16px;
  }
}
main.news .news_wrap .post:first-of-type {
  border-top: 1px solid #e5e7ed;
}
main.news .news_wrap .post .post_date {
  font-size: 14px;
  color: #a5aaaf;
  display: inline-block;
}
main.news .news_wrap .post .post_category ul.post-categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
main.news .news_wrap .post .post_category ul.post-categories li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
main.news .news_wrap .post .post_category ul.post-categories li a {
  font-size: 12px;
  display: inline-block;
  background: #003373;
  border: 1px solid #003373;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1px 16px;
  border-radius: 40px;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
main.news .news_wrap .post .post_category ul.post-categories li a:hover {
  opacity: 1;
  background: transparent;
  color: #333;
}
main.news .news_wrap .post .post_title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  main.news .news_wrap .post .post_title {
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
  }
}
main.news .news_wrap .post .post_title::after {
  content: "";
  display: inline-block;
  -webkit-mask: url(../img/svg/icon_arrow_right.svg) center/contain no-repeat;
          mask: url(../img/svg/icon_arrow_right.svg) center/contain no-repeat;
  background: #333;
  width: 24px;
  height: 24px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
main.news .news_wrap .post .post_title h2 {
  font-size: 16px;
  text-align: left;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  main.news .news_wrap .post .post_title h2 {
    font-size: 14px;
  }
}

.nav-links ul.page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .nav-links ul.page-numbers {
    gap: 10px;
  }
}
.nav-links ul.page-numbers li {
  text-align: center;
}
.nav-links ul.page-numbers li span, .nav-links ul.page-numbers li a {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .nav-links ul.page-numbers li span, .nav-links ul.page-numbers li a {
    font-size: 14px;
  }
}
.nav-links ul.page-numbers li span, .nav-links ul.page-numbers li a:not(.prev):not(.next) {
  width: 40px;
  color: #003373;
  background: transparent;
  border: 2px solid #003373;
}
@media screen and (max-width: 767px) {
  .nav-links ul.page-numbers li span, .nav-links ul.page-numbers li a:not(.prev):not(.next) {
    width: 40px;
  }
}
.nav-links ul.page-numbers li a:not(.prev):not(.next) {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav-links ul.page-numbers li a:not(.prev):not(.next):hover {
  opacity: 1;
  color: #fff;
  background: #003373;
  border: 2px solid #003373;
}
.nav-links ul.page-numbers li span.page-numbers.current {
  color: #fff;
  background: #003373;
  border: 2px solid #003373;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav-links ul.page-numbers li a.next.page-numbers, .nav-links ul.page-numbers li a.prev.page-numbers {
  font-size: 16px;
  width: 60px;
  color: #003373;
  border: 2px solid #003373;
  background: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav-links ul.page-numbers li a.next.page-numbers:hover, .nav-links ul.page-numbers li a.prev.page-numbers:hover {
  opacity: 1;
  color: #fff;
  background: #003373;
  border: 2px solid #003373;
}

.work {
  /*タブ切り替え全体のスタイル*/
  /*タブのスタイル*/
  /*ラジオボタンを全て消す*/
  /*タブ切り替えの中身のスタイル*/
  /*選択されているタブのコンテンツのみを表示*/
  /*選択されているタブのスタイルを変える*/
}
.work .tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .work .tabs {
    margin-bottom: 0;
    margin-inline: auto;
  }
}
.work .tab_item {
  width: 25%;
  height: 50px;
  background-color: #F6F5F8;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  line-height: 50px;
  font-size: 14px;
  text-align: center;
  color: #333;
  display: inline-block;
  text-align: center;
  -webkit-transition: opacity 0.2s ease, color 0.3s, background 0.3s;
  transition: opacity 0.2s ease, color 0.3s, background 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.work .tab_item:hover {
  color: #fff;
  background: #003373;
}
@media screen and (max-width: 767px) {
  .work .tab_item {
    width: 50%;
    max-width: 250px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    border-bottom: none;
  }
  .work .tab_item:nth-of-type(n+3) {
    border-bottom: 1px solid #ccc;
  }
  .work .tab_item:nth-of-type(2n) {
    border-right: 1px solid #ccc;
  }
}
.work .tab_item:last-of-type {
  border-right: 1px solid #ccc;
}
.work input[name=tab_item] {
  display: none;
}
@-webkit-keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.work .tab_content {
  width: 100%;
  display: none;
  padding: 64px 0 0 0;
}
@media screen and (max-width: 767px) {
  .work .tab_content {
    padding-top: 40px;
  }
}
.work #all:checked ~ #all_content,
.work #wordpress:checked ~ #wordpress_content,
.work #coding:checked ~ #coding_content,
.work #design:checked ~ #design_content {
  display: block;
  -webkit-animation: show 0.3s ease-in;
          animation: show 0.3s ease-in;
}
.work .tabs input:checked + .tab_item {
  background-color: #003373;
  color: #fff;
}
.work ul.work-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px 24px;
}
@media screen and (max-width: 1024px) {
  .work ul.work-list {
    gap: 20px 16px;
  }
}
.work ul.work-list li {
  width: calc(33.3333333333% - 16px);
}
@media screen and (max-width: 767px) {
  .work ul.work-list li {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 500px) {
  .work ul.work-list li {
    width: 100%;
  }
}
.work ul.work-list li .work-list_img a {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.work ul.work-list li .work-list_img a img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  width: 100%;
  height: 100%;
}
.work ul.work-list li .work-list_text {
  padding: 8px 0 0;
}
.work ul.work-list li .work-list_text h3 {
  font-size: 14px;
  text-align: center;
  padding: 4px 0;
}
@media screen and (max-width: 767px) {
  .work ul.work-list li .work-list_text h3 {
    font-size: 12px;
  }
}
.work ul.work-list li .work-list_text a {
  color: #1da1f2;
}

.work-child {
  /*タブ切り替え全体のスタイル*/
  /*タブのスタイル*/
  /*ラジオボタンを全て消す*/
  /*タブ切り替えの中身のスタイル*/
  /*選択されているタブのコンテンツのみを表示*/
  /*選択されているタブのスタイルを変える*/
}
.work-child * {
  min-width: 0;
  min-height: 0;
}
.work-child .tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .work-child .tabs {
    margin-bottom: 0;
  }
}
.work-child .tab_item {
  width: 33.3333333333%;
  height: 50px;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #333;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-bottom: 2px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .work-child .tab_item {
    width: 50%;
  }
}
.work-child input[name=tab_item] {
  display: none;
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.work-child .tab_content {
  width: 100%;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
}
.work-child #PC:checked ~ #PC_content,
.work-child #SP:checked ~ #SP_content {
  display: block;
  -webkit-animation: show 0.3s ease-in;
          animation: show 0.3s ease-in;
}
.work-child .tabs input:checked + .tab_item {
  background-color: #003373;
  color: #fff;
  border-bottom: none;
}
.work-child #SP_content {
  width: 66.6666666667%;
}
@media screen and (max-width: 767px) {
  .work-child #SP_content {
    width: 100%;
  }
}
.work-child .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.work-child .slick-prev,
.work-child .slick-next {
  z-index: 99;
}
.work-child .slick-prev {
  left: -10px;
}
.work-child .slick-next {
  right: -10px;
}
.work-child .slick-prev::before,
.work-child .slick-next::before {
  color: #333;
  font-size: 32px;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}