@charset "UTF-8";
/*===
  #common
  ===*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

body {
  color: #333;
  font-family: serif;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: 0.1rem;
  text-align: justify;
}

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

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.container {
  width: 1200px;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.main {
  padding-top: 75px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .main {
    padding-top: 58px;
  }
}

.section {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}

.section-ttl {
  font-size: 60px;
  color: #003a51;
  font-weight: bold;
  text-align: center;
  line-height: 0.6;
}

@media screen and (max-width: 767px) {
  .section-ttl {
    font-size: 28px;
    line-height: 0.8;
  }
}

.section-ttl span {
  font-size: 18px;
  font-weight: normal;
  color: #333;
}

@media screen and (max-width: 767px) {
  .section-ttl span {
    font-size: 16px;
  }
}

.section-btn {
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .section-btn {
    margin-top: 40px;
  }
}

.section-btn-link {
  background: #003a51;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #003a51;
  /* ボーダーの色と太さ */
  padding: 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease 0.2s;
}

.section-btn-link span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
}

.section-btn-link:hover span {
  color: #003a51;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* ===============================================
# ヘッダー
=============================================== */
#header {
  z-index: 20;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #002233;
}

@media screen and (max-width: 767px) {
  #header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
  }
}

#header > .container > .inner {
  padding-bottom: 10px;
  padding-top: 5px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  #header > .container > .inner {
    display: block;
    padding-bottom: 8px;
    padding-top: 5px;
  }
}

.header-left {
  margin-right: auto;
}

.header-logo {
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .header-logo {
    margin-top: 3px;
  }
}

.header-logo a {
  transition: all 0.3s ease 0s;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .header-logo a {
    font-size: 18px;
  }
}

.header-logo a:hover {
  opacity: 0.6;
}

.header-sub {
  color: #fff;
  font-family: "HiraKaku", "ヒラギノ角ゴ", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .header-sub {
    font-size: 10px;
    text-align: left;
    margin-left: 0;
  }
}

.header-sub span {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .header-sub span {
    font-size: 14px;
  }
}

.header-right {
  margin-left: auto;
}

.header-nav {
  top: 100px;
  left: 0;
  right: 0;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 50px;
  line-height: 50px;
  margin-top: 10px;
}

.header-nav li {
  margin-bottom: 12px;
  margin-right: 40px;
}

.header-nav li:last-child {
  margin-right: 0;
}

.header-nav li > a {
  color: #fff;
  display: block;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  opacity: 1;
  line-height: 1;
  text-align: center;
}

.header-nav li > a span {
  font-size: 12px;
  color: #fff;
  font-weight: normal;
}

.header-nav li > a:hover {
  opacity: 0.6;
}

/* ===============================================
# ドロワー 
=============================================== */
.drawer {
  display: none;
}

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

.drawer-icon {
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 15px;
  text-align: center;
  top: 15px;
  z-index: 41;
}

.drawer-open {
  display: block;
}

.m_checked .drawer-open {
  display: none;
}

.drawer-close {
  display: none;
}

.m_checked .drawer-close {
  display: block;
}

.drawer-content {
  background: rgba(51, 51, 51, 0.9);
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow: auto;
  padding: 100px 16px 16px;
  position: fixed;
  text-align: left;
  top: 0;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 100%;
  z-index: 40;
}

.m_checked .drawer-content {
  opacity: 1;
  visibility: visible;
}

.drawer-nav li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 6px solid transparent;
  color: #fff;
  display: block;
  font-size: 16px;
  padding: 20px 12px 24px 5px;
  text-decoration: none;
}

.fa-times::before {
  color: #fff;
}

/* ===============================================
# mainvisual
=============================================== */
.mainvisual {
  background: url(../img/fv.webp) center center/cover no-repeat;
  height: calc(100vh - 100px);
  height: 100vh;
  position: relative;
}

@media screen and (max-width: 767px) {
  .mainvisual {
    height: 550px;
  }
}

.mainvisual-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .mainvisual-content {
    left: 5%;
  }
}

.mainvisual-txt {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.884);
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .mainvisual-txt {
    font-size: 22px;
  }
}

.mainvisual-news {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.602);
  color: #fff;
}

.mainvisual-news-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

@media screen and (max-width: 767px) {
  .mainvisual-news-wrap {
    flex-wrap: wrap;
  }
}

.mainvisual-news-ttl {
  font-size: 24px;
  margin-right: 15px;
  margin-bottom: 4px;
}

.mainvisual-news-time {
  margin-right: 5px;
}

.mainvisual-news-btn {
  margin-top: 0;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .mainvisual-news-btn {
    margin-top: 5px;
    margin-left: 0;
  }
}

/* ===============================================
# about
=============================================== */
.about .section-ttl {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .about .section-ttl {
    text-align: center;
  }
}

.about-wrapper {
  display: flex;
}

@media screen and (max-width: 767px) {
  .about-wrapper {
    flex-direction: column-reverse;
  }
}

.about-left {
  width: 50%;
  height: 500px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .about-left {
    width: 100%;
    height: auto;
    margin-top: 30px;
    padding: 0 15px;
  }
}

.about-right {
  width: 50%;
}

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

.about-right-box {
  padding: 40px 60px;
}

@media screen and (max-width: 767px) {
  .about-right-box {
    padding: 0 15px;
  }
}

.about-right-txt {
  margin-top: 60px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .about-right-txt {
    margin-top: 30px;
    line-height: 1.5;
  }
}

/* ===============================================
# work
=============================================== */
.work {
  background: #474b5d;
}

.work-content {
  background: #fff;
  padding: 60px 30px;
}

@media screen and (max-width: 767px) {
  .work-content {
    padding: 40px 10px;
  }
}

.work-wrapper {
  margin-top: 60px;
  display: flex;
}

@media screen and (max-width: 767px) {
  .work-wrapper {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}

.work-item-link {
  width: 23%;
}

.work-item-link + .work-item-link {
  margin-left: calc(8% / 3);
}

@media screen and (max-width: 767px) {
  .work-item-link + .work-item-link {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .work-item-link {
    width: 48%;
  }
  .work-item-link:nth-child(n + 3) {
    margin-top: 30px;
  }
}

.work-item-link:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .work-item-link:nth-child(even) {
    margin-left: 4%;
  }
}

.work-item-img {
  height: 150px;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .work-item-img {
    height: auto;
  }
}

.work-item-cat {
  position: absolute;
  top: 0;
  left: 0;
  background: #200020;
  color: #fff;
  font-weight: bold;
  padding: 2px 5px;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .work-item-cat {
    font-size: 10px;
  }
}

.work-item-time {
  font-size: 14px;
  color: #333;
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .work-item-time {
    margin-top: 0;
    font-size: 12px;
  }
}

.work-item-ttl {
  color: #003a51;
  font-weight: bold;
}

/* ===============================================
# message
=============================================== */
.message-content {
  position: relative;
}

.message-img {
  width: 80%;
  margin-left: auto;
  height: 500px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .message-img {
    width: 100%;
    margin-top: 30px;
    height: auto;
  }
}

.message-ttl {
  position: absolute;
  top: 60px;
  left: 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .message-ttl {
    position: static;
    text-align: center;
  }
}

.message-txt-box {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 50%;
  background: #fff;
  padding: 40px 30px 0 0;
}

@media screen and (max-width: 767px) {
  .message-txt-box {
    position: static;
    width: 100%;
    margin-top: 30px;
    padding: 0;
  }
}

.message-txt {
  line-height: 1.8;
}

.message-name {
  margin-top: 20px;
  font-weight: bold;
  text-align: right;
  font-size: 20px;
}

.message-name span {
  font-size: 16px;
  margin-right: 10px;
}

/* ===============================================
# company
=============================================== */
.company {
  background: #003a51;
}

.company .section-ttl {
  color: #fff;
}

.company .section-ttl span {
  color: #fff;
}

.company-box {
  background: #fff;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 60px 100px;
}

@media screen and (max-width: 767px) {
  .company-box {
    margin-top: 40px;
    padding: 40px 15px;
  }
}

.company-dl {
  display: flex;
}

@media screen and (max-width: 767px) {
  .company-dl {
    align-items: center;
  }
}

.company-dl + .company-dl {
  margin-top: 30px;
}

.company-dt {
  width: 150px;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .company-dt {
    font-size: 16px;
    width: 100px;
  }
}

.company-dd {
  width: calc(100% - 150px);
}

@media screen and (max-width: 767px) {
  .company-dd {
    width: calc(100% - 100px);
  }
}

/* ===============================================
# footer
=============================================== */
.bg-container {
  position: relative;
  height: 400px;
}

@media screen and (max-width: 767px) {
  .bg-container {
    height: 330px;
  }
}

.bg-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

.bg-footer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/footer-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.footer-top-wrapper {
  padding: 110px 0;
}

@media screen and (max-width: 767px) {
  .footer-top-wrapper {
    flex-direction: column;
    padding: 80px 0;
  }
}

.footer-banner {
  display: block;
  text-align: center;
}

.footer-banner img {
  width: 45%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .footer-banner img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .footer-banner {
    width: 100%;
  }
  .footer-banner + .footer-banner {
    margin-top: 40px;
  }
}

.footer-bottom {
  background: #474b5d;
}

.footer-bottom-wrapper {
  display: flex;
  align-items: center;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .footer-bottom-wrapper {
    flex-direction: column-reverse;
  }
}

.footer-bottom-left {
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .footer-bottom-left {
    margin-right: 0;
    text-align: center;
    margin-top: 40px;
  }
}

.footer-bottom-left-info {
  color: #fff;
}

.footer-bottom-left-ttl {
  font-size: 42px;
}

@media screen and (max-width: 767px) {
  .footer-bottom-left-ttl {
    font-size: 32px;
  }
}

.footer-bottom-left-tel {
  font-size: 18px;
  margin-top: 10px;
}

.footer-bottom-right-link {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .footer-bottom-right-link {
    text-align: center;
  }
}

.footer-bottom-right-link li {
  margin-top: 15px;
}

.footer-bottom-right-link li:first-child {
  margin-top: 0;
}

.footer-bottom-right-link li a {
  color: #fff;
  font-family: sans-serif;
  font-weight: bold;
}

.footer-copy {
  text-align: center;
  padding: 10px;
  border-top: 1px solid #fff;
}

.footer-copy p {
  color: #fff;
}

/* ===============================================
# 下層ページ
=============================================== */
.mainvisual-collumn {
  background: url(../img/mv-common.webp) center 20%/cover no-repeat;
  height: auto;
}

.mainvisual-collumn-box {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 80px 0;
  height: auto;
}

@media screen and (max-width: 767px) {
  .mainvisual-collumn-box {
    padding: 40px 0;
  }
}

.mainvisual-collumn-ttl {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
  color: #003a51;
}

@media screen and (max-width: 767px) {
  .mainvisual-collumn-ttl {
    font-size: 24px;
  }
}

.mainvisual-collumn-ttl span {
  font-size: 18px;
  font-weight: normal;
  color: #333;
}

@media screen and (max-width: 767px) {
  .mainvisual-collumn-ttl span {
    font-size: 16px;
  }
}

/* ===============================================
# 採用情報
=============================================== */
.human-wrapper {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .human-wrapper {
    flex-direction: column;
  }
}

.human-left {
  width: 50%;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .human-left {
    width: 100%;
    margin-right: 0;
  }
}

.human-left-ttl {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .human-left-ttl {
    text-align: center;
  }
}

.human-left-txt {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .human-left-txt {
    margin-top: 20px;
  }
}

.human-right {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .human-right {
    width: 100%;
    margin-top: 40px;
  }
}

.human-right-img {
  position: relative;
  z-index: 0;
}

.human-right-img::after {
  position: absolute;
  content: "";
  top: -30px;
  right: -30px;
  bottom: 30px;
  left: 30px;
  background: #474b5d;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .human-right-img::after {
    top: -10px;
    right: -10px;
  }
}

.flow {
  background-color: #003a51;
}

.flow-ttl {
  color: #fff;
}

.flow-ttl span {
  color: #fff;
}

.flow-wrapper {
  position: relative;
  background-color: #fff;
  padding: 60px 30px;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .flow-wrapper {
    padding: 40px 10px;
    margin-top: 40px;
  }
}

.flow-wrapper::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 89%;
  background-color: #474b5d;
  top: 115px;
  left: 104px;
}

@media screen and (max-width: 767px) {
  .flow-wrapper::after {
    height: 95%;
    left: 58px;
  }
}

.flow-box {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flow-box:first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .flow-box {
    flex-wrap: wrap;
  }
}

.flow-time {
  text-align: center;
  background-color: #474b5d;
  color: #fff;
  width: 150px;
  height: 150px;
  line-height: 150px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .flow-time {
    font-size: 16px;
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
}

.flow-center {
  width: 40%;
  color: #333;
}

@media screen and (max-width: 767px) {
  .flow-center {
    width: 70%;
  }
}

.flow-center-ttl {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 3px solid #474b5d;
  padding: 0 5px 10px 5px;
  color: #003a51;
}

@media screen and (max-width: 767px) {
  .flow-center-ttl {
    font-size: 16px;
    border-bottom: 2px solid #003a51;
    padding: 0 5px 5px 5px;
    line-height: 1;
  }
}

@media screen and (max-width: 767px) {
  .flow-center-ttl span {
    font-size: 12px;
    color: #333;
  }
}

.flow-center-txt {
  padding: 5px;
}

.flow-img {
  width: 30%;
}

@media screen and (max-width: 767px) {
  .flow-img {
    width: 70%;
    margin-left: auto;
  }
}

.flow-txt {
  margin-top: 40px;
  text-align: right;
}

.flow-txt p {
  text-align: left;
}

.guide-box {
  max-width: 800px;
  margin: 60px auto 0;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .guide-box {
    margin-top: 40px;
  }
}

.guide-box dl {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #888888;
  margin-top: 30px;
  padding: 0 5px 20px 5px;
}

@media screen and (max-width: 767px) {
  .guide-box dl {
    flex-direction: column;
  }
}

.guide-box dl:first-child {
  margin-top: 0;
}

.guide-box dl dt {
  font-size: 18px;
  font-weight: bold;
  width: 200px;
  color: #003a51;
}

@media screen and (max-width: 767px) {
  .guide-box dl dt {
    width: 100%;
  }
}

.guide-box dl dd {
  width: calc(100% - 200px);
}

@media screen and (max-width: 767px) {
  .guide-box dl dd {
    width: 100%;
    margin-top: 10px;
  }
}

.guide-form {
  text-align: center;
  margin-top: 60px;
  color: #474b5d;
}

/* ===============================================
# コンタクトフォーム７
=============================================== */
.contact {
  position: relative;
}

.contact::after {
  position: absolute;
  content: "";
  width: 40%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 60px;
  }
}

.contact-circle {
  position: absolute;
  content: "";
  top: 23px;
  left: 20px;
}

.contact-box {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  color: #333;
}

@media screen and (max-width: 767px) {
  .contact-box {
    padding: 20px 15px;
  }
}

.contact-note-txt {
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 3px solid #d8d8d8;
}

@media screen and (max-width: 767px) {
  .contact-note-txt {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}

.contact-required-txt {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.contact-required-txt span {
  color: #e81919;
}

.contact-contents__item--required {
  display: flex;
}

@media screen and (max-width: 767px) {
  .contact-contents__item--required {
    display: block;
  }
}

.contact-contents__item--required + .contact-contents__item--required {
  margin-top: 40px;
}

.required {
  position: relative;
}

.required::after {
  position: absolute;
  content: "必須";
  font-size: 12px;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  background: #e81919;
  padding: 5px 5px;
  line-height: 1;
  border-radius: 5px;
  margin-left: 5px;
}

.contact-contents__item-title {
  width: 230px;
  height: 40px;
  line-height: 40px;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .contact-contents__item-title {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.contact-contents__item-title p {
  display: inline-block;
}

.contact-contents__item-input--text {
  width: calc(100% - 230px);
}

@media screen and (max-width: 767px) {
  .contact-contents__item-input--text {
    width: 100%;
  }
}

.contact-contents__item-textarea {
  width: calc(100% - 230px);
}

@media screen and (max-width: 767px) {
  .contact-contents__item-textarea {
    width: 100%;
  }
}

.contact-contents__submit {
  text-align: center;
  margin-top: 40px;
}

.contact-contents__btn {
  width: 120px;
  height: 50px;
  border: none;
  background: #003a51;
  color: #fff;
}

.contact-contents__btn:hover {
  opacity: 0.6;
}

input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  border: none;
  height: 40px;
  background: whitesmoke;
  padding-left: 10px;
}

textarea {
  width: 100%;
  min-height: 122px;
  resize: vertical;
  border: none;
  background: whitesmoke;
}

input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

.wpcf7-list-item {
  display: block;
}

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

span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 2px solid #474b5d;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #003a51;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-list-item {
  display: block;
}

.wpcf7-list-item + .wpcf7-list-item {
  margin-top: 10px;
  margin-left: 0;
}

.wpcf7-spinner {
  display: none;
}

.form-privacy {
  text-align: center;
}

.form-privacy label {
  display: flex;
  justify-content: center;
}

.form-privacy span.wpcf7-list-item-label {
  justify-content: center;
}

.form-privacy .wpcf7-list-item-label::before {
  display: none;
}

/* ===============================================
# 新着情報一覧　右
=============================================== */
.archive-right {
  width: 15%;
}

@media screen and (max-width: 767px) {
  .archive-right {
    width: 100%;
    margin-top: 60px;
  }
}

.archive-right-item + .archive-right-item {
  margin-top: 40px;
}

.archive-right-item-ttl {
  font-weight: bold;
  border-left: 3px solid #333333;
  padding-left: 10px;
  padding-top: 3px;
}

.archive-right-item-ul {
  margin-top: 20px;
}

.archive-right-item-li {
  font-family: sans-serif;
}

.archive-right-item-li + .archive-right-item-li {
  margin-top: 10px;
}

.archive-right-item-li a {
  color: #474b5d;
  font-weight: bold;
}

.archive-right-item-li a:hover {
  opacity: 0.6;
}

.archive-right-item-insta {
  margin-top: 10px;
}

.archive-article {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .archive-article {
    flex-direction: column;
  }
}

/* ===============================================
# 新着情報一覧　左
=============================================== */
.archive-left {
  width: 80%;
}

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

.archive-left-item {
  border-bottom: 1px dotted #d6d6d6;
  padding-bottom: 20px;
}

.archive-left-item + .archive-left-item {
  margin-top: 40px;
}

.archive-left-item-box {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .archive-left-item-box {
    flex-direction: column;
  }
}

.archive-left-item-box .section-btn {
  text-align: left;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .archive-left-item-box .section-btn {
    text-align: center;
  }
}

.archive-left-item-img {
  width: 300px;
  margin-right: 40px;
  height: 200px;
  overflow: hidden;
  background-repeat: round;
}

@media screen and (max-width: 767px) {
  .archive-left-item-img {
    width: 100%;
    margin-right: 0;
  }
}

.archive-left-item-content {
  width: calc(100% - 300px);
}

@media screen and (max-width: 767px) {
  .archive-left-item-content {
    width: 100%;
    margin-top: 20px;
  }
}

.archive-left-item-info {
  display: flex;
  align-items: center;
}

.archive-left-item-time {
  color: #474b5d;
  font-weight: bold;
  font-family: sans-serif;
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .archive-left-item-published {
    font-size: 14px;
  }
}

.archive-left-item-cat {
  font-size: 12px;
  padding: 3px 10px;
  border: 1px solid gray;
  border-radius: 5px;
  font-family: sans-serif;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .archive-left-item-cat {
    font-size: 10px;
  }
}

.archive-left-item-ttl {
  margin-top: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #333333;
}

@media screen and (max-width: 767px) {
  .archive-left-item-ttl {
    font-size: 18px;
  }
}

.archive-left-item-txt {
  margin-top: 10px;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .archive-left-item-txt {
    margin-top: 5px;
  }
}

.archive-left-item-btn {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .archive-left-item-btn {
    text-align: center;
  }
}

.archive-left-item-btn a {
  padding: 10px 30px;
  background: #474b5d;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
}

.archive-left-item-btn a:hover {
  background: #333333;
}

.archive-right-item-li a.is-active,
.archive-right-item-li a:hover {
  color: #003a51;
}

/* ===============================================
# パンクズリスト
=============================================== */
.breadcrumb {
  padding-top: 20px;
  padding: 2px 0;
  color: #333;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 10px;
  }
}

.breadcrumb .home::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  margin-right: 10px;
}

.breadcrumb a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
  color: #333;
}

.breadcrumb a:hover {
  opacity: 0.6;
}

.breadcrumb i {
  margin-left: 5px;
  margin-right: 5px;
}

/* ===============================================
# ページネーション 
=============================================== */
.pagination {
  margin-top: 60px;
  text-align: center;
}

.pagination a {
  transition: all 0.3s ease 0s;
}

.pagination a:hover {
  opacity: 0.6;
}

.pagination a.next,
.pagination a.prev {
  font-size: 20px;
  background: none;
}

.pagination a.next:hover,
.pagination a.prev:hover {
  opacity: 0.6;
}

.page-numbers {
  background: #fff;
  border: 1px solid #e2e2e2;
  color: #808080;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  height: 30px;
  line-height: 30px;
  margin-right: 14px;
  min-width: 30px;
  text-align: center;
  text-decoration: none;
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  background: #474b5d;
  border: 1px solid #474b5d;
  color: #fff;
  font-weight: 700;
}

.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
  border: none;
  line-height: 40px;
  min-width: initial;
  width: auto;
}

/* ===============================================
# 新着情報詳細
=============================================== */
.single-info-box {
  background: #fff;
  padding: 60px;
  border: 1px dotted #d6d6d6;
}

@media screen and (max-width: 767px) {
  .single-info-box {
    padding: 30px 15px;
  }
}

.single-info-meta {
  display: flex;
  align-items: center;
}

.single-info-published {
  margin-right: 10px;
  color: #474b5d;
  font-weight: bold;
  font-family: sans-serif;
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .single-info-published {
    font-size: 14px;
  }
}

.single-info-img {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .single-info-img {
    margin-top: 20px;
  }
}

.single-info-ttl {
  margin-top: 40px;
  font-size: 24px;
  font-weight: bold;
  color: #333333;
}

@media screen and (max-width: 767px) {
  .single-info-ttl {
    font-size: 18px;
    margin-top: 25px;
  }
}

.single-info-txt {
  margin-top: 40px;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .single-info-txt {
    margin-top: 30px;
    font-size: 14px;
  }
}

.single-info-btn {
  margin-top: 60px;
  text-align: center;
}

.single-info-btn a {
  padding: 10px 30px;
  background: #e1ae22;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
}

.single-info-btn a:hover {
  background: #333333;
}

/* ===============================================
# ジャンルナビ
=============================================== */
.genre-nav {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .genre-nav {
    margin-bottom: 12px;
  }
}

.genre-nav-link {
  margin-right: 16px;
}

@media screen and (max-width: 767px) {
  .genre-nav-link {
    margin-right: 12px;
    margin-bottom: 12px;
  }
}

.genre-nav-link a {
  display: block;
  padding: 6px 14px;
  transition: all 0.5s ease 0s;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  font-family: sans-serif;
  color: #fff;
  background: #474b5d;
}

@media screen and (max-width: 767px) {
  .genre-nav-link a {
    padding: 3px 8px;
    font-size: 12px;
  }
}

.genre-nav-link a.is-active,
.genre-nav-link a:hover {
  background: #002233;
  color: #fff;
}

/* ===============================================
# 制作実績一覧
=============================================== */
.archive-work-content {
  display: flex;
  flex-wrap: wrap;
}

.archive-work-item {
  display: block;
  width: 30%;
  border: 1px solid #dfdfdf;
  margin-right: 5%;
}

@media screen and (max-width: 767px) {
  .archive-work-item {
    width: 100%;
    margin-right: 0;
  }
}

.archive-work-item:nth-child(3n) {
  margin-right: 0;
}

.archive-work-item:nth-child(n + 4) {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .archive-work-item:nth-child(n + 4) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .archive-work-item + .archive-work-item {
    margin-top: 30px;
  }
}

.archive-work-item:hover {
  opacity: 0.6;
}

.archive-work-img {
  height: 220px;
  overflow: hidden;
}

.archive-work-item-box {
  padding: 10px 15px;
}

.archive-work-cat {
  font-size: 10px;
  padding: 3px 10px;
  font-family: sans-serif;
  background: #474b5d;
  display: inline-block;
  color: #fff;
}

.archive-work-ttl {
  margin-top: 10px;
  font-weight: bold;
  color: #474b5d;
  font-size: 18px;
}

.archive-work-txt {
  margin-top: 5px;
  text-align: justify;
  color: #333;
}

/* ===============================================
# インスタグラム
=============================================== */
.insta-box {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .insta-box {
    margin-top: 40px;
  }
}

/* ===============================================
# 制作実績詳細
=============================================== */
.single-work-ttl {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .single-work-ttl {
    font-size: 18px;
  }
}

.single-work-content {
  border: 1px dotted #d6d6d6;
  padding: 60px 120px;
}

@media screen and (max-width: 767px) {
  .single-work-content {
    padding: 40px 10px;
  }
}

.single-work-img {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .single-work-img {
    margin-top: 20px;
  }
}

.single-work-bottom {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .single-work-bottom {
    margin-top: 20px;
  }
}

.single-work-left {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .single-work-left {
    width: 100%;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ===============================================
# プライバシーポリシー
=============================================== */
.policy .wrapper .item {
  padding: 0 40px 40px;
  border-bottom: 1px dotted #003a51;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .policy .wrapper .item {
    padding: 0 15px 20px;
    margin-bottom: 20px;
  }
}

.policy .wrapper .item .ttl {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .policy .wrapper .item .ttl {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
