@charset "UTF-8";
.fc_color1 {
  color: rgba(255, 255, 255, 0.5);
}

.fc_color2 {
  color: #7C7C7C;
}

.fc_color_fb {
  color: #000AC5;
}

: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: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ 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;
}

.bg-black {
  background-color: #000;
}

.w100 {
  width: 100% !important;
}

@media only screen and (min-width: 768px) {
  .bred-link {
    font-size: 12px;
    color: #fff;
    padding: 12px 0 12px 45px;
  }
  .bred-link a {
    color: #2051ff;
  }
  .bred-link .slash {
    color: #bbb;
  }
}
@media only screen and (max-width: 767px) {
  .bred-link {
    display: none;
  }
}

.text_blue {
  color: blue !important;
}

.link_blue4 {
  color: #000AC5;
}

.all-sch-img {
  width: 100%;
}

.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;
  }
}

@media only screen and (min-width: 768px) {
  .sp_i {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp_i {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media only screen and (min-width: 768px) {
  .sp_i2 {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp_i2 {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media only screen and (min-width: 768px) {
  .sp_i3 {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp_i3 {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.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 40px;
}
@media only screen and (max-width: 767px) {
  .inner {
    padding: 0 calc(4.2666666667 * 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;
}

.link-blue {
  color: blue !important;
  text-decoration: underline;
}

.link-blue3 {
  color: #2051ff;
  text-decoration: underline;
}

.link-blue4 {
  color: #000AC5;
  text-decoration: underline;
}

.outer-link {
  position: relative;
  padding-right: 23px;
}
@media only screen and (max-width: 767px) {
  .outer-link {
    padding-right: calc(6.1333333333 * var(--vw));
  }
}

.link-outer-mark::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  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) {
  .link-outer-mark::after {
    right: calc(0.8 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}

.link-outer-mark2::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  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) {
  .link-outer-mark2::after {
    top: calc(6.6666666667 * var(--vw));
    right: calc(0.8 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}

.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;
  }
}

.font-regular {
  font-weight: 400 !important;
}

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

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

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

.font-extraBold {
  font-weight: 800 !important;
}

.num-lsp {
  letter-spacing: -3.24px;
}

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

.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));
  }
}

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

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

.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_lh25 {
  font-size: 16px;
  line-height: 25px;
}
@media only screen and (max-width: 767px) {
  .fnt16sp14_lh25 {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6 * var(--vw));
    letter-spacing: 0.56px;
  }
}

.fnt16_lh {
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .fnt16_lh {
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(7.4666666667 * 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));
    letter-spacing: 0.56px;
  }
}

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

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

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

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

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

.fnt18_sm_l28_b4 {
  font-family: "Shippori Mincho", serif !important;
  color: #000AC5;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.72px;
}
@media only screen and (max-width: 767px) {
  .fnt18_sm_l28_b4 {
    font-size: calc(4.8 * var(--vw));
    font-weight: 600;
    line-height: calc(7.4666666667 * var(--vw));
    letter-spacing: 0.72px;
  }
}

.fnt18lh {
  font-size: 18px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .fnt18lh {
    font-size: calc(4.8 * var(--vw));
    line-height: calc(7.4666666667 * 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));
  }
}

.fnt24 {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .fnt24 {
    font-size: calc(6.4 * 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));
  }
}

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

.fnt24sp18 {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .fnt24sp18 {
    font-size: calc(4.8 * 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));
  }
}

.fnt40sp24 {
  font-size: 40px !important;
}
@media only screen and (max-width: 767px) {
  .fnt40sp24 {
    font-size: calc(6.4 * var(--vw)) !important;
  }
}

.spe-ls6 {
  letter-spacing: -6px !important;
}
@media only screen and (max-width: 767px) {
  .spe-ls6 {
    letter-spacing: calc(-1.6 * var(--vw)) !important;
  }
}

.fc_color_fb18 {
  color: #000AC5;
  font-size: 18px !important;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .fc_color_fb18 {
    font-size: calc(4.8 * var(--vw)) !important;
    margin-top: calc(3.7333333333 * var(--vw));
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}

.Rmks-txt14 {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.56px;
}
@media only screen and (max-width: 767px) {
  .Rmks-txt14 {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(5.8666666667 * var(--vw));
    letter-spacing: 0.56px;
  }
}

.Rmks-txt14sp12ls {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.56px;
}
@media only screen and (max-width: 767px) {
  .Rmks-txt14sp12ls {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(5.0666666667 * var(--vw));
    letter-spacing: -0.48px;
  }
}

.Rmks-txt14sp12lsh {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.56px;
}
@media only screen and (max-width: 767px) {
  .Rmks-txt14sp12lsh {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(5.0666666667 * var(--vw));
    letter-spacing: -0.24px;
  }
}

.fnt14ls {
  letter-spacing: -0.28px;
}
@media only screen and (max-width: 767px) {
  .fnt14ls {
    letter-spacing: -0.28px;
  }
}

.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;
  }
}

.ind-sippori {
  text-indent: -0.3em;
  padding-left: 0.5em;
  margin-left: -10px;
}

.ind-head {
  text-indent: -0.6em;
  padding-left: 0.8em;
  margin-left: -10px;
}

.ind-head-ilb {
  text-indent: -0.6em;
  padding-left: 0.8em;
  margin-left: -10px;
  display: inline-block;
}

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

.ind2_dib {
  text-indent: -2em;
  padding-left: 2em;
  display: inline-block;
}

.ind2_lp {
  text-indent: -2em;
  padding-left: 2em;
  letter-spacing: 1.19px !important;
}
@media only screen and (max-width: 767px) {
  .ind2_lp {
    letter-spacing: 1.02px !important;
  }
}

.ind3_lp {
  text-indent: -3.2em;
  padding-left: 3em;
  letter-spacing: 1.19px !important;
}
@media only screen and (max-width: 767px) {
  .ind3_lp {
    letter-spacing: 1.02px !important;
  }
}

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

.ind3_dib {
  text-indent: -2.6em;
  padding-left: 3em;
  margin-left: -10px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .ind3_dib {
    margin-left: calc(-2.6666666667 * var(--vw));
  }
}

.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) {
  .ls10sp4 {
    letter-spacing: 0.4px;
  }
}

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

.ls16 {
  letter-spacing: 0.64px;
}
@media only screen and (max-width: 767px) {
  .ls16 {
    letter-spacing: 1.28px;
  }
}

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

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

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

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

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

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

.color_white {
  color: #fff;
}

.color_red {
  color: #C31B3A;
}

.color_blue {
  color: #000AC5;
}

.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));
  }
}

.bdr4 {
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  .bdr4 {
    border-radius: calc(1.0666666667 * var(--vw));
  }
}

.font-set-palt {
  font-feature-settings: "palt";
}

.font-set-palt-ib {
  display: inline-block;
  font-feature-settings: "palt";
}

@media only screen and (max-width: 767px) {
  .font-set-palt-ibsp {
    display: inline-block;
    font-feature-settings: "palt";
  }
}

.font-set-palt-sippori {
  margin-left: -10px;
}
@media only screen and (max-width: 767px) {
  .font-set-palt-sippori {
    margin-left: calc(-2.6666666667 * var(--vw));
  }
}

.font-set-palt-sippori1 {
  margin-left: -8px;
}
@media only screen and (max-width: 767px) {
  .font-set-palt-sippori1 {
    margin-left: calc(-2.1333333333 * var(--vw));
  }
}

@media only screen and (min-width: 768px) {
  .font-set-palt-sippori2 {
    margin-left: -10px;
  }
}

@media only screen and (max-width: 767px) {
  .font-set-palt-sippori-sp {
    margin-left: calc(-2.6666666667 * var(--vw));
  }
}

@media only screen and (max-width: 767px) {
  .wb-sponly {
    word-break: break-all;
  }
}

.p-0-3 {
  padding: 0 3px;
}
@media only screen and (max-width: 767px) {
  .p-0-3 {
    padding: 0 calc(0.8 * var(--vw));
  }
}

.p-5 {
  padding: 5px;
}
@media only screen and (max-width: 767px) {
  .p-5 {
    padding: calc(1.3333333333 * var(--vw));
  }
}

@media only screen and (max-width: 767px) {
  .p-24tb {
    padding-top: calc(6.4 * var(--vw)) !important;
    padding-bottom: calc(6.4 * var(--vw)) !important;
  }
}

.p-25 {
  padding: 25px;
}
@media only screen and (max-width: 767px) {
  .p-25 {
    padding: calc(6.6666666667 * var(--vw));
  }
}

.p-25-17sp {
  padding: 25px;
}
@media only screen and (max-width: 767px) {
  .p-25-17sp {
    padding: calc(6.6666666667 * var(--vw)) calc(4.5333333333 * var(--vw));
  }
}

.p-10-12-mb-1 {
  padding: 10px 12px;
}

@media only screen and (max-width: 767px) {
  .p-10-12-mb-1sp {
    padding: calc(2.6666666667 * var(--vw)) calc(3.2 * var(--vw));
  }
}

.p-12-12-mb-1 {
  padding: 12px 12px;
}

@media only screen and (max-width: 767px) {
  .p-16-18-mb-1sp {
    padding: calc(4.2666666667 * var(--vw)) calc(4.8 * var(--vw));
  }
}

@media only screen and (max-width: 767px) {
  .p-40-14-sp {
    padding: calc(10.6666666667 * var(--vw)) calc(3.7333333333 * var(--vw)) !important;
  }
}

@media only screen and (max-width: 767px) {
  .p-16tb-sp {
    padding-top: calc(4.2666666667 * var(--vw)) !important;
    padding-bottom: calc(4.2666666667 * var(--vw)) !important;
  }
}

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

@media only screen and (max-width: 767px) {
  .pt-init {
    padding-top: initial !important;
  }
}

.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-24 {
  padding-top: 24px;
}
@media only screen and (max-width: 767px) {
  .pt-24 {
    padding-top: calc(6.4 * var(--vw));
  }
}

@media only screen and (max-width: 767px) {
  .pt-16sp {
    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) {
  .pl-14sp {
    padding-left: calc(3.7333333333 * 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));
  }
}

.pt-50sp32 {
  padding-top: 42px !important;
}
@media only screen and (max-width: 767px) {
  .pt-50sp32 {
    padding-top: calc(8.5333333333 * var(--vw)) !important;
  }
}

.pb-50 {
  padding-bottom: 42px !important;
}
@media only screen and (max-width: 767px) {
  .pb-50 {
    padding-bottom: calc(11.2 * var(--vw)) !important;
  }
}

.pb-15sp0 {
  padding-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .pb-15sp0 {
    padding-bottom: 0;
  }
}

.pb-35sp0 {
  padding-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .pb-35sp0 {
    padding-bottom: 0;
  }
}

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

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

.pb-35sp30 {
  padding-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .pb-35sp30 {
    padding-bottom: calc(8 * 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;
  }
}

@media only screen and (min-width: 768px) {
  .pr-35pc {
    padding-right: 35px !important;
  }
}

.mt-init {
  margin-top: initial !important;
}

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 767px) {
  .mt-30sp {
    margin-top: calc(8 * var(--vw)) !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;
  }
}

.m-15-0 {
  margin: 15px 0;
}
@media only screen and (max-width: 767px) {
  .m-15-0 {
    margin: calc(4 * var(--vw)) 0;
  }
}

@media only screen and (max-width: 767px) {
  .m-15-20sp {
    margin: calc(4 * var(--vw)) 0 calc(8 * var(--vw));
  }
}

@media only screen and (max-width: 767px) {
  .m-15-30sp {
    margin: calc(4 * var(--vw)) 0 calc(5.3333333333 * var(--vw));
  }
}

.m-30-0 {
  margin: 30px 0;
}
@media only screen and (max-width: 767px) {
  .m-30-0 {
    margin: calc(8 * var(--vw)) 0;
  }
}

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

.m-24-16 {
  margin-top: 24px !important;
  margin-bottom: 16px !important;
}
@media only screen and (max-width: 767px) {
  .m-24-16 {
    margin-top: calc(4.2666666667 * var(--vw)) !important;
    margin-bottom: calc(4.2666666667 * var(--vw)) !important;
  }
}

@media only screen and (max-width: 767px) {
  .m-24-16sp {
    margin-top: calc(6.4 * var(--vw)) !important;
    margin-bottom: calc(4.2666666667 * var(--vw)) !important;
  }
}

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

@media only screen and (max-width: 767px) {
  .m-24-24sp {
    margin-top: calc(6.4 * var(--vw)) !important;
    margin-bottom: calc(6.4 * var(--vw)) !important;
  }
}

.m-32-0-10 {
  margin: 32px 0 10px;
}
@media only screen and (max-width: 767px) {
  .m-32-0-10 {
    margin: calc(8.5333333333 * var(--vw)) 0 calc(2.6666666667 * var(--vw));
  }
}

.m-32-0-16 {
  margin: 32px 0 16px;
}
@media only screen and (max-width: 767px) {
  .m-32-0-16 {
    margin: calc(8.5333333333 * var(--vw)) 0 calc(4.2666666667 * var(--vw));
  }
}

.m-32-0-24 {
  margin: 32px 0 24px;
}
@media only screen and (max-width: 767px) {
  .m-32-0-24 {
    margin: calc(8.5333333333 * var(--vw)) 0 calc(6.4 * var(--vw));
  }
}

.m-32-0 {
  margin: 32px 0;
}
@media only screen and (max-width: 767px) {
  .m-32-0 {
    margin: calc(8.5333333333 * var(--vw)) 0;
  }
}

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

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

.mb-20sp14 {
  margin-bottom: 20px !important;
}
@media only screen and (max-width: 767px) {
  .mb-20sp14 {
    margin-bottom: calc(3.7333333333 * 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;
  }
}

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

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

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

@media only screen and (min-width: 768px) {
  .mb-32 {
    margin-bottom: 15px !important;
  }
}

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

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

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

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

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

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

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

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

@media only screen and (min-width: 768px) {
  .mt-40pc {
    margin-top: 40px !important;
  }
}

.mt-45 {
  margin-top: 45px !important;
}
@media only screen and (max-width: 767px) {
  .mt-45 {
    margin-top: calc(12 * 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-52sp20 {
  margin-top: 52px !important;
}
@media only screen and (max-width: 767px) {
  .mt-52sp20 {
    margin-top: calc(5.3333333333 * 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-64sp60 {
  margin-top: 64px !important;
}
@media only screen and (max-width: 767px) {
  .mt-64sp60 {
    margin-top: calc(16 * var(--vw)) !important;
  }
}

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

.mt-90sp40 {
  margin-top: 70px !important;
}
@media only screen and (max-width: 767px) {
  .mt-90sp40 {
    margin-top: calc(10.6666666667 * 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-70sp55 {
  margin-top: 70px !important;
}
@media only screen and (max-width: 767px) {
  .mt-70sp55 {
    margin-top: calc(14.6666666667 * 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-80sp55 {
  margin-top: 80px !important;
}
@media only screen and (max-width: 767px) {
  .mt-80sp55 {
    margin-top: calc(14.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-23sp28 {
  padding-top: 23px;
}
@media only screen and (max-width: 767px) {
  .pt-23sp28 {
    padding-top: calc(3.7333333333 * var(--vw));
  }
}

.pt-100sp93 {
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .pt-100sp93 {
    padding-top: calc(12.4 * 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-190sp45 {
  padding-top: 190px;
}
@media only screen and (max-width: 767px) {
  .pt-190sp45 {
    padding-top: calc(12 * var(--vw));
  }
}

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

@media only screen and (max-width: 767px) {
  .table-scroll::-webkit-scrollbar {
    width: calc(1.3333333333 * var(--vw));
    height: calc(1.6 * var(--vw));
  }
}

@media only screen and (max-width: 767px) {
  .table-scroll::-webkit-scrollbar-track {
    background: #E6EAF0;
  }
}

@media only screen and (max-width: 767px) {
  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 25px !important;
    background: #000AC5;
  }
}

@media only screen and (max-width: 767px) {
  .table-scroll-w::-webkit-scrollbar {
    width: calc(1.3333333333 * var(--vw));
    height: calc(1.6 * var(--vw));
  }
}

@media only screen and (max-width: 767px) {
  .table-scroll-w::-webkit-scrollbar-track {
    background: #fff;
  }
}

@media only screen and (max-width: 767px) {
  .table-scroll-w::-webkit-scrollbar-thumb {
    border-radius: 25px !important;
    background: #000AC5;
  }
}

.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;
  }
}

.group-footer__copyArea {
  border-top: solid 1px rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 767px) {
  .group-footer__copyArea {
    padding-top: calc(5.3333333333 * 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));
  }
}

.line_blue1 {
  display: flex;
  flex-direction: row;
  height: 1px;
  width: 100%;
}
.line_blue1__left {
  border-top: solid 1px #000AC5;
  width: 7.1%;
}
@media only screen and (max-width: 767px) {
  .line_blue1__left {
    width: 17%;
  }
}
.line_blue1__right {
  border-top: solid 1px #ADBCD6;
  width: 92.9%;
}
@media only screen and (max-width: 767px) {
  .line_blue1__right {
    width: 83%;
  }
}

#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(14.6666666667 * 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 .info-top {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 28px;
  color: #C31B3A;
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .info-top {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
    width: calc(85.3333333333 * var(--vw));
  }
}
#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: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ 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: 180px !important;
}
@media only screen and (max-width: 767px) {
  #TOP .wrap .info-box {
    margin-top: calc(24 * 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: center;
  }
}
@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__single-210acc_fd-ft {
  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-ft {
    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-ft::after {
  content: ".";
  color: #fff;
  position: absolute;
  top: -37px;
  right: 17px;
  font-size: 50px;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210acc_fd-ft::after {
    top: -95%;
    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-ft:hover::after {
    animation: blinkBorder 0.36s ease infinite alternate;
  }
}
#TOP .mypage-btn__single-210acc_fd-ft img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#TOP .mypage-btn__single-210acc_fd-ft img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#TOP .mypage-btn__single-210acc_fd-ft:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210acc_fd-ft:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .mypage-btn__single-210acc_fd-ft: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_frame2 {
  width: 100%;
  background-color: #E6EAF0;
  margin: 0 auto 0;
  border-radius: 4px;
  padding: 100px 96px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 {
    margin: 0 auto 0;
    padding: calc(8.5333333333 * var(--vw)) calc(5.8666666667 * var(--vw));
    border-radius: calc(1.0666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box {
  background-color: #fff;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box {
    border-radius: calc(1.0666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll {
    display: block;
    overflow-x: scroll;
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll table {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll table {
    table-layout: fixed;
    margin-bottom: calc(4.2666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll table, #CONTENTS .inner_frame2 .contents_box .table-scroll td, #CONTENTS .inner_frame2 .contents_box .table-scroll th {
  border: 1px solid #E6EAF0;
  border-collapse: collapse;
  font-size: 14px;
  font-weight: 600 !important;
  line-height: 22.4px;
  letter-spacing: 0.56px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll table, #CONTENTS .inner_frame2 .contents_box .table-scroll td, #CONTENTS .inner_frame2 .contents_box .table-scroll th {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(5.9733333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll td, #CONTENTS .inner_frame2 .contents_box .table-scroll th {
  padding: 8px 10px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll td, #CONTENTS .inner_frame2 .contents_box .table-scroll th {
    padding: calc(2.1333333333 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll th {
  background-color: #66A1FF;
  color: #fff;
}
#CONTENTS .inner_frame2 .contents_box .table-scroll .th {
  width: 119px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll .th {
    padding-left: calc(2.6666666667 * var(--vw)) !important;
    width: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll .th1 {
  width: 209px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll .th1 {
    width: calc(55.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll td {
  height: 160px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll td {
    height: calc(42.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll .td {
  text-align: center;
  background-color: #66A1FF;
  color: #fff;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll .td {
    font-size: calc(3.7333333333 * var(--vw));
    width: calc(55.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll .td1 {
  width: 209px;
  height: 119px;
  color: #000AC5;
  background-color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll .td1 {
    width: calc(55.7333333333 * var(--vw));
    height: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll .td1-l {
  text-align: left !important;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box .table-scroll .td1-m {
  background-color: #fff;
  text-align: center;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box .table-scroll .td2 {
  width: 209px;
  height: 119px;
  color: #000AC5;
  background-color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll .td2 {
    width: calc(55.7333333333 * var(--vw));
    height: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll .td2-l {
  text-align: left !important;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box .table-scroll .td2-m {
  background-color: #fff;
  text-align: center;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box .table-scroll-w {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll-w {
    display: block;
    overflow-x: scroll;
    background-color: #E6EAF0;
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll-w table {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll-w table {
    table-layout: fixed;
    margin-bottom: calc(4.2666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll-w table, #CONTENTS .inner_frame2 .contents_box .table-scroll-w td, #CONTENTS .inner_frame2 .contents_box .table-scroll-w th {
  border: 1px solid #E6EAF0;
  border-collapse: collapse;
  font-size: 14px;
  font-weight: 600 !important;
  line-height: 22.4px;
  letter-spacing: 0.56px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll-w table, #CONTENTS .inner_frame2 .contents_box .table-scroll-w td, #CONTENTS .inner_frame2 .contents_box .table-scroll-w th {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(5.9733333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll-w td, #CONTENTS .inner_frame2 .contents_box .table-scroll-w th {
  padding: 8px 10px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll-w td, #CONTENTS .inner_frame2 .contents_box .table-scroll-w th {
    padding: calc(2.1333333333 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll-w th {
  background-color: #66A1FF;
  color: #fff;
}
#CONTENTS .inner_frame2 .contents_box .table-scroll-w .th {
  width: 119px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll-w .th {
    padding-left: calc(2.6666666667 * var(--vw)) !important;
    width: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll-w .th1 {
  width: 209px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll-w .th1 {
    width: calc(55.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll-w td {
  height: 160px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll-w td {
    height: calc(42.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll-w .td {
  text-align: center;
  background-color: #66A1FF;
  color: #fff;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll-w .td {
    font-size: calc(3.7333333333 * var(--vw));
    width: calc(55.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll-w .td1 {
  width: 209px;
  height: 119px;
  color: #000AC5;
  background-color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll-w .td1 {
    width: calc(55.7333333333 * var(--vw));
    height: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll-w .td1-l {
  background-color: #fff;
  text-align: left !important;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box .table-scroll-w .td1-m {
  background-color: #fff;
  text-align: center;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box .table-scroll-w .td2 {
  width: 209px;
  height: 119px;
  color: #000AC5;
  background-color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box .table-scroll-w .td2 {
    width: calc(55.7333333333 * var(--vw));
    height: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box .table-scroll-w .td2-l {
  background-color: #fff;
  text-align: left !important;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box .table-scroll-w .td2-m {
  background-color: #fff;
  text-align: center;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box2 {
  font-size: 16px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 {
    font-size: calc(4.2666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box2 .sub-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .sub-box {
    justify-content: center;
  }
}
#CONTENTS .inner_frame2 .contents_box2 .sub-box-ttl {
  text-align: left;
  line-height: 28.8px;
  letter-spacing: 0.72px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .sub-box-ttl {
    width: 100%;
    text-align: left;
    line-height: calc(7.68 * var(--vw));
    letter-spacing: 0.72px;
  }
}
#CONTENTS .inner_frame2 .contents_box2 .sub-box-btn {
  width: 235px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .sub-box-btn {
    margin-top: calc(4.2666666667 * var(--vw)) !important;
    width: calc(62.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box2 .sub-ttl {
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.96px;
  line-height: 38.4px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .sub-ttl {
    font-size: calc(4.8 * var(--vw));
    letter-spacing: -0.72px;
    line-height: calc(7.68 * var(--vw));
    font-weight: 600;
  }
}
#CONTENTS .inner_frame2 .contents_box2 .sub-ttl_18 {
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -1.08px;
  line-height: 28.8px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .sub-ttl_18 {
    font-size: calc(4.2666666667 * var(--vw));
    letter-spacing: -0.64px;
    line-height: calc(6.8266666667 * var(--vw));
    font-weight: 600;
  }
}
#CONTENTS .inner_frame2 .contents_box2 .all-sch-img {
  width: 100%;
}
#CONTENTS .inner_frame2 .contents_box2 .btn-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .btn-box {
    gap: calc(3.2 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box2 .btn-box .cobox {
  width: 32.5%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .btn-box .cobox {
    width: 100%;
  }
}
#CONTENTS .inner_frame2 .contents_box2 .bg_blue1__box {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  margin-bottom: 1px;
  display: flex;
  align-items: center;
  background-color: #66A1FF;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .bg_blue1__box {
    font-size: calc(3.7333333333 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) calc(3.2 * var(--vw));
    margin-bottom: calc(0.2666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box2 .cb_right_1 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  margin-bottom: 1px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .cb_right_1 {
    width: 100%;
    margin-bottom: calc(0.2666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box2 .cb_right_1_l {
  width: 16.6%;
  font-size: 16px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .cb_right_1_l {
    width: 100%;
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box2 .cb_right_1_r {
  width: 83.4%;
  font-size: 16px;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .cb_right_1_r {
    width: 100%;
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box2 .cb_right_1_l_1 {
  width: 0%;
}
#CONTENTS .inner_frame2 .contents_box2 .cb_right_1_r_1 {
  width: 100%;
  padding: 25px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .cb_right_1_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_frame2 .contents_box2 .table-scroll {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .table-scroll {
    display: block;
    overflow-x: scroll;
  }
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll table {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .table-scroll table {
    width: 300%;
    table-layout: fixed;
    margin-bottom: calc(4.2666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll table, #CONTENTS .inner_frame2 .contents_box2 .table-scroll td, #CONTENTS .inner_frame2 .contents_box2 .table-scroll th {
  border-collapse: collapse;
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll .td {
  text-align: left;
  padding-left: 15px !important;
  background-color: #66A1FF;
  color: #fff;
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .table-scroll .td {
    padding-left: calc(4 * var(--vw)) !important;
    font-size: calc(3.2 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll .td1 {
  color: #2636bc;
  background-color: #E4EBF4;
  text-align: center;
  font-weight: 500 !important;
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll .td1-m {
  background-color: #E4EBF4;
  text-align: center;
  color: #ADBCD6;
  font-weight: 500 !important;
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll .td2 {
  color: #2636bc;
  background-color: #ECF0F6;
  text-align: center;
  font-weight: 500 !important;
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll .td2-m {
  background-color: #ECF0F6;
  text-align: center;
  color: #ADBCD6;
  font-weight: 500 !important;
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll::-webkit-scrollbar {
  display: block;
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll-w {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .table-scroll-w {
    display: block;
    overflow-x: scroll;
  }
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll-w table {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .table-scroll-w table {
    width: 300%;
    table-layout: fixed;
    margin-bottom: calc(4.2666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll-w table, #CONTENTS .inner_frame2 .contents_box2 .table-scroll-w td, #CONTENTS .inner_frame2 .contents_box2 .table-scroll-w th {
  border-collapse: collapse;
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll-w .td {
  text-align: left;
  padding-left: 15px !important;
  background-color: #66A1FF;
  color: #fff;
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .table-scroll-w .td {
    padding-left: calc(4 * var(--vw)) !important;
    font-size: calc(3.2 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll-w .td1 {
  color: #2636bc;
  background-color: #E4EBF4;
  text-align: center;
  font-weight: 500 !important;
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll-w .td1-m {
  background-color: #E4EBF4;
  text-align: center;
  color: #ADBCD6;
  font-weight: 500 !important;
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll-w .td2 {
  color: #2636bc;
  background-color: #ECF0F6;
  text-align: center;
  font-weight: 500 !important;
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll-w .td2-m {
  background-color: #ECF0F6;
  text-align: center;
  color: #ADBCD6;
  font-weight: 500 !important;
}
#CONTENTS .inner_frame2 .contents_box2 .table-scroll-w::-webkit-scrollbar {
  display: block;
}
#CONTENTS .inner_frame2 .contents_box2 .seminor-btn {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#CONTENTS .inner_frame2 .contents_box2 .seminor-btn .bnr-img {
  width: 670px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box2 .seminor-btn .bnr-img {
    width: calc(72.5333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl {
  background-color: #fff;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl {
    border-radius: calc(1.0666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl .table-scroll {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll {
    display: block;
    overflow-x: scroll;
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl .table-scroll table {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll table {
    table-layout: fixed;
    margin-bottom: calc(4.2666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl .table-scroll table, #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll td, #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll th {
  border: 1px solid #fff;
  border-collapse: collapse;
  font-size: 12px;
  line-height: 16.8px;
  letter-spacing: 0.48px;
  font-weight: 600 !important;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll table, #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll td, #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll th {
    line-height: calc(4.48 * var(--vw));
    letter-spacing: 0.48px;
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl .table-scroll td, #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll th {
  padding: 8px 10px;
  width: 160px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll td, #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll th {
    width: calc(42.6666666667 * var(--vw));
    padding: calc(2.1333333333 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl .table-scroll th {
  background-color: #66A1FF;
  color: #fff;
}
#CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .th {
  text-align: left;
  padding-left: 10px !important;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .th {
    padding-left: calc(2.6666666667 * var(--vw)) !important;
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .th1-2 {
  width: 220px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .th1-2 {
    width: calc(58.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .th1-3 {
  width: 482px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .th1-3 {
    width: calc(128.5333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .td1-3 {
  text-align: center;
  color: #fff;
  background-color: #66A1FF;
  font-size: 12px;
  width: 110px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .td1-3 {
    font-size: calc(3.2 * var(--vw));
    width: calc(29.3333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .td {
  text-align: center;
  background-color: #66A1FF;
  color: #fff;
  font-size: 12px;
  width: 110px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .td {
    font-size: calc(3.2 * var(--vw));
    width: calc(29.3333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .td1 {
  color: #2636bc;
  background-color: #E4EBF4;
  text-align: center;
  font-weight: 500 !important;
  font-size: 14px;
}
#CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .td1-m {
  background-color: #E4EBF4;
  text-align: center;
  color: #ADBCD6;
  font-weight: 500 !important;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .td1-m {
    font-size: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .td2 {
  color: #2636bc;
  background-color: #ECF0F6;
  text-align: center;
  font-weight: 500 !important;
  font-size: 14px;
}
#CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .td2-m {
  background-color: #ECF0F6;
  text-align: center;
  color: #ADBCD6;
  font-weight: 500 !important;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl .table-scroll .td2-m {
    font-size: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 {
  background-color: #fff;
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll {
    display: block;
    overflow-x: scroll;
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll table {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll table {
    table-layout: fixed;
    margin-bottom: calc(4.2666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll table, #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll td, #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll th {
  border: 1px solid #E6EAF0;
  border-collapse: collapse;
  font-size: 14px;
  font-weight: 600 !important;
  line-height: 22.4px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll table, #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll td, #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll th {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(5.9733333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll td, #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll th {
  padding: 8px 10px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll td, #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll th {
    padding: calc(2.1333333333 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll th {
  background-color: #66A1FF;
  color: #fff;
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th {
  width: 119px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th {
    font-size: calc(3.7333333333 * var(--vw));
    padding-left: calc(2.6666666667 * var(--vw)) !important;
    width: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .td {
  text-align: center;
  background-color: #66A1FF;
  color: #fff;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .td {
    font-size: calc(3.7333333333 * var(--vw));
    width: calc(55.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .td1 {
  height: 119px;
  color: #000AC5;
  background-color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .td1 {
    height: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .td1-l {
  text-align: left !important;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .td1-l-pd {
  text-align: left !important;
  color: #000AC5;
  padding: 10px 0 10px 10px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .td1-l-pd {
    padding: calc(2.6666666667 * var(--vw)) 0 calc(2.6666666667 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .td1-m {
  background-color: #fff;
  text-align: center;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .td1-pd {
  padding: 8px 0 8px 10px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .td1-pd {
    padding: calc(2.1333333333 * var(--vw)) 0 calc(2.1333333333 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .td2 {
  height: 119px;
  color: #000AC5;
  background-color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .td2 {
    height: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .td2-l {
  text-align: left !important;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .td2-m {
  background-color: #fff;
  text-align: center;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th1 {
  width: 119px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th1 {
    width: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th2 {
  width: 311px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th2 {
    width: calc(82.9333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th3 {
  width: 119px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th3 {
    width: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th4 {
  width: 114px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th4 {
    width: calc(30.4 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th234 {
  width: 544px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th234 {
    width: calc(145.6 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th5 {
  width: 145px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th5 {
    width: calc(38.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th6 {
  width: 145px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th6 {
    width: calc(38.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th56 {
  width: 290px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll .th56 {
    width: calc(77.3333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w {
    display: block;
    overflow-x: scroll;
    background-color: #E6EAF0;
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w table {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w table {
    table-layout: fixed;
    margin-bottom: calc(4.2666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w table, #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w td, #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w th {
  border: 1px solid #E6EAF0;
  border-collapse: collapse;
  font-size: 14px;
  font-weight: 600 !important;
  line-height: 22.4px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w table, #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w td, #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w th {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(5.9733333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w td, #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w th {
  padding: 8px 10px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w td, #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w th {
    padding: calc(2.1333333333 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w th {
  background-color: #66A1FF;
  color: #fff;
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w td {
  background-color: #fff;
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th {
  width: 119px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th {
    font-size: calc(3.7333333333 * var(--vw));
    padding-left: calc(2.6666666667 * var(--vw)) !important;
    width: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .td {
  text-align: center;
  background-color: #66A1FF;
  color: #fff;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .td {
    font-size: calc(3.7333333333 * var(--vw));
    width: calc(55.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .td1 {
  height: 119px;
  color: #000AC5;
  background-color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .td1 {
    height: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .td1-l {
  text-align: left !important;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .td1-l-pd {
  text-align: left !important;
  color: #000AC5;
  padding: 10px 0 10px 10px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .td1-l-pd {
    padding: calc(2.6666666667 * var(--vw)) 0 calc(2.6666666667 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .td1-m {
  background-color: #fff;
  text-align: center;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .td1-pd {
  padding: 8px 0 8px 10px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .td1-pd {
    padding: calc(2.1333333333 * var(--vw)) 0 calc(2.1333333333 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .td2 {
  height: 119px;
  color: #000AC5;
  background-color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .td2 {
    height: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .td2-l {
  text-align: left !important;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .td2-m {
  background-color: #fff;
  text-align: center;
  color: #000AC5;
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th1 {
  width: 119px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th1 {
    width: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th2 {
  width: 311px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th2 {
    width: calc(82.9333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th3 {
  width: 119px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th3 {
    width: calc(31.7333333333 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th4 {
  width: 114px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th4 {
    width: calc(30.4 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th234 {
  width: 544px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th234 {
    width: calc(145.6 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th5 {
  width: 145px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th5 {
    width: calc(38.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th6 {
  width: 145px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th6 {
    width: calc(38.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th56 {
  width: 290px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_frame2 .contents_box_tbl2 .table-scroll-w .th56 {
    width: calc(77.3333333333 * 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 .contents_box .cb_right_bnpc2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bnpc2 {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box .cb_right_bnpc2_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_bnpc2_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_bnpc2_r {
  width: 82%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bnpc2_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_bnpc2_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box .cb_right_bnpc2_r_1 {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box .cb_right_bnpc2_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_bnpc2_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_bnpc2_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_box2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#CONTENTS .inner_contents .contents_box2 .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_box2 .cb_left {
    width: 100%;
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box2 .cb_right {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box2 .cb_right {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box2 .cb_right_l {
  width: 26.6%;
  padding: 25px 0 22px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box2 .cb_right_l {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(0.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box2 .cb_right_r {
  width: 73.4%;
  padding: 25px 0 22px;
  font-size: 16px;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box2 .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_box2 .cb_right_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box2 .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_box2 .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_box2 .cb_right_in {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box2 .cb_right_in {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box2 .cb_right_in_l {
  width: 19.6%;
  text-align: left !important;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box2 .cb_right_in_l {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box2 .cb_right_in_r {
  width: 80.4%;
  text-align: left !important;
  font-size: 16px;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box2 .cb_right_in_r {
    width: 100%;
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box2 .cb_right_in_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box2 .cb_right_in_r_1 {
  width: 100%;
  padding: 25px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box2 .cb_right_in_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_box2 .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_box2 .cb_right_bn {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box2 .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_box2 .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_box2 .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_box2 .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_box2 .cb_right_bn_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box2 .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_box2 .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_box2 .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_box2 .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_box2 .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_box2 .cb_right_bn2 {
    width: 100%;
    padding-top: 0;
  }
}
#CONTENTS .inner_contents .contents_box2 .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_box2 .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_box2 .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_box2 .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_box2 .cb_right_bn2_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box2 .cb_right_bn2_r_1 {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box2 .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_box2 .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_box2 .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_box2 .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_box2 .cb_right_bnpc {
    width: 100%;
    border-top: solid 1px #002656;
  }
}
#CONTENTS .inner_contents .contents_box2 .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_box2 .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_box2 .cb_right_bnpc_r {
  width: 82%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box2 .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_box2 .cb_right_bnpc_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box2 .cb_right_bnpc_r_1 {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box2 .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_box2 .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_box2 .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 .contents_box3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 24px;
}
#CONTENTS .inner_contents .contents_box3 .cobox {
  width: 31.6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  border-radius: 4px;
  padding: 24px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3 .cobox {
    border-radius: calc(1.0666666667 * var(--vw));
    width: 100%;
    padding: calc(6.4 * var(--vw));
    margin-bottom: calc(6.4 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box3 .cobox .sumb-img {
  width: 130px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3 .cobox .sumb-img {
    width: calc(34.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box3 .cobox .title-txt {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -1.08px;
  color: #000AC5;
  font-weight: 600;
  text-align: left;
  padding: 12px 0 10px;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .inner_contents .contents_box3 .cobox .title-txt {
    height: 110px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3 .cobox .title-txt {
    font-size: calc(4.8 * var(--vw));
    letter-spacing: -1.296px;
    line-height: calc(7.4666666667 * var(--vw));
    padding: calc(3.2 * var(--vw)) 0 calc(2.6666666667 * var(--vw));
    font-weight: 600;
  }
}
#CONTENTS .inner_contents .contents_box3 .cobox .title-txt-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: #000AC5;
  font-family: "Shippori Mincho", serif !important;
  width: 100%;
}
#CONTENTS .inner_contents .contents_box3 .cobox .title-txt-box .title_number {
  width: 102.4px;
  font-size: 64px;
  line-height: 102.4px;
  letter-spacing: -2.56px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3 .cobox .title-txt-box .title_number {
    width: calc(23.8933333333 * var(--vw));
    font-size: calc(14.9333333333 * var(--vw));
    line-height: calc(23.8933333333 * var(--vw));
    letter-spacing: -2.24px;
  }
}
#CONTENTS .inner_contents .contents_box3 .cobox .title-txt-box .title_cotext {
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 28px;
  font-weight: 600;
  padding-top: 10px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3 .cobox .title-txt-box .title_cotext {
    font-size: calc(4.8 * var(--vw));
    letter-spacing: 1.8px;
    line-height: calc(6.72 * var(--vw));
    font-weight: 600;
    padding-top: calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box3 .cobox .detail-txt {
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.56px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3 .cobox .detail-txt {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box3s {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 24px;
}
#CONTENTS .inner_contents .contents_box3s .cobox {
  width: 31.6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  border-radius: 4px;
  padding: 24px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3s .cobox {
    border-radius: calc(1.0666666667 * var(--vw));
    width: 100%;
    padding: calc(6.4 * var(--vw));
    margin-bottom: calc(6.4 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box3s .cobox .sumb-img {
  width: 130px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3s .cobox .sumb-img {
    width: calc(34.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box3s .cobox .title-txt {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -1.08px;
  color: #000AC5;
  font-weight: 600;
  text-align: left;
  padding: 12px 0 10px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3s .cobox .title-txt {
    font-size: calc(4.8 * var(--vw));
    letter-spacing: -1.296px;
    line-height: calc(7.4666666667 * var(--vw));
    padding: calc(3.2 * var(--vw)) 0 calc(2.6666666667 * var(--vw));
    font-weight: 600;
  }
}
#CONTENTS .inner_contents .contents_box3s .cobox .title-txt-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: #000AC5;
  font-family: "Shippori Mincho", serif !important;
  width: 100%;
}
#CONTENTS .inner_contents .contents_box3s .cobox .title-txt-box .title_number {
  width: 102.4px;
  font-size: 64px;
  line-height: 102.4px;
  letter-spacing: -2.56px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3s .cobox .title-txt-box .title_number {
    width: calc(23.8933333333 * var(--vw));
    font-size: calc(14.9333333333 * var(--vw));
    line-height: calc(23.8933333333 * var(--vw));
    letter-spacing: -2.24px;
  }
}
#CONTENTS .inner_contents .contents_box3s .cobox .title-txt-box .title_cotext {
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 28px;
  font-weight: 600;
  padding-top: 10px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3s .cobox .title-txt-box .title_cotext {
    font-size: calc(4.8 * var(--vw));
    letter-spacing: 1.8px;
    line-height: calc(6.72 * var(--vw));
    font-weight: 600;
    padding-top: calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box3s .cobox .detail-txt {
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.56px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3s .cobox .detail-txt {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box3_center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 24px;
}
#CONTENTS .inner_contents .contents_box3_center .cobox {
  width: 31.6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  border-radius: 4px;
  padding: 24px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3_center .cobox {
    border-radius: calc(1.0666666667 * var(--vw));
    width: 100%;
    padding: calc(6.4 * var(--vw));
    margin-bottom: calc(6.4 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box3_center .cobox .sumb-img {
  width: 130px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3_center .cobox .sumb-img {
    width: calc(34.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box3_center .cobox .title-txt {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -1.08px;
  color: #000AC5;
  font-weight: 600;
  text-align: left;
  padding: 12px 0 10px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3_center .cobox .title-txt {
    font-size: calc(6.4 * var(--vw));
    line-height: calc(10.1333333333 * var(--vw));
    padding: calc(3.2 * var(--vw)) 0 calc(2.6666666667 * var(--vw));
    font-weight: 600;
  }
}
#CONTENTS .inner_contents .contents_box3_center .cobox .title-txt-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: #000AC5;
  font-family: "Shippori Mincho", serif !important;
  width: 100%;
}
#CONTENTS .inner_contents .contents_box3_center .cobox .title-txt-box .title_number {
  width: 102.4px;
  font-size: 64px;
  line-height: 102.4px;
  letter-spacing: -2.56px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3_center .cobox .title-txt-box .title_number {
    width: calc(23.8933333333 * var(--vw));
    font-size: calc(14.9333333333 * var(--vw));
    line-height: calc(23.8933333333 * var(--vw));
    letter-spacing: -2.24px;
  }
}
#CONTENTS .inner_contents .contents_box3_center .cobox .title-txt-box .title_cotext {
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 28px;
  font-weight: 600;
  padding-top: 10px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3_center .cobox .title-txt-box .title_cotext {
    font-size: calc(4.8 * var(--vw));
    letter-spacing: 1.8px;
    line-height: calc(6.72 * var(--vw));
    font-weight: 600;
    padding-top: calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box3_center .cobox .detail-txt {
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.56px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box3_center .cobox .detail-txt {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#CONTENTS .inner_contents .contents_box4 .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_box4 .cb_left {
    width: 100%;
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_l {
  width: 26.6%;
  padding: 25px 0 22px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_l {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(0.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_r {
  width: 73.4%;
  padding: 25px 0 22px;
  font-size: 16px;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .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_box4 .cb_right_blk {
  padding: 16px 0 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_blk {
    width: 100%;
    padding: calc(4.2666666667 * var(--vw)) 0 0;
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_btn {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_btn {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_btn .ed-img {
  width: 512px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_btn .ed-img {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box4 .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_box4 .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_box4 .cb_right2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right2 {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right2_l {
  width: 26.6%;
  padding: 25px 0 22px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right2_l {
    width: 100%;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(0.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right2_r {
  width: 73.4%;
  padding: 25px 0 22px;
  font-size: 16px;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right2_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_box4 .cb_right2_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box4 .cb_right2_r_1 {
  width: 100%;
  padding: 25px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right2_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_box4 .cb_right_only {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_only {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_only_r {
  width: 100%;
  padding: 25px 0 22px;
  font-size: 16px;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_only_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_box4 .cb_right_only_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box4 .cb_right_only_r_1 {
  width: 100%;
  padding: 25px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_only_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_box4 .cb_right_in {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_in {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_in_l {
  width: 19.6%;
  text-align: left !important;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_in_l {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_in_r {
  width: 80.4%;
  text-align: left !important;
  font-size: 16px;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_in_r {
    width: 100%;
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_in_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box4 .cb_right_in_r_1 {
  width: 100%;
  padding: 25px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_in_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_box4 .cb_right_in-half {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_in-half {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_in-half_l {
  width: 19.6%;
  text-align: left !important;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_in-half_l {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_in-half_r {
  width: 80.4%;
  text-align: left !important;
  font-size: 16px;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_in-half_r {
    width: 100%;
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_in-half_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box4 .cb_right_in-half_r_1 {
  width: 100%;
  padding: 25px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_in-half_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_box4 .cb_right_in-half2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_in-half2 {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_in-half2_l {
  width: 19.6%;
  text-align: left !important;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_in-half2_l {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_in-half2_r {
  width: 80.4%;
  text-align: left !important;
  font-size: 16px;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_in-half2_r {
    width: 100%;
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_in-half2_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box4 .cb_right_in-half2_r_1 {
  width: 100%;
  padding: 25px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_in-half2_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_box4 .cb_right2_in {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right2_in {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right2_in_l {
  width: 23.7%;
  text-align: left !important;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right2_in_l {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right2_in_r {
  width: 76.3%;
  text-align: left !important;
  font-size: 16px;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right2_in_r {
    width: 100%;
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right2_in_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box4 .cb_right2_in_r_1 {
  width: 100%;
  padding: 25px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right2_in_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_box4 .cb_right3_in {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right3_in {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right3_in_l {
  width: 28.7%;
  text-align: left !important;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right3_in_l {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right3_in_r {
  width: 71.3%;
  text-align: left !important;
  font-size: 16px;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right3_in_r {
    width: 100%;
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right3_in_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box4 .cb_right3_in_r_1 {
  width: 100%;
  padding: 25px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right3_in_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_box4 .cb_right3_in-half {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right3_in-half {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right3_in-half_l {
  width: 28.7%;
  text-align: left !important;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right3_in-half_l {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right3_in-half_r {
  width: 71.3%;
  text-align: left !important;
  font-size: 16px;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right3_in-half_r {
    width: 100%;
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right3_in-half_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box4 .cb_right3_in-half_r_1 {
  width: 100%;
  padding: 25px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right3_in-half_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_box4 .cb_right3_in-half2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right3_in-half2 {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right3_in-half2_l {
  width: 28.7%;
  text-align: left !important;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right3_in-half2_l {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right3_in-half2_r {
  width: 100%;
  text-align: left !important;
  font-size: 16px;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right3_in-half2_r {
    width: 100%;
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right3_in-half2_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box4 .cb_right3_in-half2_r_1 {
  width: 100%;
  padding: 25px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right3_in-half2_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_box4 .cb_right_only_in {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 16px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_only_in {
    width: 100%;
    row-gap: calc(2.1333333333 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_only_in_l {
  width: 100%;
  text-align: center !important;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_only_in_l {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_only_in_r {
  width: 100%;
  text-align: left !important;
  font-size: 16px;
  line-height: 28px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_only_in_r {
    width: 100%;
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box4 .cb_right_only_in_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box4 .cb_right_only_in_r_1 {
  width: 100%;
  padding: 25px 0;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .cb_right_only_in_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_box4 .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_box4 .cb_right_bn {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box4 .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_box4 .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_box4 .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_box4 .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_box4 .cb_right_bn_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box4 .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_box4 .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_box4 .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_box4 .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_box4 .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_box4 .cb_right_bn2 {
    width: 100%;
    padding-top: 0;
  }
}
#CONTENTS .inner_contents .contents_box4 .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_box4 .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_box4 .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_box4 .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_box4 .cb_right_bn2_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box4 .cb_right_bn2_r_1 {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .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_box4 .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_box4 .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_box4 .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_box4 .cb_right_bnpc {
    width: 100%;
    border-top: solid 1px #002656;
  }
}
#CONTENTS .inner_contents .contents_box4 .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_box4 .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_box4 .cb_right_bnpc_r {
  width: 82%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .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_box4 .cb_right_bnpc_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box4 .cb_right_bnpc_r_1 {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box4 .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_box4 .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_box4 .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 .contents_box5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 24px;
}
#CONTENTS .inner_contents .contents_box5 .cobox {
  width: 465px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  border-radius: 4px;
  padding: 32px;
  flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box5 .cobox {
    border-radius: calc(1.0666666667 * var(--vw));
    width: 100%;
    padding: calc(6.4 * var(--vw)) calc(6.4 * var(--vw));
    margin-bottom: calc(6.4 * var(--vw));
    flex-grow: 1;
  }
}
#CONTENTS .inner_contents .contents_box5 .cobox .sumb-img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box5 .cobox .sumb-img {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box5 .cobox .title-txt {
  font-family: "Shippori Mincho", serif !important;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: 0.96px;
  color: #000AC5;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box5 .cobox .title-txt {
    font-size: calc(6.4 * var(--vw));
    line-height: calc(10.1333333333 * var(--vw));
    padding: calc(3.2 * var(--vw)) 0;
    font-weight: 600;
  }
}
#CONTENTS .inner_contents .contents_box5 .cobox .title-txt-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: #000AC5;
  font-family: "Shippori Mincho", serif !important;
  width: 100%;
}
#CONTENTS .inner_contents .contents_box5 .cobox .title-txt-box .title_number {
  width: 102.4px;
  font-size: 64px;
  line-height: 102.4px;
  letter-spacing: -2.56px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box5 .cobox .title-txt-box .title_number {
    width: calc(23.8933333333 * var(--vw));
    font-size: calc(14.9333333333 * var(--vw));
    line-height: calc(23.8933333333 * var(--vw));
    letter-spacing: -2.24px;
  }
}
#CONTENTS .inner_contents .contents_box5 .cobox .title-txt-box .title_cotext {
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 28px;
  font-weight: 600;
  padding-top: 10px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box5 .cobox .title-txt-box .title_cotext {
    font-size: calc(4.8 * var(--vw));
    letter-spacing: 1.8px;
    line-height: calc(6.72 * var(--vw));
    font-weight: 600;
    padding-top: calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box5 .cobox .detail-txt {
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.28px;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .inner_contents .contents_box5 .cobox .detail-txt {
    height: 100px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box5 .cobox .detail-txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box5 .cs-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box5 .cs-box {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box5 .cs-box .btn-box5 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box5 .cs-box .btn-box5 {
    justify-content: center;
  }
}
#CONTENTS .inner_contents .contents_box5 .hash-box2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box5 .hash-box2 {
    align-items: flex-start;
    gap: calc(1.56 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box5 .hash-box2 .hashtag {
  padding: 0px 12px;
  border-radius: 100vmax;
  border: solid 1px #2636bc;
  font-size: 14px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box5 .hash-box2 .hashtag {
    padding: calc(0 * var(--vw)) calc(2.6666666667 * var(--vw));
    font-size: calc(2.6666666667 * var(--vw));
    color: #000AC5;
  }
}
#CONTENTS .inner_contents .contents_box_acc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#CONTENTS .inner_contents .contents_box_acc .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_acc .cb_left {
    width: 100%;
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box_acc .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_acc .cb_right {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box_acc .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_acc .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_acc .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_acc .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_acc .cb_right_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box_acc .cb_right_r_1 {
  width: 100%;
  padding: 20px 0 25px;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_acc .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_acc .cb_right_bn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_acc .cb_right_bn {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box_acc .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_acc .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_acc .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_acc .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_acc .cb_right_bn_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box_acc .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_acc .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_acc .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_acc .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_acc .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_acc .cb_right_bn2 {
    width: 100%;
    padding-top: 0;
  }
}
#CONTENTS .inner_contents .contents_box_acc .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_acc .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_acc .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_acc .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_acc .cb_right_bn2_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box_acc .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_acc .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_acc .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_acc .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_acc .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_acc .cb_right_bnpc {
    width: 100%;
    border-top: solid 1px #002656;
  }
}
#CONTENTS .inner_contents .contents_box_acc .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_acc .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_acc .cb_right_bnpc_r {
  width: 82%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_acc .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_acc .cb_right_bnpc_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box_acc .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_acc .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_acc .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_acc .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 .contents_box_acc .cb_right_bnpc2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_acc .cb_right_bnpc2 {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box_acc .cb_right_bnpc2_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_acc .cb_right_bnpc2_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_acc .cb_right_bnpc2_r {
  width: 82%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_acc .cb_right_bnpc2_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_acc .cb_right_bnpc2_l_1 {
  width: 0%;
}
#CONTENTS .inner_contents .contents_box_acc .cb_right_bnpc2_r_1 {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_acc .cb_right_bnpc2_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_acc .cb_right_bnpc2_r_1_pn {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_acc .cb_right_bnpc2_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_edg {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 24px;
}
#CONTENTS .inner_contents .contents_box_edg .cobox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  border-radius: 4px;
  padding: 24px;
  flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_edg .cobox {
    border-radius: calc(1.0666666667 * var(--vw));
    width: 100%;
    padding: calc(6.4 * var(--vw)) calc(6.4 * var(--vw));
    margin-bottom: calc(6.4 * var(--vw));
    flex-grow: 1;
  }
}
#CONTENTS .inner_contents .contents_box_edg .cobox .sumb-img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_edg .cobox .sumb-img {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box_edg .cobox .title-txt {
  font-family: "Shippori Mincho", serif !important;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: 0.96px;
  color: #000AC5;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_edg .cobox .title-txt {
    font-size: calc(6.4 * var(--vw));
    line-height: calc(10.1333333333 * var(--vw));
    padding: calc(3.2 * var(--vw)) 0;
    font-weight: 600;
  }
}
#CONTENTS .inner_contents .contents_box_edg .cobox .title-txt-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: #000AC5;
  font-family: "Shippori Mincho", serif !important;
  width: 100%;
}
#CONTENTS .inner_contents .contents_box_edg .cobox .title-txt-box .title_number {
  width: 102.4px;
  font-size: 64px;
  line-height: 102.4px;
  letter-spacing: -2.56px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_edg .cobox .title-txt-box .title_number {
    width: calc(23.8933333333 * var(--vw));
    font-size: calc(14.9333333333 * var(--vw));
    line-height: calc(23.8933333333 * var(--vw));
    letter-spacing: -2.24px;
  }
}
#CONTENTS .inner_contents .contents_box_edg .cobox .title-txt-box .title_cotext {
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 28px;
  font-weight: 600;
  padding-top: 10px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_edg .cobox .title-txt-box .title_cotext {
    font-size: calc(4.8 * var(--vw));
    letter-spacing: 1.8px;
    line-height: calc(6.72 * var(--vw));
    font-weight: 600;
    padding-top: calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box_edg .cobox .detail-txt {
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.56px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_edg .cobox .detail-txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box_edg .cobox .cb_box_l {
  width: 100%;
  text-align: center !important;
  line-height: 28px;
  /* margin: auto 0; */
}
#CONTENTS .inner_contents .contents_box_edg .cobox .cb_box_r {
  width: 100%;
  text-align: left !important;
  font-size: 16px;
  line-height: 28px;
  /* margin: auto 0; */
}
#CONTENTS .inner_contents .contents_box_edg .cs-box {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_edg .cs-box {
    width: 100%;
  }
}
#CONTENTS .inner_contents .contents_box_edg .cs-box .btn-box5 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_edg .cs-box .btn-box5 {
    justify-content: center;
  }
}
#CONTENTS .inner_contents .contents_box_edg .hash-box2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_edg .hash-box2 {
    align-items: flex-start;
    gap: calc(1.8666666667 * var(--vw));
  }
}
#CONTENTS .inner_contents .contents_box_edg .hash-box2 .hashtag {
  padding: 0px 12px;
  border-radius: 100vmax;
  border: solid 1px #2636bc;
  font-size: 14px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .contents_box_edg .hash-box2 .hashtag {
    padding: calc(0 * var(--vw)) calc(2.6666666667 * var(--vw));
    font-size: calc(2.6666666667 * var(--vw));
    color: #000AC5;
  }
}
#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_contents .btn-text-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#CONTENTS .inner_contents .btn-text-box .btn-box {
  width: 252px;
  display: block;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .btn-text-box .btn-box {
    width: calc(67.2 * var(--vw));
    display: block;
  }
}
#CONTENTS .inner_contents .btn-text-box .btn-box2 {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner_contents .btn-text-box .btn-box2 {
    width: calc(67.2 * var(--vw));
    display: flex;
    justify-content: center;
  }
}
#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-bred-txt {
  font-family: "Shippori Mincho", serif !important;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.96px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .top-bred-txt {
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: -0.56px;
  }
}
#CONTENTS .inner .top-bred-txt_s .txt_u {
  font-family: "Shippori Mincho", serif !important;
  font-size: 14px;
  line-height: 19px;
  color: #7C7C7C;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .top-bred-txt_s .txt_u {
    font-size: calc(2.6666666667 * var(--vw));
    line-height: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .inner .top-bred-txt_s .txt_l {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: -1.28px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .top-bred-txt_s .txt_l {
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(8 * var(--vw));
    letter-spacing: -0.8px;
  }
}
#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 .top-title-box {
  width: 100%;
  text-align: center;
  margin-top: 35px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .top-title-box {
    margin-top: calc(5.3333333333 * var(--vw));
  }
}
#CONTENTS .inner .top-title-box .sub-ttl1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 20px;
  letter-spacing: 0.8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .top-title-box .sub-ttl1 {
    font-size: calc(5.3333333333 * var(--vw));
    letter-spacing: 0.8px;
  }
}
#CONTENTS .inner .top-title-box .sub-ttl1-2 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  letter-spacing: 0.72px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .top-title-box .sub-ttl1-2 {
    font-size: calc(4.8 * var(--vw));
    letter-spacing: 0.72px;
  }
}
#CONTENTS .inner .top-title-box .sub-ttl2 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  letter-spacing: 0.72px;
  padding-left: 12px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .top-title-box .sub-ttl2 {
    font-size: calc(4.8 * var(--vw));
    letter-spacing: 0.72px;
    padding-left: calc(3.2 * var(--vw));
  }
}
#CONTENTS .inner .top-title-center {
  font-family: "Shippori Mincho", serif !important;
  font-size: 56px;
  line-height: 56px;
  font-weight: 500;
  letter-spacing: -2.24px;
  text-align: center;
  margin: 23px 0 0;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .top-title-center {
    font-size: calc(7.4666666667 * var(--vw));
    line-height: calc(10.4 * var(--vw));
    letter-spacing: 1.12px;
    text-align: left;
    margin: calc(5.3333333333 * var(--vw)) 0 0;
  }
}
#CONTENTS .inner .top-title-center2 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 56px;
  line-height: 56px;
  font-weight: 500;
  letter-spacing: -2.24px;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 0;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .top-title-center2 {
    font-size: calc(7.4666666667 * var(--vw));
    line-height: calc(11.8666666667 * var(--vw));
    letter-spacing: 1.12px;
    text-align: left;
    margin-top: 12px;
    margin-bottom: 0;
  }
}
#CONTENTS .inner .top-title-center3 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 56px;
  line-height: 56px;
  font-weight: 500;
  letter-spacing: -2.24px;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 0;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .top-title-center3 {
    font-size: calc(7.4666666667 * var(--vw));
    line-height: calc(9.7333333333 * var(--vw));
    letter-spacing: 1.12px;
    margin-top: calc(1.6 * var(--vw)) !important;
    margin-bottom: 0 !important;
  }
}
#CONTENTS .inner .top-title-center3-pc {
  font-family: "Shippori Mincho", serif !important;
  font-size: 52px;
  line-height: 56px;
  font-weight: 500;
  letter-spacing: -2.24px;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 0;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .top-title-center3-pc {
    font-size: calc(6.9333333333 * var(--vw));
    line-height: calc(9.7333333333 * var(--vw));
    letter-spacing: 1.12px;
    margin-top: calc(1.6 * var(--vw)) !important;
    margin-bottom: 0 !important;
  }
}
#CONTENTS .inner .top-title-center3-mb {
  font-family: "Shippori Mincho", serif !important;
  font-size: 56px;
  line-height: 56px;
  font-weight: 500;
  letter-spacing: -2.24px;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 0;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .top-title-center3-mb {
    font-size: calc(7.4666666667 * var(--vw));
    line-height: calc(9.7333333333 * var(--vw));
    letter-spacing: 1.12px;
    margin-top: calc(1.6 * var(--vw)) !important;
    margin-bottom: calc(9.3333333333 * var(--vw)) !important;
  }
}
#CONTENTS .inner .top-title-center3s {
  font-family: "Shippori Mincho", serif !important;
  font-size: 54px;
  line-height: 54px;
  font-weight: 500;
  letter-spacing: -2.24px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 35px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .top-title-center3s {
    font-size: calc(7.2 * var(--vw));
    line-height: calc(11.8666666667 * var(--vw));
    letter-spacing: 1.08px;
    margin-top: 0 !important;
    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-center {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #ddd;
  letter-spacing: 0.56px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .sub-title2-center {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    text-align: center;
    color: #ddd;
    letter-spacing: 0.56px;
  }
}
#CONTENTS .inner .sub-title2-center-in {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.56px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .sub-title2-center-in {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    text-align: center;
    letter-spacing: 0.56px;
  }
}
#CONTENTS .inner .sub-title2-center-sp_left {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #ddd;
  letter-spacing: 0.56px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .inner .sub-title2-center-sp_left {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    text-align: left;
    color: #ddd;
    letter-spacing: 0.56px;
  }
}
#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));
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .top-title-center {
    font-family: "Shippori Mincho", serif !important;
    font-weight: 500;
    color: #fff;
    font-size: calc(7.4666666667 * var(--vw));
    line-height: calc(11.8666666667 * var(--vw));
    letter-spacing: calc(-0.2666666667 * var(--vw));
    text-align: center;
    margin-bottom: calc(9.3333333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .top-title-center-sp {
    font-family: "Shippori Mincho", serif !important;
    font-weight: 500;
    color: #fff;
    font-size: calc(7.4666666667 * var(--vw));
    line-height: calc(9.7333333333 * var(--vw));
    letter-spacing: calc(-0.2666666667 * var(--vw));
    text-align: center;
    margin-bottom: calc(9.3333333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .top-title-center3 {
    font-family: "Shippori Mincho", serif !important;
    font-weight: 500;
    color: #fff;
    font-size: calc(7.4666666667 * var(--vw));
    line-height: calc(9.7333333333 * var(--vw));
    letter-spacing: calc(-0.2666666667 * var(--vw));
    text-align: center;
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .top-title-center3sp {
    font-family: "Shippori Mincho", serif !important;
    font-weight: 500;
    color: #fff;
    font-size: calc(7.4666666667 * var(--vw));
    line-height: calc(9.7333333333 * var(--vw));
    letter-spacing: calc(-0.2666666667 * var(--vw));
    text-align: center;
    margin-top: calc(1.8666666667 * var(--vw));
    margin-bottom: calc(4.2666666667 * var(--vw));
  }
}
#CONTENTS .flow-ttl-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-ttl-box {
    justify-content: flex-start;
  }
}
#CONTENTS .flow-ttl-box .sch-box {
  font-family: "Shippori Mincho", serif !important;
  font-size: 14px;
  color: #fff;
  border-radius: 2px;
  padding: 3px 10px 5px;
  background-color: #000AC5;
  line-height: 18px;
}
#CONTENTS .flow-ttl-box .sch-box .f18 {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-ttl-box .sch-box .f18 {
    font-size: calc(4.8 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-ttl-box .sch-box {
    margin-top: calc(6.4 * var(--vw));
    font-size: calc(3.7333333333 * var(--vw));
    border-radius: calc(0.5333333333 * var(--vw));
    padding: calc(1.3333333333 * var(--vw)) calc(2.6666666667 * var(--vw)) calc(1.3333333333 * var(--vw));
    line-height: calc(3.4666666667 * var(--vw));
  }
}
#CONTENTS .flow-ttl {
  font-family: "Shippori Mincho", serif !important;
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 1.44px;
  width: 100%;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-ttl {
    font-size: calc(6.4 * var(--vw));
    line-height: calc(10.1333333333 * var(--vw));
    font-weight: 600;
    letter-spacing: calc(-0.1333333333 * var(--vw));
  }
}
#CONTENTS .flow-ttl-4 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 1.44px;
  width: 100%;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-ttl-4 {
    font-size: calc(6.4 * var(--vw));
    line-height: calc(10.1333333333 * var(--vw));
    font-weight: 600;
    letter-spacing: calc(-0.5 * var(--vw));
  }
}
#CONTENTS .flow-ttl2 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 1.44px;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-ttl2 {
    font-size: calc(6.4 * var(--vw));
    font-weight: 600;
    line-height: calc(10.1333333333 * var(--vw));
    letter-spacing: calc(-0.1333333333 * var(--vw));
  }
}
#CONTENTS .flow-ttl3 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 1.44px;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-ttl3 {
    font-size: calc(6.4 * var(--vw));
    font-weight: 600;
    line-height: calc(10.1333333333 * var(--vw));
    letter-spacing: calc(-0.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-co-ttl {
  font-family: "Shippori Mincho", serif !important;
  font-size: 24px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.96px;
  margin-left: -12px;
  color: #000AC5;
  width: 100%;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-co-ttl {
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(6.8 * var(--vw));
    font-weight: 600;
    letter-spacing: calc(-0.1333333333 * var(--vw));
    margin-left: calc(-1.0666666667 * 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));
  }
}
#CONTENTS .flow-005ar {
  position: relative;
  overflow: hidden;
  padding-left: initial;
  margin-top: initial;
  margin-bottom: initial;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar {
    width: 100%;
  }
}
#CONTENTS .flow-005ar::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 2px;
  height: calc(100% - 60px);
  background-color: #000AC5;
}
#CONTENTS .flow-005ar__item {
  padding: 0 0 32px;
  display: flex;
  gap: 32px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar__item {
    padding: 0 0 calc(8 * var(--vw));
    gap: calc(8 * var(--vw));
  }
}
#CONTENTS .flow-005ar__item:nth-child(odd) .flow-005__number {
  background-color: #fff;
}
#CONTENTS .flow-005ar__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-005ar__number {
    width: 100%;
  }
}
#CONTENTS .flow-005ar__number .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar__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-005ar__number .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar__number .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-005ar__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-005ar__number .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-005ar__number .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar__number .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-005ar__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-005ar__number .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-005ar__ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar__ttl {
    font-size: 18px;
  }
}
#CONTENTS .flow-005ar__atend {
  padding: 0 20px 15px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar__atend {
    padding: 0 calc(4 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-005ar-pc {
  position: relative;
  overflow: hidden;
  padding-left: initial;
  margin-top: initial;
  margin-bottom: initial;
  width: 48%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-pc {
    width: 100%;
  }
}
#CONTENTS .flow-005ar-pc::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 2px;
  height: calc(100% - 60px);
  background-color: #333;
}
#CONTENTS .flow-005ar-pc__item {
  padding: 0 0 32px;
  display: flex;
  gap: 32px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-pc__item {
    padding: 0 0 calc(8 * var(--vw));
    gap: calc(8 * var(--vw));
  }
}
#CONTENTS .flow-005ar-pc__item:nth-child(odd) .flow-005__number {
  background-color: #fff;
}
#CONTENTS .flow-005ar-pc__item2 {
  position: absolute;
  top: 112px;
  z-index: 20;
  padding: 0 0 32px;
  display: flex;
  gap: 32px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-pc__item2 {
    padding: 0 0 calc(8 * var(--vw));
    gap: calc(8 * var(--vw));
  }
}
#CONTENTS .flow-005ar-pc__item2:nth-child(odd) .flow-005__number {
  background-color: #fff;
}
#CONTENTS .flow-005ar-pc__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-005ar-pc__number {
    width: 100%;
  }
}
#CONTENTS .flow-005ar-pc__number .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-pc__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-005ar-pc__number .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-pc__number .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-005ar-pc__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-005ar-pc__number .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-005ar-pc__number .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-pc__number .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-005ar-pc__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-005ar-pc__number .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-005ar-pc__number_bgnone {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  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-005ar-pc__number_bgnone {
    width: 100%;
  }
}
#CONTENTS .flow-005ar-pc__number_bgnone .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-pc__number_bgnone .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#CONTENTS .flow-005ar-pc__number_bgnone .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-pc__number_bgnone .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-005ar-pc__number_bgnone .txt_l_sp_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-pc__number_bgnone .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-005ar-pc__number_bgnone .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-pc__number_bgnone .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-005ar-pc__number_bgnone .txt_c_sp_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-pc__number_bgnone .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-005ar-pc__ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-pc__ttl {
    font-size: 18px;
  }
}
#CONTENTS .flow-005ar-pc__atend {
  padding: 0 20px 15px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-pc__atend {
    padding: 0 calc(4 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-005ar-none {
  position: relative;
  overflow: hidden;
  padding-left: initial;
  margin-top: initial;
  margin-bottom: initial;
  /*&::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 2px;
      height: calc(100% - getvwPc(60));
      background-color: #333;
      @include media(sp) {

      }
  }*/
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-none {
    width: 100%;
  }
}
#CONTENTS .flow-005ar-none__item {
  padding: 0 0 16px;
  display: flex;
  gap: 16px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-none__item {
    padding: 0 0 calc(4.2666666667 * var(--vw));
    gap: calc(4.2666666667 * var(--vw));
  }
}
#CONTENTS .flow-005ar-none__item:nth-child(odd) .flow-005__number {
  background-color: #fff;
}
#CONTENTS .flow-005ar-none__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-005ar-none__number {
    width: 100%;
  }
}
#CONTENTS .flow-005ar-none__number .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-none__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-005ar-none__number .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-none__number .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-005ar-none__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-005ar-none__number .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-005ar-none__number .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-none__number .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-005ar-none__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-005ar-none__number .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-005ar-none__ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-none__ttl {
    font-size: 18px;
  }
}
#CONTENTS .flow-005ar-none__atend {
  padding: 0 20px 15px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-005ar-none__atend {
    padding: 0 calc(4 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-005ar-none-pc {
  position: relative;
  /*overflow: hidden;
  padding-left: initial;
  margin-top: initial;
  margin-bottom: initial;*/
  width: 48%;
}
#CONTENTS .flow-005ar-none-pc__item {
  padding: 0 0 16px;
  display: flex;
  gap: 16px;
  position: relative;
}
#CONTENTS .flow-005ar-none-pc__item:nth-child(odd) .flow-005__number {
  background-color: #fff;
}
#CONTENTS .flow-005ar-none-pc__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;
}
#CONTENTS .flow-005ar-none-pc__number .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
#CONTENTS .flow-005ar-none-pc__number .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
#CONTENTS .flow-005ar-none-pc__number .txt_l_sp_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
#CONTENTS .flow-005ar-none-pc__number .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
#CONTENTS .flow-005ar-none-pc__number .txt_c_sp_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
#CONTENTS .flow-005ar-none-pc__ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
#CONTENTS .flow-005ar-none-pc__atend {
  padding: 0 20px 15px;
  text-align: left;
}
#CONTENTS .flow-006 {
  position: relative;
  overflow: hidden;
  margin-top: initial;
  margin-bottom: initial;
  padding: 35px 45px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006 {
    width: 100%;
    padding: calc(10.6666666667 * var(--vw)) calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-006::after {
  content: "";
  display: block;
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 2px;
  height: calc(100% - 120px);
  background-color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006::after {
    top: calc(10.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-006__item {
  padding: 0 0 32px;
  display: flex;
  gap: 32px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006__item {
    padding: 0 0 calc(8 * var(--vw));
    gap: calc(8 * var(--vw));
  }
}
#CONTENTS .flow-006__item:nth-child(odd) .flow-005__number {
  background-color: #ECF0F6;
}
#CONTENTS .flow-006__item .inner-box {
  width: 91%;
}
#CONTENTS .flow-006__number {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  background-color: #ECF0F6;
  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-006__number {
    width: 100%;
  }
}
#CONTENTS .flow-006__number .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006__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-006__number .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006__number .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-006__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-006__number .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-006__number .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006__number .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-006__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-006__number .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-006__number2 {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  background-color: #ECF0F6;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006__number2 {
    width: 100%;
  }
}
#CONTENTS .flow-006__number2 .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006__number2 .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#CONTENTS .flow-006__number2 .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006__number2 .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-006__number2 .txt_l_sp_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006__number2 .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-006__number2 .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006__number2 .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-006__number2 .txt_c_sp_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006__number2 .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-006 .num_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 15px;
  font-family: "Shippori Mincho", serif !important;
  font-size: 19px;
  color: #2636bc;
  width: 9%;
}
#CONTENTS .flow-006 .num_box .circle {
  width: 31px;
  height: 39px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-006 .num_box_pc {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px;
    font-family: "Shippori Mincho", serif !important;
    font-size: 19px;
    color: #2636bc;
    width: 9%;
  }
  #CONTENTS .flow-006 .num_box_pc .circle {
    width: 31px;
    height: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 4px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006 .num_box_pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006 .num_box_sp {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: calc(2 * var(--vw));
    font-family: "Shippori Mincho", serif !important;
    font-size: calc(5.0666666667 * var(--vw));
    color: #2636bc;
  }
  #CONTENTS .flow-006 .num_box_sp .circle {
    width: calc(6.9333333333 * var(--vw));
    height: calc(8.5333333333 * var(--vw));
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: calc(1.0666666667 * var(--vw));
  }
}
#CONTENTS .flow-006 .ttl_box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 91%;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006 .ttl_box {
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
    padding-top: calc(3.7333333333 * var(--vw));
    padding-bottom: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-006 .ttl_box .text1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006 .ttl_box .text1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.64px;
  }
}
#CONTENTS .flow-006 .ttl_box .text1-1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.612px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006 .ttl_box .text1-1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.544px;
  }
}
#CONTENTS .flow-006 .ttl_box .text2 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #002656;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-006 .ttl_box .text2 {
    padding-top: 14px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006 .ttl_box .text2 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 0.56px;
    padding-left: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-006 .ttl_box2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 748px;
  width: 100%;
}
#CONTENTS .flow-006 .ttl_box2 .text1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006 .ttl_box2 .text1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: calc(-0.1333333333 * var(--vw));
    line-height: calc(6.8 * var(--vw));
  }
}
#CONTENTS .flow-006 .ttl_box2 .text2 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #002656;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-006 .ttl_box2 .text2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006 .ttl_box2 .text2 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 0.56px;
    padding-left: calc(3.7333333333 * var(--vw));
    padding-bottom: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-006 .tbl-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 3px;
  width: 100%;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006 .tbl-box {
    flex-direction: column;
    column-gap: initial;
  }
}
#CONTENTS .flow-006 .tbl-cobox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 1px;
  width: 49.8%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006 .tbl-cobox {
    row-gap: calc(0.1333333333 * var(--vw));
    width: 100%;
  }
}
#CONTENTS .flow-006 .tbl-th {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.64px;
  color: #fff;
  background-color: #66A1FF;
  padding: 13px 12px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006 .tbl-th {
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 1.12px;
  }
}
#CONTENTS .flow-006 .tbl-td {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #000AC5;
  padding: 16px 17px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006 .tbl-td {
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 0.56px;
  }
}
#CONTENTS .flow-006__ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006__ttl {
    font-size: 18px;
  }
}
#CONTENTS .flow-006__atend {
  padding: 0 20px 15px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-006__atend {
    padding: 0 calc(4 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007 {
  position: relative;
  overflow: hidden;
  margin-top: initial;
  margin-bottom: initial;
  padding: 35px 45px;
  /*&::after {
      content: '';
      display: block;
      position: absolute;
      top: getvwPc(36);
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 2px;
      height: calc(100% - getvwPc(120));
      background-color: $dark_blue4;
      @include media(sp) {
          top: getvw(80);
      }
  }*/
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007 {
    width: 100%;
    padding: calc(10.6666666667 * var(--vw)) calc(7.4666666667 * var(--vw));
  }
}
#CONTENTS .flow-007__item {
  padding: 0 0 32px;
  display: flex;
  gap: 32px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007__item {
    padding: 0 0 calc(8 * var(--vw));
    gap: calc(8 * var(--vw));
  }
}
#CONTENTS .flow-007__item:nth-child(odd) .flow-005__number {
  background-color: #ECF0F6;
}
#CONTENTS .flow-007__item .inner-box {
  width: 91%;
}
#CONTENTS .flow-007__number {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  background-color: #ECF0F6;
  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-007__number {
    width: 100%;
  }
}
#CONTENTS .flow-007__number .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007__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-007__number .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007__number .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007__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-007__number .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-007__number .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007__number .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007__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-007__number .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-007__number2 {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  background-color: #ECF0F6;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007__number2 {
    width: 100%;
  }
}
#CONTENTS .flow-007__number2 .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007__number2 .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#CONTENTS .flow-007__number2 .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007__number2 .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007__number2 .txt_l_sp_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007__number2 .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-007__number2 .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007__number2 .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007__number2 .txt_c_sp_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007__number2 .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-007 .num_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 15px;
  font-family: "Shippori Mincho", serif !important;
  font-size: 19px;
  color: #2636bc;
  width: 9%;
}
#CONTENTS .flow-007 .num_box .circle {
  border-radius: 50%;
  border: solid 1px #000AC5;
  width: 31px;
  height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-007 .num_box_pc {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px;
    font-family: "Shippori Mincho", serif !important;
    font-size: 19px;
    color: #2636bc;
    width: 9%;
  }
  #CONTENTS .flow-007 .num_box_pc .circle {
    width: 31px;
    height: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 4px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007 .num_box_pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007 .num_box_sp {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: calc(2 * var(--vw));
    font-family: "Shippori Mincho", serif !important;
    font-size: calc(5.0666666667 * var(--vw));
    color: #2636bc;
  }
  #CONTENTS .flow-007 .num_box_sp .circle {
    width: calc(6.9333333333 * var(--vw));
    height: calc(8.5333333333 * var(--vw));
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: calc(1.0666666667 * var(--vw));
  }
}
#CONTENTS .flow-007 .ttl_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 91%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007 .ttl_box {
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
  }
}
#CONTENTS .flow-007 .ttl_box .text1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007 .ttl_box .text1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.64px;
  }
}
#CONTENTS .flow-007 .ttl_box .text1-1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.612px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007 .ttl_box .text1-1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.544px;
  }
}
#CONTENTS .flow-007 .ttl_box .text2 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #002656;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-007 .ttl_box .text2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007 .ttl_box .text2 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 0.56px;
    padding-left: calc(3.7333333333 * var(--vw));
    padding-bottom: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-007 .ttl_box2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 748px;
  width: 100%;
}
#CONTENTS .flow-007 .ttl_box2 .text1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007 .ttl_box2 .text1 {
    font-size: calc(4.2666666667 * var(--vw));
    font-weight: 600;
    letter-spacing: calc(-0.4 * var(--vw));
    line-height: calc(6.8 * var(--vw));
  }
}
#CONTENTS .flow-007 .ttl_box2 .text1-1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.612px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007 .ttl_box2 .text1-1 {
    font-size: calc(4.2666666667 * var(--vw));
    font-weight: 600;
    letter-spacing: calc(-0.4 * var(--vw));
    line-height: calc(6.8 * var(--vw));
  }
}
#CONTENTS .flow-007 .ttl_box2 .text2 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #002656;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-007 .ttl_box2 .text2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007 .ttl_box2 .text2 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 0.56px;
    padding-left: calc(3.7333333333 * var(--vw));
    padding-bottom: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-007 .tbl-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 3px;
  width: 100%;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007 .tbl-box {
    flex-direction: column;
    column-gap: initial;
  }
}
#CONTENTS .flow-007 .tbl-cobox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 1px;
  width: 49.8%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007 .tbl-cobox {
    row-gap: calc(0.1333333333 * var(--vw));
    width: 100%;
  }
}
#CONTENTS .flow-007 .tbl-th {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.64px;
  color: #fff;
  background-color: #66A1FF;
  padding: 13px 12px;
}
#CONTENTS .flow-007 .tbl-td {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #000AC5;
  padding: 16px 17px;
  background-color: #fff;
}
#CONTENTS .flow-007__ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007__ttl {
    font-size: 18px;
  }
}
#CONTENTS .flow-007__atend {
  padding: 0 20px 15px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007__atend {
    padding: 0 calc(4 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007c {
  position: relative;
  overflow: hidden;
  margin-top: initial;
  margin-bottom: initial;
  padding: 35px 45px;
  /*&::after {
      content: '';
      display: block;
      position: absolute;
      top: getvwPc(36);
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 2px;
      height: calc(100% - getvwPc(120));
      background-color: $dark_blue4;
      @include media(sp) {
          top: getvw(80);
      }
  }*/
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c {
    width: 100%;
    padding: calc(10.6666666667 * var(--vw)) calc(7.4666666667 * var(--vw));
  }
}
#CONTENTS .flow-007c__item {
  padding: 0 0 32px;
  display: flex;
  gap: 32px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c__item {
    padding: 0 0 calc(8 * var(--vw));
    gap: calc(8 * var(--vw));
  }
}
#CONTENTS .flow-007c__item:nth-child(odd) .flow-005__number {
  background-color: #ECF0F6;
}
#CONTENTS .flow-007c__item .inner-box {
  width: 91%;
}
#CONTENTS .flow-007c__number {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  background-color: #ECF0F6;
  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-007c__number {
    width: 100%;
  }
}
#CONTENTS .flow-007c__number .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c__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-007c__number .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c__number .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007c__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-007c__number .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-007c__number .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c__number .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007c__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-007c__number .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-007c__number2 {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  background-color: #ECF0F6;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c__number2 {
    width: 100%;
  }
}
#CONTENTS .flow-007c__number2 .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c__number2 .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#CONTENTS .flow-007c__number2 .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c__number2 .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007c__number2 .txt_l_sp_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c__number2 .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-007c__number2 .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c__number2 .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007c__number2 .txt_c_sp_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c__number2 .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-007c .num_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 15px;
  font-family: "Shippori Mincho", serif !important;
  font-size: 19px;
  color: #2636bc;
  width: 9%;
}
#CONTENTS .flow-007c .num_box .circle {
  border-radius: 50%;
  border: solid 1px #000AC5;
  width: 31px;
  height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-007c .num_box_pc {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px;
    font-family: "Shippori Mincho", serif !important;
    font-size: 19px;
    color: #2636bc;
    width: 9%;
  }
  #CONTENTS .flow-007c .num_box_pc .circle {
    border-radius: 50%;
    border: solid 1px #000AC5;
    width: 31px;
    height: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 4px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c .num_box_pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c .num_box_sp {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: calc(2 * var(--vw));
    font-family: "Shippori Mincho", serif !important;
    font-size: calc(5.0666666667 * var(--vw));
    color: #2636bc;
  }
  #CONTENTS .flow-007c .num_box_sp .circle {
    border-radius: 50%;
    border: solid 1px #000AC5;
    width: calc(8.2666666667 * var(--vw));
    height: calc(8.2666666667 * var(--vw));
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: calc(1.0666666667 * var(--vw));
  }
}
#CONTENTS .flow-007c .ttl_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 91%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c .ttl_box {
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
  }
}
#CONTENTS .flow-007c .ttl_box .text1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c .ttl_box .text1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.64px;
  }
}
#CONTENTS .flow-007c .ttl_box .text2 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #002656;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-007c .ttl_box .text2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c .ttl_box .text2 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 0.56px;
    padding-left: calc(3.7333333333 * var(--vw));
    padding-bottom: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-007c .ttl_box2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 748px;
  width: 100%;
}
#CONTENTS .flow-007c .ttl_box2 .text1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.68px;
  color: #000AC5;
  line-height: 27px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c .ttl_box2 .text1 {
    font-size: calc(4.2666666667 * var(--vw));
    font-weight: 600;
    letter-spacing: calc(-0.4 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007c .ttl_box2 .text2 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #002656;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-007c .ttl_box2 .text2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c .ttl_box2 .text2 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 0.56px;
    padding-left: calc(3.7333333333 * var(--vw));
    padding-bottom: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-007c .tbl-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 3px;
  width: 100%;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c .tbl-box {
    flex-direction: column;
    column-gap: initial;
  }
}
#CONTENTS .flow-007c .tbl-cobox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 1px;
  width: 49.8%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c .tbl-cobox {
    row-gap: calc(0.1333333333 * var(--vw));
    width: 100%;
  }
}
#CONTENTS .flow-007c .tbl-th {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.64px;
  color: #fff;
  background-color: #66A1FF;
  padding: 13px 12px;
}
#CONTENTS .flow-007c .tbl-td {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #000AC5;
  padding: 16px 17px;
  background-color: #fff;
}
#CONTENTS .flow-007c__ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c__ttl {
    font-size: 18px;
  }
}
#CONTENTS .flow-007c__atend {
  padding: 0 20px 15px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007c__atend {
    padding: 0 calc(4 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007-heigan {
  position: relative;
  overflow: hidden;
  margin-top: initial;
  margin-bottom: initial;
  padding: 35px 45px;
  /*&::after {
      content: '';
      display: block;
      position: absolute;
      top: getvwPc(36);
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 2px;
      height: calc(100% - getvwPc(120));
      background-color: $dark_blue4;
      @include media(sp) {
          top: getvw(80);
      }
  }*/
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan {
    width: 100%;
    padding: calc(1.0666666667 * var(--vw)) calc(7.4666666667 * var(--vw));
  }
}
#CONTENTS .flow-007-heigan__item {
  padding: 0 0 32px;
  display: flex;
  gap: 32px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan__item {
    padding: 0 0 calc(8 * var(--vw));
    gap: calc(8 * var(--vw));
  }
}
#CONTENTS .flow-007-heigan__item:nth-child(odd) .flow-005__number {
  background-color: #ECF0F6;
}
#CONTENTS .flow-007-heigan__item .inner-box {
  width: 91%;
}
#CONTENTS .flow-007-heigan__number {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  background-color: #ECF0F6;
  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-007-heigan__number {
    width: 100%;
  }
}
#CONTENTS .flow-007-heigan__number .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan__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-007-heigan__number .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan__number .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007-heigan__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-007-heigan__number .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-007-heigan__number .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan__number .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007-heigan__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-007-heigan__number .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-007-heigan__number2 {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  background-color: #ECF0F6;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan__number2 {
    width: 100%;
  }
}
#CONTENTS .flow-007-heigan__number2 .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan__number2 .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#CONTENTS .flow-007-heigan__number2 .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan__number2 .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007-heigan__number2 .txt_l_sp_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan__number2 .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-007-heigan__number2 .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan__number2 .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-007-heigan__number2 .txt_c_sp_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan__number2 .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-007-heigan .num_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 15px;
  font-family: "Shippori Mincho", serif !important;
  font-size: 19px;
  color: #2636bc;
  width: 9%;
}
#CONTENTS .flow-007-heigan .num_box .circle {
  border-radius: 50%;
  border: solid 1px #000AC5;
  width: 31px;
  height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-007-heigan .num_box_pc {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px;
    font-family: "Shippori Mincho", serif !important;
    font-size: 19px;
    color: #2636bc;
    width: 9%;
  }
  #CONTENTS .flow-007-heigan .num_box_pc .circle {
    border-radius: 50%;
    border: solid 1px #000AC5;
    width: 31px;
    height: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 4px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan .num_box_pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan .num_box_sp {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: calc(2 * var(--vw));
    font-family: "Shippori Mincho", serif !important;
    font-size: calc(5.0666666667 * var(--vw));
    color: #2636bc;
  }
  #CONTENTS .flow-007-heigan .num_box_sp .circle {
    border-radius: 50%;
    border: solid 1px #000AC5;
    width: calc(8.2666666667 * var(--vw));
    height: calc(8.2666666667 * var(--vw));
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: calc(1.0666666667 * var(--vw));
  }
}
#CONTENTS .flow-007-heigan .ttl_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 91%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan .ttl_box {
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
  }
}
#CONTENTS .flow-007-heigan .ttl_box .text1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan .ttl_box .text1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.64px;
  }
}
#CONTENTS .flow-007-heigan .ttl_box .text2 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #002656;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-007-heigan .ttl_box .text2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan .ttl_box .text2 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 0.56px;
    padding-left: calc(3.7333333333 * var(--vw));
    padding-bottom: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-007-heigan .ttl_box2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 748px;
  width: 100%;
}
#CONTENTS .flow-007-heigan .ttl_box2 .text1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan .ttl_box2 .text1 {
    font-size: calc(4.2666666667 * var(--vw));
    font-weight: 600;
    letter-spacing: calc(-0.4 * var(--vw));
    line-height: calc(6.8 * var(--vw));
  }
}
#CONTENTS .flow-007-heigan .ttl_box2 .text2 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #002656;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-007-heigan .ttl_box2 .text2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan .ttl_box2 .text2 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 0.56px;
    padding-left: calc(3.7333333333 * var(--vw));
    padding-bottom: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-007-heigan .tbl-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 3px;
  width: 100%;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan .tbl-box {
    flex-direction: column;
    column-gap: initial;
  }
}
#CONTENTS .flow-007-heigan .tbl-cobox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 1px;
  width: 49.8%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan .tbl-cobox {
    row-gap: calc(0.1333333333 * var(--vw));
    width: 100%;
  }
}
#CONTENTS .flow-007-heigan .tbl-th {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.64px;
  color: #fff;
  background-color: #66A1FF;
  padding: 13px 12px;
}
#CONTENTS .flow-007-heigan .tbl-td {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #000AC5;
  padding: 16px 17px;
  background-color: #fff;
}
#CONTENTS .flow-007-heigan__ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan__ttl {
    font-size: 18px;
  }
}
#CONTENTS .flow-007-heigan__atend {
  padding: 0 20px 15px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-007-heigan__atend {
    padding: 0 calc(4 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-008 {
  position: relative;
  overflow: hidden;
  margin-top: initial;
  margin-bottom: initial;
  padding: 35px 0;
  /*&::after {
      content: '';
      display: block;
      position: absolute;
      top: getvwPc(36);
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 2px;
      height: calc(100% - getvwPc(120));
      background-color: $dark_blue4;
      @include media(sp) {
          top: getvw(80);
      }
  }*/
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008 {
    width: 100%;
    padding: calc(10.6666666667 * var(--vw)) calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-008__item {
  padding: 0 0 32px;
  display: flex;
  gap: 32px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008__item {
    padding: 0 0 calc(8 * var(--vw));
    gap: calc(8 * var(--vw));
  }
}
#CONTENTS .flow-008__item:nth-child(odd) .flow-005__number {
  background-color: #ECF0F6;
}
#CONTENTS .flow-008__item .inner-box {
  width: 91%;
}
#CONTENTS .flow-008__number {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  background-color: #ECF0F6;
  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-008__number {
    width: 100%;
  }
}
#CONTENTS .flow-008__number .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008__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-008__number .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008__number .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-008__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-008__number .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-008__number .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008__number .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-008__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-008__number .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-008__number2 {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  background-color: #ECF0F6;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008__number2 {
    width: 100%;
  }
}
#CONTENTS .flow-008__number2 .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008__number2 .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#CONTENTS .flow-008__number2 .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008__number2 .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-008__number2 .txt_l_sp_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008__number2 .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-008__number2 .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008__number2 .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-008__number2 .txt_c_sp_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008__number2 .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-008 .num_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 15px;
  font-family: "Shippori Mincho", serif !important;
  font-size: 19px;
  color: #2636bc;
  width: 9%;
}
#CONTENTS .flow-008 .num_box .circle {
  border-radius: 50%;
  border: solid 1px #000AC5;
  width: 31px;
  height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-008 .num_box_pc {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px;
    font-family: "Shippori Mincho", serif !important;
    font-size: 19px;
    color: #2636bc;
    width: 9%;
  }
  #CONTENTS .flow-008 .num_box_pc .circle {
    border-radius: 50%;
    border: solid 1px #000AC5;
    width: 31px;
    height: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 4px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008 .num_box_pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008 .num_box_sp {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: calc(2 * var(--vw));
    font-family: "Shippori Mincho", serif !important;
    font-size: calc(5.0666666667 * var(--vw));
    color: #2636bc;
  }
  #CONTENTS .flow-008 .num_box_sp .circle {
    border-radius: 50%;
    border: solid 1px #000AC5;
    width: calc(8.2666666667 * var(--vw));
    height: calc(8.2666666667 * var(--vw));
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: calc(1.0666666667 * var(--vw));
  }
}
#CONTENTS .flow-008 .ttl_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 91%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008 .ttl_box {
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
  }
}
#CONTENTS .flow-008 .ttl_box .text1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008 .ttl_box .text1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.64px;
  }
}
#CONTENTS .flow-008 .ttl_box .text2 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #002656;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-008 .ttl_box .text2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008 .ttl_box .text2 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 0.56px;
    padding-left: calc(3.7333333333 * var(--vw));
    padding-bottom: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-008 .ttl_box2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 748px;
  width: 100%;
}
#CONTENTS .flow-008 .ttl_box2 .text1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008 .ttl_box2 .text1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: calc(-0.1333333333 * var(--vw));
    line-height: calc(6.8 * var(--vw));
  }
}
#CONTENTS .flow-008 .ttl_box2 .text2 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #002656;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-008 .ttl_box2 .text2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008 .ttl_box2 .text2 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 0.56px;
    padding-left: calc(3.7333333333 * var(--vw));
    padding-bottom: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-008 .tbl-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 3px;
  width: 100%;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008 .tbl-box {
    flex-direction: column;
    column-gap: initial;
  }
}
#CONTENTS .flow-008 .tbl-cobox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 1px;
  width: 49.8%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008 .tbl-cobox {
    row-gap: calc(0.1333333333 * var(--vw));
    width: 100%;
  }
}
#CONTENTS .flow-008 .tbl-th {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.64px;
  color: #fff;
  background-color: #66A1FF;
  padding: 13px 12px;
}
#CONTENTS .flow-008 .tbl-td {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #000AC5;
  padding: 16px 17px;
  background-color: #fff;
}
#CONTENTS .flow-008__ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008__ttl {
    font-size: 18px;
  }
}
#CONTENTS .flow-008__atend {
  padding: 0 20px 15px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-008__atend {
    padding: 0 calc(4 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-009 {
  position: relative;
  overflow: hidden;
  margin-top: initial;
  margin-bottom: initial;
  padding: 45px 45px;
  /*&::after {
      content: '';
      display: block;
      position: absolute;
      top: getvwPc(36);
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 2px;
      height: calc(100% - getvwPc(120));
      background-color: $dark_blue4;
      @include media(sp) {
          top: getvw(80);
      }
  }*/
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 {
    width: 100%;
    padding: calc(10.6666666667 * var(--vw)) calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-009__item {
  padding: 0 0 32px;
  display: flex;
  gap: 32px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009__item {
    padding: 0 0 calc(8 * var(--vw));
    gap: calc(8 * var(--vw));
  }
}
#CONTENTS .flow-009__item:nth-child(odd) .flow-005__number {
  background-color: #ECF0F6;
}
#CONTENTS .flow-009__item .inner-box {
  width: 91%;
}
#CONTENTS .flow-009__number {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  background-color: #ECF0F6;
  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-009__number {
    width: 100%;
  }
}
#CONTENTS .flow-009__number .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009__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-009__number .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009__number .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-009__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-009__number .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-009__number .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009__number .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-009__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-009__number .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-009__number2 {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  background-color: #ECF0F6;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009__number2 {
    width: 100%;
  }
}
#CONTENTS .flow-009__number2 .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009__number2 .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#CONTENTS .flow-009__number2 .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009__number2 .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-009__number2 .txt_l_sp_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009__number2 .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-009__number2 .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009__number2 .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-009__number2 .txt_c_sp_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009__number2 .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-009 .num_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 15px;
  font-family: "Shippori Mincho", serif !important;
  font-size: 19px;
  color: #2636bc;
  width: 9%;
}
#CONTENTS .flow-009 .num_box .circle {
  border-radius: 50%;
  border: solid 1px #000AC5;
  width: 31px;
  height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-009 .num_box_pc {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px;
    font-family: "Shippori Mincho", serif !important;
    font-size: 19px;
    color: #2636bc;
    width: 9%;
  }
  #CONTENTS .flow-009 .num_box_pc .circle {
    border-radius: 50%;
    border: solid 1px #000AC5;
    width: 31px;
    height: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 4px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .num_box_pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .num_box_sp {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: calc(2 * var(--vw));
    font-family: "Shippori Mincho", serif !important;
    font-size: calc(5.0666666667 * var(--vw));
    color: #2636bc;
  }
  #CONTENTS .flow-009 .num_box_sp .circle {
    border-radius: 50%;
    border: solid 1px #000AC5;
    width: calc(8.2666666667 * var(--vw));
    height: calc(8.2666666667 * var(--vw));
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: calc(1.0666666667 * var(--vw));
  }
}
#CONTENTS .flow-009 .ttl_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 91%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .ttl_box {
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
  }
}
#CONTENTS .flow-009 .ttl_box .text1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .ttl_box .text1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.64px;
  }
}
#CONTENTS .flow-009 .ttl_box .text2 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #002656;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-009 .ttl_box .text2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .ttl_box .text2 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 0.56px;
    padding-left: calc(3.7333333333 * var(--vw));
    padding-bottom: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-009 .ttl_box2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 748px;
  width: 100%;
}
#CONTENTS .flow-009 .ttl_box2 .text1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .ttl_box2 .text1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: calc(-0.1333333333 * var(--vw));
    line-height: calc(6.8 * var(--vw));
  }
}
#CONTENTS .flow-009 .ttl_box2 .text2 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #002656;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-009 .ttl_box2 .text2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .ttl_box2 .text2 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 0.56px;
    padding-left: calc(3.7333333333 * var(--vw));
    padding-bottom: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-009 .tbl-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 3px;
  width: 100%;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .tbl-box {
    flex-direction: column;
    column-gap: initial;
  }
}
#CONTENTS .flow-009 .tbl-cobox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 1px;
  width: 49.8%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .tbl-cobox {
    row-gap: calc(0.1333333333 * var(--vw));
    width: 100%;
  }
}
#CONTENTS .flow-009 .tbl-th {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.64px;
  color: #fff;
  background-color: #66A1FF;
  padding: 13px 12px;
}
#CONTENTS .flow-009 .tbl-td {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #000AC5;
  padding: 16px 17px;
  background-color: #fff;
}
#CONTENTS .flow-009__ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009__ttl {
    font-size: 18px;
  }
}
#CONTENTS .flow-009__atend {
  padding: 0 20px 15px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009__atend {
    padding: 0 calc(4 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-009 table, #CONTENTS .flow-009 td, #CONTENTS .flow-009 th {
  /*@include media(pc) {
      border: solid 4px #fff;
      border-collapse: collapse;
  }*/
}
#CONTENTS .flow-009 .hikki_tbl {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-009 .hikki_tbl {
    border: solid 4px #fff;
    border-collapse: collapse;
  }
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-009 .hikki_tbl td, #CONTENTS .flow-009 .hikki_tbl th {
    border: solid 4px #fff;
    border-collapse: collapse;
  }
}
#CONTENTS .flow-009 .hikki_tbl th {
  background-color: #66A1FF;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
  color: #fff;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .hikki_tbl th {
    font-size: calc(3.7333333333 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#CONTENTS .flow-009 .hikki_tbl td {
  font-size: 16px;
  padding: 20px 16px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .hikki_tbl td {
    font-size: calc(3.7333333333 * var(--vw));
    padding: calc(4.2666666667 * var(--vw)) 0 calc(4.2666666667 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-009 .hikki_tbl .th1 {
  width: 16%;
}
#CONTENTS .flow-009 .hikki_tbl .th2 {
  width: 42%;
}
#CONTENTS .flow-009 .hikki_tbl .td1 {
  background-color: #E6EAF0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .hikki_tbl .td1 {
    width: 25%;
    border-right: solid 4px #fff;
    border-bottom: solid 4px #fff;
  }
}
#CONTENTS .flow-009 .hikki_tbl .td2 {
  background-color: #ECF0F6;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .hikki_tbl .td2 {
    width: 75%;
    border-bottom: solid 4px #fff;
  }
}
#CONTENTS .flow-009 .hikki_tbl .td1_e {
  background-color: #E6EAF0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .hikki_tbl .td1_e {
    border-right: solid 4px #fff;
  }
}
#CONTENTS .flow-009 .hikki_tbl .td2_e {
  background-color: #ECF0F6;
}
#CONTENTS .flow-009 .hikki_tbl2 {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-009 .hikki_tbl2 {
    border-collapse: collapse;
  }
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-009 .hikki_tbl2 td, #CONTENTS .flow-009 .hikki_tbl2 th {
    border-collapse: collapse;
  }
}
#CONTENTS .flow-009 .hikki_tbl2 th {
  background-color: #66A1FF;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
  color: #fff;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .hikki_tbl2 th {
    font-size: calc(3.7333333333 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#CONTENTS .flow-009 .hikki_tbl2 td {
  font-size: 16px;
  padding: 20px 16px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .hikki_tbl2 td {
    font-size: calc(3.7333333333 * var(--vw));
    padding: calc(4.2666666667 * var(--vw)) 0 calc(4.2666666667 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-009 .hikki_tbl2 .bd-u {
  border-top: solid 4px #fff;
}
#CONTENTS .flow-009 .hikki_tbl2 .bd-r {
  border-right: solid 4px #fff;
}
#CONTENTS .flow-009 .hikki_tbl2 .bd-lr {
  border-left: solid 4px #fff;
  border-right: solid 4px #fff;
}
#CONTENTS .flow-009 .hikki_tbl2 .th1 {
  width: 142px;
}
#CONTENTS .flow-009 .hikki_tbl2 .th2 {
  width: 363px;
}
#CONTENTS .flow-009 .hikki_tbl2 .td1 {
  background-color: #E6EAF0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .hikki_tbl2 .td1 {
    width: 25%;
    border-right: solid 4px #fff;
    border-bottom: solid 4px #fff;
  }
}
#CONTENTS .flow-009 .hikki_tbl2 .td2 {
  background-color: #ECF0F6;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .hikki_tbl2 .td2 {
    width: 75%;
    border-bottom: solid 4px #fff;
  }
}
#CONTENTS .flow-009 .hikki_tbl2 .td1_e {
  background-color: #E6EAF0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-009 .hikki_tbl2 .td1_e {
    border-right: solid 4px #fff;
  }
}
#CONTENTS .flow-009 .hikki_tbl2 .td2_e {
  background-color: #ECF0F6;
}
#CONTENTS .flow-010 {
  position: relative;
  overflow: hidden;
  margin-top: initial;
  margin-bottom: initial;
  padding: 32px 32px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 {
    width: 100%;
    padding: calc(7.4666666667 * var(--vw)) calc(6.4 * var(--vw));
  }
}
#CONTENTS .flow-010__item {
  padding: 0 0 32px;
  display: flex;
  gap: 32px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010__item {
    padding: 0 0 calc(8 * var(--vw));
    gap: calc(8 * var(--vw));
  }
}
#CONTENTS .flow-010__item:nth-child(odd) .flow-005__number {
  background-color: #ECF0F6;
}
#CONTENTS .flow-010__item .inner-box {
  width: 91%;
}
#CONTENTS .flow-010__number {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  background-color: #ECF0F6;
  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-010__number {
    width: 100%;
  }
}
#CONTENTS .flow-010__number .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010__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-010__number .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010__number .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-010__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-010__number .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-010__number .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010__number .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-010__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-010__number .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-010__number2 {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  background-color: #ECF0F6;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010__number2 {
    width: 100%;
  }
}
#CONTENTS .flow-010__number2 .txt {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0;
  color: #002656;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010__number2 .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#CONTENTS .flow-010__number2 .txt_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010__number2 .txt_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-010__number2 .txt_l_sp_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010__number2 .txt_l_sp_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: center;
  }
}
#CONTENTS .flow-010__number2 .txt_c {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010__number2 .txt_c {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-010__number2 .txt_c_sp_l {
  font-size: 16px;
  line-height: 28px;
  color: #002656;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010__number2 .txt_c_sp_l {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    text-align: left;
  }
}
#CONTENTS .flow-010 .num_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 15px;
  font-family: "Shippori Mincho", serif !important;
  font-size: 19px;
  color: #2636bc;
  width: 9%;
}
#CONTENTS .flow-010 .num_box .circle {
  border-radius: 50%;
  border: solid 1px #000AC5;
  width: 31px;
  height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-010 .num_box_pc {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px;
    font-family: "Shippori Mincho", serif !important;
    font-size: 19px;
    color: #2636bc;
    width: 9%;
  }
  #CONTENTS .flow-010 .num_box_pc .circle {
    border-radius: 50%;
    border: solid 1px #000AC5;
    width: 31px;
    height: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 4px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .num_box_pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .num_box_sp {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: calc(2 * var(--vw));
    font-family: "Shippori Mincho", serif !important;
    font-size: calc(5.0666666667 * var(--vw));
    color: #2636bc;
  }
  #CONTENTS .flow-010 .num_box_sp .circle {
    border-radius: 50%;
    border: solid 1px #000AC5;
    width: calc(8.2666666667 * var(--vw));
    height: calc(8.2666666667 * var(--vw));
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: calc(1.0666666667 * var(--vw));
  }
}
#CONTENTS .flow-010 .ttl_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 91%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .ttl_box {
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
  }
}
#CONTENTS .flow-010 .ttl_box .text1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .ttl_box .text1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.64px;
  }
}
#CONTENTS .flow-010 .ttl_box .text2 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #002656;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-010 .ttl_box .text2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .ttl_box .text2 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 0.56px;
    padding-left: calc(3.7333333333 * var(--vw));
    padding-bottom: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-010 .ttl_box2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 748px;
  width: 100%;
}
#CONTENTS .flow-010 .ttl_box2 .text1 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .ttl_box2 .text1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: calc(-0.1333333333 * var(--vw));
    line-height: calc(6.8 * var(--vw));
  }
}
#CONTENTS .flow-010 .ttl_box2 .text2 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #002656;
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-010 .ttl_box2 .text2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .ttl_box2 .text2 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "FP-ヒラギノUD角ゴ StdN W3", "ヒラギノ角ゴ ProN", "メイリオ", meiryo, sans-serif !important;
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: 0.56px;
    padding-left: calc(3.7333333333 * var(--vw));
    padding-bottom: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .flow-010__ttl {
  font-size: 32px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  line-height: 51.2px;
  letter-spacing: 1.92px;
  margin-bottom: 10px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010__ttl {
    font-size: calc(5.8666666667 * var(--vw));
    font-family: "Shippori Mincho", serif !important;
    font-weight: 600;
    margin-bottom: calc(2.6666666667 * var(--vw));
    line-height: calc(9.3866666667 * var(--vw));
    letter-spacing: 1.32px;
  }
}
#CONTENTS .flow-010__atend {
  padding: 0 20px 15px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010__atend {
    padding: 0 calc(4 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .flow-010 .hash-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .hash-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
#CONTENTS .flow-010 .hash-box .hashtag {
  padding: 0px 12px;
  border-radius: 100vmax;
  border: solid 1px #2636bc;
  font-size: 14px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .hash-box .hashtag {
    padding: calc(0 * var(--vw)) calc(3.2 * var(--vw));
    font-size: calc(2.6666666667 * var(--vw));
    color: #000AC5;
  }
}
#CONTENTS .flow-010 .hash-box2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .hash-box2 {
    flex-direction: column;
    align-items: flex-start;
  }
}
#CONTENTS .flow-010 .hash-box2 .hashtag {
  padding: 0px 12px;
  border-radius: 100vmax;
  border: solid 1px #2636bc;
  font-size: 14px;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .hash-box2 .hashtag {
    padding: calc(0 * var(--vw)) calc(3.2 * var(--vw));
    font-size: calc(2.6666666667 * var(--vw));
    color: #000AC5;
  }
}
#CONTENTS .flow-010 .bu-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .bu-box {
    margin-top: calc(2.1333333333 * var(--vw));
  }
}
#CONTENTS .flow-010 .bu-box-cobox {
  text-align: center;
  width: 250px;
  font-size: 20px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .bu-box-cobox {
    width: calc(33.3333333333 * var(--vw));
    font-size: calc(2.6666666667 * var(--vw));
    letter-spacing: calc(-0.5333333333 * var(--vw));
    color: #000AC5;
    font-family: "Shippori Mincho", serif !important;
    font-weight: 600;
  }
}
#CONTENTS .flow-010 .bu-box-cobox-img {
  width: 59%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .bu-box_pc {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-010 .bu-box_pc {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-010 .bu-box_pc-cobox {
    text-align: center;
    width: 250px;
    font-size: 20px;
    font-family: "Shippori Mincho", serif !important;
    font-weight: 600;
    color: #000AC5;
  }
  #CONTENTS .flow-010 .bu-box_pc-cobox-img {
    width: 59%;
  }
}
@media only screen and (min-width: 768px) {
  #CONTENTS .flow-010 .bu-box_sp {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .bu-box_sp {
    margin-top: calc(2.1333333333 * var(--vw));
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .flow-010 .bu-box_sp-cobox-img {
    width: 100%;
  }
}
#CONTENTS .flow-bluegray-box {
  background-color: #66A1FF;
  border-radius: 6px;
  text-align: center;
  color: #fff;
}
#CONTENTS .flow-bluegray-box-pc {
  background-color: #66A1FF;
  text-align: center;
  color: #fff;
  padding: 5px;
}
#CONTENTS .flow-box {
  display: flex;
  justify-content: space-between;
  position: relative;
}
#CONTENTS .ed-box {
  display: flex;
  justify-content: space-between;
}
@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);
}
@media only screen and (max-width: 767px) {
  #CONTENTS .arrow2 {
    padding-bottom: calc(5.3333333333 * var(--vw)) !important;
  }
}
#CONTENTS .arrow2:before,
#CONTENTS .arrow2:after {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background-color: #000AC5;
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .arrow2:before,
  #CONTENTS .arrow2:after {
    width: calc(3.7333333333 * var(--vw));
    height: calc(0.5333333333 * var(--vw));
    top: calc(-0.5333333333 * var(--vw));
  }
}
#CONTENTS .arrow2:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
#CONTENTS .arrow2:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  #CONTENTS .arrow3 {
    padding-bottom: calc(5.3333333333 * var(--vw)) !important;
  }
}
#CONTENTS .arrow3:before,
#CONTENTS .arrow3:after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background-color: #000AC5;
  position: absolute;
  top: -1.8px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .arrow3:before,
  #CONTENTS .arrow3:after {
    width: calc(4.8 * var(--vw));
    height: calc(0.5333333333 * var(--vw));
    top: calc(-0.48 * var(--vw));
  }
}
#CONTENTS .arrow3:before {
  transform: rotate(60deg);
  -webkit-transform: rotate(60deg);
}
#CONTENTS .arrow3:after {
  transform: rotate(-60deg);
  -webkit-transform: rotate(-60deg);
}
#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 .accordion-004 dl {
  margin: inherit;
}
#CONTENTS .accordion-004 dl dt {
  padding: 25px 45px 25px 0;
  cursor: pointer;
  position: relative;
  font-family: "Shippori Mincho", serif !important;
  font-size: 24px;
  font-weight: 700;
  color: #000AC5;
  margin: 10px 0;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-004 dl dt {
    padding: calc(6.6666666667 * var(--vw)) calc(9.3333333333 * var(--vw)) calc(6.6666666667 * var(--vw)) 0;
    font-size: calc(5.3333333333 * var(--vw));
    margin: calc(1.3333333333 * var(--vw)) 0;
  }
}
#CONTENTS .accordion-004 dl dt::before {
  /*
  content: 'Q';
  position: absolute;
  left: 0;
  top: 23px;
  font-weight: bold;
  @include media(sp) {
  top: 16px;
  }
  */
}
#CONTENTS .accordion-004 dl dt.open .accordion-004__toggle::after {
  transform: rotate(0deg);
}
#CONTENTS .accordion-004 dl dd {
  display: none;
  margin-left: initial;
  position: relative;
}
#CONTENTS .accordion-004 dl dd::before {
  /* content: 'A';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  */
}
#CONTENTS .accordion-004__toggle {
  border: solid 1px #000AC5;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 32px;
  height: 32px;
  aspect-ratio: 1;
  padding: 6px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-004__toggle {
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: calc(8.5333333333 * var(--vw));
    height: calc(8.5333333333 * var(--vw));
    padding: calc(1.6 * var(--vw));
  }
}
#CONTENTS .accordion-004__toggle::before, #CONTENTS .accordion-004__toggle::after {
  transition: 0.3s ease;
  width: 35%;
  height: 1px;
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #000AC5;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-004__toggle::before, #CONTENTS .accordion-004__toggle::after {
    top: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .accordion-004__toggle::after {
  transform: rotate(-90deg);
}
#CONTENTS .accordion-004 .acc-box {
  margin-left: 8px;
  letter-spacing: -0.96px;
  line-height: 38.4px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-004 .acc-box {
    margin-left: calc(2.1333333333 * var(--vw));
    letter-spacing: -0.96px;
    line-height: calc(7.68 * var(--vw));
  }
}
#CONTENTS .accordion-004 .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-004 .acc-title__txt {
    font-size: calc(5.3333333333 * var(--vw));
    line-height: calc(9.6 * var(--vw));
  }
}
#CONTENTS .accordion-004 .acc-day__txt {
  font-size: 16px;
  line-height: 28px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-004 .acc-day__txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#CONTENTS .accordion-004 .acc-cont__txt {
  font-size: 14px;
  line-height: 25.2px;
  padding: 0 8px 25px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .accordion-004 .acc-cont__txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.72 * var(--vw));
    padding: 0 calc(2.1333333333 * var(--vw)) calc(3.3333333333 * var(--vw));
  }
}
#CONTENTS .accordion-004 .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-004 .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-004 .acc-cont__box .cb_right {
    width: 100%;
  }
}
#CONTENTS .accordion-004 .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-004 .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-004 .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-004 .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-004 .acc-cont__box .cb_right_l_1 {
  width: 0%;
}
#CONTENTS .accordion-004 .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-004 .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 .foot-mypage2 {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
#CONTENTS .foot-mypage2__imgtxt {
  text-align: center;
  background-image: url(/assets/img/top/footer_mv.png);
  background-size: cover;
  background-position: top center;
  order: 3;
}
#CONTENTS .foot-mypage2__imgtxt img {
  width: 1280px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .foot-mypage2__imgtxt {
    background-image: url(/assets/img/top/footer_mv_sp.png);
    background-size: 100%;
    background-position: bottom center;
    order: 1;
  }
}
#CONTENTS .foot-mypage2__imgtxt .footer_bg_grd {
  width: 100%;
}
#CONTENTS .foot-mypage2__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-mypage2__title {
    font-weight: 700;
    font-size: calc(5.3333333333 * var(--vw));
    order: 2;
    margin-top: calc(24 * var(--vw)) !important;
  }
}
#CONTENTS .foot-mypage2 .footer-link {
  width: 100%;
}
#CONTENTS .foot-mypage2 .footer-link_btn {
  border-bottom: solid 0.5px rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}
#CONTENTS .foot-mypage2 .footer-link_btn__txt {
  width: 95.3%;
  text-align: left;
  padding: 25px 0 25px 22px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  line-height: 38px;
  letter-spacing: 0.96px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .foot-mypage2 .footer-link_btn__txt {
    width: 82%;
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    letter-spacing: 0.64px;
    font-weight: 600;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(5.3333333333 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .foot-mypage2 .footer-link_btn__txt2 {
  width: 95.3%;
  text-align: left;
  padding: 25px 0 25px 22px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  line-height: 38px;
  letter-spacing: 0.96px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .foot-mypage2 .footer-link_btn__txt2 {
    width: 82%;
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    letter-spacing: -0.64px;
    font-weight: 600;
    padding: calc(5.3333333333 * var(--vw)) 0 calc(5.3333333333 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#CONTENTS .foot-mypage2 .footer-link_btn .btn-mark {
  width: 4.7%;
  display: flex;
  align-items: center;
  padding: 15px 15px 15px 0;
}
#CONTENTS .foot-mypage2 .footer-link_btn .btn-mark img {
  width: 40px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .foot-mypage2 .footer-link_btn .btn-mark img {
    width: calc(6.4 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .foot-mypage2 .footer-link_btn .btn-mark {
    text-align: right;
    width: 18%;
    padding: calc(5.3333333333 * var(--vw)) calc(2.6666666667 * var(--vw)) calc(5.3333333333 * var(--vw)) 0;
    justify-content: flex-end;
  }
}
#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_left_fd2 {
  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_fd2:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_left_fd2 {
    width: calc(85.0666666667 * var(--vw));
    height: calc(15.2 * var(--vw));
    font-size: calc(4 * var(--vw));
  }
}
#CONTENTS .mypage-btn__box_left_fd2::after {
  content: "";
  position: absolute;
  right: 90px;
  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_fd2::after {
    right: calc(18.6666666667 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn__box_left_fd2 img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn__box_left_fd2 img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn__box_left_fd2:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_left_fd2:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_left_fd2: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_right_fd2 {
  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_fd2 {
    width: calc(85.0666666667 * var(--vw));
    height: calc(15.2 * var(--vw));
    font-size: calc(4 * var(--vw));
  }
}
#CONTENTS .mypage-btn__box_right_fd2::after {
  content: "";
  position: absolute;
  right: 82px;
  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_fd2::after {
    right: calc(16.5333333333 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn__box_right_fd2 img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn__box_right_fd2 img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn__box_right_fd2:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_right_fd2:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_right_fd2:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn__box_right_fd3 {
  position: relative;
  width: 213px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  /*
  &::after{
      content: "";
      position: absolute;
      //top: 35%;
      right: getvwPc(82);
      display: inline-block;
      width: getvwPc(13);
      height: getvwPc(11);
      background-image: url('../img/top/link_icon.svg');
      background-position: center;
      background-size: contain;                    
      z-index: 10;
      @include media(sp) {
          right: getvw(124);
          width: getvw(26);
          height: getvw(22);                        
      }
  }*/
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_right_fd3 {
    width: calc(56.8 * var(--vw));
    height: calc(11.2 * var(--vw));
  }
}
#CONTENTS .mypage-btn__box_right_fd3 img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn__box_right_fd3 img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn__box_right_fd3:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_right_fd3:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__box_right_fd3: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 .mypage-btn__cobox .txt_w {
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  margin-top: 14px !important;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn__cobox .txt_w {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(5.6 * var(--vw));
    margin-top: calc(3.2 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn2__single {
  width: 245px;
  margin-top: 25px !important;
  display: flex;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__single {
    width: calc(52.6666666667 * var(--vw));
    margin-top: calc(4 * var(--vw)) !important;
    justify-content: center;
  }
}
#CONTENTS .mypage-btn2__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-btn2__single-210:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__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-btn2__single-210::after {
  content: ".";
  color: #fff;
  position: absolute;
  top: -2px;
  right: 17px;
  font-size: 40px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__single-210::after {
    top: -13%;
    right: calc(3.4666666667 * var(--vw));
  }
}
#CONTENTS .mypage-btn2__single-210:hover::after {
  animation: blinkBorder 0.6s ease infinite alternate;
}
#CONTENTS .mypage-btn2__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-btn2__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-btn2__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-btn2__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-btn2__single-210_fd:hover::after {
    animation: blinkBorder 0.36s ease infinite alternate;
  }
}
#CONTENTS .mypage-btn2__single-210_fd img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn2__single-210_fd img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn2__single-210_fd:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__single-210_fd:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__single-210_fd:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn2__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-btn2__single .ab-txt {
    font-size: calc(3.2 * var(--vw));
    left: calc(50% + 12px);
    width: 100%;
  }
}
#CONTENTS .mypage-btn2__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-btn2__single .ab-txt2 {
    top: 45%;
    font-size: calc(3.2 * var(--vw));
    width: 100%;
  }
}
#CONTENTS .mypage-btn2__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-btn2__single-210outer:hover {
  background-size: 0 0, cover;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__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-btn2__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-btn2__single-210outer::after {
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
    right: calc(4 * var(--vw));
  }
}
#CONTENTS .mypage-btn2__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 60px;
  margin: 75px 0 400px !important;
  order: 2;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__box {
    order: 3;
    gap: calc(8 * var(--vw));
    margin: calc(20 * var(--vw)) 0 calc(45.3333333333 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn2__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-btn2__box_left:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__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-btn2__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-btn2__box_left::after {
    right: calc(5.3333333333 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn2__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-btn2__box_left_fd:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__box_left_fd {
    width: calc(85.0666666667 * var(--vw));
    height: calc(15.2 * var(--vw));
    font-size: calc(4 * var(--vw));
  }
}
#CONTENTS .mypage-btn2__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-btn2__box_left_fd::after {
    right: calc(5.3333333333 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn2__box_left_fd img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn2__box_left_fd img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn2__box_left_fd:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__box_left_fd:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__box_left_fd:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn2__box_left_fd2 {
  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-btn2__box_left_fd2:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__box_left_fd2 {
    width: calc(85.0666666667 * var(--vw));
    height: calc(15.2 * var(--vw));
    font-size: calc(4 * var(--vw));
  }
}
#CONTENTS .mypage-btn2__box_left_fd2::after {
  content: "";
  position: absolute;
  right: 90px;
  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-btn2__box_left_fd2::after {
    right: calc(18.6666666667 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn2__box_left_fd2 img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn2__box_left_fd2 img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn2__box_left_fd2:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__box_left_fd2:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__box_left_fd2:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn2__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-btn2__box .ab-txt {
    font-size: calc(3.2 * var(--vw));
    left: calc(50% + 12px);
    width: 100%;
  }
}
#CONTENTS .mypage-btn2__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-btn2__box .ab-txt2 {
    top: 50%;
    font-size: calc(4 * var(--vw));
    width: 100%;
  }
}
#CONTENTS .mypage-btn2__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-btn2__box_right:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__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-btn2__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-btn2__box_right::after {
    right: calc(5.3333333333 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn2__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-btn2__box_right_fd {
    width: calc(85.0666666667 * var(--vw));
    height: calc(15.2 * var(--vw));
    font-size: calc(4 * var(--vw));
  }
}
#CONTENTS .mypage-btn2__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-btn2__box_right_fd::after {
    right: calc(5.3333333333 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn2__box_right_fd img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn2__box_right_fd img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn2__box_right_fd:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__box_right_fd:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__box_right_fd:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn2__box_right_fd2 {
  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-btn2__box_right_fd2 {
    width: calc(85.0666666667 * var(--vw));
    height: calc(15.2 * var(--vw));
    font-size: calc(4 * var(--vw));
  }
}
#CONTENTS .mypage-btn2__box_right_fd2::after {
  content: "";
  position: absolute;
  right: 82px;
  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-btn2__box_right_fd2::after {
    right: calc(16.5333333333 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn2__box_right_fd2 img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn2__box_right_fd2 img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn2__box_right_fd2:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__box_right_fd2:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__box_right_fd2:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn2__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-btn2__box .ab-txt {
    font-size: calc(3.2 * var(--vw));
    left: calc(50% + 12px);
    width: 100%;
  }
}
#CONTENTS .mypage-btn2__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-btn2__box .ab-txt2 {
    top: 48%;
    font-size: calc(4 * var(--vw));
    width: 100%;
  }
}
#CONTENTS .mypage-btn2__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-btn2__cobox {
    width: 100%;
  }
}
#CONTENTS .mypage-btn2__cobox .txt {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  margin-top: 16px !important;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__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 .mypage-btn2__cobox .txt_w {
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  margin-top: 14px !important;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__cobox .txt_w {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(5.6 * var(--vw));
    margin-top: calc(3.2 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn2__cobox2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 415px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__cobox2 {
    width: 100%;
    align-items: center;
  }
}
#CONTENTS .mypage-btn2__cobox2 .txt {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  margin-top: 16px !important;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__cobox2 .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    margin-top: calc(3.7333333333 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn2__cobox2 .txt_w {
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  margin-top: 14px !important;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__cobox2 .txt_w {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(5.6 * var(--vw));
    margin-top: calc(3.2 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn2__cobox2_pc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 415px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__cobox2_pc {
    width: 100%;
    align-items: center;
    display: none !important;
  }
}
#CONTENTS .mypage-btn2__cobox2_pc .txt {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  margin-top: 16px !important;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__cobox2_pc .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    margin-top: calc(3.7333333333 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn2__cobox2_pc .txt_w {
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  margin-top: 14px !important;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__cobox2_pc .txt_w {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(5.6 * var(--vw));
    margin-top: calc(3.2 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn2__cobox2_sp {
  /*flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;*/
}
@media only screen and (min-width: 768px) {
  #CONTENTS .mypage-btn2__cobox2_sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__cobox2_sp {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    margin-top: calc(4.2666666667 * var(--vw));
  }
}
#CONTENTS .mypage-btn2__cobox2_sp .txt {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  margin-top: 16px !important;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__cobox2_sp .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    margin-top: calc(3.7333333333 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn2__cobox2_sp .txt_w {
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  margin-top: 14px !important;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn2__cobox2_sp .txt_w {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(5.6 * var(--vw));
    margin-top: calc(3.2 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn3__single {
  width: 245px;
  margin-top: 25px !important;
  display: flex;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__single {
    width: calc(52.6666666667 * var(--vw));
    margin-top: calc(4 * var(--vw)) !important;
    justify-content: center;
  }
}
#CONTENTS .mypage-btn3__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-btn3__single-210:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__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-btn3__single-210::after {
  content: ".";
  color: #fff;
  position: absolute;
  top: -2px;
  right: 17px;
  font-size: 40px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__single-210::after {
    top: -13%;
    right: calc(3.4666666667 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__single-210:hover::after {
  animation: blinkBorder 0.6s ease infinite alternate;
}
#CONTENTS .mypage-btn3__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-btn3__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-btn3__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-btn3__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-btn3__single-210_fd:hover::after {
    animation: blinkBorder 0.36s ease infinite alternate;
  }
}
#CONTENTS .mypage-btn3__single-210_fd img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn3__single-210_fd img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn3__single-210_fd:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__single-210_fd:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__single-210_fd:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn3__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-btn3__single .ab-txt {
    font-size: calc(3.2 * var(--vw));
    left: calc(50% + 12px);
    width: 100%;
  }
}
#CONTENTS .mypage-btn3__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-btn3__single .ab-txt2 {
    top: 45%;
    font-size: calc(3.2 * var(--vw));
    width: 100%;
  }
}
#CONTENTS .mypage-btn3__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-btn3__single-210outer:hover {
  background-size: 0 0, cover;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__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-btn3__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-btn3__single-210outer::after {
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
    right: calc(4 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 60px;
  margin: 75px 0 400px !important;
  order: 2;
  /*            
  .ab-txt{
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: getvwPc(14);
      font-weight: 600;
      font-family: $font-serif;
      text-decoration: none;
      z-index: 10;
      color: #fff;
      @include media(sp) {
          font-size: getvw(24);
          left: calc(50% + 12px); //left 12.5移動分加算
          width: 100%;
      }                
  }
  .ab-txt2{
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: getvwPc(20);
      font-weight: 600;
      font-family: $font-serif;
      text-decoration: none;
      z-index: 10;
      color: #fff;
      @include media(sp) {
          top: 48%;
          font-size: getvw(30);
          //left: calc(50% + 12px); //left 12.5移動分加算
          width: 100%;
      }                
  }            
    */
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box {
    order: 3;
    gap: calc(8 * var(--vw));
    margin: calc(20 * var(--vw)) 0 calc(45.3333333333 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn3__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-btn3__box_left:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__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-btn3__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-btn3__box_left::after {
    right: calc(5.3333333333 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__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-btn3__box_left_fd:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_left_fd {
    width: calc(85.0666666667 * var(--vw));
    height: calc(15.2 * var(--vw));
    font-size: calc(4 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__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-btn3__box_left_fd::after {
    right: calc(5.3333333333 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__box_left_fd img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn3__box_left_fd img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn3__box_left_fd:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_left_fd:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_left_fd:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn3__box_left_fd2 {
  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-btn3__box_left_fd2:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_left_fd2 {
    width: calc(85.0666666667 * var(--vw));
    height: calc(15.2 * var(--vw));
    font-size: calc(4 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__box_left_fd2::after {
  content: "";
  position: absolute;
  right: 90px;
  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-btn3__box_left_fd2::after {
    right: calc(18.6666666667 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__box_left_fd2 img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn3__box_left_fd2 img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn3__box_left_fd2:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_left_fd2:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_left_fd2:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn3__box_left_fd4 {
  position: relative;
  width: 448px;
  height: 86px;
  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;
  /*
  &::after{
      content: "";
      position: absolute;
      //top: 35%;
      right: getvwPc(90);
      display: inline-block;
      width: getvwPc(13);
      height: getvwPc(11);
      background-image: url('../img/top/link_icon.svg');
      background-position: center;
      background-size: contain;                    
      z-index: 10;
      @include media(sp) {
          right: getvw(140);
          width: getvw(26);
          height: getvw(22);                        
      }
  }
      */
}
#CONTENTS .mypage-btn3__box_left_fd4:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_left_fd4 {
    width: calc(76.5333333333 * var(--vw));
    height: calc(14.6666666667 * var(--vw));
    font-size: calc(4.2666666667 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__box_left_fd4 img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn3__box_left_fd4 img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn3__box_left_fd4:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_left_fd4:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_left_fd4:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn3__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-btn3__box .ab-txt {
    font-size: calc(3.2 * var(--vw));
    left: calc(50% + 12px);
    width: 100%;
  }
}
#CONTENTS .mypage-btn3__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-btn3__box .ab-txt2 {
    top: 50%;
    font-size: calc(4 * var(--vw));
    width: 100%;
  }
}
#CONTENTS .mypage-btn3__box .ab-txt3 {
  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;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box .ab-txt3 {
    top: 50%;
    font-size: calc(4 * var(--vw));
    width: 100%;
    gap: calc(3.7333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__box .ab-txt3 .img {
  position: relative;
  width: 17px;
  height: 14px;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box .ab-txt3 .img {
    width: 14px;
    height: 12px;
  }
}
#CONTENTS .mypage-btn3__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-btn3__box_right:hover {
  background-size: 0 0, 100%;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__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-btn3__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-btn3__box_right::after {
    right: calc(5.3333333333 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__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-btn3__box_right_fd {
    width: calc(85.0666666667 * var(--vw));
    height: calc(15.2 * var(--vw));
    font-size: calc(4 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__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-btn3__box_right_fd::after {
    right: calc(5.3333333333 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__box_right_fd img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn3__box_right_fd img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn3__box_right_fd:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_right_fd:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_right_fd:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn3__box_right_fd2 {
  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-btn3__box_right_fd2 {
    width: calc(85.0666666667 * var(--vw));
    height: calc(15.2 * var(--vw));
    font-size: calc(4 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__box_right_fd2::after {
  content: "";
  position: absolute;
  right: 82px;
  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-btn3__box_right_fd2::after {
    right: calc(16.5333333333 * var(--vw));
    width: calc(3.4666666667 * var(--vw));
    height: calc(2.9333333333 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__box_right_fd2 img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn3__box_right_fd2 img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn3__box_right_fd2:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_right_fd2:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_right_fd2:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn3__box_right_fd4 {
  position: relative;
  width: 448px;
  height: 86px;
  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;
  /*
  &::after{
      content: "";
      position: absolute;
      //top: 35%;
      right: getvwPc(82);
      display: inline-block;
      width: getvwPc(13);
      height: getvwPc(11);
      background-image: url('../img/top/link_icon.svg');
      background-position: center;
      background-size: contain;                    
      z-index: 10;
      @include media(sp) {
          right: getvw(124);
          width: getvw(26);
          height: getvw(22);                        
      }
  }
      */
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_right_fd4 {
    width: calc(76.5333333333 * var(--vw));
    height: calc(14.6666666667 * var(--vw));
    font-size: calc(4.2666666667 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__box_right_fd4 img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
#CONTENTS .mypage-btn3__box_right_fd4 img:last-of-type {
  opacity: 0;
  transition: opacity 0.7s;
}
#CONTENTS .mypage-btn3__box_right_fd4:hover img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_right_fd4:hover img {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__box_right_fd4:hover img:last-of-type {
    opacity: 0;
  }
}
#CONTENTS .mypage-btn3__cobox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 449px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__cobox {
    width: calc(76.5333333333 * var(--vw));
    align-items: center;
  }
}
#CONTENTS .mypage-btn3__cobox .txt {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  margin-top: 16px !important;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__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 .mypage-btn3__cobox .txt_w {
  width: 100%;
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  margin-top: 14px !important;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__cobox .txt_w {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(5.6 * var(--vw));
    margin-top: calc(3.2 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn3__cobox2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 415px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__cobox2 {
    width: 100%;
    align-items: center;
  }
}
#CONTENTS .mypage-btn3__cobox2 .txt {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  margin-top: 16px !important;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__cobox2 .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    margin-top: calc(3.7333333333 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn3__cobox2 .txt_w {
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  margin-top: 14px !important;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__cobox2 .txt_w {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(5.6 * var(--vw));
    margin-top: calc(3.2 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn3__cobox2_pc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 415px;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__cobox2_pc {
    width: 100%;
    align-items: center;
    display: none !important;
  }
}
#CONTENTS .mypage-btn3__cobox2_pc .txt {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  margin-top: 16px !important;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__cobox2_pc .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    margin-top: calc(3.7333333333 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn3__cobox2_pc .txt_w {
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  margin-top: 14px !important;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__cobox2_pc .txt_w {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(5.6 * var(--vw));
    margin-top: calc(3.2 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn3__cobox2_sp {
  /*flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;*/
}
@media only screen and (min-width: 768px) {
  #CONTENTS .mypage-btn3__cobox2_sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__cobox2_sp {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    margin-top: calc(4.2666666667 * var(--vw));
  }
}
#CONTENTS .mypage-btn3__cobox2_sp .txt {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  margin-top: 16px !important;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__cobox2_sp .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
    margin-top: calc(3.7333333333 * var(--vw)) !important;
  }
}
#CONTENTS .mypage-btn3__cobox2_sp .txt_w {
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  margin-top: 14px !important;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #CONTENTS .mypage-btn3__cobox2_sp .txt_w {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(5.6 * var(--vw));
    margin-top: calc(3.2 * 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.css.map */