@charset "UTF-8";
html {
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8em;
  letter-spacing: 0.05em;
}
body p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

p {
  color: #333;
}

a {
  text-decoration: none;
  color: #fff;
  transition: all 0.4s;
}

a img {
  border-style: none;
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.entry-header {
  display: none;
}

.leftTxt {
  text-align: left;
}

.rightTxt {
  text-align: right;
}

.centerTxt {
  text-align: center;
}

.bgGr {
  background: rgb(234, 254, 241);
  background: linear-gradient(90deg, rgb(234, 254, 241) 0%, rgb(219, 248, 245) 50%, rgb(195, 242, 254) 100%);
  background-size: 200% 200%;
  animation: Grad 5s ease infinite;
}

@keyframes Grad {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
section {
  padding: 0 20px;
}

a img:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  cursor: pointer;
}

.txt {
  font-size: 1.6rem;
  line-height: 1.8em;
  margin: 24px 0 48px;
}
@media screen and (max-width: 768px) {
  .txt {
    font-size: 1.4rem;
    line-height: 1.8em;
    margin: 16px 0 24px;
  }
}

.whiteColor {
  color: #fff;
}

.readTxtWrap {
  background: url(../images/common/txt_line.svg) repeat-y;
  background-size: 850px auto;
  max-width: 850px;
  margin: 0 auto 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .readTxtWrap {
    background: url(../images/common/txt_line_sp.svg) repeat-y;
    background-size: 640px auto;
    margin: 0 auto 40px;
    text-align: left;
  }
}
.readTxtWrap .txt {
  line-height: 44px;
  padding: 0 0 10px;
}
@media screen and (max-width: 768px) {
  .readTxtWrap .txt {
    line-height: 40px;
  }
}

.attentionTxt {
  margin-left: 1em;
  text-indent: -1em;
}

.widthCommon {
  margin: 0 auto;
  max-width: 1200px;
}

.bgTop {
  background: url(../images/common/bg_top_blue.png) no-repeat center top -60px;
  background-size: 2000px auto;
  padding: 20px 0 0;
}
@media screen and (max-width: 1024px) {
  .bgTop {
    background-size: 1600px auto;
  }
}
@media screen and (max-width: 768px) {
  .bgTop {
    background-size: 1200px auto;
  }
}
@media screen and (max-width: 450px) {
  .bgTop {
    background: url(../images/common/bg_top_blue.png) no-repeat center top -30px;
    background-size: 1000px auto;
  }
}

.titleBlur {
  filter: blur(10px);
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1em;
  margin: 0;
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .titleBlur {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .titleBlur {
    font-size: 12rem;
  }
}
@media screen and (max-width: 450px) {
  .titleBlur {
    font-size: 8rem;
  }
}

@media screen and (max-width: 1024px) {
  .headWrapContainer {
    padding: 0 20px;
  }
}

.headWrapContainer {
  padding: 0;
}

.headWrap {
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 1024px) {
  .headWrap {
    max-width: initial;
  }
}
.headWrap .headInner {
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.headWrap .headInner h1 {
  padding: 0 0 0 30px;
}
@media screen and (max-width: 1120px) {
  .headWrap .headInner h1 {
    padding: 0 0 0 20px;
  }
}
.headWrap .headInner h1 img {
  height: auto;
  width: 183px;
}
@media screen and (max-width: 1120px) {
  .headWrap .headInner h1 img {
    width: 160px;
  }
}
.headWrap .headInner .globalnav {
  margin: 0 6px 0 0;
}
.headWrap .headInner .globalnav ul {
  display: flex;
  column-gap: 18px;
}
@media screen and (max-width: 1120px) {
  .headWrap .headInner .globalnav ul {
    column-gap: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .headWrap .headInner .globalnav ul {
    flex-wrap: wrap;
  }
}
.headWrap .headInner .globalnav ul li {
  color: #171f55;
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 16px 0;
}
.headWrap .headInner .globalnav ul li .subMenuBtn {
  display: flex;
  align-items: center;
}
.headWrap .headInner .globalnav ul li .subMenuBtn .subMenuBtnArrow {
  align-self: center;
  margin: 2px 0 0 6px;
  height: auto;
  width: 12px;
}
@media screen and (max-width: 1024px) {
  .headWrap .headInner .globalnav ul li .subMenuBtn .subMenuBtnArrow {
    display: none;
  }
}
.headWrap .headInner .globalnav ul li a {
  color: #171f55;
}
.headWrap .headInner .globalnav ul .btnInner {
  color: #fff;
  margin: 0;
  padding: 20px 16px;
}
@media screen and (max-width: 1120px) {
  .headWrap .headInner .globalnav ul .btnInner {
    padding: 20px 14px;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .headWrap .headInner .globalnav ul .btnInnerWrap {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
  }
}
@media screen and (max-width: 1024px) {
  .headWrap .headInner .globalnav ul .btnInnerWrap {
    margin: 0 0 40px;
  }
}
.headWrap .headInner .globalnav ul .tokutenBtn {
  background-color: #00abc1;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
@media screen and (max-width: 1024px) {
  .headWrap .headInner .globalnav ul .tokutenBtn {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    display: inline-block;
    width: 48%;
  }
}
.headWrap .headInner .globalnav ul .kaiinBtn {
  background-color: #0071BC;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
@media screen and (max-width: 1024px) {
  .headWrap .headInner .globalnav ul .kaiinBtn {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    display: inline-block;
    width: 48%;
  }
}
.headWrap .headInner .globalnav .navSubMenu {
  display: block;
  padding: 10px;
}
.headWrap .headInner .globalnav .navSubMenu li {
  padding: 10px 0;
}
@media screen and (max-width: 1024px) {
  .headWrap .headInner .globalnav .navSubMenu li {
    border-bottom: none;
  }
}
.headWrap .headInner .globalnav .navLogo {
  display: none;
}
@media screen and (max-width: 1024px) {
  .headWrap .headInner .globalnav .navLogo {
    display: block;
    position: absolute;
    top: 30px;
    height: auto;
    width: 160px;
  }
}
.headWrap .headInner .globalnav .supportStoreBtnWrap {
  width: 100%;
}
.headWrap .headInner .globalnav .supportStoreBtnWrap .supportStoreBtn {
  background-color: #fff;
  border: 6px solid #00abc1;
  border-radius: 30px;
  display: inline-block;
  padding: 16px 8px;
  text-align: center;
  width: 100%;
}

.headTitleWrap {
  padding: 0 0 160px;
}
@media screen and (max-width: 1024px) {
  .headTitleWrap {
    padding: 0 0 80px;
  }
}
.headTitleWrap .headTitle {
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  text-align: center;
  padding: 80px 0 0;
}
@media screen and (max-width: 1024px) {
  .headTitleWrap .headTitle {
    padding: 60px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .headTitleWrap .headTitle {
    font-size: 2rem;
    padding: 30px 0 0;
  }
}
@media screen and (max-width: 450px) {
  .headTitleWrap .headTitle {
    font-size: 1.6rem;
    padding: 24px 0 0;
  }
}
.headTitleWrap .headTitle::before {
  position: absolute;
  content: attr(data-en);
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8rem;
  font-weight: 700;
  top: 120px;
  left: 0;
  right: 0;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .headTitleWrap .headTitle::before {
    top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .headTitleWrap .headTitle::before {
    top: 60px;
  }
}
@media screen and (max-width: 450px) {
  .headTitleWrap .headTitle::before {
    top: 50px;
  }
}

.mainTitle {
  font-size: 2.4rem;
  line-height: 1.6em;
  color: #171F55;
  position: relative;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .mainTitle {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 450px) {
  .mainTitle {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }
}
.mainTitle::before {
  position: absolute;
  content: attr(data-en);
  color: #005bac;
  font-family: "Zen Maru Gothic", serif;
  font-size: 8rem;
  font-weight: 700;
  top: -80px;
  left: 0;
  right: 0;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .mainTitle::before {
    font-size: 6rem;
    top: -64px;
  }
}
@media screen and (max-width: 450px) {
  .mainTitle::before {
    font-size: 4rem;
    top: -44px;
  }
}

.mainTitle2row {
  font-size: 2.4rem;
  line-height: 1.6em;
  color: #171F55;
  position: relative;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .mainTitle2row {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 450px) {
  .mainTitle2row {
    font-size: 1.6rem;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
.mainTitle2row::before {
  position: absolute;
  content: attr(data-en);
  color: #005bac;
  font-family: "Zen Maru Gothic", serif;
  font-size: 8rem;
  font-weight: 700;
  top: -80px;
  left: 0;
  right: 0;
  width: 100%;
  line-height: 0.8em;
}
@media screen and (max-width: 1024px) {
  .mainTitle2row::before {
    font-size: 6rem;
    top: -64px;
  }
}
@media screen and (max-width: 450px) {
  .mainTitle2row::before {
    font-size: 4rem;
    top: -72px;
  }
}

.mediumTitle {
  color: #005bac;
  display: inline-block;
  font-size: 2.4rem;
  border-bottom: 2px solid #005bac;
  padding: 16px 16px 8px;
}
@media screen and (max-width: 1024px) {
  .mediumTitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .mediumTitle {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 450px) {
  .mediumTitle {
    font-size: 1.6rem;
  }
}

.mediumTitleWhite {
  color: #fff;
  display: inline-block;
  font-size: 2.4rem;
  border-bottom: 2px solid #fff;
  padding: 16px 16px 8px;
}
@media screen and (max-width: 1024px) {
  .mediumTitleWhite {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .mediumTitleWhite {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 450px) {
  .mediumTitleWhite {
    font-size: 1.6rem;
  }
}

.smallTitle {
  display: inline-block;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #005BAC;
  font-size: 1.8rem;
  text-align: center;
  padding: 16px 20px;
}
@media screen and (max-width: 1024px) {
  .smallTitle {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .smallTitle {
    font-size: 1.4rem;
    padding: 8px 12px;
  }
}

.iconWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 24px;
  margin: 64px 0;
}
@media screen and (max-width: 1024px) {
  .iconWrap {
    column-gap: 14px;
  }
}
@media screen and (max-width: 450px) {
  .iconWrap {
    column-gap: 0;
    row-gap: 18px;
    margin: 32px 0;
  }
}
.iconWrap .iconBtn {
  background-color: #fff;
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 6px;
  width: 23%;
  display: flex;
}
.iconWrap .iconBtn:hover {
  background-color: #005BAC;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .iconWrap .iconBtn {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .iconWrap .iconBtn {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .iconWrap .iconBtn {
    padding: 3px;
  }
}
.iconWrap .iconBtn p {
  color: #171F55;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin: 16px 0 0;
  width: 100%;
}
@media screen and (max-width: 450px) {
  .iconWrap .iconBtn p {
    margin: 8px 0 0;
  }
}
.iconWrap .iconBtn .iconLine {
  background: url(../images/common/arrow_ground.svg) no-repeat right 12px center #fff;
  background-size: 26px auto;
  border: 3px solid #005bac;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 0 14px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .iconWrap .iconBtn .iconLine {
    background-size: 20px auto;
  }
}
@media screen and (max-width: 450px) {
  .iconWrap .iconBtn .iconLine {
    border: 2px solid #005bac;
    background: url(../images/common/arrow_ground.svg) no-repeat right 6px center #fff;
    background-size: 16px auto;
    padding: 4px 0 6px;
  }
}
.iconWrap .iconBtn .iconLine:hover {
  background: url(../images/common/arrow_ground.svg) no-repeat right 8px center #fff;
  background-size: 26px auto;
  transition: all 0.4s;
  opacity: 1;
}
@media screen and (max-width: 450px) {
  .iconWrap .iconBtn .iconLine:hover {
    background: url(../images/common/arrow_ground.svg) no-repeat right 3px center #fff;
    background-size: 16px auto;
  }
}
.iconWrap .iconBtn .iconLine .icon_iconTxt {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .iconWrap .iconBtn .iconLine .icon_iconTxt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 450px) {
  .iconWrap .iconBtn .iconLine .icon_iconTxt {
    font-size: 1.2rem;
  }
}
.iconWrap .iconBtn .iconLine .icon_iconImg {
  height: auto;
  width: 18.1818181818%;
}
@media screen and (max-width: 1024px) {
  .iconWrap .iconBtn .iconLine .icon_iconImg {
    width: 15.3846153846%;
  }
}
@media screen and (max-width: 768px) {
  .iconWrap .iconBtn .iconLine .icon_iconImg {
    width: 16.6666666667%;
  }
}
@media screen and (max-width: 450px) {
  .iconWrap .iconBtn .iconLine .icon_iconImg {
    width: 20%;
  }
}
.iconWrap .iconBtn .iconLine .icon_iconImg2 {
  height: auto;
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .iconWrap .iconBtn .iconLine .icon_iconImg2 {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  .iconWrap .iconBtn .iconLine .icon_iconImg2 {
    width: 22.2222222222%;
  }
}
@media screen and (max-width: 450px) {
  .iconWrap .iconBtn .iconLine .icon_iconImg2 {
    width: 28.5714285714%;
  }
}
.iconWrap::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}
@media screen and (max-width: 1024px) {
  .iconWrap::before {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .iconWrap::before {
    width: 48%;
  }
}
.iconWrap::after {
  content: "";
  display: block;
  width: 23%;
}
@media screen and (max-width: 1024px) {
  .iconWrap::after {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .iconWrap::after {
    width: 48%;
  }
}

.pageLinkWrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 28px;
}
@media screen and (max-width: 1024px) {
  .pageLinkWrap {
    margin: 40px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .pageLinkWrap {
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 450px) {
  .pageLinkWrap {
    row-gap: 20px;
  }
}
.pageLinkWrap .pageLinkInner {
  border: 1px solid #17A2B6;
  background-color: #FFFFF0;
  border-radius: 8px;
  height: 74px;
  text-align: center;
  width: calc(16.6666666667% - 16px);
  display: flex;
  align-items: center;
  position: relative;
}
.pageLinkWrap .pageLinkInner:hover {
  background-color: #fafad8;
  opacity: 1;
  transform: translateY(6px);
}
@media screen and (max-width: 1024px) {
  .pageLinkWrap .pageLinkInner {
    width: calc(25% - 16px);
  }
}
@media screen and (max-width: 768px) {
  .pageLinkWrap .pageLinkInner {
    width: calc(33.3333333333% - 16px);
  }
}
@media screen and (max-width: 450px) {
  .pageLinkWrap .pageLinkInner {
    height: 64px;
  }
}
.pageLinkWrap .pageLinkInner span {
  color: #171F55;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 16px 8px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .pageLinkWrap .pageLinkInner span {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 450px) {
  .pageLinkWrap .pageLinkInner span {
    font-size: 1.2rem;
    padding: 12px 4px;
  }
}
.pageLinkWrap .pageLinkInner .pageLinkArrow {
  height: auto;
  width: 24px;
  position: absolute;
  bottom: -12px;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .pageLinkWrap .pageLinkInner .pageLinkArrow {
    bottom: -9px;
    width: 18px;
  }
}
.pageLinkWrap .extNaviLink {
  background-color: #eaf3ff;
  border: 1px solid #171f55;
}
.pageLinkWrap .extNaviLink .pageLinkArrow {
  height: auto;
  width: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -12px;
  left: auto;
  margin: auto;
  transform: rotate(-90deg);
}
.pageLinkWrap .extNaviLink:hover {
  background-color: #dae9fd;
  transform: translateX(6px);
}
.pageLinkWrap .narrowTxt {
  letter-spacing: -0.5px;
}

.anchor {
  display: block;
  padding-top: 24px;
  margin-top: -24px;
}

.headBtnWrap {
  display: none;
}
@media screen and (max-width: 768px) {
  .headBtnWrap {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1;
  }
  .headBtnWrap .btnInner {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    padding: 12px 8px;
    width: 50%;
  }
  .headBtnWrap .btnInner:hover {
    opacity: 1;
  }
  .headBtnWrap .headBtnTokuten {
    background-color: #00abc1;
  }
  .headBtnWrap .headBtnKaiin {
    background-color: #0071BC;
  }
}

footer {
  background-color: #005bac;
  margin: 400px 0 0;
  padding: 128px 20px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  footer {
    margin: 300px 0 0;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 200px 20px 80px;
  }
}
footer .footerNavi {
  border-bottom: 1px solid #528EC4;
  display: flex;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  footer .footerNavi {
    flex-wrap: wrap;
    padding-bottom: 24px;
    margin-bottom: 32px;
  }
}
footer .footerNavi .footerInner {
  display: flex;
  flex-wrap: wrap;
  width: 24%;
}
@media screen and (max-width: 768px) {
  footer .footerNavi .footerInner {
    margin-bottom: 16px;
    width: 48%;
  }
  footer .footerNavi .footerInner:nth-of-type(3) {
    margin-bottom: 0;
    width: 100%;
  }
}
footer .footerNavi .footerInner .footerNaviMidashi {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 12px;
  width: 100%;
}
@media screen and (max-width: 450px) {
  footer .footerNavi .footerInner .footerNaviMidashi {
    font-size: 1.4rem;
  }
}
footer .footerNavi .footerInner .footerNaviTxt {
  color: #fff;
  margin: 0 0 0 16px;
}
footer .footerNavi .footerInner .footerNaviTxt li {
  list-style: disc;
  margin: 12px 0;
}
@media screen and (max-width: 450px) {
  footer .footerNavi .footerInner .footerNaviTxt li {
    margin: 8px 0;
  }
}
footer .footerNavi .footerInner .footerNaviTxt li a {
  color: #fff;
  font-size: 1.4rem;
}
@media screen and (max-width: 450px) {
  footer .footerNavi .footerInner .footerNaviTxt li a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  footer .footerNavi .footerInner .navRow {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  footer .footerNavi .footerInner .navRow .footerNaviMidashi {
    margin: 12px 0;
    width: 50%;
  }
}
@media screen and (max-width: 450px) {
  footer .footerNavi .footerInner .navRow .footerNaviMidashi {
    margin: 8px 0;
  }
}
footer .footerNavi .footerBtnWrap {
  margin-left: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  footer .footerNavi .footerBtnWrap {
    display: none;
    width: 100%;
  }
}
footer .footerNavi .footerBtnWrap .footerBtn {
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 16px 0;
  text-align: center;
  width: 80%;
}
footer .footerNavi .footerBtnWrap .footerBtnBosyu {
  background-color: #cbe1fd;
  color: #171f55;
}
footer .footerNavi .footerBtnWrap .footerBtnTokuten {
  background-color: #17a2b6;
  color: #fff;
}
footer .footeradd {
  display: flex;
}
@media screen and (max-width: 768px) {
  footer .footeradd {
    flex-wrap: wrap;
  }
}
footer .footeradd .footerInner {
  margin-right: 64px;
}
footer .footeradd .footerInner .footerLogoImg {
  height: auto;
  width: 200px;
}
@media screen and (max-width: 768px) {
  footer .footeradd .footerInner {
    width: 100%;
  }
}
footer .footeradd .footerInner .footerAddTxt {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  footer .footeradd .footerInner .footerAddTxt {
    margin: 16px 0;
  }
}
@media screen and (max-width: 768px) {
  footer .footeradd .footerInner img {
    height: auto;
    width: 40%;
  }
}
footer .footeradd .copyTxt {
  margin-left: auto;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  footer .footeradd .copyTxt {
    text-align: center;
  }
}
footer .footeradd .copyTxt small {
  color: #fff;
  font-size: 1.2rem;
}

.footerContact {
  position: relative;
}
.footerContact .footerContactArea {
  border-radius: 20px;
  background: rgb(255, 253, 159);
  background: linear-gradient(0deg, rgba(255, 253, 159, 0.95) 0%, rgb(255, 245, 190) 100%);
  margin: 0 auto;
  max-width: 1000px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 70px;
  margin: auto;
}
@media screen and (max-width: 1260px) {
  .footerContact .footerContactArea {
    max-width: 84%;
  }
}
@media screen and (max-width: 768px) {
  .footerContact .footerContactArea {
    width: 90%;
  }
}
@media screen and (max-width: 450px) {
  .footerContact .footerContactArea {
    border-radius: 40px;
    max-width: 100%;
    width: 100%;
  }
}
.footerContact .footerContactArea .footerContactInner {
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .footerContact .footerContactArea .footerContactInner {
    padding: 24px 16px;
  }
}
@media screen and (max-width: 768px) {
  .footerContact .footerContactArea .footerContactInner {
    padding: 24px 16px;
  }
}
.footerContact .footerContactArea .footerContactInner h2 {
  color: #171f55;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .footerContact .footerContactArea .footerContactInner h2 {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 768px) {
  .footerContact .footerContactArea .footerContactInner h2 {
    font-size: 1.6rem;
  }
}
.footerContact .footerContactArea .footerContactInner .contactEn {
  color: #171f55;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footerContact .footerContactArea .footerContactInner .contactEn {
    font-size: 1.4rem;
  }
}
.footerContact .footerContactArea .footerContactInner .footerContactBox {
  display: flex;
  justify-content: center;
  margin: 40px 0 32px;
}
@media screen and (max-width: 1024px) {
  .footerContact .footerContactArea .footerContactInner .footerContactBox {
    margin: 24px 0;
  }
}
@media screen and (max-width: 768px) {
  .footerContact .footerContactArea .footerContactInner .footerContactBox {
    flex-wrap: wrap;
    margin: 16px 0 24px;
  }
}
.footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactAdd {
  border-right: 3px solid #171f55;
  padding: 0 20px;
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactAdd {
    border-right: none;
    width: 100%;
  }
}
.footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactAdd p {
  color: #171f55;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6em;
}
@media screen and (max-width: 1024px) {
  .footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactAdd p {
    font-size: 1.6rem;
  }
}
.footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactAdd p a {
  border-bottom: 1px solid #171f55;
  color: #171f55;
}
.footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactAdd p span {
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactAdd p span {
    font-size: 1.4rem;
  }
}
.footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactTel {
  padding: 0 20px;
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactTel {
    margin: 12px 0 0;
    width: 100%;
  }
}
.footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactTel .footerTelTxt {
  display: inline-block;
  border-bottom: 3px solid #171f55;
  color: #171f55;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: bold;
  font-size: 2.8rem;
  padding: 0 32px 12px;
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactTel .footerTelTxt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactTel .footerTelTxt {
    padding: 0 8px 8px;
  }
}
.footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactTel .footerTelTxt a {
  color: #171f55;
}
.footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactTel .footerTelTxt span {
  font-size: 2.8rem;
}
@media screen and (max-width: 1024px) {
  .footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactTel .footerTelTxt span {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactTel .footerTelTxt span {
    font-size: 2.4rem;
  }
}
.footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactTel .footerJikan {
  color: #171f55;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .footerContact .footerContactArea .footerContactInner .footerContactBox .footerContactTel .footerJikan {
    font-size: 1.2rem;
  }
}
.footerContact .faqWrap {
  display: flex;
  justify-content: center;
}
.footerContact .faqWrap .faqBtn {
  background: url(../../images/common/arrow_ground.svg) no-repeat right 16px center;
  background-size: 24px auto;
  background-color: #fff;
  border: 3px solid #F0EFA5;
  border-radius: 50px;
  box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.5);
  color: #171f55;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto;
  padding: 12px 8px;
  text-align: center;
  width: 380px;
}
.footerContact .faqWrap .faqBtn:hover {
  background: url(../../images/common/arrow_ground.svg) no-repeat right 12px center;
  background-size: 24px auto;
  background-color: #fff;
  border: 3px solid #eeed8c;
  box-shadow: 0px 0px 10px -5px rgb(255, 255, 255);
  opacity: 1;
  color: #005bac;
}
@media screen and (max-width: 1024px) {
  .footerContact .faqWrap .faqBtn {
    font-size: 1.4rem;
    width: 70%;
  }
}
@media screen and (max-width: 450px) {
  .footerContact .faqWrap .faqBtn {
    width: 80%;
  }
}

.bnWrap {
  background-color: #fff;
  bottom: 0;
  position: fixed;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bnWrap {
    position: static;
  }
}
.bnWrap .bnAreaWrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.bnWrap .bnAreaWrap .bnInner {
  padding-left: 8px;
}
@media screen and (max-width: 1200px) {
  .bnWrap .bnAreaWrap .bnInner {
    width: 84%;
  }
}
@media screen and (max-width: 768px) {
  .bnWrap .bnAreaWrap .bnInner {
    padding-left: 4px;
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  .bnWrap .bnAreaWrap .bnInner {
    width: 76%;
  }
}
@media screen and (max-width: 480px) {
  .bnWrap .bnAreaWrap .bnInner {
    width: 70%;
  }
}
.bnWrap .bnAreaWrap .bnInner .bannerList {
  border-radius: 0;
  display: flex;
}
.bnWrap .bnAreaWrap .bnInner .bannerList img {
  border-radius: 0;
  border: 1px solid #ebebeb;
  margin: 8px 0;
  height: auto;
  width: 120px;
}
@media screen and (max-width: 768px) {
  .bnWrap .bnAreaWrap .bnInner .bannerList img {
    width: 88px;
  }
}
.bnWrap .bnAreaWrap .btnArea {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 9px 12px;
  column-gap: 10px;
  width: 136px;
}
@media screen and (max-width: 1200px) {
  .bnWrap .bnAreaWrap .btnArea {
    width: 16%;
  }
}
@media screen and (max-width: 1024px) {
  .bnWrap .bnAreaWrap .btnArea {
    padding: 6px 10px;
  }
}
@media screen and (max-width: 768px) {
  .bnWrap .bnAreaWrap .btnArea {
    width: 20%;
  }
}
@media screen and (max-width: 600px) {
  .bnWrap .bnAreaWrap .btnArea {
    width: 24%;
  }
}
@media screen and (max-width: 480px) {
  .bnWrap .bnAreaWrap .btnArea {
    width: 30%;
  }
}
@media screen and (max-width: 450px) {
  .bnWrap .bnAreaWrap .btnArea {
    padding: 4px 10px;
  }
}
.bnWrap .bnAreaWrap .btnArea .groupBnStop {
  background-color: #dcdcdc;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  display: flex;
  justify-content: center;
}
.bnWrap .bnAreaWrap .btnArea .groupBnStop img {
  height: auto;
  width: 12px;
  align-self: center;
}
@media screen and (max-width: 1024px) {
  .bnWrap .bnAreaWrap .btnArea .groupBnStop {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
  }
}
.bnWrap .bnAreaWrap .btnArea .groupBnList {
  background-color: #cbe1fd;
  border-radius: 50px;
  color: #171f55;
  font-size: 1.4rem;
  font-weight: bold;
  white-space: nowrap;
  padding: 8px 18px;
}
@media screen and (max-width: 1024px) {
  .bnWrap .bnAreaWrap .btnArea .groupBnList {
    padding: 6px 12px;
  }
}
@media screen and (max-width: 768px) {
  .bnWrap .bnAreaWrap .btnArea .groupBnList {
    font-size: 1.2rem;
  }
}
.bnWrap .bnDataWrap {
  background-color: #cbe1fd;
  width: 100%;
}
.bnWrap .bnDataWrap .bnDataInner {
  max-width: 1200px;
  margin: 0 auto;
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 8px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .bnWrap .bnDataWrap .bnDataInner {
    flex-wrap: wrap;
    padding: 4px 8px;
  }
}
.bnWrap .bnDataWrap .bnDataInner a {
  color: #333;
  text-decoration: underline;
}
.bnWrap .bnDataWrap .bnDataInner a:hover {
  text-decoration: none;
}
.bnWrap .bnDataWrap .bnDataInner .footerBnBtn {
  background-color: #4c97f6;
  border-radius: 50px;
  color: #fff;
  align-self: center;
  padding: 2px 8px;
  margin-right: 16px;
  text-decoration: none;
}
.bnWrap .bnDataWrap .bnDataInner .bnKaiinWrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  .bnWrap .bnDataWrap .bnDataInner .bnKaiinWrap {
    padding: 2px 0;
    width: 100%;
  }
}

.kihonBtnWrap {
  margin-top: 72px;
}
@media screen and (max-width: 450px) {
  .kihonBtnWrap {
    margin-top: 48px;
  }
}
.kihonBtnWrap .btnGr {
  color: #fff;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 500px;
}
@media screen and (max-width: 768px) {
  .kihonBtnWrap .btnGr {
    width: 80%;
  }
}
@media screen and (max-width: 450px) {
  .kihonBtnWrap .btnGr {
    width: 100%;
  }
}
.kihonBtnWrap .btnGrInfo {
  color: #17A2B6;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 500px;
}
@media screen and (max-width: 768px) {
  .kihonBtnWrap .btnGrInfo {
    width: 80%;
  }
}
@media screen and (max-width: 450px) {
  .kihonBtnWrap .btnGrInfo {
    width: 100%;
  }
}

.btnGr {
  background: rgb(0, 171, 193);
  background: linear-gradient(90deg, rgba(0, 171, 193, 0.6) 0%, rgba(0, 113, 188, 0.6) 100%);
  border-radius: 50px;
  border: 3px solid #fff;
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.btnGr:hover {
  color: #fff;
}
@media screen and (max-width: 450px) {
  .btnGr {
    font-size: 1.4rem;
  }
}

.btnGrInfo {
  background: rgb(215, 255, 254);
  background: linear-gradient(90deg, rgb(255, 254, 255) 0%, rgb(215, 255, 254) 100%);
  border-radius: 50px;
  border: 3px solid #17A2B6;
  color: #17A2B6;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.btnGrInfo:hover {
  color: #005BAC;
}
@media screen and (max-width: 450px) {
  .btnGrInfo {
    font-size: 1.4rem;
  }
}

.youtubeBtn {
  background: rgb(243, 120, 127);
  background: linear-gradient(90deg, rgb(243, 120, 127) 0%, rgb(234, 51, 61) 100%);
  border-radius: 50px;
  border: 3px solid #fff;
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.youtubeBtn:hover {
  color: #fff;
}

.pdfBtn {
  background: rgb(253, 81, 24);
  background: linear-gradient(90deg, rgba(253, 81, 24, 0.6) 0%, rgba(243, 8, 40, 0.6) 100%);
  border-radius: 50px;
  border: 3px solid #fff;
  color: #fff;
  display: inline-block;
  font-family: "Outfit", serif;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.wordBtn {
  background: rgb(89, 149, 238);
  background: linear-gradient(90deg, rgba(89, 149, 238, 0.6) 0%, rgba(13, 71, 193, 0.6) 100%);
  border-radius: 50px;
  border: 3px solid #fff;
  color: #fff;
  display: inline-block;
  font-family: "Outfit", serif;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.arrowRight {
  background-image: url(../../images/common/arrow_wh.svg);
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 30px auto;
  padding: 24px 8px;
  width: 100%;
}

.arrowNone {
  padding: 24px 8px;
  width: 100%;
}

.extLink {
  background-image: url(../../images/common/icon_ext_link.svg);
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px auto;
  padding: 12px 8px;
  width: 100%;
}

.arrowRed {
  background-image: url(../../images/common/arrow_red.svg);
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 30px auto;
  padding: 24px 8px;
  width: 100%;
}

.btnIcon {
  display: flex;
  justify-content: center;
}

.goTopWrap {
  position: relative;
}
.goTopWrap .goTop {
  position: absolute;
  top: -164px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .goTopWrap .goTop {
    top: -154px;
  }
}
@media screen and (max-width: 768px) {
  .goTopWrap .goTop {
    top: -30px;
  }
}
.goTopWrap .goTop img {
  opacity: 1;
  height: auto;
  width: 72px;
}
@media screen and (max-width: 1024px) {
  .goTopWrap .goTop img {
    width: 48px;
  }
}
@media screen and (max-width: 768px) {
  .goTopWrap .goTop img {
    width: 40px;
  }
}
.goTopWrap .goTop:hover {
  opacity: 1;
  transform: translateY(-6px);
}

.blueLeftWrap {
  padding: 0 0 0 20px;
}
.blueLeftWrap .blueBg {
  background: rgb(0, 91, 172);
  border-top-left-radius: 120px;
  border-bottom-left-radius: 120px;
  padding: 200px 30px 80px;
}
@media screen and (max-width: 1024px) {
  .blueLeftWrap .blueBg {
    background-size: 600px auto;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
  }
}
@media screen and (max-width: 768px) {
  .blueLeftWrap .blueBg {
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    background-size: 480px auto;
    padding: 120px 30px 60px;
  }
}
@media screen and (max-width: 450px) {
  .blueLeftWrap .blueBg {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    background-size: 480px auto;
    padding: 100px 30px 40px;
  }
}

.blueRightWrap {
  padding: 0 20px 0 0;
}
.blueRightWrap .blueBg {
  background: rgb(0, 91, 172);
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;
  padding: 200px 30px 80px;
}
@media screen and (max-width: 1024px) {
  .blueRightWrap .blueBg {
    background-size: 600px auto;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
  }
}
@media screen and (max-width: 768px) {
  .blueRightWrap .blueBg {
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    background-size: 480px auto;
    padding: 120px 30px 60px;
  }
}
@media screen and (max-width: 450px) {
  .blueRightWrap .blueBg {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    background-size: 480px auto;
    padding: 100px 30px 40px;
  }
}

.blueCommon .mainTitle {
  font-size: 2.4rem;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .blueCommon .mainTitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .blueCommon .mainTitle {
    font-size: 1.6rem;
  }
}
.blueCommon .mainTitle::before {
  position: absolute;
  content: attr(data-en);
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  font-size: 8rem;
  font-weight: 700;
  top: -80px;
  left: 0;
  right: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .blueCommon .mainTitle::before {
    font-size: 6rem;
    top: -64px;
  }
}
@media screen and (max-width: 450px) {
  .blueCommon .mainTitle::before {
    font-size: 4rem;
    top: -44px;
  }
}

.purpleLeftWrap {
  padding: 0 0 0 20px;
}
.purpleLeftWrap .purpleBg {
  background: rgb(203, 225, 253);
  border-top-left-radius: 120px;
  border-bottom-left-radius: 120px;
  padding: 200px 30px 80px;
}
@media screen and (max-width: 1024px) {
  .purpleLeftWrap .purpleBg {
    background-size: 600px auto;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
  }
}
@media screen and (max-width: 768px) {
  .purpleLeftWrap .purpleBg {
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    background-size: 480px auto;
    padding: 120px 30px 60px;
  }
}
@media screen and (max-width: 450px) {
  .purpleLeftWrap .purpleBg {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    background-size: 480px auto;
    padding: 100px 30px 40px;
  }
}

.purpleCommon .mainTitle {
  font-size: 2.4rem;
  color: #171F55;
  position: relative;
}
@media screen and (max-width: 768px) {
  .purpleCommon .mainTitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .purpleCommon .mainTitle {
    font-size: 1.6rem;
  }
}
.purpleCommon .mainTitle::before {
  position: absolute;
  content: attr(data-en);
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  font-size: 8rem;
  font-weight: 700;
  top: -80px;
  left: 0;
  right: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .purpleCommon .mainTitle::before {
    font-size: 6rem;
    top: -64px;
  }
}
@media screen and (max-width: 450px) {
  .purpleCommon .mainTitle::before {
    font-size: 4rem;
    top: -44px;
  }
}
.purpleCommon .mediumTitle {
  color: #171f55;
  border-bottom: 2px solid #171f55;
}

/* table */
.commonTable {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
}
.commonTable .midashiBlue {
  background-color: #e0eef8;
}
.commonTable .midashiPurple {
  text-align: left;
  background-color: #e7f0fd;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .commonTable .midashiPurple {
    white-space: normal;
  }
}
.commonTable td {
  background-color: #fff;
}
.commonTable td, .commonTable th {
  color: #333;
  border: 1px solid #dcdcdc;
  padding: 16px;
  font-size: 1.6rem;
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  .commonTable td, .commonTable th {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 450px) {
  .commonTable td, .commonTable th {
    padding: 12px;
  }
}
.commonTable td .smallTxt, .commonTable th .smallTxt {
  font-size: 1.4rem;
}
.commonTable a {
  color: #005bac;
  text-decoration: underline;
}
.commonTable a:hover {
  text-decoration: none;
}

.w100per {
  width: 100%;
}

.w1000px {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .tableArea {
    width: 100%;
    margin: 0 auto;
    overflow-x: scroll;
  }
}

@media screen and (max-width: 768px) {
  .spTable {
    width: 100%;
    min-width: 900px;
    margin: 0 auto;
  }
}

/* ページネーション */
.Pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px 0;
}
@media screen and (max-width: 768px) {
  .Pagination {
    margin: 40px 0;
  }
}
.Pagination .Pagination-Item-Link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  background: #fff;
  border: solid 2px #005bac;
  font-size: 14px;
  color: #005bac;
  font-weight: bold;
  transition: all 0.15s linear;
}
@media screen and (max-width: 450px) {
  .Pagination .Pagination-Item-Link {
    width: 40px;
    height: 40px;
  }
}
.Pagination .Pagination-Item-Link .Pagination-Item-Link-Icon {
  width: 20px;
}

.is-provider-youtube {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .is-provider-youtube {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.infoDetailsKihonBtn {
  padding: 0 20px;
}

.Pagination-Item-Link.current {
  background: #005bac;
  color: #fff;
  pointer-events: none;
}
.Pagination-Item-Link.current:hover {
  background: #005bac;
  color: #fff;
}

.Pagination > * + * {
  margin-left: 12px;
}
@media screen and (max-width: 450px) {
  .Pagination > * + * {
    margin-left: 8px;
  }
}

/* fade */
.scroll_fadein {
  opacity: 0;
}

.fadein_animation_start {
  animation-name: fadein_animation;
  animation-delay: 0.3s;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadein_animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.slideup {
  transform: translateY(50px);
}

.slideright {
  transform: translateX(50px);
}

.slideleft {
  transform: translateX(-50px);
}

/* blank */
.pcBlank {
  display: none;
}
@media screen and (max-width: 450px) {
  .pcBlank {
    display: block;
  }
}

.spBlank {
  display: block;
}
@media screen and (max-width: 450px) {
  .spBlank {
    display: none;
  }
}

.pcBlankTab {
  display: none;
}
@media screen and (max-width: 768px) {
  .pcBlankTab {
    display: block;
  }
}

.tabBlank {
  display: block;
}
@media screen and (max-width: 768px) {
  .tabBlank {
    display: none;
  }
}

.pcBlankSpc {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pcBlankSpc {
    display: block;
  }
}

.spcBlank {
  display: block;
}
@media screen and (max-width: 1024px) {
  .spcBlank {
    display: none;
  }
}

.txtBlueLink {
  color: #005bac;
}

/* WordPress用 */
footer.entry-footer {
  display: none;
}/*# sourceMappingURL=common.css.map */