@charset "UTF-8";
:root {
  --vw: 1vw;
}

/*
------------------------
用途：個別にhover要素付けたい時用
------------------------
例）
div {
    width:100px;
    height:100px;
    @include hover;
}
*/
/*
------------------------
用途：良く使うflexを1行に短縮
------------------------
例）
div {
    @include flex(b,w);
}
↑これは↓これを一行で書いた例
div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
*/
* {
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  html {
    font-size: 10px;
  }
}
@media only screen and (min-width: 1400px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: calc(1.3333333333 * var(--vw));
  }
}

body {
  color: #333;
  line-height: 1.8;
  font-family: "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif !important;
  position: relative;
  word-break: break-word;
  width: 100%;
  font-weight: 400;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

.mainSection {
  margin-top: 90px;
}
@media only screen and (max-width: 767px) {
  .mainSection {
    margin-top: 60px;
  }
}

.container {
  overflow: hidden;
}

.pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.btn {
  display: inline-block;
  width: 220px;
  height: 55px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
  background-color: #333;
  border: 1px solid #333;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .btn {
    width: 60%;
    margin: 30px auto 0;
  }
}
.btn:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  right: 20px;
  position: absolute;
  transition: 0.3s;
}
.btn:hover {
  background-color: #fff;
  border-color: #333;
  color: #333;
}
.btn:hover:after {
  right: 18px;
  border-color: #333;
}
.btn span {
  display: block;
}

a img {
  transition: 0.3s;
}

a img:hover {
  opacity: 0.6;
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media only screen and (max-width: 767px) {
  .inner {
    padding: 0 calc(6.6666666667 * var(--vw));
  }
}

.sec_in {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto 120px;
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .sec_in {
    margin: 0 auto calc(8 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .sec_in {
    padding: 0 calc(2.6666666667 * var(--vw));
  }
}
.sec_in.sec_in_bg {
  padding: 120px 30px;
}
@media only screen and (max-width: 767px) {
  .sec_in.sec_in_bg {
    padding: calc(8 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}

.topic_path {
  display: flex;
  margin: 10px auto 50px;
  width: 1100px;
}
@media only screen and (max-width: 767px) {
  .topic_path {
    max-width: inherit;
    display: none;
  }
}
.topic_path li {
  margin-right: 10px;
  font-size: 12px;
  padding-left: 15px;
  box-sizing: border-box;
  position: relative;
}
.topic_path li:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 2.5px);
  left: 0;
}
.topic_path li:first-child {
  padding-left: 0;
}
.topic_path li:first-child:before {
  display: none;
}
.topic_path li a {
  display: block;
  font-size: 12px;
}
.topic_path li a:hover {
  text-decoration: underline;
}

.inview {
  opacity: 0;
  position: relative;
}
.inview.animate {
  -webkit-animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
  animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
}

.inview-group .inview-list {
  opacity: 0;
  position: relative;
}
.inview-group .inview-list.animate {
  -webkit-animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
  animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}

@-webkit-keyframes inview_slide_up {
  0% {
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes inview_slide_up {
  0% {
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=submit] {
  -webkit-appearance: none;
}

textarea {
  resize: none;
  width: auto;
  height: auto;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.txt_c {
  text-align: center !important;
}

.txt_r {
  text-align: right !important;
}

.txt_l {
  text-align: left !important;
}

.txt_w {
  color: #fff;
}

.txt_b {
  color: #000;
}

.txt_b333 {
  color: #333;
}

.txt_db {
  color: #004C9F !important;
}

.txt_db2 {
  color: #002656 !important;
}

.lh0 {
  line-height: 0;
}

.ilb {
  display: inline-block;
}

.f-serif {
  font-family: "Shippori Mincho", serif !important;
}

.font-w500 {
  font-weight: 500 !important;
}

.font-w600 {
  font-weight: 600 !important;
}

.font-w700 {
  font-weight: 700 !important;
}

.font-w600sp400 {
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .font-w600sp400 {
    font-weight: 400;
  }
}

.fnt14 {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .fnt14 {
    font-size: calc(3.2 * var(--vw));
  }
}

.fnt14lh25 {
  font-size: 14px;
  line-height: 25px;
}
@media only screen and (max-width: 767px) {
  .fnt14lh25 {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(5.7333333333 * var(--vw));
  }
}

.fnt14lh25pd {
  font-size: 14px;
  line-height: 25px;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .fnt14lh25pd {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(5.7333333333 * var(--vw));
    padding-top: calc(1.6 * var(--vw));
    padding-bottom: calc(1.6 * var(--vw));
  }
}

.fnt16 {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .fnt16 {
    font-size: calc(4.2666666667 * var(--vw));
  }
}

.fnt16sp12_lh {
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .fnt16sp12_lh {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(5.6 * var(--vw));
  }
}

.fnt16sp14_lh {
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .fnt16sp14_lh {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}

.fnt18 {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .fnt18 {
    font-size: calc(4.8 * var(--vw));
  }
}

.fnt18sp14 {
  font-size: 18px;
  line-height: 32px;
}
@media only screen and (max-width: 767px) {
  .fnt18sp14 {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}

.fnt20 {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .fnt20 {
    font-size: calc(5.3333333333 * var(--vw));
  }
}

.fnt20lh36 {
  font-size: 20px;
  line-height: 36px;
}
@media only screen and (max-width: 767px) {
  .fnt20lh36 {
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}

.fnt22sp20 {
  font-size: 22px;
}
@media only screen and (max-width: 767px) {
  .fnt22sp20 {
    font-size: calc(5.3333333333 * var(--vw));
  }
}

.fnt20sp16 {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .fnt20sp16 {
    font-size: calc(4.2666666667 * var(--vw));
  }
}

.fnt20sp16lh20 {
  font-size: 20px;
  line-height: 20px;
}
@media only screen and (max-width: 767px) {
  .fnt20sp16lh20 {
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(2.6666666667 * var(--vw));
  }
}

.fnt20sp16lh40 {
  font-size: 20px;
  line-height: 20px;
}
@media only screen and (max-width: 767px) {
  .fnt20sp16lh40 {
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(5.3333333333 * var(--vw));
  }
}

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

.ind1_sp {
  text-indent: -1em;
  padding-left: 1em;
}
@media only screen and (max-width: 767px) {
  .ind1_sp {
    text-indent: inherit;
    text-align: left;
    display: inline-block;
    padding-left: 32px;
    padding-right: 20px;
    text-indent: -1em;
  }
}

.ind1_pcsp {
  text-indent: -1em;
  padding-left: 1em;
  text-align: left;
  margin: 0 20px !important;
}
@media only screen and (max-width: 767px) {
  .ind1_pcsp {
    text-indent: inherit;
    text-align: left;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.ind2 {
  text-indent: -2em;
  padding-left: 2em;
}

.ind3 {
  text-indent: -3em;
  padding-left: 3em;
}

.ind1_lp07 {
  text-indent: -1em;
  padding-left: 1em;
  letter-spacing: 0.7px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .ind1_lp07 {
    padding-bottom: calc(3.2 * var(--vw));
  }
}

.ind1_lp {
  text-indent: -1em;
  padding-left: 1em;
  letter-spacing: 0.7px;
}

@media only screen and (max-width: 767px) {
  .ls12sp {
    letter-spacing: calc(0.32 * var(--vw));
  }
}

@media only screen and (max-width: 767px) {
  .ls-m05sp {
    letter-spacing: calc(-0.1333333333 * var(--vw));
  }
}

@media only screen and (max-width: 767px) {
  .ls-m1sp {
    letter-spacing: calc(-0.1333333333 * var(--vw));
  }
}

.color_red {
  color: #C31B3A;
}

.bd-btm-l40 {
  border-bottom: solid 1px #002656;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  .bd-btm-l40 {
    line-height: calc(8 * var(--vw));
  }
}

.pt-7sp5 {
  padding-top: 7px;
}
@media only screen and (max-width: 767px) {
  .pt-7sp5 {
    padding-top: calc(1.3333333333 * var(--vw));
  }
}

.pt-16 {
  padding-top: 16px;
}
@media only screen and (max-width: 767px) {
  .pt-16 {
    padding-top: calc(4.2666666667 * var(--vw));
  }
}

.pt-12sp10 {
  padding-top: 12px;
}
@media only screen and (max-width: 767px) {
  .pt-12sp10 {
    padding-top: calc(2.6666666667 * var(--vw));
  }
}

.pt-15sp10 {
  padding-top: 15px;
}
@media only screen and (max-width: 767px) {
  .pt-15sp10 {
    padding-top: calc(2.6666666667 * var(--vw));
  }
}

.pb-15sp10 {
  padding-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .pb-15sp10 {
    padding-bottom: calc(2.6666666667 * var(--vw));
  }
}

@media only screen and (max-width: 767px) {
  .plr-15sp {
    padding-left: calc(4 * var(--vw));
    padding-right: calc(4 * var(--vw));
  }
}

.pt-16sp14 {
  padding-top: 16px;
}
@media only screen and (max-width: 767px) {
  .pt-16sp14 {
    padding-top: calc(3.7333333333 * var(--vw));
  }
}

.pt-20sp16 {
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .pt-20sp16 {
    padding-top: calc(4.2666666667 * var(--vw));
  }
}

.pb-25sp20 {
  padding-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .pb-25sp20 {
    padding-bottom: calc(5.3333333333 * var(--vw));
  }
}

.pt-30sp20 {
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  .pt-30sp20 {
    padding-top: calc(5.3333333333 * var(--vw));
  }
}

.pt-40sp25 {
  padding-top: 40px !important;
}
@media only screen and (max-width: 767px) {
  .pt-40sp25 {
    padding-top: calc(6.6666666667 * var(--vw)) !important;
  }
}

.mt-10 {
  margin-top: 10px !important;
}
@media only screen and (max-width: 767px) {
  .mt-10 {
    margin-top: 0 !important;
  }
}

.mt-10sp10 {
  margin-top: 10px !important;
}
@media only screen and (max-width: 767px) {
  .mt-10sp10 {
    margin-top: calc(2.6666666667 * var(--vw)) !important;
  }
}

.mt-m10 {
  margin-top: -10px !important;
}
@media only screen and (max-width: 767px) {
  .mt-m10 {
    margin-top: 0 !important;
  }
}

.mt-20sp16 {
  margin-top: 20px !important;
}
@media only screen and (max-width: 767px) {
  .mt-20sp16 {
    margin-top: calc(4.2666666667 * var(--vw)) !important;
  }
}

.mb-20sp16 {
  margin-bottom: 20px !important;
}
@media only screen and (max-width: 767px) {
  .mb-20sp16 {
    margin-bottom: calc(4.2666666667 * var(--vw)) !important;
  }
}

@media only screen and (max-width: 767px) {
  .mt-30sp {
    margin-top: calc(8 * var(--vw)) !important;
  }
}

.mt-50sp30 {
  margin-top: 50px !important;
}
@media only screen and (max-width: 767px) {
  .mt-50sp30 {
    margin-top: calc(8 * var(--vw)) !important;
  }
}

.mt-60sp40 {
  margin-top: 60px !important;
}
@media only screen and (max-width: 767px) {
  .mt-60sp40 {
    margin-top: calc(10.6666666667 * var(--vw)) !important;
  }
}

.mt-60sp80 {
  margin-top: 60px !important;
}
@media only screen and (max-width: 767px) {
  .mt-60sp80 {
    margin-top: calc(21.3333333333 * var(--vw)) !important;
  }
}

.mt-70sp30 {
  margin-top: 70px !important;
}
@media only screen and (max-width: 767px) {
  .mt-70sp30 {
    margin-top: calc(8 * var(--vw)) !important;
  }
}

.mt-70sp80 {
  margin-top: 70px !important;
}
@media only screen and (max-width: 767px) {
  .mt-70sp80 {
    margin-top: calc(21.3333333333 * var(--vw)) !important;
  }
}

.mt-80sp40 {
  margin-top: 80px !important;
}
@media only screen and (max-width: 767px) {
  .mt-80sp40 {
    margin-top: calc(10.6666666667 * var(--vw)) !important;
  }
}

.mt-90sp80 {
  margin-top: 90px !important;
}
@media only screen and (max-width: 767px) {
  .mt-90sp80 {
    margin-top: calc(21.3333333333 * var(--vw)) !important;
  }
}

.mt-180sp0_mb-125sp {
  margin-top: 180px !important;
}
@media only screen and (max-width: 767px) {
  .mt-180sp0_mb-125sp {
    margin-top: 0 !important;
    margin-bottom: calc(33.3333333333 * var(--vw)) !important;
  }
}

.mt-180sp0_pb-125sp {
  margin-top: 180px !important;
}
@media only screen and (max-width: 767px) {
  .mt-180sp0_pb-125sp {
    margin-top: 0 !important;
    padding-bottom: calc(33.3333333333 * var(--vw)) !important;
  }
}

.pt-100sp35 {
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .pt-100sp35 {
    padding-top: calc(9.3333333333 * var(--vw));
  }
}

.pt-100sp50 {
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .pt-100sp50 {
    padding-top: calc(13.3333333333 * var(--vw));
  }
}

.pt-120sp60 {
  padding-top: 120px;
}
@media only screen and (max-width: 767px) {
  .pt-120sp60 {
    padding-top: calc(16 * var(--vw));
  }
}

.pt-180sp60 {
  padding-top: 180px;
}
@media only screen and (max-width: 767px) {
  .pt-180sp60 {
    padding-top: calc(16 * var(--vw));
  }
}

.pt-180sp90 {
  padding-top: 180px;
}
@media only screen and (max-width: 767px) {
  .pt-180sp90 {
    padding-top: calc(24 * var(--vw));
  }
}

.pt-200sp80 {
  padding-top: 200px;
}
@media only screen and (max-width: 767px) {
  .pt-200sp80 {
    padding-top: calc(21.3333333333 * var(--vw));
  }
}

.footer-pp {
  color: #fff;
  font-size: 14px;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer-pp {
    font-size: calc(3.7333333333 * var(--vw));
  }
}
.footer-pp a {
  text-decoration: none;
  color: #fff !important;
}
.footer-pp a:hover {
  opacity: 0.7;
}

.group-footer__mainInner {
  padding-top: 16px !important;
}
@media only screen and (max-width: 767px) {
  .group-footer__mainInner {
    padding: 16px calc(6.4 * var(--vw)) calc(8.5333333333 * var(--vw)) !important;
  }
}

.outer-icon {
  position: relative;
  padding-right: 20px;
}
@media only screen and (max-width: 767px) {
  .outer-icon {
    padding-right: calc(5.3333333333 * var(--vw));
  }
}
.outer-icon::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 3px;
  display: inline-block;
  width: 13px;
  height: 11px;
  background-image: url("../img/link-icon-blue.svg");
  background-position: center;
  background-size: contain;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .outer-icon::after {
    top: 20%;
    right: calc(0.8 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}

.outer-icon-lg {
  position: relative;
  padding-right: 20px;
}
@media only screen and (max-width: 767px) {
  .outer-icon-lg {
    padding-right: calc(5.3333333333 * var(--vw));
  }
}
.outer-icon-lg::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  display: inline-block;
  width: 16px;
  height: 13px;
  background-image: url("../img/link-icon-blue.svg");
  background-position: center;
  background-size: contain;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .outer-icon-lg::after {
    top: 20%;
    right: 0;
    width: calc(4.2666666667 * var(--vw));
    height: calc(3.4666666667 * var(--vw));
  }
}

#TOP {
  clip-path: inset(0 0 0 0);
  /* ボタンのアニメーション */
}
#TOP .bg {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/top/bg_img.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #TOP .bg {
    top: calc(70 * var(--vw));
    background-image: url(../img/top/bg_img_sp.png);
    background-position: top calc(-3.3333333333 * var(--vw)) right;
  }
}
#TOP p {
  margin: initial;
}
#TOP .mv {
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #TOP .mv {
    margin-top: -2px;
  }
}
#TOP .bgb {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 1366px;
}
@media only screen and (max-width: 767px) {
  #TOP .bgb {
    width: 100%;
  }
}
#TOP .slogun {
  position: absolute;
  left: 43px;
  top: 0;
  z-index: 200;
}
@media only screen and (max-width: 767px) {
  #TOP .slogun {
    left: calc(3.7333333333 * var(--vw));
    top: calc(-0.6666666667 * var(--vw));
  }
}
#TOP .slogun img {
  width: 1280px;
}
@media only screen and (max-width: 767px) {
  #TOP .slogun img {
    width: 97%;
  }
}
#TOP .slogun-txt {
  position: absolute;
  left: 75px;
  top: 263px;
  z-index: 200;
  color: #fff;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #TOP .slogun-txt__sp {
    color: #002656;
    font-weight: 500;
    margin: calc(25.3333333333 * var(--vw)) 0 calc(10.6666666667 * var(--vw)) !important;
    order: 4;
  }
}
#TOP .bg-blur {
  position: absolute;
  width: 1366px;
  aspect-ratio: 1366/765;
  background-image: url(../img/top/top_blur.png);
  background-position: left top;
  background-size: 100%;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  #TOP .bg-blur {
    width: 100%;
    background-image: url(../img/top/top_blur_sp.png);
  }
}
#TOP .kv {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
#TOP .kv .kv-img {
  width: 1366px;
}
@media only screen and (max-width: 767px) {
  #TOP .kv .kv-img {
    width: 100%;
  }
}
#TOP .wrap {
  clip-path: inset(0 0 0 0);
  /*
  background-image: url(/common/images/top/bg_img.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: fixed;
  @include media(sp) {
      background-image: url(/common/images/top/bg_img_sp.png);
      background-position: top getvw(-25) right;            
  }
  */
}
#TOP .wrap .bg {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/top/bg_img.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .bg {
    top: calc(70 * var(--vw));
    background-image: url(../img/top/bg_img_sp.png);
    background-position: top calc(-3.3333333333 * var(--vw)) right;
  }
}
#TOP .wrap .top-title {
  font-family: "Shippori Mincho", serif !important;
  font-size: 64px;
  font-weight: 600;
  text-align: center;
  line-height: 64px;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .top-title {
    font-size: calc(10.6666666667 * var(--vw));
    line-height: calc(10.6666666667 * var(--vw));
    text-align: left;
  }
}
#TOP .wrap .sub-title {
  font-family: "Shippori Mincho", serif !important;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .sub-title {
    font-size: calc(4.8 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#TOP .wrap .read-txt {
  font-size: 14px;
  line-height: 25px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .read-txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(7.4666666667 * var(--vw));
    text-align: left;
  }
}
#TOP .wrap .contents_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#TOP .wrap .contents_box .cb_left {
  width: 45%;
  font-size: 64px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  line-height: 64px;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .contents_box .cb_left {
    width: 100%;
    font-size: calc(10.6666666667 * var(--vw));
    line-height: calc(10.6666666667 * var(--vw));
  }
}
#TOP .wrap .contents_box .cb_left .co-read {
  width: 60%;
  font-family: "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif !important;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .contents_box .cb_left .co-read {
    width: 100%;
  }
}
#TOP .wrap .contents_box .cb_right {
  width: 55%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: solid 1px #002656;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .contents_box .cb_right {
    width: 100%;
  }
}
#TOP .wrap .contents_box .cb_right_l {
  width: 18%;
  font-size: 22px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  line-height: 40px;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .contents_box .cb_right_l {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(0.6666666667 * var(--vw));
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}
#TOP .wrap .contents_box .cb_right_r {
  width: 82%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .contents_box .cb_right_r {
    width: 100%;
    padding: calc(0.6666666667 * var(--vw)) 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#TOP .wrap .contents_box .cb_right_l_1 {
  width: 0%;
}
#TOP .wrap .contents_box .cb_right_r_1 {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .contents_box .cb_right_r_1 {
    width: 100%;
    padding: calc(0.6666666667 * var(--vw)) 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#TOP .wrap .contents_box .cb_right_bn {
  width: 55%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .contents_box .cb_right_bn {
    width: 100%;
  }
}
#TOP .wrap .contents_box .cb_right_bn_l {
  width: 18%;
  padding: 20px 0;
  font-size: 22px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .contents_box .cb_right_bn_l {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(0.6666666667 * var(--vw));
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}
#TOP .wrap .contents_box .cb_right_bn_r {
  width: 82%;
  padding: 20px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .contents_box .cb_right_bn_r {
    width: 100%;
    padding: calc(0.6666666667 * var(--vw)) 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#TOP .wrap .contents_box .cb_right_bn_l_1 {
  width: 0%;
}
#TOP .wrap .contents_box .cb_right_bn_r_1 {
  width: 100%;
  padding: 20px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .contents_box .cb_right_bn_r_1 {
    width: 100%;
    padding: calc(0.6666666667 * var(--vw)) 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#TOP .wrap .accordion-002 .open {
  background-color: #EAEEF4;
}
#TOP .wrap .accordion-002 dl {
  border-bottom: 1px solid #002656;
  margin: 0;
}
#TOP .wrap .accordion-002 dl:first-of-type {
  border-top: 1px solid #002656;
}
#TOP .wrap .accordion-002 dl dt {
  cursor: pointer;
  position: relative;
  font-family: "Shippori Mincho", serif !important;
  font-size: 24px;
  font-weight: 600;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .accordion-002 dl dt {
    font-size: calc(5.3333333333 * var(--vw));
  }
}
#TOP .wrap .accordion-002 dl dt::before {
  /*
  content: 'Q';
  position: absolute;
  left: 0;
  top: 23px;
  font-weight: bold;
  @include media(sp) {
  top: 16px;
  }
  */
}
#TOP .wrap .accordion-002 dl dt.open .accordion-002__toggle::after {
  transform: rotate(0deg);
}
#TOP .wrap .accordion-002 dl dt.open .accordion-002__toggle2::after {
  transform: rotate(0deg);
}
#TOP .wrap .accordion-002 dl dd {
  display: none;
  margin-left: initial;
  padding: 0 48px 24px 30px;
  position: relative;
  background-color: #EAEEF4;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .accordion-002 dl dd {
    padding: 0 calc(6.4 * var(--vw)) calc(3.2 * var(--vw)) calc(4 * var(--vw));
  }
}
#TOP .wrap .accordion-002 dl dd::before {
  /* content: 'A';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  */
}
#TOP .wrap .accordion-002__toggle {
  border: solid 1px #002656;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 35px;
  width: 32px;
  aspect-ratio: 1;
  padding: 6px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .accordion-002__toggle {
    right: calc(4.8 * var(--vw));
    top: calc(11.7333333333 * var(--vw));
    width: calc(8.5333333333 * var(--vw));
    padding: calc(1.6 * var(--vw));
  }
}
#TOP .wrap .accordion-002__toggle::before, #TOP .wrap .accordion-002__toggle::after {
  transition: 0.3s ease;
  width: 35%;
  height: 1px;
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #002656;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .accordion-002__toggle::before, #TOP .wrap .accordion-002__toggle::after {
    top: calc(3.7333333333 * var(--vw));
  }
}
#TOP .wrap .accordion-002__toggle::after {
  transform: rotate(-90deg);
}
#TOP .wrap .accordion-002__toggle2 {
  border: solid 1px #002656;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 35px;
  width: 32px;
  aspect-ratio: 1;
  padding: 6px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .accordion-002__toggle2 {
    right: calc(4.8 * var(--vw));
    top: calc(15.6 * var(--vw));
    width: calc(8.5333333333 * var(--vw));
    padding: calc(1.6 * var(--vw));
  }
}
#TOP .wrap .accordion-002__toggle2::before, #TOP .wrap .accordion-002__toggle2::after {
  transition: 0.3s ease;
  width: 35%;
  height: 1px;
  content: "";
  position: absolute;
  top: 15px;
  left: 1px;
  right: 0;
  margin: 0 auto;
  background-color: #002656;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .accordion-002__toggle2::before, #TOP .wrap .accordion-002__toggle2::after {
    top: calc(3.7333333333 * var(--vw));
  }
}
#TOP .wrap .accordion-002__toggle2::after {
  transform: rotate(-90deg);
}
#TOP .wrap .accordion-002 .acc-title__txt {
  font-family: "Shippori Mincho", serif !important;
  font-size: 20px;
  line-height: 36px;
  font-weight: bold;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .accordion-002 .acc-title__txt {
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}
#TOP .wrap .accordion-002 .acc-day__txt {
  font-size: 16px;
  line-height: 28px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .accordion-002 .acc-day__txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#TOP .wrap .accordion-002 .acc-cont__txt {
  font-size: 16px;
  line-height: 28px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: solid 1px rgba(0, 38, 86, 0.3);
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .accordion-002 .acc-cont__txt {
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(7.4666666667 * var(--vw));
    padding-top: calc(1.6 * var(--vw));
    padding-bottom: calc(1.6 * var(--vw));
  }
}
#TOP .wrap .accordion-002 .acc-box {
  padding: 20px 48px 20px 30px;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .accordion-002 .acc-box {
    padding: calc(5.3333333333 * var(--vw)) calc(6.4 * var(--vw)) calc(5.3333333333 * var(--vw)) calc(4 * var(--vw));
  }
}
#TOP .wrap .accordion-002 .acc-box .icon-box {
  margin-bottom: 5px !important;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .accordion-002 .acc-box .icon-box {
    margin-bottom: calc(1.3333333333 * var(--vw)) !important;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .accordion-002 .acc-fbox {
    display: flex;
    justify-content: flex-start;
    gap: calc(4.2666666667 * var(--vw));
  }
}
#TOP .wrap .accordion-002 .acc-fbox .txt-l {
  display: flex;
  align-items: center;
}
#TOP .wrap .accordion-002 .acc-fbox .txt-r {
  display: flex;
  align-items: center;
}
#TOP .wrap .info-box {
  text-align: left;
  margin-top: 190px !important;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .info-box {
    margin-top: calc(12 * var(--vw)) !important;
  }
}
#TOP .wrap .info-box__title {
  font-size: 48px;
  line-height: 48px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .info-box__title {
    font-size: calc(8.5333333333 * var(--vw));
    line-height: calc(8.5333333333 * var(--vw));
  }
}
#TOP .wrap .info-box__sub {
  font-size: 18px;
  line-height: 25px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 700;
  color: #004C9F;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .info-box__sub {
    font-size: calc(4.8 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#TOP .btn_area {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #TOP .btn_area {
    justify-content: left;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .btn-center {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 15px;
  }
}
#TOP .mypage-btn__single {
  width: 245px;
  margin-top: 30px !important;
  display: flex;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single {
    width: calc(52.6666666667 * var(--vw));
    margin-top: calc(5.3333333333 * var(--vw)) !important;
    justify-content: center;
  }
}
#TOP .mypage-btn__single-210 {
  position: relative;
  letter-spacing: 0.5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  transition: background-image 0.7s ease;
  background-image: url("../img/contents/more_btn_pc.svg"), url("../img/contents/more_btn_hover.svg");
  background-size: 100%, 0 0;
  text-align: center;
  text-decoration: none;
  /*&::after{
      content: "●";
      color: #fff;
      position: absolute;
      top: 33%;
      right: getvwPc(20);
      font-size: getvwPc(10);
      @include media(sp) {
          right: getvw(26);
      }
  }*/
}
#TOP .mypage-btn__single-210:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210 {
    width: calc(52.6666666667 * var(--vw));
    height: calc(12 * var(--vw));
    font-size: calc(3.2 * var(--vw));
    background-image: url(../img/contents/more_btn_sp.png);
    background-size: 100%;
    padding-bottom: calc(0.2666666667 * var(--vw));
  }
}
#TOP .mypage-btn__single-210::after {
  content: ".";
  color: #fff;
  position: absolute;
  top: -6px;
  right: 17px;
  font-size: 50px;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210::after {
    top: -21%;
    right: calc(3.4666666667 * var(--vw));
    font-size: calc(13.3333333333 * var(--vw));
  }
}
#TOP .mypage-btn__single-210:hover::after {
  animation: blinkBorder 0.6s ease infinite alternate;
}
#TOP .mypage-btn__single-210outer {
  position: relative;
  letter-spacing: 0.5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  transition: background-image 0.7s ease;
  background-image: url("../img/contents/more_btn_pc.svg"), url("../img/contents/more_btn_hover.svg");
  background-size: 100%, 0 0;
  text-align: center;
  text-decoration: none;
}
#TOP .mypage-btn__single-210outer:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210outer {
    letter-spacing: calc(0.1333333333 * var(--vw));
    width: calc(52.6666666667 * var(--vw));
    height: calc(12 * var(--vw));
    right: calc(3.4666666667 * var(--vw));
    font-size: calc(3.2 * var(--vw));
    background-image: url(../img/contents/more_btn_sp.png);
    background-size: 100%;
    padding-bottom: calc(0.2666666667 * var(--vw));
  }
}
#TOP .mypage-btn__single-210outer::after {
  content: "";
  position: absolute;
  right: 18px;
  display: inline-block;
  width: 13px;
  height: 11px;
  background-image: url("../img/top/link_icon.svg");
  background-position: center;
  background-size: contain;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210outer::after {
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
    right: calc(4 * var(--vw));
  }
}
#TOP .mypage-btn__single-210outer_fd {
  position: relative;
  letter-spacing: 0.5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-align: center;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210outer_fd {
    letter-spacing: calc(0.1333333333 * var(--vw));
    width: calc(52.6666666667 * var(--vw));
    height: calc(12 * var(--vw));
    right: calc(3.4666666667 * var(--vw));
    font-size: calc(3.2 * var(--vw));
    padding-bottom: calc(0.2666666667 * var(--vw));
  }
}
#TOP .mypage-btn__single-210outer_fd::after {
  content: "";
  position: absolute;
  right: 18px;
  display: inline-block;
  width: 13px;
  height: 11px;
  background-image: url("../img/top/link_icon.svg");
  background-position: center;
  background-size: contain;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210outer_fd::after {
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
    right: calc(0.6666666667 * var(--vw));
  }
}
#TOP .mypage-btn__single-210outer_fd img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210outer_fd img {
    left: calc(3.3333333333 * var(--vw));
  }
}
#TOP .mypage-btn__single-210outer_fd img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#TOP .mypage-btn__single-210outer_fd:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210outer_fd:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210outer_fd:hover img:last-of-type {
    opacity: 0;
  }
}
#TOP .mypage-btn__single .ab-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-decoration: none;
  z-index: 10;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single .ab-txt {
    top: 47%;
    font-size: calc(3.2 * var(--vw));
    left: calc(50% + 12px);
    width: 100%;
  }
}
#TOP .mypage-btn__single .ab-txt2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-decoration: none;
  z-index: 10;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single .ab-txt2 {
    top: 45%;
    font-size: calc(3.2 * var(--vw));
    width: 100%;
  }
}
#TOP .mypage-btn__single-210acc {
  position: relative;
  letter-spacing: 0.5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  transition: background-image 0.7s ease;
  background-image: url("../img/contents/more_btn_pc.svg"), url("../img/contents/more_btn_hover.svg");
  background-size: 100%, 0 0;
  text-align: center;
  text-decoration: none;
}
#TOP .mypage-btn__single-210acc:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210acc {
    width: calc(52.6666666667 * var(--vw));
    height: calc(12 * var(--vw));
    font-size: calc(3.2 * var(--vw));
    background-image: url(../img/contents/more_btn_sp.png);
    background-size: 100%;
    padding-bottom: calc(0.5333333333 * var(--vw));
  }
}
#TOP .mypage-btn__single-210acc::after {
  content: ".";
  color: #fff;
  position: absolute;
  top: -6px;
  right: 17px;
  font-size: 50px;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210acc::after {
    top: -21%;
    right: calc(3.4666666667 * var(--vw));
    font-size: calc(13.3333333333 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  #TOP .mypage-btn__single-210acc:hover::after {
    animation: blinkBorder 0.36s ease infinite alternate;
  }
}
#TOP .mypage-btn__single-210acc_fd {
  position: relative;
  letter-spacing: 0.5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-align: center;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210acc_fd {
    width: calc(52.6666666667 * var(--vw));
    height: calc(12 * var(--vw));
    font-size: calc(3.2 * var(--vw));
    padding-bottom: calc(0.5333333333 * var(--vw));
  }
}
#TOP .mypage-btn__single-210acc_fd::after {
  content: ".";
  color: #fff;
  position: absolute;
  top: -6px;
  right: 17px;
  font-size: 50px;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210acc_fd::after {
    top: -25%;
    right: calc(3.4666666667 * var(--vw));
    font-size: calc(13.3333333333 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  #TOP .mypage-btn__single-210acc_fd:hover::after {
    animation: blinkBorder 0.36s ease infinite alternate;
  }
}
#TOP .mypage-btn__single-210acc_fd img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#TOP .mypage-btn__single-210acc_fd img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#TOP .mypage-btn__single-210acc_fd:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210acc_fd:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210acc_fd:hover img:last-of-type {
    opacity: 0;
  }
}
#TOP .mypage-btn__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 60px;
  margin: 50px 0 160px !important;
  order: 2;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__box {
    order: 3;
    gap: calc(8 * var(--vw));
    margin: calc(5.3333333333 * var(--vw)) 0 calc(26.6666666667 * var(--vw)) !important;
  }
}
#TOP .mypage-btn__box_left {
  position: relative;
  border-radius: 66px;
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  transition: background-image 0.7s ease;
  background-image: url("../img/contents/mypage_login_btn_pc.svg"), url("../img/contents/mypage_login_btn_hover.svg");
  background-size: 100%, 0 0;
  text-align: center;
  text-decoration: none;
  padding: 20px 0;
}
#TOP .mypage-btn__box_left:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__box_left {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0;
    font-size: calc(4.2666666667 * var(--vw));
    background-image: url(../img/contents/mypage_login_btn_sp.svg);
  }
}
#TOP .mypage-btn__box_left::after {
  content: "●";
  color: #fff;
  position: absolute;
  top: 40%;
  right: 17px;
  font-size: 10px;
}
#TOP .mypage-btn__box_left:hover::after {
  animation: blinkBorder 0.6s ease infinite alternate;
}
#TOP .mypage-btn__box_right {
  position: relative;
  border-radius: 66px;
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  transition: background-image 0.7s ease;
  background-image: url("../img/contents/mypage_signin_btn_pc.svg"), url("../img/contents/mypage_login_btn_hover.svg");
  background-size: 100%, 0 0;
  text-align: center;
  text-decoration: none;
  padding: 20px 0;
}
#TOP .mypage-btn__box_right:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__box_right {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0;
    font-size: calc(4.2666666667 * var(--vw));
    background-image: url(../img/contents/mypage_signin_btn_sp.svg);
  }
}
#TOP .mypage-btn__box_right::after {
  content: "●";
  color: #fff;
  position: absolute;
  top: 40%;
  right: 17px;
  font-size: 10px;
}
#TOP .mypage-btn__box_right:hover::after {
  animation: blinkBorder 0.6s ease infinite alternate;
}
#TOP .mypage-btn__cobox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 415px;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__cobox {
    width: 100%;
  }
}
#TOP .mypage-btn__cobox .txt {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  margin-top: 16px !important;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__cobox .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    margin-top: calc(3.7333333333 * var(--vw)) !important;
  }
}
@keyframes blinkBorder {
  0% {
    filter: blur(0);
  }
  100% {
    filter: blur(2px);
  }
}
#TOP .status_icon__end {
  display: inline-block;
  font-family: "Shippori Mincho", serif !important;
  padding: 1px 4px 3px;
  font-size: 12px;
  line-height: 12px;
  color: #333;
  border: solid 1px #333;
  border-radius: 2px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #TOP .status_icon__end {
    padding: calc(0.5333333333 * var(--vw)) calc(1.2 * var(--vw)) calc(0.8 * var(--vw));
    font-size: calc(3.2 * var(--vw));
    line-height: calc(3.2 * var(--vw));
    border-radius: calc(0.5333333333 * var(--vw));
  }
}
#TOP .status_icon__new {
  display: inline-block;
  font-family: "Shippori Mincho", serif !important;
  padding: 2px 5px;
  font-size: 12px;
  line-height: 12px;
  color: #C31B3A;
  border: solid 1px #C31B3A;
  border-radius: 2px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #TOP .status_icon__new {
    padding: calc(0.5333333333 * var(--vw)) calc(1.3333333333 * var(--vw));
    font-size: calc(3.2 * var(--vw));
    line-height: calc(3.2 * var(--vw));
    border-radius: calc(0.5333333333 * var(--vw));
  }
}
#TOP .foot-mypage {
  margin-top: 50px !important;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage {
    margin-top: calc(10.6666666667 * var(--vw)) !important;
    align-items: flex-start;
  }
}
#TOP .foot-mypage__imgtxt {
  text-align: center;
  order: 5;
}
#TOP .foot-mypage__imgtxt img {
  width: 1280px;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage__imgtxt {
    padding: 0 calc(6.6666666667 * var(--vw));
  }
}
#TOP .foot-mypage__title {
  font-size: 36px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 500;
  order: 1;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage__title {
    font-size: calc(5.3333333333 * var(--vw));
    order: 2;
    margin-top: calc(24 * var(--vw)) !important;
  }
}
#TOP .foot-mypage .foot-mypage-btn__single {
  width: 245px;
  margin-top: 20px !important;
  display: flex;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__single {
    width: calc(52.6666666667 * var(--vw));
    margin-top: calc(4 * var(--vw)) !important;
    justify-content: center;
  }
}
#TOP .foot-mypage .foot-mypage-btn__single-210 {
  position: relative;
  letter-spacing: 0.5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  transition: background-image 0.7s ease;
  background-image: url("../img/contents/more_btn_pc.svg"), url("../img/contents/more_btn_hover.svg");
  background-size: 100%, 0 0;
  text-align: center;
  text-decoration: none;
  /*&::after{
      content: "●";
      color: #fff;
      position: absolute;
      top: 33%;
      right: getvwPc(20);
      font-size: getvwPc(10);
  }
      */
}
#TOP .foot-mypage .foot-mypage-btn__single-210:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__single-210 {
    width: calc(52.6666666667 * var(--vw));
    height: calc(12 * var(--vw));
    font-size: calc(3.2 * var(--vw));
    background-image: url(../img/contents/more_btn_sp.png);
    background-size: 100%;
    padding-bottom: calc(0.2666666667 * var(--vw));
  }
}
#TOP .foot-mypage .foot-mypage-btn__single-210::after {
  content: ".";
  color: #fff;
  position: absolute;
  top: -6px;
  right: 17px;
  font-size: 50px;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__single-210::after {
    top: -21%;
    right: calc(3.4666666667 * var(--vw));
    font-size: calc(13.3333333333 * var(--vw));
  }
}
#TOP .foot-mypage .foot-mypage-btn__single-210:hover::after {
  animation: blinkBorder 0.6s ease infinite alternate;
}
#TOP .foot-mypage .foot-mypage-btn__single-210outer {
  position: relative;
  letter-spacing: 0.5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  transition: background-image 0.7s ease;
  background-image: url("../img/contents/more_btn_pc.svg"), url("../img/contents/more_btn_hover.svg");
  background-size: 100%, 0 0;
  text-align: center;
  text-decoration: none;
}
#TOP .foot-mypage .foot-mypage-btn__single-210outer:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__single-210outer {
    width: calc(52.6666666667 * var(--vw));
    height: calc(12 * var(--vw));
    font-size: calc(3.2 * var(--vw));
    background-image: url(../img/contents/more_btn_sp.png);
    background-size: 100%;
    padding-bottom: calc(0.2666666667 * var(--vw));
  }
}
#TOP .foot-mypage .foot-mypage-btn__single-210outer::after {
  content: "";
  position: absolute;
  right: 18px;
  display: inline-block;
  width: 13px;
  height: 11px;
  background-image: url("../img/top/link_icon.svg");
  background-position: center;
  background-size: contain;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__single-210outer::after {
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
    right: calc(4 * var(--vw));
  }
}
#TOP .foot-mypage .foot-mypage-btn__single-210outer_fd {
  position: relative;
  letter-spacing: 0.5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-align: center;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__single-210outer_fd {
    width: calc(52.6666666667 * var(--vw));
    height: calc(12 * var(--vw));
    padding-bottom: calc(0.2666666667 * var(--vw));
  }
}
#TOP .foot-mypage .foot-mypage-btn__single-210outer_fd::after {
  content: "";
  position: absolute;
  right: 18px;
  display: inline-block;
  width: 13px;
  height: 11px;
  background-image: url("../img/top/link_icon.svg");
  background-position: center;
  background-size: contain;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__single-210outer_fd::after {
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
    right: calc(4 * var(--vw));
    top: 35%;
  }
}
#TOP .foot-mypage .foot-mypage-btn__single-210outer_fd img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#TOP .foot-mypage .foot-mypage-btn__single-210outer_fd img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#TOP .foot-mypage .foot-mypage-btn__single-210outer_fd:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__single-210outer_fd:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__single-210outer_fd:hover img:last-of-type {
    opacity: 0;
  }
}
#TOP .foot-mypage .foot-mypage-btn__single .ab-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-decoration: none;
  z-index: 10;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__single .ab-txt {
    font-size: calc(3.2 * var(--vw));
    left: calc(50% + 12px);
    width: 100%;
  }
}
#TOP .foot-mypage .foot-mypage-btn__single .ab-txt2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-decoration: none;
  z-index: 10;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__single .ab-txt2 {
    top: 47%;
    font-size: calc(3.2 * var(--vw));
    width: 100%;
  }
}
#TOP .foot-mypage .foot-mypage-btn__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 60px;
  order: 2;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__box {
    order: 3;
    gap: calc(8 * var(--vw));
  }
}
#TOP .foot-mypage .foot-mypage-btn__box_left {
  position: relative;
  border-radius: 66px;
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  transition: background-image 0.3s ease;
  background-image: url("../img/contents/mypage_login_btn_pc.svg"), url("../img/contents/mypage_login_btn_hover.svg");
  background-size: 100%, 0 0;
  text-align: center;
  text-decoration: none;
  padding: 20px 0;
}
#TOP .foot-mypage .foot-mypage-btn__box_left:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__box_left {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0;
    font-size: calc(4.2666666667 * var(--vw));
    background-image: url(../img/contents/mypage_login_btn_sp.svg);
  }
}
#TOP .foot-mypage .foot-mypage-btn__box_left::after {
  content: "●";
  color: #fff;
  position: absolute;
  top: 40%;
  right: 20px;
  font-size: 10px;
}
#TOP .foot-mypage .foot-mypage-btn__box_left:hover::after {
  animation: blinkBorder 0.6s ease infinite alternate;
}
#TOP .foot-mypage .foot-mypage-btn__box_right {
  position: relative;
  border-radius: 66px;
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  transition: background-image 0.6s ease;
  background-image: url("../img/contents/mypage_signin_btn_pc.svg"), url("../img/contents/mypage_login_btn_hover.svg");
  background-size: 100%, 0 0;
  text-align: center;
  text-decoration: none;
  padding: 20px 0;
}
#TOP .foot-mypage .foot-mypage-btn__box_right:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__box_right {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0;
    font-size: calc(4.2666666667 * var(--vw));
    background-image: url(../img/contents/mypage_signin_btn_sp.svg);
  }
}
#TOP .foot-mypage .foot-mypage-btn__box_right::after {
  content: "●";
  color: #fff;
  position: absolute;
  top: 40%;
  right: 20px;
  font-size: 10px;
}
#TOP .foot-mypage .foot-mypage-btn__box_right:hover::after {
  animation: blinkBorder 0.6s ease infinite alternate;
}
#TOP .foot-mypage .foot-mypage-btn__cobox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 47%;
  gap: 5%;
  background-color: #EAEEF4;
  padding: 40px;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__cobox {
    width: 100%;
    padding: calc(10.6666666667 * var(--vw)) calc(5.3333333333 * var(--vw));
    border-radius: calc(1.0666666667 * var(--vw));
  }
}
#TOP .foot-mypage .foot-mypage-btn__cobox .title {
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__cobox .title {
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(5.3333333333 * var(--vw));
    font-weight: 600;
  }
}
#TOP .foot-mypage .foot-mypage-btn__cobox .txt {
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  margin-top: 25px !important;
  flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  #TOP .foot-mypage .foot-mypage-btn__cobox .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    margin-top: calc(5.3333333333 * var(--vw)) !important;
  }
}
#TOP .slider {
  height: 765px;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 1366px;
}
@media only screen and (max-width: 767px) {
  #TOP .slider {
    width: 100%;
    height: calc(56 * var(--vw));
  }
}
#TOP .slick-img img {
  width: 100%;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
@media only screen and (max-width: 767px) {
  #TOP .add-animation {
    animation: zoomUp 10s linear 0s normal both;
  }
}
#TOP .scroll-area {
  position: relative;
  height: 400px;
}
#TOP .scroll {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: 50px;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  #TOP .scroll {
    bottom: calc(6.6666666667 * var(--vw));
  }
}
#TOP .scroll::before {
  content: "";
  animation: scroll 2s infinite;
  background-color: #fff;
  bottom: -105px;
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

#CONTENTS {
  margin-top: 30px;
  /* ボタンのアニメーション */
}
@media only screen and (max-width: 767px) {
  #CONTENTS {
    margin-top: calc(4 * var(--vw));
  }
}
#CONTENTS p {
  margin: initial !important;
}
#CONTENTS .wrap {
  clip-path: inset(0 0 0 0);
  /*
          background-image: url(../img/top/bg_img.png);
          background-position: top left;
          background-repeat: no-repeat;
          background-size: auto;
          background-attachment: fixed;
          @include media(sp) {
              background-image: url(../img/top/bg_img_sp.png);
              background-position: top getvw(-25) right;            
          }
  */
}
#CONTENTS .wrap .bg {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/top/bg_img.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .wrap .bg {
    top: calc(66.6666666667 * var(--vw));
    background-image: url(../img/top/bg_img_sp.png);
    background-position: top calc(-3.3333333333 * var(--vw)) right;
  }
}
#CONTENTS .wrap .bg2 {
  position: fixed;
  top: 55px;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/contents/bg_img_contents_pc.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .wrap .bg2 {
    top: calc(16 * var(--vw));
    background-image: url(../img/contents/bg_img_contents_sp.png);
    background-position: top calc(-3.3333333333 * var(--vw)) right;
  }
}
#CONTENTS .inner_frame {
  width: 100%;
  background-color: #EAEEF4;
  margin: 20px auto 0;
  border-radius: 4px;
  padding: 110px 120px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame {
    margin: calc(4 * var(--vw)) auto 0;
    padding: calc(13.3333333333 * var(--vw)) calc(5.8666666667 * var(--vw));
    border-radius: calc(1.0666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents {
  width: 896px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#CONTENTS .inner_contents .contents_box .cb_left {
  width: 16%;
  font-size: 22px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 700;
  line-height: 30px;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_left {
    width: 100%;
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box .cb_right {
  width: 82%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: solid 1px #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_l {
  width: 18%;
  padding: 25px 0 22px;
  font-size: 22px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 700;
  line-height: 22px;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_l {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(0.6666666667 * var(--vw));
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_r {
  width: 82%;
  padding: 25px 0 22px;
  font-size: 16px;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_r {
    width: 100%;
    padding: 0 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box .cb_right_r_1 {
  width: 100%;
  padding: 25px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_r_1 {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bn {
  width: 82%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bn {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bn_l {
  width: 18%;
  padding: 20px 0;
  font-size: 22px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bn_l {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(0.6666666667 * var(--vw));
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bn_r {
  width: 82%;
  padding: 20px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bn_r {
    width: 100%;
    padding: 0 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bn_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box .cb_right_bn_r_1 {
  width: 100%;
  padding: 20px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bn_r_1 {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bn_r_1_pn {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bn_r_1_pn {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bn2 {
  width: 82%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bn2 {
    width: 100%;
    padding-top: 0;
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bn2_l {
  width: 18%;
  padding: 20px 0;
  font-size: 22px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bn2_l {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(0.6666666667 * var(--vw));
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bn2_r {
  width: 82%;
  padding: 20px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bn2_r {
    width: 100%;
    padding: 0 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bn2_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box .cb_right_bn2_r_1 {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bn2_r_1 {
    width: 100%;
    padding: 0 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bn2_r_1_pn {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bn2_r_1_pn {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bnpc {
  width: 82%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bnpc {
    width: 100%;
    border-top: solid 1px #002656;
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bnpc_l {
  width: 18%;
  padding: 20px 0;
  font-size: 22px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bnpc_l {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(0.6666666667 * var(--vw));
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bnpc_r {
  width: 82%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bnpc_r {
    width: 100%;
    padding: 0 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bnpc_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box .cb_right_bnpc_r_1 {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bnpc_r_1 {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bnpc_r_1_pn {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bnpc_r_1_pn {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .banner-box {
  width: 100%;
  text-align: center;
}
#CONTENTS .inner_contents .banner-box img {
  width: 740px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .banner-box img {
    width: calc(68.5333333333 * var(--vw));
  }
}
#CONTENTS .inner .rec-year {
  font-family: "Shippori Mincho", serif !important;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 20px;
  color: #002656;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .rec-year {
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .inner .top-title {
  font-family: "Shippori Mincho", serif !important;
  font-size: 56px;
  line-height: 67px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 20px;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .top-title {
    font-size: calc(6.9333333333 * var(--vw));
    line-height: calc(8.8 * var(--vw));
    text-align: left;
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#CONTENTS .inner .t-box {
  display: flex;
}
#CONTENTS .inner .sub-title {
  width: 100%;
  text-align: left;
}
#CONTENTS .inner .sub-title1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 27px;
  line-height: 27px;
  color: #fff;
  background-color: #002656;
  padding: 6px 10px 7px;
  border-radius: 3px;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .sub-title1 {
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(4.2666666667 * var(--vw));
    padding: calc(0.8 * var(--vw)) calc(1.6 * var(--vw)) calc(1.3333333333 * var(--vw));
    border-radius: calc(0.5333333333 * var(--vw));
  }
}
#CONTENTS .inner .sub-title1-e {
  font-family: "Shippori Mincho", serif !important;
  font-size: 27px;
  line-height: 27px;
  color: #333333;
  border: solid 2px #002656;
  border-radius: 4px;
  padding: 4px 9px 5px;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .sub-title1-e {
    border: solid 1px #002656;
    border-radius: calc(1.0666666667 * var(--vw));
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(4.2666666667 * var(--vw));
    padding: calc(0.5333333333 * var(--vw)) calc(1.6 * var(--vw)) calc(1.3333333333 * var(--vw));
  }
}
#CONTENTS .inner .sub-title2 {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .sub-title2 {
    font-size: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .inner .sub-title2-1 {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .sub-title2-1 {
    font-size: calc(4.2666666667 * var(--vw));
  }
}
#CONTENTS .inner .sub-title3 {
  font-family: "Shippori Mincho", serif !important;
  margin-top: 65px !important;
  font-size: 11px;
  font-weight: 600;
  position: relative;
  color: #002656;
  padding-left: 11px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .sub-title3 {
    margin-top: calc(9.3333333333 * var(--vw)) !important;
    font-size: calc(2.9333333333 * var(--vw));
    padding-left: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .inner .sub-title3::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 50%;
  border-top: solid 1px #002656;
  width: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .sub-title3::before {
    bottom: 43%;
    width: calc(2.1333333333 * var(--vw));
  }
}
#CONTENTS .flow-003 {
  position: relative;
  overflow: hidden;
  padding-left: initial;
  margin-top: initial;
  margin-bottom: initial;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-003 {
    width: 100%;
  }
}
#CONTENTS .flow-003::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: calc(100% - 60px);
  background-color: #333;
}
#CONTENTS .flow-003__item {
  padding: 0 0 32px;
  display: flex;
  gap: 32px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-003__item {
    padding: 0 0 calc(8 * var(--vw));
    gap: calc(8 * var(--vw));
  }
}
#CONTENTS .flow-003__item:nth-child(odd) .flow-003__number {
  background-color: #fff;
}
#CONTENTS .flow-003__number {
  width: 100%;
  border-radius: 6px;
  display: flex;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-003__number {
    width: 100%;
  }
}
#CONTENTS .flow-003__number .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-003__number .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#CONTENTS .flow-003__number .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-003__number .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-003__number .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-003__number .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-003__ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-003__ttl {
    font-size: 18px;
  }
}
#CONTENTS .flow-004 {
  position: relative;
  overflow: hidden;
  padding-left: initial;
  margin-top: initial;
  margin-bottom: initial;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-004 {
    width: 100%;
  }
}
#CONTENTS .flow-004::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: calc(100% - 60px);
  background-color: #333;
}
#CONTENTS .flow-004__item {
  padding: 0 0 32px;
  display: flex;
  gap: 32px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-004__item {
    padding: 0 0 calc(8 * var(--vw));
    gap: calc(8 * var(--vw));
  }
}
#CONTENTS .flow-004__item:nth-child(odd) .flow-004__number {
  background-color: #fff;
}
#CONTENTS .flow-004__number {
  width: 100%;
  border-radius: 6px;
  display: flex;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-004__number {
    width: 100%;
  }
}
#CONTENTS .flow-004__number .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-004__number .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#CONTENTS .flow-004__number .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-004__number .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-004__number .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-004__number .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-004__ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-004__ttl {
    font-size: 18px;
  }
}
#CONTENTS .flow-005 {
  position: relative;
  overflow: hidden;
  padding-left: initial;
  margin-top: initial;
  margin-bottom: initial;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005 {
    width: 100%;
  }
}
#CONTENTS .flow-005::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: calc(100% - 60px);
  background-color: #333;
}
#CONTENTS .flow-005__item {
  padding: 0 0 32px;
  display: flex;
  gap: 32px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005__item {
    padding: 0 0 calc(8 * var(--vw));
    gap: calc(8 * var(--vw));
  }
}
#CONTENTS .flow-005__item:nth-child(odd) .flow-005__number {
  background-color: #fff;
}
#CONTENTS .flow-005__number {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005__number {
    width: 100%;
  }
}
#CONTENTS .flow-005__number .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005__number .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#CONTENTS .flow-005__number .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005__number .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-005__number .txt_l_sp_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005__number .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-005__number .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005__number .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-005__number .txt_c_sp_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005__number .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-005__ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005__ttl {
    font-size: 18px;
  }
}
#CONTENTS .flow-005__atend {
  padding: 0 20px 15px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005__atend {
    padding: 0 calc(4 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .arrow {
    padding-bottom: calc(5.3333333333 * var(--vw)) !important;
  }
}
#CONTENTS .arrow:before,
#CONTENTS .arrow:after {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .arrow:before,
  #CONTENTS .arrow:after {
    width: calc(3.7333333333 * var(--vw));
    height: calc(0.2666666667 * var(--vw));
    top: calc(-0.2666666667 * var(--vw));
  }
}
#CONTENTS .arrow:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
#CONTENTS .arrow:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
#CONTENTS .accordion-001 dl {
  border-bottom: 1px solid #002656;
  margin: inherit;
}
#CONTENTS .accordion-001 dl:first-of-type {
  border-top: 1px solid #002656;
}
#CONTENTS .accordion-001 dl dt {
  padding: 35px 48px 35px 0;
  cursor: pointer;
  position: relative;
  font-family: "Shippori Mincho", serif !important;
  font-size: 24px;
  font-weight: 700;
  color: #002656;
  margin: 10px 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-001 dl dt {
    padding: calc(4.6666666667 * var(--vw)) calc(6.4 * var(--vw)) calc(4.6666666667 * var(--vw)) 0;
    font-size: calc(5.3333333333 * var(--vw));
    margin: calc(1.3333333333 * var(--vw)) 0;
  }
}
#CONTENTS .accordion-001 dl dt::before {
  /*
  content: 'Q';
  position: absolute;
  left: 0;
  top: 23px;
  font-weight: bold;
  @include media(sp) {
  top: 16px;
  }
  */
}
#CONTENTS .accordion-001 dl dt.open .accordion-001__toggle::after {
  transform: rotate(0deg);
}
#CONTENTS .accordion-001 dl dd {
  display: none;
  margin-left: initial;
  padding: 0 48px 35px 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-001 dl dd {
    padding: 0 0 calc(9.3333333333 * var(--vw)) 0;
  }
}
#CONTENTS .accordion-001 dl dd::before {
  /* content: 'A';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  */
}
#CONTENTS .accordion-001__toggle {
  border: solid 1px #002656;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 30px;
  width: 32px;
  aspect-ratio: 1;
  padding: 6px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-001__toggle {
    top: calc(4.8 * var(--vw));
    width: calc(8.5333333333 * var(--vw));
    padding: calc(1.6 * var(--vw));
  }
}
#CONTENTS .accordion-001__toggle::before, #CONTENTS .accordion-001__toggle::after {
  transition: 0.3s ease;
  width: 35%;
  height: 1px;
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-001__toggle::before, #CONTENTS .accordion-001__toggle::after {
    top: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .accordion-001__toggle::after {
  transform: rotate(-90deg);
}
#CONTENTS .accordion-001 .acc-title__txt {
  font-family: "Shippori Mincho", serif !important;
  font-size: 20px;
  line-height: 36px;
  font-weight: 700;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-001 .acc-title__txt {
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}
#CONTENTS .accordion-001 .acc-day__txt {
  font-size: 16px;
  line-height: 28px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-001 .acc-day__txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .accordion-001 .acc-cont__txt {
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-001 .acc-cont__txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .accordion-003 dl {
  border-bottom: 1px solid #002656;
  margin: inherit;
}
#CONTENTS .accordion-003 dl:first-of-type {
  border-top: 1px solid #002656;
}
#CONTENTS .accordion-003 dl dt {
  padding: 35px 48px 35px 0;
  cursor: pointer;
  position: relative;
  font-family: "Shippori Mincho", serif !important;
  font-size: 24px;
  font-weight: 700;
  color: #002656;
  margin: 10px 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-003 dl dt {
    padding: calc(4.6666666667 * var(--vw)) calc(6.4 * var(--vw)) calc(4.6666666667 * var(--vw)) 0;
    font-size: calc(5.3333333333 * var(--vw));
    margin: calc(1.3333333333 * var(--vw)) 0;
  }
}
#CONTENTS .accordion-003 dl dt::before {
  /*
  content: 'Q';
  position: absolute;
  left: 0;
  top: 23px;
  font-weight: bold;
  @include media(sp) {
  top: 16px;
  }
  */
}
#CONTENTS .accordion-003 dl dt.open .accordion-003__toggle::after {
  transform: rotate(0deg);
}
#CONTENTS .accordion-003 dl dd {
  display: none;
  margin-left: initial;
  position: relative;
}
#CONTENTS .accordion-003 dl dd::before {
  /* content: 'A';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  */
}
#CONTENTS .accordion-003__toggle {
  border: solid 1px #002656;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 30px;
  width: 32px;
  aspect-ratio: 1;
  padding: 6px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-003__toggle {
    top: calc(4.8 * var(--vw));
    width: calc(8.5333333333 * var(--vw));
    padding: calc(1.6 * var(--vw));
  }
}
#CONTENTS .accordion-003__toggle::before, #CONTENTS .accordion-003__toggle::after {
  transition: 0.3s ease;
  width: 35%;
  height: 1px;
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-003__toggle::before, #CONTENTS .accordion-003__toggle::after {
    top: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .accordion-003__toggle::after {
  transform: rotate(-90deg);
}
#CONTENTS .accordion-003 .acc-title__txt {
  font-family: "Shippori Mincho", serif !important;
  font-size: 20px;
  line-height: 36px;
  font-weight: 700;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-003 .acc-title__txt {
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}
#CONTENTS .accordion-003 .acc-day__txt {
  font-size: 16px;
  line-height: 28px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-003 .acc-day__txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .accordion-003 .acc-cont__txt {
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-003 .acc-cont__txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .accordion-003 .acc-cont__box {
  width: 100%;
  /*.cb_left{
      width: 17%;
      font-size: getvwPc(20);
      font-family: $font-serif;
      font-weight: 600;
      line-height: getvwPc(36);
      color: $dark_blue2;
      @include media(sp) {
          width: 100%;
          font-size: getvw(40);
          line-height: getvw(72);
      }
  }*/
}
#CONTENTS .accordion-003 .acc-cont__box .cb_right {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: solid 1px #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-003 .acc-cont__box .cb_right {
    width: 100%;
  }
}
#CONTENTS .accordion-003 .acc-cont__box .cb_right_l {
  width: 18%;
  padding: 22px 0 20px;
  font-size: 22px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 700;
  line-height: 22px;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-003 .acc-cont__box .cb_right_l {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(0.6666666667 * var(--vw));
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}
#CONTENTS .accordion-003 .acc-cont__box .cb_right_r {
  width: 82%;
  padding: 22px 0 20px;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-003 .acc-cont__box .cb_right_r {
    width: 100%;
    padding: 0 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .accordion-003 .acc-cont__box .cb_right_l_1 {
  width: 0%;
}
#CONTENTS .accordion-003 .acc-cont__box .cb_right_r_1 {
  width: 100%;
  padding: 22px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-003 .acc-cont__box .cb_right_r_1 {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(5.3333333333 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .foot-mypage {
  margin-top: 150px !important;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .foot-mypage {
    margin-top: calc(26.6666666667 * var(--vw)) !important;
  }
}
#CONTENTS .foot-mypage__imgtxt {
  text-align: center;
  order: 3;
}
#CONTENTS .foot-mypage__imgtxt img {
  width: 1280px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .foot-mypage__imgtxt {
    order: 1;
  }
}
#CONTENTS .foot-mypage__title {
  font-size: 36px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  color: #002656;
  order: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .foot-mypage__title {
    font-weight: 700;
    font-size: calc(5.3333333333 * var(--vw));
    order: 2;
    margin-top: calc(24 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn__single {
  width: 245px;
  margin-top: 25px !important;
  display: flex;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__single {
    width: calc(52.6666666667 * var(--vw));
    margin-top: calc(4 * var(--vw)) !important;
    justify-content: center;
  }
}
#CONTENTS .mypage-btn__single-210 {
  position: relative;
  letter-spacing: 0.5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  transition: background-image 0.7s ease;
  background-image: url("../img/contents/more_btn_pc.svg"), url("../img/contents/more_btn_hover.svg");
  background-size: 100%, 0 0;
  text-align: center;
  text-decoration: none;
}
#CONTENTS .mypage-btn__single-210:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__single-210 {
    width: calc(52.6666666667 * var(--vw));
    height: calc(12 * var(--vw));
    font-size: calc(3.2 * var(--vw));
    background-image: url(../img/contents/more_btn_sp.png);
    background-size: 100%;
    padding-bottom: calc(0.5333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn__single-210::after {
  content: ".";
  color: #fff;
  position: absolute;
  top: -2px;
  right: 17px;
  font-size: 40px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__single-210::after {
    top: -13%;
    right: calc(3.4666666667 * var(--vw));
  }
}
#CONTENTS .mypage-btn__single-210:hover::after {
  animation: blinkBorder 0.6s ease infinite alternate;
}
#CONTENTS .mypage-btn__single-210_fd {
  position: relative;
  letter-spacing: 0.5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-align: center;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__single-210_fd {
    width: calc(52.6666666667 * var(--vw));
    height: calc(12 * var(--vw));
    font-size: calc(3.2 * var(--vw));
    padding-bottom: calc(0.5333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn__single-210_fd::after {
  content: ".";
  color: #fff;
  position: absolute;
  top: -6px;
  right: 17px;
  font-size: 50px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__single-210_fd::after {
    top: -23%;
    right: calc(3.4666666667 * var(--vw));
    font-size: calc(13.3333333333 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  #CONTENTS .mypage-btn__single-210_fd:hover::after {
    animation: blinkBorder 0.36s ease infinite alternate;
  }
}
#CONTENTS .mypage-btn__single-210_fd img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn__single-210_fd img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn__single-210_fd:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__single-210_fd:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__single-210_fd:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn__single .ab-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-decoration: none;
  z-index: 10;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__single .ab-txt {
    font-size: calc(3.2 * var(--vw));
    left: calc(50% + 12px);
    width: 100%;
  }
}
#CONTENTS .mypage-btn__single .ab-txt2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-decoration: none;
  z-index: 10;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__single .ab-txt2 {
    top: 45%;
    font-size: calc(3.2 * var(--vw));
    width: 100%;
  }
}
#CONTENTS .mypage-btn__single-210outer {
  position: relative;
  letter-spacing: 0.5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  transition: background-image 0.7s ease;
  background-image: url("../img/contents/more_btn_pc.svg"), url("../img/contents/more_btn_hover.svg");
  background-size: cover, 0 0;
  text-align: center;
  text-decoration: none;
  padding: 15px 0;
}
#CONTENTS .mypage-btn__single-210outer:hover {
  background-size: 0 0, cover;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__single-210outer {
    width: calc(52.6666666667 * var(--vw));
    height: calc(12 * var(--vw));
    font-size: calc(3.2 * var(--vw));
    background-image: url(../img/contents/more_btn_sp.png);
    background-size: 100%;
    padding-bottom: calc(0.5333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn__single-210outer::after {
  content: "";
  position: absolute;
  right: 18px;
  display: inline-block;
  width: 13px;
  height: 11px;
  background-image: url("../img/contents/link_icon.svg");
  background-position: center;
  background-size: contain;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__single-210outer::after {
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
    right: calc(4 * var(--vw));
  }
}
#CONTENTS .mypage-btn__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 60px;
  margin: 50px 0 160px !important;
  order: 2;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box {
    order: 3;
    gap: calc(8 * var(--vw));
    margin: calc(5.3333333333 * var(--vw)) 0 calc(26.6666666667 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn__box_left {
  position: relative;
  width: 415px;
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  transition: background-image 0.7s ease;
  background-image: url("../img/contents/mypage_login_btn_pc.svg"), url("../img/contents/mypage_login_btn_hover.svg");
  background-size: 100%, 0 0;
  text-align: center;
  text-decoration: none;
}
#CONTENTS .mypage-btn__box_left:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_left {
    width: calc(85.0666666667 * var(--vw));
    height: calc(15.2 * var(--vw));
    font-size: calc(4 * var(--vw));
    background-image: url(../img/contents/mypage_login_btn_sp.svg);
    background-size: 100%;
  }
}
#CONTENTS .mypage-btn__box_left::after {
  content: "";
  position: absolute;
  right: 25px;
  display: inline-block;
  width: 13px;
  height: 11px;
  background-image: url("../img/top/link_icon.svg");
  background-position: center;
  background-size: contain;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_left::after {
    right: calc(5.3333333333 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn__box_left_fd {
  position: relative;
  width: 415px;
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-align: center;
  text-decoration: none;
}
#CONTENTS .mypage-btn__box_left_fd:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_left_fd {
    width: calc(85.0666666667 * var(--vw));
    height: calc(15.2 * var(--vw));
    font-size: calc(4 * var(--vw));
  }
}
#CONTENTS .mypage-btn__box_left_fd::after {
  content: "";
  position: absolute;
  right: 25px;
  display: inline-block;
  width: 13px;
  height: 11px;
  background-image: url("../img/top/link_icon.svg");
  background-position: center;
  background-size: contain;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_left_fd::after {
    right: calc(5.3333333333 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn__box_left_fd img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn__box_left_fd img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn__box_left_fd:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_left_fd:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_left_fd:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn__box .ab-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-decoration: none;
  z-index: 10;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box .ab-txt {
    font-size: calc(3.2 * var(--vw));
    left: calc(50% + 12px);
    width: 100%;
  }
}
#CONTENTS .mypage-btn__box .ab-txt2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-decoration: none;
  z-index: 10;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box .ab-txt2 {
    top: 50%;
    font-size: calc(4 * var(--vw));
    width: 100%;
  }
}
#CONTENTS .mypage-btn__box_right {
  position: relative;
  width: 415px;
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  transition: background-image 0.6s ease;
  background-image: url("../img/contents/mypage_signin_btn_pc.svg"), url("../img/contents/mypage_signin_btn_hover.svg");
  background-size: 100%, 0 0;
  text-align: center;
  text-decoration: none;
  /*
  &::after{
      content: "●";
      color: #fff;
      position: absolute;
      top: 37%;
      right: getvwPc(20);
      font-size: getvwPc(10);
      @include media(sp) {
          top: 36%;
      }                    
  }
  */
}
#CONTENTS .mypage-btn__box_right:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_right {
    width: calc(85.0666666667 * var(--vw));
    height: calc(15.2 * var(--vw));
    font-size: calc(4 * var(--vw));
    background-image: url(../img/contents/mypage_signin_btn_sp.svg);
    background-size: 100%;
  }
}
#CONTENTS .mypage-btn__box_right::after {
  content: "";
  position: absolute;
  right: 25px;
  display: inline-block;
  width: 13px;
  height: 11px;
  background-image: url("../img/top/link_icon.svg");
  background-position: center;
  background-size: contain;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_right::after {
    right: calc(5.3333333333 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn__box_right_fd {
  position: relative;
  width: 415px;
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-align: center;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_right_fd {
    width: calc(85.0666666667 * var(--vw));
    height: calc(15.2 * var(--vw));
    font-size: calc(4 * var(--vw));
  }
}
#CONTENTS .mypage-btn__box_right_fd::after {
  content: "";
  position: absolute;
  right: 25px;
  display: inline-block;
  width: 13px;
  height: 11px;
  background-image: url("../img/top/link_icon.svg");
  background-position: center;
  background-size: contain;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_right_fd::after {
    right: calc(5.3333333333 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn__box_right_fd img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn__box_right_fd img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn__box_right_fd:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_right_fd:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_right_fd:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn__box .ab-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-decoration: none;
  z-index: 10;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box .ab-txt {
    font-size: calc(3.2 * var(--vw));
    left: calc(50% + 12px);
    width: 100%;
  }
}
#CONTENTS .mypage-btn__box .ab-txt2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
  text-decoration: none;
  z-index: 10;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box .ab-txt2 {
    top: 48%;
    font-size: calc(4 * var(--vw));
    width: 100%;
  }
}
#CONTENTS .mypage-btn__cobox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 415px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__cobox {
    width: 100%;
  }
}
#CONTENTS .mypage-btn__cobox .txt {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  margin-top: 16px !important;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__cobox .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    margin-top: calc(3.7333333333 * var(--vw)) !important;
  }
}
#CONTENTS .btnboxs {
  order: 2;
}
@keyframes blinkBorder {
  0% {
    filter: blur(0);
  }
  100% {
    filter: blur(2px);
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .btn-center {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}/*# sourceMappingURL=style-mc.css.map */