@charset "UTF-8";
:root {
  --color-black:#000;
  --color-darkgrey:#535353;
  --color-lightgrey:#E8E8E8;
  --color-ultralightgrey:#f4f4f4;
  --color-white:#fff;

  --color-red:#FF0015;
  --color-orangeyellow:#F7C325;
  --color-orange:#EF651A;
  --color-yellow:#FFFF00;
  --color-lightyellow:#FFFFE0;

  --color-lightblue:#00A0E9;
}



/*=================[すべてに適用]=================*/
@media all {

html {
  font-size: 62.5%;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: var(--color-black);
  background: var(--color-lightgrey);
  height: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.55;
  font-size: 1.4rem;
  min-width: initial;
}


/*reset*/
* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  font-size: 0px;
  vertical-align: bottom;
}


/*a*/
a, a img {
  color: var(--color-lightblue);
  text-decoration: underline;
  transition: 0.3s ease-in-out;
}

a:visited {
  color: var(--color-lightblue);
}

a:hover {
  color: var(--color-lightblue);
  text-decoration: none;
}

a:active {
  color: var(--color-lightblue);
}

/*btn*/
._close-btn {
  display: inline-block;
  background: var(--color-lightgrey);
  color: var(--color-black)!important;
  text-decoration: none;
  box-shadow: 0 2px 0 #bbb;
  text-decoration: none;
  padding: .45em 1.2em;
  border-radius: 100px;
}

._close-btn::before {
  font-family: 'Font Awesome 5 Free';
  padding-right: .4em;
  content: '\f00d';
  font-weight: 900;
  color: var(--color-orange);
}

/*common*/
._pc {
  display: none!important;
}

._sp {
  display: inline-block!important;
}

._indent{
  padding-left: 1em;
  text-indent: -1em;
}

._copy {
  margin-bottom: 1em;
}

._main {
  padding: 0 15px;
}


/*kv*/
.kv {
  background: var(--color-red);
  margin-bottom: 20px;
}


/*lead*/
.lead__copy {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
  line-height: 1.45;
}


.lead__notice {
  border: 3px solid var(--color-orange);
  border-radius: 5px;
  background: var(--color-white);
  margin-bottom: 30px;
  box-shadow: 0 0 1.5em rgba(192, 192, 192, 0.242);
}

.lead__notice-tit {
  background: var(--color-orange);
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
  padding: .35em;
  font-size: 1.5rem;
}

.lead__notice-list {
  padding: 1em;
  display: grid;
  gap: .5em;
}

.lead__links-list {
  margin-bottom: 30px;
  /* box-shadow: 0 0 1.5em rgba(192, 192, 192, 0.242); */
}


.lead__links-list-item {
  margin-bottom: 8px;
}

.lead__links-list-item a, .lead__links-list-item a:visited {
  background: var(--color-yellow);
  border: 2px solid rgb(215, 215, 1);
  color: var(--color-black);
  text-decoration: none;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items:center;
  gap: 12px;
  font-weight: 700;
  border-radius: 5px;
  padding: .65em 1em;
  line-height: 1.4;
  position:relative;
  font-size: 1.5rem;

}

.lead__links-list-item a::after {
  font-family: 'Font Awesome 5 Free';
  padding-right: .4em;
  content: '\f107';
  font-weight: 900;
  position: absolute;
  top:50%;
  right: .35em;
  transform: translateY(-50%);
  color: var(--color-red);
  font-size: 1.5em;
  text-shadow:
  2px 2px 0 var(--color-white),
  -2px 2px 0 var(--color-white),
  -2px -2px 0 var(--color-white),
  2px -2px 0 var(--color-white);
}

.lead__links-list-item-img {
  transform: scale(1.1);
  /* padding-left: 1em; */
}

.lead__links-list-item-txt {
  padding-right: 1.75em;
  text-shadow:
  2px 2px 0 var(--color-white),
  -2px 2px 0 var(--color-white),
  -2px -2px 0 var(--color-white),
  2px -2px 0 var(--color-white);
}



/*case*/
.case {
  margin-bottom: 10px;
}

.case__contents {
  background: var(--color-white);
  padding: 45px 15px 15px;
  border-radius: 5px;
  position: relative;
  top:-30px;
  box-shadow: 0 0 1.5em rgba(192, 192, 192, 0.242);
}

.case__qoo {
  width: 125px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.case__maintit {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: .75em;
  text-align: center;
}

.case__check {
  background: var(--color-lightyellow);
  padding: 1.2em;
  margin-bottom: 1em;
}

.case__check-list {
  display: grid;
  gap: .75em;
  line-height: 1.45;
}

.case__check-list-marker {
  color: var(--color-red);
}

.case__check-list-item {
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.case__check-list-item::before {
  font-family: 'Font Awesome 5 Free';
  padding-right: .4em;
  content: '\f058';
  font-weight: 900;
  color: var(--color-red);
  font-size: 1.4rem;
}

.case__checklist-eg {
  text-align: center;
}

.case__check-list-eg-btn, .case__check-list-eg-btn:visited {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white)!important;
  box-shadow: 0 2px 0 #c55417;
  font-weight: 700;
  text-decoration: none;
  padding: .45em 1.2em;
  border-radius: 100px;
}

.case__check-list-eg-btn::before {
  font-family: 'Font Awesome 5 Free';
  padding-right: .4em;
  content: '\f054';
  font-weight: 900;
}

.case__more-btn {
  position: relative;
  z-index: 2;
}

.case__more-btn-opened {
  display: none;
}

.case__more-contents {
  padding: 7vw 1.2em 1.2em;
  border: 3px solid var(--color-yellow);
  border-radius: 5px;
  position: relative;
  top:-5vw;
  margin-bottom: -5vw;
  display: none;
}

.case__more-contents-box {
  margin-bottom: 1.5em;
}

.case__tit-sub {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .75em;
}

.case__tit-bar {
  background: var(--color-lightgrey);
  text-align: center;
  border-radius: 2px;
  padding: .5em 1em;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: .75em;
}

.case__tit-bar-dark {
  background: var(--color-darkgrey);
  color: var(--color-white);
  text-align: center;
  border-radius: 2px;
  padding: .5em 1em;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: .75em;
}

.case__fig-2col {
  display: grid;
  gap: 20px;
  margin-bottom: 1em;
}

.case__fig-img {
  margin:0 auto .55em;
}

.case__fig-1col {
  padding: 5px 15px;
  margin-bottom: 0em;
}

.case__notice {
  font-size: 1.2rem;
  display: grid;
  gap: .35em;
  line-height: 1.4;
}

.case__more-contents-close {
  text-align: center;
}

/*case01*/
.case__attention {
  color: var(--color-red);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  border: 2px solid var(--color-red);
  padding: .75em;
  border-radius: 3px;
}

.case__3dsecure-list-item {
  font-weight: 700;
}

.case__credit-lead {
  padding: 1em 0 .75em 0;
}

.case__credit-list {
  font-weight: 700;
  display: grid;
}

/*case02*/
.case__flow {
  background: var(--color-ultralightgrey);
  padding: 1.2em;
  border-radius: 5px;
  margin-bottom: .5em;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
}

.case__flow-copy-marker {
  color: var(--color-red);
}

.case__flow-icon {
  text-align: center;
  font-size: 3.5rem;
  color: var(--color-orange);
  line-height: 1;
}

.case__flow-notice {
  margin-top: 1em;
}

.case__table {
  border-spacing: 0;
  border-top: 2px solid var(--color-lightgrey);
  border-bottom: 1px solid var(--color-lightgrey);
  margin: 0 auto;
  width: 100%;
}

.case__table th {
  border-bottom: 1px solid var(--color-lightgrey);
  padding: .75em 1.2em;
  vertical-align: middle;
  white-space: nowrap;
  background:var(--color-ultralightgrey);
  text-align: center;
}

.case__table td {
	border-bottom: 1px solid var(--color-lightgrey);
  background: var(--color-white);
  padding: .75em 1.2em;
	vertical-align: middle;
	word-break: break-all;
  text-align: center;
}

.case__career-list {
  margin-bottom: 1em;
  display: grid;
  gap: .25em;
}

/*case03*/
.case__confirm-list {
  background: var(--color-ultralightgrey);
  border-radius: 5px;
  padding: 1.2em;
  font-weight: 700;
  display: grid;
  gap: .35em;
  margin: .75em 0;
}

.case__confirm-list-item {
  padding-left: 23px;
  background: url(/special/troubleshooting/img/case_03_icon_checked.png) no-repeat 0px 3px;
  background-size: 15px;
}

.case__confirm-img {
  margin: 2em 0;
}

/*case04*/
.case__notice--case04 {
  font-size: 1.4rem;
}

/*case-others*/
.case__contents--others {
  margin-top: 20px;
}

.case__maintit--others {
  text-align: left;
}

.case__contents--others {
  padding: 20px;
  top:auto;
  margin-bottom: 30px;
}

.case-others-btnlist {
  display: grid;
  gap: 7px;
}


/*spec*/
.case__contents--spec {
  padding: 15px;
  top:auto;
}

.case__table--spec {
  margin-bottom: .5em;
}

.case-spec__box--pc {
  margin-bottom: 2em;
}

.case-spec__close {
  text-align: center;
  padding-top: 1em;
}

.case-spec__inner {
  height: 65vh;
  overflow: auto;
  padding-right: 10px;
}


/*footer*/
.footer {
  padding: 15px;
  background: var(--color-lightgrey);
  color: var(--color-black);
  text-align: center;
  width: 100%;
}

.footer__logo__img {
  width: 60%;
}

.footer__copyright {
  font-size: 0.8rem;
}


/*pagetop*/
#pagetop {
  position: fixed;
  right: 3%;
  bottom: 3%;
  text-align: center;
  line-height: 1;
  font-size: 1.8rem;
  z-index: 5;
}

#pagetop a, #pagetop a:visited {
  text-decoration: none;
  text-align: center;
  display: block;
  background: #e30e0e;
  color: #fff;
  border-radius: 1000px;
  padding: 15px;
}

#pagetop a:hover {
  color: #e30e0e;
  background: #fff;
  text-decoration: none;
}

}




/*=================[PC向け適用]=================*/
@media all and (min-width: 769px) {
body {
  font-size: 1.5rem;
  min-width:1100px;
}

._pc {
  display: inline-block!important;
}

._sp {
  display: none!important;
}

._copy {
  margin-bottom: 1.5em;
}

._main {
  padding: 0;
  width: 850px;
  margin: 0 auto;
}

._close-btn:hover {
  color: var(--color-lightgrey)!important;
  background: var(--color-darkgrey);
  box-shadow: 0 2px 0 #222;
}

/*kv*/
.kv {
  background: var(--color-red);
  margin-bottom: 30px;
}

.kv__img {
  width: 750px;
  margin: 0 auto;
}


/*lead*/
.lead__copy {
  font-size: 1.8rem;
}

.lead__notice {
  border: 4px solid var(--color-orange);
  border-radius: 8px;
  margin-bottom: 40px;
}

.lead__notice-tit {
  font-size: 1.7rem;
}

.lead__notice-list {
  font-size: 1.5rem;
}

.lead__links-list {
  margin-bottom: 50px;
}

.lead__links-list-item {
  margin-bottom: 12px;
}

.lead__links-list-item a, .lead__links-list-item a:visited {
  grid-template-columns: 70px 1fr;
  gap: 20px;
  font-size: 2rem;
  border-radius: 8px;
}

.lead__links-list-item a:hover {
  opacity: 0.8;
}

/*case*/
.case__contents {
  padding: 45px 20px 20px;
  border-radius: 8px;
}

.case__qoo {
  width: 150px;
}

.case__maintit {
  font-size: 2.2rem;
}

.case__check {
  font-size: 1.6rem;
}

.case__more-btn:hover img {
  opacity: 0.8;
}

.case__more-contents {
  padding: 40px 1.5em 1.5em;
  border: 5px solid var(--color-yellow);
  border-radius: 8px;
  top:-30px;
  margin-bottom: -30px;
}

.case__more-contents-box {
  margin-bottom: 2.5em;
}

.case__tit-sub {
  font-size: 1.7rem;
  text-align: center;
}

.case__tit-bar {
  font-size: 1.6rem;
}

.case__tit-bar-dark {
  font-size: 1.6rem;
}

.case__notice {
  font-size: 1.3rem;
}

.case__check-list-eg-btn:hover {
  color: var(--color-orange)!important;
  background: var(--color-white);
  box-shadow: 0 2px 0 #ffe8dc;
}


.case__fig-2col {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2em;
}

.case__fig-1col {
  width: 60%;
  margin: 0 auto;
}


/*case01*/
.case__credit-lead {
  padding: 2em 0 .75em 0;
}

/*case02*/
.case__flow {
  margin-bottom: .75em;
  font-size: 1.6rem;
}

.case__table tr th:first-child {
  width: 70%;
}

/*case03*/
.case__confirm-list {
  background: var(--color-ultralightgrey);
  border-radius: 5px;
  padding: 1.2em;
  font-size: 1.6rem;
  font-weight: 700;
  display: grid;
  gap: .25em;
  margin: .75em 0;
}

.case__confirm-list-item {
  padding-left: 27px;
  background: url(/special/troubleshooting/img/case_03_icon_checked.png) no-repeat center left;
  background-size: 20px;
}

/*case04*/
.case__notice--case04 {
  font-size: 1.5rem;
}

/*case-others*/
.case__contents--others {
  padding: 25px;
  top:auto;
  margin-bottom: 30px;
}

.case__maintit--others {
  text-align: center;
}

.case-others-btnlist {
  gap: 10px;
}

.case-others-btnlist__item a:hover {
  opacity: 0.85;
}

/*spec*/
.case__contents--spec {
  padding: 30px;
}

.case__tit-sub--spec {
  text-align: left;
}

.case__table--spec {
  margin-bottom: .5em;
  table-layout: fixed;
}

.case__table--spec tr th:first-child {
  width: auto;
}



/*footer*/
.footer {
  padding: 25px;
  text-align: right;
}

.footer__inner {
  width: 850px;
  margin: 0 auto;
}

.footer__logo {
  float: left;
}

.footer__logo__img {
  width: 260px;
}

.footer__copyright {
  font-size: 1.2rem;
  display: inline-block;
  padding: 30px 0 0 0;
}

#pagetop a, #pagetop a:visited {
  padding: 20px;
}

}
