@charset "UTF-8";

.test-contents {
  height: 600px;
  background-color: #f0f0f0;
  text-align: center;
  padding: 100px 0;
}

/* ==========================================================
  fonts
========================================================== */

:root {
  --font-base: aktiv-grotesk-condensed, "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  --font-base--en: aktiv-grotesk-condensed, "Helvetica Neue", sans-serif;
  --color-text: #000;
  --color-gray-dark: #666;
  --color-gray-mid: #ccc;
  --color-gray-light: #e0e0e0;
  --color-blue: #0099ff;
  --color-bg-lang-pc: #f8f8f8;
  --color-border-no-nav: #dadee0;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* ==========================================================
  header
========================================================== */

#Tsubakimoto-hd {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
}

@media all and (max-width: 780px) {
  #Tsubakimoto-hd {
    position: relative;
    top: auto;
    left: auto;
    right: auto;

    padding-bottom: 10px;
    border-bottom: 4px solid #014ea2;

    z-index: 10010;
  }
}

.c-header {
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
}

/*
@media all and (max-width: 768px) {
  .c-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }
}
*/

/* header: 上部バー（ロゴ・サイト名・ユーティリティ） */
.c-header-upper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  /* height: 90px; */
  height: 70px;
  padding: 0 50px 8px;
  background-color: #fff;
}

@media all and (max-width: 1440px) {
  .c-header-upper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media all and (max-width: 1160px) {
  .c-header-upper {
    height: 51px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.c-header-logo-wrap {
  display: flex;
  align-items: center;
}

.c-header-logo > img {
  display: block;
  width: 150px;
  height: 31px;
}

@media all and (max-width: 1160px) {
  .c-header-logo > img {
    width: 110px;
    height: 23px;
  }
}

.c-header-site {
  position: relative;
  margin: 0;
  margin-left: 36px;
  padding-top: 3px;
  padding-left: 35px;
  font-weight: 600 !important;
  font-size: 22px;
  color: var(--color-gray-dark);
  line-height: 1.4;
}

.c-header-site::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 1px;
  height: 30px;
  background-color: var(--color-gray-mid);
}

@media all and (max-width: 1160px) {
  .c-header-site {
    margin-left: 17px;
    padding-left: 15px;
    font-size: 18px;
  }
  .c-header-site::before {
    top: 4px;
    height: 23px;
  }
}

@media all and (max-width: 320px) {
  .c-header-site {
    margin-left: 11px;
    padding-left: 9px;
  }
}

/* header: ユーティリティナビ（言語切替・リンクなど） */
.c-header-util {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 5px 0 0;
  list-style: none;
}

@media all and (max-width: 768px) {
  .c-header-util {
    margin-top: 0;
    padding-top: 3px;
  }
}

.c-header-util > li {
  position: relative;
  margin-left: 24px;
}

.c-header-util > li:first-child {
  margin-left: 0;
  margin-top: 0;
}

@media all and (max-width: 1160px) {
  .c-header-util > li {
    margin-left: 0;
    line-height: 1.2;
  }
  .c-header-util > li.item-lang {
    position: static;
  }
  .c-header-util > li:last-child {
    margin-left: 10px;
  }
}

.c-header-util a {
  font-weight: bold;
  color: var(--color-gray-dark);
  text-decoration: none;
}

@media all and (min-width: 1161px) {
  .c-header-util a:hover {
    text-decoration: underline;
  }
}

.c-header-util .link-text {
  font-size: 16px;
  line-height: 1;
}

@media all and (max-width: 1160px) {
  .c-header-util .link-text {
    font-size: 13px;
  }
}

.c-header-util .link-lang {
  position: relative;
  padding-left: 30px;
  padding-right: 18px;
  font-size: 13px;
}

.c-header-util .link-lang::before {
  content: "";
  position: absolute;
  top: 49%;
  left: 0;
  width: 22px;
  height: 20px;
  background: url(../../img/tsubakimoto/header/ico_lang_gray.svg) no-repeat;
  background-size: 22px 20px;
  transform: translateY(-50%);
}

.c-header-util .link-lang::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 9px;
  height: 5px;
  background: url(../../img/tsubakimoto/header/ico_arrow_gray_down_01.svg) no-repeat;
  background-size: 9px 5px;
  transform: translateY(-50%);
  transition: transform 0.2s;
}

.c-header-util .link-lang.is-open::after {
  transform: translateY(-50%) rotate(-180deg);
}

.c-header-util .link-site {
  position: relative;
  padding-left: 35px;
  font-size: 18px;
}

.c-header-util .link-site::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 23px;
  height: 23px;
  background: url(../../img/tsubakimoto/header/ico_global.svg) no-repeat;
  background-size: 23px;
  transform: translateY(-50%);
}

@media all and (max-width: 1160px) {
  .c-header-util .link-site {
    overflow: hidden;
    display: block;
    width: 24px;
    height: 24px;
    padding: 0;
    background: url(../../img/tsubakimoto/header/ico_global.svg) center no-repeat;
    background-size: 24px;
    font-size: 0;
    text-indent: -999px;
  }
  .c-header-util .link-site::before {
    display: none;
  }
}

/* header: 言語切替ドロップダウン */
.c-header-util .box-header-lang {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 11;
  display: none;
  width: 88px;
  background-color: var(--color-bg-lang-pc);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.box-header-lang.is-show {
  display: block;
}

@media all and (max-width: 1160px) {
  .c-header-util .box-header-lang {
    top: 52px;
    left: 0;
    z-index: 10;
    width: 100%;
    background-color: var(--color-blue);
    box-shadow: none;
  }
}

.list-lang {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media all and (max-width: 1160px) {
  .c-header-util .box-header-lang .list-lang {
    padding: 0 10px;
  }
}

.c-header-util .box-header-lang .list-lang > li {
  border-bottom: 1px solid var(--color-gray-mid);
}

.c-header-util .box-header-lang .list-lang > li:last-child {
  border-bottom: none;
}

@media all and (max-width: 1160px) {
  .c-header-util .box-header-lang .list-lang > li {
    border-color: #fff;
  }
}

.c-header-util .box-header-lang .list-lang a {
  display: block;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
}

@media all and (min-width: 1161px) {
  .c-header-util .box-header-lang .list-lang a:hover {
    color: #fff;
    background-color: var(--color-blue);
  }
}

@media all and (max-width: 1160px) {
  .c-header-util .box-header-lang .list-lang a {
    color: #fff;
    font-size: 15px;
  }
}

/* header: no-nav バリエーション（検索バー・PC限定） */
@media screen and (min-width: 1161px) {
  .c-header.no-nav {
    height: 94px;
    border-bottom: solid 4px var(--color-border-no-nav);
  }
  .c-header.no-nav .c-header-util {
    position: absolute;
    top: 25px;
    right: 20px;
  }
  .c-header.no-nav .c-header-util > li {
    position: static;
  }
}

.c-header.no-nav .item-lang {
  margin-left: 30px;
}

/* ==========================================================
  footer
========================================================== */
#Tsubakimoto-ft {
  p {
    margin: 0;
    padding: 0;
  }
}

.c-footer {
  position: relative;
  box-sizing: border-box;
  border-top: 1px solid var(--color-gray-light);
  background-color: #fff;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
}

/* footer: no-nav バリエーション */
.c-footer.no-nav {
  border-top: 1px solid var(--color-gray-light);
}

@media screen and (max-width: 768px) {
  .c-footer.no-nav {
    border-top: 1px solid var(--color-gray-light);
  }
  .c-footer.no-nav .footerBtm {
    margin-top: 88px;
  }
}

.c-footer-in {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 50px 55px;
}

@media all and (max-width: 1440px) {
  .c-footer-in {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media all and (max-width: 1160px) {
  .c-footer-in {
    display: block;
    padding: 35px 15px 60px;
  }
}

.c-footer-col:first-child {
  display: flex;
}

@media all and (max-width: 1160px) {
  .c-footer-col:first-child {
    display: block;
    margin-bottom: 25px;
    text-align: center;
  }
}

.c-footer-col:last-child {
  text-align: right;
}

@media all and (max-width: 1160px) {
  .c-footer-col:last-child {
    text-align: left;
  }
}

@media all and (max-width: 1160px) {
  .c-footer-logo {
    display: inline-block;
    margin-bottom: 25px;
  }
}

.c-footer-logo > img {
  display: block;
  width: 112px;
}

.c-footer-copyright {
  padding-bottom: 2px;
  font-size: 12px;
  font-weight: bold;
  color: var(--color-gray-dark);
  text-align: right;
  line-height: 1.5;
}

@media all and (max-width: 1160px) {
  .c-footer-copyright {
    font-weight: normal;
    font-size: 10px;
    line-height: 1.7;
    text-align: left;
  }
  .c-footer-copyright .title {
    font-size: 11px;
    font-weight: bold;
  }
}

.c-footer-util {
  display: flex;
  margin-left: 60px;
  margin-top: 6px;
  line-height: 1.4;
}

@media all and (max-width: 1160px) {
  .c-footer-util {
    display: inline-block;
    margin: 0;
    font-size: 14px;
    text-align: left;
  }
}

.c-footer-util > li {
  position: relative;
  margin-left: 30px;
  padding-left: 16px;
}

.c-footer-util > li:first-child {
  margin-left: 0;
}

@media all and (max-width: 1160px) {
  .c-footer-util > li {
    margin-left: 0;
    margin-bottom: 11px;
  }
  .c-footer-util > li:last-child {
    margin-bottom: 0;
  }
}

.c-footer-util > li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 12px;
  background: url(../../img/tsubakimoto/header/ico_arrow_blue_right_03.svg) no-repeat;
  background-size: 8px 12px;
}

@media all and (max-width: 1160px) {
  .c-footer-util > li::before {
    top: 4px;
  }
}

.c-footer-util > li a {
  font-size: 13px;
  font-weight: bold;
  color: var(--color-gray-dark);
  letter-spacing: -1px;
}

@media all and (max-width: 1160px) {
  .c-footer-util > li a {
    letter-spacing: normal;
  }
}

.c-footer-sns {
  display: inline-flex;
  list-style: none;
  margin: 0 0 15px;
  padding: 0;
}

@media all and (max-width: 1160px) {
  .c-footer-sns {
    /* display: none; */
    margin-bottom: 5px;
  }
}

.c-footer-sns > li {
  margin-left: 4px;
}

.c-footer-sns > li:first-child {
  margin-left: 0;
}

.c-footer-sns a {
  display: block;
  width: 24px;
}

/* ==========================================================
  c-page-top
========================================================== */
.c-page-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 55px;
  height: 55px;
  z-index: -100;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s,
    visibility 0s ease 0.4s,
    z-index 0.4s;
}

.c-page-top.stop {
  position: absolute;
  top: -80px;
  bottom: auto;
}

.c-page-top.is-show {
  z-index: 100;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

@media all and (max-width: 768px) {
  .c-page-top {
    /* display: none; */
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }
}

.c-page-top a {
  display: block;
  opacity: 0.8;
}

.c-page-top a:hover {
  opacity: 1;
}

.c-page-top a > img {
  width: 100%;
}

/* ==========================================================
  utilities & helper
========================================================== */
.is-opacity {
  text-decoration: none;
}

@media all and (min-width: 769px) {
  .is-opacity {
    transform: translateZ(0);
    transition: opacity 0.3s;
  }
  .is-opacity:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

/* font style
---------------------------------------------------------- */
.ff-en {
  font-family: aktiv-grotesk-condensed, sans-serif !important;
  font-weight: 400;
  font-style: normal;
}
