@charset "UTF-8";
:root {
  --textColor: #2C2625;
  --white: #fff;
  --textGray: #6B6766;
  --paleGray: #F7F3F2;
  --borderGray: #C0BEBE;
  --borderGray02: #ABA8A8;
  --primaryOrange: #D93904;
  --paleOrange: #F7F3F2;
  --borderOrange: #F0EDEB;
  --backOrange: #FFFBFA;
}

/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "ヒラギノUD角ゴ Std", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
}

html {
  color: var(--textColor);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
  letter-spacing: 0.05em;
}

body {
  background: var(--white);
  margin: 0;
  word-break: break-all;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1em;
}

*:focus-visible {
  outline: 2px dashed;
  border-radius: 2px;
  outline-offset: 3px;
  outline-color: var(--primaryOrange);
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: var(--textGray);
}

:-ms-input-placeholder {
  color: var(--textGray);
}

::-ms-input-placeholder {
  color: var(--textGray);
}

::-moz-placeholder {
  color: var(--textGray);
}

::placeholder {
  color: var(--textGray);
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

.c-en {
  font-family: "Futura", "Jost", sans-serif;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-site-shortcuts {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
.c-site-shortcuts:focus-within {
  clip: auto;
  height: auto;
}

#header-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.c-header {
  background: var(--white);
  padding: 20px 0 15px;
  position: relative;
}
.c-header.is-shadow {
  -webkit-box-shadow: 0 0 4px 0 #e5dbdb;
          box-shadow: 0 0 4px 0 #e5dbdb;
}
.c-header .inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-header .logo {
  width: 200px;
  font-size: 2em;
}
.c-header .logo a {
  display: block;
}
.c-header .sp-lang-area {
  margin-left: auto;
}

.c-contact-link-wrap {
  position: relative;
}
.c-contact-link-wrap .c-contact-link {
  padding-right: 18px;
}
.c-contact-link-wrap .c-contact-link::after {
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  position: absolute;
  top: 2px;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: none;
  transition: none;
}
.c-contact-link-wrap .contact-list {
  background: var(--white);
  border: 1px solid var(--textGray);
  border-radius: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  display: none;
  pointer-events: none;
  z-index: 2;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  overflow: hidden;
  width: 260px;
}
.c-contact-link-wrap .contact-list a {
  font-weight: bold;
  display: block;
  padding: 10px;
}
.c-contact-link-wrap .contact-list a:focus-visible .btn-inn {
  border-bottom-color: var(--primaryOrange);
}
.c-contact-link-wrap .contact-list a .btn-inn {
  position: relative;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  -webkit-transition: border-bottom-color 0.2s ease-in-out;
  transition: border-bottom-color 0.2s ease-in-out;
}
.c-contact-link-wrap.is-active .contact-list {
  opacity: 1;
  display: block;
  pointer-events: auto;
}

.c-contact-link {
  display: inline-block;
  font-weight: bold;
  padding: 5px 0 5px 40px;
  position: relative;
}
.c-contact-link::before {
  background: var(--textColor);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-question.svg) no-repeat center center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-question.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  margin: auto;
}

.c-language-link {
  cursor: pointer;
  position: relative;
  z-index: 12;
  padding: 5px 0;
}
.c-language-link.is-active .label-txt {
  color: var(--primaryOrange);
}
.c-language-link.is-active .label-txt::before {
  background: var(--primaryOrange);
}
.c-language-link.is-active .lang-list {
  opacity: 1;
  display: block;
  pointer-events: auto;
}
.c-language-link .label-txt {
  font-size: 1.125em;
  font-weight: bold;
  font-family: "Futura", "Jost", sans-serif;
  padding: 0 18px 0 40px;
  position: relative;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  line-height: 1;
}
.c-language-link .label-txt::before, .c-language-link .label-txt::after {
  content: "";
  display: block;
  margin: auto;
  bottom: 0;
  top: 0;
}
.c-language-link .label-txt::before {
  background: var(--textColor);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-lang.svg) no-repeat center center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-lang.svg) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.c-language-link .label-txt::after {
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  position: absolute;
  bottom: 0;
  top: 2px;
  right: 0;
  margin: auto;
  -webkit-transition: none;
  transition: none;
}
.c-language-link .lang-list {
  background: var(--white);
  border: 1px solid var(--textGray);
  border-radius: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  display: none;
  pointer-events: none;
  z-index: 2;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  overflow: hidden;
}
.c-language-link .lang-list li.is-current {
  background: var(--paleOrange);
  color: var(--primaryOrange);
}
.c-language-link .lang-list li.is-current a::before, .c-language-link .lang-list li.is-current a::after {
  opacity: 1;
}
.c-language-link .lang-list li.is-current a::after {
  background: var(--primaryOrange);
}
.c-language-link .lang-list a {
  display: block;
  font-weight: bold;
  padding: 5px 5px 5px 40px;
  position: relative;
}

.c-sp-language-link {
  position: relative;
}
.c-sp-language-link.is-active .lang-list {
  pointer-events: auto;
  opacity: 1;
}
.c-sp-language-link .label-txt {
  cursor: pointer;
  font-family: "Futura", "Jost", sans-serif;
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 0 0 12px 35px;
}
.c-sp-language-link .label-txt::before, .c-sp-language-link .label-txt::after {
  content: "";
  display: block;
  margin: auto;
}
.c-sp-language-link .label-txt::before {
  background: var(--textColor);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-lang.svg) no-repeat center center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-lang.svg) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  pointer-events: none;
}
.c-sp-language-link .label-txt::after {
  background: var(--textColor);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  position: absolute;
  bottom: 0;
  right: 4px;
  margin: auto;
  -webkit-transition: none;
  transition: none;
  pointer-events: none;
}
.c-sp-language-link .lang-list {
  background: var(--white);
  border: 1px solid var(--textGray);
  border-radius: 4px;
  position: absolute;
  top: 100%;
  right: -20px;
  overflow: hidden;
  width: 156px;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  z-index: 999;
}
.c-sp-language-link .lang-list li.is-current {
  color: var(--primaryOrange);
}
.c-sp-language-link .lang-list li.is-current a::before, .c-sp-language-link .lang-list li.is-current a::after {
  opacity: 1;
}
.c-sp-language-link .lang-list li.is-current a::after {
  background: var(--primaryOrange);
}
.c-sp-language-link .lang-list li a {
  font-size: 1em;
  font-weight: bold;
  display: block;
  letter-spacing: 0;
  padding: 12px 10px 12px 35px;
  position: relative;
}
.c-sp-language-link .lang-list li a::before, .c-sp-language-link .lang-list li a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  opacity: 0;
}
.c-sp-language-link .lang-list li a::before {
  background: url(https://tw.cando-web.co.jp/img/common/ico-check.svg) no-repeat center center/contain;
  width: 11px;
  height: 8px;
  left: 14px;
  z-index: 2;
}
.c-sp-language-link .lang-list li a::after {
  background: var(--textColor);
  border-radius: 50%;
  width: 19px;
  height: 19px;
  left: 10px;
  z-index: 1;
}

/* --------------------------------
c-nav
----------------------------------- */
.c-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}
.c-nav .nav-list > li.mega-menu-wrap .btn {
  position: relative;
}
.c-nav .nav-list > li.sp-aco-area > .btn.is-active {
  background: var(--paleOrange);
}
.c-nav .nav-list > li.sp-aco-area .aco-btn {
  width: 70px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
}
.c-nav .nav-list > li.sp-aco-area .aco-btn::before, .c-nav .nav-list > li.sp-aco-area .aco-btn::after {
  background: url(https://tw.cando-web.co.jp/img/common/ico-plus-line.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 30px;
  margin: auto;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.c-nav .nav-list > li.sp-aco-area .aco-btn::after {
  rotate: 90deg;
}
.c-nav .nav-list > li.sp-aco-area .aco-btn.is-active::after {
  rotate: 0deg;
}
.c-nav .nav-list > li .btn:focus-visible::after {
  clip: rect(0, 300px, 100px, 0);
}
.c-nav .nav-list > li > .btn {
  cursor: pointer;
  display: inline-block;
  font-size: 1.125em;
  font-weight: bold;
  letter-spacing: 0.12em;
  padding-bottom: 10px;
  position: relative;
}
.c-nav .nav-list > li > .btn.ico-external {
  position: relative;
  background: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat top 5px right/16px 16px;
}
.c-nav .nav-list > li.contact-menu > .btn.c-contact-link {
  padding-left: 65px;
}
.c-nav .nav-list > li.contact-menu > .btn.c-contact-link::before {
  background: var(--textColor);
  content: "" !important;
  display: block;
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-question.svg) no-repeat center center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-question.svg) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  margin: auto;
  bottom: 0;
  top: 0;
  left: 25px;
  right: inherit;
  rotate: 0deg;
}
.c-nav .nav-list > li.contact-menu .aco-btn {
  width: 100%;
}
.c-nav .mega-menu.company-menu::before {
  right: 12%;
}
.c-nav .mega-menu.company-menu::after {
  right: calc(12% - 1px);
}
.c-nav .mega-menu .link-wrap {
  text-align: center;
  margin-bottom: 20px;
}
.c-nav .mega-menu .link-wrap .nav-link-btn {
  padding-right: 20px;
  position: relative;
}
.c-nav .mega-menu .link-wrap .nav-link-btn:focus-visible {
  color: var(--primaryOrange);
}
.c-nav .mega-menu .link-wrap .nav-link-btn:focus-visible .link-inn::before {
  opacity: 1;
}
.c-nav .mega-menu .link-wrap .nav-link-btn::before {
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  rotate: -90deg;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
  -webkit-transition: none;
  transition: none;
}
.c-nav .mega-menu .nav-link-btn {
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0.12em;
}
.c-nav .mega-menu .nav-link-btn .link-inn {
  display: inline-block;
  position: relative;
}
.c-nav .mega-menu .nav-link-btn .link-inn::before {
  background: var(--primaryOrange);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 0;
}
.c-nav .mega-menu .sub-nav-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 30px;
}
.c-nav .mega-menu .sub-nav-list > li {
  position: relative;
}
.c-nav .mega-menu .sub-nav-list > li::before, .c-nav .mega-menu .sub-nav-list > li::after {
  background: linear-gradient(to right, #000 1px, transparent 1px) repeat-x left bottom/4px 1px;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
}
.c-nav .mega-menu .sub-nav-list > li::before {
  bottom: 0;
}
.c-nav .mega-menu .sub-nav-list > li::after {
  top: 0;
}
.c-nav .mega-menu .sub-nav-list .sub-link-btn {
  display: block;
  padding: 10px 20px 10px 0;
  position: relative;
}
.c-nav .mega-menu .sub-nav-list .sub-link-btn:focus-visible {
  color: var(--primaryOrange);
}
.c-nav .mega-menu .sub-nav-list .sub-link-btn:focus-visible .link-inn::before {
  opacity: 1;
}
.c-nav .mega-menu .sub-nav-list .sub-link-btn::before {
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  rotate: -90deg;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 8px;
  margin: auto;
  -webkit-transition: none;
  transition: none;
}
.c-nav .mega-menu .sub-nav-list .sub-link-btn.ico-external::before {
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center center/14px 14px;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center center/14px 14px;
  width: 14px;
  height: 14px;
  rotate: 0deg;
  right: 30px;
}
.c-nav .mega-menu .sub-nav-list .sub-link-btn .link-inn {
  display: block;
  position: relative;
}
.c-nav .mega-menu .sub-nav-list .sub-link-btn .link-inn::before {
  background: var(--primaryOrange);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 0;
}
.c-nav .sp-nav-wrap .c-contact-link {
  border-top: 1px solid var(--borderGray);
  border-bottom: 1px solid var(--borderGray);
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
}

.c-nav-btn {
  background: var(--white);
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  z-index: 113;
}
.c-nav-btn .inn {
  display: block;
  position: relative;
  margin: auto;
  width: 33px;
  height: 23px;
}
.c-nav-btn .line {
  background: var(--textColor);
  border-radius: 100px;
  display: block;
  position: absolute;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  width: 100%;
  height: 3px;
}
.c-nav-btn .line:nth-child(1) {
  top: 0;
}
.c-nav-btn .line:nth-child(2) {
  top: 10px;
}
.c-nav-btn .line:nth-child(3) {
  top: 20px;
}
.c-nav-btn.is-open .line {
  top: 10px;
}
.c-nav-btn.is-open .line:nth-child(1) {
  rotate: 45deg;
}
.c-nav-btn.is-open .line:nth-child(2) {
  opacity: 0;
}
.c-nav-btn.is-open .line:nth-child(3) {
  rotate: -45deg;
}

/* --------------------------------
c-footer
----------------------------------- */
.c-footer {
  position: relative;
}
.c-footer .top-content {
  background: var(--paleGray);
  padding: 40px 0;
}
.c-footer .top-content .link-wrap .inn {
  position: relative;
}
.c-footer .top-content .link-wrap .inn .aco-btn {
  width: 70px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
}
.c-footer .top-content .link-wrap .inn .aco-btn::before, .c-footer .top-content .link-wrap .inn .aco-btn::after {
  background: url(https://tw.cando-web.co.jp/img/common/ico-plus-line.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.c-footer .top-content .link-wrap .inn .aco-btn::after {
  rotate: 90deg;
}
.c-footer .top-content .link-wrap .inn .aco-btn.is-active::after {
  rotate: 0deg;
}
.c-footer .top-content .link-wrap .link {
  display: inline-block;
  font-size: 1.125em;
  font-weight: bold;
  padding-right: 18px;
  position: relative;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.c-footer .top-content .link-wrap .link:focus-visible {
  color: var(--primaryOrange);
}
.c-footer .top-content .link-wrap .link:focus-visible .link-inn::before {
  opacity: 1;
}
.c-footer .top-content .link-wrap .link::before {
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  rotate: -90deg;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
  -webkit-transition: none;
  transition: none;
}
.c-footer .top-content .link-wrap .link.ico-external {
  padding-right: 22px;
}
.c-footer .top-content .link-wrap .link.ico-external::before {
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
  color: var(--primaryOrange);
  width: 16px;
  height: 16px;
  rotate: 0deg;
}
.c-footer .top-content .link-wrap .link .link-inn {
  display: block;
  position: relative;
}
.c-footer .top-content .link-wrap .link .link-inn::before {
  background: var(--primaryOrange);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 0;
}
.c-footer .top-content .link-wrap .sub-link {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.c-footer .top-content .link-wrap .sub-link a {
  display: inline-block;
  position: relative;
}
.c-footer .top-content .link-wrap .sub-link a:focus-visible {
  color: var(--primaryOrange);
}
.c-footer .top-content .link-wrap .sub-link a:focus-visible .link-inn::before {
  opacity: 1;
}
.c-footer .top-content .link-wrap .sub-link a.ico-external {
  padding-right: 20px;
}
.c-footer .top-content .link-wrap .sub-link a.ico-external::before {
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
  -webkit-transition: none;
  transition: none;
}
.c-footer .top-content .link-wrap .sub-link a .link-inn {
  display: block;
  position: relative;
}
.c-footer .top-content .link-wrap .sub-link a .link-inn::before {
  background: var(--primaryOrange);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 0;
}
.c-footer .top-content .link-wrap .sub-link li {
  position: relative;
}
.c-footer .bottom-content {
  background: var(--textColor);
  padding: 12px 0;
}
.c-footer .bottom-content .link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.c-footer .bottom-content .link a {
  display: inline-block;
  color: var(--white);
  letter-spacing: 0.04em;
}
.c-footer .bottom-content .link a:focus-visible .link-inn::before {
  opacity: 1;
}
.c-footer .bottom-content .link a .link-inn {
  display: block;
  position: relative;
}
.c-footer .bottom-content .link a .link-inn::before {
  background: var(--white);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 0;
}
.c-footer .copy-area {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.c-footer .copy-area .copyright {
  font-size: 0.75em;
}
.c-footer .sp-nav-wrap .c-contact-link {
  border-top: 1px solid var(--borderGray);
  border-bottom: 1px solid var(--borderGray);
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
}
.c-footer #pagetop {
  display: block;
  right: 60px;
  z-index: 10;
}
.c-footer #pagetop a {
  display: inline-block;
  text-align: center;
}
.c-footer #pagetop a:focus-visible .link-txt {
  color: var(--primaryOrange);
}
.c-footer #pagetop a .link-txt {
  line-height: 1.25;
  font-weight: bold;
  margin-top: 2px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.c-ttl01 {
  font-size: 1.75em;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 40px;
  text-align: center;
}
.c-ttl01.mb80 {
  margin-bottom: 80px;
}

.c-ttl02 {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
  width: 100%;
  border-bottom: 1px solid #ABA8A8;
  padding-bottom: 8px;
  margin-bottom: 24px;
}
.c-ttl02.no-border {
  border-bottom: 0;
  padding-bottom: 0;
}

.c-ttl03 {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 30px;
}

.c-btn01 {
  background: var(--textColor);
  border-radius: 4px;
  color: var(--white);
  display: inline-block;
  font-size: 1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  min-width: 264px;
  padding: 12px 44px 12px 23px;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  z-index: 1;
}
.c-btn01.center {
  text-align: center;
}
.c-btn01::before {
  background: currentColor;
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 16px;
  height: 8px;
  rotate: -90deg;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 10px;
  margin: auto;
}
.c-btn01::after {
  background: var(--primaryOrange);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  z-index: -1;
}
.c-btn01:not(.ico-external):not(.disabled):not(:disabled):focus-visible::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.c-btn01:not(.ico-external):not(.disabled):not(:disabled):focus-visible::before {
  -webkit-animation: icoRightMove 0.4s ease-in-out forwards;
          animation: icoRightMove 0.4s ease-in-out forwards;
}
.c-btn01.ico-external:focus-visible {
  background: var(--primaryOrange);
}
.c-btn01.ico-external::before {
  -webkit-mask-image: url(https://tw.cando-web.co.jp/img/common/ico-external.svg);
          mask-image: url(https://tw.cando-web.co.jp/img/common/ico-external.svg);
  rotate: 0deg;
  width: 16px;
  height: 15px;
}
.c-btn01.wide {
  min-width: 275px;
}
.c-btn01.btn-w200 {
  min-width: 200px;
}
.c-btn01.back-btn {
  border: 1px solid var(--textColor);
  background-color: var(--white);
  color: var(--textColor);
  min-width: 200px;
  padding: 12px 20px;
}
.c-btn01.back-btn::before {
  rotate: 90deg;
  right: inherit;
  -webkit-transition: icoLeftMove;
  transition: icoLeftMove;
  left: 10px;
}
.c-btn01.back-btn::after {
  left: inherit;
  right: 0;
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.c-btn01.back-btn:focus-visible {
  color: var(--white);
}
.c-btn01.back-btn:focus-visible::before {
  -webkit-animation: icoLeftMove 0.4s ease-in-out forwards !important;
          animation: icoLeftMove 0.4s ease-in-out forwards !important;
}
.c-btn01.disabled, .c-btn01:disabled {
  color: var(--white);
  background-color: var(--textGray);
  border-color: var(--textGray);
}

@-webkit-keyframes icoRightMove {
  0% {
    right: 10px;
  }
  50% {
    right: 3px;
  }
  100% {
    right: 10px;
  }
}

@keyframes icoRightMove {
  0% {
    right: 10px;
  }
  50% {
    right: 3px;
  }
  100% {
    right: 10px;
  }
}
@-webkit-keyframes icoLeftMove {
  0% {
    left: 10px;
  }
  50% {
    left: 3px;
  }
  100% {
    left: 10px;
  }
}
@keyframes icoLeftMove {
  0% {
    left: 10px;
  }
  50% {
    left: 3px;
  }
  100% {
    left: 10px;
  }
}
.c-btn02 {
  background: var(--textColor);
  border-radius: 4px;
  color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 27px 75px 27px 100px;
  position: relative;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.c-btn02::before {
  background: currentColor;
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 45px;
  margin: auto;
  -webkit-transition: none;
  transition: none;
}
.c-btn02 .ico {
  display: block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 45px;
  margin: auto;
  text-align: center;
}
.c-btn02 .ico img {
  max-width: 48px;
  max-height: 48px;
}
.c-btn02 .btn-txt {
  font-size: 1.125em;
  line-height: 1.3;
}
.c-btn02:focus-visible {
  background: var(--primaryOrange);
}

.c-btn03 {
  border: 1px solid var(--textGray);
  border-radius: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 1.125em;
  line-height: 1.5;
  min-height: 95px;
  padding: 15px 35px;
  position: relative;
  text-align: center;
}
.c-btn03::before {
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 16px;
  height: 8px;
  rotate: -90deg;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 15px;
  margin: auto;
}
.c-btn03::after {
  border: 2px solid var(--primaryOrange);
  border-radius: 4px;
  content: "";
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
  margin: auto;
  pointer-events: none;
  opacity: 0;
}
.c-btn03:focus-visible::before {
  -webkit-animation: icoRightMove 0.4s ease-in-out forwards;
          animation: icoRightMove 0.4s ease-in-out forwards;
}
.c-btn03:focus-visible::after {
  opacity: 1;
}

.c-section {
  padding: 100px 0;
}

.c-bg-orange {
  background: var(--paleOrange);
}

.c-bg-gray {
  background: var(--paleGray);
}

/* c-tags */
.c-tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px;
}
.c-tags .tag {
  background: var(--white);
  border: 1px solid var(--primaryOrange);
  border-radius: 4px;
  color: var(--primaryOrange);
  line-height: 1.2;
  font-size: 0.875em;
  padding: 2px 10px;
  min-width: 84px;
  text-align: center;
}
.c-tags .tag.parents {
  background: var(--primaryOrange);
  color: var(--white);
}

/* c-new */
.c-new {
  color: var(--primaryOrange);
  display: inline-block;
  font-weight: bold;
  font-family: "Futura", "Jost", sans-serif;
  font-size: 1.063em;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 5px;
  padding: 0 18px;
  position: relative;
}
.c-new::before, .c-new::after {
  background: url(https://tw.cando-web.co.jp/img/common/ico-star.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
}
.c-new::before {
  left: 0;
}
.c-new::after {
  right: 0;
}

/* c-year-select */
.c-year-select {
  border: 1px solid var(--textGray);
  border-radius: 2px;
  position: relative;
  margin-bottom: 24px;
}
.c-year-select.is-active .year-current::before {
  rotate: 180deg;
}
.c-year-select.is-active .year-list {
  border: 1px solid var(--textGray);
  border-top: none;
  border-radius: 0 0 2px 2px;
  opacity: 1;
  pointer-events: auto;
  display: block;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.c-year-select .year-current {
  color: var(--textGray);
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  display: block;
  padding: 10px 25px;
  position: relative;
  text-align: center;
  width: 100%;
}
.c-year-select .year-current::before {
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  position: absolute;
  bottom: 0;
  top: 2px;
  right: 8px;
  margin: auto;
}
.c-year-select .year-current.is-selected {
  color: var(--primaryOrange);
}
.c-year-select .year-list {
  background: var(--white);
  position: absolute;
  top: 100%;
  left: -1px;
  width: calc(100% + 2px);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  display: none;
}
.c-year-select .year-list a,
.c-year-select .year-list .year-btn {
  color: var(--textGray);
  cursor: pointer;
  display: block;
  padding: 10px;
  text-align: center;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.c-year-select .year-list a:focus-visible,
.c-year-select .year-list .year-btn:focus-visible {
  background: var(--paleOrange);
  color: var(--primaryOrange);
}
.c-year-select .year-list .year-btn {
  font-size: 1em;
  width: 100%;
}

/*------------------------------------------------------------------------------
  c-paging-area
------------------------------------------------------------------------------*/
.c-paging-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 60px auto 0;
  gap: 20px;
  position: relative;
  text-align: center;
}
.c-paging-area .page-numbers {
  border: 1px solid var(--textColor);
  border-radius: 2px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--textColor);
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  width: 48px;
  height: 48px;
  text-align: center;
}
.c-paging-area .page-numbers.prev, .c-paging-area .page-numbers.next {
  position: relative;
}
.c-paging-area .page-numbers.prev::before, .c-paging-area .page-numbers.next::before {
  background: var(--textColor);
  content: "";
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  height: 8px;
  width: 14px;
}
.c-paging-area .page-numbers.prev:focus-visible, .c-paging-area .page-numbers.next:focus-visible {
  background: var(--textColor);
}
.c-paging-area .page-numbers.prev:focus-visible::before, .c-paging-area .page-numbers.next:focus-visible::before {
  background: #fff;
}
.c-paging-area .page-numbers.prev::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-paging-area .page-numbers.next::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.c-paging-area .page-numbers.current {
  background: var(--textColor);
  color: #fff;
}
.c-paging-area .page-numbers[disabled]:not(.current) {
  background: var(--borderGray02);
  border-color: var(--borderGray02);
  pointer-events: none;
}
.c-paging-area .page-numbers:focus-visible {
  background: var(--textColor);
  color: #fff;
}

/*------------------------------------------------------------------------------
  c-breadcrumbs
------------------------------------------------------------------------------*/
.c-breadcrumbs {
  padding-bottom: 20px;
}
.c-breadcrumbs .breadcrumbs-list {
  padding-right: 100px;
}
.c-breadcrumbs .breadcrumbs-list li {
  display: inline;
}
.c-breadcrumbs .breadcrumbs-list li + li {
  margin-left: 32px;
  position: relative;
}
.c-breadcrumbs .breadcrumbs-list li + li::before {
  background: #D5D4D3;
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  rotate: -90deg;
  position: absolute;
  top: 6px;
  left: -26px;
}

.c-lead-text .text {
  border-radius: 2px;
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
  padding: 28px 30px;
  margin-bottom: 80px;
}

.c-desc-wrap + .c-image-area {
  margin-top: 30px;
}

.c-btn-area {
  margin-top: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-btn-area .c-btn01 {
  text-align: center;
  font-weight: 600;
}

.c-list-circle01, .c-list-circle02 {
  position: relative;
  padding-left: 16px;
}

.c-list-circle01::before, .c-list-circle02::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 50%;
  margin: auto;
  left: 0;
}

.c-list-circle01::before {
  top: 0;
  bottom: 0;
}

.c-list-circle02::before {
  top: 8px;
}

.c-list-circle03, .c-list-circle04 {
  position: relative;
  padding-left: 8px;
}

.c-list-circle03::before, .c-list-circle04::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 50%;
  margin: auto;
  left: 0;
}

.c-list-circle03::before {
  top: 0;
  bottom: 0;
}

.c-list-circle04::before {
  top: 10px;
}

.c-link01 {
  display: inline-block;
  position: relative;
}
.c-link01:focus-visible {
  color: var(--primaryOrange);
}
.c-link01:focus-visible .inn::before {
  opacity: 1;
}
.c-link01 .inn {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-link01 .inn::before {
  background: var(--primaryOrange);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 0;
}

.c-link02 {
  display: inline-block;
  position: relative;
}
.c-link02:focus-visible .inn::before {
  opacity: 0;
}
.c-link02 .inn {
  display: inline-block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--primaryOrange);
}
.c-link02 .inn::before {
  background: var(--primaryOrange);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 1;
}

.c-link03 {
  color: var(--primaryOrange);
  text-decoration: underline;
}
.c-link03:focus-visible {
  text-decoration: none;
}

.c-ico-pdf {
  position: relative;
  padding-left: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-ico-pdf::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 24px;
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-pdf.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-pdf.svg) no-repeat center/contain;
  background-color: var(--primaryOrange);
  top: -2px;
  left: 8px;
  margin: auto;
}

.c-ico-external {
  position: relative;
  padding-right: 4px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.c-ico-external::after {
  position: relative;
  content: "";
  width: 16px;
  height: 16px;
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
  background-color: var(--primaryOrange);
  top: 0;
  left: 8px;
  margin: auto;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}

.loader {
  color: var(--primaryOrange);
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@-webkit-keyframes load7 {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
            box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
            box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
            box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
            box-shadow: 0 2.5em 0 0;
  }
}
.c-scheme-flow .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-scheme-flow .item + .item {
  margin-top: 40px;
  position: relative;
}
.c-scheme-flow .item + .item::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 20px solid var(--textColor);
  border-bottom: 0;
  position: absolute;
  top: -30px;
  left: 45px;
  margin: auto;
}
.c-scheme-flow .item:nth-child(2) .head-area::after {
  opacity: 0.9;
}
.c-scheme-flow .item:nth-child(3) .head-area::after {
  opacity: 0.8;
}
.c-scheme-flow .item .head-area {
  border: 1px solid var(--textGray);
  color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px;
  width: 150px;
  position: relative;
  z-index: 1;
}
.c-scheme-flow .item .head-area::after {
  background: var(--textColor);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}
.c-scheme-flow .item .head-area .head {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
}
.c-scheme-flow .item .scheme-list {
  border: 1px solid var(--textGray);
  border-left: none;
  padding: 10px 15px;
  width: calc(100% - 150px);
}
.c-scheme-flow .item .scheme-list li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-scheme-flow .item .scheme-list li + li {
  margin-top: 4px;
}

.c-border01 > * {
  position: relative;
}
.c-border01 > *::before, .c-border01 > *::after {
  background: linear-gradient(to right, #000 1px, transparent 1px) repeat-x left bottom/4px 1px;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
}
.c-border01 > *::before {
  bottom: 0;
}
.c-border01 > *::after {
  top: 0;
  opacity: 0;
}
.c-border01 > *:first-child::after {
  opacity: 1;
}

.c-border02 li {
  border-top: 1px solid #aba8a8;
}
.c-border02 li:last-child {
  border-bottom: 1px solid #aba8a8;
}

.c-border03 > *:not(:first-child) {
  position: relative;
}
.c-border03 > *:not(:first-child)::after {
  background: linear-gradient(to right, #000 1px, transparent 1px) repeat-x left bottom/4px 1px;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
}

.c-num-list {
  counter-reset: number 0;
}
.c-num-list:not(:last-child) {
  margin-bottom: 16px;
}
.c-num-list li::before {
  counter-increment: number 1;
  content: counter(number) ". ";
}
.c-num-list li + li {
  margin-top: 5px;
}

/* --------------------------------
c-table
----------------------------------- */
.c-table01 .each {
  width: 100%;
  padding: 20px 0;
}
.c-table01 .each .name {
  font-size: 1.125em;
  font-weight: bold;
}
.c-table01 .each .desc {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.005em;
}
.c-table01.gray-table .each {
  padding: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-table01.gray-table .name {
  font-weight: 600;
  padding: 32px 24px;
  background-color: var(--paleOrange);
}
.c-table01.gray-table .desc {
  padding: 18px 24px;
}
.c-table01.gray-table .desc .bold {
  font-weight: 600;
}

.c-table02 .each {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  padding: 30px 0;
}
.c-table02 .each .desc-wrap .name {
  font-size: 1.5em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 20px;
}
.c-table02 .each .desc-wrap .txt {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.c-table03 .each {
  width: 100%;
  padding: 32px 0;
  display: grid;
  grid-template-areas: "year desc";
  grid-template-columns: auto 1fr;
}
.c-table03 .each .year, .c-table03 .each .month {
  color: var(--primaryOrange);
  font-size: 1.125em;
  font-weight: 600;
}
.c-table03 .each .year {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  grid-area: year;
}
.c-table03 .each .year .num {
  font-size: 1.5em;
}
.c-table03 .each .month {
  grid-area: month;
  width: 50px;
  text-align: right;
}
.c-table03 .each .desc {
  grid-area: desc;
  display: grid;
  grid-template-areas: "month txt";
  grid-template-columns: 1fr 80%;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.c-table03 .each .desc p:not(.month) {
  grid-area: txt;
  font-size: 1em;
}
.c-table03 .each .desc + .desc {
  margin-top: 6px;
}

.c-table04 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-template-rows: auto;
  gap: 20px;
}
.c-table04 .each {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  background-color: var(--white);
  padding: 20px;
}
.c-table04 .each .img {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-table04 .each .img img {
  width: 100%;
  height: 100%;
}
.c-table04 .each .name {
  display: inline-block;
  font-weight: bold;
  width: 100%;
  max-width: 160px;
  line-height: 1.25;
}

.c-table05 {
  width: 100%;
  border: 1px solid var(--textGray);
}
.c-table05 tr:nth-child(2n+3) td {
  background: var(--paleGray);
}
.c-table05 tr:first-of-type th:not(:first-of-type) {
  border-left: 1px solid var(--white);
}
.c-table05 tr:first-of-type th:first-child {
  min-width: 220px;
}
.c-table05 tr:not(:first-of-type) th {
  border-top: 1px solid var(--white);
}
.c-table05 tr:not(:first-of-type) td {
  border-left: 1px solid var(--textGray);
  border-bottom: 1px solid var(--textGray);
}
.c-table05 th, .c-table05 td {
  text-align: left;
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding: 14px 24px 14px 24px;
}
.c-table05 th {
  background: var(--textGray);
  color: var(--white);
  white-space: normal;
}
.c-table05 td {
  padding-inline: 10px;
  min-width: 126px;
}
.c-table05 .th-center th {
  text-align: center;
}
.c-table05 .th-right th {
  text-align: right;
}
.c-table05 .td-center td {
  text-align: center;
}
.c-table05 .td-right td {
  text-align: right;
}

.c-splide-area .splide__arrow {
  background: var(--white);
  border: 2px solid var(--primaryOrange);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  z-index: 10;
}
.c-splide-area .splide__arrow::after {
  content: none;
}
.c-splide-area .splide__arrow::before {
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.c-splide-area .splide__arrow > svg {
  display: none;
}
.c-splide-area .splide__arrow:focus-visible {
  background: var(--primaryOrange);
}
.c-splide-area .splide__arrow:focus-visible::before {
  background: var(--white);
}
.c-splide-area .splide__arrow.splide__arrow--prev {
  left: -10px;
}
.c-splide-area .splide__arrow.splide__arrow--prev::before {
  rotate: 90deg;
  left: -2px;
}
.c-splide-area .splide__arrow.splide__arrow--next {
  right: -10px;
}
.c-splide-area .splide__arrow.splide__arrow--next::before {
  rotate: -90deg;
  right: -2px;
}

/* --------------------------------
c-important-notice-area
----------------------------------- */
.c-important-notice-area {
  position: relative;
  z-index: 11;
}
.c-important-notice-area .head {
  background: var(--textColor);
  padding: 8px 0;
}
.c-important-notice-area .head .inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.c-important-notice-area .head .news-link {
  display: block;
  position: relative;
  padding-left: 24px;
  width: calc(100% - 74px);
}
.c-important-notice-area .head .news-link:focus-visible .ttl::before {
  opacity: 1;
}
.c-important-notice-area .head .news-link::before {
  background: url(https://tw.cando-web.co.jp/img/common/ico-caution.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  margin: auto;
}
.c-important-notice-area .head .news-link .ttl {
  color: var(--white);
  font-weight: bold;
  font-size: 1em;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  position: relative;
}
.c-important-notice-area .head .news-link .ttl::before {
  background: var(--white);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 0;
}
.c-important-notice-area .more-btn {
  border: 1px solid var(--white);
  border-radius: 20px;
  color: var(--white);
  font-size: 0.875em;
  padding: 2px 9px 2px 20px;
  line-height: 1;
  width: 64px;
  height: 26px;
  text-align: right;
  position: relative;
  -webkit-transition: none;
  transition: none;
  margin-left: auto;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
}
.c-important-notice-area .more-btn:focus-visible {
  background: var(--white);
  color: var(--textColor);
}
.c-important-notice-area .more-btn:focus-visible::before, .c-important-notice-area .more-btn:focus-visible::after {
  background: var(--textColor);
}
.c-important-notice-area .more-btn::before, .c-important-notice-area .more-btn::after {
  background: var(--white);
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 6px;
  margin: auto;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.c-important-notice-area .more-btn::after {
  rotate: 90deg;
}
.c-important-notice-area .more-btn.is-active {
  width: 26px;
  padding-right: 0;
}
.c-important-notice-area .more-btn.is-active::after {
  rotate: 0deg;
}
.c-important-notice-area .more-btn.is-active .btn-txt {
  display: none;
}
.c-important-notice-area .content-wrap {
  background: var(--textColor);
  padding: 0 5px 5px;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.c-important-notice-area .content-wrap.is-active {
  opacity: 1;
  pointer-events: auto;
}
.c-important-notice-area .content-wrap .inner {
  background: var(--white);
  border-radius: 4px;
  padding: 0 0 20px;
  max-height: 75vh;
  overflow: auto;
}
.c-important-notice-area .content-wrap .c-news-list li:first-child::after {
  content: none;
}
.c-important-notice-area .content-wrap .more-btn-area {
  margin-top: 10px;
  text-align: right;
}
.c-important-notice-area .content-wrap .notice-close-btn {
  border: 1px solid var(--textColor);
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  padding: 5px 20px 5px 30px;
  position: relative;
}
.c-important-notice-area .content-wrap .notice-close-btn::before {
  background: var(--textColor);
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 6px;
  margin: auto;
}
.c-important-notice-area .content-wrap .notice-close-btn:focus-visible {
  background: var(--textColor);
  color: var(--white);
}
.c-important-notice-area .content-wrap .notice-close-btn:focus-visible::before {
  background: var(--white);
}

.c-news-list li {
  position: relative;
}
.c-news-list li::before, .c-news-list li::after {
  background: linear-gradient(to right, #000 1px, transparent 1px) repeat-x left bottom/4px 1px;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
}
.c-news-list li::before {
  bottom: 0;
}
.c-news-list li::after {
  top: 0;
  opacity: 0;
}
.c-news-list li:first-child::after {
  opacity: 1;
}
.c-news-list a {
  display: block;
  padding: 20px 0;
}
.c-news-list a:focus-visible {
  color: var(--primaryOrange);
}
.c-news-list a:focus-visible .ttl .ttl-inn::before {
  opacity: 1;
}
.c-news-list .tag-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.c-news-list .dates {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
.c-news-list .date {
  font-weight: bold;
  font-size: 1em;
}
.c-news-list .ttl {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  padding-right: 50px;
  position: relative;
  margin-top: 10px;
}
.c-news-list .ttl::before {
  background: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  rotate: -90deg;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
}
.c-news-list .ttl .ttl-inn {
  display: block;
  position: relative;
  font-size: 1em;
}
.c-news-list .ttl .ttl-inn::before {
  background: var(--primaryOrange);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 0;
}

.c-tab-btn-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 20px;
}
.c-tab-btn-list > li {
  border: 1px solid var(--textGray);
  position: relative;
}
.c-tab-btn-list > li.is-active .btn:not([aria-selected=true]):not(.disabled):focus-visible {
  color: var(--white);
}
.c-tab-btn-list .btn {
  color: var(--textGray);
  display: block;
  font-weight: bold;
  font-size: 1em;
  padding: 10px 10px;
  letter-spacing: 0.2em;
  text-align: center;
  width: 100%;
  height: 100%;
}
.c-tab-btn-list .btn[aria-selected=true] {
  background: var(--primaryOrange);
  color: var(--white);
}
.c-tab-btn-list .btn[aria-selected=true].cat-btn::before {
  background: var(--white);
}
.c-tab-btn-list .btn[aria-selected=true].btn::before {
  background: var(--white);
}
.c-tab-btn-list .btn.disabled {
  background: var(--borderGray02);
  color: var(--white);
  pointer-events: none;
}
.c-tab-btn-list .btn:focus-visible:not([aria-selected=true]):not(.disabled) {
  color: var(--primaryOrange);
}
.c-tab-btn-list.news-category-tab > li.is-active {
  border: 1px solid var(--primaryOrange);
  border-radius: 2px;
}
.c-tab-btn-list.news-category-tab > li.is-active .btn {
  background: var(--primaryOrange);
  color: var(--white);
}
.c-tab-btn-list.news-category-tab > li.is-active .btn::before {
  background: var(--white);
}
.c-tab-btn-list.news-category-tab > li.is-active .aco-list {
  opacity: 1;
  pointer-events: auto;
  display: block;
}
.c-tab-btn-list.news-category-tab > li.is-active .cat-btn::before {
  rotate: 180deg;
  background: var(--white);
}
.c-tab-btn-list.news-category-tab > li.is-active::before {
  background: var(--white);
}
.c-tab-btn-list.news-category-tab > li:focus-visible .aco-list:not(:empty) {
  opacity: 1;
  pointer-events: auto;
  display: block;
}
.c-tab-btn-list.news-category-tab > li.ico-external .btn::before {
  -webkit-mask-image: url(https://tw.cando-web.co.jp/img/common/ico-external.svg);
          mask-image: url(https://tw.cando-web.co.jp/img/common/ico-external.svg);
  width: 16px;
  height: 16px;
}
.c-tab-btn-list.news-category-tab > li.ico-external .btn[aria-selected=true] {
  background: var(--white);
  color: var(--textGray);
}
.c-tab-btn-list.news-category-tab > li.ico-external .btn[aria-selected=true]:focus-visible {
  color: var(--primaryOrange);
}
.c-tab-btn-list.news-category-tab > li.ico-external.is-active {
  border-color: var(--textGray);
}
.c-tab-btn-list.news-category-tab > li.ico-external.is-active .btn {
  background: var(--white);
  color: var(--textGray);
}
.c-tab-btn-list.news-category-tab > li.ico-external.is-active .btn::before {
  background: var(--primaryOrange);
}
.c-tab-btn-list.news-category-tab > li.ico-external.is-active .btn:focus-visible {
  color: var(--primaryOrange);
}
.c-tab-btn-list.news-category-tab .aco-list {
  background: var(--white);
  border: 1px solid var(--primaryOrange);
  border-radius: 0 0 2px 2px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: -1px;
  width: calc(100% + 2px);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  display: none;
}
.c-tab-btn-list.news-category-tab .aco-list a {
  color: var(--textGray);
  font-size: 0.875em;
  display: block;
  text-align: center;
  padding: 10px 10px;
}
.c-tab-btn-list.news-category-tab .aco-list a:focus-visible {
  background: var(--paleOrange);
  color: var(--primaryOrange);
}
.c-tab-btn-list.news-category-tab .cat-btn {
  position: relative;
}
.c-tab-btn-list.news-category-tab .cat-btn::before {
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  position: absolute;
  bottom: 0;
  top: 2px;
  right: 8px;
  margin: auto;
}
.home-news-section .c-tab-btn-list > li .btn:focus-visible::after {
  content: "";
  position: absolute;
  border: 1px solid var(--primaryOrange);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: 0;
  left: -1px;
  bottom: 0;
  margin: auto;
}

.c-sns-link-wrap {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
}
.c-sns-link-wrap .character {
  margin: auto;
  width: 150px;
  height: 121px;
}
.c-sns-link-wrap .sns-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.c-sns-link-wrap .sns-link li {
  width: 46px;
  height: 46px;
}
.c-sns-link-wrap .sns-link a {
  background: var(--textColor);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.c-sns-link-wrap .sns-link a img {
  max-width: 26px;
  max-height: 26px;
}
.c-sns-link-wrap .sns-link a:focus-visible {
  background: var(--primaryOrange);
}

.c-article-wrap .news-pdf-div {
  margin-top: 30px;
}
.c-article-wrap .news-pdf-div .notice {
  color: #999;
  font-size: 14px;
  margin-bottom: 15px;
}
.c-article-wrap .ttl-wrap {
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
}
.c-article-wrap .ttl-wrap::before {
  background: linear-gradient(to right, #000 1px, transparent 1px) repeat-x left bottom/4px 1px;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.c-article-wrap .ttl-wrap .c-tags {
  margin-bottom: 15px;
}
.c-article-wrap .ttl-wrap .ttl {
  font-size: 1.75em;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 10px;
}
.c-article-wrap .ttl-wrap .dates {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.c-article-wrap .ttl-wrap .dates .c-new {
  margin: 0;
}
.c-article-wrap .ttl-wrap .dates .date {
  font-weight: bold;
  letter-spacing: 0.05em;
}
.c-article-wrap .btn-wrap {
  margin-top: 80px;
  position: relative;
  text-align: center;
}
.c-article-wrap .btn-wrap .next-prev-area .prev,
.c-article-wrap .btn-wrap .next-prev-area .next {
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 5px 0;
  position: relative;
}
.c-article-wrap .btn-wrap .next-prev-area .prev::before,
.c-article-wrap .btn-wrap .next-prev-area .next::before {
  background: var(--textColor);
  border-radius: 50%;
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
}
.c-article-wrap .btn-wrap .next-prev-area .prev::after,
.c-article-wrap .btn-wrap .next-prev-area .next::after {
  background: var(--white);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-article-wrap .btn-wrap .next-prev-area .prev:focus-visible,
.c-article-wrap .btn-wrap .next-prev-area .next:focus-visible {
  color: var(--primaryOrange);
}
.c-article-wrap .btn-wrap .next-prev-area .prev:focus-visible::before,
.c-article-wrap .btn-wrap .next-prev-area .next:focus-visible::before {
  background: var(--primaryOrange);
}
.c-article-wrap .btn-wrap .next-prev-area .prev {
  left: 0;
  padding-left: 40px;
}
.c-article-wrap .btn-wrap .next-prev-area .prev::before {
  left: 0;
}
.c-article-wrap .btn-wrap .next-prev-area .prev::after {
  rotate: 90deg;
  left: 8px;
}
.c-article-wrap .btn-wrap .next-prev-area .next {
  right: 0;
  padding-right: 40px;
}
.c-article-wrap .btn-wrap .next-prev-area .next::before {
  right: 0;
}
.c-article-wrap .btn-wrap .next-prev-area .next::after {
  rotate: -90deg;
  right: 8px;
}

.c-article-content p {
  font-size: 1em;
  margin-top: 10px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.c-article-content a {
  display: inline-block;
  color: var(--primaryOrange);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.c-article-content .news-pdf-div a {
  text-decoration: none;
}
.c-article-content img {
  margin: 20px 0 0;
}
.c-article-content img + p {
  margin-top: 30px;
}
.c-article-content h2 {
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 25px 0 15px;
}
.c-article-content h3 {
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 20px 0 10px;
}
.c-article-content h4 {
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 20px 0 10px;
}
.c-article-content table {
  margin: 60px 0 0;
  width: 100%;
  border: none;
}
.c-article-content table colgroup {
  display: block;
}
.c-article-content table tr:last-child th,
.c-article-content table tr:last-child td {
  border-bottom: 1px dotted #aba8a8;
}
.c-article-content table th,
.c-article-content table td {
  border-top: 1px dotted #aba8a8;
  font-size: 1em;
  letter-spacing: 0.04em;
  border-left: none;
  border-right: none;
}
.c-article-content table th {
  padding: 24px 10px 24px 0;
  width: 130px;
  text-align: left;
}
.c-article-content table td {
  padding: 24px 0;
}
.c-article-content ul,
.c-article-content ol {
  margin: 60px 0 0;
}
.c-article-content ul li + li,
.c-article-content ol li + li {
  margin-top: 5px;
}
.c-article-content ul li {
  padding-left: 15px;
  position: relative;
}
.c-article-content ul li::before {
  background: var(--primaryOrange);
  border-radius: 5px;
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 10px;
  left: 0;
  margin: auto;
}
.c-article-content ol {
  counter-reset: number 0;
}
.c-article-content ol li {
  padding-left: 28px;
  text-indent: -28px;
}
.c-article-content ol li::before {
  color: var(--primaryOrange);
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) ".";
  font-weight: bold;
}
.c-article-content iframe {
  aspect-ratio: 600/450;
  width: 100%;
  height: auto;
}

/* --------------------------------
c-desc-wrap
----------------------------------- */
.c-desc-wrap .desc {
  font-size: 1em;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
.c-desc-wrap .desc:not(:last-child) {
  margin-bottom: 80px;
}
.c-desc-wrap .desc-texts-wrap:not(:last-child) {
  margin-bottom: 60px;
}
.c-desc-wrap .ttl-red {
  font-size: 1.125em;
  line-height: 1.2;
  font-weight: 600;
  border-left: 6px solid var(--primaryOrange);
  padding-left: 8px;
  margin-bottom: 16px;
}
.c-desc-wrap .ttl-red.border-none {
  border-left: none;
  padding-left: none;
}
.c-desc-wrap .sub-ttl {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  color: var(--primaryOrange);
  line-height: 1.5;
  margin-bottom: 10px;
}
.c-desc-wrap .bigger {
  font-size: 1.125em;
  line-height: 1.2;
}
.c-desc-wrap .big {
  font-size: 1.5em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.c-desc-wrap .txt {
  line-height: 1.5;
}
.c-desc-wrap .txt + .bigger {
  margin-top: 40px;
}
.c-desc-wrap .txt + .txt {
  margin-top: 16px;
}
.c-desc-wrap .sub-ttl-black {
  font-size: 1em;
  margin-top: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}
.c-desc-wrap .sub-ttl-black::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  background-color: #000;
  border-radius: 50%;
  margin-right: 3px;
  margin-bottom: 2px;
}

.c-form select,
.c-form input,
.c-form textarea {
  caret-color: var(--primaryOrange);
}
.c-form select:focus,
.c-form input:focus,
.c-form textarea:focus {
  border-color: var(--textColor);
  color: var(--textColor);
}
.c-form select:focus::-webkit-input-placeholder, .c-form input:focus::-webkit-input-placeholder, .c-form textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.c-form select:focus::-moz-placeholder, .c-form input:focus::-moz-placeholder, .c-form textarea:focus::-moz-placeholder {
  opacity: 0;
}
.c-form select:focus:-ms-input-placeholder, .c-form input:focus:-ms-input-placeholder, .c-form textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.c-form select:focus::-ms-input-placeholder, .c-form input:focus::-ms-input-placeholder, .c-form textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
.c-form select:focus::placeholder,
.c-form input:focus::placeholder,
.c-form textarea:focus::placeholder {
  opacity: 0;
}
.c-form select:active, .c-form select:user-valid,
.c-form input:active,
.c-form input:user-valid,
.c-form textarea:active,
.c-form textarea:user-valid {
  border-color: var(--borderGray02);
  color: var(--textColor);
}
.c-form select:disabled,
.c-form input:disabled,
.c-form textarea:disabled {
  background-color: var(--borderGray02);
  color: var(--textColor);
}
.c-form select:disabled::-webkit-input-placeholder, .c-form input:disabled::-webkit-input-placeholder, .c-form textarea:disabled::-webkit-input-placeholder {
  color: var(--textColor);
}
.c-form select:disabled::-moz-placeholder, .c-form input:disabled::-moz-placeholder, .c-form textarea:disabled::-moz-placeholder {
  color: var(--textColor);
}
.c-form select:disabled:-ms-input-placeholder, .c-form input:disabled:-ms-input-placeholder, .c-form textarea:disabled:-ms-input-placeholder {
  color: var(--textColor);
}
.c-form select:disabled::-ms-input-placeholder, .c-form input:disabled::-ms-input-placeholder, .c-form textarea:disabled::-ms-input-placeholder {
  color: var(--textColor);
}
.c-form select:disabled::placeholder,
.c-form input:disabled::placeholder,
.c-form textarea:disabled::placeholder {
  color: var(--textColor);
}
.c-form .error .head .ttl {
  color: var(--primaryOrange);
}
.c-form .error input,
.c-form .error textarea,
.c-form .error select {
  background-color: var(--backOrange);
  border-color: var(--primaryOrange);
}
.c-form .caution-area {
  margin-top: 28px;
  margin-bottom: 28px;
}
.c-form .tables-area .inn {
  padding: 50px 0;
}
.c-form .confirm-area {
  margin-top: 80px;
  padding: 30px 40px;
  background-color: var(--paleOrange);
  max-width: 480px;
  margin-inline: auto;
  text-align: center;
}
.c-form .btn-area {
  margin-top: 54px;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-form .btn-area:has(button:only-child) {
  margin-top: 90px;
}
.c-form .form-list {
  width: 100%;
  text-align: left;
}
.c-form .form-list .head,
.c-form .form-list .body {
  display: block;
  width: 100%;
}
.c-form .form-list .head {
  font-size: 1.125em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px 16px;
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
  font-weight: 600;
  padding: 30px 0 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form .form-list .head .ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px 16px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-form .form-list .head .small {
  font-size: 0.875em;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.c-form .form-list .req {
  background: var(--primaryOrange);
  border-radius: 2px;
  color: var(--white);
  font-weight: bold;
  font-size: 0.875em;
  padding: 5px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-form .form-list .body {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-bottom: 30px;
}
.c-form .form-list .ul-inside-wrap {
  padding-top: 20px;
}
.c-form .form-list .c-link02 {
  margin-bottom: 18px;
}
.c-form .form-list .radioboxs-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.c-form .form-list:not(.form-confirm-list) > li:first-child {
  padding-top: 20px;
}
.c-form .form-list:not(.form-confirm-list) > li:last-child {
  padding-bottom: 20px;
}
.c-form .form-list + .form-list li:first-child::after {
  content: none;
}
.c-form .form-list.form-input-list li:not(:first-child)::after {
  content: none;
}
.c-form .form-list.form-input-list li:not(:last-child)::before {
  content: none;
}
.c-form .form-list.form-input-list li + li .head {
  padding-top: 0;
}
.c-form .error-txt {
  color: var(--primaryOrange);
  font-size: 0.875em;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 8px;
}
.c-form .back-btn, .c-form .submit-btn {
  font-weight: 600;
}
.c-form .submit-btn {
  padding: 12px 20px;
  min-width: 264px;
}

.c-select select, .c-input, .c-textarea {
  border-radius: 2px;
}

.c-select {
  position: relative;
}
.c-select::before {
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  position: absolute;
  bottom: 0;
  right: 8px;
  top: 0;
  margin: auto;
  pointer-events: none;
}
.c-select select {
  background: var(--white);
  border: 1px solid var(--borderGray02);
  color: var(--textGray);
  font-size: 1em;
  padding: 10px 24px 10px 10px;
  width: 100%;
}

.c-input {
  border: 1px solid var(--borderGray02);
  color: var(--textGray);
  font-size: 1em;
  padding: 8px 10px;
  width: 100%;
}

.c-textarea {
  border: 1px solid var(--borderGray02);
  color: var(--textGray);
  font-size: 1em;
  padding: 10px;
  width: 100%;
  height: 300px;
}

.c-radio input,
.c-checkbox input {
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
}
.c-radio input:focus-visible + .txt,
.c-checkbox input:focus-visible + .txt {
  outline: 2px dashed;
  border-radius: 2px;
  outline-offset: 3px;
  outline-color: var(--primaryOrange);
}
.c-radio .txt,
.c-checkbox .txt {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 24px;
}
.c-radio .txt::before,
.c-checkbox .txt::before {
  -webkit-transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.c-radio .txt::after,
.c-checkbox .txt::after {
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.c-radio .txt {
  position: relative;
}
.c-radio .txt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid var(--textGray);
  border-radius: 50%;
  background-color: var(--white);
}
.c-radio .txt::after {
  border-radius: 50%;
  background: var(--primaryOrange);
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  opacity: 0;
}
.c-radio input:checked + .txt::after {
  opacity: 1;
}
.c-radio input:checked + .txt::before {
  border-color: var(--primaryOrange);
}

.c-checkbox .txt {
  position: relative;
}
.c-checkbox .txt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid var(--textGray);
  background-color: var(--white);
}
.c-checkbox .txt::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  margin: auto;
  width: 10px;
  height: 10px;
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-check.svg) no-repeat center center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-check.svg) no-repeat center center/contain;
  background-color: var(--primaryOrange);
  opacity: 0;
}
.c-checkbox input:checked + .txt::after {
  opacity: 1;
}
.c-checkbox input:checked + .txt::before {
  border-color: var(--primaryOrange);
}

.c-status-page {
  text-align: center;
}
.c-status-page .img {
  margin-bottom: 50px;
}
.c-status-page .title {
  font-size: 1.5em;
  line-height: 24px;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.c-status-page .title + .c-btn01 {
  margin-top: 80px;
}
.c-status-page .note {
  font-size: 1em;
  letter-spacing: 0.04em;
  margin-bottom: 80px;
}
.c-status-page .c-btn01 {
  padding-left: 75px;
  padding-right: 75px;
  font-weight: 600;
}

/* --------------------------------
アクセシビリティ 閲覧補助
----------------------------------- */
.support-items {
  position: relative;
}
.support-items .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.support-items .box + .box {
  margin-top: 15px;
}
.support-items .box-ttl {
  color: var(--textColor);
  font-size: 1em;
  text-align: left;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 5px;
}
.support-items .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.support-items .list .acc-btn {
  border: 1px solid var(--textGray);
  color: var(--textColor);
  font-size: 1em;
  width: 100%;
}
.support-items .color-list .acc-btn {
  border-radius: 50px;
  display: block;
  font-size: 0.875em;
  padding: 6px 10px;
  position: relative;
}
.support-items .color-list .acc-btn::before {
  background: var(--primaryOrange);
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -5px;
  left: 0;
  opacity: 0;
}
.support-items .color-list .acc-btn:focus-visible::before {
  opacity: 1;
}
.support-items .color-list li + li {
  margin-left: 2px;
}
.support-items .color-list li:nth-of-type(2) .acc-btn {
  color: #fff;
  border-color: #000;
  background-color: #000;
}
.support-items .color-list li:nth-of-type(3) .acc-btn {
  color: #FF0;
  border-color: #00F;
  background-color: #00F;
}
.support-items .color-list li:nth-of-type(4) .acc-btn {
  color: #000;
  border-color: var(--textGray);
  background-color: #FF0;
}
.support-items .size-list .acc-btn {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.support-items .size-list .acc-btn::before {
  background: var(--primaryOrange);
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
}
.support-items .size-list .acc-btn:focus-visible {
  background: var(--primaryOrange);
  color: var(--white);
}
.support-items .size-list li {
  width: 33.3333333333%;
}
.support-items .size-list li + li .acc-btn {
  border-left: none;
}
.support-items .size-list li:nth-child(1) .acc-btn {
  border-radius: 4px 0 0 4px;
  font-size: 1.25em;
}
.support-items .size-list li:nth-child(3) .acc-btn {
  border-radius: 0 4px 4px 0;
}

.c-web-support {
  font-size: 1.125em;
  font-weight: bold;
  padding: 0 18px 0 40px;
  position: relative;
}
.c-web-support::before, .c-web-support::after {
  content: "";
  display: block;
  margin: auto;
  bottom: 0;
  top: 0;
}
.c-web-support::before {
  background: var(--textColor);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-accessibility.svg) no-repeat center center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-accessibility.svg) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.c-web-support::after {
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  width: 14px;
  height: 8px;
  position: absolute;
  top: 2px;
  right: 0;
  -webkit-transition: none;
  transition: none;
}
.c-web-support:focus-visible {
  color: var(--primaryOrange);
}
.c-web-support:focus-visible::before {
  background: var(--primaryOrange);
}
.c-web-support.is-active + .c-support-popup {
  opacity: 1;
  pointer-events: auto;
}

.c-support-popup {
  border: 1px solid var(--textGray);
  border-radius: 4px;
  position: absolute;
  right: 0;
  top: 100%;
  margin: auto;
  background-color: var(--white);
  max-height: 300px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  padding-top: 0.625em;
  opacity: 0;
  pointer-events: none;
  z-index: 101;
}
.c-support-popup .close-btn {
  border-top: 1px solid var(--textGray);
  color: var(--textColor);
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  margin: 10px 0 0;
  padding: 10px;
}
.c-support-popup .close-btn .inn {
  font-weight: bold;
  padding-left: 26px;
  position: relative;
}
.c-support-popup .close-btn .inn::before {
  background: var(--textColor);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-close.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-close.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  margin: auto;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.c-support-popup .close-btn:focus-visible {
  color: var(--primaryOrange);
}
.c-support-popup .close-btn:focus-visible .inn::before {
  background: var(--primaryOrange);
}

header, main, footer {
  font-size: 100%;
}

.web-support-wrapper[data-font_size=large] header, .web-support-wrapper[data-font_size=large] main, .web-support-wrapper[data-font_size=large] footer {
  font-size: 120%;
}
.web-support-wrapper[data-font_size=small] header, .web-support-wrapper[data-font_size=small] main, .web-support-wrapper[data-font_size=small] footer {
  font-size: 80%;
}
.web-support-wrapper[data-color=black] {
  --textColor: #fff;
  --white: #000;
  --textGray: #fff;
  --paleGray: #000;
  --borderGray: #fff;
  --borderGray02: #fff;
  --primaryOrange: #FF0;
  --paleOrange: #000;
  --borderOrange: #fff;
  --backOrange: #000;
}
.web-support-wrapper[data-color=black] header, .web-support-wrapper[data-color=black] main, .web-support-wrapper[data-color=black] footer {
  background: var(--white);
  color: var(--textColor);
}
.web-support-wrapper[data-color=black] .c-sns-link-wrap .sns-link a {
  background: var(--white);
}
.web-support-wrapper[data-color=blue] {
  --textColor: #FF0;
  --white: #00F;
  --textGray: #FF0;
  --paleGray: #00F;
  --borderGray: #FF0;
  --borderGray02: #FF0;
  --primaryOrange: #FFF;
  --paleOrange: #00F;
  --borderOrange: #FF0;
  --backOrange: #00F;
}
.web-support-wrapper[data-color=blue] header, .web-support-wrapper[data-color=blue] main, .web-support-wrapper[data-color=blue] footer {
  background: var(--white);
  color: var(--textColor);
}
.web-support-wrapper[data-color=blue] .c-sns-link-wrap .sns-link a {
  background: var(--white);
}
.web-support-wrapper[data-color=yellow] {
  --textColor: #000;
  --white: #FF0;
  --textGray: #000;
  --paleGray: #FF0;
  --borderGray: #000;
  --borderGray02: #000;
  --primaryOrange: #000;
  --paleOrange: #FF0;
  --borderOrange: #000;
  --backOrange: #FF0;
}
.web-support-wrapper[data-color=yellow] header, .web-support-wrapper[data-color=yellow] main, .web-support-wrapper[data-color=yellow] footer {
  background: var(--white);
  color: var(--textColor);
}
.web-support-wrapper[data-color=yellow] .c-sns-link-wrap .sns-link a {
  background: var(--textColor);
}
.web-support-wrapper[data-color=black] .c-btn01.disabled,
.web-support-wrapper[data-color=black] .c-btn01:disabled, .web-support-wrapper[data-color=blue] .c-btn01.disabled,
.web-support-wrapper[data-color=blue] .c-btn01:disabled, .web-support-wrapper[data-color=yellow] .c-btn01.disabled,
.web-support-wrapper[data-color=yellow] .c-btn01:disabled {
  opacity: 0.6;
}

#wrapper[data-color=normal] .support-items .color-list .acc-btn[data-color=normal]::before {
  opacity: 1;
}
#wrapper[data-color=black] .support-items .color-list .acc-btn[data-color=black] {
  border-color: var(--textGray);
}
#wrapper[data-color=black] .support-items .color-list .acc-btn[data-color=black]::before {
  opacity: 1;
}
#wrapper[data-color=black] .corporate-messages-section .mv .top-txt {
  color: var(--white);
}
#wrapper[data-color=blue] .support-items .color-list .acc-btn[data-color=blue] {
  border-color: var(--textGray);
}
#wrapper[data-color=blue] .support-items .color-list .acc-btn[data-color=blue]::before {
  opacity: 1;
}
#wrapper[data-color=blue] .corporate-messages-section .mv .top-txt {
  color: var(--white);
}
#wrapper[data-color=yellow] .support-items .color-list .acc-btn[data-color=yellow]::before {
  opacity: 1;
}
#wrapper[data-color=yellow] .c-tab-btn-list li .btn:focus-visible {
  background: var(--primaryOrange);
  color: var(--white);
}
#wrapper[data-color=yellow] .c-tab-btn-list li .btn:focus-visible::before {
  background: var(--white);
}
#wrapper[data-color=yellow] .c-btn01:not(.back-btn):not(.disabled):not(:disabled) {
  border: 1px solid var(--primaryOrange);
}
#wrapper[data-color=yellow] .c-btn01:not(.back-btn):not(.disabled):not(:disabled):focus-visible {
  color: var(--primaryOrange);
}
#wrapper[data-color=yellow] .c-btn01:not(.back-btn):not(.disabled):not(:disabled):focus-visible::before {
  background: var(--primaryOrange);
}
#wrapper[data-color=yellow] .c-btn01:not(.back-btn):not(.disabled):not(:disabled):focus-visible::after {
  background: var(--white);
}
#wrapper[data-color=yellow] .c-btn01:not(.back-btn):not(.disabled):not(:disabled).ico-external:focus-visible {
  background-color: var(--white);
  color: var(--primaryOrange);
}
#wrapper[data-color=yellow] .c-btn02 {
  border: 1px solid var(--primaryOrange);
}
#wrapper[data-color=yellow] .c-btn02:focus-visible {
  background: var(--white);
  color: var(--primaryOrange);
}
#wrapper[data-color=yellow] .corporate-messages-section .mv .top-txt {
  color: var(--white);
}
#wrapper[data-font_size=normal] .support-items .size-list .acc-btn[data-size=normal]::before {
  opacity: 1;
}
#wrapper[data-font_size=large] .support-items .size-list .acc-btn[data-size=large]::before {
  opacity: 1;
}
#wrapper[data-font_size=small] .support-items .size-list .acc-btn[data-size=small]::before {
  opacity: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------
アクセシビリティ 対応方針ページ
----------------------------------- */
.accessibility .c-ttl02 {
  margin-top: 80px;
}
.accessibility .txt + .txt {
  margin-top: 10px;
}
.accessibility .list {
  margin-top: 10px;
}
.accessibility .list li {
  padding-left: 15px;
  position: relative;
}
.accessibility .list li::before {
  background: var(--primaryOrange);
  border-radius: 50px;
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 9px;
  left: 3px;
  margin: auto;
}
.accessibility .table {
  margin-top: 15px;
}
.accessibility .table table {
  width: 100%;
}
.accessibility .table thead th {
  background: var(--paleOrange);
  border-bottom: 1px solid var(--borderGray);
  padding: 15px;
}
.accessibility .table thead th:nth-of-type(2) {
  width: 40%;
}
.accessibility .table thead th:last-child {
  width: 300px;
}
.accessibility .table tbody td {
  border-bottom: 1px solid var(--borderGray);
  padding: 15px;
}
.accessibility .table tbody td:nth-child(1), .accessibility .table tbody td:nth-child(3), .accessibility .table tbody td:nth-child(4) {
  text-align: center;
}
.accessibility .table summary {
  overflow: hidden;
  height: 1px;
  position: absolute;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
main.home {
  overflow: hidden;
}

.home-mv-section {
  overflow: hidden;
  max-height: 500px;
}
.home-mv-section .loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.home-mv-section .splide__track {
  overflow: visible;
}
.home-mv-section .splide__slide {
  border: 1px solid #D5D4D3;
  aspect-ratio: 1010/406;
}
.home-mv-section .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-mv-section .splide__pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  max-width: 680px;
  margin: 20px auto 0;
  position: static;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.home-mv-section .splide__pagination li {
  width: 100%;
}
.home-mv-section .splide__pagination .splide__pagination__page {
  background: var(--borderGray);
  border-radius: 0;
  display: block;
  margin: 0;
  width: 100%;
  height: 3px;
  opacity: 1;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.home-mv-section .splide__pagination .splide__pagination__page.is-active {
  background: var(--primaryOrange);
}
.home-mv-section .splide__pagination .splide__pagination__page:not(.is-active):focus-visible {
  background: var(--paleOrange);
}
.home-mv-section .control-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 25px auto 0;
  position: relative;
  padding: 0 44px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home-mv-section .control-wrap .splide__arrow--prev,
.home-mv-section .control-wrap .splide__arrow--next {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
}
.home-mv-section .control-wrap .splide__arrow--prev {
  left: 0;
}
.home-mv-section .control-wrap .splide__arrow--next {
  right: 0;
}
.home-mv-section .splide__toggle {
  background: var(--primaryOrange);
  border: 2px solid var(--primaryOrange);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: relative;
}
.home-mv-section .splide__toggle .splide__toggle__play,
.home-mv-section .splide__toggle .splide__toggle__pause {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-mv-section .splide__toggle .splide__toggle__play::before,
.home-mv-section .splide__toggle .splide__toggle__pause::before {
  background: var(--white);
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.home-mv-section .splide__toggle .splide__toggle__play::before {
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-play.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-play.svg) no-repeat center/contain;
  width: 10px;
  height: 14px;
}
.home-mv-section .splide__toggle .splide__toggle__pause::before {
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-stop.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-stop.svg) no-repeat center/contain;
  width: 10px;
  height: 14px;
}
.home-mv-section .splide__toggle.is-active {
  display: block;
}
.home-mv-section .splide__toggle:focus-visible {
  background: var(--white);
}
.home-mv-section .splide__toggle:focus-visible .splide__toggle__play::before,
.home-mv-section .splide__toggle:focus-visible .splide__toggle__pause::before {
  background: var(--primaryOrange);
}

.home-products-section {
  position: relative;
  padding-bottom: 120px;
}
.home-products-section .products-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 60px 30px;
}
.home-products-section .products-list li {
  width: calc((100% - 90px) / 4);
}
.home-products-section .products-list a {
  display: block;
}
.home-products-section .products-list .img {
  position: relative;
  aspect-ratio: 1/1;
}
.home-products-section .products-list .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-products-section .products-list .img::before {
  border: 2px solid var(--borderOrange);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.home-products-section .products-list .ico {
  background: var(--white);
  width: 32px;
  height: 32px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.home-products-section .products-list .ico::before, .home-products-section .products-list .ico::after {
  background: var(--borderOrange);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.home-products-section .products-list .ico::before {
  width: 100%;
  height: 2px;
}
.home-products-section .products-list .ico::after {
  width: 2px;
  height: 100%;
}
.home-products-section .products-list .ico img {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.home-products-section .products-list .ttl {
  font-weight: bold;
  font-size: 1.125em;
  margin-top: 10px;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home-products-section .character {
  position: absolute;
  bottom: -10px;
  right: -285px;
  width: 660px;
}

.home-sns-section + .home-sns-section {
  margin-top: 10px;
}
.home-sns-section .inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home-sns-section .btn-wrap {
  margin-top: 40px;
}
.home-sns-section .content-wrap {
  width: 100%;
}
.home-sns-section .instagram-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
}
.home-sns-section .instagram-area .img {
  border-radius: 5px;
  display: block;
  overflow: hidden;
}
.home-sns-section .instagram-area .img:focus-visible {
  opacity: 0.8;
}
.home-sns-section .sns-x-area {
  position: relative;
}
.home-sns-section .sns-x-area .splide__slide {
  padding: 5px;
}
.home-sns-section .sns-x-area .splide__slide .link-slide {
  background: var(--white);
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 8px 0px #e5dbd8;
          box-shadow: 0px 0px 8px 0px #e5dbd8;
  display: block;
  letter-spacing: 0;
  padding: 15px 20px 45px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  height: 100%;
}
.home-sns-section .sns-x-area .splide__slide .link-slide:focus-visible {
  opacity: 0.8;
}
.home-sns-section .sns-x-area .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.home-sns-section .sns-x-area .info .ico {
  border: 1px solid var(--textColor);
  border-radius: 50%;
  overflow: hidden;
  width: 56px;
  height: 56px;
}
.home-sns-section .sns-x-area .info .ico img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.home-sns-section .sns-x-area .info .inn {
  width: calc(100% - 56px);
  padding-left: 10px;
  padding-right: 22px;
  position: relative;
}
.home-sns-section .sns-x-area .info .inn::before {
  background: url(https://tw.cando-web.co.jp/img/common/sns-ico-x-black.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
}
.home-sns-section .sns-x-area .info .inn .name {
  font-weight: bold;
  font-size: 1.125em;
}
.home-sns-section .sns-x-area .info .inn .id {
  color: var(--textGray);
}
.home-sns-section .sns-x-area .txt {
  line-height: 1.56;
  margin-top: 20px;
}
.home-sns-section .sns-x-area .img-list {
  margin-top: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}
.home-sns-section .sns-x-area .img-list .img {
  width: calc((100% - 7px) / 2);
}
.home-sns-section .sns-x-area .img-list .img img {
  width: 100%;
}
.home-sns-section .sns-x-area .img-list .img:only-child {
  width: 100%;
}

.home-shop-section {
  padding-bottom: 120px;
  position: relative;
}
.home-shop-section .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.home-shop-section .character {
  position: absolute;
  bottom: 0;
  left: 60px;
  width: 100px;
}

.home-online-section .lead {
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1.77;
  margin: auto;
  padding: 0 45px;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home-online-section .lead::before, .home-online-section .lead::after {
  background: var(--primaryOrange);
  content: "";
  display: block;
  width: 2px;
  height: 80px;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
}
.home-online-section .lead::before {
  rotate: 30deg;
  right: 0;
}
.home-online-section .lead::after {
  rotate: -30deg;
  left: 0;
}
.home-online-section .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px auto 0;
  gap: 20px;
}
.home-online-section .btn {
  background: var(--white);
  border: 1px solid var(--borderGray);
  border-radius: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 40px;
  position: relative;
}
.home-online-section .btn::before {
  border: 2px solid var(--primaryOrange);
  border-radius: 4px;
  content: "";
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
  opacity: 0;
  pointer-events: none;
}
.home-online-section .btn:focus-visible::before {
  opacity: 1;
}
.home-online-section .btn .ico {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  padding-left: 10px;
}
.home-online-section .btn .ico img {
  max-width: 50px;
  max-height: 50px;
}
.home-online-section .btn .inn {
  width: calc(100% - 100px);
}
.home-online-section .btn .ttl {
  color: var(--primaryOrange);
  font-size: 1.125em;
  font-weight: bold;
  letter-spacing: 0.05em;
  position: relative;
}
.home-online-section .btn .ttl::after {
  background: currentColor;
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  -webkit-transition: none;
  transition: none;
}
.home-online-section .btn .ttl .strong {
  font-size: 22px;
}
.home-online-section .btn .txt {
  font-size: 1em;
  line-height: 1.37;
  margin-top: 4px;
}
.home-online-section .btn p.note {
  font-size: 0.875em;
}
.home-news-section .btn-wrap {
  margin-top: 40px;
  text-align: center;
}

/* -----------------------------------------------
* blog detail Module
* blog detail ページ用
-------------------------------------------------- */
/* -----------------------------------------------
* corporate Module
* corporateページ用
-------------------------------------------------- */
.corporate-lead-section .main-ttl {
  max-width: 350px;
  margin: 0 auto 60px;
}
.corporate-lead-section .txt {
  font-size: 1.125em;
  letter-spacing: 0.1em;
  line-height: 1.77;
  text-align: center;
}
.corporate-lead-section .txt + .txt {
  margin-top: 35px;
}
.corporate-lead-section .btn-wrap {
  margin-top: 90px;
  text-align: center;
}
.corporate-wando-section .ttl-wrap .txt-area .ttl {
  margin-bottom: 25px;
  text-align: left;
}
.corporate-wando-section .ttl-wrap .txt-area .ttl img {
  max-height: 40px;
}
.corporate-wando-section .ttl-wrap .txt-area .txt {
  font-size: 1.125em;
  letter-spacing: 0;
  line-height: 1.77;
}
.corporate-wando-section .ttl-wrap .txt-area .txt .note {
  font-size: 0.875em;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.5;
  display: inline-block;
}
.corporate-wando-section .youtube {
  margin-top: 15px;
}
.corporate-wando-section .youtube iframe {
  border: none;
  display: block;
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.corporate-wando-section .btn-wrap {
  margin-top: 50px;
  text-align: center;
}

.corporate-link-section .inner + .inner {
  margin-top: 90px;
}
.corporate-link-section .btn-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.corporate-link-section .btn-column.column2 {
  max-width: 780px;
  margin: auto;
}

/* -----------------------------------------------
* messages Module
* messagesページ用
-------------------------------------------------- */
.corporate-messages-section .mv {
  margin-bottom: 80px;
}
.corporate-messages-section .mv .img-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.corporate-messages-section .mv .top-txt {
  font-size: 2.375em;
  line-height: 1.8421052632;
  letter-spacing: 0.14em;
  font-family: "Noto Sans JP", serif;
  padding: 0;
  margin: 0;
}
.corporate-messages-section .txt {
  font-size: 1em;
  line-height: 1.5;
}
.corporate-messages-section .txt + .txt {
  margin-top: 28px;
}
.corporate-messages-section .position {
  margin-top: 60px;
  margin-bottom: 28px;
  text-align: right;
}
.corporate-messages-section .sign {
  text-align: right;
}

/* -----------------------------------------------
* profile Module
* profileページ用
-------------------------------------------------- */
.profile-table-area .each address {
  font-style: normal;
}
.profile-table-area .each address .map {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.profile-table-area .each address .map iframe {
  border: none;
  margin-bottom: 30px;
  width: 550px;
  height: 350px;
}
.profile-table-area .each .access li + li {
  margin-top: 6px;
}
.profile-table-area .link .desc a {
  color: var(--primaryOrange);
  position: relative;
  display: inline-block;
}
.profile-table-area .link .desc a::after {
  background: var(--primaryOrange);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.profile-table-area .link .desc a:focus-visible::after {
  opacity: 0;
}
.profile-table-area .c-btn01 {
  text-align: center;
}

/* -----------------------------------------------
* concept Module
* conceptページ用
-------------------------------------------------- */
.corporate-concept-section .philosophy-list li + li {
  margin-top: 40px;
}

/* -----------------------------------------------
* history Module
* historyページ用
-------------------------------------------------- */
/* -----------------------------------------------
* management Module
* managementページ用
-------------------------------------------------- */
.corporate-management-section .c-num-list li::before {
  font-weight: 600;
}
.corporate-management-section .bold {
  font-weight: 600;
}
.corporate-management-section .img-area {
  width: 100%;
  text-align: center;
}

/* -----------------------------------------------
* executives Module
* executivesページ用
-------------------------------------------------- */
.corporate-executives-section .c-tab-btn-list .btn {
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.corporate-executives-section .c-tab-btn-list .cat-btn {
  padding-right: 30px;
  position: relative;
}
.corporate-executives-section .c-tab-btn-list .cat-btn::before {
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  position: absolute;
  bottom: 0;
  top: 2px;
  right: 8px;
  margin: auto;
}

.executives-table-area .exe-each {
  margin-top: 60px;
}
.executives-table-area .exe-each .c-ttl02 {
  margin-bottom: 8px;
}
.executives-table-area .exe-each .c-ttl02.dots {
  position: relative;
}
.executives-table-area .exe-each .c-ttl02.dots::before {
  background: linear-gradient(to right, #000 1px, transparent 1px) repeat-x left bottom/4px 1px;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -8px;
}
.executives-table-area .note {
  margin-top: 10px;
  text-align: right;
}
.executives-table-area .scroll-txt {
  margin: 20px 0 0;
  font-size: 0.875em;
  text-align: left;
  width: 100%;
}
.executives-table-area .organization-chart-wrap {
  margin-top: 40px;
}

/* -----------------------------------------------
* store_planning Module
* store_planningページ用
-------------------------------------------------- */
/* -----------------------------------------------
* corporate about Module
* corporate aboutページ用
-------------------------------------------------- */
.corporate-about-section .c-desc-wrap .txt {
  letter-spacing: 0.01em;
}
.corporate-about-section .c-desc-wrap .brand-history {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 48px;
}
.corporate-about-section .c-desc-wrap .brand-history li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 10px 24px;
  justify-items: center;
}
.corporate-about-section .c-desc-wrap .brand-history li .shop-img {
  justify-self: stretch;
}
.corporate-about-section .c-desc-wrap .brand-history li .logo-img {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  width: auto;
}
.corporate-about-section .c-desc-wrap .brand-history li .logo-img.img01 {
  height: 31px;
}
.corporate-about-section .c-desc-wrap .brand-history li .logo-img.img02 {
  height: 25px;
}
.corporate-about-section .c-desc-wrap .brand-history li .logo-img.img03 {
  height: 38px;
}
.corporate-about-section .c-desc-wrap .brand-history li .history-desc {
  font-style: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  word-break: break-all;
}
.corporate-about-section .c-desc-wrap .multi-format img {
  margin: 40px auto 0 auto;
  display: block;
}
.corporate-about-section .c-desc-wrap .plan-list li + li {
  margin-top: 60px;
}
.corporate-about-section .c-desc-wrap .plan-list li h4 {
  font-weight: 600;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

/* -----------------------------------------------
* aeon Module
* aeonページ用
-------------------------------------------------- */
.corporate-aeon-section .intro {
  padding-bottom: 70px;
}
.corporate-aeon-section .intro p {
  text-align: center;
  margin-top: 15px;
  font-size: 1.25em;
}
.corporate-aeon-section .intro .logo {
  width: 200px;
  margin: 0 auto;
  display: block;
}
.corporate-aeon-section .c-btn01 {
  margin: 70px auto 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* -----------------------------------------------
* recruit Module
* recruitページ用
-------------------------------------------------- */
.recruit .c-btn-area {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 0;
}

.recruit-mv-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.recruit-mv-section .img-area {
  position: relative;
  width: 100%;
}
.recruit-mv-section .img-area .img {
  bottom: 0;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto 0;
  position: absolute;
  top: 0;
}
.recruit-mv-section .img-area img {
  width: 100%;
}
.recruit-mv-section .svg-texts-area {
  width: 100%;
}
.recruit-mv-section .texts-area {
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
.recruit-mv-section .texts-area .red {
  font-size: 1.75em;
  line-height: 1.4285714286;
  color: var(--primaryOrange);
  font-weight: bold;
  margin-bottom: 28px;
}

/* -----------------------------------------------
* recruit new/mid Module
* recruit new/midページ用
-------------------------------------------------- */
.recruit-new .mv-area,
.recruit-mid .mv-area {
  margin-bottom: 100px;
}
.recruit-new .mv-area img,
.recruit-mid .mv-area img {
  width: 100%;
}
.recruit-new .c-btn-area,
.recruit-mid .c-btn-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit-new .c-btn-area .btn,
.recruit-mid .c-btn-area .btn {
  width: 100%;
  text-align: center;
}
.recruit-new .c-btn-area .btn + .btn,
.recruit-mid .c-btn-area .btn + .btn {
  margin-top: 50px;
  padding-top: 50px;
  position: relative;
}
.recruit-new .c-btn-area .btn + .btn::before,
.recruit-mid .c-btn-area .btn + .btn::before {
  background: linear-gradient(to right, #000 1px, transparent 1px) repeat-x left bottom/4px 1px;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
}

/* -----------------------------------------------
* site_policy Module
* site_policy ページ用
-------------------------------------------------- */
.site_policy .txt-block {
  margin-bottom: 30px;
  line-height: 1.5;
}
.site_policy .adobe {
  position: relative;
  padding-right: 1.1em;
  display: inline-block;
}
.site_policy .adobe::before {
  position: absolute;
  content: "";
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
  width: 14px;
  height: 14px;
  right: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.site_policy .orange {
  color: var(--primaryOrange);
}

/* -----------------------------------------------
* privacy Module
* privacy ページ用
-------------------------------------------------- */
.privacy-area {
  margin-bottom: 70px;
}
.privacy-area .subtitle {
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 1em;
}
.privacy-area .txt {
  margin-bottom: 5px;
  line-height: 1.5;
}
.privacy-area .txt .orange {
  color: var(--primaryOrange);
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.privacy-area .txt + .txt {
  margin-top: 24px;
}
.privacy-area .right {
  margin-top: 10px;
  text-align: right;
  line-height: 1.6em;
}
.privacy-area .right li {
  line-height: 1.5;
}
.privacy-area .privacy-desc {
  margin-bottom: 40px;
}
.privacy-area .privacy-desc ol {
  margin-top: 25px;
}
.privacy-area .privacy-desc ol > li {
  text-indent: -3em;
  padding-left: 3em;
}
.privacy-area .privacy-desc ol.no-indent-list {
  margin-top: 0;
}
.privacy-area .privacy-desc ol.no-indent-list > li {
  text-indent: 0;
  padding-left: 0;
}
.privacy-area .privacy-desc ol.parentheses-num-list > li {
  text-indent: -3em;
  padding-left: 3em;
}
.privacy-area .privacy-desc li + li {
  margin-top: 5px;
}
.privacy-area .privacy-desc li .indent2 {
  padding-top: 5px;
  margin-top: 0;
}
.privacy-area .privacy-desc li .indent2 > li {
  padding-left: 0;
  text-indent: 0;
}
.privacy-area .privacy-desc li .indent2 + .detail {
  margin-top: 10px;
}
.privacy-area .privacy-desc li .detail {
  line-height: 1.5;
  padding-left: 3em;
}
.privacy-area .privacy-desc li .detail ol {
  padding-top: 5px;
  margin-top: 0;
}
.privacy-area .privacy-desc ul {
  margin-top: 25px;
}
.privacy-area .privacy-desc ul > li {
  padding-left: 1em;
  text-indent: 0;
  position: relative;
}
.privacy-area .privacy-desc ul > li::before {
  background: var(--textGray);
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0.5em;
  left: 0;
  margin: auto;
  border-radius: 50%;
}
.privacy-area .privacy-desc ul > li + li {
  margin-top: 10px;
}
.privacy-area .privacy-desc ul ol {
  margin-top: 5px;
}

/* -----------------------------------------------
* special Module
* special ページ用
-------------------------------------------------- */
.c-special-article {
  max-width: 860px;
  padding-inline: 40px;
  padding-block: 100px;
  margin-inline: auto;
  position: relative;
}
.c-special-article .special-pdf-div {
  margin-top: 30px;
}
.c-special-article .special-pdf-div .notice {
  color: #999;
  font-size: 14px;
  margin-bottom: 15px;
}
.c-special-article > :last-child {
  margin-bottom: 0;
}
.c-special-article img {
  margin-top: 50px;
}
.c-special-article * + p {
  margin-top: 20px;
}
.c-special-article p {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.005em;
}
.c-special-article h2 + p,
.c-special-article h3 + p,
.c-special-article h4 + p,
.c-special-article h5 + p,
.c-special-article h6 + p,
.c-special-article img + p {
  margin-top: 20px;
}
.c-special-article a {
  display: inline-block;
  color: var(--primaryOrange);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.c-special-article h1 {
  text-align: center;
  font-size: 1.75em;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 80px;
}
.c-special-article h2 {
  font-size: 1.75em;
  line-height: normal;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 60px;
}
.c-special-article h2:not(:first-child) {
  margin-top: 36px;
}
.c-special-article h3 {
  font-size: 1.5em;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid #aba8a8;
}
.c-special-article h3:not(:first-child) {
  margin-top: 72px;
}
.c-special-article h3 + img {
  margin-top: 0;
}
.c-special-article h4 {
  font-size: 1.125em;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 22px;
  position: relative;
  padding-left: 16px;
}
.c-special-article h4::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 20px;
  left: 0;
  top: 2px;
  margin: auto;
  background-color: var(--primaryOrange);
}
.c-special-article h4 + img {
  margin-top: 0;
}
.c-special-article h5 {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 5px;
  position: relative;
  padding-left: 13px;
}
.c-special-article h5:not(:first-child) {
  margin-top: 20px;
}
.c-special-article h5::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  left: 0;
  top: 8px;
  margin: auto;
  background-color: var(--textColor);
  border-radius: 50%;
}
.c-special-article h5 + img {
  margin-top: 0;
}
.c-special-article h6 {
  font-size: 0.875em;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 14px;
}
.c-special-article h6 + img {
  margin-top: 0;
}
.c-special-article table {
  margin: 60px 0 0;
  width: 100%;
  border: none;
}
.c-special-article table colgroup {
  display: block;
}
.c-special-article table tr:last-child th,
.c-special-article table tr:last-child td {
  border-bottom: 1px dotted #aba8a8;
}
.c-special-article table th,
.c-special-article table td {
  border-top: 1px dotted #aba8a8;
  font-size: 1em;
  letter-spacing: 0.04em;
  border-left: none;
  border-right: none;
}
.c-special-article table th {
  padding: 24px 10px 24px 0;
  width: 130px;
  text-align: left;
}
.c-special-article table td {
  padding: 24px 0;
}
.c-special-article .img-box {
  margin-top: 30px;
}
.c-special-article .img-box img {
  margin-top: 0;
}

/* -----------------------------------------------
* not found
* 404 ページ用
-------------------------------------------------- */
.error404-area {
  text-align: center;
}
.error404-area img {
  width: 215px;
}
.error404-area .title {
  font-size: 1.5em;
  padding-top: 30px;
  padding-bottom: 25px;
}
.error404-area .note {
  font-size: 1em;
  padding-bottom: 50px;
}

footer .img-404 {
  width: 60px;
  position: absolute;
  left: 180px;
  bottom: -10px;
}

.sitemap-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sitemap-wrap .col .col-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sitemap-wrap .cat-name {
  font-weight: bold;
  font-size: 1.125em;
  letter-spacing: 0.05em;
  position: relative;
  padding-right: 18px;
}
.sitemap-wrap .cat-name::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 8px;
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  rotate: -90deg;
  background-color: var(--primaryOrange);
}
.sitemap-wrap .ico-external {
  padding-right: 22px;
  position: relative;
}
.sitemap-wrap .ico-external::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
  background-color: var(--primaryOrange);
  rotate: inherit;
  width: 16px;
  height: 16px;
}

/* -----------------------------------------------
* faq Module
* faq ページ用
-------------------------------------------------- */
.faq .c-tab-btn-list li .btn {
  padding-right: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.faq .c-tab-btn-list li .btn::before {
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  position: absolute;
  bottom: 0;
  top: 2px;
  right: 8px;
  margin: auto;
}
.faq .qa-area {
  margin-top: 60px;
}
.faq .qa-list a {
  color: var(--primaryOrange);
  text-decoration: underline;
}
.faq .qa-list .each {
  border: 1px solid var(--textGray);
  position: relative;
}
.faq .qa-list .each .question, .faq .qa-list .each .answer {
  display: block;
  padding: 16px 48px;
  position: relative;
  font-size: 1em;
}
.faq .qa-list .each .question::before, .faq .qa-list .each .answer::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 14px;
  left: 10px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
}
.faq .qa-list .each .question-area {
  display: block;
  width: 100%;
  text-align: left;
  position: relative;
}
.faq .qa-list .each .question-area .ico {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 12px;
  height: 12px;
  margin: auto;
}
.faq .qa-list .each .question-area .ico::before, .faq .qa-list .each .question-area .ico::after {
  background: url(https://tw.cando-web.co.jp/img/common/ico-plus-line.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: rotate 0.2s ease-in-out;
  transition: rotate 0.2s ease-in-out;
}
.faq .qa-list .each .question-area .ico::after {
  rotate: 90deg;
}
.faq .qa-list .each .question-area.is-active .ico::after {
  rotate: 0deg;
}
.faq .qa-list .each .question {
  background-color: var(--paleOrange);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.faq .qa-list .each .question::before {
  background-image: url("https://tw.cando-web.co.jp/img/faq/question-icon.svg");
}
.faq .qa-list .each .answer-area {
  display: none;
}
.faq .qa-list .each .answer {
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.faq .qa-list .each .answer::before {
  background-image: url("https://tw.cando-web.co.jp/img/faq/answer-icon.svg");
}
.faq .qa-list .each .open-btn {
  position: absolute;
  top: 14px;
  right: 10px;
  width: 12px;
  height: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
}
.faq .qa-list .each .is-open .line:nth-child(2) {
  rotate: 180deg;
}
.faq .qa-list .each + .each {
  margin-top: 32px;
}

/* -----------------------------------------------
* ir Module
* ir ページ用
-------------------------------------------------- */
.ir .c-tab-btn-list {
  margin-bottom: 60px;
}
.ir .c-tab-btn-list li .btn {
  padding-right: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.ir .c-tab-btn-list li .btn::before {
  background: var(--primaryOrange);
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  position: absolute;
  bottom: 0;
  top: 2px;
  right: 8px;
  margin: auto;
}
.ir .notice-text {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.ir .notice-small {
  font-size: 0.875em;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
}
.ir .ir-news-link {
  margin-bottom: 50px;
}
.ir-tbl-area .scroll-hint-icon-wrap .scroll-hint-icon {
  width: 70px;
  height: 70px;
}
.ir-tbl-area .scroll-hint-icon-wrap .scroll-hint-icon::before {
  content: inherit;
}
.ir-tbl-area .scroll-hint-icon-wrap .scroll-hint-icon::after {
  width: 53px;
  height: 14px;
  background-image: url("https://tw.cando-web.co.jp/img/ir/ico-scroll-arrows.svg");
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition-delay: inherit;
          transition-delay: inherit;
}
.ir-tbl-area .scroll-hint-icon-wrap .scroll-hint-icon .scroll-hint-text {
  display: none;
}

.ir-top .c-table05 tr:first-of-type th:first-child {
  width: 220px;
}

/* -----------------------------------------------
* ir business_highlights Module
* ir business_highlights ページ用
-------------------------------------------------- */
.ir-highlights-section .c-desc-wrap {
  position: relative;
}
.ir-highlights-section summary {
  overflow: hidden;
  height: 1px;
  position: absolute;
}

/* -----------------------------------------------
* ir monthly_report Module
* ir monthly_report ページ用
-------------------------------------------------- */
.ir-monthly-section .ir-tbl-area .c-table05 tr:first-of-type th {
  padding-inline: 8px;
  max-width: 66px;
}
.ir-monthly-section .ir-tbl-area .c-table05 tr td {
  padding-inline: 8px;
}
.ir-monthly-section .month-subttl {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.ir-monthly-section .situation-list > li {
  margin-top: 16px;
}
.ir-monthly-section .situation-list > li .head,
.ir-monthly-section .situation-list > li .body {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.ir-monthly-section .situation-list > li .head {
  font-weight: 600;
}
.ir-monthly-section .situation-list > li .body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.ir-monthly-section .situation-list > li .body .b-head {
  white-space: nowrap;
}
.ir-monthly-section .situation-list > li .body .inn-list {
  max-width: 540px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
}
.ir-monthly-section summary {
  overflow: hidden;
  height: 1px;
  position: absolute;
}

/* -----------------------------------------------
* ir financial_summary Module
* ir financial_summary ページ用
-------------------------------------------------- */
.ir-summary-section .tabpanel-block .tabpanel > li {
  border: 1px solid var(--textGray);
}
.ir-summary-section .tabpanel-block .tabpanel > li + li {
  margin-top: 24px;
}
.ir-summary-section .tabpanel-block .tabpanel > li .tab-head {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  background-color: var(--paleOrange);
  position: relative;
}
.ir-summary-section .tabpanel-block .tabpanel > li .tab-head::before, .ir-summary-section .tabpanel-block .tabpanel > li .tab-head::after {
  background: url(https://tw.cando-web.co.jp/img/common/ico-plus-line.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 13px;
  margin: auto;
  -webkit-transition: rotate 0.2s ease-in-out;
  transition: rotate 0.2s ease-in-out;
}
.ir-summary-section .tabpanel-block .tabpanel > li .tab-head::after {
  rotate: 90deg;
}
.ir-summary-section .tabpanel-block .tabpanel > li .tab-head.is-active::after {
  rotate: 0deg;
}
.ir-summary-section .tabpanel-block .tabpanel > li .tab-head .txt {
  font-size: 1.125em;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-weight: 600;
}
.ir-summary-section .tabpanel-block .tabpanel > li .inn-list {
  display: none;
}
.ir-summary-section .tabpanel-block .tabpanel > li .inn-list a {
  padding: 12px 20px;
  display: block;
}
.ir-summary-section .tabpanel-block .tabpanel > li .inn-list a .inn {
  border-bottom: 1px solid transparent;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.ir-summary-section .tabpanel-block .tabpanel > li .inn-list a .c-ico-pdf {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.ir-summary-section .tabpanel-block .tabpanel > li .inn-list a .c-ico-pdf .c-new {
  margin-left: 1em;
  margin-top: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/* -----------------------------------------------
* ir stock_information Module
* ir stock_information ページ用
-------------------------------------------------- */
.ir-stock-section .c-table01 .each {
  padding-block: 28px;
}
.ir-stock-section .c-table01 .each .name {
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
}
.ir-stock-section .c-table01 .each .name.ls-0 {
  letter-spacing: 0;
}
.ir-stock-section .c-table01 .each .desc {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.ir-stock-section .c-table01 .each .desc .inn-subttl {
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.4em;
}
.ir-stock-section .c-table01 a {
  color: var(--primaryOrange);
  text-decoration: underline;
}
.ir-stock-section .c-table01 a:focus-visible {
  text-decoration: none;
}
.ir-stock-section .info-img-area {
  padding-block: 28px;
}
.ir-stock-section .info-img-area .txt {
  margin-bottom: 32px;
  font-weight: 500;
  font-style: 18px;
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
}
.ir-stock-section .info-img-area ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 720px;
}
.ir-stock-section .info-img-area ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.ir-stock-section .info-img-area ul li a img {
  max-width: 100px;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.ir-stock-section .info-img-area ul li .c-link03 {
  position: relative;
  padding-right: 24px;
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.ir-stock-section .info-img-area ul li .c-link03::after {
  position: absolute;
  content: "";
  -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
          mask: url(https://tw.cando-web.co.jp/img/common/ico-external.svg) no-repeat center/contain;
  width: 16px;
  height: 16px;
  background-color: var(--primaryOrange);
  top: 0.3em;
  right: 0;
  margin: auto;
}

/* -----------------------------------------------
* ir ir_calendar Module
* ir ir_calendar ページ用
-------------------------------------------------- */
.ir-calendar-section .ir-tbl-area tr td {
  max-width: inherit;
  line-height: 1.875;
}
.ir-calendar-section .ir-tbl-area tr th,
.ir-calendar-section .ir-tbl-area tr td {
  padding-inline: 26px;
}
.ir-calendar-section .ir-tbl-area tr th:first-child,
.ir-calendar-section .ir-tbl-area tr td:first-child {
  width: 193px;
}
.ir-calendar-section .ir-tbl-area tr th:nth-child(2),
.ir-calendar-section .ir-tbl-area tr td:nth-child(2) {
  max-width: 286px;
}
.ir-calendar-section .ir-tbl-area tr th:nth-child(3),
.ir-calendar-section .ir-tbl-area tr td:nth-child(3) {
  max-width: 333px;
  min-width: 192px;
}
.ir-calendar-section summary {
  overflow: hidden;
  height: 1px;
  position: absolute;
}

/* -----------------------------------------------
* ir e_public_notice Module
* ir e_public_notice ページ用
-------------------------------------------------- */
.ir-notice-list li a {
  padding: 24px 0;
  display: block;
}
.ir-notice-list li a .inn {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  border-bottom: 1px solid #fff;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.ir-notice-list li a:focus-visible .inn {
  color: #D93904;
  border-bottom: 1px solid #D93904;
}
.ir-notice-list li a .c-ico-pdf {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-left: 24px;
}
.ir-notice-list li a .c-ico-pdf::before {
  left: 0;
}
.ir-notice-list li a .c-ico-pdf .c-new {
  margin-left: 1em;
  margin-top: 1px;
}

.js-pdf-size {
  margin-left: 1em;
}

.ir-notice-section .pdf-or-text-area .text-area,
.ir-notice-section .pdf-or-text-area .pdf-area,
.ir-notice-section .pdf-or-text-area .latest-pdf {
  display: none;
}
.ir-notice-section .pdf-or-text-area .latest-pdf {
  margin-top: 20px;
}
.ir-notice-section .pdf-or-text-area .latest-pdf .c-new {
  display: none;
}
.ir-notice-section .pdf-or-text-area .latest-pdf a {
  display: block;
}
.ir-notice-section .pdf-or-text-area .latest-pdf a + a {
  margin-top: 10px;
}

/* -----------------------------------------------
* ir notes Module
* ir notes ページ用
-------------------------------------------------- */
.ir-notes-section .c-desc-wrap .txt {
  line-height: 1.875;
  letter-spacing: 0.04em;
}

/* -----------------------------------------------
* language
* 多言語 ページ用
-------------------------------------------------- */
html[lang=en] .c-nav .nav-list {
  gap: 20px;
}
html[lang=en] .c-nav .nav-list > li > .btn {
  font-size: 1em;
}
html[lang=en] .c-nav .nav-list > li:nth-child(2) > .btn::after {
  content: "Notice";
}
html[lang=en] .c-nav .nav-list > li:nth-child(3) > .btn::after {
  content: "Product information";
}
html[lang=en] .c-nav .nav-list > li:nth-child(4) > .btn::after {
  content: "Find a Store";
}
html[lang=en] .c-nav .nav-list > li:nth-child(5) > .btn::after {
  content: "Official mail order";
}
html[lang=en] .c-nav .nav-list > li:nth-child(6) > .btn::after {
  content: "Job Opportunities";
}
html[lang=en] .c-nav .nav-list > li:nth-child(7) > .btn::after {
  content: "Company Information";
}
html[lang=en] .c-nav .nav-list > li:nth-child(8) > .btn::after {
  content: "IR information";
}
html[lang=en] .c-important-notice-area .more-btn:not(.is-active) {
  width: 90px;
}
html[lang=en] .c-support-popup {
  max-width: inherit;
  min-width: inherit;
}
html[lang=en] .support-items .color-list .acc-btn {
  font-size: 0.75em;
}
html[lang=en] .c-nav .nav-list .support-items .box {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
html[lang=en] .ir .c-tab-btn-list li .btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 0.85em;
  padding-right: 30px;
}
html[lang=en] main.home .c-tab-btn-list > li, html[lang=en] main.news .c-tab-btn-list > li {
  width: 33.3333333333%;
}
html[lang=en] main.home .c-tab-btn-list > li:nth-child(n+4), html[lang=en] main.news .c-tab-btn-list > li:nth-child(n+4) {
  border-top: none;
}
html[lang=en] main.home .c-tab-btn-list > li:nth-child(3n+1), html[lang=en] main.news .c-tab-btn-list > li:nth-child(3n+1) {
  border-left: 1px solid;
}
html[lang=en] .c-article-wrap .btn-wrap .next-prev-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
html[lang=zh-hans] .c-nav .nav-list > li:nth-child(2) > .btn::after {
  content: "通知";
}
html[lang=zh-hans] .c-nav .nav-list > li:nth-child(3) > .btn::after {
  content: "商品信息";
}
html[lang=zh-hans] .c-nav .nav-list > li:nth-child(4) > .btn::after {
  content: "搜索店铺";
}
html[lang=zh-hans] .c-nav .nav-list > li:nth-child(5) > .btn::after {
  content: "官方邮购";
}
html[lang=zh-hans] .c-nav .nav-list > li:nth-child(6) > .btn::after {
  content: "招聘信息";
}
html[lang=zh-hans] .c-nav .nav-list > li:nth-child(7) > .btn::after {
  content: "企业信息";
}
html[lang=zh-hans] .c-nav .nav-list > li:nth-child(8) > .btn::after {
  content: "IR信息";
}
html[lang=zh-hant] .c-nav .nav-list > li:nth-child(2) > .btn::after {
  content: "通知";
}
html[lang=zh-hant] .c-nav .nav-list > li:nth-child(3) > .btn::after {
  content: "商品資訊";
}
html[lang=zh-hant] .c-nav .nav-list > li:nth-child(4) > .btn::after {
  content: "搜索店鋪";
}
html[lang=zh-hant] .c-nav .nav-list > li:nth-child(5) > .btn::after {
  content: "官方郵購";
}
html[lang=zh-hant] .c-nav .nav-list > li:nth-child(6) > .btn::after {
  content: "招聘信息";
}
html[lang=zh-hant] .c-nav .nav-list > li:nth-child(7) > .btn::after {
  content: "企業信息";
}
html[lang=zh-hant] .c-nav .nav-list > li:nth-child(8) > .btn::after {
  content: "IR信息";
}
html[lang=ko] .c-nav .nav-list > li:nth-child(2) > .btn::after {
  content: "알림";
}
html[lang=ko] .c-nav .nav-list > li:nth-child(3) > .btn::after {
  content: "상품 정보";
}
html[lang=ko] .c-nav .nav-list > li:nth-child(4) > .btn::after {
  content: "점포 검색";
}
html[lang=ko] .c-nav .nav-list > li:nth-child(5) > .btn::after {
  content: "공식 통판";
}
html[lang=ko] .c-nav .nav-list > li:nth-child(6) > .btn::after {
  content: "채용 정보";
}
html[lang=ko] .c-nav .nav-list > li:nth-child(7) > .btn::after {
  content: "기업 정보";
}
html[lang=ko] .c-nav .nav-list > li:nth-child(8) > .btn::after {
  content: "IR 정보";
}
@media only screen and (max-width: 767px) {
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pc {
    display: none !important;
  }
  .c-contact-link {
    font-size: 1.125em;
  }
  .c-footer {
    border-top: 1px solid var(--borderGray);
  }
  .c-footer .top-content {
    padding: 0 0 30px;
  }
  .c-footer .top-content .link-wrap .box + .box {
    border-top: 1px solid var(--borderGray);
  }
  .c-footer .top-content .link-wrap .inn:not(:first-child) {
    border-top: 1px solid var(--borderGray);
  }
  .c-footer .top-content .link-wrap .inn:not(.sp-aco-area) .sub-link {
    display: none;
  }
  .c-footer .top-content .link-wrap .inn.sp-aco-area .link::before {
    content: none;
  }
  .c-footer .top-content .link-wrap .link {
    display: block;
    width: 100%;
    padding: 11px 70px 11px 25px;
  }
  .c-footer .top-content .link-wrap .link::before {
    right: 30px;
  }
  .c-footer .top-content .link-wrap .sub-link {
    background: var(--white);
    display: none;
    margin: 0 -20px;
    padding: 0 20px;
  }
  .c-footer .top-content .link-wrap .sub-link a {
    display: block;
    font-size: 1em;
    padding: 12px 70px 12px 45px;
    position: relative;
  }
  .c-footer .top-content .link-wrap .sub-link a:not(.ico-external)::before {
    background: var(--primaryOrange);
    -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
            mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
    content: "";
    display: block;
    width: 14px;
    height: 8px;
    rotate: -90deg;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 30px;
    margin: auto;
    -webkit-transition: none;
    transition: none;
  }
  .c-footer .top-content .link-wrap .sub-link a.ico-external::before {
    right: 30px;
  }
  .c-footer .top-content .link-wrap .sub-link li::before {
    background: linear-gradient(to right, var(--borderGray) 1px, transparent 1px) repeat-x left bottom/4px 1px;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .c-footer .bottom-content {
    padding: 20px 0;
  }
  .c-footer .bottom-content .link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-footer .copy-area {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .c-footer #pagetop {
    right: 10px;
  }
  .c-footer #pagetop a .ico {
    width: 35px;
    margin: auto;
  }
  .c-footer #pagetop a .link-txt {
    font-size: 0.688em;
  }
  .c-ttl01 {
    margin-bottom: 20px;
  }
  .c-ttl01.mb80 {
    margin-bottom: 60px;
  }
  .c-btn01 {
    padding: 12px 40px 12px 20px;
  }
  .c-btn02 {
    min-height: 80px;
    padding: 12px 75px;
  }
  .c-btn02::before {
    right: 18px;
  }
  .c-btn02 .ico {
    left: 25px;
  }
  .c-btn02 .ico img {
    max-width: 44px;
    max-height: 44px;
  }
  .c-section {
    padding: 60px 0;
  }
  .c-section:last-child {
    padding-bottom: 100px;
  }
  .c-paging-area {
    gap: 14px;
  }
  .c-paging-area .page-numbers.sp-hide {
    display: none;
  }
  .c-breadcrumbs {
    padding-bottom: 15px;
  }
  .c-breadcrumbs .breadcrumbs-list {
    padding-right: 40px;
  }
  .c-breadcrumbs .breadcrumbs-list li + li::before {
    top: 5px;
  }
  .c-link01 {
    display: block;
    font-size: 1em;
    position: relative;
  }
  .c-link02 {
    font-size: 1em;
    position: relative;
  }
  .c-scheme-flow .item + .item::before {
    left: 20px;
  }
  .c-scheme-flow .item .head-area {
    width: 100px;
  }
  .c-scheme-flow .item .head-area .head {
    font-size: 0.875em;
  }
  .c-scheme-flow .item .scheme-list {
    width: calc(100% - 100px);
  }
  .c-table01 .each {
    padding: 22px 0;
  }
  .c-table01 .each .name {
    display: block;
  }
  .c-table01 .each .desc {
    display: block;
  }
  .c-table01.gray-table .name {
    padding: 10px 20px;
  }
  .c-table01.gray-table .desc {
    padding: 20px;
  }
  .c-table02 .each {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 60px;
  }
  .c-table02 .each .img picture {
    display: block;
  }
  .c-table02 .each .img img {
    width: 100%;
  }
  .c-table03 .each {
    grid-template-areas: "year" "desc";
    grid-template-columns: auto;
    padding: 20px 0;
  }
  .c-table03 .each .month {
    width: inherit;
    text-align: right;
  }
  .c-table03 .each .desc {
    grid-template-columns: auto 1fr;
  }
  .c-table04 {
    grid-template-columns: 1fr 1fr;
    gap: 17px;
  }
  .c-table04 .each {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .c-news-list .dates {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .c-news-list .c-tags {
    width: calc(100% - 120px);
  }
  .c-news-list .ttl {
    padding-right: 35px;
  }
  .c-tab-btn-list > li {
    width: 33.3333333333%;
  }
  .c-tab-btn-list > li:not(:nth-child(3n+1)) {
    border-left: none;
  }
  .c-tab-btn-list > li:nth-child(n+4) {
    border-top: none;
  }
  .c-tab-btn-list .btn {
    padding-left: 10px;
  }
  .c-sns-link-wrap {
    margin-top: 20px;
  }
  .c-article-wrap .btn-wrap .next-prev-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 35px;
  }
  .c-article-content img {
    margin: 25px 0 0;
  }
  .c-article-content h2 {
    margin: 25px 0 10px;
  }
  .c-article-content table tr {
    height: 100% !important;
    border-bottom: none;
  }
  .c-article-content table tr:last-child th {
    border-bottom: none;
  }
  .c-article-content table th,
  .c-article-content table td {
    display: block;
    width: 100%;
    height: 100% !important;
    border-bottom: none;
  }
  .c-article-content table th {
    padding: 15px 0 10px;
  }
  .c-article-content table td {
    padding: 0 0 15px;
    border-top: none;
  }
  .c-desc-wrap .desc {
    line-height: 1.5;
  }
  .c-desc-wrap .c-table01 .each .name {
    margin-bottom: 15px;
  }
  .c-desc-wrap .concept-logo-img {
    max-width: 275px;
  }
  .c-form .confirm-area {
    padding: 30px 20px;
  }
  .c-form .btn-area .c-btn01 + .c-btn01 {
    margin-bottom: 18px;
  }
  .c-form .btn-area:has(button:only-child) {
    margin-top: 75px;
  }
  .c-form .btn-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-form .form-list .ul-inside-wrap {
    padding-top: 15px;
  }
  .c-status-page .img {
    margin-bottom: 40px;
    max-width: 152px;
    max-height: auto;
  }
  .c-status-page .title {
    line-height: 1.25;
  }
  .c-status-page .title + .c-btn01 {
    margin-top: 40px;
  }
  .c-status-page .note {
    margin-bottom: 40px;
  }
  .accessibility .table {
    overflow-x: auto;
    padding-bottom: 15px;
  }
  .accessibility .table table {
    min-width: 680px;
  }
  .accessibility .table thead th:nth-child(1), .accessibility .table thead th:nth-child(3), .accessibility .table thead th:nth-child(4) {
    width: 100px;
  }
  .home-mv-section .splide__slide {
    aspect-ratio: 752/677;
  }
  .home-mv-section .splide__pagination {
    gap: 10px;
  }
  .home-mv-section .splide__pagination {
    padding: 0 15px;
  }
  .home-products-section {
    padding-bottom: 175px;
  }
  .home-products-section .products-list {
    gap: 20px 10px;
  }
  .home-products-section .products-list li {
    width: calc((100% - 10px) / 2);
  }
  .home-sns-section .btn-wrap {
    margin-top: 20px;
  }
  .home-sns-section .btn-wrap .c-btn01 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: calc(100% - 40px);
  }
  .home-sns-section .instagram-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 426px;
    margin: auto;
  }
  .home-sns-section .instagram-area .inn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .home-shop-section .btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 400px;
    margin: auto;
  }
  .home-shop-section .character {
    display: none;
  }
  .home-online-section .lead {
    font-size: 1em;
  }
  .home-online-section .lead::before, .home-online-section .lead::after {
    top: inherit;
  }
  .home-online-section .lead::before {
    rotate: 25deg;
  }
  .home-online-section .lead::after {
    rotate: -25deg;
  }
  .home-online-section .btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 25px;
    max-width: 400px;
  }
  .home-online-section .btn {
    padding: 15px 20px;
  }
  .home-online-section .btn .ico {
    width: 70px;
    padding-left: 0;
  }
  .home-online-section .btn .inn {
    width: calc(100% - 70px);
  }
  .home-online-section .btn .ttl .strong {
    font-size: 1.25em;
  }
  .home-news-section .c-news-list .ttl {
    -webkit-line-clamp: 2;
  }
  .corporate-lead-section .main-ttl {
    max-width: 312px;
  }
  .corporate-lead-section .btn-wrap {
    margin-top: 40px;
  }
  .corporate-wando-section .ttl-wrap .img-area {
    max-width: 275px;
    margin: 0 auto 20px;
  }
  .corporate-wando-section .ttl-wrap .txt-area .ttl img {
    margin-left: 0;
    margin-right: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .corporate-wando-section .youtube {
    margin-top: 40px;
  }
  .corporate-wando-section .btn-wrap {
    margin-top: 40px;
  }
  .corporate-link-section .btn-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .corporate-link-section .btn-column a {
    width: 100%;
  }
  .corporate-messages-section .mv {
    margin-bottom: 70px;
  }
  .corporate-messages-section .mv .inner-block {
    padding: 0;
  }
  .corporate-messages-section .mv .img-area {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: var(--borderOrange);
  }
  .corporate-messages-section .mv .top-txt {
    font-size: 1.5em;
    line-height: 1.6666666667;
    letter-spacing: 0.09em;
    text-align: center;
    margin-top: 70px;
  }
  .profile-table-area .each address .map iframe {
    height: 210px;
    width: 100%;
  }
  .corporate-executives-section .c-tab-btn-list li {
    width: 50%;
  }
  .corporate-executives-section .c-tab-btn-list li:not(:nth-child(3n+1)) {
    border-left: 1px solid var(--textGray);
  }
  .corporate-executives-section .c-tab-btn-list li:not(:nth-child(2n+1)) {
    border-left: none;
  }
  .corporate-executives-section .c-tab-btn-list li:nth-child(1n+3) {
    border-top: none;
  }
  .corporate-executives-section .c-tab-btn-list li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .corporate-executives-section .c-tab-btn-list .cat-btn {
    padding-right: 20px;
  }
  .executives-table-area .exe-each {
    margin-top: 35px;
  }
  .executives-table-area .exe-each .desc p + p {
    margin-top: 8px;
  }
  .executives-table-area .organization-chart-wrap {
    min-width: 335px;
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    white-space: nowrap;
    height: 430px;
    margin: 40px auto 0;
    border: solid 1px var(--textGray);
    rotate: 180deg;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .executives-table-area .organization-chart-wrap::-webkit-scrollbar {
    background-color: #f7f3f2;
    width: 10px;
    height: 10px;
  }
  .executives-table-area .organization-chart-wrap::-webkit-scrollbar-thumb {
    background-color: #686666;
    border-radius: 5px;
  }
  .executives-table-area .organization-chart-wrap .img {
    min-width: 740px;
    rotate: 180deg;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .corporate-about-section .c-desc-wrap .top-txt {
    line-height: 1.875;
    letter-spacing: 0.04em;
  }
  .corporate-about-section .c-desc-wrap .plan-list li + li {
    margin-top: 48px;
  }
  .corporate-about-section .c-desc-wrap .plan-list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .corporate-about-section .c-desc-wrap .plan-list li h4 {
    margin-top: 18px;
  }
  .corporate-aeon-section .c-btn01 {
    margin-top: 50px;
  }
  .recruit .c-btn-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit .c-btn-area .c-btn01 {
    width: 264px;
  }
  .recruit-mv-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit-mv-section .img-area {
    z-index: 2;
  }
  .recruit-mv-section .img-area .img {
    position: relative;
  }
  .recruit-mv-section .svg-texts-area {
    margin-inline: auto;
    max-width: 500px;
    padding: 0 20px;
    margin-top: -90px;
  }
  .recruit-mv-section .texts-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
  }
  .privacy-area .privacy-desc li {
    text-indent: -3em;
    padding-left: 3em;
  }
  .privacy-area .privacy-desc li .note {
    text-indent: 0;
  }
  .privacy-area .privacy-desc li .indent2 {
    padding-left: 0;
    text-indent: 0;
  }
  .privacy-area .privacy-desc li .detail {
    padding-left: 0;
    text-indent: 0;
  }
  .privacy-area .privacy-desc li .detail ol li {
    padding-left: 0;
    text-indent: 0em;
  }
  .c-special-article {
    padding-inline: 20px;
  }
  .c-special-article h1 {
    margin-bottom: 76px;
  }
  .c-special-article table tr {
    height: 100% !important;
    border-bottom: none;
  }
  .c-special-article table tr:last-child th {
    border-bottom: none;
  }
  .c-special-article table th,
  .c-special-article table td {
    display: block;
    width: 100%;
    height: 100% !important;
    border-bottom: none;
  }
  .c-special-article table th {
    padding: 15px 0 10px;
  }
  .c-special-article table td {
    padding: 0 0 15px;
    border-top: none;
  }
  .c-special-article .img-box > div {
    margin-top: 20px;
  }
  footer .img-404 {
    left: 150px;
    bottom: -5px;
  }
  .sitemap-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sitemap-wrap .col:last-child .category {
    border-bottom: 1px solid var(--textGray);
  }
  .sitemap-wrap .category {
    border-top: 1px solid var(--textGray);
  }
  .sitemap-wrap .cat-name {
    padding-block: 14px;
    padding-left: 28px;
    padding-right: 36px;
  }
  .sitemap-wrap .cat-name::after {
    right: 28px;
  }
  .sitemap-wrap .inn-list li {
    position: relative;
  }
  .sitemap-wrap .inn-list li::before {
    background: linear-gradient(to right, #000 1px, transparent 1px) repeat-x left bottom/4px 1px;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .sitemap-wrap .inn-list .list-name {
    padding-block: 14px;
    padding-left: 48px;
    padding-right: 36px;
  }
  .sitemap-wrap .inn-list .list-name::after {
    right: 28px;
  }
  .sitemap-wrap .inn-list .list-name:not(.ico-external) {
    position: relative;
  }
  .sitemap-wrap .inn-list .list-name:not(.ico-external)::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 14px;
    height: 8px;
    -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
            mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
    rotate: -90deg;
    background-color: var(--primaryOrange);
  }
  .faq .c-tab-btn-list li {
    width: 100%;
  }
  .faq .c-tab-btn-list li:not(:nth-child(3n+1)) {
    border-left: 1px solid var(--textGray);
  }
  .faq .c-tab-btn-list li:nth-child(n+4) {
    border-top: 1px solid var(--textGray);
  }
  .faq .c-tab-btn-list li:not(:nth-child(1)) {
    border-top: none;
  }
  .faq .qa-list .each .question, .faq .qa-list .each .answer {
    padding: 14px 48px;
  }
  .faq .qa-list .each .answer {
    padding-right: 14px;
  }
  .ir .c-tab-btn-list li {
    width: 50%;
  }
  .ir .c-tab-btn-list li:not(:nth-child(3n+1)) {
    border-left: 1px solid var(--textGray);
  }
  .ir .c-tab-btn-list li:not(:nth-child(2n+1)) {
    border-left: none;
  }
  .ir .c-tab-btn-list li:nth-child(1n+3) {
    border-top: none;
  }
  .ir-tbl-area {
    overflow-x: auto;
  }
  .ir-stock-section .c-table01 .each .name {
    line-height: 1.2;
  }
  .ir-stock-section .c-table01 .each.ad-way .desc p:first-of-type {
    margin-bottom: 16px;
  }
  .ir-calendar-section .ir-tbl-area tr th:nth-child(2),
  .ir-calendar-section .ir-tbl-area tr td:nth-child(2) {
    min-width: 482px;
  }
  html[lang=en] .home-sns-section .btn-wrap {
    text-align: center;
  }
  html[lang=en] .ir .c-tab-btn-list li {
    width: 100%;
  }
  html[lang=en] .ir .c-tab-btn-list li:not(:nth-child(2n+1)) {
    border-left: 1px solid var(--textGray);
  }
  html[lang=en] .ir .c-tab-btn-list li:nth-child(1n+3) {
    border-left: 1px solid var(--textGray);
    border-top: none;
  }
  html[lang=en] .ir .c-tab-btn-list li:nth-child(n+2) {
    border-top: none;
  }
  html[lang=en] main.home .c-tab-btn-list .btn, html[lang=en] main.news .c-tab-btn-list .btn {
    font-size: 0.6em;
    padding-left: 5px;
    padding-right: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    word-break: break-all;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1080px;
  }
  .inner-block.min-wide {
    max-width: 860px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-footer .top-content .inner-block {
    max-width: 1160px;
  }
  .c-footer .top-content .link-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 40px 5px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-footer .top-content .link-wrap .inn + .inn {
    margin-top: 45px;
  }
  .c-footer .top-content .link-wrap .inn .aco-btn {
    display: none;
  }
  .c-footer .top-content .link-wrap .link:not(:only-child) {
    margin-bottom: 15px;
  }
  .c-footer .top-content .link-wrap .sub-link {
    margin-left: 10px;
  }
  .c-footer .top-content .link-wrap .sub-link li + li {
    margin-top: 6px;
  }
  .c-footer .bottom-content .inner-block {
    max-width: 1160px;
  }
  .c-footer .sp-nav-wrap {
    display: none;
  }
  .c-breadcrumbs .inner-block {
    max-width: 1160px;
  }
  .c-breadcrumbs .breadcrumbs-list li a {
    position: relative;
    border-bottom: 1px solid transparent;
  }
  .c-breadcrumbs .breadcrumbs-list li a:focus-visible {
    border-color: rgba(107, 103, 102, 0.7);
  }
  .c-table01 .each {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .c-table01 .each .name {
    display: inline-block;
    padding-right: 16px;
    width: 20%;
  }
  .c-table01 .each .desc {
    display: inline-block;
    width: 80%;
  }
  .c-table01.gray-table .name {
    width: 30%;
  }
  .c-table01.gray-table .desc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 70%;
  }
  .c-table01.gray-table .desc p {
    display: inline-block;
  }
  .c-table01.gray-table .desc p:first-child {
    width: 30%;
  }
  .c-table01.gray-table .desc p:last-child {
    width: 70%;
  }
  .c-table02 .each .img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .c-table02 .each .desc-wrap {
    width: 70%;
  }
  .c-table03 .each {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .c-table03 .each .year {
    margin-right: 24px;
  }
  .c-news-list .c-new {
    position: absolute;
    top: 100%;
    left: 0;
    white-space: nowrap;
  }
  .c-news-list .ttl {
    margin-left: 120px;
  }
  .c-tab-btn-list > li {
    width: 16.6666666667%;
  }
  .c-tab-btn-list > li:not(:nth-child(6n+1)) {
    border-left: none;
  }
  .c-tab-btn-list > li:nth-child(n+7) {
    border-top: none;
  }
  .c-tab-btn-list .btn {
    padding-left: 10px;
  }
  .c-tab-btn-list.news-category-tab .cat-btn {
    padding-right: 20px;
  }
  .c-article-wrap .btn-wrap .next-prev-area .prev,
  .c-article-wrap .btn-wrap .next-prev-area .next {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .c-article-content a:hover {
    text-decoration: none;
  }
  .c-form select::-webkit-input-placeholder, .c-form input::-webkit-input-placeholder, .c-form textarea::-webkit-input-placeholder {
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  .c-form select::-moz-placeholder, .c-form input::-moz-placeholder, .c-form textarea::-moz-placeholder {
    -moz-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  .c-form select:-ms-input-placeholder, .c-form input:-ms-input-placeholder, .c-form textarea:-ms-input-placeholder {
    -ms-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  .c-form select::-ms-input-placeholder, .c-form input::-ms-input-placeholder, .c-form textarea::-ms-input-placeholder {
    -ms-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  .c-form select::placeholder,
  .c-form input::placeholder,
  .c-form textarea::placeholder {
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  .c-form .btn-area .c-btn01 + .c-btn01 {
    margin-left: 18px;
  }
  .home-products-section .products-list a:hover, .home-products-section .products-list a:focus-within {
    color: var(--primaryOrange);
  }
  .home-products-section .products-list a:hover .img::before, .home-products-section .products-list a:focus-within .img::before {
    border-color: var(--primaryOrange);
  }
  .home-products-section .products-list a:hover .ico::before,
  .home-products-section .products-list a:hover .ico::after, .home-products-section .products-list a:focus-within .ico::before,
  .home-products-section .products-list a:focus-within .ico::after {
    background: var(--primaryOrange);
  }
  .home-sns-section.c-section {
    padding-bottom: 70px;
  }
  .home-sns-section .instagram-area .img + .img {
    margin-top: 7px;
  }
  .home-sns-section .sns-x-area {
    position: relative;
    top: 0;
  }
  .home-shop-section .btn-wrap .c-btn02 {
    width: calc((100% - 20px) / 2);
  }
  .corporate-wando-section .ttl-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .corporate-wando-section .ttl-wrap .img-area {
    width: 25%;
  }
  .corporate-wando-section .ttl-wrap .img-area .img {
    margin-left: -70px;
  }
  .corporate-wando-section .ttl-wrap .txt-area {
    width: 75%;
    padding-left: 45px;
  }
  .corporate-link-section .btn-column.column3 a {
    width: calc((100% - 40px) / 3);
  }
  .corporate-link-section .btn-column.column2 a {
    width: calc((100% - 20px) / 2);
  }
  .corporate-messages-section .mv {
    background-color: var(--borderOrange);
  }
  .corporate-messages-section .mv .img-area {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .corporate-messages-section .mv .top-txt {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .profile-table-area .each address ul li {
    display: inline-block;
  }
  .corporate-executives-section .c-tab-btn-list li {
    width: 25%;
  }
  .corporate-executives-section .c-tab-btn-list li:not(:nth-child(6n+1)) {
    border-left: 1px solid var(--textGray);
  }
  .corporate-executives-section .c-tab-btn-list li:nth-child(n+7) {
    border-top: 1px solid var(--textGray);
  }
  .corporate-executives-section .c-tab-btn-list li:not(:nth-child(4n+1)) {
    border-left: none;
  }
  .corporate-executives-section .c-tab-btn-list li:nth-child(n+5) {
    border-top: none;
  }
  .executives-table-area .organization-chart-wrap .img {
    width: 60%;
    margin-inline: auto;
    display: block;
  }
  .corporate-about-section .c-desc-wrap .plan-list li .inn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .corporate-about-section .c-desc-wrap .plan-list li .inn img {
    max-width: 220px;
  }
  .corporate-about-section .c-desc-wrap .plan-list li .inn .txt-wrap {
    width: calc(100% - 220px);
    padding-left: 18px;
  }
  .recruit .c-btn-area {
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .recruit .c-btn-area .c-btn01 {
    padding-block: 17px;
    width: 33.3333333333%;
  }
  .recruit-mv-section {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .recruit-mv-section .img-area {
    max-width: 800px;
    height: 400px;
  }
  .recruit-mv-section .svg-texts-area {
    margin-top: -28px;
    max-width: 300px;
  }
  .privacy-area .privacy-desc li .note {
    line-height: 1.5;
    padding-left: 3em;
  }
  .c-special-article a:hover {
    text-decoration: none;
  }
  .c-special-article .img-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .c-special-article .img-box > div {
    width: calc(100% - 20px);
  }
  .c-special-article .img-box > div + div {
    margin-left: 20px;
  }
  .sitemap-wrap {
    row-gap: 45px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
  .sitemap-wrap .col .col-list {
    row-gap: 45px;
  }
  .sitemap-wrap .cat-name {
    margin-bottom: 5px;
  }
  .sitemap-wrap .inn-list {
    padding-left: 8px;
  }
  .sitemap-wrap .inn-list li + li {
    margin-top: 5px;
  }
  .faq .c-tab-btn-list li {
    width: 25%;
  }
  .faq .c-tab-btn-list li:not(:nth-child(6n+1)) {
    border-left: 1px solid var(--textGray);
  }
  .faq .c-tab-btn-list li:nth-child(n+7) {
    border-top: 1px solid var(--textGray);
  }
  .faq .c-tab-btn-list li:not(:nth-child(4n+1)) {
    border-left: none;
  }
  .faq .c-tab-btn-list li:nth-child(n+5) {
    border-top: none;
  }
  .ir .c-tab-btn-list li {
    width: 25%;
  }
  .ir .c-tab-btn-list li:not(:nth-child(6n+1)) {
    border-left: 1px solid var(--textGray);
  }
  .ir .c-tab-btn-list li:nth-child(n+7) {
    border-top: 1px solid var(--textGray);
  }
  .ir .c-tab-btn-list li:not(:nth-child(4n+1)) {
    border-left: none;
  }
  .ir .c-tab-btn-list li:nth-child(n+5) {
    border-top: none;
  }
  .ir-stock-section .c-table01 .each .name {
    min-width: 220px;
  }
  html[lang=en] .corporate-messages-section .mv .top-txt {
    font-size: 2em;
  }
  html[lang=en] .c-footer .top-content .link-wrap {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 40px 50px;
  }
  html[lang=en] .c-footer .bottom-content .inner-block.min-wide {
    max-width: 1080px;
  }
  html[lang=en] .c-article-wrap .btn-wrap .next-prev-area .prev,
  html[lang=en] .c-article-wrap .btn-wrap .next-prev-area .next {
    position: relative;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .c-header {
    padding: 15px 0;
    height: 70px;
  }
  .c-header .inner-block {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 70px 0 20px;
    position: static;
  }
  .c-header .logo {
    width: 150px;
    font-size: 0;
  }
  .c-contact-link {
    padding-left: 65px;
  }
  .c-contact-link::before {
    left: 25px;
  }
  .c-language-link .label-txt {
    font-size: 1em;
    padding: 2px 2px 12px 35px;
  }
  .c-language-link .label-txt::after {
    background: var(--textColor);
    top: inherit;
    right: 4px;
  }
  .c-language-link .lang-list.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  .c-nav {
    background: var(--white);
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    height: calc(var(--vh) * 100 - 70px);
    z-index: 112;
    padding: 0 20px 50px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
  }
  .c-nav .link-area {
    display: none;
  }
  .c-nav .nav-list > li.sp-aco-area {
    position: relative;
  }
  .c-nav .nav-list > li.sp-aco-area .btn::before {
    content: none !important;
  }
  .c-nav .nav-list > li {
    border-top: 1px solid var(--borderGray);
  }
  .c-nav .nav-list > li:last-child {
    border-bottom: 1px solid var(--borderGray);
  }
  .c-nav .nav-list > li > .btn:not(.ico-external)::before {
    background: var(--primaryOrange);
    -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
            mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
    content: "";
    display: block;
    width: 14px;
    height: 8px;
    rotate: -90deg;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 30px;
    margin: auto;
    -webkit-transition: none;
    transition: none;
  }
  .c-nav .nav-list > li > .btn.ico-external {
    background-position: center right 30px;
  }
  .c-nav .nav-list > li > .btn::after {
    display: none !important;
  }
  .c-nav .mega-menu {
    display: none;
  }
  .c-nav .mega-menu .link-wrap {
    display: none;
  }
  .c-nav .mega-menu .sub-nav-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-nav .mega-menu .sub-nav-list > li::before, .c-nav .mega-menu .sub-nav-list > li::after {
    background: linear-gradient(to right, var(--borderGray) 1px, transparent 1px) repeat-x left bottom/4px 1px;
  }
  .c-nav .mega-menu .sub-nav-list > li::before {
    opacity: 0;
  }
  .c-nav .mega-menu .sub-nav-list .sub-link-btn {
    display: block;
    font-size: 1em;
    padding: 12px 70px 12px 45px;
    position: relative;
  }
  .c-nav .mega-menu .sub-nav-list .sub-link-btn:not(.ico-external)::before {
    background: var(--primaryOrange);
    -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
            mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
    content: "";
    display: block;
    width: 14px;
    height: 8px;
    rotate: -90deg;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 30px;
    margin: auto;
    -webkit-transition: none;
    transition: none;
  }
  .c-sns-link-wrap .character {
    margin-bottom: 25px;
  }
  .c-web-support {
    position: relative;
    padding: 8px 70px 8px 25px;
    display: block;
    width: 100%;
    text-align: left;
  }
  .c-nav .nav-list > li.sp-aco-area.support-menu .aco-btn {
    width: 100%;
  }
  .c-nav .nav-list > li > .btn.support-btn {
    width: 100%;
    padding-left: 65px;
    text-align: left;
    position: relative;
  }
  .c-nav .nav-list > li > .btn.support-btn::before {
    background: var(--textColor);
    content: "" !important;
    display: block;
    -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-accessibility.svg) no-repeat center center/contain;
            mask: url(https://tw.cando-web.co.jp/img/common/ico-accessibility.svg) no-repeat center center/contain;
    width: 30px;
    height: 30px;
    position: absolute;
    margin: auto;
    bottom: 0;
    top: 0;
    left: 25px;
    right: inherit;
    rotate: 0deg;
  }
  .c-nav .nav-list .support-items {
    padding: 10px 25px 10px 45px;
  }
  .c-nav .nav-list .support-items .box-ttl {
    width: auto;
    margin-right: 10px;
  }
  html[lang=en] .c-nav .mega-menu .sub-nav-list .sub-link-btn {
    word-break: break-word;
  }
  html[lang=en] .c-nav .nav-list .support-items {
    padding-left: 5px;
  }
}
@media only screen and (min-width: 1025px) {
  .c-header .inner-block {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    max-width: 1160px;
  }
  .c-header .logo {
    margin-bottom: 10px;
  }
  .c-header .sp-lang-area {
    display: none;
  }
  .c-contact-link:focus-visible {
    color: var(--primaryOrange);
  }
  .c-contact-link:focus-visible::before {
    background: var(--primaryOrange);
  }
  .c-language-link .lang-list li:not(.is-current) a:focus-visible::before, .c-language-link .lang-list li:not(.is-current) a:focus-visible::after {
    opacity: 1;
  }
  .c-language-link .lang-list li:not(.is-current) a:focus-visible .inn-txt {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .c-language-link .lang-list a::before, .c-language-link .lang-list a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
    opacity: 0;
  }
  .c-language-link .lang-list a::before {
    background: url(https://tw.cando-web.co.jp/img/common/ico-check.svg) no-repeat center center/contain;
    width: 11px;
    height: 8px;
    left: 14px;
    z-index: 2;
  }
  .c-language-link .lang-list a::after {
    background: var(--textColor);
    border-radius: 50%;
    width: 19px;
    height: 19px;
    left: 10px;
    z-index: 1;
  }
  .c-nav {
    margin-left: auto;
    padding-left: 10px;
  }
  .c-nav .link-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 45px;
    margin-bottom: 10px;
  }
  .c-nav .nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
  .c-nav .nav-list .sp-only-menu {
    display: none;
  }
  .c-nav .nav-list > li.mega-menu-wrap .btn::before {
    background: var(--primaryOrange);
    -webkit-mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
            mask: url(https://tw.cando-web.co.jp/img/common/ico-arrow.svg) no-repeat center/contain;
    content: "";
    display: block;
    width: 14px;
    height: 8px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  .c-nav .nav-list > li.mega-menu-wrap .btn:focus-visible::before {
    opacity: 0;
    rotate: 180deg;
  }
  .c-nav .nav-list > li.mega-menu-wrap:hover .btn::before {
    opacity: 0;
    rotate: 180deg;
  }
  .c-nav .nav-list > li.mega-menu-wrap:hover > .mega-menu {
    opacity: 1;
    pointer-events: auto;
  }
  .c-nav .nav-list > li:not(.mega-menu-wrap) .btn::before {
    background: var(--primaryOrange);
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  .c-nav .nav-list > li.sp-aco-area .aco-btn {
    display: none;
  }
  .c-nav .nav-list > li > .btn.ico-external {
    padding-right: 20px;
  }
  .c-nav .nav-list > li > .btn::after {
    content: attr(data-text);
    color: var(--primaryOrange);
    position: absolute;
    clip: rect(0, 0, 100px, 0);
    -webkit-transition: clip 0.2s ease-in-out;
    transition: clip 0.2s ease-in-out;
    top: 0;
    left: 0;
  }
  .c-nav .mega-menu {
    width: calc(100% - 80px);
    background: var(--white);
    border: 2px solid var(--primaryOrange);
    border-radius: 4px;
    padding: 35px 40px 40px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: auto;
    z-index: 12;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  .c-nav .mega-menu::before, .c-nav .mega-menu::after {
    border-style: solid;
    border-top: 0;
    content: "";
    display: block;
    width: 26px;
    height: 13px;
    position: absolute;
    margin: auto;
  }
  .c-nav .mega-menu::before {
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-bottom: 13px solid var(--white);
    top: -11px;
    z-index: 2;
  }
  .c-nav .mega-menu::after {
    border-right: 14px solid transparent;
    border-left: 14px solid transparent;
    border-bottom: 15px solid var(--primaryOrange);
    top: -15px;
  }
  .c-nav .mega-menu .sub-nav-list > li:nth-child(n+5)::after {
    opacity: 0;
  }
  .c-nav .mega-menu .sub-nav-list .sub-link-btn {
    min-height: 75px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1.6;
  }
  .c-nav .mega-menu.is-focus {
    opacity: 1;
    pointer-events: auto;
  }
  .c-nav .sp-nav-wrap {
    display: none;
  }
  .c-nav-btn {
    display: none;
  }
  .c-sns-link-wrap .character {
    position: absolute;
    bottom: -20px;
    left: calc(100% + 40px);
  }
  .support-items .box {
    padding: 0 0.625em;
  }
  .web-support-wrapper[data-font_size=large] .c-nav .nav-list {
    gap: 20px;
  }
  html[lang=en] .c-nav {
    padding-left: 40px;
  }
  html[lang=en] .c-nav .nav-list {
    gap: 5px 40px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  html[lang=en] .c-nav .mega-menu::before, html[lang=en] .c-nav .mega-menu::after {
    display: none;
  }
}
@media (any-hover: hover) {
  .c-contact-link-wrap .contact-list a:hover .btn-inn {
    border-bottom-color: var(--primaryOrange);
  }
  .c-nav .nav-list > li:hover .btn::after {
    clip: rect(0, 300px, 100px, 0);
  }
  .c-nav .mega-menu .link-wrap .nav-link-btn:hover {
    color: var(--primaryOrange);
  }
  .c-nav .mega-menu .link-wrap .nav-link-btn:hover .link-inn::before {
    opacity: 1;
  }
  .c-nav .mega-menu .sub-nav-list .sub-link-btn:hover {
    color: var(--primaryOrange);
  }
  .c-nav .mega-menu .sub-nav-list .sub-link-btn:hover .link-inn::before {
    opacity: 1;
  }
  .c-footer .top-content .link-wrap .link:hover {
    color: var(--primaryOrange);
  }
  .c-footer .top-content .link-wrap .link:hover .link-inn::before {
    opacity: 1;
  }
  .c-footer .top-content .link-wrap .sub-link a:hover {
    color: var(--primaryOrange);
  }
  .c-footer .top-content .link-wrap .sub-link a:hover .link-inn::before {
    opacity: 1;
  }
  .c-footer .bottom-content .link a:hover .link-inn::before {
    opacity: 1;
  }
  .c-footer #pagetop a:hover .link-txt {
    color: var(--primaryOrange);
  }
  .c-btn01:not(.ico-external):not(.disabled):not(:disabled):hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .c-btn01:not(.ico-external):not(.disabled):not(:disabled):hover::before {
    -webkit-animation: icoRightMove 0.4s ease-in-out forwards;
            animation: icoRightMove 0.4s ease-in-out forwards;
  }
  .c-btn01.ico-external:hover {
    background: var(--primaryOrange);
  }
  .c-btn01.back-btn:hover {
    color: var(--white);
  }
  .c-btn01.back-btn:hover::before {
    -webkit-animation: icoLeftMove 0.4s ease-in-out forwards !important;
            animation: icoLeftMove 0.4s ease-in-out forwards !important;
  }
  .c-btn02:hover {
    background: var(--primaryOrange);
  }
  .c-btn03:hover::before {
    -webkit-animation: icoRightMove 0.4s ease-in-out forwards;
            animation: icoRightMove 0.4s ease-in-out forwards;
  }
  .c-btn03:hover::after {
    opacity: 1;
  }
  .c-year-select .year-list a:hover,
  .c-year-select .year-list .year-btn:hover {
    background: var(--paleOrange);
    color: var(--primaryOrange);
  }
  .c-paging-area .page-numbers.prev:hover, .c-paging-area .page-numbers.next:hover {
    border-width: 3px;
  }
  .c-paging-area .page-numbers:not([disabled]):hover {
    border-width: 3px;
  }
  .c-link01:hover {
    color: var(--primaryOrange);
  }
  .c-link01:hover .inn::before {
    opacity: 1;
  }
  .c-link02:hover .inn::before {
    opacity: 0;
  }
  .c-link03:hover {
    text-decoration: none;
  }
  .c-splide-area .splide__arrow:hover {
    background: var(--primaryOrange);
  }
  .c-splide-area .splide__arrow:hover::before {
    background: var(--white);
  }
  .c-important-notice-area .head .news-link:hover .ttl::before {
    opacity: 1;
  }
  .c-important-notice-area .more-btn:hover {
    background: var(--white);
    color: var(--textColor);
  }
  .c-important-notice-area .more-btn:hover::before, .c-important-notice-area .more-btn:hover::after {
    background: var(--textColor);
  }
  .c-important-notice-area .content-wrap .notice-close-btn:hover {
    background: var(--textColor);
    color: var(--white);
  }
  .c-important-notice-area .content-wrap .notice-close-btn:hover::before {
    background: var(--white);
  }
  .c-news-list a:hover {
    color: var(--primaryOrange);
  }
  .c-news-list a:hover .ttl .ttl-inn::before {
    opacity: 1;
  }
  .c-tab-btn-list > li.is-active .btn:not([aria-selected=true]):not(.disabled):hover {
    color: var(--white);
  }
  .c-tab-btn-list .btn:not([aria-selected=true]):not(.disabled):hover {
    color: var(--primaryOrange);
  }
  .c-tab-btn-list.news-category-tab > li:hover .aco-list:not(:empty) {
    opacity: 1;
    pointer-events: auto;
    display: block;
  }
  .c-tab-btn-list.news-category-tab > li.ico-external .btn[aria-selected=true]:hover {
    color: var(--primaryOrange);
  }
  .c-tab-btn-list.news-category-tab > li.ico-external.is-active .btn:hover {
    color: var(--primaryOrange);
  }
  .c-tab-btn-list.news-category-tab .aco-list a:hover {
    background: var(--paleOrange);
    color: var(--primaryOrange);
  }
  .home-news-section .c-tab-btn-list > li .btn:hover::after {
    content: "";
    position: absolute;
    border: 1px solid var(--primaryOrange);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: 0;
    left: -1px;
    bottom: 0;
    margin: auto;
  }
  .c-sns-link-wrap .sns-link a:hover {
    background: var(--primaryOrange);
  }
  .c-article-wrap .btn-wrap .next-prev-area .prev:hover,
  .c-article-wrap .btn-wrap .next-prev-area .next:hover {
    color: var(--primaryOrange);
  }
  .c-article-wrap .btn-wrap .next-prev-area .prev:hover::before,
  .c-article-wrap .btn-wrap .next-prev-area .next:hover::before {
    background: var(--primaryOrange);
  }
  .c-form select:hover,
  .c-form input:hover,
  .c-form textarea:hover {
    border-color: var(--textColor);
  }
  .support-items .color-list .acc-btn:hover::before {
    opacity: 1;
  }
  .support-items .size-list .acc-btn:hover {
    background: var(--primaryOrange);
    color: var(--white);
  }
  .c-web-support:hover {
    color: var(--primaryOrange);
  }
  .c-web-support:hover::before {
    background: var(--primaryOrange);
  }
  .c-support-popup .close-btn:hover {
    color: var(--primaryOrange);
  }
  .c-support-popup .close-btn:hover .inn::before {
    background: var(--primaryOrange);
  }
  #wrapper[data-color=yellow] .c-tab-btn-list li .btn:hover {
    background: var(--primaryOrange);
    color: var(--white);
  }
  #wrapper[data-color=yellow] .c-tab-btn-list li .btn:hover::before {
    background: var(--white);
  }
  #wrapper[data-color=yellow] .c-btn01:not(.back-btn):not(.disabled):not(:disabled):hover {
    color: var(--primaryOrange);
  }
  #wrapper[data-color=yellow] .c-btn01:not(.back-btn):not(.disabled):not(:disabled):hover::before {
    background: var(--primaryOrange);
  }
  #wrapper[data-color=yellow] .c-btn01:not(.back-btn):not(.disabled):not(:disabled):hover::after {
    background: var(--white);
  }
  #wrapper[data-color=yellow] .c-btn01:not(.back-btn):not(.disabled):not(:disabled).ico-external:hover {
    background-color: var(--white);
    color: var(--primaryOrange);
  }
  #wrapper[data-color=yellow] .c-btn02:hover {
    background: var(--white);
    color: var(--primaryOrange);
  }
  .home-mv-section .splide__pagination .splide__pagination__page:not(.is-active):hover {
    background: var(--paleOrange);
  }
  .home-mv-section .splide__toggle:hover {
    background: var(--white);
  }
  .home-mv-section .splide__toggle:hover .splide__toggle__play::before,
  .home-mv-section .splide__toggle:hover .splide__toggle__pause::before {
    background: var(--primaryOrange);
  }
  .home-sns-section .instagram-area .img:hover {
    opacity: 0.8;
  }
  .home-sns-section .sns-x-area .splide__slide .link-slide:hover {
    opacity: 0.8;
  }
  .home-online-section .btn:hover::before {
    opacity: 1;
  }
  .profile-table-area .link .desc a:hover::after {
    opacity: 0;
  }
  .faq .qa-list a:hover {
    text-decoration: none;
  }
  .ir-summary-section .tabpanel-block .tabpanel > li .inn-list a:hover .inn {
    color: #D93904;
    border-bottom: 1px solid #D93904;
  }
  .ir-stock-section .c-table01 a:hover {
    text-decoration: none;
  }
  .ir-notice-list li a:hover .inn {
    color: #D93904;
    border-bottom: 1px solid #D93904;
  }
}
@media only screen and (min-width: 1025px) and (any-hover: hover) {
  .c-contact-link:hover {
    color: var(--primaryOrange);
  }
  .c-contact-link:hover::before {
    background: var(--primaryOrange);
  }
  .c-language-link .lang-list li:not(.is-current) a:hover::before, .c-language-link .lang-list li:not(.is-current) a:hover::after {
    opacity: 1;
  }
  .c-language-link .lang-list li:not(.is-current) a:hover .inn-txt {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .c-nav .nav-list > li:hover:not(.mega-menu-wrap) .btn::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .c-nav .nav-list > li:not(.mega-menu-wrap) .btn:focus-visible::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@media only screen and (max-width: 375px) {
  .c-sp-language-link .lang-list li a {
    font-size: 4.2666666667vw;
  }
  .c-btn01 {
    font-size: 4.2666666667vw;
  }
  .c-btn02 .btn-txt {
    font-size: 4.8vw;
  }
  .c-btn03 {
    font-size: 4.8vw;
  }
  .home-online-section .btn .ttl {
    font-size: 4.8vw;
  }
  .corporate-messages-section .mv .top-txt {
    font-size: 6.4vw;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1140px) {
  .c-nav .nav-list {
    gap: 25px;
  }
}
@media only screen and (max-width: 1140px) {
  .c-nav .nav-list > li > .btn {
    font-size: 1em;
  }
}
@media only screen and (max-width: 1140px) and (max-width: 1024px) {
  .c-nav .nav-list > li > .btn {
    padding: 12px 70px 12px 25px;
    display: block;
  }
}
@media only screen and (max-width: 767px) and (max-width: 460px) {
  .c-paging-area {
    gap: 2.6666666667vw;
  }
  .c-paging-area .page-numbers {
    width: 10.1333333333vw;
    height: 10.1333333333vw;
  }
}
@media only screen and (max-width: 767px) and (max-width: 460px) and (max-width: 345px) {
  .c-paging-area {
    gap: 2.1333333333vw;
  }
}
@media only screen and (min-width: 768px) and (any-hover: hover) {
  .c-breadcrumbs .breadcrumbs-list li a:hover {
    border-color: rgba(107, 103, 102, 0.7);
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .c-tab-btn-list .btn {
    font-size: 4.2666666667vw;
  }
  .home-online-section .btn .ttl .strong {
    font-size: 5.3333333333vw;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 480px) {
  .c-nav .nav-list .support-items {
    padding-right: clamp(0.5rem, -1.271rem + 9.444vw, 1.563rem);
    padding-left: clamp(0.5rem, -3.354rem + 20.556vw, 2.813rem);
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1150px) {
  .web-support-wrapper[data-font_size=large] .c-nav .nav-list {
    gap: 10px;
  }
}
@media only screen and (max-width: 1750px) {
  .home-products-section .character {
    right: -320px;
    width: 37.7142857143vw;
  }
}
@media only screen and (max-width: 1750px) and (max-width: 1024px) {
  .home-products-section .character {
    right: -20px;
  }
}
@media only screen and (max-width: 1750px) and (max-width: 1024px) and (max-width: 767px) {
  .home-products-section .character {
    bottom: -20px;
    right: -180px;
    width: 435px;
  }
}
@media only screen and (max-width: 1150px) {
  .home-shop-section .character {
    bottom: -50px;
    left: 20px;
  }
}
@media only screen and (max-width: 860px) {
  .corporate-messages-section .mv .img-area img {
    width: 40.9302325581vw;
    height: auto;
  }
}
@media only screen and (max-width: 860px) and (max-width: 767px) {
  .corporate-messages-section .mv .img-area img {
    max-height: 300px;
    max-width: 230px;
    width: 100%;
  }
}
@media (768px <= width <= 860px) {
  .corporate-messages-section .mv .top-txt {
    font-size: 4.4186046512vw;
  }
}
@media only screen and (min-width: 500px) {
  .corporate-concept-section .c-desc-wrap .br {
    display: none;
  }
}
@media (1080px >= width >= 767px) {
  .corporate-executives-section .c-tab-btn-list li {
    width: 33.3333333333%;
  }
  .corporate-executives-section .c-tab-btn-list li:not(:nth-child(4n+1)) {
    border-left: 1px solid var(--textGray);
  }
  .corporate-executives-section .c-tab-btn-list li:nth-child(n+5) {
    border-top: 1px solid var(--textGray);
  }
  .corporate-executives-section .c-tab-btn-list li:not(:nth-child(3n+1)) {
    border-left: none;
  }
  .corporate-executives-section .c-tab-btn-list li:nth-child(n+4) {
    border-top: none;
  }
  .faq .c-tab-btn-list li {
    width: 33.3333333333%;
  }
  .faq .c-tab-btn-list li:not(:nth-child(4n+1)) {
    border-left: 1px solid var(--textGray);
  }
  .faq .c-tab-btn-list li:nth-child(n+5) {
    border-top: 1px solid var(--textGray);
  }
  .faq .c-tab-btn-list li:not(:nth-child(3n+1)) {
    border-left: none;
  }
  .faq .c-tab-btn-list li:nth-child(n+4) {
    border-top: none;
  }
  .ir .c-tab-btn-list li {
    width: 33.3333333333%;
  }
  .ir .c-tab-btn-list li:not(:nth-child(4n+1)) {
    border-left: 1px solid var(--textGray);
  }
  .ir .c-tab-btn-list li:nth-child(n+5) {
    border-top: 1px solid var(--textGray);
  }
  .ir .c-tab-btn-list li:not(:nth-child(3n+1)) {
    border-left: none;
  }
  .ir .c-tab-btn-list li:nth-child(n+4) {
    border-top: none;
  }
}
@media only screen and (max-width: 420px) {
  .corporate-about-section .c-desc-wrap .c-ttl02 {
    font-size: 5.7142857143vw;
  }
}
@media (1024px >= width >= 767px) {
  .sitemap-wrap {
    display: grid;
    grid-template-rows: 1fr auto auto;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .sitemap-wrap .col {
    width: 70%;
    margin-inline: auto;
  }
  .sitemap-wrap .col:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  .sitemap-wrap .col:nth-child(2) {
    grid-area: 1/2/3/3;
  }
  .sitemap-wrap .col:nth-child(3) {
    grid-area: 2/1/4/2;
    margin-top: -5px;
  }
  .sitemap-wrap .col:nth-child(4) {
    grid-area: 3/2/4/3;
  }
}
@media only screen and (min-width: 1024px) {
  .sitemap-wrap .col {
    width: 25%;
  }
}
@media only screen and (max-width: 482px) {
  .ir .c-tab-btn-list li .btn {
    line-height: 1;
    min-height: 52px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 1020px) {
  .ir-monthly-section .ir-tbl-area {
    overflow-x: auto;
    white-space: nowrap;
  }
}
@media only screen and (min-width: 1021px) {
  .ir-monthly-section .ir-tbl-area .c-table05 tr:first-of-type th {
    padding-inline: 4px;
  }
}
/*# sourceMappingURL=style.css.map */