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

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

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

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

input, select {
  vertical-align: middle;
}

li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a:hover {
  text-decoration: none;
}

html {
  font-size: 62.5%;
}

/* --------------------------------------------
 * 　変数
 * -------------------------------------------- */
/* --------------------------------------------
 * 　共有管理
 * -------------------------------------------- */
.bg_blue {
  background-color: #94D6E2;
}

.bg_yellow {
  background-color: #FBD980;
}

.col_2 {
  display: flex;
}

.head_size {
  display: inline-block;
  font-size: 4vw;
  border-top: 7px solid;
  border-bottom: 7px solid;
  padding: 0.1em 0;
}
@media screen and (max-width: 1023px) {
  .head_size {
    font-size: 6vw;
  }
}
@media screen and (max-width: 1023px) and (max-width: 768px) {
  .head_size {
    font-size: 8vw;
  }
}
@media screen and (min-width: 1440px) {
  .head_size {
    font-size: 58px;
  }
}

.head_line {
  display: flex;
  justify-content: center;
  margin-bottom: 30vh;
}

/* --------------------------------------------
 * 　基本設計
 * -------------------------------------------- */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background-color: #fff;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "Meiryo", "MS PGothic", sans-serif;
  font-weight: 600;
  font-display: block;
  color: #434040;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

main {
  position: relative; /* 上にあるdivの相対的な位置を設定 */
  z-index: 0; /* 干渉を避けるため、z-indexを適切に設定 */
}

/* reCAPTCHAの表示を隠す */
.grecaptcha-badge {
  visibility: hidden;
}

/* --------------------------------------------
 *  max-width
    macbook air１３インチの画面幅 1440pxに合わしてます。
 * -------------------------------------------- */
#container, header, footer {
  max-width: 1440px;
  overflow: hidden;
  margin: 0 auto;
}

/* ===============================================
# マウスストーカー
=============================================== */
.stalker {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #6FBCE5;
  transform: translate(-50%, -50%);
  z-index: 999;
  pointer-events: none; /*←めちゃめちゃ大事です */
  /* mix-blend-mode: difference; */
}
@media screen and (max-width: 1023px) {
  .stalker {
    visibility: hidden;
    opacity: 0;
    display: none;
  }
}

/* --------------------------------------------
* 　ヘッダー
* -------------------------------------------- */
/* --------------------------------------------
 * 　gsap ナビメニュー（折りたたみ式）
 * -------------------------------------------- */
.menu_container {
  width: 100%;
  overflow: hidden;
}

.header {
  width: 100%;
  max-width: 1440px;
  padding: 0 15px;
}
@media screen and (max-width: 1023px) {
  .header {
    height: 55px;
    position: fixed;
    width: 100%;
    z-index: 1;
    background-color: #fff;
    top: 0;
  }
}

.header .header_col {
  display: flex;
  justify-content: space-between;
  height: inherit;
  width: 100%;
}

.header .logo {
  max-width: 250px;
  align-content: center;
  width: 100%;
  padding: 0 5px;
}
@media screen and (max-width: 1023px) {
  .header .logo {
    width: 50%;
  }
}

.header .logo a {
  font-size: 23px;
  color: #434040;
  display: inline-block;
}

.header .logo img {
  width: 100%;
}

/*=======ここまでは見た目を整えるための記述======*/
/*ボタン*/
.header-menu-trigger {
  display: none;
  width: 64px;
  height: 64px;
  border-radius: 28px;
  background-color: transparent;
  position: absolute;
  top: 64px;
  right: 0;
  border: none;
  cursor: pointer;
  z-index: 99;
  /* transition:background-color .5s; */
}
@media screen and (max-width: 1023px) {
  .header-menu-trigger {
    display: inline-block;
    top: 6px;
  }
}
@media screen and (max-width: 1023px) and (max-width: 768px) {
  .header-menu-trigger {
    top: 6px;
  }
}

.header-menu-trigger.is-active {
  background-color: transparent;
}

.header-menu-trigger.is-active .line {
  background-color: #434040;
}

.line {
  width: 25px;
  height: 3px;
  border-radius: 1px;
  background-color: #434040;
  position: absolute;
  top: 5;
  left: 5;
}

.line[data-index="1"] {
  transform: translate(calc(-50% - 20px), calc(-50% - 20px));
}

.line[data-index="2"] {
  transform: translate(calc(-50% - 20px), calc(-50% - 12px));
}

.line[data-index="3"] {
  transform: translate(calc(-50% - 20px), calc(-50% - 4px));
}

.polygon_container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.polygon_blue {
  background-color: #94D6E2;
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%);
  transform: translateY(-100%);
}

.polygon_yellow {
  background-color: #FBD980;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
  z-index: 1;
  transform: translateY(100%);
}

/*メニュー内のスタイル*/
.header-menu {
  width: 100%;
  height: 100px;
  top: 0;
  right: 0;
  opacity: 1;
  overflow: hidden;
  z-index: 50;
}
@media screen and (max-width: 1023px) {
  .header-menu {
    height: 100vh;
    visibility: hidden;
    position: fixed;
  }
}

.header-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.header-lists {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1023px) {
  .header-lists {
    height: 73vh;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    z-index: 10;
  }
}
@media screen and (max-width: 1023px) and (max-width: 350px) {
  .header-lists {
    height: 100vh;
  }
}

.header-lists li {
  font-size: 20px;
  font-weight: bold;
  border-right: 1px solid;
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .header-lists li {
    border-right: none !important;
    visibility: hidden;
  }
}

@media screen and (max-width: 1023px) {
  .header-lists li + li {
    margin-top: 5vh;
  }
}
.header-lists li:last-child {
  border-right: none;
}

.header-lists li a {
  color: #434040;
  font-weight: 400;
  margin-right: 2em;
  margin-left: 2em;
  font-size: initial;
  padding: 2px 5px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .header-lists li a {
    font-weight: 600;
    font-size: 20px;
    margin-right: 0;
    margin-left: 0;
  }
}

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

.header-lists li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0%;
  left: 0%;
  /*線の形状*/
  width: 100%;
  height: 1px;
  background: #434040;
  /*アニメーションの指定*/
  transition: width 100ms;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: center top; /*上部中央基点*/
}
@media screen and (max-width: 768px) {
  .header-lists li a::after {
    content: none;
  }
}

/*現在地とhoverの設定*/
.header-lists li.current a::after,
.header-lists li a:hover::after {
  transition: 300ms;
  transform: scale(1, 1); /*X方向にスケール拡大*/
}

.header-lists li .air {
  color: #94D6E2;
}
@media screen and (max-width: 1023px) {
  .header-lists li .air {
    color: #fff;
  }
}

.header-lists li .interior {
  color: #FFC62F;
}
@media screen and (max-width: 1023px) {
  .header-lists li .interior {
    color: #fff;
  }
}

/* --------------------------------------------
* 　フロントページ
* -------------------------------------------- */
/*************************************************
*   FV
*************************************************/
.slider_wrapper {
  position: relative;
  width: 100%;
  height: 500px; /* スライダーの高さ */
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .slider_wrapper {
    height: 60vh; /* スライダーの高さ */
  }
}

.slider_container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide_group {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  opacity: 0;
}

.slide_group:first-child {
  opacity: 1; /* 最初の画像だけ表示 */
}

.slide_air {
  width: 50%; /* 2枚並べる */
}

.slide_int {
  right: 0;
  width: 50%; /* 2枚並べる */
}

.slide_group img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 1023px) {
  .slide_group img {
    height: 60vh; /* スライダーの高さ */
  }
}

/* スマホサイズでのレイアウト変更 */
@media (max-width: 768px) {
  .slider_wrapper {
    height: 60vh;
    margin-top: 55px;
  }
  .slider_container {
    flex-direction: column;
  }
  .slide_group {
    flex-direction: column;
    height: auto;
  }
  .slide_air {
    width: 100%;
    height: 30vh;
  }
  .slide_int {
    width: 100%;
    height: 30vh;
  }
  .slide_group img {
    width: 100%;
    height: 30vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.fv {
  width: 100%;
  position: relative;
}

.fv .fv_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
}

.fv .fv_txt h2 {
  display: flex;
  z-index: 10;
  position: absolute;
  width: 10em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fv .bg_blue {
  background-color: rgba(148, 214, 226, 0.75);
  padding: 0.2em 0em 0.2em 1em;
}

.fv .bg_yellow {
  background-color: rgba(251, 217, 128, 0.75);
  padding: 0.2em 1em 0.2em 0em;
}

/* スマホサイズでのレイアウト変更 */
@media (max-width: 768px) {
  .fv .fv_txt h2 {
    display: flex;
    flex-direction: column;
    width: 5em;
    gap: 150px;
  }
  .fv .bg_blue {
    text-align: center;
    padding: 0.2em 0em 0.2em 1em;
  }
  .fv .bg_yellow {
    text-align: center;
    padding: 0.2em 0em 0.2em 1em;
  }
}
/*************************************************
*   会社概要テキスト
*************************************************/
.about {
  width: 100%;
  height: auto;
  text-align: center;
  position: relative;
}

.about .diagonal-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about .diagonal-container {
    height: 630px;
  }
}

.about .diagonal-block {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%);
}

.about .yellow {
  background-color: #FBD980;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
  z-index: 1;
}

.about .blue {
  background-color: #94D6E2;
}

.about_wrap {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  color: #fff;
}
@media (max-width: 768px) {
  .about_wrap {
    text-align: justify;
    width: 80%;
  }
}

.about_wrap h3 {
  font-size: 20px;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .about_wrap h3 {
    font-size: 16px;
    margin-bottom: 2em;
  }
}

.about_wrap p {
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .about_wrap p {
    font-size: 12px;
    line-height: 1.5;
  }
}

.about_wrap .works_trans {
  width: 23em;
  margin: 4em auto 1em;
  background-color: #fff;
  color: #94D6E2;
  border-radius: 20px;
}

.about_wrap .works_trans .works_trans_txt {
  font-size: 12px;
  position: relative;
  text-align: center;
  align-content: center;
  height: 3em;
}
.about_wrap .works_trans .arrow {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 22px;
  height: 22px;
}

/*************************************************
*   業務案内
*************************************************/
.works .works_wrap .works_ttl_container {
  text-align: center;
  margin: 15em auto;
}

.works .works_wrap .works_ttl_container h2 {
  font-size: 45px;
}
@media (max-width: 768px) {
  .works .works_wrap .works_ttl_container h2 {
    font-size: 35px;
  }
}

.works .works_wrap .works_ttl_container .decoration {
  font-size: 15px;
  width: 7em;
  background-color: #434040;
  color: #fff;
  border-radius: 20px;
  padding: 7px 3px;
  margin: 1em auto;
}
@media (max-width: 768px) {
  .works .works_wrap .works_ttl_container .decoration {
    font-size: 12px;
  }
}

.works .works_wrap .works_ttl_container p {
  margin-left: 1em;
  font-size: 16px;
}
@media (max-width: 768px) {
  .works .works_wrap .works_ttl_container p {
    font-size: 12px;
  }
}

/* --------------------------------------------
/*フェードインアニメーション
/* --------------------------------------------*/
.fade_container {
  display: flex;
  gap: 40px;
  margin-top: 100vh;
  /* スクロールで順番に表示 */
}

.fade_block {
  opacity: 0; /* 初期状態は透明 */
}

/* 左側のブロック */
.fade_block[data-side=left] {
  transform: translateX(-25px); /* 下から上がる */
}

/* 右側のブロック */
.fade_block[data-side=right] {
  transform: translateX(25px); /* 右から左に入る */
}

/* --------------------------------------------
/*斜線の装飾
/* --------------------------------------------*/
.works .diagonal_works {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 10em;
}

.works .diagonal_works .diagonal_cover {
  background-color: #fff;
  z-index: -1;
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
}

.works .diagonal_works .diagonal_air {
  background-color: #94D6E2;
  z-index: -2;
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(113% 0, 115% 0%, -82% 100%, -291% 104%);
}

.works .diagonal_works .diagonal_interior {
  background-color: #FBD980;
  z-index: -3;
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(0% 62%, -203% 0, 189% 100%, 80% 100%);
}

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

.air_col2 h3 {
  width: 5.5em;
  height: 5em;
  text-align: center;
  align-content: center;
  background-color: #94D6E2;
  color: #fff;
  font-size: clamp(25px, 3vw, 45px);
}
@media (max-width: 768px) {
  .air_col2 h3 {
    width: 3.5em;
    height: 3.5em;
  }
}

.air_col2 .decoration {
  background-color: transparent;
  font-size: 10vw;
  font-family: "DIN Condensed";
  opacity: 0.75;
  font-weight: 400;
  margin-left: 0.25em;
  color: #94D6E2;
  white-space: nowrap; /* 改行を防ぐ */
  overflow: hidden; /* はみ出し防止 */
}

/* --------------------------------------------*/
.interior_col2 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.interior_col2 h3 {
  width: 250px;
  height: 220px;
  text-align: center;
  align-content: center;
  background-color: #FBD980;
  color: #fff;
  font-size: clamp(25px, 3vw, 45px);
}
@media (max-width: 768px) {
  .interior_col2 h3 {
    width: 3.5em;
    height: 3.5em;
  }
}

.interior_col2 .decoration {
  background-color: transparent;
  font-size: 10vw;
  font-family: "DIN Condensed";
  opacity: 0.75;
  font-weight: 400;
  margin-right: 0.25em;
  color: #FBD980;
  white-space: nowrap; /* 改行を防ぐ */
  overflow: hidden; /* はみ出し防止 */
}

/* --------------------------------------------*/
.works_card {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 15em auto;
}
@media (max-width: 1023px) {
  .works_card {
    align-items: center;
  }
}
@media (max-width: 1023px) and (max-width: 768px) {
  .works_card {
    flex-direction: column;
  }
}

.works_card .air {
  background-color: #188DA7;
}

.works_card .interior {
  background-color: #F8BC5C;
}

.works .reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .works .reverse {
    flex-direction: column;
  }
}

.works_card .desc {
  width: 50%;
  transform: translate(40px, 0);
}
@media (max-width: 768px) {
  .works_card .desc {
    width: 100%;
  }
}

.works_card .desc h4 {
  width: 20em;
  color: #fff;
  border-radius: 20px;
  padding: 10px 10px;
  margin-top: 1em;
  font-size: 20px;
}
@media (max-width: 768px) {
  .works_card .desc h4 {
    width: 100%;
  }
}

.works_card .desc p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
  margin-top: 1em;
}
@media (max-width: 768px) {
  .works_card .desc p {
    text-align: justify;
    font-size: 13px;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  .works_card .br {
    display: none;
  }
}

.works_card .works_img {
  width: 50%;
}
@media (max-width: 768px) {
  .works_card .works_img {
    width: 100%;
  }
}

/* --------------------------------------------
* 　固定ページ共通
* -------------------------------------------- */
.ttl_font_size {
  font-size: 35px;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 768px) {
  .ttl_font_size {
    font-size: 24px;
  }
}

.sub_fv {
  position: relative;
}
@media (max-width: 768px) {
  .sub_fv {
    margin-top: 55px;
  }
}

@media (max-width: 768px) {
  .sub_fv .sub_mv img {
    width: 100%;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
    overflow: hidden;
  }
}

.sub_fv .sub_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.decorated-box {
  position: relative;
  width: 100%; /* 適宜変更 */
  background-color: #f0f0f0;
  padding: 20px;
  overflow: hidden;
}

/* 三角形の共通スタイル */
.decorated-box::before,
.decorated-box::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

/* 左上の三角形 */
.decorated-box::before {
  top: 0;
  left: 0;
  border-width: 25vw 25vw 0 0; /* 左上の三角形サイズ */
}
@media (max-width: 1023px) {
  .decorated-box::before {
    border-width: 50vw 50vw 0 0; /* 左上の三角形サイズ */
  }
}

/* 右下の三角形 */
.decorated-box::after {
  bottom: 0;
  right: 0;
  border-width: 0 0 25vw 25vw; /* 右下の三角形サイズ */
}
@media (max-width: 1023px) {
  .decorated-box::after {
    border-width: 0 0 50vw 50vw; /* 右下の三角形サイズ */
  }
}

/* 固定ページの上下の余白 */
.other_rule {
  margin: 30vh auto;
}
@media (max-width: 1023px) {
  .other_rule {
    margin: 15vh auto;
  }
}

/* --------------------------------------------
* 　会社概要ページ
* -------------------------------------------- */
/* 左上の三角形 */
.container_about .decorated-box::before {
  border-color: #DCF3F5 transparent transparent transparent; /* カラー調整 */
}

.container_about .decorated-box::after {
  border-color: transparent transparent #DCF3F5 transparent; /* カラー調整 */
}

.container_about .company-profile {
  position: relative;
  z-index: 1;
  width: 35%;
  min-width: 500px;
  font-size: 16px;
}
@media (max-width: 1023px) {
  .container_about .company-profile {
    width: 80%;
    min-width: 80vw;
    font-size: 13px;
  }
}

.container_about .company-profile .profile-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #7B7B7B;
  padding: 1em 0;
}

@media (max-width: 1023px) {
  .container_about .company-profile .profile-title {
    width: 30%;
  }
}

.container_about .company-profile .profile-content {
  width: 80%;
  color: #434040;
}
@media (max-width: 1023px) {
  .container_about .company-profile .profile-content {
    width: 80%;
  }
}

.container_about .company-profile .tascs_item {
  border-bottom: 1px solid #7B7B7B;
  padding: 1em 0 2em;
}

.container_about .company-profile .tascs_item .tascs-title {
  margin-bottom: 1em;
}

.container_about .company-profile .tascs_item .tascs-content {
  margin-left: 1em;
}

/* --------------------------------------------
 * 　投稿一覧ページ（アーカイブ）
 * -------------------------------------------- */
.container_archive_works .decoration {
  font-family: "DIN Condensed";
  position: relative;
  text-align: center;
  color: #434040;
  margin: 30vh auto;
}

.container_archive_works .decorated-box::before {
  border-color: #94D6E2 transparent transparent transparent; /* カラー調整 */
}

.container_archive_works .decorated-box::after {
  border-color: transparent transparent #FBD980 transparent; /* カラー調整 */
}

.list_wrap {
  width: 80%;
  position: relative;
  z-index: 1;
}
.col_3_wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  margin-top: 2.54%;
}
@media screen and (max-width: 1023px) {
  .col_3_wrap {
    grid-template-columns: 1fr 1fr;
    max-width: 100% !important;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .col_3_wrap {
    grid-template-columns: 1fr;
  }
}

.col_3_wrap li {
  width: 100%;
  display: block;
  overflow: hidden;
}

/* .col_3_wrap li:first-child {
    margin-top: 0;
    @media screen and (max-width: 1023px) {
        margin-top: 2.54%;
    }
}
.col_3_wrap li:nth-child(2) {
    margin-top: 0;
    @media screen and (max-width: 1023px) {
        margin-top: 2.54%;
    }
}
.col_3_wrap li:nth-child(3) {
    margin-top: 0;
    @media screen and (max-width: 1023px) {
        margin-top: 2.54%;
    }
}
.col_3_wrap li:first-child {
    margin-top: 0;
    @media screen and (max-width: 1023px) {
        margin-top: 2.54%;
    }
} */
.col_3_wrap li .img {
  position: relative;
  overflow: hidden;
}

.col_3_wrap li .ttl {
  color: #707070;
  display: inline-block;
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  font-weight: 300;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .col_3_wrap li .ttl {
    position: relative;
    display: block;
    opacity: 1;
  }
}

.col_3_wrap li .ttl p {
  font-size: 16px;
  width: 100%;
  top: 50%;
  font-weight: bold;
}

.col_3_wrap li .ttl_txt {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .col_3_wrap li .ttl_txt {
    display: block;
    opacity: 1;
    visibility: inherit;
    transform: translateY(0);
    position: relative;
    margin: 1.5em auto;
  }
}

.col_3_wrap li .filter {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #fff;
  opacity: 0.9;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .col_3_wrap li .filter {
    display: none;
  }
}

/* .col_3_wrap > *{
    width:100%;
    max-width:calc(1200px / 3 - 60px);
    margin-bottom: 30px;
}
.col_3_wrap > *:nth-child(3n + 2){
    margin-right:30px;
    margin-left:30px;
} */
.col_3_wrap > a:hover {
  text-decoration: none;
}

.col_3_wrap .img img {
  max-width: 100%;
  height: auto;
  transition: 1s all;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .container_archive_news .container_article_list {
    padding-left: 0;
    padding-right: 0;
  }
  .col_3_wrap {
    flex-direction: column;
  }
  .col_3_wrap > * {
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .col_3_wrap > *:last-child {
    margin-bottom: 0;
  }
  .col_3_wrap > *:nth-child(3n+2) {
    margin-right: 0px;
    margin-left: 0px;
  }
  .col_3_wrap .img img {
    width: 100%;
    height: auto;
  }
}
/* ページャー */
.navigation.pagination {
  margin-top: 30px;
}

.navigation.pagination .nav-links .prev {
  border: none !important;
}

.navigation.pagination .nav-links .next {
  border: none !important;
}

.navigation.pagination .nav-links .current {
  padding: 6px 11px;
  background: #188DA7;
  border: 1px solid #434040;
  border-radius: 3px;
  color: #ffffff;
}

.navigation.pagination .nav-links a {
  padding: 6px 11px;
  border: 1px solid #434040;
  border-radius: 3px;
  color: #434040;
}

.navigation.pagination .nav-links a:hover {
  background: #94D6E2;
  border: 1px solid #434040;
  color: #ffffff;
}

/* ===============================================
# 投稿ページ
=============================================== */
/* .container_single {
    margin-top: 4rem !important;
} */
.container_single .single_list {
  width: 80%;
  margin: 25vh auto;
}
@media screen and (max-width: 768px) {
  .container_single .single_list {
    width: 90%;
  }
}

.container_single h1 {
  font-weight: 600;
  margin-top: 1em;
  margin-bottom: 4em;
  font-size: 20px;
}
@media screen and (max-width: 1023px) {
  .container_single h1 {
    margin-bottom: 2px;
  }
}

.container_single .date {
  font-size: 16px;
  font-weight: 400;
}

.container_single .container {
  display: flex;
  flex-direction: column;
}

.container_single .container p {
  font-size: 16px;
  text-align: justify;
  font-weight: 400;
  word-break: break-all;
}

.container_single .container img {
  width: 100%;
  max-width: 800px;
  margin-top: 2em;
  margin-bottom: 2em;
}
@media screen and (max-width: 1023px) {
  .container_single .container img {
    width: 100%;
    max-width: 100% !important;
  }
}

.wp-block-embed__wrapper {
  padding-top: 56.25%;
  width: 100vw;
  position: relative;
  max-width: 915px;
}
@media screen and (max-width: 1023px) {
  .wp-block-embed__wrapper {
    width: 100%;
    max-width: 100%;
  }
}

.wp-block-embed__wrapper iframe {
  /* display: block;
  max-width: 100%;
  margin: 0 auto; */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

/* --------------------------------------------
 * 　お問合わせ
 * -------------------------------------------- */
.container_contact .decorated-box::before {
  border-color: #E0EEFF transparent transparent transparent; /* カラー調整 */
}

.container_contact .decorated-box::after {
  border-color: transparent transparent #E0EEFF transparent; /* カラー調整 */
}

.contact_form {
  position: relative;
  z-index: 1;
}
.container_contact .two_col {
  grid-column-gap: 0;
  grid-row-gap: 0;
  background-color: #eee;
}

.contact_box {
  color: #eee;
}
@media screen and (max-width: 768px) {
  .contact_box {
    height: 40vh;
    align-content: center;
  }
}

.contact_form .article {
  width: 60%;
  margin: 0 auto;
  transform: translateX(7em);
}
@media screen and (max-width: 768px) {
  .contact_form .article {
    transform: translateX(0);
    width: 90%;
  }
}

.contact_form .txt {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .contact_form .txt {
    font-size: 13px;
    line-height: 1.4;
  }
}
.contact_form .txt .space {
  display: block;
  margin-bottom: 2em;
}

.contact_form .txt h3 {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 2vw;
}
@media screen and (max-width: 768px) {
  .contact_form .txt h3 {
    font-size: 5vw;
  }
}
@media screen and (min-width: 1440px) {
  .contact_form .txt h3 {
    font-size: 28px;
  }
}

.contact_form .txt p {
  text-align: justify;
}

.wpcf7 {
  width: 80%;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .wpcf7 {
    width: 100%;
  }
}

.wpcf7 table {
  width: 100%;
  font-size: 16px;
}

.wpcf7 table .td_left {
  width: 25%;
  height: auto;
  vertical-align: middle;
  background: #ffffff;
  padding: 0 2%;
}

.wpcf7 table .td_right {
  width: 75%;
  height: auto;
  background: #fff;
  padding: 10px 2%;
}

.wpcf7 p {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #434040;
}
@media screen and (max-width: 768px) {
  .wpcf7 p {
    font-size: 13px;
  }
}

.wpcf7 dt {
  font-size: 13px;
  color: #000;
}

.wpcf7 dd {
  margin: 0 0 25px 0;
}

.wpcf7 .required {
  margin-left: 2rem;
  padding: 0.4rem;
  background-color: #707070;
  color: #f0f4f4;
}

.wpcf7 input,
.wpcf7 select {
  width: 100%;
  height: 45px;
  padding: 5px 5px 3px;
  border: 1px solid #000;
}

.wpcf7 textarea {
  width: 100%;
  height: 150px;
  padding: 5px 5px 3px;
  border: 1px solid #000;
}

textarea::-moz-placeholder {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "Meiryo", "MS PGothic", sans-serif;
}

textarea::placeholder {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "Meiryo", "MS PGothic", sans-serif;
}

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

.wpcf7 .flexwrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  background: #fff;
}

.wpcf7 tr td .any {
  display: inline-block;
  min-width: 40px;
  color: #fff;
  background: #59c197;
  padding: 3px 7px 1px;
  margin-left: 5px;
  border-radius: 2px;
  font-size: 12px;
}

.wpcf7 tr td .required {
  display: inline-block;
  min-width: 40px;
  color: #fff;
  background: #707070;
  padding: 3px 7px 1px;
  margin-left: 5px;
  border-radius: 2px;
  font-size: 12px;
}

.wpcf7 tr .wpcf7-form-control-wrap input:focus {
  outline: solid #efefef 1px;
  outline-offset: -1px;
  background-color: #fcfcfc;
}

.wpcf7 tr .wpcf7-form-control-wrap textarea:focus {
  outline: solid #efefef 1px;
  outline-offset: -1px;
  background-color: #fcfcfc;
}

.wpcf7 .wpcf7-not-valid-tip,
.wpcf7 .wpcf7-response-output {
  display: block;
  font-size: 12px;
  color: #a00;
}

.wpcf7 .screen-reader-response {
  display: none;
}

.wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  text-align: center;
}

.wpcf7 #acceptance {
  text-align: center;
}

.wpcf7 .ajax-loader {
  display: block !important;
  margin: 0 auto !important;
}

.wpcf7 .submitting .ajax-loader {
  background: url(./../img/ajax-loader.gif) no-repeat center;
  width: 16px;
  height: 36px;
  display: block;
  width: 100%;
}

.wpcf7 form:not([data-status=init]) .wpcf7-response-output {
  font-size: 1.7rem;
  padding: 10px 10px 7px;
  border: 3px solid #ef0846;
}

.wpcf7 form[data-status=submitting] .wpcf7-response-output {
  display: none;
}

.submit_box {
  margin: 10px 0 0;
}

.submit_box .wpcf7-spinner {
  display: block;
  margin-top: 15px;
  margin-right: auto;
  margin-left: auto;
}

.submit_box input[type=submit] {
  background: #000;
  border-radius: 7px;
  padding: 0px 15px 0;
  font-size: 16px;
  color: #fff;
  display: inline-block !important;
  width: 65%;
  height: 35px;
  max-width: 380px;
  pointer-events: none;
}

.submit_box input[type=submit]:hover {
  cursor: pointer;
}

.submit_box input[type=submit]:disabled {
  background: #eee;
  color: #454545;
}

#acceptance {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #acceptance {
    font-size: 13px;
  }
}

#acceptance a {
  color: #454545;
}

/* --------------------------------------------
 * 　プライバシーポリシー
 * -------------------------------------------- */
.container_pp .privacy {
  width: 93%;
  margin: 30vh auto;
}

.container_pp .txt {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-left: 2em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .container_pp .txt {
    font-size: 11px !important;
    line-height: 1.8;
    margin-left: 0;
  }
}

.container_pp .signature {
  text-align: right;
  display: block;
  width: 100%;
  margin-top: 1em;
}

/* --------------------------------------------
 * 　フッター
 * -------------------------------------------- */
footer {
  overflow: hidden;
  position: relative;
  display: grid;
  width: 100%;
  height: 350px;
  background-color: #7B7B7B;
  color: #fff;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer .col_2 {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 6em auto 0;
}

footer .company_wrap {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  footer .company_wrap {
    font-size: 13px;
  }
}

footer .company_wrap .name {
  font-size: 30px;
  padding-right: 2em;
  border-bottom: 1px solid;
}
@media screen and (max-width: 768px) {
  footer .company_wrap .name {
    font-size: 25px;
  }
}

footer .company_wrap .address {
  padding: 1em 0;
}

.cr {
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .cr {
    margin-bottom: 4em;
  }
}

.footer_head {
  font-size: 16px;
  text-transform: uppercase;
}

.footer_wrap {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer_wrap {
    display: none;
  }
}

.footer_list {
  display: inline-block;
  position: relative;
  padding: 1em;
  transform: translate(0, -1em);
  font-size: 16px;
  font-weight: 400;
}

/* 下線用のspanを配置 */
.footer_sns span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px; /* 下線の太さを調整 */
}

@media screen and (max-width: 1023px) {
  .footer_sp {
    margin: 2em 0;
  }
}/*# sourceMappingURL=style.css.map */