@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: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.5;
  font-size: clamp(14px, 0.8333vw, 16px);
}

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

a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

a:hover {
  opacity: 0.6;
}

.container {
  width: 1360px;
  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: 100px;
}

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

.sec_btn a {
  display: inline-block;
  background-color: #121212;
  color: #fff;
  padding: 10px 50px;
}

.sec_ttl {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #333;
}

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

.section {
  padding: 120px 0;
}

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

.common_sec-ttl {
  text-align: center;
}

.common_sec-ttl p {
  font-size: 30px;
  font-family: "neue-haas-unica", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #121212;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .common_sec-ttl p {
    font-size: 20px;
  }
}

.common_sec-ttl h2 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  margin-top: 10px;
  line-height: 1;
  color: #333;
}

@media screen and (max-width: 767px) {
  .common_sec-ttl h2 {
    font-size: 18px;
    margin-top: 10px;
  }
}

.diagonal_back {
  position: relative;
}

.diagonal_back::after {
  position: absolute;
  content: "";
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  background-color: #121212;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .diagonal_back::after {
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
  }
}

.diagonal_back_gray {
  position: relative;
}

.diagonal_back_gray::after {
  position: absolute;
  content: "";
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
  background-color: #f4f4f4;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

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

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

#header > .inner {
  display: flex;
  align-items: center;
  padding: 20px clamp(50px, 5.2083vw, 100px) 20px clamp(50px, 5.2083vw, 100px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  height: 100px;
}

@media screen and (max-width: 767px) {
  #header > .inner {
    display: block;
    padding-left: 20px;
    height: auto;
  }
}

.head_description {
  position: absolute;
  right: 20px;
  top: 10px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .head_description {
    font-size: 10px;
    right: 5px;
    top: 5px;
  }
}

.header-logo {
  width: clamp(220px, 17.29167vw, 300px);
}

@media screen and (max-width: 767px) {
  .header-logo {
    width: 180px;
    text-align: center;
  }
}

.header-logo a {
  transition: all 0.3s ease 0s;
}

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

.header-sub {
  color: #333;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.71429;
  padding: 0 38px;
}

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

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

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

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

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

.header-nav > .inner {
  display: flex;
}

.header-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 40px;
  line-height: 40px;
}

.header-nav li {
  margin-right: clamp(15px, 2.08333vw, 40px);
}

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

.header-nav li > a {
  color: #000;
  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;
}

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

.header-contact {
  background-image: linear-gradient(45deg, #5accb0, #20bbcd);
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(180px, 12.1875vw, 234px);
  height: 164px;
  right: 0;
  top: 0;
  border-radius: 0 0 0 14px;
}

.header-contact img {
  display: block;
  margin: 0 auto;
  width: 52px;
}

.header-contact span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fbfbfb;
}

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

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

.drawer-icon {
  color: #121212;
  cursor: pointer;
  font-size: 20px;
  position: fixed;
  right: 17px;
  text-align: center;
  top: 25px;
  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: #121212;
  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;
  text-align: center;
}

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

/* ===============================================
# fv
=============================================== */
.fv {
  height: calc(100vh - 100px);
  margin: 0 40px;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .fv {
    margin: 0 10px;
    height: auto;
    background-position: 80% center;
  }
}

.fv_movie video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .fv_movie video {
    height: auto;
  }
}

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

@media screen and (max-width: 767px) {
  .fv_txt-box {
    left: 20px;
  }
}

.fv_txt-box .txt {
  font-size: clamp(40px, 4.1666vw, 80px);
  font-weight: bold;
  color: transparent;
  /* 文字の塗りつぶしを透明に */
  -webkit-text-stroke: 2px #ff0000;
  /* 縁の太さと色 */
  text-stroke: 2px #ff0000;
  /* 一部ブラウザ用 */
  font-family: neue-haas-grotesk-display, sans-serif;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .fv_txt-box .txt {
    font-size: 40px;
  }
}

.fv_txt-box h2 {
  font-size: clamp(20px, 3.17708vw, 40px);
  font-family: "neue-haas-unica", sans-serif;
  font-weight: 700;
  color: #fbfbfb;
  letter-spacing: 0.1em;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .fv_txt-box h2 {
    font-size: 28px;
    margin-top: 15px;
  }
}

/* ===============================================
# Topics
=============================================== */
.topics .sec_btn {
  text-align: center;
  margin-top: 60px;
}

.topics_wrapper {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}

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

.topics_wrapper li {
  width: calc((100% - 4.1666vw) / 3);
  margin-right: 2.08333vw;
}

.topics_wrapper li:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .topics_wrapper li:nth-child(3n) {
    margin-right: 4.1666vw;
  }
}

@media screen and (max-width: 767px) {
  .topics_wrapper li {
    width: calc((100% - 4.1666vw) / 2);
    margin-right: 4.1666vw;
  }
  .topics_wrapper li:nth-child(2n) {
    margin-right: 0;
  }
  .topics_wrapper li:nth-child(n + 3) {
    margin-top: 30px;
  }
}

.topics_wrapper li:nth-child(n + 4) {
  margin-top: 30px;
}

.topics_wrapper li a picture {
  display: block;
}

.topics_wrapper li a picture img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.topics_wrapper li a .cat {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  color: #fff;
  background-color: #cc3333;
}

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

.topics_wrapper li a .ttl {
  margin-top: 15px;
  color: #333;
}

@media screen and (max-width: 767px) {
  .topics_wrapper li a .ttl {
    margin-top: 5px;
  }
}

/* ===============================================
# about
=============================================== */
.about::after {
  background-color: #121212;
}

.about .sec_ttl p {
  color: #fff;
}

.about .sec_ttl h2 {
  color: #fff;
}

.about_wrapper {
  margin-top: 60px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .about_wrapper {
    flex-direction: column;
    margin-top: 40px;
  }
}

.about_img {
  width: 50%;
  margin-right: 60px;
}

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

.about_content {
  width: 50%;
}

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

.about_content .sub_ttl {
  font-size: 24px;
  font-weight: 600;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #cc3333;
}

@media screen and (max-width: 767px) {
  .about_content .sub_ttl {
    font-size: 18px;
  }
}

.about_content .txt {
  margin-top: 30px;
  line-height: 2;
  color: #fff;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .about_content .txt {
    margin-top: 15px;
  }
}

/* ===============================================
# メッセージ
=============================================== */
.message_wrapper {
  margin-top: 60px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .message_wrapper {
    margin-top: 40px;
    flex-direction: column-reverse;
  }
}

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

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

.message_content .sub_ttl {
  font-size: 24px;
  font-weight: 600;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #cc3333;
}

@media screen and (max-width: 767px) {
  .message_content .sub_ttl {
    font-size: 18px;
  }
}

.message_content .txt {
  margin-top: 30px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .message_content .txt {
    margin-top: 15px;
  }
}

.message_img {
  width: 50%;
}

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

.message_img img {
  aspect-ratio: 620/430;
  object-fit: cover;
}

.message_img .name {
  text-align: right;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .message_img .name {
    margin-top: 20px;
    font-size: 18px;
  }
}

.message_img .name span {
  margin-right: 20px;
  font-size: 16px;
  font-family: "neue-haas-unica", sans-serif;
}

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

/* ===============================================
# サービス
=============================================== */
.service_wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.service_wrapper li {
  width: 48%;
}

.service_wrapper li:nth-child(n + 3) {
  margin-top: 30px;
}

.service_wrapper li a img {
  height: 200px;
  object-fit: cover;
}

/* ===============================================
# パートナー
=============================================== */
.partner_wrapper {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1vw;
}

/* ===============================================
# 新着情報
=============================================== */
.news .sec_btn {
  text-align: center;
  margin-top: 60px;
}

.news .sec_btn a {
  background-color: #cc3333;
  color: #ffffff;
}

.news .sec_ttl p {
  color: #fff;
}

.news .sec_ttl h2 {
  color: #fff;
}

.news_wrapper {
  max-width: 600px;
  margin: 60px auto 0;
}

.news_wrapper li {
  border-bottom: 1px dotted #707070;
  padding: 0 15px 5px;
  margin-bottom: 15px;
}

.news_wrapper li a {
  display: flex;
  align-items: center;
  color: #fff;
}

.news_wrapper li a .published {
  width: 100px;
}

.news_wrapper li a .ttl {
  width: calc(100% - 100px);
}

/* ===============================================
# 会社概要
=============================================== */
.overview_wrapper {
  max-width: 800px;
  margin: 60px auto 0;
}

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

.overview_wrapper dl {
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #707070;
  padding: 0 15px 10px;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .overview_wrapper dl {
    flex-direction: column;
    padding: 0 5px 10px;
  }
}

.overview_wrapper dl:last-child {
  margin-bottom: 0;
}

.overview_wrapper dl dt {
  text-align: left;
  width: 180px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .overview_wrapper dl dt {
    font-size: 16px;
    width: 100%;
    height: auto;
    padding: 5px;
  }
}

.overview_wrapper dl dd {
  padding: 0 20px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .overview_wrapper dl dd {
    width: 100%;
    padding: 5px;
  }
}

.overview_map {
  margin-top: 60px;
}

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

.overview_map iframe {
  width: 100%;
  height: 30vw;
}

@media screen and (max-width: 767px) {
  .overview_map iframe {
    height: 250px;
  }
}

/* ===============================================
# footer
=============================================== */
.footer {
  background-color: #121212;
  padding: 20px 0;
}

.copy {
  font-size: 14px;
  font-weight: 500;
  font-family: neue-haas-grotesk-display, sans-serif;
  color: #fff;
  text-align: center;
}

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

/* ===============================================
# CTA
=============================================== */
.cta {
  position: fixed;
  right: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999;
}

@media screen and (max-width: 767px) {
  .cta {
    bottom: 0;
    top: unset;
    transform: none;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .cta_wrapper {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .cta_wrapper li {
    width: 33.333%;
    height: 70px;
  }
}

@media screen and (max-width: 767px) {
  .cta_wrapper li a {
    display: block;
    width: 100%;
    text-align: center;
  }
}

.cta_wrapper li a img {
  width: 80px;
}

@media screen and (max-width: 767px) {
  .cta_wrapper li a img {
    width: 70px;
    margin: 0 auto;
  }
}

.cta_wrapper li:nth-child(1) {
  background-color: #00b900;
}

.cta_wrapper li:nth-child(2) {
  background-color: #00a3ad;
}

.cta_wrapper li:nth-child(3) {
  background-color: #004aad;
}

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

.mainvisual-collumn-box {
  background-color: rgba(255, 255, 255, 0.698);
  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: #121212;
}

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

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

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

.contact_mv {
  background: url(../img/mv-contact.webp) center 35%/cover no-repeat;
  height: auto;
}

/* ===============================================
# ジャンルナビ
=============================================== */
.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: #333;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
}

@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: #cc3333;
  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: #cc3333;
  display: inline-block;
  color: #fff;
}

.archive-work-ttl {
  margin-top: 10px;
  font-weight: bold;
  color: #333;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: 18px;
}

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

/* ===============================================
# ページネーション 
=============================================== */
.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: #cc3333;
  border: 1px solid #cc3333;
  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-work .sec_btn {
  text-align: center;
  margin-top: 60px;
}

.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 gray;
  padding: 60px 80px;
  max-width: 800px;
  margin: 0 auto;
}

@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%;
  }
}

.single-work-txt {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  letter-spacing: 0.1em;
}

.single-work-txt h2 {
  margin-top: 15px;
  font-size: 24px;
  background: #f51515;
  font-weight: 900;
  padding: 0 10px;
  color: #fbfbfb;
}

.single-work-txt h3 {
  margin-top: 15px;
  border-left: solid 5px #f51515;
  font-weight: 600;
  padding-left: 10px;
  font-size: 20px;
}

.single-work-txt h4 {
  font-size: 18px;
  margin-top: 15px;
  position: relative;
  padding-left: 1.2em;
}

.single-work-txt h4::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  /*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;
  /*絶対位置*/
  font-size: 1em;
  /*サイズ*/
  left: 0;
  /*アイコンの位置*/
  top: 0;
  /*アイコンの位置*/
  color: #5ab9ff;
  /*アイコン色*/
  font-weight: 900;
}

.single-work-txt p {
  margin-top: 15px;
  line-height: 1.5;
  font-weight: 500;
}

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

.single-work-txt video {
  margin-top: 15px;
  aspect-ratio: 530/316;
}

.single-work-txt iframe {
  margin-top: 15px;
  aspect-ratio: 530/316;
}

/* ===============================================
# googleリキャブチャ
=============================================== */
.grecaptcha-badge {
  visibility: hidden;
}

/* ===============================================
# 新着情報
=============================================== */
.archive-article {
  display: flex;
  justify-content: space-between;
}

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

/* ===============================================
# 新着情報一覧　左
=============================================== */
.single_btn {
  text-align: center;
  margin-top: 30px;
}

.archive-left {
  width: 80%;
}

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

.archive-left-item {
  border-bottom: 1px dotted gray;
  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-content .sec_btn {
  margin-top: 20px;
}

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

.archive-left-item-time {
  color: #cc3333;
  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: #cc3333;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
}

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

/* ===============================================
# 新着情報一覧　右
=============================================== */
.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: #121212;
  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-right-item-li a.is-active,
.archive-right-item-li a:hover {
  color: #cc3333;
}

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

@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: #cc3333;
  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;
}

/* ===============================================
# コンタクトフォーム７
=============================================== */
.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: #cc3333;
}

.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: #cc3333;
  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: #121212;
  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 #121212;
  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: #cc3333;
  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;
}
