/*
Theme Name: GFT
Author: cachiport
Version: 1.0
Description:GFT theme
*/

@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
/* ===================================================================
// 基本スタイル
// ===================================================================*/

html {
  font-size: calc(100vw / 192);
  font-family: noto-sans-cjk-jp, sans-serif;
  -webkit-font-feature-settings: "pkna" 1;
  font-feature-settings: "pkna" 1;
  height: 100%;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}
body {
  /*フォントカラー*/
  --font-color: #333333;
  /*ボタン*/
  --btn1font-color: #ffffff; /*通常時文字色＆ホバー時背景色*/
  --btn1back-color: #56c4e7; /*ホバー文字色&通常時背景色*/

  /*フォント体*/
  --main-font: noto-sans-cjk-jp, sans-serif;
  --sub-font: josefin-sans, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--font-color);
  font-weight: 400;
  overflow-x: hidden;
  height: 100%;
  max-width: 100%;
}

main {
  max-width: 100%;
  overflow-x: hidden;
}
/*諸々*/

.wrapper {
  padding: 0 16.7rem;
}
.wrapper2 {
  padding: 0 36.8rem;
}
@media screen and (max-width: 1020px) {
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.2rem;
  }
  .wrapper {
    padding: 0 4.65rem;
  }
  .wrapper_sp {
    padding: 0 4.65rem;
  }
  .wrapper2 {
    padding: 0 4.65rem;
  }
}

/* ボックスサイズ */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 行間 */

p {
  line-height: 1.6;
  font-size: 1.7rem;
  margin: 1rem 0;
  font-family: var(--main-font);
  font-weight: 400;
  font-style: normal;
  color: var(--font-color);
}

@media screen and (max-width: 767px) {
  p {
    line-height: 1.6;
    font-size: 1.6rem;
    margin: 1rem 0;
    font-family: var(--main-font);
    font-weight: 400;
    font-style: normal;
    color: var(--font-color);
  }
}
div,
h1,
h2,
h3,
h4,
h5,
li {
  line-height: 1.2;
  font-family: var(--main-font);
  font-weight: 600;
  font-style: normal;
  color: var(--font-color);
}
/* リンク */

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--main-font);
  font-weight: 700;
  font-style: normal;
  color: var(--font-color);
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  a {
    font-size: 1.5rem;
  }
}
a:hover {
  opacity: 0.7;
}

/*  パンくずリスト　*/
.breadcrumbs {
  color: #333333;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 700;
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10.1rem;
}
.breadcrumbs span {
  color: #333333;
  font-weight: 400;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    margin-top: 1rem;
    justify-content: flex-end;
    width: 100%;
    padding: 1rem;
  }
  .breadcrumbs span {
    font-size: 1.4rem;
  }
}
/* img */
img {
  max-width: 100%;
  height: auto;
}

.object_fit_img {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "Noto Sans JP", sans-serif;
}
/* flex */
.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1020px) {
  .flex_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
/* pc & sp */
.pc {
  display: inline-block;
}

.sp {
  display: none !important;
}
.sp_br {
  display: none;
}
.pc_br {
  display: initial;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
  .sp_br {
    display: initial;
  }
  .pc_br {
    display: none;
  }
}

.btn_area {
  z-index: 3;
  position: relative;
}

.btn1 {
  color: #fff;
  background-color: var(--btn1back-color);
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 9.1rem;
  width: 53.4rem;
  padding: 1.5rem 2rem 1.5rem 3rem;
  border: var(--btn1back-color) 1px solid;
  box-shadow: 10px 10px 30px #00000029;
}

.btn1:hover {
  background-color: var(--btn1font-color);
  color: var(--btn1back-color);
  opacity: 1;
}

.btn_txt {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .btn1 {
    height: 5rem;
    width: 25rem;
    padding: 1.5rem 2rem 1.5rem 3rem;
  }
  .btn_txt {
    font-size: 1.7rem;
  }
}

/*fadein*/

.fadein {
  opacity: 0;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transform: translate(0, 3rem);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
/* ===================================================================
// ヘッダー
// ===================================================================*/

/*ナビゲーション*/
.header {
  background-color: transparent;
  /*position: fixed;*/
  position: relative;
  top: 0;
  z-index: 999;
  width: 100%;
}
.header nav {
  align-items: center;
  margin-top: 2.35rem;
  position: relative;
}
.header .logo {
  width: 33.9rem;
  padding: 0 1.5rem;
  margin-left: 3.4rem;
}
.header_ul {
  background-color: #fff;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 5.7rem;
  margin-right: 1.5rem;
  padding-left: 5.5rem;
}

.header_ul li a {
  padding: 4rem 3.6rem 3.4rem 2rem;
  display: block;
  margin: 0;
  font-weight: 700;
  font-size: 1.8rem;
  position: relative;
}

.header_ul li a::after {
  content: "";
  position: absolute;
  top: 43%;
  right: 0;
  transform: translateY(-50%) rotate(15deg);
  margin: 1rem 0;
  width: 1px;
  height: 3em;
  background-color: #585858;
  display: block;
}
.header_ul li.header_ctc a::after,
.header_ul li.header_topics a::after {
  content: "";
  display: none;
}
.header_ul li.header_ctc a {
  background-color: #28b1dd;
  border-radius: 0 5.7rem 5.7rem 0;
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
  padding: 4rem 8.9rem 3.4rem 6rem;
}
.header_ul li.header_topics a {
  padding-right: 0rem;
}

.header_ul li.header_ctc a {
  color: #fff;
}

@media screen and (max-width: 1020px) {
}
@media screen and (max-width: 767px) {
  .header {
    /* position: fixed; */
  }
  .header_ul {
    display: none;
  }
  header .logo {
    width: 9.5rem;
    padding: 0;
    margin-left: 2rem;
  }
}
/*========= ボタンのためのCSS ===============*/

.openbtn {
  position: absolute;
  z-index: 9999;
  top: 2rem;
  right: 2.5rem;
  cursor: pointer;
  width: 5rem;
  height: 5rem;
  background-color: #56c4e7;
  border-radius: 100px;
  display: none;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 12.5px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 50%;
}

.openbtn span:nth-of-type(1) {
  top: 16px;
}
.openbtn span:nth-of-type(2) {
  top: 24px;
}
.openbtn span:nth-of-type(3) {
  top: 32px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 12.5px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 12.5px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
@media screen and (max-width: 1020px) {
}
@media screen and (max-width: 767px) {
  .openbtn {
    display: inline-block;
  }
}
/*
ハンバーガーメニュー　
*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: var(--bodyback-color);
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
  background-color: rgb(252, 252, 252, 90%);
  height: 100%;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: relative;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 10rem;
  font-size: 2rem;
  line-height: 1.7;
  width: 100%;
}

/*リストのレイアウト設定*/
#g-nav .g-nav_ul {
  padding: 0;
}
#g-nav li {
  list-style: none;
  width: 100%;
  display: grid;
  position: relative;
  transition: 0.3s;
}
#g-nav li a {
  text-decoration: none;
  letter-spacing: 0.1em;
  padding: 1.5rem 3rem;
  color: #000;
  border-bottom: 1px solid rgba(112, 112, 112, 19%);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1.5;
  font-size: 2rem;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .header nav {
    margin-top: 0;
  }
  .header .logo {
    width: 19rem;
    padding: 0;
    margin-left: 2.5rem;
    margin-top: 2.7rem;
  }
  #g-nav ul.g_nav_pc {
    display: none;
  }
}
/*固定ボタン*/
.fixed_btn {
  display: block;
  position: fixed;
  transition: 0.3s;
  opacity: 1;
}
.fixed_btn_contact {
  top: 25.3%;
  right: 0;
  width: 9rem;
  border: 1px solid #ffffff;
  border-right: none;
}
.fixed_btn_contact a {
  background-color: #56c4e7;
  display: flex;
  flex-direction: column;
  padding: 2.8rem 1.4rem;
  align-items: center;
}
.fixed_btn_contact a p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.fixed_btn_contact a img {
  width: 100%;
}
.fixed_btn_pagetop {
  bottom: 1rem;
  right: 2.1rem;
  width: 15.3rem;
  border-right: none;
  text-align: center;
}
.fixed_btn_pagetop p {
  color: #56c4e7;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.63rem;
}
.fixed_btn_pagetop img {
  width: 100%;
}
.is-hidden {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .fixed_btn_contact {
    top: 25.3rem;
    width: 4.65rem;
  }
  .fixed_btn_contact a {
    padding: 1.8rem 1rem;
  }
  .fixed_btn_contact a p {
    font-size: 1.7rem;
  }
  .fixed_btn_pagetop {
    right: 2.1rem;
    width: 9rem;
  }
  .fixed_btn_pagetop p {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
}
/* ===================================================================
// TOPページ
// ===================================================================*/
.fv {
  margin-top: 16.1rem;
  height: 100vh;
  position: relative;
}
.fv .mainimg {
  position: relative;
  height: 100%;
}
.fv .mainimg .fv_img {
  width: 100%;
  height: 100vh;
}

.fv .fv_txt {
  position: absolute;
  top: 7%;
  left: 5rem;
  width: 100%;
}
.fv .fv_txt h1 {
  font-size: 13.7rem;
  letter-spacing: 4.11rem;
  color: #56c4e7;
  text-shadow: 0px 0px 5px #ffffff52;
  line-height: 1.2;

  font-weight: 300;
  font-style: italic;
}

.fv .fv_txt p {
  font-weight: 700;
}
.btn_flex {
  display: flex;
  justify-content: left;
  gap: 1.3rem;
  margin-top: 3.5rem;
}

@media screen and (max-width: 767px) {
  .fv {
    padding-top: 1.5rem;
    height: 100vh;
    margin: 0;
  }
  .fv .object_fit_img.sp {
    height: 90vh;
    width: 100%;
    object-position: top;
    display: block !important;
  }
  .fv .fv_txt {
    top: initial;
    bottom: 43%;
    left: 0;
    padding: 0 2.2rem;
  }
  .fv .fv_txt h1 {
    font-size: 4rem;
    line-height: 1.5;
    letter-spacing: 1.5rem;
    text-shadow: 0px 0px 2px #ffffff52;
  }
  .top_theme .top_theme_ttl h2 img {
    width: 5rem;
  }
}
/*共通要素*/
.en {
  font-family: var(--sub-font);
}

@media screen and (max-width: 767px) {
}
/*top_theme*/

.top_theme {
  position: relative;
  padding-top: 11rem;
  padding-bottom: 13rem;
}
.top_theme .top_theme_ttl {
  text-align: center;
  margin-bottom: 13rem;
}
.top_theme .top_theme_ttl h2 {
  display: inline-flex;
  gap: 2.75rem;
  align-items: center;
  justify-content: center;
  position: relative;
}
.top_theme .top_theme_ttl h2 img {
  width: 8rem;
}
.top_theme .top_theme_ttl h2 span {
  font-size: 6.5rem;
}
.top_theme .top_theme_ttl h2::after {
  content: "";
  position: absolute;
  bottom: -35%;
  width: 100%;
  height: 1.5rem;
  background-color: #56c4e7;
}
.top_theme .theme_txt_flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7.1rem;
}
.top_theme .theme_txt {
  position: relative;
  background-color: #edf0f0;
  box-shadow: 0px 3px 6px #00000080;
  border: 3px solid #e0381b;
  border-radius: 30px;
  padding: 3rem 3rem 3rem 13.7rem;
}
.top_theme .theme_txt.oto {
  border: 3px solid #f4b509;
}
.top_theme .theme_txt img {
  position: absolute;
  top: -31%;
  left: -8%;
  z-index: 1;
}
.top_theme .theme_txt_flex .theme_txt.netsu img {
  width: 28%;
}
.top_theme .theme_txt.oto img {
  width: 31%;
}
.top_theme .theme_txt p {
  font-size: 2.2rem;
}
.top_theme .top_theme_img_flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13rem 0;
}
.top_theme .top_theme_img_flex .top_theme_img {
  width: 50%;
  position: relative;
}

.top_theme .top_theme_img_flex .top_theme_img .svg {
  position: absolute;
}
.top_theme .top_theme_img_flex .top_theme_img .gif {
  position: absolute;
}
.top_theme .top_theme_img_flex .top_theme_img1 .svg {
  margin-left: 10%;
}
.top_theme .top_theme_img_flex .top_theme_img1 .gif {
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.top_theme .top_theme_img_flex .top_theme_img {
  width: 50%;
  height: 16vw;
  position: relative;
}

.top_theme .top_theme_img_flex .theme_txt.oto {
  display: none;
}

.top_theme .top_theme_img_flex .top_theme_img .svg {
  width: 64%;
}
.top_theme .top_theme_img_flex .top_theme_img .gif {
  height: 97%;
}
.top_theme .top_theme_img_flex .top_theme_img1 .svg {
  margin-left: 10%;
}
.top_theme .top_theme_img_flex .top_theme_img1 .gif {
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.top_theme .top_theme_img_flex .top_theme_img2 .svg {
  margin-left: 36%;
  bottom: -6%;
}
.top_theme .top_theme_img_flex .top_theme_img2 .gif {
  left: 10%;
  top: 47%;
  transform: translateY(-50%);
  z-index: -1;
}
.top_theme .top_theme_img_flex .top_theme_img3 .svg {
  margin-left: 47%;
  top: -34%;
}
.top_theme .top_theme_img_flex .top_theme_img3 .gif {
  left: 25%;
  top: 37%;
  transform: translateY(-50%);
  z-index: -1;
}
.top_theme .top_theme_img_flex .top_theme_img4 .svg {
  margin-left: 25%;
}
.top_theme .top_theme_img_flex .top_theme_img4 .gif {
  position: absolute;
  right: 0%;
  top: 53%;
  transform: translateY(-50%);
}
.top_theme .top_theme_img_flex .top_theme_img5 .svg {
  margin-left: 18%;
  top: -47%;
}
.top_theme .top_theme_img_flex .top_theme_img5 .gif {
  position: absolute;
  right: 11%;
  top: 7%;
  transform: translateY(-50%);
}
.top_theme .top_theme_img_flex .top_theme_img6 .svg {
  margin-left: 42%;
  top: -25%;
}
.top_theme .top_theme_img_flex .top_theme_img6 .gif {
  position: absolute;
  right: 46%;
  top: 39%;
  transform: translateY(-50%);
  z-index: -1;
}
.top_theme .back {
  position: absolute;
  z-index: -2;
  width: 82.5%;
  top: 0;
}
@media screen and (max-width: 767px) {
  .top_theme {
    padding-top: 4rem;
    padding-bottom: 8rem;
  }

  .top_theme .top_theme_ttl {
    text-align: center;
    margin-bottom: 5rem;
  }

  .top_theme .top_theme_ttl h2 span {
    font-size: 2.2rem;
  }
  .top_theme .top_theme_ttl h2 {
    gap: 1rem;
  }
  .top_theme .top_theme_ttl h2::after {
    content: "";
    position: absolute;
    bottom: -25%;
    width: 100%;
    height: 0.5rem;
  }
  .top_theme .top_theme_ttl h2 img {
    width: 4rem;
  }
  .top_theme .theme_txt_flex {
    flex-wrap: wrap;
    gap: 10rem;
    margin-top: 8rem;
  }
  .top_theme .theme_txt_flex .theme_txt.netsu img {
    top: -9vw;
    width: 16vw;
  }
  .top_theme .theme_txt.oto.pc {
    display: none;
  }
  .top_theme .theme_txt.oto.sp {
    display: block;
    order: 4;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .top_theme .theme_txt.oto img {
    width: 17vw;
    top: -10vw;
    left: -6vw;
  }
  .top_theme .theme_txt {
    padding: 2rem;
    width: 100%;
  }
  .top_theme .theme_txt p {
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
  }
  .top_theme .top_theme_img_flex {
    gap: 3rem;
  }

  .top_theme .top_theme_img_flex .top_theme_img {
    width: 100%;
    height: fit-content;
  }

  .top_theme .top_theme_img_flex .top_theme_img .svg {
    top: initial;
    bottom: initial;
    position: relative;
    width: 80%;
    margin: 0 auto;
    display: block;
  }
  .top_theme .top_theme_img_flex .top_theme_img1 {
    order: 1;
  }
  .top_theme .top_theme_img_flex .top_theme_img4 {
    order: 2;
  }
  .top_theme .top_theme_img_flex .top_theme_img5 {
    order: 3;
  }
  .top_theme .top_theme_img_flex .theme_txt.oto {
    order: 4;
    display: block;
    margin-block: 8rem 4rem;
  }

  .top_theme .top_theme_img_flex .top_theme_img2 {
    order: 5;
  }

  .top_theme .top_theme_img_flex .top_theme_img3 {
    order: 6;
  }
  .top_theme .top_theme_img_flex .top_theme_img6 {
    order: 7;
  }
  .top_theme .top_theme_img_flex .top_theme_img .gif {
    height: 80%;
  }
  .top_theme .top_theme_img_flex .top_theme_img1 .gif {
    right: -8%;
  }
  .top_theme .top_theme_img_flex .top_theme_img2 .gif {
    left: -13%;
  }
  .top_theme .top_theme_img_flex .top_theme_img3 .gif {
    left: -8%;
  }
  .top_theme .top_theme_img_flex .top_theme_img4 .gif {
    right: -6%;
  }
  .top_theme .top_theme_img_flex .top_theme_img5 .gif {
    right: -3%;
    top: 40%;
  }
  .top_theme .top_theme_img_flex .top_theme_img6 .gif {
    right: initial;
    left: -12%;
  }
  .top_theme .back {
    position: absolute;
    z-index: -2;
    width: 100%;
    left: 0;
    top: 0;
  }
}
/*top_topics*/
.top_topics {
  padding-bottom: 3.72rem;
}
.top_topics .sub_ttl {
  margin: 0 auto;
}
.top_topics .sub_ttl h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 9.9rem;
  padding: 1.8rem 7.3rem 0.9rem 7.25rem;
}
.top_topics ul {
  position: relative;
  padding: 5.37rem 18% 6.88rem;
}
.top_topics ul li:nth-child(1) {
  border-top: 1px solid #707070;
}
.top_topics ul li {
  border-bottom: 1px solid #707070;
}
.top_topics ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 1.7rem;
}
.top_topics ul li .date {
  font-size: 2.5rem;
}
.top_topics ul li .category {
  font-size: 2rem;
  background-color: #56c4e7;
  color: #fff;
  padding: 0.5rem 3.5rem;
  margin: 0 3.8rem 0 4.7rem;
  display: block;
}
.top_topics ul li p {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 2.2rem 0;
}
.top_topics ul .btn1 {
  margin: 6.65rem auto 0;
}
.top_topics .back {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top_topics .sub_ttl h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 5rem;
  }
  .top_topics ul {
    position: relative;
    padding: 3.37rem 4.65rem 2.88rem 4.65rem;
  }
  .top_topics ul li a {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .top_topics ul li .date {
    font-size: 1.7rem;
  }
  .top_topics ul li p {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 1rem 0;
  }
  .top_topics ul li a {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 1rem 0;
  }
  .top_topics ul li .category {
    font-size: 1.7rem;
    padding: 0.5rem 2.5rem;
    margin: 0;
  }
  .top_topics ul .btn1 {
    margin: 3.65rem auto 0;
  }
  .top_topics ul::after {
    content: "";
    position: absolute;
    top: 0;
    left: 4.65rem;
    z-index: -1;
    display: block;
    background-color: #edf0f0;
    height: 100%;
    width: 100%;
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 32% 100%);
  }
}

/* ===================================================================
//　固定ページ
// ===================================================================*/
/*-----------------共通要素-------------------*/
.mainttl {
  background-color: #56c4e7;
  display: flex;
  margin-bottom: 4.5rem;
  margin-top: 17.7rem;
}

.mainttl h1.en {
  background-color: #fff;
  color: #56c4e7;
  display: block;
  font-size: 7rem;
  margin-left: 13.7rem;
  padding: 2.1rem 6.1rem 1.2rem 1.9rem;
  font-style: italic;
  letter-spacing: 1.75rem;
  align-self: center;
}
.mainttl h1.jp {
  font-size: 3.5rem;
  color: #fff;
  padding: 3.75rem 3.5rem;
  align-self: center;
}
.sub_ttl {
  position: relative;
  width: max-content;
}

.sub_ttl::before,
.sub_ttl::after {
  content: "";
  width: 1.5rem;
  height: 100%;
  position: absolute;
}

.sub_ttl::before {
  border-left: solid 1px #000000;
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  top: 0;
  left: 0;
}

.sub_ttl::after {
  border-right: solid 1px #000000;
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  top: 0;
  right: 0;
}
.sub_ttl .subttl_main {
  font-size: 3rem;
  line-height: 1.5;
}
.sub_ttl .blue {
  color: #56c4e7;
  font-size: 2.5rem;
  margin-bottom: 1.7rem;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .mainttl {
    background-color: #56c4e7;
    display: flex;
    margin-bottom: 1.5rem;
    margin-top: 8.7rem;
  }
  .mainttl h1.en {
    font-size: 2.5rem;
    margin-left: 1.7rem;
    padding: 1.3rem 1rem 1.3rem;
    letter-spacing: 5px;
  }
  .mainttl h1.jp {
    font-size: 2rem;
    color: #fff;
    padding: 1.3rem 1.5rem;
    align-self: center;
  }
}
/*-----------------about_page-------------------*/
/*about_top*/
.about_top {
  position: relative;
  margin-top: 10.6rem;
}
.about_top_img {
  position: absolute;
  left: 0;
  top: -6.1rem;
  width: 105.7rem;
}
.about_top_txt .sub_ttl {
  padding: 0.9rem 1.3rem 2.3rem 3.45rem;
  margin-bottom: 3.75rem;
}
.about_top_txt {
  padding: 6.15rem 36.7rem 11.3rem 7.6rem;
  background-color: #edf0f0;
  position: relative;
  width: 123.6rem;
  display: block;
  margin: 0 0 0 auto;
}
.about_top_txt p {
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .about_top {
    position: relative;
    margin-top: 4rem;
  }
  .about_top_txt {
    padding: 4.15rem 4.65rem 7.3rem;
    width: 100%;
  }
  .about_top_txt .sub_ttl {
    padding: 0.9rem 1.3rem 2.3rem;
    margin-bottom: 3.75rem;
  }
  .sub_ttl .blue {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
  .sub_ttl .subttl_main {
    font-size: 2.5rem;
  }
  .about_top_img {
    position: absolute;
    left: 0;
    top: initial;
    width: 100%;
    position: relative;
  }
}
/*about_about*/
.about_about {
  padding: 18.3rem 33.2rem 13.2rem 33.2rem;
  position: relative;
}
.about_about .sub_ttl {
  padding: 2.58rem 3.9rem 2.9rem 3.45rem;
  margin-left: 4rem;
}
.about_about ul {
  margin-top: 4rem;
}
.about_about ul li {
  padding: 3.1rem 13.7rem 2.3rem 9.9rem;
  position: relative;
  filter: drop-shadow(1rem 1rem 2rem #00000029);
  margin-bottom: 3.5rem;
  width: 100rem;
}
.about_about ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 7rem;
  clip-path: polygon(3rem 0%, 100% 0, calc(100% - 3rem) 100%, 0 100%);
  background-color: #56c4e7;
}
.about_about ul li::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: #fff;
  clip-path: polygon(3rem 0%, 100% 0, calc(100% - 3rem) 100%, 0 100%);
}
.about_about ul li h4 {
  font-size: 3rem;
  border-bottom: 1px solid #707070;
  line-height: 1;
  padding-top: 0.5rem;
  padding-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 2.2rem;
  padding-right: 60%;
}
.about_about ul li h4 span {
  color: #56c4e7;
  font-size: 4rem;
  letter-spacing: 0.1rem;
}
.about_about ul li p {
  line-height: 2.2;
}
.about_about ul li:nth-of-type(2) {
  margin-left: 13rem;
}
.about_about ul li:nth-of-type(3) {
  margin-left: 23rem;
  margin-bottom: 0;
}
.about_about::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #edf0f0;
  left: 0;
  bottom: 0;
  width: 25%;
  height: 158.5%;
  z-index: -2;
}

@media screen and (max-width: 767px) {
  .about_about {
    padding: 5.3rem 1rem 8.2rem;
    position: relative;
  }
  .about_about .sub_ttl {
    padding: 1.7rem 2rem;
    margin: 0 auto;
  }
  .about_about ul li {
    padding: 3.1rem 4.65rem 2.3rem 6rem;
    margin-bottom: 3.5rem;
    width: 100%;
  }
  .about_about ul li h4 span {
    font-size: 3rem;
  }
  .about_about ul li h4 {
    font-size: 2.5rem;
    padding-right: 1rem;
  }
  .about_about ul li::before {
    width: 5.5rem;
    clip-path: polygon(4.65rem 0%, 100% 0, calc(100% - 4.65rem) 100%, 0 100%);
  }
  .about_about ul li::after {
    clip-path: polygon(4.65rem 0%, 100% 0, calc(100% - 4.65rem) 100%, 0 100%);
  }
  .about_about ul li:nth-of-type(2) {
    margin-left: 0;
  }
  .about_about ul li:nth-of-type(3) {
    margin-left: 0rem;
  }
  .about_about::after {
    content: "";
    display: block;
    position: absolute;
    background-color: #edf0f0;
    left: 0;
    top: 0%;
    bottom: initial;
    width: 31%;
    height: 100%;
    z-index: -2;
  }
}

/*about_fearture*/
.about_feature {
  padding: 10.1rem 34.7rem 24.76rem;
}
.about_feature .sub_ttl {
  padding: 1.8rem 4.4rem 1rem 4.25rem;
  margin: 0 auto;
}
.about_feature .about_feature_txt {
  text-align: center;
  line-height: 2.2;
}
.about_feature ul {
  margin-top: 6rem;
  display: flex;
  gap: 1.5rem;
}
.about_feature ul li {
  width: 40rem;
}
.about_feature ul li h3 {
  font-size: 2.1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.1rem;
  margin-left: 4rem;
}
.about_feature ul li h3::before {
  content: "";
  background-color: #56c4e7;
  width: 1em;
  height: 1em;
  border-radius: 1em;
}
.about_feature ul li .feature_box {
  position: relative;
  filter: drop-shadow(0.5rem 0.5rem 1rem #00000029);
  height: calc(100% - 1em);
}
.about_feature ul li .feature_box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: #edf0f0;
  clip-path: polygon(4rem 0%, 100% 0, calc(100% - 4rem) 100%, 0 100%);
}
.about_feature ul li .feature_box .feature_img {
  width: 100%;
  clip-path: polygon(4rem 0%, 100% 0, calc(100% - 4rem) 100%, 0 100%);
  object-fit: contain;
  height: 100%;
  object-position: top;
  z-index: 0;
  position: absolute;
}
.about_feature ul li .feature_box p {
  padding: 67% 4.65rem 0rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .about_feature {
    padding: 10rem 0rem 12rem;
  }
  .about_feature .about_feature_txt {
    text-align: center;
    line-height: 2.2;
    padding: 0 4.65rem;
  }
  .about_feature ul {
    margin-top: 5rem;
    display: flex;
    gap: 8.5rem;
    flex-wrap: wrap;
  }
  .about_feature ul li h3 {
    margin-left: 4.65rem;
  }
  .about_feature ul li {
    width: 100%;
  }
  .about_feature ul li .feature_box .feature_img {
    clip-path: polygon(4.65rem 0%, 100% 0, calc(100% - 4.65rem) 100%, 0 100%);
  }
  .about_feature ul li .feature_box::after {
    clip-path: polygon(4.65rem 0%, 100% 0, calc(100% - 4.65rem) 100%, 0 100%);
  }
}
/*about_slogan*/
.about_slogan {
  background-color: #edf0f0;
  padding: 7.2rem 1rem 8.9rem 36.8rem;
  width: 155.2rem;
  position: relative;
  margin-bottom: 8rem;
}
.about_slogan::after {
  content: "";
  display: block;
  background-color: #56c4e7;
  position: absolute;
  height: 100%;
  width: 2rem;
  right: 0;
  top: 0;
  box-shadow: 1rem 1rem 3rem #00000029;
}
.about_slogan .sub_ttl {
  padding: 1.4rem 2.3rem 1.3rem 2.1rem;
}
.about_slogan p {
  line-height: 2.2;
  margin: 3rem 0;
}
.about_slogan .slogan_flex {
  display: flex;
  gap: 5rem;
}
.about_slogan .slogan_flex dl dt {
  background-color: #56c4e7;
  color: #fff;
  padding: 1.5rem 19.15rem 1.5rem 1.75rem;
  display: inline-block;
  margin-bottom: 2.7rem;
  box-shadow: 1rem 1rem 3rem #00000029;
  font-size: 2.1rem;
}
.about_slogan .slogan_flex dl dd {
  font-size: 1.7rem;
  line-height: 2.2;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-weight: 400;
}
.about_slogan .slogan_flex dl dd::before {
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background-color: #56c4e7;
}
@media screen and (max-width: 767px) {
  .about_slogan {
    background-color: #edf0f0;
    padding: 4.2rem 4.65rem 8.9rem;
    width: 100%;
    position: relative;
    box-shadow: 1rem 1rem 3rem #00000029;
    margin-bottom: 8rem;
  }
  .about_slogan .slogan_flex {
    gap: 3rem;
    flex-wrap: wrap;
  }
  .about_slogan .slogan_flex dl dt {
    padding: 1.5rem 3rem 1.5rem 1.75rem;
    margin-bottom: 2.5rem;
    font-size: 2rem;
  }
  .about_slogan .slogan_flex dl dt {
    padding: 1.5rem 5rem 1.5rem 2rem;
    margin-bottom: 1.7rem;
    font-size: 2rem;
  }
  .about_slogan .slogan_flex dl dd {
    line-height: 2;
    align-items: initial;
  }
  .about_slogan .slogan_flex dl dd::before {
    padding: 0.8rem;
    margin-top: 0.9rem;
  }
}

/*block_contact*/
.block_contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2rem solid #f4b509;
  gap: 2rem;
  padding: 3.2rem 1rem;
}
.block_contact img {
  width: 8rem;
}
.block_contact p {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0;
}
.block_contact .btn1 {
  width: 62.4rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .block_contact p {
    font-size: 2rem;
  }
  .block_contact .btn1 {
    width: 100%;
  }
  .block_contact .btn_txt {
    font-size: 1.6rem;
  }
}

/*-----------------company_page-------------------*/
/*company_greeting*/
.company_greeting {
  position: relative;
  margin-top: 10.6rem;
}
.company_greeting_img {
  display: none;
  /* position: absolute;
  left: 0;
  top: -4.3rem;
  width: 77.3rem; */
}
.company_greeting_txt .sub_ttl {
  padding: 1.8rem 8.8rem 1rem 8.75rem;
  margin-bottom: 3.75rem;
}
.company_greeting_txt {
  padding: 5.3rem 30.7rem 5.6rem 23.4rem;
  background-color: #edf0f0;
  position: relative;
  width: 132.8rem;
  display: block;
  margin: 0 6.37rem 0 auto;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.company_greeting_txt p {
  line-height: 2.2;
  margin-bottom: 5.6rem;
  margin-right: 8rem;
}
.company_greeting_txt span {
  text-align: right;
  margin: 0 0 0 auto;
  display: block;
  font-weight: 400;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .company_greeting {
    margin-top: 41vw;
  }
  .company_greeting_img {
    top: -35vw;
    width: 100%;
  }
  .company_greeting_txt {
    padding: 5.3rem 4.65rem 5.6rem;
    width: 100%;
    clip-path: polygon(4.65rem 0, 100% 0, 100% 100%, 0 100%);
  }
  .company_greeting_txt .sub_ttl {
    padding: 1.35rem 6.8rem;
    margin: 0 auto 2.5rem;
  }
  .company_greeting_txt p {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  .company_greeting_txt span {
    font-size: 1.6rem;
  }
}

/*company_about*/
.company_about {
  padding-top: 14.5rem;
  padding-bottom: 11rem;
}
.company_about .sub_ttl {
  padding: 1.8rem 8.8rem 1rem 8.75rem;
  margin-bottom: 4rem;
}
.company_about dl div {
  display: flex;
}
.company_about dl {
  border-top: 2px solid #56c4e7;
  font-size: 1.7rem;
}
.company_about dl div dt {
  width: 21%;
  padding: 2rem 4rem;
  background-color: #56c4e7;
  color: #fff;
  border-bottom: 2px solid #fff;
  align-content: center;
}
.company_about dl div dd {
  width: 79%;
  padding: 2rem 3.5rem;
  border-bottom: 2px solid #56c4e7;
  border-right: 2px solid #56c4e7;
  font-weight: 400;
  line-height: 2;
}
.company_about dl div:nth-last-of-type(1) dt,
.company_about dl div:nth-last-of-type(1) dd {
  border-bottom: none;
}
.company_about dl div:nth-last-of-type(1) {
  border-bottom: 2px solid #56c4e7;
}
@media screen and (max-width: 767px) {
  .company_about {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .company_about .sub_ttl {
    padding: 1.35rem 5.8rem;
    margin: 0 auto 4rem;
  }
  .company_about dl {
    border: 2px solid #56c4e7;
    font-size: 1.6rem;
  }
  .company_about dl div {
    flex-direction: column;
  }
  .company_about dl div dt {
    width: 100%;
    padding: 1em 2rem;
  }
  .company_about dl div dd {
    width: 100%;
    padding: 1.5rem 2rem;
    border-bottom: none;
    border-right: none;
  }
  .company_about dl div:nth-last-of-type(1) {
    border-bottom: none;
  }
}
/*company_history*/
.company_history .sub_ttl {
  padding: 1.8rem 11.8rem 1rem 11.25rem;
  margin: 0 36.8rem 4rem;
}
.company_history p {
  margin-bottom: 6.16rem;
  line-height: 2.2;
}
.company_history .flex_wrap {
  justify-content: center;
  padding: 5.25rem 49.5rem 14rem;
  position: relative;
}
.company_history dl {
  font-size: 1.7rem;
  width: 50%;
}
.company_history dl div {
  display: flex;
  align-items: center;
  font-weight: 400;
  margin-bottom: 1.87rem;
  justify-content: flex-start;
  gap: 0;
}
.company_history dl div::before {
  content: "";
  background-color: #56c4e7;
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  padding: 1rem;
}
.company_history dl div .dash {
  margin-left: 0.56rem;
  height: 1px;
  width: 5.7rem;
}
.company_history dl div dt {
  width: 28%;
  margin-left: 1.1rem;
}
.company_history dl div dd {
  width: 50%;
}
.company_history dl:nth-of-type(2) {
  margin-top: 21.2rem;
}
.company_history .flex_wrap .back {
  position: absolute;
  width: 100%;
  z-index: -1;
  top: 0;
}
@media screen and (max-width: 767px) {
  .company_history {
    overflow: hidden;
  }
  .company_history .sub_ttl {
    padding: 1.35rem 6.5rem;
    margin: 0 auto 4rem;
  }
  .company_history p {
    margin-bottom: 0rem;
  }
  .company_history .flex_wrap {
    padding: 4.58rem 4.65rem 0rem;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .company_history dl {
    width: 100%;
  }
  .company_history dl div::before {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0.5rem;
  }
  .company_history dl:nth-of-type(2) {
    margin-top: 0;
  }
  .company_history dl div dt {
    width: 5.5em;
  }
  .company_history dl div dd {
    width: 54%;
  }
  .company_history dl div .dash {
    display: none;
  }
  .company_history .flex_wrap .back {
    width: 100%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
/*company_network*/
.company_network {
  padding-top: 12.3rem;
  padding-bottom: 16rem;
  position: relative;
}
.company_network .company_network_ttl {
  text-align: center;
  margin-bottom: 6.54rem;
}
.company_network .sub_ttl {
  padding: 1.8rem 5.8rem 1rem 5.75rem;
  margin: 0 auto 3.1rem;
}
.company_network_pc .company_network_img {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62.6rem;
  z-index: -2;
}
.company_network_pc dl {
  position: relative;
}
.company_network .company_network_pc .area_box h3 {
  font-size: 1.8rem;
  color: #fff;
  display: inline-block;
  padding: 1.2rem 5.4rem;
}
.company_network_pc dl p,
.company_network_pc dl a,
.company_network_pc dl dt {
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
}
.company_network dl a {
  transition: 0.3s;
}
.company_network dl a:hover {
  opacity: 1;
  font-weight: 700;
}
.company_network .chugoku dl a:hover {
  color: #e0381b;
}
.company_network .toukai dl a:hover {
  color: #ce00ff;
}
.company_network .kyushu dl a:hover {
  color: #00be00;
}
.company_network .shikoku dl a:hover {
  color: #0062ff;
}
.company_network .kinki dl a:hover {
  color: #ffa700;
}

.company_network_pc .area_top {
  padding-bottom: 37rem;
}
.company_network_pc .chugoku dl::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 35rem;
  background-color: #f5766c;
  position: absolute;
  bottom: -23rem;
  right: 46%;
  transform: rotateZ(-63deg);
  z-index: -1;
}
.company_network_pc .toukai dl::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 43rem;
  background-color: #a02af9;
  position: absolute;
  bottom: -29rem;
  right: 67%;
  transform: rotateZ(63deg);
  z-index: -1;
}
.company_network_pc .kyushu dl::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 48rem;
  background-color: #62c178;
  position: absolute;
  top: -34rem;
  right: 27%;
  transform: rotateZ(75deg);
  z-index: -1;
}
.company_network_pc .shikoku dl::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 16rem;
  background-color: #3a40f3;
  position: absolute;
  top: -19rem;
  right: 66%;
  transform: rotateZ(14deg);
  z-index: -1;
}
.company_network_pc .kinki dl::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 32rem;
  background-color: #efd618;
  position: absolute;
  top: -27rem;
  left: -6%;
  transform: rotateZ(-65deg);
  z-index: -1;
}
.company_network_pc .toukai dl {
  background-color: #e5caf9;
  padding: 2.2rem 7.9rem 2.2rem 4.45rem;
}
.company_network_pc .toukai h3 {
  background-color: #a02af9;
}
.company_network_pc .kinki dl {
  background-color: #f4f1dc;
  padding: 2.4rem 7.1rem 4.5rem 4.15rem;
}
.company_network_pc .kinki h3 {
  background-color: #efd618;
}
.company_network_pc .chugoku dl {
  background-color: #fdebea;
  padding: 2.2rem 11.7rem 2rem 4.1rem;
}
.company_network_pc .area_box.chugoku dl {
  display: flex;
  flex-wrap: wrap;
  gap: 6.5rem;
}
.company_network_pc .chugoku h3 {
  background-color: #f5766c;
}
.company_network_pc .shikoku dl {
  background-color: #d3d4fc;
  padding: 2.4rem 5.3rem 4.7rem 3.4rem;
}
.company_network_pc .shikoku h3 {
  background-color: #3a40f3;
}
.company_network_pc .kyushu dl {
  background-color: #c1ffcf;
  padding: 2.4rem 7.67rem 5.4rem 4.1rem;
}
.company_network_pc .kyushu h3 {
  background-color: #62c178;
}
.company_network_pc .hq {
  position: absolute;
  right: 28%;
  top: 52.5%;
}
.company_network_pc .hq h3 {
  background-color: #e0381b;
  font-size: 1.8rem;
  color: #fff;
  display: inline-block;
  padding: 1.1rem 3.4rem;
  position: relative;
  border: 1px solid #e0381b;
  transition: 0.3s;
}
.company_network_pc .hq::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 18.5rem;
  background-color: #e0381b;
  position: absolute;
  top: -7rem;
  left: -9.5rem;
  transform: rotateZ(90deg);
  z-index: 1;
}
.company_network_pc .hq::before {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 2.2rem;
  background-color: #e0381b;
  position: absolute;
  top: 1rem;
  left: -19.5rem;
  z-index: 2;
}
.company_network_pc .hq:hover h3 {
  color: #e0381b;
  background-color: #fff;
}
.company_network_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .company_network {
    padding-top: 5rem;
    padding-bottom: 8rem;
  }
  .company_network .company_network_ttl {
    margin-bottom: 4.5rem;
  }
  .company_network_pc {
    display: none;
  }
  .company_network_sp {
    width: 100%;
    display: block;
  }
  .company_network_sp dl {
    position: relative;
    padding: 1rem 1rem 2rem;
  }
  .company_network_sp div {
    margin-bottom: 4rem;
  }
  .company_network_sp div h3 {
    font-size: 1.8rem;
    color: #fff;
    padding: 1.2rem;
    text-align: center;
  }
  .company_network_sp dl p,
  .company_network_sp dl a,
  .company_network_sp dl dt {
    line-height: 1.5;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0;
  }
  .company_network_sp dl dt {
    margin-top: 1rem;
  }
  .company_network_sp .hq {
    background-color: #fdebea;
  }
  .company_network_sp .hq h3 {
    background-color: #e0381b;
  }
  .company_network_sp .toukai {
    background-color: #e5caf9;
  }
  .company_network_sp .toukai h3 {
    background-color: #a02af9;
  }
  .company_network_sp .kinki {
    background-color: #f4f1dc;
  }
  .company_network_sp .kinki h3 {
    background-color: #efd618;
  }
  .company_network_sp .chugoku {
    background-color: #fdebea;
  }
  .company_network_sp .chugoku h3 {
    background-color: #f5766c;
  }
  .company_network_sp .shikoku {
    background-color: #d3d4fc;
  }
  .company_network_sp .shikoku h3 {
    background-color: #3a40f3;
  }
  .company_network_sp .kyushu {
    background-color: #c1ffcf;
  }
  .company_network_sp .kyushu h3 {
    background-color: #62c178;
  }
  .company_network .hq dl a:hover {
    color: #e0381b;
  }
}
/*company_sdgs*/
.company_sdgs {
  background-color: #edf0f0;
  padding-top: 6.7rem;
  padding-bottom: 4.5rem;
}
.company_sdgs .company_sdgs_ttl {
  display: flex;
  gap: 2.6rem;
  align-items: center;
  margin-bottom: 6.7rem;
}
.company_sdgs .company_sdgs_ttl::before {
  content: "";
  display: block;
  background-color: #56c4e7;
  height: 6em;
  width: 2.3rem;
}
.company_sdgs .company_sdgs_ttl .subttl_main {
  font-size: 3rem;
  line-height: 1.5;
}
.company_sdgs p {
  line-height: 2.2;
  margin-bottom: 5.6rem;
}
.company_sdgs .sdgs_img_flex {
  display: flex;
  justify-content: center;
  gap: 2.8rem;
  align-items: end;
}
.company_sdgs .sdgs_img_flex .sdgs_img {
  width: 52.5%;
}
.company_sdgs .sdgs_img_flex .kichitarou {
  width: 22%;
}
@media screen and (max-width: 767px) {
  .company_sdgs {
    padding-top: 6rem;
    padding-bottom: 4.5rem;
  }
  .company_sdgs .company_sdgs_ttl .subttl_main {
    font-size: 2rem;
    line-height: 1.5;
  }
  .company_sdgs .company_sdgs_ttl {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .company_sdgs .company_sdgs_ttl::before {
    width: 1.5rem;
  }
  .company_sdgs .company_sdgs_ttl .subttl_main {
    font-size: 2rem;
  }
  .company_sdgs .sdgs_img_flex {
    gap: 1rem;
    flex-direction: column;
  }
  .company_sdgs .sdgs_img_flex .sdgs_img {
    width: 100%;
  }
  .company_sdgs .sdgs_img_flex .kichitarou {
    width: 10rem;
  }
  .company_sdgs p {
    margin-bottom: 4rem;
  }
}
/*-----------------recruit_page-------------------*/
/*recruit_fv*/
.recruit_page .mainttl {
  margin-bottom: 0;
}
.recruit_page .breadcrumbs {
  position: absolute;
  z-index: 1;
  right: 1rem;
  top: 4.6rem;
}
.recruit_fv {
  display: block;
  position: relative;
  height: 69.7rem;
}
.recruit_fv .mainimg {
  position: absolute;
  width: 100%;
  z-index: 0;
}
.recruit_fv .recruit_fv_txt {
  position: absolute;
  z-index: 1;
  background: #ffffff6e 0% 0%;
  display: flex;
  gap: 1.5rem;
  padding: 1.7rem 9.2rem 1.7rem 5.2rem;
  align-items: center;
  top: 53%;
  transform: translateY(-50%);
  left: 0;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
}
.recruit_fv .recruit_fv_txt::before {
  content: "";
  display: block;
  width: 8em;
  height: 3px;
  background-color: #333333;
}
.recruit_fv .recruit_fv_txt h2 {
  font-size: 7rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.7rem;
}

@media screen and (max-width: 767px) {
  .recruit_fv {
    display: block;
    position: relative;
    height: 35vw;
  }
  .recruit_fv .recruit_fv_txt {
    gap: 1rem;
    padding: 1.7rem 5.2rem 1.7rem 2.2rem;
    top: 55%;
  }
  .recruit_fv .recruit_fv_txt h2 {
    font-size: 2.5rem;
  }
  .recruit_fv .recruit_fv_txt::before {
    width: 2em;
    height: 3px;
  }
  .recruit_page .breadcrumbs {
    justify-content: flex-start;
    top: 0%;
    right: 0;
    padding-right: 2rem;
    margin: 0rem;
    justify-content: flex-end;
  }
}
/*recruit_top*/
.recruit_top {
  padding-top: 17.1rem;
}
.recruit_top_box {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  padding: 7.5rem 23.7rem 11.5rem;
  filter: drop-shadow(0.5rem 0.5rem 1rem #00000029);
}
.recruit_top_box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -2;
  background-color: #f4b509;
  clip-path: polygon(4rem 0%, 100% 0, calc(100% - 4rem) 100%, 0 100%);
}
.recruit_top_box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  background-color: #fefbf3;
  bottom: 2rem;
  right: 2rem;
  clip-path: polygon(4rem 0%, 100% 0, calc(100% - 4rem) 100%, 0 100%);
}
.recruit_top_box p {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
  font-weight: 700;
}
.recruit_top_box .kichitarou {
  position: absolute;
  z-index: -1;
  bottom: 0.5%;
  right: -8%;
  width: 16%;
}
.recruit_top_box .recruit_box_logo_top {
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 21rem;
}
.recruit_top_box .recruit_box_logo_back {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 70rem;
  opacity: 0.04;
}

@media screen and (max-width: 767px) {
  .recruit_top {
    padding: 15rem 0 0 2rem;
  }
  .recruit_top_box {
    padding: 4rem 5rem 3rem 3rem;
  }
  .recruit_top_box::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -2;
    background-color: #e0381b;
    clip-path: polygon(3.65rem 0%, 100% 0, calc(100% - 3.65rem) 100%, 0 100%);
  }

  .recruit_top_box p {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.7;
  }
  .recruit_top_box .recruit_box_logo_top {
    position: absolute;
    top: -16vw;
    left: 50%;
    transform: translateX(-50%);
    width: 23vw;
  }
  .recruit_top_box .recruit_box_logo_back {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 75%;
  }
  .recruit_top_box .kichitarou {
    position: absolute;
    z-index: -1;
    bottom: -13vw;
    right: 2vw;
    width: 19vw;
  }
  .recruit_top_box::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
    background-color: #edf0f0;
    bottom: 1rem;
    right: 1rem;
    clip-path: polygon(3.65rem 0%, 100% 0, calc(100% - 3.65rem) 100%, 0 100%);
  }
}
/*recruit_guideline*/
.recruit_guideline {
  padding-top: 14.5rem;
  padding-bottom: 18.5rem;
}
.recruit_guideline .sub_ttl {
  padding: 1.8rem 12.3rem 1rem;
  margin: 0 auto 4rem;
}
.recruit_guideline dl div {
  display: flex;
}
.recruit_guideline dl {
  border-top: 2px solid #56c4e7;
  font-size: 1.7rem;
}
.recruit_guideline dl div dt {
  width: 21%;
  padding: 1.96rem 4rem;
  background-color: #56c4e7;
  color: #fff;
  border-bottom: 2px solid #fff;
  line-height: 2.2;
  align-content: center;
}
.recruit_guideline dl div dd {
  width: 79%;
  padding: 1.96rem 3.5rem;
  border-bottom: 2px solid #56c4e7;
  border-right: 2px solid #56c4e7;
  font-weight: 400;
  line-height: 2.2;
}
.recruit_guideline dl div:nth-last-of-type(1) dt {
  border-bottom: 2px solid #56c4e7;
}
@media screen and (max-width: 767px) {
  .recruit_guideline {
    padding-top: 14.5rem;
    padding-bottom: 10.5rem;
  }
  .recruit_guideline .sub_ttl {
    padding: 1.35rem 6.3rem;
  }
  .recruit_guideline dl div {
    flex-direction: column;
    border: 1px solid #56c4e7;
  }
  .recruit_guideline dl div dt {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
  }
  .recruit_guideline dl div dd {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
  }
  .recruit_guideline dl div:nth-last-of-type(1) dt {
    border-bottom: none;
  }
}
/*-----------------products_page(製品リスト)-------------------*/
.products_page .products_list {
  padding-top: 8.5rem;
  padding-bottom: 7.5rem;
}
.products_page h2 {
  display: inline-flex;
  background-color: #edf0f0;
  font-size: 3rem;
  padding: 1.25rem 71.7rem 1.25rem 36.8rem;
  align-items: center;
  line-height: 1.7;
  gap: 2.25rem;
}
.products_page h2::before {
  content: "";
  background-color: #56c4e7;
  width: 1em;
  height: 1em;
  border-radius: 1em;
}
.products_page ul {
  padding: 2.1rem 36.8rem 4.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 11.8rem;
}
.products_page li {
  width: 26%;
  height: 7.7rem;
}
.products_page li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #56c4e7;
  font-size: 2.3rem;
  box-shadow: 1rem 1rem 3rem #00000029;
  border: 0.2rem solid #56c4e7;
  padding: 0 1rem;
  text-align: center;
}
.products_page ul::after {
  content: "";
  display: block;
  width: 26%;
}
@media screen and (max-width: 767px) {
  .products_page .products_list {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
  .products_page h2 {
    font-size: 2rem;
    padding: 1rem 4.65rem 1rem 4.65rem;
    width: calc(100% - 4.65rem);
    gap: 1rem;
  }
  .products_page ul {
    padding: 2.1rem 4.65rem 3rem;
    gap: 2rem;
  }

  .products_page li {
    width: 100%;
    height: 5.5rem;
  }
  .products_page li a {
    font-size: 1.8rem;
  }
}
/*-----------------products_archive(カテゴリ別製品アーカイブ)-------------------*/
.products_archive .products_loop {
  padding-top: 7.21rem;
  padding-bottom: 4rem;
}
.products_archive .products_loop ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9.2rem 2rem;
  margin-bottom: 14rem;
}
.products_archive .products_loop ul li {
  display: flex;
  flex-direction: column;
  width: 32%;
  position: relative;
  filter: drop-shadow(0.5rem 0.5rem 1rem #00000029);
  height: 28.6rem;
}
.products_archive .products_loop ul li .products_img {
  width: 100%;
  clip-path: polygon(4rem 0%, 100% 0, calc(100% - 4rem) 100%, 0 100%);
  height: 100%;
  object-position: top;
  z-index: 0;
  position: absolute;
  overflow: hidden;
}
.products_archive .products_loop ul li .products_img img {
  aspect-ratio: 466 / 291;
  width: 100%;
  object-fit: cover;
}
.products_archive .products_loop ul li p {
  font-weight: 700;
  margin: 0;
  position: absolute;
  bottom: 1.2rem;
  left: 1.7rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  padding-right: 3rem;
}
.products_archive .products_loop ul li::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: #edf0f0;
  clip-path: polygon(4rem 0%, 100% 0, calc(100% - 4rem) 100%, 0 100%);
}
.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi span.current {
  background-color: #56c4e7;
  border: 1px solid #56c4e7;
  color: #fff;
}

.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 100px;
  background-color: #fff;
  color: #56c4e7;
  border: 1px solid #56c4e7;
  margin: 0 1.1rem;
}
.wp-pagenavi .pages {
  background-color: transparent;
  border: none;
  margin: 0;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .products_archive .products_loop {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .products_archive .products_loop ul {
    gap: 4rem;
    margin-bottom: 5rem;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 100px;
    background-color: #fff;
    color: #56c4e7;
    border: 1px solid #56c4e7;
    margin: 0 0.5rem;
  }
  .products_archive .products_loop ul li {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    filter: drop-shadow(0.5rem 0.5rem 1rem #00000029);
    height: 62vw;
  }
}
/*-----------------products_single-------------------*/
.products_single .single_main {
  padding-top: 7.3rem;
  padding-bottom: 4.6rem;
}
.products_single h2 {
  font-size: 3rem;
  background-color: #edf0f0;
  padding: 1.65rem 1rem 1.65rem 6.5rem;
  clip-path: polygon(4rem 0%, 100% 0, calc(100% - 4rem) 100%, 0 100%);
  margin-bottom: 3.4rem;
}
.products_subttl {
  font-size: 2.2rem;
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}
.products_subttl::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background-color: #56c4e7;
}

/*products_brief*/
.products_single .products_brief {
  display: flex;
  margin-top: 2.4rem;
  margin-bottom: 3rem;
}
.products_single .products_brief img {
  width: 50%;
  box-shadow: 1rem 1rem 3rem #00000029;
}
.products_single .products_brief .brief_txt {
  width: 50%;
  background-color: #edf0f0;
  padding: 2.6rem 6.5rem 2.8rem 5.6rem;
  height: fit-content;
  clip-path: polygon(0 0%, 100% 0, calc(100% - 3rem) 100%, 0 100%);
}
.products_subttl {
  font-size: 2.2rem;
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}
.products_subttl::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background-color: #56c4e7;
}
.products_single .products_brief .brief_txt dd {
  font-size: 1.7rem;
  padding-bottom: 0.7rem;
  margin: 1.15rem 0 3rem;
  font-weight: 400;
  border-bottom: 1px solid #707070;
}
/*products_description*/
.products_description {
  margin: 3.6rem 0;
  padding: 1rem 9rem;
  display: flex;
  background-color: #edf0f0;
  clip-path: polygon(3rem 0%, 100% 0, calc(100% - 3rem) 100%, 0 100%);
}
.products_description p:nth-of-type(1) {
  padding-right: 5.5rem;
  border-right: 1px solid #707070;
}
.products_description p:nth-last-of-type(1) {
  padding-left: 5.5rem;
}
/*products_imglist*/
.products_imglist h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3.6rem;
}
.products_imglist div {
  display: flex;
  gap: 2.8rem;
  margin-bottom: 3.4rem;
  justify-content: space-between;
}
.products_imglist img {
  box-shadow: 10px 10px 30px #00000029;
  object-fit: cover;
}
.products_imglist .column_4 img {
  width: 27.5rem;
  height: 27.5rem;
}
.products_imglist .column_2 img {
  width: 49%;
  height: 32.3rem;
}
.products_imglist .column_3 img {
  width: 32%;
  height: 29.4rem;
}
/*products_details*/
.products_details {
  margin: 3.6rem 0 4rem;
  padding: 4.2rem 11.5rem 2.5rem;
  background-color: #edf0f0;
  clip-path: polygon(4rem 0%, 100% 0, calc(100% - 4rem) 100%, 0 100%);
}
.products_details p:nth-of-type(1) {
  padding-bottom: 1.1rem;
  margin-bottom: 2.1rem;
  border-bottom: 1px solid #707070;
}
/*products_feature*/
.products_feature h3 {
  font-size: 3rem;
  text-align: center;
}
.products_feature div {
  margin: 3.4rem 0 3.5rem;
  padding: 4.2rem 11.5rem 2.5rem;
  background-color: #edf0f0;
  clip-path: polygon(4rem 0%, 100% 0, calc(100% - 4rem) 100%, 0 100%);
}
.products_feature div p:not(:last-of-type) {
  padding-bottom: 1.1rem;
  margin-bottom: 2.1rem;
  border-bottom: 1px solid #707070;
}
/*products_specification*/
.products_specification {
  margin-bottom: 3.3rem !important;
}
.products_specification h3,
.products_maker h3 {
  font-size: 3rem;
  display: flex;
  gap: 1.4rem;
  align-items: end;
  margin-bottom: 2.8rem;
}
.products_specification h3::before,
.products_maker h3::before {
  content: "";
  display: block;
  border-top: 1em solid #56c4e7;
  border-left: 0.6em solid transparent;
  border-right: 0.6em solid transparent;
}
.products_specification a {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  margin-left: 4.5rem;
}
.products_specification a img {
  height: 3.5em;
}
.products_specification a p {
  font-size: 2.2rem;
}
/*products_maker*/
.products_maker {
  margin-bottom: 4rem !important;
}
.products_maker a {
  font-size: 2.2rem;
  display: inline-flex;
  gap: 1.7rem;
  font-weight: 400;
  padding-bottom: 0.64rem;
  border-bottom: 1px solid #56c4e7;
  align-items: center;
  margin-bottom: 0.5rem;
  margin-left: 5rem;
}
.products_maker a:hover {
  border-bottom: 1px solid transparent;
}
.products_maker a::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background-color: #56c4e7;
}
.products_maker span {
  font-size: 2.2rem;
  display: inline-flex;
  gap: 1.7rem;
  font-weight: 400;
  padding-bottom: 0.64rem;
  border-bottom: 1px solid #56c4e7;
  align-items: center;
  margin-bottom: 0.5rem;
  margin-left: 5rem;
}
.products_maker span::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background-color: #56c4e7;
}
.products_maker p {
  font-size: 2.2rem;
  display: inline-flex;
  gap: 1.7rem;
  font-weight: 400;
  margin-top: 0;
  padding-bottom: 0.64rem;
  border-bottom: 1px solid #56c4e7;
  align-items: center;
  margin-bottom: 0.5rem;
  margin-left: 5rem;
  line-height: 1.2 !important;
}
.products_maker p::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background-color: #56c4e7;
}
/*single_pagenavi*/
.single_pagenavi {
  display: flex;
  gap: 4.3rem;
  justify-content: center;
  margin-top: 5rem;
}
.single_pagenavi .nb_btn {
  display: flex;
  gap: 3.4rem;
  align-items: center;
}
.back_archive {
  font-size: 2.32rem;
  border: 2px solid #56c4e7;
  color: #56c4e7;
  width: 30.9rem;
  text-align: center;
  padding: 1.5rem 3rem;
  background-color: #fff;
  height: 7.6rem;
  align-content: center;
}
.single_pagenavi .page_txt a {
  color: #56c4e7;
  font-size: 1.7rem;
}
.page_txt {
  color: #56c4e7;
}
.single_pagenavi .arrow a {
  background-color: #56c4e7;
  border: 1px solid #56c4e7;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  width: 7.6rem;
  height: 7.6rem;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .products_single .single_main {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding: 3rem 0;
  }
  .products_single h2 {
    font-size: 2rem;
    background-color: #edf0f0;
    padding: 1.3rem 1rem 1.3rem 4rem;
    clip-path: polygon(2rem 0%, 100% 0, calc(100% - 2rem) 100%, 0 100%);
    margin: 0 4.65rem;
    margin-bottom: 3.4rem;
  }
  .products_single .products_brief {
    display: flex;
    flex-wrap: wrap;
    margin: 2.4rem 4.65rem;
  }
  .products_single .products_brief img {
    width: 100%;
    object-fit: cover;
  }
  .products_single .products_brief .brief_txt {
    width: 100%;
    padding: 2rem 2rem 2.8rem;
    clip-path: initial;
  }
  .products_single .products_brief .brief_txt dt {
    font-size: 1.7rem;
  }
  .products_subttl {
    font-size: 2rem;
  }
  .products_description {
    padding: 2rem 5.5rem;
    clip-path: polygon(4.65rem 0%, 100% 0, calc(100% - 4.65rem) 100%, 0 100%);
    flex-wrap: wrap;
  }
  .products_description p {
    margin: 0;
    padding: 1rem 0;
  }
  .products_description p:nth-of-type(1) {
    border-bottom: 1px solid #000;
    border-right: none;
    padding-right: 0;
  }
  .products_description p:nth-last-of-type(1) {
    padding-left: 0;
  }
  .products_imglist {
    padding: 0 4.65rem;
  }
  .products_imglist h3 {
    font-size: 2.5rem;
  }
  .products_imglist div {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .products_imglist .column_4 img {
    width: 45%;
    height: initial;
  }
  .products_imglist .column_2 img {
    width: 100%;
    height: initial;
  }
  .products_imglist .column_3 img {
    width: 100%;
    height: initial;
  }
  .products_details {
    padding: 3.2rem 5.5rem 2.5rem;
    clip-path: polygon(4.65rem 0%, 100% 0, calc(100% - 4.65rem) 100%, 0 100%);
  }
  .products_feature h3 {
    font-size: 2.5rem;
  }
  .products_feature div {
    padding: 3.2rem 5.5rem 2.5rem;
    clip-path: polygon(4.56rem 0%, 100% 0, calc(100% - 4.56rem) 100%, 0 100%);
  }
  .products_specification {
    padding: 0 4.65rem;
  }
  .products_maker {
    padding: 0 4.65rem;
  }
  .products_specification h3,
  .products_maker h3 {
    font-size: 2rem;
    gap: 1rem;
  }
  .products_specification a {
    gap: 1rem;
    margin-left: 2.7rem;
  }
  .products_specification a p {
    font-size: 1.7rem;
  }
  .products_maker a {
    font-size: 1.7rem;
    gap: 1rem;
    align-items: initial;
    margin-left: 3.5rem;
  }
  .products_maker a::before {
    width: 0.8rem;
    height: 0.8rem;
    padding: 0.8rem;
    margin-top: 0.3rem;
  }
  .products_maker span {
    font-size: 1.7rem;
    gap: 1rem;
    align-items: initial;
    margin-left: 3.5rem;
  }
  .products_maker span::before {
    width: 0.8rem;
    height: 0.8rem;
    padding: 0.8rem;
    margin-top: 0.3rem;
  }
  .products_maker p {
    font-size: 1.7rem;
    gap: 1rem;
    align-items: initial;
    margin-left: 3.5rem;
  }
  .products_maker p::before {
    width: 0.8rem;
    height: 0.8rem;
    padding: 0.8rem;
    margin-top: 0.3rem;
  }
  .single_pagenavi {
    justify-content: space-between;
    padding: 0 4.65rem;
  }
  .single_pagenavi .nb_btn {
    display: flex;
    gap: 1rem;
  }
  .single_pagenavi .arrow a {
    font-size: 1.7rem;
    width: 6.6rem;
    height: 6.6rem;
  }
  .back_archive.sp {
    display: block !important;
    margin: 3rem auto 1rem;
    width: calc(100% - 9.3rem);
    font-size: 2rem;
    height: 6.5rem;
  }
}
/*-----------------topics_archive-------------------*/
.topics_archive .topics_loop {
  padding-top: 7.21rem;
  padding-bottom: 4rem;
}
.topics_archive .topics_loop ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 9rem;
}
.topics_archive .topics_loop ul li:nth-child(1) {
  border-top: 1px solid #707070;
}
.topics_archive .topics_loop ul li {
  border-bottom: 1px solid #707070;
  width: 100%;
}
.topics_archive .topics_loop ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 1.7rem;
}
.topics_archive .topics_loop ul li .date {
  font-size: 2.5rem;
}
.topics_archive .topics_loop ul li .category {
  font-size: 2rem;
  background-color: #56c4e7;
  color: #fff;
  padding: 0.5rem 3.5rem;
  margin: 0 3.8rem 0 4.7rem;
  display: block;
}
.topics_archive .topics_loop ul li p {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 2.2rem 0;
}
@media screen and (max-width: 767px) {
  .topics_archive .topics_loop {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .topics_archive .topics_loop ul {
    margin-bottom: 5rem;
  }
  .topics_archive .topics_loop ul li a {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .topics_archive .topics_loop ul li .date {
    font-size: 1.7rem;
  }
  .topics_archive .topics_loop ul li p {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 1rem 0;
  }
  .topics_archive .topics_loop ul li a {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 1rem 0;
  }
  .topics_archive .topics_loop ul li .category {
    font-size: 1.7rem;
    padding: 0.5rem 2.5rem;
    margin: 0;
  }
}

/*-----------------topics_single-------------------*/
.topics_single {
  padding-bottom: 4.6rem;
}
.topics_single .single_main {
  padding-top: 7.3rem;
  padding-bottom: 4.6rem;
}
.topics_single h1 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 3rem;
  padding: 1.3rem 1rem 1.3rem 6.5rem;
}
.topics_single h2 {
  margin-top: 3rem;
  font-size: 3rem;
  background-color: #edf0f0;
  padding: 1.3rem 1rem 1.3rem 6.5rem;
  clip-path: polygon(4rem 0%, 100% 0, calc(100% - 4rem) 100%, 0 100%);
}
.topics_single h3 {
  font-size: 2.2rem;
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  margin-top: 3rem;
}
.topics_single h3::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background-color: #56c4e7;
}
.topics_single h4 {
  font-size: 2rem;
  margin-top: 1rem;
}
.topics_single h5 {
  font-size: 1.8rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .topics_single h1 {
    font-size: 2rem;
    padding: 1.3rem 1rem 1.3rem 4rem;
    width: 100%;
  }
  .topics_single h2 {
    font-size: 2rem;
    background-color: #edf0f0;
    padding: 1.3rem 1rem 1.3rem 4rem;
    clip-path: polygon(2rem 0%, 100% 0, calc(100% - 2rem) 100%, 0 100%);
    width: 100%;
  }
}
/*-----------------contact_page-------------------*/
/*contact_contact*/
.contact_contact {
  padding-top: 8.4rem;
  margin-bottom: 20.4rem;
}
.contact_contact .ctc_note {
  margin-bottom: 3rem;
  line-height: 2.2;
}
.contact_form dl {
  border-top: 2px solid #56c4e7;
  font-size: 1.7rem;
}
.contact_form .flex_wrap {
  flex-wrap: nowrap;
}
.contact_form .flex_wrap dt {
  width: 35%;
  padding: 1.96rem 3.5rem;
  background-color: #56c4e7;
  color: #fff;
  border-bottom: 2px solid #fff;
  font-weight: 700;
}
.contact_form .flex_wrap dt .require {
  font-size: 1em;
  margin-left: 1rem;
}
.contact_form .flex_wrap dd {
  width: 65%;
  padding: 1rem 0rem;
  border-bottom: 2px solid #56c4e7;
  border-right: 2px solid #56c4e7;
  font-weight: 400;
}
.contact_form .flex_wrap:nth-last-of-type(1) dt {
  border-bottom: 2px solid #56c4e7;
}
.contact_form .flex_wrap dd input,
.contact_form .flex_wrap dd textarea {
  width: 100% !important;
  padding: 0.8rem 1rem;
  border: none;
}

.contact_form .ctc_submit .flex_wrap {
  justify-content: center;
  gap: 1rem;
  align-items: center;
  margin: 3.3rem 0 2.7rem;
  flex-direction: row;
}
.contact_form .ctc_submit input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
}
.contact_form dd .wpcf7-exclusive-checkbox label {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
.contact_form dd .wpcf7-list-item label input {
  width: initial;
}

.wpcf7-form-control-wrap {
  height: 2rem;
}

.contact_form .ctc_submit {
  margin-top: 5.5rem;
}
.contact_form .ctc_submit p,
.contact_form .ctc_submit a {
  font-size: 1.7rem;
  text-align: center;
  display: block;
}
.contact_form .ctc_submit a {
  text-decoration: underline;
  font-weight: 400;
}
.contact_form .ctc_submit a:hover {
  text-decoration: none;
}
.contact_form .ctc_submit .ctc_btn {
  color: #fff;
  background-color: var(--btn1back-color);
  position: relative;
  min-width: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 7.4rem;
  width: 39.4rem;
  font-size: 1.7rem;
  border: 1px solid var(--btn1back-color);
  border-radius: 4.6rem;
  transition: 0.3s;
  font-weight: 700;
}
.contact_form .ctc_submit .ctc_btn:hover {
  background-color: var(--btn1font-color);
  color: var(--btn1back-color);
}
.contact_form .ctc_submit .wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.contact_form .ctc_submit .wpcf7-spinner {
  display: none;
}

@media screen and (max-width: 767px) {
  .contact_contact {
    padding-top: 2.5rem;
    margin-bottom: 10.4rem;
  }
  .contact_form .flex_wrap {
    flex-direction: column;
  }
  .contact_form dl {
    border: 1px solid #56c4e7;
  }
  .contact_form .flex_wrap dt {
    width: 100%;
    border: none;
    padding: 1rem 2rem;
  }
  .contact_form .flex_wrap dd {
    width: 100%;
    border: none;
    padding: 0 1rem;
  }
  .contact_form .ctc_submit .ctc_btn {
    height: 5rem;
    width: 100%;
  }
  .contact_form .ctc_submit {
    margin-top: 3.5rem;
  }
  .contact_form .flex_wrap:nth-last-of-type(1) dt {
    border-bottom: none;
  }
}
/* ===================================================================
// フッター
// ===================================================================*/
#footer .footer_main {
  background-color: #474f52;
  padding-top: 7.5rem;
  padding-bottom: 4.5rem;
  z-index: 1;
  position: relative;
}
#footer .footer_main .footer_company {
  align-items: center;
  justify-content: flex-start;
  gap: 10rem;
}
#footer .footer_main .footer_company .logo {
  width: 45.7rem;
}
#footer .footer_main .footer_company .logo img {
  width: 100%;
}
#footer .footer_main .footer_company p {
  font-size: 2.2rem;
  color: #fff;
}
#footer .footer_main .footer_nav ul {
  margin-top: 7.5rem;
  justify-content: flex-start;
}
#footer .footer_main .footer_nav ul li {
  position: re;
}
#footer .footer_main .footer_nav ul li a {
  padding: 1rem 2.4rem;
  position: relative;
  display: block;
  color: #fff;
  font-size: 2.2rem;
}

/* #footer .footer_main .footer_nav ul li::after {
  content: "";
  position: absolute;
  top: 23%;
  right: 0;
  transform: translateY(-50%) rotate(15deg);
  margin: 1rem 0;
  width: 1px;
  height: 2em;
  background-color: #fff;
  display: block;
} */
#footer .footer_main .footer_nav ul li:nth-of-type(1)::after {
  display: none;
}
#footer .footer_main .footer_nav ul li:nth-of-type(1) a {
  padding-left: 0;
}
#footer .footer_com {
  background-color: #474f52;
  padding-bottom: 0.5px;
  padding-top: 0.5px;
}
#footer .footer_com p {
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  #footer .footer_main .footer_company {
    gap: 2rem;
  }
  #footer .footer_main .footer_company p {
    font-size: 1.6rem;
  }
  #footer .footer_com {
    padding: 0.5rem 0;
    text-align: center;
  }
  #footer .footer_main .footer_nav ul {
    margin-top: 2rem;
    justify-content: flex-start;
    flex-direction: column;
  }
  #footer .footer_main .footer_nav ul li a::after {
    display: none;
  }
  #footer .footer_main .footer_nav ul li a {
    padding: 0rem;
    margin: 1rem 0;
    font-size: 1.6rem;
  }
  #footer .footer_main {
    background-color: #474f52;
    padding-top: 4.5rem;
    padding-bottom: 1.5rem;
  }
  #footer .footer_main .footer_nav ul li::after {
    display: none;
  }
}
/*404*/
.page_404 .content_404 {
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 15rem;
}
.page_404 h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.page_404 p {
  margin-bottom: 5rem;
}
.page_404 .btn1 {
  margin: 0 auto;
}

.page_404 .mainttl h1 {
  padding-top: 5rem;
}
/*プライバシーポリシー*/
.privacypolicy_page .privacypolicy_txt {
  padding-top: 8.4rem;
  padding-bottom: 20.4rem;
}
.privacypolicy_page .privacypolicy_txt h2 {
  display: flex;
  font-size: 2.2rem;
  align-items: center;
  gap: 1.2rem;
  margin-top: 4.1rem;
}
.privacypolicy_page .privacypolicy_txt h2::before {
  content: "";
  display: block;
  background-color: #56c4e7;
  width: 0.8em;
  height: 0.8em;
  border-radius: 1em;
}
.privacypolicy_page .privacypolicy_txt p {
  line-height: 2.2;
}
.privacypolicy_page .privacypolicy_contact {
  margin-top: 4.8rem;
}
.privacypolicy_page .privacypolicy_contact p {
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .privacypolicy_page .privacypolicy_txt {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }
  .privacypolicy_page .privacypolicy_txt p {
    line-height: 1.7;
  }
  .privacypolicy_page .privacypolicy_txt p {
    line-height: 1.7;
  }
}
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box {
  opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.products_specification > div > div {
  display: grid;
  gap: 2rem;
}

.products_specification > div {
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .products_detail_1col {
    padding: 0 6rem;
  }
}

/*==================================================
ローディング画面
==================================================*/
.loader {
  /*ローディング画面の縦横幅を画面いっぱいになるように指定*/
  width: 100vw;
  height: 100vh;
  /*ローディング画面の表示位置を固定*/
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  /*ローディング画面を0.5秒かけて非表示にする*/
  transition: all 0.5s linear;
  z-index: 9000;
}

/*ローディング画面を非表示にする*/
.loader.loaded {
  /*0.5秒かけてopacityを0にする*/
  opacity: 0;
  visibility: hidden;
}

.spinner {
  font-size: 10px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: #56c4e7;
  background: -moz-linear-gradient(left, #56c4e7 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #56c4e7 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #56c4e7 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #56c4e7 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #56c4e7 10%, rgba(255, 255, 255, 0) 42%);
  /* position: relative; */
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.spinner:before {
  width: 50%;
  height: 50%;
  background: #56c4e7;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.spinner:after {
  background: #fff;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.category {
  white-space: nowrap;
}

.grecaptcha-badge {
  display: none;
  z-index: 100;
  bottom: 210px !important;
}
.page-id-14 .grecaptcha-badge {
  display: block;
}
