@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  word-wrap: break-word;
}
body.is-fixed {
  overflow-y: scroll; /* 縦スクロールバーを常に表示 */
  position: fixed;
  width: 100%;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
strong,
address {
  margin: 0;
  padding: 0;
}

ul,
li,
dl,
dt,
dd {
  list-style-type: none;
  line-height: 1;
  margin: 0;
  padding: 0;
}

button {
  appearance: none;
  background-color: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

@media (min-width: 768px) {
  .sp_only {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc_only {
    display: none;
  }
}
pre {
  white-space: pre-wrap;
}

.sourceCode {
  background-color: #000;
  color: #fff;
  display: none;
  font-size: 1.4rem;
  margin: -30px 0 30px;
  padding-left: 1em;
}
.sourceCode p {
  color: #ff8c00;
}
.sourceCode p:last-child {
  margin-top: 1em;
}

.overlay {
  background: rgba(0, 0, 0, 0.4);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}

.header {
  background-color: #333;
  left: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
}
.header__inner {
  align-items: center;
  height: 60px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 980px;
  padding: 0 20px;
}

.filter button {
  appearance: none;
  background-color: #fff;
  font-size: 1.2rem;
}
.filter button.active {
  background-color: #888;
  color: #fff;
}

.menu .menu__btn {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 50px;
  justify-content: center;
  padding: 3px 5px;
  position: fixed;
  right: 10px;
  top: 6px;
  transition: background-color 0.4s;
  width: 50px;
  z-index: 100;
}
.menu .menu__btn span {
  background-color: #fff;
  display: block;
  height: 3px;
  margin: 3px auto;
  transition: 0.4s;
  width: 25px;
}
.menu .menu__btn.is-active span {
  background-color: #292c2e;
}
.menu .menu__btn.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 6px);
}
.menu .menu__btn.is-active span:nth-child(2) {
  opacity: 0;
}
.menu .menu__btn.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.menu .menu__wrap {
  height: 100%;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(300px);
  transition: transform 0.4s;
  width: 300px;
  z-index: 99;
}
.menu .menu__wrap.is-active {
  transform: translateX(0);
}
.menu .menu__list {
  background: #fff;
  min-height: 100%;
  padding: 96px 15px;
  width: 100%;
}
.menu .menu__list li {
  padding-left: 15px;
}
.menu .menu__list li:not(:last-child) {
  border-bottom: 1px solid #bdbdbd;
  margin-bottom: 24px;
  padding-bottom: 24px;
}
.menu .menu__list li a {
  color: #292c2e;
  display: block;
  font-size: 18px;
  font-weight: 900;
  position: relative;
}
.menu .menu__list li a:after {
  border-top: 2px solid #6e6e73;
  border-right: 2px solid #6e6e73;
  content: "";
  height: 6px;
  right: 15px;
  position: absolute;
  top: 50%;
  width: 6px;
  transform: translateY(-50%) rotate(135deg);
}

.breadcrumb {
  display: flex;
  margin: 0 auto;
  max-width: 980px;
  padding: 10px 20px;
}
.breadcrumb li {
  font-size: 1.2rem;
  padding: 0 6px;
  position: relative;
}
.breadcrumb li:not(:last-child)::after {
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  height: 4px;
  right: -2px;
  position: absolute;
  top: 50%;
  width: 4px;
  transform: translateY(-50%) rotate(45deg);
}
.breadcrumb li a:hover {
  text-decoration: underline;
}

main {
  background-color: #fff;
}

section {
  margin-bottom: 30px;
}
section .sec__inner {
  margin: 0 auto;
  max-width: 980px;
  padding: 0 20px;
}
section .sec__txt {
  font-size: 1.6rem;
  line-height: 1.6;
}
section .sec__txt--line {
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: #f0ed47;
  text-underline-offset: -4px;
  text-decoration-skip-ink: none;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 20px 20px 10px;
}
.footer__inner {
  margin: 0 auto;
  max-width: 980px;
  padding: 20px;
}
.footer__cont {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767.9px) {
  .footer__cont {
    flex-direction: row;
  }
}
.footer__cont > * {
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 767.9px) {
  .footer__cont > * {
    width: 100%;
  }
}
.footer__col h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}
.footer__col ul {
  list-style: none;
  padding: 0;
}
.footer__col ul li {
  margin-bottom: 10px;
}
.footer__col ul li a {
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
}
.footer__col ul li a:hover {
  text-decoration: underline;
}
.footer .copyright {
  font-size: 12px;
  margin-top: 20px;
  text-align: center;
}

.ttl {
  color: currentColor;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.txt {
  color: currentColor;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.col2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767.9px) {
  .col2 {
    flex-direction: row;
  }
}
.col2 > * {
  width: calc((100% - 10px) / 2);
}
@media screen and (max-width: 767.9px) {
  .col2 > * {
    width: 100%;
  }
}

.col3 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767.9px) {
  .col3 {
    flex-direction: row;
  }
}
.col3 > * {
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 767.9px) {
  .col3 > * {
    width: 100%;
  }
}

.col4 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767.9px) {
  .col4 {
    flex-direction: row;
  }
}
.col4 > * {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 767.9px) {
  .col4 > * {
    width: 100%;
  }
}

.ttl-bg {
  background-color: #eee;
  color: #333;
  font-size: 1.8rem;
  margin: 30px 0;
  padding: 10px 20px;
  position: relative;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.ttl-bg:after {
  background-color: #83b4fc;
  content: "";
  height: 1.8rem;
  left: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
}
.ttl-bg button {
  appearance: none;
  border: 1px solid #aaa;
  background-color: #fff;
  cursor: pointer;
  font-size: 12px;
  padding: 3px 10px;
}
.ttl-bg button:hover {
  background-color: #ddd;
}

.h1 {
  color: #eee;
  font-size: 2rem;
}

.h2 {
  padding-bottom: 10px;
  position: relative;
}
.h2:after {
  background-color: #aaa;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 85px;
}

.ttlUl {
  border-bottom: 3px solid #aaa;
  font-size: 2rem;
  height: 3rem;
}
.ttlUl span {
  border-bottom: 3px solid #365573;
  display: inline-block;
  height: 3rem;
}

a.btnLink {
  align-items: center;
  background-color: #365573;
  color: #fff;
  display: flex;
  font-size: 1.8rem;
  justify-content: center;
  min-height: 40px;
  padding: 4px 20px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: 200px;
}
a.btnLink:hover {
  opacity: 0.6;
}

.btnLink2 {
  align-items: center;
  background-color: #365573;
  color: #fff;
  display: flex;
  font-size: 1.8rem;
  justify-content: center;
  min-height: 40px;
  padding: 4px 20px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: 200px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #365573;
  color: #365573;
  font-weight: 700;
}
.btnLink2:hover {
  opacity: 0.6;
}

.btnLink3 {
  align-items: center;
  background-color: #444;
  color: #fff;
  display: flex;
  font-size: 1.1rem;
  justify-content: center;
  min-height: 30px;
  padding: 4px 10px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: 100px;
  border-radius: 6px;
}
.btnLink3:hover {
  opacity: 0.6;
}

.btnLink4 {
  align-items: center;
  background-color: #940000;
  color: #fff;
  display: flex;
  font-size: 1.1rem;
  justify-content: center;
  min-height: 30px;
  padding: 4px 10px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: 100px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #940000;
  color: #940000;
  font-weight: 700;
}
.btnLink4:hover {
  opacity: 0.6;
}

a.btnIcon {
  align-items: center;
  background-color: #365573;
  color: #fff;
  display: flex;
  font-size: 1.8rem;
  justify-content: center;
  min-height: 60px;
  padding: 4px 30px;
  position: relative;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: 300px;
  position: relative;
}
a.btnIcon:after {
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 0.6rem;
  right: 21.4285714286px;
  position: absolute;
  top: 50%;
  width: 0.6rem;
  transform: translateY(-50%) rotate(45deg);
}
a.btnIcon.is-active:after {
  transform: translateY(-50%) rotate(315deg);
}
a.btnIcon:hover {
  opacity: 0.6;
}

.btnIcon2 {
  align-items: center;
  background-color: #365573;
  color: #fff;
  display: flex;
  font-size: 1.8rem;
  justify-content: center;
  min-height: 60px;
  padding: 4px 30px;
  position: relative;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: 300px;
  position: relative;
  border-radius: 30px;
  background-color: #fff;
  border: 1px solid #365573;
  color: #365573;
  font-weight: 700;
}
.btnIcon2:after {
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 0.6rem;
  right: 21.4285714286px;
  position: absolute;
  top: 50%;
  width: 0.6rem;
  transform: translateY(-50%) rotate(45deg);
}
.btnIcon2.is-active:after {
  transform: translateY(-50%) rotate(315deg);
}
.btnIcon2:hover {
  opacity: 0.6;
}

.btnIcon3 {
  align-items: center;
  background-color: #444;
  color: #fff;
  display: flex;
  font-size: 1.1rem;
  justify-content: center;
  min-height: 30px;
  padding: 4px 12px;
  position: relative;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: 120px;
  position: relative;
  border-radius: 6px;
}
.btnIcon3:after {
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 0.3666666667rem;
  right: 8.5714285714px;
  position: absolute;
  top: 50%;
  width: 0.3666666667rem;
  transform: translateY(-50%) rotate(45deg);
}
.btnIcon3.is-active:after {
  transform: translateY(-50%) rotate(315deg);
}
.btnIcon3:hover {
  opacity: 0.6;
}

.btnIcon4 {
  align-items: center;
  background-color: #940000;
  color: #fff;
  display: flex;
  font-size: 1.1rem;
  justify-content: center;
  min-height: 30px;
  padding: 4px 12px;
  position: relative;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: 120px;
  position: relative;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #940000;
  color: #940000;
  font-weight: 700;
}
.btnIcon4:after {
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 0.3666666667rem;
  right: 8.5714285714px;
  position: absolute;
  top: 50%;
  width: 0.3666666667rem;
  transform: translateY(-50%) rotate(45deg);
}
.btnIcon4.is-active:after {
  transform: translateY(-50%) rotate(315deg);
}
.btnIcon4:hover {
  opacity: 0.6;
}

.internalLink {
  color: #2660ff;
  display: inline;
  font-size: 1.6rem;
  line-height: 1.6;
  position: relative;
  text-decoration: underline;
}
.internalLink:after {
  border-top: 2px solid #2660ff;
  border-right: 2px solid #2660ff;
  bottom: 0.5333333333rem;
  content: "";
  height: 0.5333333333rem;
  position: absolute;
  right: -14px;
  transform: rotate(45deg);
  vertical-align: text-top;
  width: 0.5333333333rem;
}
.internalLink:hover {
  text-decoration: none;
}

.externalLink {
  color: #2660ff;
  font-size: 1.6rem;
  position: relative;
  text-decoration: underline;
}
.externalLink:after {
  background: url(../image/icon_external-link.png) 0 0/contain no-repeat;
  content: "";
  display: inline-block;
  height: 1.6rem;
  margin-left: 4px;
  right: 0;
  position: relative;
  vertical-align: text-top;
  width: 1.6rem;
}
.externalLink:hover {
  text-decoration: none;
}

.icoTxtL {
  font-size: 1.6rem;
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
}
.icoTxtL:before {
  background: url("../image/icon_external-link.png") 0 0/contain no-repeat;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: calc((20px - 2.56rem) / 2 * -1);
  width: 20px;
}

.icoTxtR {
  font-size: 1.6rem;
  line-height: 1.6;
  position: relative;
}
.icoTxtR:after {
  background: url("../image/icon_external-link.png") 0 0/contain no-repeat;
  content: "";
  display: inline-block;
  height: 20px;
  margin-left: 8px;
  right: 0;
  position: relative;
  top: calc((20px - 2.56rem) / 2 * -1);
  width: 20px;
}

.ttlUl2 {
  font-size: 2rem;
  line-height: 1.5;
  margin: 16px 0;
  padding-bottom: 12px;
  position: relative;
  text-align: center;
}
.ttlUl2:after {
  background: #365573;
  bottom: 0;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 96px;
}

.arrow-right {
  position: relative;
  display: inline-block;
}
.arrow-right:after {
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 6px;
  right: -20px;
  position: absolute;
  top: 50%;
  width: 6px;
  transform: translateY(-50%) rotate(45deg);
}
.arrow-right.is-active:after {
  transform: translateY(-50%) rotate(315deg);
}

.circle-arrow {
  padding-left: 26px;
  position: relative;
}
.circle-arrow:before, .circle-arrow:after {
  bottom: 0;
  content: "";
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  vertical-align: middle;
}
.circle-arrow:before {
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #003eaa;
}
.circle-arrow:after {
  left: 5px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.triangle {
  position: relative;
  display: inline-block;
}
.triangle:after {
  border-style: solid;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  border-color: #af2626 transparent transparent transparent;
  border-width: 12px 7.5px 0 7.5px;
}

.icoPlusMinus:before {
  background-color: currentColor;
  content: "";
  height: 14px;
  right: 31px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 2px;
}
.icoPlusMinus.is-active:before {
  content: none;
}
.icoPlusMinus:after {
  background-color: currentColor;
  content: "";
  height: 2px;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 14px;
}

.accordion1 + div {
  margin-top: 20px;
}
.accordion1 .accordion__btn {
  align-items: center;
  border: 1px solid #000;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  height: 50px;
  justify-content: center;
  position: relative;
  width: 100%;
  position: relative;
}
.accordion1 .accordion__btn:after {
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 6px;
  right: 31px;
  position: absolute;
  top: 50%;
  width: 6px;
  transform: translateY(-50%) rotate(135deg);
}
.accordion1 .accordion__btn.is-active:after {
  transform: translateY(-50%) rotate(315deg);
}
.accordion1 .accordion__item {
  display: none;
  font-size: 16px;
  line-height: 1.6;
  padding: 20px;
}

.accordion2 + div {
  margin-top: 20px;
}
.accordion2 .accordion__btn {
  align-items: center;
  border: 1px solid #000;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  height: 50px;
  justify-content: center;
  position: relative;
  width: 100%;
}
.accordion2 .accordion__btn:before {
  background-color: currentColor;
  content: "";
  height: 14px;
  right: 31px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 2px;
}
.accordion2 .accordion__btn.is-active:before {
  content: none;
}
.accordion2 .accordion__btn:after {
  background-color: currentColor;
  content: "";
  height: 2px;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 14px;
}
.accordion2 .accordion__item {
  display: none;
  font-size: 16px;
  line-height: 1.6;
  padding: 20px;
}

.flexWrap {
  align-items: center;
  display: flex;
  gap: 12px;
}
.flexWrap.mb24 {
  margin-bottom: 24px;
}
.flexWrap.mt24 {
  margin-top: 24px;
}
@media screen and (max-width: 767.9px) {
  .flexWrap {
    align-items: start;
    flex-direction: column;
  }
}

.flexWrap--between {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}
.flexWrap--between.mb24 {
  margin-bottom: 24px;
}
.flexWrap--between.mt24 {
  margin-top: 24px;
}
@media screen and (max-width: 767.9px) {
  .flexWrap--between {
    align-items: start;
    flex-direction: column;
  }
}

.fixedCont {
  bottom: 0;
  left: 0;
  position: sticky;
  width: 100%;
}
.fixedCont__inner {
  align-items: center;
  background-color: rgba(226, 226, 226, 0.9);
  display: flex;
  height: 70px;
  justify-content: center;
  width: 100%;
}
.fixedCont__btn {
  align-items: center;
  background-color: #365573;
  color: #fff;
  display: flex;
  font-size: 1.8rem;
  justify-content: center;
  min-height: 48px;
  padding: 4px 28px;
  position: relative;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: 280px;
  position: relative;
  border-radius: 24px;
}
.fixedCont__btn:after {
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 0.6rem;
  right: 20px;
  position: absolute;
  top: 50%;
  width: 0.6rem;
  transform: translateY(-50%) rotate(45deg);
}
.fixedCont__btn.is-active:after {
  transform: translateY(-50%) rotate(315deg);
}
.fixedCont__btn:hover {
  opacity: 0.6;
}

.labels {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.labels li {
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  padding: 4px 12px;
}
.labels li.red {
  background-color: rgb(235, 62, 108);
}
.labels li.blue {
  background-color: #3e86eb;
}
.labels li.yellow {
  background-color: rgb(196, 180, 0);
}
.labels li.green {
  background-color: rgb(48, 175, 77);
}

.modal__open {
  text-align: center;
}
.modal__close {
  cursor: pointer;
  left: 10px;
  position: sticky;
  top: 0;
  text-align: right;
}
.modal__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  z-index: 99;
}
.modal__cont {
  background-color: #fff;
  box-shadow: 0 0 21px rgba(0, 0, 0, 0.17);
  display: none;
  left: 50%;
  max-height: 90vh;
  max-width: 920px;
  overflow-y: auto;
  padding: 30px;
  position: fixed;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 767.9px) {
  .modal__cont {
    padding: 15px;
    width: 95%;
  }
}

.js-scrollAnime {
  opacity: 0;
  transform: translateY(60px);
}
.js-scrollAnime.anime-left {
  transform: translateX(-80px);
}
.js-scrollAnime.anime-right {
  transform: translateX(80px);
}
.js-scrollAnime.anime-delay1 {
  animation-delay: 0.4s;
}
.js-scrollAnime.anime-delay2 {
  animation-delay: 1s;
}

.is-action {
  animation: fadeIn 1s forwards;
}

.tab {
  width: 100%;
}
.tab__btn {
  border-bottom: 2px solid currentColor;
  display: flex;
  gap: 5px;
  justify-content: space-between;
  width: 100%;
}
.tab__btn > li {
  align-items: center;
  background-color: #f2f2f2;
  border-radius: 10px 10px 0 0;
  color: currentColor;
  transition: opacity 0.3s ease;
  cursor: pointer;
  display: flex;
  font-size: 1.6rem;
  font-weight: bold;
  min-height: 55px;
  justify-content: center;
  width: 49.7%;
}
.tab__btn > li.is-active {
  background-color: #365573;
  color: #fff;
  pointer-events: none;
}
.tab__btn > li:not(.is-active):hover {
  opacity: 0.5;
}
.tab__cont {
  background-color: #f2f2f2;
  border-radius: 0 0 8px 8px;
  padding: 60px 20px 85px;
}
.tab__cont > li {
  display: none;
}
.tab__cont > li.is-active {
  display: block;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.faq__list > li + li {
  margin-top: 20px;
}
.faq__list__item {
  border: 2px solid rgb(115, 154, 232);
  border-radius: 10px;
  padding: 0 3.19%;
}
.faq__list__item dt {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 1.8rem;
  line-height: 1.2;
  min-height: 75px;
  padding: 0 10% 0 0;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .faq__list__item dt {
    font-size: 1.6rem;
  }
}
.faq__list__item dt:before {
  background-color: rgb(115, 154, 232);
  content: "";
  height: 25px;
  right: 10.5px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 4px;
}
.faq__list__item dt.is-active:before {
  content: none;
}
.faq__list__item dt:after {
  background-color: rgb(115, 154, 232);
  content: "";
  height: 4px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 25px;
}
.faq__list__item dt .icon {
  color: rgb(115, 154, 232);
  font-size: 38px;
  font-weight: bold;
  margin-right: 1.71%;
}
.faq__list__item dd {
  border-top: 1px solid rgb(115, 154, 232);
  display: none;
}
.faq__list__item dd .inner {
  display: flex;
  font-size: 1.8rem;
  line-height: 1.4;
  padding: 23px 0 40px 0;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .faq__list__item dd .inner {
    font-size: 1.4rem;
  }
}
.faq__list__item dd .icon {
  color: rgb(115, 154, 232);
  font-size: 38px;
  font-weight: bold;
  margin-right: 10px;
}

.faq2 .faq__cont:last-child {
  border-bottom: 2px solid #365573;
}
.faq2 .faq__q {
  background-color: #fff;
  border-top: 2px solid #365573;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 24px 48px;
  position: relative;
  transition: background-color 0.3s ease;
}
.faq2 .faq__q i {
  background-color: #365573;
  border-radius: 50%;
  content: "";
  display: block;
  height: 24px;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}
.faq2 .faq__q i:before {
  background-color: #fff;
  content: "";
  height: 12px;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 2px;
}
.faq2 .faq__q i.is-active:before {
  content: none;
}
.faq2 .faq__q i:after {
  background-color: #fff;
  content: "";
  height: 2px;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 12px;
}
.faq2 .faq__q:hover {
  background-color: #dde7ff;
}
.faq2 .faq__a {
  background-color: #f2f2f2;
  display: none;
}
.faq2 .faq__a p {
  font-size: 1.6rem;
  padding: 24px 48px;
}
@media print, screen and (max-width: 767.9px) {
  .faq2 .faq__q {
    font-size: 1.4rem;
    padding: 16px 56px 16px 15px;
  }
  .faq2 .faq__q:after {
    right: 15px;
  }
  .faq2 .faq__a p {
    font-size: 1.4rem;
    padding: 16px 15px;
  }
}

.baloon {
  align-items: center;
  background-color: #333;
  border-radius: 16px;
  color: #fff;
  display: flex;
  font-size: 1.4rem;
  height: 32px;
  justify-content: center;
  line-height: 1;
  position: relative;
  width: 200px;
}
.baloon:after {
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #333 transparent transparent transparent;
  bottom: -9px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.baloon-top {
  align-items: center;
  background-color: #333;
  border-radius: 16px;
  color: #fff;
  display: flex;
  font-size: 1.4rem;
  height: 32px;
  justify-content: center;
  line-height: 1;
  position: relative;
  width: 200px;
}
.baloon-top:after {
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #333 transparent;
  top: -9px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.list li {
  font-size: 1.6rem;
  line-height: 1.6;
  padding-left: 1.1em;
  position: relative;
}
.list li:before {
  background-color: #333;
  border-radius: 50%;
  content: "";
  height: 5px;
  display: inline-block;
  left: 5px;
  position: absolute;
  top: calc(1.28rem - 2.5px);
  width: 5px;
}

.listNote li {
  color: #888;
  font-size: 1.2rem;
  line-height: 1.6;
  padding-left: 1.56rem;
  position: relative;
}
.listNote li:before {
  content: "※";
  left: 0;
  position: absolute;
  top: 0;
}

.listNoteNum {
  counter-reset: caution 0;
}
.listNoteNum li {
  color: #888;
  font-size: 1.2rem;
  line-height: 1.6;
  padding-left: 2.16rem;
  position: relative;
}
.listNoteNum li:before {
  content: "※" counter(caution) " ";
  counter-increment: caution 1;
  left: 0;
  position: absolute;
  top: 0;
}

.listIcon li {
  font-size: 1.6rem;
  line-height: 1.6;
  padding-left: 26px;
  position: relative;
}
.listIcon li:before, .listIcon li:after {
  bottom: 0;
  content: "";
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  vertical-align: middle;
}
.listIcon li:before {
  width: 18px;
  height: 18px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #003eaa;
}
.listIcon li:after {
  left: 4.5px;
  width: 4.5px;
  height: 4.5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.listNews {
  border-top: 1px solid #ccc;
}
.listNews li {
  border-bottom: 1px solid #ccc;
}
.listNews li a {
  color: #333;
  display: block;
  padding: 20px 15px;
  position: relative;
  position: relative;
}
.listNews li a:after {
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 6px;
  right: 25px;
  position: absolute;
  top: 50%;
  width: 6px;
  transform: translateY(-50%) rotate(45deg);
}
.listNews li a.is-active:after {
  transform: translateY(-50%) rotate(315deg);
}
.listNews li a:hover .listNews__txt {
  text-decoration: underline;
}
.listNews li.is-new .listNews__new {
  display: inline-block;
}
.listNews .listNews__date {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 12px;
}
.listNews .listNews__new {
  color: #cf0000;
  display: none;
  font-weight: bold;
  margin-right: 10px;
}
.listNews .listNews__txt {
  font-size: 1.1em;
  line-height: 1.6;
  padding-right: 25px;
}

.card {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 15px;
}
.card__img {
  margin-bottom: 15px;
}
.card__img img {
  width: 100%;
}
.card__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}
.card__txt {
  font-size: 1.4rem;
  line-height: 1.6;
}

.cardH {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 15px;
  display: flex;
}
.cardH__head img {
  width: 150px;
}
.cardH__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 20px;
}
.cardH__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}
.cardH__txt {
  font-size: 1.4rem;
  line-height: 1.6;
}

.table {
  border-right: 1px solid #e8e8e8;
  border-collapse: collapse;
  line-height: 1.6;
  margin-bottom: 15px;
  width: 100%;
}
.table thead th {
  padding: 9px 15px;
  color: #f4f4f4;
  background: none #3b3736;
  white-space: nowrap;
}
.table thead th:first-child {
  width: 30%;
}
.table thead th:not(:first-child) {
  border-left: 1px solid #ccc;
}
.table tbody tr {
  background: none #fff;
}
.table tbody tr:nth-child(2n+1) td {
  background: none #f4f4f4;
}
.table tbody td {
  border-bottom: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
  font-size: 1.5rem;
  padding: 9px 15px;
}

.switch {
  background: #f4f4f4;
  border-radius: 48px;
  margin-bottom: 24px;
  padding: 2px;
  position: relative;
}
.switch__btn {
  align-items: center;
  border-radius: 48px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.switch__btn li {
  width: 50%;
}
.switch__btn button {
  background-color: transparent;
  border: none;
  color: #707070;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  align-items: center;
  border-radius: 48px;
  color: #5e5e5e;
  cursor: pointer;
  display: flex;
  font-size: 1.6rem;
  font-weight: bold;
  height: 48px;
  justify-content: center;
  position: relative;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-transform: uppercase;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .switch__btn button {
    font-size: 1.2rem;
    height: 42px;
  }
}
.switch__btn button:hover {
  background-color: #dadada;
}
.switch__btn button.is-active {
  color: #fff;
}
.switch__btn button.is-active:hover {
  background-color: inherit;
}
.switch .activeBtn {
  background-color: #303840;
  border-radius: 48px;
  height: 48px;
  left: 0;
  position: absolute;
  top: 2px;
  transition: left 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .switch .activeBtn {
    height: 42px;
  }
}

.radioBtn {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  line-height: 1.5;
}
.radioBtn label {
  cursor: pointer;
  line-height: 24px;
  padding-left: 36px;
  position: relative;
}
.radioBtn label:before {
  border: 2px solid #333;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  height: 24px;
  left: 0;
  margin-right: 12px;
  position: absolute;
  top: 0;
  transition: all 0.3s ease;
  width: 24px;
}
.radioBtn label:after {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 12px;
  left: 6px;
  margin-right: 12px;
  opacity: 0;
  position: absolute;
  top: 6px;
  transition: all 0.3s ease;
  width: 12px;
}
.radioBtn input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radioBtn input[type=radio]:focus + label::before {
  border-color: #333;
}
.radioBtn input[type=radio]:checked + label::before {
  background-color: #3860be;
  border-color: #3860be;
}
.radioBtn input[type=radio]:checked + label::after {
  opacity: 1;
}

.checkbox {
  font-size: 1.4rem;
  line-height: 1.5;
  min-height: 26px;
  padding-left: 36px;
}
.checkbox label {
  cursor: pointer;
  padding-top: 1px;
  position: relative;
}
.checkbox label::before {
  border: 2px solid #333;
  border-radius: 4px;
  box-sizing: border-box;
  content: "";
  height: 24px;
  left: -36px;
  position: absolute;
  top: -2px;
  transition: all 0.3s ease;
  width: 24px;
}
.checkbox label::after {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  height: 6px;
  left: -25px;
  opacity: 0;
  position: absolute;
  top: 7px;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  transition: all 0.3s ease;
  width: 10px;
  z-index: 2;
}
.checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.checkbox input[type=checkbox]:focus + label::before {
  border-color: #3860be;
}
.checkbox input[type=checkbox]:checked + label::before {
  border-color: #3860be;
  background-color: #3860be;
}
.checkbox input[type=checkbox]:checked + label::after {
  opacity: 1;
}

.banzai {
  font-size: 2.4rem;
  margin-bottom: 32px;
  position: relative;
  text-align: center;
}
.banzai span {
  display: inline-block;
  position: relative;
}
.banzai span:before, .banzai span:after {
  background-color: #333;
  bottom: 0;
  content: "";
  height: 24px;
  position: absolute;
  width: 2px;
}
.banzai span:before {
  left: -20px;
  transform: rotate(-35deg);
}
.banzai span:after {
  right: -20px;
  transform: rotate(35deg);
}

.pageTop a {
  align-items: center;
  background-color: #5e5e5e;
  border: solid 1px #5e5e5e;
  border-radius: 100%;
  bottom: 32px;
  display: flex;
  height: 48px;
  justify-content: center;
  opacity: 1;
  position: fixed;
  right: calc(50% - 576px);
  transition: all 0.3s;
  visibility: visible;
  width: 48px;
  z-index: 50;
}
.pageTop a span {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  padding-top: 15px;
  position: relative;
  text-transform: uppercase;
}
.pageTop a span:before {
  border-right: 1.6px solid #fff;
  border-top: 1.6px solid #fff;
  content: "";
  display: inline-block;
  height: 8px;
  left: 50%;
  position: absolute;
  top: 5px;
  transform: translateX(-50%) rotate(-45deg);
  width: 8px;
}

.ttlFlame {
  border: 2px solid #ccc;
}
.ttlFlame .ttlFlame__ttl {
  background-color: #ccc;
  font-size: 2rem;
  font-weight: bold;
  padding: 15px;
  text-align: center;
}
.ttlFlame .ttlFlame__cont {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px;
}
@media screen and (max-width: 767.9px) {
  .ttlFlame .ttlFlame__cont {
    flex-direction: row;
  }
}
.ttlFlame .ttlFlame__cont > * {
  width: calc((100% - 30px) / 3);
}
@media screen and (max-width: 767.9px) {
  .ttlFlame .ttlFlame__cont > * {
    width: 100%;
  }
}
.ttlFlame .ttlFlame__item {
  background-color: #fff;
  border: none;
  padding: 0;
}
.ttlFlame .ttlFlame__item__img {
  margin-bottom: 15px;
}
.ttlFlame .ttlFlame__item__img img {
  width: 100%;
}
.ttlFlame .ttlFlame__item__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}
.ttlFlame .ttlFlame__item__txt {
  font-size: 1.4rem;
  line-height: 1.6;
}

.priceTable {
  display: flex;
  font-size: 1.6rem;
  flex-wrap: wrap;
  width: 30%;
}
@media screen and (max-width: 767.9px) {
  .priceTable {
    width: 100%;
  }
}
.priceTable dt {
  align-items: end;
  display: flex;
  margin-bottom: 10px;
  position: relative;
  width: 40%;
}
.priceTable dt:after {
  content: ":";
  font-weight: bold;
  display: inline-block;
  margin: 0 10px;
  position: absolute;
  right: 0;
}
.priceTable dd {
  align-items: baseline;
  display: flex;
  justify-content: end;
  margin-bottom: 10px;
  text-align: right;
  width: 60%;
}
.priceTable dd strong {
  font-size: 2.4rem;
  margin-right: 5px;
}