:root {
  --main-color:#ff0025;
  --sub-color:#F18F01;
  --light-color:#ffccd4;
  --light-sub-color:#ffdfaf;
  --bkg-color:#fafafa;
  --line-color:#d1d1d1;
  --black:#333;
  --grey01:#727171;
  --grey02:#ececec;
  --white:#fff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  backdrop-filter: none;
}
body,p,ul,ol,h1,h2,h4 {
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  overflow-x: hidden;
  color: var(--black);
  background: var(--bkg-color);
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
}
/*重複するページタイトルが存在する場合*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
ul {
  list-style: none;
}
table { border-collapse: collapse; }
img { vertical-align: bottom; }
section {
  padding: 56px 0;
  margin: 56px 0;
}
section:first-child {
  padding: 56px 0 0;
}
a {
  color: var(--black);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
a:hover {
  color: var(--main-color);
}
a img {
  transition: all .2s ease;
}
a img:hover {
  opacity: .9;
}
.st1 { fill:#D0102C; }
.st0 { fill:#727171; }
.header-logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  color: inherit;
}
.header-logo-mark {
  flex-shrink: 0;
  line-height: 0;
}
.header-logo-name {
  display: block;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  white-space: normal;
}
.br-sp {
  display: none;
}
.cmn-capt-top01 {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 50px;
  line-height: 50px;
}
.cmn-capt-top01::before {
  content: '';
  height: 8px;
  width: 32px;
  min-width: 32px;
  background-color: var(--main-color);
  margin-right: 16px;
}
h1 {
  font-size: 32px;
}
/* h1がwrap-topに配置される場合 */
h1.cmn-capt-top01 {
  font-size: 32px;
}
.capt-news {
  position: relative;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  border-bottom: 1px solid var(--line-color);
}
.capt-news::before {
  content: "";
  position: absolute;
  width: 24%;
  bottom: -1px;
  height: 2px;
  background-color: var(--main-color);
}
.capt-cmn01 {
  margin: 16px 0 80px;
}
.capt-cmn01::before {
  content: "";
  line-height: 4rem;
  border-left: 6px solid var(--main-color);
  padding-left: 20px;
}
.capt-cmn02 {
  margin: 16px 0 40px;
}
.capt-cmn02::before {
  content: "";
  line-height: 4rem;
  border-left: 4px solid var(--main-color);
  padding-left: 16px;
}
.capt-cmn03 {
  display: flex;
  align-items: center;
  font-weight: 900;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.capt-cmn03::before {
  content: '';
  height: 2px;
  width: 16px;
  min-width: 16px;
  background-color: var(--main-color);
  margin-right: 8px;
}
h4 {
  border-bottom: 1px dotted var(--line-color);
  margin: 16px 0;
}
h5 {
  font-size: 14px;
  margin-bottom: 8px;
}
.wrap-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.wrap-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 200px;
  padding-top: 40px;
  background:
  url(../common/img/bk_h1.png) center right / 60vw auto no-repeat,/* 画像 */
  linear-gradient(to top, #faf4f4, #fafafa); /* グラデーション */
}
.wrap-top span {
  padding-left: 52px;
  margin-top: 8px;
  line-height: 24px;
  font-size: 24px;
  font-weight: 500;
  color: var(--grey01);
}
.cmn-btn {
  display: inline-block;
  width: 240px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  color: var(--main-color);
  background-color: var(--white);
  position: relative;
  font-weight: 700;
  letter-spacing: .1rem;
  border: solid 1px var(--main-color);
  transition: color 0.5s ease;
}
.cmn-btn:hover {
  color: #fff;
}
.cmn-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.cmn-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background:  var(--main-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
  z-index: 0;
}
.btn-txt {
  position: relative;
}
.btn-cancel {
  display: inline-block;
  width: 240px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  color: var(--grey01);
  background-color: var(--white);
  position: relative;
  font-weight: 700;
  letter-spacing: .1rem;
  border: solid 1px var(--line-color);
  transition: color 0.5s ease;
}
.wrap-btn-center {
  margin: 40px auto;
  text-align: center;
}

/* パンくず */
.breadcrumb {
  padding-left: 16px;
}
.breadcrumb ol {
  display: flex;
  list-style: none;
  font-size: 12px;
  flex-wrap: wrap;
}
.breadcrumb span {
  font-weight: 500;
}
.breadcrumb li:not(:last-of-type) span[itemprop="name"]::after {
  content: ">";
  padding: 0 8px;
}

/* footer */
footer {
  margin-top: 40px;
  background-color: var(--white);
}
footer > div.wrap-content {
  display: flex;
  align-items: flex-start;
  padding: 24px;
}
.wrap-footermenu {
  display: flex;
  flex-grow: 1;
}
.wrap-footermenu > div {
  width: 25%;
}
.txt-capfooter {
  font-weight: 700;
  margin-bottom: 8px;
}
footer > div.wrap-content ul {
  margin-bottom: 8px;
  font-weight: 500;
}
footer > div.wrap-content ul li:not(:first-of-type) {
  font-size: 13px;
}
footer > div.wrap-content ul li:not(:first-of-type)::before {
  content: "-";
  padding: 0 8px;
}
.logo-footer {
  flex: 0 0 auto;
  width: clamp(180px, 16%, 240px);
  box-sizing: border-box;
}
.logo-footer a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.logo-footer span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.logo-tci-footer, .logo-tcicn-footer {
  width: 80%;
  height: auto;
  margin-bottom: 0;
}
.logo-tci-footer .st0 {
  fill: #727171;
}
/* footer ---- privacy */
.wrap-PrivacyPolicy {
  height: 72px;
  display: flex;
  align-items: center;
}
.wrap-PrivacyPolicy > div {
  height: 100%;
}
.wrap-PrivacyPolicy > div:first-child {
  margin-right: 8px;
}
.wrap-PrivacyPolicy img {
  height: 100%;
}
.wrap-img-iso {
  display: flex;
  flex-wrap: nowrap;
  height: 56px;
}
.logo_msa {
  padding: 8px;
}
.text-iso {
  font-size: 12px;
  text-align: center;
}
/* footer ---- sns */
.wrap-sns {
  display: flex;
  align-items: end;
  margin: 16px 0;
}
.wrap-sns > a {
  width: 20%;
  text-align: center;
}
.wrap-sns > a > img:first-child {
  width: 100%;
  max-width: 32px;
}
.hover-link {
  position: relative;
  display: inline-block;
  cursor: default;
}
.hover-link .hover-image {
  display: none;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.hover-link:hover .hover-image {
  display: block;
}
/* footer -- bottom */
.wrap-writings {
  padding: 8px;
  text-align: center;
  font-size: 11px;
  color: #fff;
  letter-spacing: .1rem;
  background-color: var(--black);
}
.wrap-footer-bottom {
  display: flex;
  width: 100%;
  justify-content: center;
  background-color: var(--black);
  color: #fff;
  flex-wrap: wrap;
  padding: 8px 0;
}
.wrap-footer-bottom li {
  font-size: 12px;
}
.wrap-footer-bottom li:not(:last-of-type)::after {
  content: "|";
  padding: 8px;
}
.wrap-footer-bottom a {
  color: var(--white);
}
.wrap-footer-bottom a:hover {
  color: var(--main-color);
}
/* section */
.wrap-summary {
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 20px;
  color: var(--main-color);
}
.cmn-list01 li {
  line-height: 2.4em;
  border-bottom: var(--line-color) 1px solid;
}
.cmn-list02 li {
  line-height: 1.6em;
  padding-bottom: 16px;
}
/* listがdisc */
.cmn-list03 {
  list-style: disc;
  padding-left: 20px;
}
.cmn-table01, .cmn-table02 {
  width: 100%;
}
.cmn-table01 tr, .cmn-table02 tr {
  line-height: 2rem;
}
.cmn-table01 th, .cmn-table01 td, .cmn-table02 th, .cmn-table02 td {
  padding: 16px;
  border-bottom: 1px solid var(--line-color);
}
.cmn-table01 th, .cmn-table02 th {
  text-align: left;
  background-color: var(--grey02);
}
.cmn-table01 td, .cmn-table02 td {
  background-color: var(--white);
}
.wrap-picture {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  text-align: center;
}
.wrap-picture > img, .wrap-picture > div {
  width: 24%;
  height: auto;
}
.wrap-picture > div img {
  width: 100%;
}
.wrap-picture > img.img-vertical {
  width: 16%;
}
.wrap-picture > div > span.img-capt {
  font-size: 12px;
}
.wrap-picture img { padding:5px; }
.text {
  margin: 40px 0;
  text-align: left;
}
.text a {
  border-bottom: 1px solid var(--grey01);
}
.text a:hover {
  border-bottom: 1px solid var(--main-color);
}
.cmn-ol {
  padding-left: 16px;
}
.cmn-ol li:not(:last-of-type) {
  padding-bottom: 16px;
}
.wrap-img-c {
  text-align: center;
}
.wrap-img-Large, .wrap-img-M {
  text-align: center;
  margin: 0 auto;
}
.wrap-img-Large {
  width: 80%;
}
.wrap-img-M {
  width: 50%;
  min-width: 360px;
}
.wrap-img-Large img, .wrap-img-M img {
  width: 100%;
  margin: 8px 0;
}
.btn-b {
  width: 100%;
  text-align: center;
}
.area-btn-b {
  text-align: center;
  margin-bottom: 56px;
}
.wrap-btn .st0 { fill: var(--white); }

.open { display: block !important; }

.sp-nav-btn {
  color: #fff;
  position: absolute;
  right: 0%;
  z-index: 100;
  top:0px;
  width: 50px;
  height: 41px;
  text-align: center;
  line-height: 41px;
}
/* 個人情報保護方針 */
.list-privacy > li {
  margin: 40px 0;
}
.wrap-mark {
  display: flex;
  padding: 24px;
  margin: 16px auto 40px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background-color: var(--white);
  border-radius: 8px;
}
.link-txt {
  border-bottom: 1px solid ;
}
.privacy_mark {
  width: 120px;
}
/*追尾バナー*/
.bottom-bnr {
  position: fixed;
  right: 0;
  bottom: 10px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  z-index: 10;
  opacity: 1;
  transition : all 0.3s ease 0s;
}
.bottom-bnr:hover {
  opacity: 0.6;
}
 /*=============================== ここからPC ===============================*/
@media screen and (min-width:1024px) {
  .wrap-btn div {
    width: clamp(88px, 9vw, 120px);
    height: 40px;
    margin: 0 clamp(4px, 0.6vw, 8px) 0 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(9px, 0.75vw, 11px);
    color: #fff;
    border-radius: 20px;
  }
  .nav-btn-pc {
    display: inline-block;
    width: 240px;
    text-align: center;
    text-decoration: none;
    line-height: 60px;
    outline: none;
    color: var(--main-color);
    background-color: var(--white);
    position: relative;
    font-weight: 700;
    letter-spacing: .1rem;
    border: solid 1px var(--main-color);
    transition: color 0.5s ease;
  }
  .nav-btn-pc:hover {
    color: #fff;
  }
  .nav-btn-pc:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .nav-btn-pc::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background:  var(--main-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
    z-index: 0;
  }
  .btn-txt-pc {
    position: relative;
  }
  /* global nav */
  header {
    width: 100%;
    height: 64px;
    position: fixed;
    top: 0;
    left: 0;
    border-top: var(--main-color) 2px solid;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.3s ease;
  }
  header.visible {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
  }
  .menu, .wrap-btn, .nav-inner {
    display: flex;
  }
  .wrap-nav {
    width: 100%;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(11px, calc(7px + 0.55vw), 14px);
    font-weight: 700;
  }
  .wrap-header-logo {
    display: flex;
    flex: 0 1 clamp(220px, 36vw, 520px);
    max-width: 46%;
    min-width: 0;
    padding-left: clamp(8px, 1.2vw, 16px);
    align-items: center;
  }
  .header-logo-name {
    font-size: clamp(9px, 1vw, 14px);
    white-space: nowrap;
  }
  .wrap-header-logo svg {
    max-width: 100%;
  }
  .logo-tci {
    width: auto;
    height: clamp(36px, calc(10px + 2.5vw), 48px);
  }
  .scrolled .logo-tci .st0 { fill:#727171; }
  .logo-tcicn {
    width: auto;
    height: 32px;
    margin-left: 8px;
  }
  .menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .menu-select {
    position: relative;
  }
  .menu-main, .menu-nolayer {
    padding: 0 clamp(6px, calc(2px + 0.9vw), 20px);
    cursor: pointer;
    position: relative;
    display: inline-block;
    transition: 0.3s ease;
    white-space: nowrap;
  }
  .menu-main::before, .menu-nolayer::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transform: translateY(-50%);
    transition: width 0.3s ease;
  }
  .menu-main:hover, .menu-nolayer:hover {
    color: var(--main-color);
  }
  .menu-main:hover::before, .menu-nolayer:hover::before {
    width: 12px;
  }
  /* 下矢印 */
  .menu-main::after {
    content: '';
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-right: 1px solid transparent; /* 最初は透明にしておく */
    border-bottom: 1px solid transparent; /* 最初は透明にしておく */
    transform: translate(-50%, -50%) rotate(45deg); /* 回転と位置調整を統一 */
    left: 50%;
    margin-top: 5px;
    transition: border-color 0.3s ease; /* アニメーションを設定 */
  }
  .menu-main:hover::after {
    border-right: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
  }
  ul.menu-sub {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    width: 320px;
    text-align: center;
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.06);
  }
  li.menu-select ul.menu-sub {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
  }
  li.menu-select:hover ul.menu-sub {
    top: 40px;
    visibility: visible;
    opacity: 1;
  }

  a.no-border {
    width: 320px;
    border: none;
    color: var(--black);
    border-bottom:1px solid var(--line-color);
    margin: 0;
  }
  .text-right { text-align: right;}
  .wrap-btn div span {
    margin-right: 4px;
  }
  .btn-nav-contact {
    background-color: var(--black);
  }
  .btn-nav-dl svg, .btn-nav-contact svg {
    width: 16px;
  }

  .btn-nav-dl, .btn-nav-contact {
    display: inline-block;
    width: 250px;
    text-align: center;
    text-decoration: none;
    line-height: 60px;
    color: #fff;
  }
  .btn-nav-dl {
    background-color: var(--main-color);
  }
  .btn-nav-contact {
    background-color: var(--black);
  }
  .btn-nav-dl:hover, .btn-nav-contact:hover {
    background-position: right center;
    background-size: 200% auto;
    color: #fff;
  }
  .btn-nav-dl:hover {
    -webkit-animation: pulse 2s ease;
    animation: ripple__red 1.5s ease;
  }
  .btn-nav-contact:hover {
    -webkit-animation: pulse 2s ease;
    animation: ripple__black 1.5s ease  ;
  }
  @keyframes ripple__red {
    0% {box-shadow: 0 0 0 0 var(--main-color);}
    70% {box-shadow: 0 0 0 10px rgba(255, 0, 38, 0);}
    100% {box-shadow: 0 0 0 0 rgb(255, 0, 38, 0);}
  }
  @keyframes ripple__black {
    0% {box-shadow: 0 0 0 0 var(--black);}
    70% {box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);}
    100% {box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);}
  }
  .header-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    position: static;
    height: 100%;
    opacity: initial;
    align-items: center;
    justify-content: flex-end;
  }
  .wrap_hamburger {
    display: none;
  }
  .nav-inner {
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-end;
  }
  .menu {
    display: flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 1;
  }
  .wrap-btn {
    flex-shrink: 0;
  }
  .pc-none {
    display: none;
  }
  /* footer */
  .wrap-footer-bottom {
    padding: 8px 0 0;
  }
  .wrap-mark {
  width: 60%;
  min-width: 480px;
  }
}
 /*=============================== ここからタブレット===============================*/
 @media screen and (max-width: 1023px) {
  body {
    font-weight: 400;
  }
  a.menu-main {
    pointer-events: none;
  }
  h2.capt-cmn01 {
    margin-left: 0;
  }
  .cmn-table01 tr {
    display: flex;
    flex-direction: column;
  }
  /*nav style*/
.wrap-nav {
  width: 100%;
  height: 48px;
  background: var(--white);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05), 0 3px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 5;
  }
  .nav-inner {
    width: 100%;
  }
  .wrap-header-logo {
    padding-right: 48px;
    padding-left: 0;
    min-width: 0;
    display: flex;
    align-items: center;
  }
  .wrap-header-logo .header-logo-link {
    width: 100%;
    margin: 0;
    gap: 6px;
    align-items: center;
  }
  .header-logo-mark {
    max-width: 50%;
  }
  .header-logo-mark .logo-tci {
    height: 32px;
    max-height: 32px;
  }
  .header-logo-name {
    flex: 1;
    min-width: 0;
    font-size: 10px;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
  }
  .br-sp {
    display: block;
  }
  .logo-tci {
    height: auto;
  }
  .header-nav {
    display: flex;
    z-index: 10;
    position: absolute;
    top: 0;
    flex-direction: column;
    align-items: baseline ;
    width: 100%;
    font-weight: 700;
    opacity: 0;
    transition: 0.6s;
    z-index: 15;
    visibility: hidden;
  }
  .hamburger-btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    margin: 0;
    border: none;
    cursor: pointer;
    background: var(--main-color);
  }
  .hamburger-btn span {
    display: block;
    position: relative;
    left: 50%;
    width: 30px;
    height: 2px;
    transform: translateX(-50%);
    background: #fff;
    transition: all 0.4s;
  }
  .hamburger-btn span:nth-of-type(1) {
    top: -4px;
  }
  .hamburger-btn span:nth-of-type(2) {
    top: 1px;
  }
  .hamburger-btn span:nth-of-type(3) {
    top: 6px;
  }
  .hamburger-btn.is-active span:nth-of-type(1) {
    top: 0;
    transform: translateX(-50%) rotate(225deg);
  }
  .hamburger-btn.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger-btn.is-active span:nth-of-type(3) {
    top: -4px;
    transform: translateX(-50%) rotate(-225deg);
  }
  .wrap_hamburger {
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
  }
  .header-nav.is-active {
    position: fixed;
    margin-top: 48px;
    padding-bottom: 48px;
    top: 0;
    right: 0;
    background: var(--bkg-color);
    opacity: 1;
    transition: 0.6s;
    height: 100%;
    overflow-y: auto;
    visibility: visible;
  }
  .menu {
    width: 80%;
    margin: 0 auto;
    padding: 16px 0;
  }
  .menu > li > a {
    background-color: var(--grey01);
    color: #fff;
  }
  .menu-select {
    position: relative;
    width: 100%;
  }
  .sp-none {
    display: none;
  }
li.menu-select ul.menu-sub {
  display: none;
}
  .menu-sub > li {
    width: 100%;
  }
  .menu-select a, .menu-sub a, a.menu-nolayer {
    width: 100%;
    padding: 8px;
    display: block;
    border-bottom: 1px solid var(--line-color);
  }
  .menu-select {
    position: relative;
  }
  .menu-select .toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }
  .menu-select .open .toggle {
    right: auto;
    left: 10px;
  }
  .wrap-btn div {
    margin: 0 8px ;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    border-radius: 24px;
  }
  .btn-nav-dl, .btn-nav-contact {
    text-align: center;
    text-decoration: none;
    line-height: 48px;
    color: #fff;
  }
  .btn-nav-dl svg, .btn-nav-contact svg {
    width: 16px;
}
  .btn-nav-dl {
    background-color: var(--main-color);
  }
  .btn-nav-contact {
    background-color: var(--black);
  }
  .wrap-top {
    background:
      url(../common/img/bk_h1.png) center right / 100% auto no-repeat,
      linear-gradient(to top, #faf4f4, #fafafa);
  }
  .wrap-btn {
    display: flex;
    margin: 0 auto 54px;
    justify-content: center;
  }
  .wrap-btn a {
    width: 40%;
  }
  .cmn-btn {
    width: 80%;
  }
  /* footer */
  .logo-footer {
    width: 100%;
    min-width: 0;
    padding: 0 0 24px;
  }
  .logo-footer a {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .logo-footer svg {
    width: auto;
    flex: 0 0 140px;
    max-width: 46%;
  }
  .logo-footer span {
    flex: 1;
    min-width: 0;
    font-size: 10px;
  }
  .br-sp {
    display: block;
  }
  footer > div.wrap-content {
    padding: 24px;
    line-height: 2rem;
  }
  footer > div.wrap-content, .wrap-footermenu {
    flex-direction: column;
    width: 100%;
  }
  .wrap-footermenu > div {
    width:100%;
  }
  .wrap-sns {
    justify-content: center;
    margin-top: 40px;
  }
  .wrap-mark {
    flex-direction: column;
    width: 100%;
  }
  .bottom-bnr img {
    max-width: 240px;
  }
}
