/* リセット */

* {
  box-sizing: border-box;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre,
form, fieldset, input, textarea, p, blockquote, th, td, figure {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

table {
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-weight: normal;
  font-style: normal;
}

strong {
  font-weight: bold;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}


/* Noto Sans CJK JP -------------------------------------*/

@font-face {
  font-family: 'Noto Sans CJK JP';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/NotoSansCJKjp-Light.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Light.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans CJK JP';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/NotoSansCJKjp-Regular.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans CJK JP';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/NotoSansCJKjp-Medium.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans CJK JP';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/NotoSansCJKjp-Bold.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans CJK JP';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/NotoSansCJKjp-Black.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Black.woff') format('woff');
}

/* Noto Serif CJK JP -------------------------------------*/

@font-face {
  font-family: 'Noto Serif CJK JP';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/NotoSerifCJKjp-Light.woff2') format('woff2'),
    url('../fonts/NotoSerifCJKjp-Light.woff') format('woff');
}

@font-face {
  font-family: 'Noto Serif CJK JP';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/NotoSerifCJKjp-Regular.woff2') format('woff2'),
    url('../fonts/NotoSerifCJKjp-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Noto Serif CJK JP';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/NotoSerifCJKjp-Medium.woff2') format('woff2'),
    url('../fonts/NotoSerifCJKjp-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Noto Serif CJK JP';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/NotoSerifCJKjp-Bold.woff2') format('woff2'),
    url('../fonts/NotoSerifCJKjp-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Noto Serif CJK JP';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/NotoSerifCJKjp-Black.woff2') format('woff2'),
    url('../fonts/NotoSerifCJKjp-Black.woff') format('woff');
}

/*-------------------------------------------------
/* 基本
--------------------------------------------------*/

:root {
  --color-main: #1d2088;
  --color-light-main: #e5e5fc;
  --color-bright-main: #f0f0f8;
  --color-red: #e60012;
  --color-green: #009990;
  --color-light-gray: #ccc;

  --color-text: #1b1c1e;
  --color-nav-open: #F0F0F8;
  --color-footer-line: #D3D6DD;
  --color-dark-gray: #46484c;
  --color-bright-gray: #c5cad3;
  --color-neon-blue: #0001ff;
  --color-dark-blue: #1d2088;

  --color-visited: #585858;


  --gradient-main: linear-gradient(90deg, rgba(0, 1, 255, 1) 0%, rgba(29, 32, 136, 1) 100%);
  --gradient-main-reverse: linear-gradient(90deg, rgba(29, 32, 136, 1) 0%, rgba(0, 1, 255, 1) 100%);

  --gradient-text: linear-gradient(90deg, rgba(0, 1, 255, 1) 0%, rgba(29, 32, 136, 1) 50%, rgba(27, 28, 30, 1) 100%);

  --box-shadow: 10px 10px 20px 3px rgba(2, 8, 10, 0.1);
  --box-shadow-hover: 0 0 20px 10px rgba(2, 8, 10, 0.2);
  --font-main: YakuHanJP, 'Noto Sans CJK JP', 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-serif: YakuHanMP, 'Noto Serif JP', 'Hiragino Mincho ProN', 'BIZ UDMincho', serif;
  --font-en: "Roboto", sans-serif;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.6;
  background-color: white;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
}

@media screen and (max-width: 833px) {
  body {
    font-size: 16px;
  }
}

.foot-copy,
.en {
  font-family: var(--font-en);
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: none;
}

/* iPhoneTELリンク色変更なしにする */
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

.wrapper {
  position: relative;
}

html {
  scroll-behavior: smooth;
}

/* insta --------------------------------------*/
.insta {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/sns_insta.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 1/1;
  width: 30px;
  height: auto;
}

.insta.white {
  background: url('../img/common/sns_insta_white.svg') no-repeat;
  background-size: 100%;
}




/*****************************************
*
* ヘッダ
*
******************************************/

header {
  text-align: left;
  width: 100%;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

@media screen and (min-width: 768px), print {
  header {
    padding: 10px 40px;
  }
}

@media screen and (min-width: 834px), print {
  header {
    position: fixed;
    padding: 15px 40px;
    z-index: 10;
  }

  header::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .3s ease;
    opacity: 0;
  }

  header.is-animation::before {
    opacity: 1;
  }
}

/* ロゴ --------------------------------*/
header .logo {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/logo.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 454/50;
  width: 260px;
  height: auto;
}

@media screen and (min-width: 768px), print {
  header .logo {
    width: 400px;
  }
}

@media screen and (min-width: 834px), print {
  header .logo {
    width: 454px;
  }
}

/* ロゴ トランスシティ --------------------------------*/
header .logo-trancy {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/logo_trancy.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 280/26;
  width: 160px;
  height: auto;
  margin-top: 10px;
}

@media screen and (min-width: 768px), print {
  header .logo-trancy {
    width: 200px;
  }
}

@media screen and (min-width: 834px), print {
  header .logo-trancy {
    width: 280px;
    margin-top: 15px;
  }

  header.is-animation .logo-wrap .logo-trancy {
    position: absolute;
    top: 15px;
    left: 540px;
  }
}

/* 採用情報 ボタン --------------------------------*/
@media screen and (max-width: 833px) {
  header .global-btn {
    display: none;
  }
}

@media screen and (min-width: 834px), print {
  header .global-btn {
    position: absolute;
    top: 15px;
    right: 140px;
  }

  header .global-btn li.recruit a {
    position: relative;
    display: inline-block;
    border-style: solid;
    border-width: 2px;
    border-color: var(--color-neon-blue);
    background: var(--color-neon-blue);
    border-radius: 40px;
    height: 50px;
    text-align: left;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.4;
    padding: 13px 80px 13px 30px;
    transition: all .5s ease;
  }

  header .global-btn li.recruit a::before {
    content: '';
    display: inline-block;
    background: white;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    border-radius: 15px;
    width: 30px;
    height: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 10px;
    transition: all .5s ease;
  }

  header .global-btn li.recruit a::after {
    content: '';
    display: inline-block;
    background: url('../img/common/btn_arrow.svg') no-repeat;
    background-size: 100%;
    aspect-ratio: 1/1;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 19px;
    transition: transform 1s;
  }

  header .global-btn li.recruit a:hover {
    text-decoration: none;
  }

  header .global-btn li.recruit a:hover::before {
    background: transparent;
  }

  header .global-btn li.recruit a:hover::after {
    background: url('../img/common/btn_arrow_white.svg') no-repeat;
    background-size: 100%;
    transform: rotateY(360deg);
  }
}


/*!------------------------------------*\
    ナビ
\*!------------------------------------*/
.drawer-open {
  overflow: hidden !important;
}

.drawer-nav {
  position: fixed;
  z-index: 101;
  top: 0;
  overflow: hidden;
  width: 16.25rem;
  width: 100%;
  height: 100%;
  background: var(--color-nav-open);
  padding: 20px 20px 40px 20px;
}

@media screen and (min-width: 834px), print {
  .drawer-nav {
    text-align: center;
    padding: 20px 40px 40px 40px;
  }
}

/* drawer-menu ------------------------------*/
.drawer-menu {
  text-align: center;
  list-style: none;
}

@media screen and (min-width: 834px), print {
  .drawer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .drawer-menu .menu-brand {
    width: 100%;
    text-align: left;
  }

  .drawer-menu .menu-main {
    display: flex;
    text-align: center;
    margin-top: 40px;
  }

  .drawer-menu .menu-main .drawer-menu-box+.drawer-menu-box {
    margin-left: 100px;
  }

  .drawer-menu .menu-others {
    width: 100%;
    margin-top: 100px;
  }
}

/* drawer-menu li ------------------------------*/
.drawer-menu li a {
  display: block;
  color: var(--color-text);
  font-weight: 500;
}

.drawer-menu li a:hover,
.drawer-menu li a:active {
  text-decoration: none;
  border: 0;
}

@media screen and (min-width: 834px), print {
  .drawer-menu li {
    text-align: left;
  }

  .drawer-menu li a {
    position: relative;
    display: inline-block;
  }

  .drawer-menu li a::after {
    content: '';
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transform: scale(0, 1);
    transform-origin: left top;
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: transform .3s;
  }

  .drawer-menu li a:hover {
    text-decoration: none;
  }

  .drawer-menu li a:hover::after {
    transform: scale(1, 1);
  }
}

/* menu-main ------------------------------*/

@media screen and (max-width: 833px) {
  .drawer-menu .menu-main {
    text-align: left;
    max-width: 400px;
    border-top: solid 1px var(--color-dark-gray);
    margin: 0 auto;
    margin-top: 30px;
  }

  .drawer-menu .menu-main li.drawer-menu-single {
    width: 100%;
  }

  .drawer-menu .menu-main li.drawer-menu-single a {
    display: flex;
    align-items: center;
    border-style: solid;
    border-width: 0 1px 1px 1px;
    border-color: var(--color-dark-gray);
    width: 100%;
    height: 50px;
    font-size: 1rem;
    font-weight: bold;
    padding: 0 10px;
  }

  .drawer-menu .menu-main li.drawer-menu-single.dropdown a {
    width: calc(100% - 50px);
  }

  .drawer-dropdown-menu {
    display: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .drawer-menu .menu-main .drawer-dropdown-menu li a {
    display: flex;
    align-items: center;
    border-style: solid;
    border-width: 0 1px;
    border-color: var(--color-dark-gray);
    width: 100%;
    height: 30px;
    color: var(--color-dark-gray);
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .drawer-menu .menu-main .drawer-dropdown-menu li+li {
    border-top: dotted 1px var(--color-bright-gray);
  }

  .drawer-dropdown.open .drawer-dropdown-menu {
    border-bottom: solid 1px var(--color-dark-gray);
  }

  .drawer-dropdown-menu>li {
    width: 100%;
    list-style: none;
  }

  .drawer-dropdown-menu-item {}

  .drawer-dropdown-menu-item:hover {}

  /*! open */
  .drawer-dropdown.open>.drawer-dropdown-menu {
    display: block;
  }

  .drawer-dropdown {
    position: relative;
  }

  /*! drawer-caret */
  .drawer-dropdown-button {
    display: none;
    position: relative;
    display: inline-block;
    background: var(--color-dark-gray);
    width: 50px;
    height: 50px;
    position: absolute;
    top: -50px;
    right: 0;
  }

  .drawer-dropdown-button.underline {
    border-bottom: solid 1px var(--color-nav-open);
  }

  .drawer-open .drawer-menu .drawer-dropdown-button {
    display: inline-block;
  }

  a.drawer-dropdown-button::before,
  a.drawer-dropdown-button::after {
    content: '';
    display: block;
    background: var(--color-bright-gray);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  /*横線*/
  a.drawer-dropdown-button::before {
    width: 20px;
    height: 2px;
    right: 15px;
  }

  /*縦線*/
  a.drawer-dropdown-button::after {
    width: 2px;
    height: 20px;
    right: 23px;
  }

  /*! open */
  .drawer-dropdown.open a.drawer-dropdown-button::after {
    content: none;
  }
}

@media screen and (min-width: 834px), print {
  .drawer-menu .menu-main .drawer-dropdown-button {
    display: none;
  }

  .drawer-menu .menu-main li.drawer-menu-single {
    margin-top: 40px;
  }

  .drawer-menu .menu-main li.drawer-menu-single a {
    font-size: 1.1rem;
    font-weight: bold;
  }

  .drawer-menu .menu-main .drawer-dropdown-menu li {
    margin-top: 10px;
  }

  .drawer-menu .menu-main .drawer-dropdown-menu li a {
    color: var(--color-dark-gray);
    font-size: 0.9rem;
  }

  .drawer-menu .menu-main .drawer-dropdown-menu li a::after {
    background: var(--color-dark-gray);
  }
}

/* HOME ------------------------------*/
li.drawer-brand a,
li.drawer-trancy a {
  font-size: 0;
  padding: 0;
}

/* menu-others ------------------------------*/

@media screen and (max-width: 833px) {
  .drawer-menu .menu-others {
    margin-top: 30px;
  }

  .drawer-menu .menu-others-cont {
    font-size: 0.9rem;
  }

  .drawer-menu .menu-others-cont li+li {
    margin-top: 10px;
  }
}

@media screen and (min-width: 834px), print {
  .drawer-menu .menu-others .drawer-menu-box {
    display: flex;
    justify-content: space-between;
  }

  .drawer-menu .menu-others .drawer-menu-box-box {
    display: flex;
  }

  .drawer-menu .menu-others .drawer-menu-box-box li+li {
    margin-left: 2em;
  }

  .drawer-menu .menu-others .drawer-menu-box-box li a {
    color: var(--color-dark-gray);
    font-size: 0.8rem;
  }
}

/* insta ------------------------------*/
@media screen and (max-width: 833px) {
  .drawer-insta {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .drawer-insta a {
    margin: 0 auto;
  }
}

/* search ------------------------------*/
.search_container {
  position: relative;
  background: white;
  border: 1px solid var(--color-text);
  padding: 3px 10px;
  border-radius: 20px;
  height: 40px;
  width: 260px;
  overflow: hidden;
}

.search_container input[type="text"] {
  border: none;
}

.search_container input[type="text"]:focus {
  outline: 0;
}

.search_container .search-submit {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  display: inline-block;
  background: url('../img/common/search.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 1/1;
  width: 18px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.search_container ::placeholder {
  color: var(--color-bright-gray);
  font-size: 0.9rem;
}

@media screen and (max-width: 833px) {
  .search_container {
    margin: 0 auto;
  }
}


/* ------------------------------*/
/*! overlay */
/*
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}

.drawer-open .drawer-overlay {
  display: block;
}
*/

/*!------------------------------------*\
    Top
\*!------------------------------------*/

.drawer--top .drawer-nav {
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  -webkit-transition: top .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: top .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
}

.drawer--top .drawer-hamburger,
.drawer--top.drawer-open .drawer-hamburger {
  right: 0;
}

/*!------------------------------------*\
    Left
\*!------------------------------------*/

.drawer--left .drawer-nav {
  left: -16.25rem;
  -webkit-transition: left .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: left .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
}

.drawer--left.drawer-open .drawer-hamburger {
  left: 16.25rem;
}

/*!------------------------------------*\
    Right
\*!------------------------------------*/

.drawer--right .drawer-nav {
  right: -16.25rem;
  right: -100%;
  -webkit-transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 16.25rem;
  /* 右端固定 */
  right: 0;
}

/*!------------------------------------*\
    iPhoneでメニューをスクロールするとメニューが閉じてしまうバグ対策
\*!------------------------------------*/

.drawer--top.drawer-open .drawer-nav {
  top: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/

.drawer-hamburger {
  display: block;
  background-color: transparent;
  width: 40px;
  height: 40px;
  box-sizing: content-box;
  padding: 0;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  position: fixed;
  top: 10px;
  right: 10px;
  padding-right: 10px;
  z-index: 104;
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 40px;
  height: 3px;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  background-color: var(--color-text);
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  content: ' ';
  position: absolute;
  left: 0;
}

.drawer-hamburger-icon:before {
  top: 15px;
}

.drawer-hamburger-icon:after {
  top: 30px;
}

@media screen and (min-width: 768px), print {
  .drawer--right .drawer-hamburger {
    top: 20px;
    right: 20px;
    padding-right: 0;
  }
}

@media screen and (min-width: 834px), print {
  .drawer--right .drawer-hamburger {
    width: 50px;
    height: 40px;
    top: 20px;
    right: 40px;
  }

  .drawer--right.drawer-close .drawer-hamburger:hover {
    filter: var(--drop-shadow-hover);
  }

  .drawer-hamburger-icon,
  .drawer-hamburger-icon:before,
  .drawer-hamburger-icon:after {
    width: 50px;
    height: 3px;
  }

  .drawer-hamburger-icon:before,
  .drawer-hamburger-icon:after {
    top: 18px;
  }

  .drawer-hamburger-icon:after {
    top: 37px;
  }
}

.drawer-open .drawer-hamburger {
  width: 50px;
  height: 40px;
  /*開いた時のアイコンの背景*/
  background: transparent;
  padding-right: 0;
}

.drawer-open .drawer-hamburger-icon {
  background-color: var(--color-nav-open);
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 14px;
  /*開いた時の×の色*/
  background-color: var(--color-text);
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.drawer-open .drawer-hamburger-text {
  display: none;
}

@media screen and (min-width: 768px), print {
  .drawer-open .drawer-hamburger {
    padding-right: 5px;
  }

  .drawer-open .drawer-hamburger-icon:before,
  .drawer-open .drawer-hamburger-icon:after {
    top: 17px;
  }
}

@media screen and (min-width: 834px), print {
  .drawer-open .drawer-hamburger {
    width: 50px;
    height: 40px;
    padding-right: 40px;
  }
}


/*!------------------------------------*\
    accessibility
\*!------------------------------------*/

/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */

.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*\
    Container
\*!------------------------------------*/

.drawer-container {
  margin-right: auto;
  margin-left: auto;
}



/*****************************************
*
* フッタ
*
******************************************/

footer {
  position: relative;
  width: 100%;
  background: var(--color-nav-open);
  border-radius: 40px 40px 0 0;
  padding-top: 30px;
  margin-top: 80px;
}

footer .footer-box-wrap {
  padding: 30px 20px;
}

@media screen and (min-width: 768px), print {
  footer {
    border-radius: 60px 60px 0 0;
    padding-top: 40px;
    margin-top: 100px;
  }

  footer .footer-box-wrap {
    padding: 20px 40px;
  }
}

@media screen and (min-width: 834px), print {
  footer {
    border-radius: 100px 100px 0 0;
    padding-top: 60px;
    margin-top: 160px;
  }

  footer .footer-box-wrap {
    display: inline-block;
    padding: 40px 60px;
  }

  footer .footer-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 80px;
  }
}

/*------------------------------------------*/
/* ロゴ住所エリア
/*------------------------------------------*/


footer .footer-prof {
  display: inline-block;
  border-bottom: solid 1px var(--color-footer-line);
  padding-bottom: 2em;
  margin-bottom: 1em;
}

@media screen and (min-width: 834px), print {
  footer .footer-cont {
    text-align: left;
  }
}

/* ロゴ --------------------------------*/
footer .logo {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/logo_min.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 25/5;
  width: 250px;
  height: auto;
}

@media screen and (min-width: 768px), print {
  footer .logo {
    width: 250px;
  }
}

@media screen and (min-width: 834px), print {
  footer .logo {
    width: 250px;
  }
}

/* ロゴ トランスシティ --------------------------------*/
footer .logo-wrap .logo-trancy {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/logo_trancy_min.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 120/38;
  width: 120px;
  height: auto;
  margin-top: 10px;
}

@media screen and (min-width: 768px), print {
  footer .logo-wrap .logo-trancy {
    width: 120px;
  }
}

@media screen and (min-width: 834px), print {
  footer .logo-wrap .logo-trancy {
    width: 120px;
    margin-top: 15px;
  }
}

/* 住所 --------------------------------*/
footer .footer-adr {
  color: var(--color-text);
  font-size: 0.9rem;
  margin-top: 1em;
}

/*------------------------------------------*/
/* ナビ
/*------------------------------------------*/

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

@media screen and (min-width: 834px), print {
  footer .footer-nav {
    text-align: left;
    border-left: solid 1px var(--color-footer-line);
    padding-left: 80px;
  }

  footer .footer-nav li+li {
    margin-top: 20px;
  }

  footer .footer-nav li a {
    color: var(--color-text);
    font-size: 1rem;
    font-weight: bold;
  }

  footer .footer-nav li a:hover {
    text-decoration: none;
  }
}

/* ナビ --------------------------------*/

@media screen and (max-width: 833px) {
  footer .footer-subnav .single {
    display: none;
  }

  footer .footer-subnav {
    margin-top: 30px;
  }
}

@media screen and (min-width: 834px), print {
  footer .footer-subnav {
    text-align: left;
    border-left: solid 1px var(--color-footer-line);
    padding-left: 80px;
  }

  footer .footer-subnav li+li {
    margin-top: 0.5em;
  }

  footer .footer-subnav li a {
    color: var(--color-text);
    font-size: 0.8rem;
  }

  footer .footer-subnav li a:hover {
    text-decoration: none;
  }
}

/*------------------------------------------*/
/* 下部
/*------------------------------------------*/

footer .footer-bottom {
  background: white;
  padding: 20px;
}

@media screen and (min-width: 768px), print {
  footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
  }
}

@media screen and (min-width: 834px), print {
  footer .footer-bottom {
    padding: 20px 60px;
  }
}

/* コピーライト --------------------------------*/
footer .footer-copy {
  font-size: 0.7rem;
  font-weight: bold;
  margin-top: 20px;
}

@media screen and (min-width: 834px), print {
  footer .footer-copy {
    margin-top: 0;
  }
}



/*****************************************
*
* 印刷用
*
******************************************/

@media print {
  body {
    width: 1200px;
    transform: scale(0.8);
    transform-origin: 0 0;
    -webkit-print-color-adjust: exact;
  }

  /* FireFoxテーブル印刷バグ回避 */
  _:-ms-lang(x)::-ms-backdrop, .wrapper {
    overflow: auto;
    display: table;
  }
}