/* 共通項目 =======================================================*/
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

figure {
  max-width: 100%;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none !important;
}

a:focus {
  text-decoration: none;
}

button:focus {
  outline: none;
}

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

img {
  max-width: 100%;
}

/*フォーカス時の枠線を消す*/
*:focus {
  outline: none;
}

button {
  outline: none;
}

/* フォント設定 =======================================================*/
body,
button,
input,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

/* 追加共通項目 =======================================================*/
.tyk_header-height{
  margin-top: 108px;
}

.tyk_sp_only {
  display: none !important;
}
/* コンテンツ幅 */
.tyk_inner {
  width: 88%;
  margin: 0 auto;
}

/* reCAPTCHAアイコン非表示 */
.grecaptcha-badge {
  visibility: hidden;
}

/* アニメーション =======================================================*/
.js-hidden {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ヘッダーナビゲーション設定 ==============================================*/
/* デフォルトのナビゲーションスタイルを上書きするためのCSS */
/* ホバー時の下線を削除 */
.nav-item-inner:hover {
  text-decoration: none !important;
}

.wp-block-navigation-item:hover,
.wp-block-navigation-item.has-child.open-on-hover-click:hover
  .wp-block-navigation__submenu-container {
  border: none !important;
}

/* トグルボタン */
.wp-block-navigation__submenu-icon.wp-block-navigation-submenu__toggle {
  width: 1em;
  height: 1em;
}

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

.tyk_header_wrapper {
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1vw;
}

.tyk_header_nav {
  margin-top: 0;
}

.tyk_header_nav a {
  transition: opacity 0.3s;
}

.tyk_header_nav a:hover {
  opacity: 0.7;
}

.tyk_header_btn {
  background: linear-gradient(to bottom right, #0a47a1, #002459);
  color: var(--wp--preset--color--white);
  font-size: var(--wp--preset--font-size--fsz-20);
  height: 100px;
  width: 12vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.tyk_header_btn:hover {
  opacity: 0.7;
}

/**********************************************************
 ファーストビュー fv
 **********************************************************/
.tyk_fv {
  position: relative;
  background-image: url(../images/top_main_back.webp);
  background-position: center;
  background-size: cover;
  padding-bottom: var(--wp--preset--spacing--space-120);
  margin-top: 108px;
}

.tyk_fv_wrapper {
  position: relative;
  z-index: 1;
  padding-top: 14vw;
  padding-left: 7vw;
}

.tyk_fv_title {
  font-size: clamp(1.375rem, 0.929rem + 1.83vw, 3.125rem);
}

.tyk_fv_sitle_sub {
  font-size: clamp(1.25rem, 1.027rem + 0.92vw, 2.125rem);
}

.tyk_fv_container {
  position: absolute;
  top: 0;
  right: 0;
  width: 52vw;
  height: 38vw;
  margin-top: 0;
}

.tyk_fv_img {
  position: absolute;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  animation: image-switch-animation 20s infinite;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes image-switch-animation {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.tyk_fv_img01 {
  background-image: url(../images/img-fv01.webp);
}

.tyk_fv_img02 {
  background-image: url(../images/fv-02.webp);
}

.tyk_fv_img03 {
  background-image: url(../images/fv-03.webp);
}

.tyk_fv_img04 {
  background-image: url(../images/img-fv04.webp);
}

.tyk_fv_img:nth-of-type(1) {
  animation-delay: 0s;
}
.tyk_fv_img:nth-of-type(2) {
  animation-delay: 5s;
}
.tyk_fv_img:nth-of-type(3) {
  animation-delay: 10s;
}
.tyk_fv_img:nth-of-type(4) {
  animation-delay: 15s;
}

/*******************************************************
 スクロールアニメーション
 *******************************************************/
.tyk_scroll_container {
  position: absolute;
  display: inline-block;
  text-align: center;
  margin-top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tyk_scroll_arrow {
  margin-top: 48px;
  width: 19px;
}

.tyk_scroll {
  position: absolute;
  right: 50%;
  top: 12px;
}

/* 線のアニメーション部分 */
.tyk_scroll::before {
  animation: scroll 2s infinite;
  background-color: #707070;
  content: "";
  height: 60px;
  left: -2px;
  margin: auto;
  position: absolute;
  right: 0;
  width: 4px;
  z-index: 1;
}

.tyk_scroll::after {
  background-color: #cbcbcb;
  content: "";
  height: 60px;
  left: -2px;
  margin: auto;
  position: absolute;
  right: 0;
  width: 4px;
}

/* スクロールアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/**********************************************
 pcのみ表示するボタン
 ***********************************************/
.tyk_btn {
  width: 21vw;
  height: 5.8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--blue);
  gap: 1em;
  transition: opacity 0.3s;
  border-radius: 50px;
  font-size: clamp(1.25rem, 0.735rem + 1.05vw, 2rem);
  font-weight: 700;
  cursor: pointer;
  text-shadow: 0 0 1px #fff, 0 0 1.5px #fff, 0 0 2px #fff;
  box-shadow: 2px 2px 3px var(--wp--preset--color--blue);
}

.tyk_btn:hover span {
  transition: all 0.3s;
  font-size: clamp(1.25rem, 0.735rem + 1.05vw, 2rem);
  color: var(--wp--preset--color--blue);
  font-weight: 700;
}

.tyk_btn:hover {
  opacity: 0.7;
}

.tyk_btn:hover span {
  transform: translateX(0.5em);
}

.tyk_btn_company {
  background-image: url(../images/img-company.webp);
  background-position: center;
  background-size: cover;
}

.tyk_btn_product {
  background-image: url(../images/img-products.webp);
  background-position: center;
  background-size: cover;
}

.tyk_btn_contact {
  background-image: url(../images/img-contact.webp);
  background-position: center;
  background-size: cover;
}

.tyk_title_line_wrapper {
  margin-left: 11vw;
  padding-left: 148px;
  padding-right: 13vw;
  padding-bottom: 4vw;
  padding-top: 2.5vw;
  position: relative;
}

/*****************************************************
 トップページタイトル
 *****************************************************/
.tyk_title_up {
  position: absolute;
  top: -0.6em;
  line-height: 1;
}

.tyk_title_line {
  position: relative;
}

.tyk_title_line::before {
  width: 100px;
  height: 2px;
  background-color: var(--wp--preset--color--blue);
  content: "";
  position: absolute;
  left: -146px;
  top: 50%;
}

/******************************************************
 トップページ feature
 ******************************************************/
.tyk_feature {
  background-image: url(../images/img-feature-bg.webp);
  background-position: bottom;
  background-size: cover;
}

.tyk_feature_title {
  padding-left: 50vw;
}
.tyk_feature_title h2 {
  position: inherit;
}

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

.tyk_feature_img {
  width: 42vw;
}

.tyk_feature_text {
  width: 50vw;
  padding-right: 6vw;
}

.tyk_feature_container-reverse .tyk_feature_text {
  padding-right: 0;
  padding-left: 6vw;
}

/* トップページ 背景カラーのコンテンツ */
.tyk_top_color_wrapper {
  width: 100%;
  display: flex;
  position: relative;
}

.tyk_top_color_content {
  flex: 0 0 auto;
  width: 62.5vw;
  position: relative;
  z-index: 2;
  color: var(--wp--preset--color--white);
  background-color: rgb(47, 162, 255, 0.8);
  padding-left: 148px;
}

.tyk_top_color_content .tyk_title_line,
.tyk_top_company_inner .tyk_title_line {
  color: var(--wp--preset--color--white) !important;
}

.tyk_top_color_content .tyk_title_line::before,
.tyk_top_company_inner .tyk_title_line::before {
  background-color: var(--wp--preset--color--white);
}

.tyk_top_color_img {
  width: 42vw;
  flex-shrink: 0;
  position: absolute;
  right: 0;
}

.tyk_top_color_btn_wrapper {
  position: absolute;
  bottom: -1vw;
  right: 6.25vw;
  align-items: center;
}

.tyk_btn_detail a {
  width: 5.7vw;
  height: 5.7vw;
  max-width: 110px;
  min-width: 48px;
  transition: all 0.3s;
}

.tyk_btn_detail a:hover {
  opacity: 0.7;
  transform: translateX(1em);
}

/**************************************
 トップページのService 
 ****************************************/
.tyk_top_service {
  margin-top: var(--wp--preset--spacing--space-120);
}

/**************************************
 トップページのProduct
 ****************************************/
.tyk_top_product .tyk_top_color_img {
  left: 0;
}

.tyk_top_product .tyk_top_color_content {
  margin-left: auto;
}

/**************************************
 トップページのCompany
 ****************************************/
.tyk_top_company {
  margin-top: 8.75vw;
}

.tyk_top_company_inner {
  position: relative;
  color: var(--wp--preset--color--white);
  background-color: rgb(47, 162, 255, 0.8);
  padding: 2.5vw 6.3vw var(--wp--preset--spacing--space-104) 148px;
  margin-top: clamp(4rem, 1.833rem + 8.89vw, 12.5rem);
}

.tyk_top_company_img img {
  width: 100%;
  height: 15.6vw;
}

/**************************************
 トップページのNews
 ****************************************/
.tyk_news_item {
  border: solid 1px var(--wp--preset--color--black-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5vw 4vw;
}

.tyk_news_item_day {
  width: 12.8vw;
}

.tyk_news_item_title {
  width: 70vw;
  margin-top: 0;
}

.tyk_news_item_title a {
  transition: all 0.3s;
}

.tyk_news_item_title a:hover {
  color: var(--wp--preset--color--blue);
  text-decoration: underline !important;
}

/**************************************
 トップページのRecruit
 ****************************************/
.tyk_top_recruit {
  background-image: url(../images/img-recruit-lg.webp);
  background-size: cover;
  background-position: center;
  padding-top: 7.8vw;
  padding-bottom: 7.8vw;
}

/**************************************
お問い合わせ先 cta
 ****************************************/
.tyk_cta_btn_wrapper {
  text-align: center;
}

.tyk_cta_btn {
  background-color: var(--wp--preset--color--blue);
  border: solid 2px var(--wp--preset--color--blue);
  color: var(--wp--preset--color--white);
  font-size: var(--wp--preset--font-size--fsz-24);
  font-weight: 700;
  display: inline-block;
  padding: 0.5em 1em;
  border-radius: 8px;
  transition: all 0.3s;
}

.tyk_cta_btn:hover {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--blue);
}

/**************************************
フッター footer
 ****************************************/
footer {
  margin-top: 0;
}

.tyk_footer_wrapper {
  display: flex;
  align-items: flex-start;
  gap: 18vw;
}

.tyk_footer_nav_container {
  display: flex;
  align-items: flex-start;
  gap: 4vw;
}

.tyk_footer_address {
  white-space: nowrap;
}

/**************************************
トップへのアイコン
 ****************************************/
.tyk_icon_top a {
  position: fixed;
  bottom: 2vw;
  right: 2vw;
  width: 5vw;
  height: 5vw;
  max-width: 94px;
  transition: opacity 0.3s;
  z-index: 100;
}

.tyk_icon_top a:hover {
  opacity: 0.7;
}

/**************************************
採用ページのアイコン
 ****************************************/
.tyk_icon_recruit a {
  width: 16vw;
  position: fixed;
  bottom: 15vh;
  right: 2vw;
  z-index: 100;
}

/**************************************
スクロールで表示させるアイコンの設定
 ****************************************/
.js_scroll_icon {
  opacity: 0;
}

.js_scroll_icon.is-show {
  opacity: 1;
}

/**************************************
固定ページのタイトル
 ****************************************/
.tyk_page_heading {
  padding: 3.5vw 0 6vw 7.7vw;
  margin-top: 139px!important;
}

.tyk_page_heading_title,
.tyk_page_heading_title-black {
  position: relative;
}

.tyk_page_heading_title::before,
.tyk_page_heading_title-black::before {
  content: "";
  position: absolute;
  width: 3.6vw;
  height: 5px;
  background-color: var(--wp--preset--color--white);
  left: -5.1vw;
  top: 50%;
  transform: translateY(-50%);
}

.tyk_page_heading_title-black::before {
  background-color: var(--wp--preset--color--black-text);
  box-shadow: none;
}

/**************************************
固定ページのセクションタイトル
 ****************************************/
.tyk_page_section_title_wrapper {
  position: relative;
}

.tyk_page_section_title {
  position: absolute;
  top: -0.6em;
  margin-left: 5.9vw;
}

.tyk_page_section_title_sub {
  position: relative;
  padding-left: 4.4vw;
  margin-left: 5.9vw;
}

.tyk_page_section_title_sub:before {
  content: "";
  position: absolute;
  width: 2.6vw;
  height: 2px;
  background-color: var(--wp--preset--color--blue);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/**************************************
固定ページ Company
 ****************************************/
.tyk_company_img {
  width: 57.3vw;
  margin: var(--wp--preset--spacing--space-64) auto;
}

.tyk_overview_wrapper,
.tyk_history_wrapper {
  width: 80%;
  margin: 0 auto;
  font-weight: 700;
}

.tyk_history_wrapper {
  font-weight: inherit;
}

/* history */
.tyk_history_title {
  position: inherit;
}

/* license */
.tyk_license,
.tyk_patent,
.tyk_access {
  position: relative;
  margin-left: 8.2vw;
  padding-top: 2.5vw;
}

.tyk_access {
  margin-left: 0;
  padding-left: 8.2vw;
}

.tyk_license_wrapper,
.tyk_patent_wrapper,
.tyk_access_wrapper {
  padding-left: 8.4vw;
}

/* access */
.tyk_access_map {
  text-align: center;
  margin-top: 0;
}

.tyk_access_map iframe {
  width: 60vw;
}

/**************************************
固定ページ Service
 ****************************************/
.tyk_business {
  position: relative;
}

.tyk_business_wrapper {
  width: 80%;
  margin: 0 auto;
}

/* flow */
.tyk_flow .tyk_page_section_title {
  position: inherit;
}

.tyk_flow_img {
  text-align: center;
}

.tyk_flow_img img {
  width: 9vw;
  max-width: 180px;
}

.tyk_flow_arrow img {
  width: 3vw;
  min-width: 24px;
}

/**************************************
固定ページ Product
 ****************************************/
.tyk_title_circle img {
  width: 1.6vw;
  max-width: 30px;
  min-width: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tyk_product_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 27vw;
  max-width: 430px;
  padding: 1em;
  background-color: var(--wp--preset--color--blue);
  color: var(--wp--preset--color--white);
  font-weight: 700;
  box-shadow: 3px 3px 6px rgb(0, 0, 0);
  transition: all 0.3s;
}

.tyk_product_btn:hover {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--blue);
}

.tyk_product_btn img {
  width: 1.6vw;
  max-width: 30px;
  min-width: 20px;
  transition: all 0.3s;
}

.tyk_product_btn:hover img {
  transform: translateX(0.5em);
}

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

.tyk_product_btn_wrapper p {
  margin-top: 0;
}

.tyk_product_arrow_wrapper {
  position: inherit;
  align-items: center;
  justify-content: flex-end;
}

.tyk_product_item_wrapper {
  width: 58.9vw;
  margin: 0 auto;
}

.tyk_product_item,
.tyk_case_item {
  position: relative;
}

.tyk_product_item_title,
.tyk_case_item_title {
  position: absolute;
  top: -3em;
  left: 17vw;
}

.tyk_product_img03 > img,
.tyk_case_img04 > img {
  width: 28vw;
}

/**************************************
固定ページ Product1～3
 ****************************************/
.tyk_product-page_btn_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--wp--preset--spacing--space-32);
}

.tyk_product-page_btn_wrapper p {
  margin-top: 0;
}

.tyk_product-page_title {
  position: relative;
}

.tyk_product-page_title::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: var(--wp--preset--color--blue);
  height: 4px;
  border-radius: 2px;
  width: 200px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tyk_product-page_container {
  width: 69vw;
  margin: 0 auto;
}

.tyk_product-page_img img {
  width: 52vw;
}

.tyk_product-page_img-lg img {
  max-height: 32vw;
  object-fit: contain;
}

.tyk_product-page_btn_wrapper .tyk_product_btn {
  width: 31vw;
  max-width: 396px;
  padding: 1em;
}

/**************************************
固定ページ Case
 ****************************************/
.tyk_case_item_tag {
  display: inline-block;
}

/**************************************
固定ページ News
 ****************************************/
.page-numbers {
  display: inline-block;
  padding: 0.5em;
  background-color: var(--wp--preset--color--blue);
  color: var(--wp--preset--color--white);
  font-weight: 700;
  border: 1px solid var(--wp--preset--color--blue);
}

.page-numbers.current {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--blue);
}

/**************************************
個別投稿ページ News
 ****************************************/
.tyk_news-page_inner {
  width: 75%;
  margin: 0 auto;
}

.tyk_news-page_img {
  width: 68vw;
  max-height: 480px;
}

.tyk_news-page_img img {
  object-fit: contain !important;
  object-position: center;
}

/**************************************
お問い合わせ Contact
 ****************************************/
.tyk_contact_container {
  width: 56%;
  margin: 0 auto;
}

.tyk_contact_label_wrapper {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--space-24);
}

.tyk_contact_label_wrapper p {
  margin: 0;
}

.tyk_contact_label p {
  font-weight: 700;
  color: var(--wp--preset--color--blue);
}

.tyk_contact_tag {
  font-size: 14px;
  background-color: var(--wp--preset--color--red);
  color: var(--wp--preset--color--white);
  display: inline-block;
  padding: 6px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.tyk_contact_container input,
.tyk_contact_container textarea {
  border-radius: 10px;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: var(--wp--preset--font-size--fsz-20);
}

::placeholder {
  color: #b1b1b1;
}

.tyk_contact_container input:placeholder-shown,
.tyk_contact_container textarea:placeholder-shown {
  background-color: #eaeaea;
  border-color: transparent;
  width: 100%;
  padding: 1rem;
}

.tyk_contact_container input:not(:placeholder-shown),
.tyk_contact_container textarea:not(:placeholder-shown) {
  background-color: var(--wp--preset--color--white);
  color: #333;
}

/* Chromeで入力後の背景色を同じにするため */
input:-webkit-autofill {
  background-color: var(--wp--preset--color--white) !important;
  color: #333 !important;
  -webkit-box-shadow: 0 0 0px 1000px var(--wp--preset--color--white) inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

.tyk_contact_privacy {
  display: flex;
  justify-content: center;
  gap: var(--wp--preset--spacing--space-24);
}

.tyk_contact_privacy a {
  font-weight: 700;
  text-decoration: underline !important;
}

.tyk_contact_btn_wrapper {
  text-align: center;
}

.tyk_contact_btn {
  display: inline-block;
}

.tyk_contact_container input[type="submit"] {
  display: inline-block;
  font-size: var(--wp--preset--font-size--fsz-24);
  font-weight: 700;
  color: var(--wp--preset--color--white);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  background: var(--wp--preset--color--blue);
  border: transparent;
}

/* Contact Form 7 チェックボックスのサイズ拡大 */
.wpcf7 input[type="checkbox"] {
  width: 24px;
  height: 24px;
  transform: scale(1.5);
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
}

/********************************************
固定ページ Privacy-policy
*********************************************/
.tyk_privacy_inner {
  width: 78vw;
  margin: 0 auto;
}

/********************************************
レスポンシブ
*********************************************/
@media screen and (max-width: 781.5px) {
  /* 共通項目 */
  a[href^="tel:"] {
    pointer-events: default;
    cursor: pointer;
  }

  .tyk_header-height{
  margin-top: 147px;
}

  .tyk_sp_only {
    display: block !important;
  }

  .tyk_pc_only {
    display: none !important;
  }

  /* ハンバーガーアイコンデフォルト */
  .wp-block-navigation__responsive-container-open,
  .wp-block-navigation__responsive-container-close {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 30px; /* サイズを保って縮まないように */
    position: absolute;
    top: -39px;
    right: 4%;
  }

  /* デフォルトを非表示 */
  .wp-block-navigation__responsive-container-open > svg,
  .wp-block-navigation__responsive-container-close > svg {
    display: none;
  }

  /* ハンバーガーアイコンを追加 */
  .js_hamburger_icon {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 30px;
    height: 16px;
  }

  .js_hamburger_icon span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--wp--preset--color--blue);
    transition: all 0.3s ease;
  }

  /*ハンバーガーメニューの下のラベル*/
  .menu-label {
    width: auto;
    font-size: clamp(0.563rem, -0.259rem + 4.11vw, 0.75rem) !important;
    display: block;
    text-align: center;
    color: var(--wp--preset--color--blue);
    white-space: nowrap;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.01rem;
    position: relative;
    top: 22px;
  }

  /* 閉じるボタンとナビゲーションのスペース */
  .wp-block-navigation__responsive-container.is-menu-open
    .wp-block-navigation__responsive-container-content {
    padding-top: 20px !important;
  }

  /* アコーディオンのトグルボタンを表示させるため */
  .js_nav_item_inner {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
  }

  /*ナビゲーションメニューの幅*/
  /* ヘッダーと同じにする */
  .wp-block-navigation__responsive-close {
    padding-top: 60px;
    padding-right: 4%;
    padding-left: 4%;
  }

  .wp-block-navigation__container.is-responsive {
    gap: 0;
    width: 100%;
  }

  /* リンク幅を100%にする */
  .wp-block-navigation__container.is-responsive > li {
    width: 100%;
  }

  .wp-block-navigation-item li {
    width: 100%;
  }

  .wp-block-navigation-item a {
    display: block;
    width: 100%;
    padding: 1em 0 !important;
    text-decoration: none;
    color: inherit;
  }

  /* サブメニュー */
  .wp-block-navigation-submenu.is-open.wp-block-navigation__submenu-container,
  .wp-block-navigation__submenu-container.wp-block-navigation-submenu {
    width: 100% !important;
    padding-top: 0;
  }

  /* メニュー一覧 */
  /* 閉じるボタンの位置 */
  .wp-block-navigation__responsive-container-close {
    margin-top: 0;
  }

  /* 閉じるボタンの表示 */
  .wp-block-navigation__responsive-container-close span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--wp--preset--color--white);
  }

  .wp-block-navigation__responsive-container-close span:nth-child(2) {
    opacity: 0;
  }

  .wp-block-navigation__responsive-container-close span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--wp--preset--color--white);
  }

  .wp-block-navigation__responsive-container-close .menu-label {
    color: var(--wp--preset--color--white);
  }

  /* アコーディオンのトグルボタン */
  .js_submenu_toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    height: auto;
    vertical-align: middle;
  }

  .js_arrow_icon {
    width: 1.5em;
    height: 1em;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .wp-block-navigation__responsive-container-open {
    display: inline-flex !important;
  }
  .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none !important;
  }
  .tyk_header_wrapper {
    height: 58px;
    padding-left: 4%;
    padding-right: 4%;
  }

  .tyk_header_logo {
    width: 54%;
    max-width: 240px;
    min-width: 180px;
  }
  .tyk_header_tel {
    width: 8vw;
    max-width: 48px;
    margin-right: 50px !important;
  }

  .tyk_header_sp_icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 89px;
  }

  .tyk_header_sp_icon figure {
    width: 25%;
    height: 100%;
  }

  .tyk_header_sp_icon a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tyk_header_sp_icon img {
    width: 60px;
  }

  /* ファーストビュー fv*/
  .tyk_fv {
    background-image: url(../images/top_sp_main_back.webp);
    height: 135vw;
    margin-top: 147px;
  }

  .tyk_fv_wrapper {
    padding-top: 7vw;
    padding-left: 4vw;
  }

  .tyk_fv_container {
    top: 26vw;
    width: 98vw;
    height: 72vw;
    max-height: 475px;
  }

  /* スクロールアイコン */
  .tyk_scroll_container {
    top: 103vw;
  }

  .tyk_scroll_arrow {
    margin-top: 26px;
  }

  .tyk_scroll::before {
    height: 30px;
  }

  .tyk_scroll::after {
    height: 30px;
  }

  /* 個別ページタイトル */
  .tyk_title_line_wrapper {
    margin-left: 0;
    padding: 6vw;
  }

  .tyk_title_line::before {
    width: 5vw;
    left: -6vw;
    top: 50%;
  }

  /* トップページ feature */
  .tyk_feature_title {
    padding-left: 6vw;
  }

  .tyk_feature_container {
    flex-direction: column;
    gap: 7.7vw;
  }

  .tyk_feature_img {
    width: 88%;
    margin: 0 auto;
  }

  .tyk_feature_text {
    width: 88%;
    padding-right: 0;
    margin: 0 auto;
  }

  .tyk_feature_container-reverse {
    flex-direction: column-reverse;
  }

  .tyk_feature_container-reverse .tyk_feature_text {
    padding-left: 0;
  }

  /* トップページ 背景カラーのコンテンツ */
  .tyk_top_color_wrapper {
    flex-direction: column;
  }

  .tyk_top_color_content {
    width: 100vw;
    padding: 6vw !important;
    margin-top: 0 !important;
    padding-left: 0;
  }

  .tyk_top_color_img {
    width: 100vw;
    position: inherit;
  }

  .tyk_top_color_btn_wrapper {
    position: inherit;
    margin-top: 1vw;
  }
  /* トップページ Service */
  .tyk_top_service {
    margin-top: 0;
  }
  /* トップページ Product */
  .tyk_top_product.tyk_top_color_wrapper {
    flex-direction: column-reverse;
  }
  /* トップページ Company */
  .tyk_top_company {
    margin-top: var(--wp--preset--spacing--space-120);
  }

  .tyk_top_company_inner {
    padding: 6vw;
  }
  /* トップページ News */
  .tyk_news_item {
    flex-direction: column;
    gap: 1em;
  }

  .tyk_news_item_day,
  .tyk_news_item_title {
    width: 100%;
    align-items: flex-start;
  }
  /* トップページ Recruit */
  .tyk_top_recruit {
    background-image: url(../images/img-recruit-bg-sp.webp);
  }

  /* ページのトップへ移動するアイコン */
  .tyk_icon_top a {
    width: 20vw;
    max-width: 60px;
    bottom: 20vw;
  }

   /* 固定ページ　共通  */
  .tyk_page_heading{
    margin-top: 147px!important;
  }


  /* 固定ページ Service */
  .tyk_overview_wrapper,
  .tyk_history_wrapper {
    width: 98%;
  }

  .tyk_license,
  .tyk_patent {
    margin-left: 0;
    padding-right: 4vw;
  }

  .tyk_access {
    padding: 0 4vw;
  }

  .tyk_access_map iframe {
    width: 90vw;
    max-height: 360px;
  }

  /* 固定ページ Company */
  .tyk_business_wrapper {
    width: 98%;
  }

  .tyk_flow_img img {
    width: 20vw;
    min-width: 90px;
  }

  /* 個別ページ product */
  .tyk_product_btn {
    width: 80vw;
    max-width: 400px;
  }

  .tyk_product_btn img {
    width: 1em;
  }

  .tyk_product_btn_wrapper {
    flex-direction: column;
    gap: var(--wp--preset--spacing--space-16);
  }

  .tyk_product_item_wrapper {
    width: 90vw;
  }

  .tyk_product_item_title,
  .tyk_case_item_title {
    top: -1.5em;
    left: inherit;
  }

  .tyk_product_img03 > img,
  .tyk_case_img04 > img {
    width: 80vw;
  }

  /* 固定ページ Product1～3 */
  .tyk_product-page_container {
    width: 90vw;
  }

  .tyk_product-page_btn_wrapper {
    flex-direction: column;
    justify-content: center;
  }

  .tyk_product-page_btn_wrapper .tyk_product_btn {
    width: 90vw;
  }

  .tyk_product-page_img img {
    width: 90vw;
  }

  .tyk_product-page_img-lg img {
    max-height: 60vw;
  }

  /* 個別投稿ページ News */
  .tyk_news-page_inner {
    width: 90%;
    margin: 0 auto;
  }

  .tyk_news-page_img {
    width: 90vw;
    max-height: 300px;
    object-fit: contain;
    object-position: center;
  }

  /* お問い合わせ */
  .tyk_contact_container {
    width: 90vw;
  }

  /* フッター */
  .tyk_footer_wrapper {
    flex-direction: column;
    gap: 3vw;
  }

  .tyk_footer_nav_container a {
    padding: 0 !important;
  }
}

/* 782px以上でハンバーガーメニュー非表示*/
@media (min-width: 782px) {
  .wp-block-navigation__responsive-container {
    display: flex !important;
  }
  .wp-block-navigation__responsive-container-toggle {
    display: none !important;
  }
}
