@charset "UTF-8";

/*
 * filename: howto.css
 * version: 1.0
 */
#main {
  /* --- common ---*/
  /* --- for howto ---*/
  /* --- for howto_single ---*/
}

#main .mod1 .mod11 {
  height: auto;
  width: 100%;
  margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
  #main .mod1 .mod11 {
    margin-bottom: 20px;
  }
}

#main .mod1 .mod11 .hdr {
  height: 100px;
  position: relative;
  width: 256px;
}

@media screen and (max-width: 600px) {
  #main .mod1 .mod11 .hdr {
    width: 100%;
  }
}

#main .mod1 .mod11 .hdr a {
  height: 100%;
  width: 100%;
  background-color: #00af3a;
  border-radius: 5px;
  display: block;
  position: relative;
  transition: 0.2s;
}

#main .mod1 .mod11 .hdr a::after {
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #ffffff transparent;
  bottom: 8px;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: 8px;
  transition: 0.2s;
  width: 0;
}

@media screen and (max-width: 600px) {
  #main .mod1 .mod11 .hdr a::after {
    border-width: 0 0 8px 8px;
    bottom: 8px;
    right: 8px;
  }
}

#main .mod1 .mod11 .hdr a:hover {
  opacity: 0.7;
}

#main .mod1 .mod11 .hdr a .inner {
  height: auto;
  width: 100%;
  color: #ffffff;
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

#main .mod1 .mod11 .hdr a .inner .logo {
  display: inline-block;
  height: auto;
  width: 130px;
}

#main .mod1 .mod12 {
  height: auto;
  width: 100%;
}

#main .mod1 .mod12 > [class*="mod12"] {
  height: auto;
  width: 100%;
}

#main .mod1 .mod12 > [class*="mod12"]:not(:last-of-type) {
  height: auto;
  width: 100%;
  margin-bottom: 10px;
}

#main .mod1 .mod12 > [class*="mod12"] .ttl {
  height: auto;
  width: 100%;
  background-color: #ffffff;
  color: #00af3a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  padding: 18px 15px;
}

#main .mod1 .mod12 > [class*="mod12"] .lnk {
  height: auto;
  width: 100%;
  background-color: #ffffff;
  padding: 20px 15px;
}

#main .mod1 .mod12 > [class*="mod12"] .lnk li {
  height: auto;
  width: 100%;
}

#main .mod1 .mod12 > [class*="mod12"] .lnk li:not(:last-of-type) {
  margin-bottom: 10px;
}

#main .mod1 .mod12 > [class*="mod12"] .lnk li a {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  transition: 0.2s;
}

#main .mod1 .mod12 > [class*="mod12"] .lnk li a:hover {
  color: #00af3a;
}

#main .tabPCSP {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 60px;
}

@media screen and (max-width: 600px) {
  #main .tabPCSP {
    max-width: 400px;
    padding: 0 20px;
    box-sizing: content-box;
    margin: 0 auto 25px;
  }
}

#main .tabPCSP li {
  width: calc(100% / 3 - 5px);
  list-style-type: none;
  height: 94px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}

@media screen and (max-width: 600px) {
  #main .tabPCSP li {
    height: auto;
  }
}

#main .tabPCSP li.current {
  background-color: #00af3a;
}

#main .tabPCSP li.current a::after {
  border-color: transparent transparent #fff transparent;
}

#main .tabPCSP li.current a p span {
  color: #fff;
}

#main .tabPCSP li.current::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #00af3a transparent transparent transparent;
  bottom: -10px;
  right: 0;
  left: 0;
  margin: auto;
}

#main .tabPCSP li::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #00af3a;
  position: absolute;
  top: 0;
  border-radius: 5px 5px 0 0;
}

#main .tabPCSP li:hover {
  background-color: #00af3a;
}

#main .tabPCSP li:hover a::after {
  border-color: transparent transparent #fff transparent;
}

#main .tabPCSP li:hover a p span {
  color: #fff;
}

#main .tabPCSP li a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 600px) {
  #main .tabPCSP li a {
    padding: 10px;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
  }
}

#main .tabPCSP li a::after {
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #00af3a transparent;
  bottom: 8px;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: 8px;
  transition: 0.2s;
  width: 0;
}

@media screen and (max-width: 600px) {
  #main .tabPCSP li a::after {
    border-width: 0 0 8px 8px;
  }
}

#main .tabPCSP li a p {
  padding-top: 2px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 600px) {
  #main .tabPCSP li a p {
    -ms-flex-flow: column;
    flex-flow: column;
  }
}

#main .tabPCSP li a p span {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #646e66;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  line-height: 1.4;
}

@media screen and (max-width: 600px) {
  #main .tabPCSP li a p span {
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
  }

  #main .tabPCSP li a p span br {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  #main .tabPCSP li.tabPC a {
    padding-top: 16px;
  }
}

#main .tabPCSP li.tabPC a p {
  padding-top: 2px;
}

@media screen and (max-width: 600px) {
  #main .tabPCSP li.tabPC a p span {
    width: calc(100% - 11px);
  }
}

#main .tabPCSP li.tabPC a p::before {
  width: 50px;
  height: 41px;
  content: "";
  display: block;
  background: url(../../images/navi/ico-pc_01.svg) no-repeat;
  background-size: contain;
  margin-right: 14px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 600px) {
  #main .tabPCSP li.tabPC a p::before {
    width: 30px;
    height: 25px;
    margin-right: 0;
    margin-bottom: 8px;
  }
}

#main .tabPCSP li.tabPC:hover a p::before {
  background: url(../../images/navi/ico-pc_02.svg) no-repeat;
  background-size: contain;
}

#main .tabPCSP li.tabPC.current a p::before {
  background: url(../../images/navi/ico-pc_02.svg) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 600px) {
  #main .tabPCSP li.tabSP a p span {
    width: calc(100% - 11px);
  }
}

#main .tabPCSP li.tabSP a p::before {
  width: 28px;
  height: 48px;
  content: "";
  display: block;
  background: url(../../images/navi/ico-sp_01.svg) no-repeat;
  background-size: contain;
  margin-right: 14px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 600px) {
  #main .tabPCSP li.tabSP a p::before {
    width: 20px;
    height: 35px;
    margin-right: 0;
    margin-bottom: 4px;
  }
}

#main .tabPCSP li.tabSP:hover a p::before {
  background: url(../../images/navi/ico-sp_02.svg) no-repeat;
  background-size: contain;
}

#main .tabPCSP li.tabSP.current a p::before {
  background: url(../../images/navi/ico-sp_02.svg) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 600px) {
  #main .tabPCSP li.tabML a {
    padding-top: 17px;
  }
}

@media screen and (max-width: 600px) {
  #main .tabPCSP li.tabML a p span {
    width: calc(100% - 11px);
  }
}

#main .tabPCSP li.tabML a p::before {
  width: 44px;
  height: 32px;
  content: "";
  display: block;
  background: url(../../images/navi/ico-mail_01.svg) no-repeat;
  background-size: contain;
  margin-right: 14px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 600px) {
  #main .tabPCSP li.tabML a p::before {
    width: 30px;
    height: 22px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

#main .tabPCSP li.tabML:hover a p::before {
  background: url(../../images/navi/ico-mail_02.svg) no-repeat;
  background-size: contain;
}

#main .tabPCSP li.tabML.current a p::before {
  background: url(../../images/navi/ico-mail_02.svg) no-repeat;
  background-size: contain;
}

#main > .sec11 {
  height: auto;
  width: 100%;
}

@media screen and (max-width: 600px) {
  #main > .sec11 {
    border-top: 5px solid #ffffff;
  }
}

#main > .sec11 > .inner {
  height: auto;
  margin: 0 auto;
  padding: 50px 0 10px;
  position: relative;
  width: 1120px;
}

@media screen and (max-width: 600px) {
  #main > .sec11 > .inner {
    max-width: 440px;
    padding: 40px 20px 20px;
    width: 100%;
  }
}

#main > .sec11 > .inner > .hdr {
  height: auto;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 600px) {
  #main > .sec11 > .inner > .hdr {
    width: 100%;
  }
}

#main > .sec11 > .inner > .hdr strong {
  border-bottom: 4px solid #00af3a;
  color: #00af3a;
  display: inline-block;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.05em;
  padding: 0 7.5px 10px;
}

@media screen and (max-width: 600px) {
  #main > .sec11 > .inner > .hdr strong {
    font-size: 16px;
  }
}

#main > .sec12 {
  height: auto;
  width: 100%;
}

#main > .sec12 > .inner {
  /*border-bottom: 3px solid #dddddd;*/
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  height: auto;
  justify-content: space-between;
  margin: 0 auto;
  padding: 50px 0 100px;
  width: 1120px;
}

@media screen and (max-width: 600px) {
  #main > .sec12 > .inner {
    border-bottom: none;
    max-width: 440px;
    padding: 20px 0 0;
    width: 100%;
  }
}

#main > .sec12 > .inner > .cnt1 {
  height: auto;
  width: 100%;
  margin-bottom: 60px;
}

@media screen and (max-width: 600px) {
  #main > .sec12 > .inner > .cnt1 {
    padding: 0 20px;
    width: 90%;
    margin: 0 auto 30px;
  }
}

#main > .sec12 > .inner > .cnt1 .lnk {
  height: auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#main > .sec12 > .inner > .cnt1 .lnk li {
  height: 100px;
  width: 256px;
}

@media screen and (max-width: 600px) {
  #main > .sec12 > .inner > .cnt1 .lnk li {
    height: 70px;
    width: calc(50% - 5px);
  }
}

#main > .sec12 > .inner > .cnt1 .lnk li:nth-of-type(-n + 2) {
  margin-bottom: 10px;
}

#main > .sec12 > .inner > .cnt1 .lnk li a {
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  display: block;
  position: relative;
  transition: 0.2s;
}

#main > .sec12 > .inner > .cnt1 .lnk li a::after {
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #00af3a transparent;
  bottom: 8px;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: 8px;
  transition: 0.2s;
  width: 0;
}

@media screen and (max-width: 600px) {
  #main > .sec12 > .inner > .cnt1 .lnk li a::after {
    border-width: 0 0 8px 8px;
    bottom: 8px;
    right: 8px;
  }
}

#main > .sec12 > .inner > .cnt1 .lnk li a .txt {
  height: auto;
  width: 100%;
  color: #00af3a;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}

@media screen and (max-width: 600px) {
  #main > .sec12 > .inner > .cnt1 .lnk li a .txt {
    font-size: 14px;
  }
}

#main > .sec12 > .inner > .cnt1 .lnk li a:hover {
  background-color: #00af3a;
}

#main > .sec12 > .inner > .cnt1 .lnk li a:hover::after {
  border-color: transparent transparent #ffffff transparent;
}

#main > .sec12 > .inner > .cnt1 .lnk li a:hover .txt {
  color: #ffffff;
}

#main > .sec12 > .inner > .cnt2 {
  height: auto;
  width: calc(100% - 290px);
  /*howto_mlページ*/
}

@media screen and (max-width: 600px) {
  #main > .sec12 > .inner > .cnt2 {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
  }
}

#main > .sec12 > .inner > .cnt2 > [class*="cnt2"] {
  height: auto;
  width: 100%;
  background-color: #ffffff;
  padding: 0 50px;
}

@media screen and (max-width: 600px) {
  #main > .sec12 > .inner > .cnt2 > [class*="cnt2"] {
    padding: 0 20px;
  }
}

#main > .sec12 > .inner > .cnt2 > [class*="cnt2"]:not(:last-of-type) {
  height: auto;
  width: 100%;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  #main > .sec12 > .inner > .cnt2 > [class*="cnt2"]:not(:last-of-type) {
    margin-bottom: 4px;
  }
}

#main > .sec12 > .inner > .cnt2 > [class*="cnt2"] > .hdr {
  height: auto;
  width: 100%;
  color: #00af3a;
  border-bottom: 5px solid #f3f3f3;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 30px 0;
  text-align: center;
}

@media screen and (max-width: 600px) {
  #main > .sec12 > .inner > .cnt2 > [class*="cnt2"] > .hdr {
    border-bottom: 3px solid #f3f3f3;
    font-size: 16px;
    padding: 40px 0;
  }
}

#main > .sec12 > .inner > .cnt2 > [class*="cnt2"] > .lst {
  height: auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 600px) {
  #main > .sec12 > .inner > .cnt2 > [class*="cnt2"] > .lst {
    padding: 20px 0;
  }
}

#main > .sec12 > .inner > .cnt2 > [class*="cnt2"] > .lst .itm {
  height: auto;
  position: relative;
  width: 50%;
}

@media screen and (max-width: 600px) {
  #main > .sec12 > .inner > .cnt2 > [class*="cnt2"] > .lst .itm {
    width: 100%;
  }
}

#main
  > .sec12
  > .inner
  > .cnt2
  > [class*="cnt2"]
  > .lst
  .itm:nth-of-type(2n-1) {
  padding: 40px 20px 40px 0;
}

@media screen and (max-width: 600px) {
  #main
    > .sec12
    > .inner
    > .cnt2
    > [class*="cnt2"]
    > .lst
    .itm:nth-of-type(2n-1) {
    padding: 20px 15px;
  }
}

#main
  > .sec12
  > .inner
  > .cnt2
  > [class*="cnt2"]
  > .lst
  .itm:nth-of-type(2n-1):not(:nth-last-of-type(-n + 2))::after {
  border-bottom: 1px dotted #000000;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 200%;
}

@media screen and (max-width: 600px) {
  #main
    > .sec12
    > .inner
    > .cnt2
    > [class*="cnt2"]
    > .lst
    .itm:nth-of-type(2n-1):not(:nth-last-of-type(-n + 2))::after {
    display: none;
  }
}

#main > .sec12 > .inner > .cnt2 > [class*="cnt2"] > .lst .itm:nth-of-type(2n) {
  padding: 40px 0 40px 20px;
}

@media screen and (max-width: 600px) {
  #main
    > .sec12
    > .inner
    > .cnt2
    > [class*="cnt2"]
    > .lst
    .itm:nth-of-type(2n) {
    padding: 20px 15px;
  }
}

#main > .sec12 > .inner > .cnt2 > [class*="cnt2"] > .lst .itm .ttl {
  height: auto;
  width: 100%;
  color: #00af3a;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  #main > .sec12 > .inner > .cnt2 > [class*="cnt2"] > .lst .itm .ttl {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

#main > .sec12 > .inner > .cnt2 > [class*="cnt2"] > .lst .itm .lnk {
  height: auto;
  width: 100%;
  background-color: #ffffff;
  padding: 10px 0;
}

#main > .sec12 > .inner > .cnt2 > [class*="cnt2"] > .lst .itm .lnk li {
  height: auto;
  width: 100%;
  padding-left: 15px;
  position: relative;
}

#main
  > .sec12
  > .inner
  > .cnt2
  > [class*="cnt2"]
  > .lst
  .itm
  .lnk
  li:not(:last-of-type) {
  margin-bottom: 15px;
}

#main > .sec12 > .inner > .cnt2 > [class*="cnt2"] > .lst .itm .lnk li::before {
  background-image: url("../../images/navi/ico-carret_right_002.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 15px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 7.5px;
}

#main > .sec12 > .inner > .cnt2 > [class*="cnt2"] > .lst .itm .lnk li a {
  display: block;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  vertical-align: bottom;
  transition: 0.2s;
}

#main > .sec12 > .inner > .cnt2 > [class*="cnt2"] > .lst .itm .lnk li a:hover {
  color: #00af3a;
}

#main
  > .sec12
  > .inner
  > .cnt2
  > [class*="cnt2"]
  > .lst
  .itm
  .lnk
  li.video
  a::after {
  background-image: url("../../images/navi/ico-play.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 19.5px;
  margin-left: 5px;
  vertical-align: text-bottom;
  width: 25px;
}

#main > .sec12 > .inner > .cnt2.howto_ml > [class*="cnt2"] > .lead {
  margin-top: 40px;
  font-size: 15px;
  text-align: center;
  line-height: 2;
}

@media screen and (max-width: 600px) {
  #main > .sec12 > .inner > .cnt2.howto_ml > [class*="cnt2"] > .lead {
    font-size: 14px;
    text-align: left;
  }

  #main > .sec12 > .inner > .cnt2.howto_ml > [class*="cnt2"] > .lead br {
    display: none;
  }
}

#main > .sec12 > .inner > .cnt2.howto_ml > [class*="cnt2"] > .lead a {
  text-decoration: underline;
}

#main > .sec12 > .inner > .cnt2.howto_ml > [class*="cnt2"] > .lead a:hover {
  text-decoration: none;
}

#main
  > .sec12
  > .inner
  > .cnt2.howto_ml
  > [class*="cnt2"]
  > .lst
  .itm:last-child {
  padding-top: 96px;
}

#main
  > .sec12
  > .inner
  > .cnt2.howto_ml
  > [class*="cnt2"]
  > .lst
  .itm
  .lnk
  li
  a.linkArrow01[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 9px;
  background: url(/images/common/ico-win_green.svg) no-repeat;
  fill: #00af3a;
  background-size: cover;
  margin-left: 9px;
}

@media screen and (max-width: 600px) {
  #main > .sec12 > .inner > .cnt2.howto_ml > [class*="cnt2"] > .lst .itm {
    padding-bottom: 0;
  }

  #main
    > .sec12
    > .inner
    > .cnt2.howto_ml
    > [class*="cnt2"]
    > .lst
    .itm:last-child {
    padding-top: 0px;
    padding-bottom: 15px;
  }

  #main
    > .sec12
    > .inner
    > .cnt2.howto_ml
    > [class*="cnt2"]
    > .lst
    .itm:last-child
    .lnk {
    padding-top: 5px;
  }
}

#main > .sec12 > .inner > .cnt3 {
  height: auto;
  width: 256px;
}

@media screen and (max-width: 600px) {
  #main > .sec12 > .inner > .cnt3 {
    padding: 20px 20px 0;
    width: 100%;
  }
}

#main > .sec21 {
  height: auto;
  width: 100%;
}

@media screen and (max-width: 600px) {
  #main > .sec21 {
    border-top: 5px solid #ffffff;
  }
}

#main > .sec21 > .inner {
  height: auto;
  margin: 0 auto;
  padding: 50px 0 10px;
  position: relative;
  width: 1120px;
}

@media screen and (max-width: 600px) {
  #main > .sec21 > .inner {
    max-width: 440px;
    padding: 40px 20px 20px;
    width: 100%;
  }
}

#main > .sec21 > .inner > .hdr {
  height: auto;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 600px) {
  #main > .sec21 > .inner > .hdr {
    width: 100%;
  }
}

#main > .sec21 > .inner > .hdr strong {
  border-bottom: 4px solid #00af3a;
  color: #00af3a;
  display: inline-block;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.05em;
  padding: 0 7.5px 10px;
}

@media screen and (max-width: 600px) {
  #main > .sec21 > .inner > .hdr strong {
    font-size: 16px;
  }
}

#main > .sec22 {
  height: auto;
  width: 100%;
}

#main > .sec22 > .inner {
  /*border-bottom: 3px solid #dddddd;*/
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  height: auto;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
  padding: 50px 0 100px;
  width: 1120px;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner {
    border-bottom: none;
    max-width: 440px;
    padding: 30px 0 0;
    width: 100%;
  }
}

#main > .sec22 > .inner > .cnt1 {
  height: auto;
  width: 100%;
  margin-top: -36px;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt1 {
    margin: 0 auto;
    max-width: 400px;
    margin-top: -34px;
  }
}

#main > .sec22 > .inner > .cnt1 .lnk {
  height: auto;
  width: 100%;
  text-align: right;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt1 .lnk {
    text-align: center;
    padding-bottom: 30px;
  }
}

#main > .sec22 > .inner > .cnt1 .lnk a {
  color: #00af3a;
  font-size: 16px;
  font-weight: 900;
  transition: 0.2s;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt1 .lnk a {
    font-size: 14px;
  }
}

#main > .sec22 > .inner > .cnt1 .lnk a:hover {
  text-decoration: underline;
}

#main > .sec22 > .inner > .cnt2 {
  height: auto;
  width: calc(100% - 290px);
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 {
    margin: 0 auto;
    max-width: 440px;
    width: 100%;
  }
}

#main > .sec22 > .inner > .cnt2 > .entry {
  height: auto;
  width: 100%;
  background-color: #ffffff;
  position: relative;
  margin-bottom: 60px;
  padding: 40px 48px 80px 48px;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .entry {
    margin-bottom: 20px;
    padding: 25px 20px 40px 20px;
  }
}

#main > .sec22 > .inner > .cnt2 > .entry .howtoSubBox {
  position: absolute;
  top: 35px;
  right: 48px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .entry .howtoSubBox {
    right: 20px;
    top: 20px;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    position: static;
    margin-bottom: 10px;
  }
}

#main > .sec22 > .inner > .cnt2 > .entry .howtoSubBox .spLink {
  margin-right: 20px;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .entry .howtoSubBox .spLink {
    margin-right: 0;
  }
}

#main > .sec22 > .inner > .cnt2 > .entry .howtoSubBox .spLink a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#main > .sec22 > .inner > .cnt2 > .entry .howtoSubBox .spLink a:hover {
  opacity: 0.7;
}

#main > .sec22 > .inner > .cnt2 > .entry .howtoSubBox .spLink a span {
  font-size: 15px;
  color: #00af3a;
  line-height: 1.33;
  letter-spacing: 0;
  font-weight: bold;
  display: inline-block;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .entry .howtoSubBox .spLink a span {
    font-size: 12px;
  }
}

#main > .sec22 > .inner > .cnt2 > .entry .howtoSubBox .spLink a.forPC::before {
  content: "";
  width: 14px;
  height: 24px;
  display: inline-block;
  background-image: url(../../images/navi/ico-sp_01.svg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 10px;
}

#main > .sec22 > .inner > .cnt2 > .entry .howtoSubBox .spLink a.forSP::before {
  content: "";
  width: 24px;
  height: 20px;
  display: inline-block;
  background-image: url(../../images/navi/ico-pc_01.svg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 10px;
}

#main > .sec22 > .inner > .cnt2 > .entry .howtoSubBox .howtoTitle {
  display: inline-block;
  padding: 0 15px;
  background: #646e66;
  height: 34px;
  line-height: 34px;
  font-size: 15px;
  color: #fff;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .entry .howtoSubBox .howtoTitle {
    font-size: 12px;
    line-height: 30px;
    height: 30px;
    margin-bottom: 5px;
  }
}

#main > .sec22 > .inner > .cnt2 > .entry #title_2 {
  margin-bottom: 60px;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .entry #title_2 {
    margin-bottom: 35px;
  }
}

#main > .sec22 > .inner > .cnt2 > .entry #title_2 h4 {
  font-weight: bold;
  line-height: 1.5;
  font-size: 30px;
  color: #000;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .entry #title_2 h4 {
    font-size: 24px;
  }
}

#main > .sec22 > .inner > .cnt2 > .entry #title_2 h4 em {
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
  color: #00af3a;
  font-size: 16px;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .entry #title_2 h4 em {
    font-size: 12px;
    position: absolute;
    top: 25px;
    left: 20px;
  }
}

#main > .sec22 > .inner > .cnt2 > .pagi {
  height: auto;
  width: 100%;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .pagi {
    padding: 0 20px;
  }
}

#main > .sec22 > .inner > .cnt2 > .pagi > .lst {
  height: auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#main > .sec22 > .inner > .cnt2 > .pagi > .lst li {
  height: auto;
  width: 276px;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .pagi > .lst li {
    width: calc(50% - 5px);
  }
}

#main > .sec22 > .inner > .cnt2 > .pagi > .lst li .btn {
  height: auto;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  transition: 0.2s;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .pagi > .lst li .btn {
    font-size: 14px;
  }
}

#main > .sec22 > .inner > .cnt2 > .pagi > .lst li .btn:hover {
  opacity: 0.7;
}

#main > .sec22 > .inner > .cnt2 > .pagi > .lst li .btn::after {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
}

#main > .sec22 > .inner > .cnt2 > .pagi > .lst li .lnk {
  color: #00af3a;
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  transition: 0.2s;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .pagi > .lst li .lnk {
    font-size: 14px;
  }
}

#main > .sec22 > .inner > .cnt2 > .pagi > .lst li .lnk:hover {
  opacity: 0.7;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .pagi > .lst li.prev {
    order: 1;
  }
}

#main > .sec22 > .inner > .cnt2 > .pagi > .lst li.prev .btn {
  padding: 32.5px 0 32.5px 65px;
  text-align: left;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .pagi > .lst li.prev .btn {
    padding: 23px 0 23px 40px;
  }
}

#main > .sec22 > .inner > .cnt2 > .pagi > .lst li.prev .btn::after {
  background-image: url("../../images/navi/ico-arrow_left.svg");
  left: 30px;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .pagi > .lst li.prev .btn::after {
    left: 20px;
  }
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .pagi > .lst li.home {
    order: 3;
    width: 100%;
  }
}

#main > .sec22 > .inner > .cnt2 > .pagi > .lst li.home .lnk {
  padding: 32.5px 0;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .pagi > .lst li.home .lnk {
    padding: 23px 0;
  }
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .pagi > .lst li.next {
    order: 1;
  }
}

#main > .sec22 > .inner > .cnt2 > .pagi > .lst li.next .btn {
  padding: 32.5px 65px 32.5px 0;
  text-align: right;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .pagi > .lst li.next .btn {
    padding: 23px 40px 23px 0;
  }
}

#main > .sec22 > .inner > .cnt2 > .pagi > .lst li.next .btn::after {
  background-image: url("../../images/navi/ico-arrow_right.svg");
  right: 30px;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt2 > .pagi > .lst li.next .btn::after {
    right: 20px;
  }
}

#main > .sec22 > .inner > .cnt3 {
  height: auto;
  width: 256px;
}

@media screen and (max-width: 600px) {
  #main > .sec22 > .inner > .cnt3 {
    padding: 20px 20px 0;
    width: 100%;
  }
}

/*# sourceMappingURL=howto_ml.css.map */
