@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500&family=Montserrat:wght@700&family=Manrope:wght@700&display=swap");

body * {
  font-family: "M PLUS 1p", "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Helvetica, Arial, Verdana, sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}

em {
  font-style: normal;
}

sup {
  top: -0.25em;
}

.wrap {
  overflow: hidden;
}
@media only screen and (min-width: 641px) {
  .wrap {
    min-width: 1200px;
  }
  .row {
    max-width: 1040px;
  }
}
@media only screen and (max-width: 640px) {
  .row {
    padding: 0 20px;
  }
}

.hotpink {
  color: #e261cd;
}
.emerald {
  color: #64ebee;
}
.lemon {
  color: #fbf483;
}
.green {
  color: #9aff9d;
}
.underline {
  text-decoration: underline;
}
a.underline:hover {
  text-decoration: underline;
}

.modal-cont .ptnone {
  padding-top: 0 !important;
}
ul.notes > li {
  text-indent: -1em;
  padding-left: 1em;
}
ul.notes > li:before {
  content: "※";
}
ul.notes.number {
  counter-reset: number;
}
ul.notes.number > li {
  text-indent: -2em;
  padding-left: 2em;
}
ul.notes.number > li:before {
  counter-increment: number;
  content: "※" counter(number) " ";
}
ul.notes.number > li.nonumber {
  text-indent: -1em;
  padding-left: 1em;
}
ul.notes.number > li.nonumber:before {
  counter-increment: number;
  content: "※";
}
.dot > li:before {
  content: "・";
}
ul.dot > li {
  text-indent: -1em;
  padding-left: 1em;
}
ul.dot.left > li {
  text-align: left;
}
a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  color: inherit;
}

img.wh_border {
  -webkit-filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 1));
  filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 1));
}

.colorful_bg {
  background: -webkit-linear-gradient(50deg, rgba(152, 235, 238, 0.3), rgba(144, 110, 238, 0.1), rgba(226, 97, 205, 0.3), rgba(251, 244, 131, 0.3), rgba(152, 235, 238, 0.3), rgba(144, 110, 238, 0.1));
  background: linear-gradient(40deg, rgba(152, 235, 238, 0.3), rgba(144, 110, 238, 0.1), rgba(226, 97, 205, 0.3), rgba(251, 244, 131, 0.3), rgba(152, 235, 238, 0.3), rgba(144, 110, 238, 0.1));
  background: -webkit-linear-gradient(-40deg, rgba(152, 235, 238, 0.3), rgba(144, 110, 238, 0.1), rgba(226, 97, 205, 0.3), rgba(251, 244, 131, 0.3), rgba(152, 235, 238, 0.3), rgba(144, 110, 238, 0.1));
  background-size: 200% 200%;
  /* animation: colorfulbg 20s ease infinite reverse; */
}
@-webkit-keyframes colorfulbg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes colorfulbg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.circle_deco {
  position: absolute;
  border-radius: 50%;
  opacity: 1;
  /* animation: circleRotate 7s linear infinite reverse; */
}

.circle-emerald {
  background: -webkit-radial-gradient(rgba(152, 235, 238, 0), rgba(152, 235, 238, 0), rgba(152, 235, 238, 0.3), rgba(152, 235, 238, 1));
  background: radial-gradient(rgba(152, 235, 238, 0), rgba(152, 235, 238, 0), rgba(152, 235, 238, 0.3), rgba(152, 235, 238, 1));
  background-size: 110% 110%;
  background-repeat: no-repeat;
  z-index: 1;
}
.circle-hotpink {
  background: -webkit-radial-gradient(rgba(226, 97, 205, 0), rgba(226, 97, 205, 0), rgba(226, 97, 205, 0.3), rgba(226, 97, 205, 1));
  background: radial-gradient(rgba(226, 97, 205, 0), rgba(226, 97, 205, 0), rgba(226, 97, 205, 0.3), rgba(226, 97, 205, 1));
  background-size: 110% 110%;
  background-repeat: no-repeat;
  z-index: 2;
}
.circle-lemon {
  background: -webkit-radial-gradient(rgba(251, 244, 131, 0), rgba(251, 244, 131, 0), rgba(251, 244, 131, 0.3), rgba(251, 244, 131, 1));
  background: radial-gradient(rgba(251, 244, 131, 0), rgba(251, 244, 131, 0), rgba(251, 244, 131, 0.3), rgba(251, 244, 131, 1));
  background-size: 110% 110%;
  background-repeat: no-repeat;
  z-index: 0;
}
@-webkit-keyframes circleRotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  70% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes circleRotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  70% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media only screen and (min-width: 641px) {
  .circle_deco {
    width: 1280px;
    height: 1280px;
  }
  .circle_deco:nth-of-type(1) {
    left: calc(100% - 350px);
    top: -640px;
  }
  .circle_deco:nth-of-type(2) {
    left: calc(50% - 150px);
    top: 150px;
  }
  .circle_deco:nth-of-type(3) {
    left: 50%;
    bottom: 150px;
  }
}
@media only screen and (max-width: 640px) {
  .circle_deco {
    width: 550px;
    height: 550px;
  }
  .circle_deco:nth-of-type(1) {
    left: calc(50% + 30px);
    top: calc(50% - 20px);
  }
  .circle_deco:nth-of-type(2) {
    left: calc(50% - 400px);
    top: calc(50% + 50px);
  }
  .circle_deco:nth-of-type(3) {
    left: calc(50% - 15px);
    top: 50px;
  }
}

/** SITE MAIN
==============================================*/
.site-main {
  background-color: #182648;
  color: #fff;
}
@media only screen and (min-width: 641px) {
  .site-main {
    background: url(/am_lp/v1-common/images/deco-circle_blur-pc.png) repeat-y center 9%/150% auto #182648;
  }
}
@media only screen and (max-width: 640px) {
  .site-main {
    background: url(/am_lp/v1-common/images/deco-circle_blur-sp.png) repeat-y center -14%/190% auto #182648;
  }
}

/** SHEIN LINE
==============================================*/
.shein_line {
  background: -webkit-linear-gradient(left, #98ebee, #906eee 90%);
  background: linear-gradient(90deg, #98ebee, #906eee 90%);
  background: -webkit-linear-gradient(0deg, #98ebee, #906eee 90%);
  position: relative;
  z-index: 2;
}
.shein_line .shein_line_txt {
  background-color: rgb(24, 38, 72, 0.1);
  display: block;
  text-align: center;
}
.shein_line .shein_line_txt img {
  max-width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 641px) {
  .shein_line .shein_line_txt {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .shein_line .shein_line_txt img {
    width: 532px;
  }
}
@media only screen and (max-width: 640px) {
  .shein_line .shein_line_txt {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .shein_line .shein_line_txt img {
    width: 331px;
  }
}

/** SECTION HERO
==============================================*/
.section-hero {
  overflow: hidden;
  position: relative;
  background-color: #182648;
}

.section-hero .section-content {
  position: relative;
  z-index: 3;
  background: -webkit-linear-gradient(50deg, rgba(152, 235, 238, 0.3), rgba(144, 110, 238, 0.1), rgba(226, 97, 205, 0.3), rgba(251, 244, 131, 0.3), rgba(152, 235, 238, 0.3), rgba(144, 110, 238, 0.1));
  background: linear-gradient(40deg, rgba(152, 235, 238, 0.3), rgba(144, 110, 238, 0.1), rgba(226, 97, 205, 0.3), rgba(251, 244, 131, 0.3), rgba(152, 235, 238, 0.3), rgba(144, 110, 238, 0.1));
  background: -webkit-linear-gradient(-40deg, rgba(152, 235, 238, 0.3), rgba(144, 110, 238, 0.1), rgba(226, 97, 205, 0.3), rgba(251, 244, 131, 0.3), rgba(152, 235, 238, 0.3), rgba(144, 110, 238, 0.1));
  background-size: 200% 200%;
}
@media only screen and (min-width: 641px) {
  .section-hero .section-content {
    padding-top: 55px;
  }
}
@media only screen and (max-width: 640px) {
  .section-hero .section-content {
    padding-top: 15px;
  }
}

@media only screen and (min-width: 641px) {
  .section-hero .content .hero_main_block {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 640px) {
  .section-hero .content .hero_main_block {
    width: 380px;
    max-width: 100%;
    margin: 0 auto;
  }
}

.section-hero .content .hero_main_block .hero_appeal_box {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 641px) {
  .section-hero .content .hero_main_block .hero_appeal_box {
    padding-bottom: 65px;
    padding-left: 45px;
  }
}
@media only screen and (max-width: 640px) {
  .section-hero .content .hero_main_block .hero_appeal_box {
    display: -webkit-box;
    display: flex;
    justify-content: space-around;
    -webkit-box-align: start;
    align-items: flex-start;
  }
}

.section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_lead_item .hero_title {
  line-height: 1.2;
}
.section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_lead_item .hero_title .gradient {
  background: -webkit-linear-gradient(left, #98ebee, #906eee, #e261cd, #fbf483, #98ebee, #906eee, #e261cd, #fbf483 90%);
  background: linear-gradient(90deg, #98ebee, #906eee, #e261cd, #fbf483, #98ebee, #906eee, #e261cd, #fbf483 90%);
  background: -webkit-linear-gradient(0deg, #98ebee, #906eee, #e261cd, #fbf483, #98ebee, #906eee, #e261cd, #fbf483 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  /* animation: textgradient 20s ease infinite reverse; */
  display: block;
}
.section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_lead_item .hero_lead {
  font-weight: 500;
  padding-top: 10px;
}
@-webkit-keyframes textgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes textgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media only screen and (min-width: 641px) {
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_lead_item .hero_title {
    font-size: 64px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_lead_item .hero_lead {
    font-size: 20px;
    padding-left: 10px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_lead_item .hero_page_title {
    font-size: 14px;
    padding-left: 10px;
  }
}
@media only screen and (max-width: 640px) {
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_lead_item {
    padding-top: 20px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_lead_item .hero_title {
    font-size: 35px;
    white-space: nowrap;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_lead_item .hero_title span {
    letter-spacing: -0.08em;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_lead_item .hero_lead {
    font-size: 18px;
    letter-spacing: 0;
    padding-left: 5px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_lead_item .hero_page_title {
    font-size: 12px;
    padding-left: 5px;
  }
}

.section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li {
  color: #1f3b67;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}
.section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li:before,
.section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li:before {
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
}
.section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li:after {
  background: url(/am_lp/v1-common/images/bg-circle-gradient.svg) no-repeat center center/100% 100%;
  -webkit-transform: scale(1.6);
  transform: scale(1.6);
  z-index: 0;
}
.section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li span {
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  z-index: 1;
}
@media only screen and (min-width: 641px) {
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list {
    display: -webkit-box;
    display: flex;
    padding-top: 30px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li {
    margin: 0 15px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li,
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li:before,
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li:after {
    width: 130px;
    height: 130px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li .txt-ss {
    font-size: 14px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li .txt-s {
    font-size: 16px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li .txt-m {
    font-size: 18px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li .txt-l {
    font-size: 20px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li .txt-ll {
    font-size: 33px;
  }
}
@media only screen and (max-width: 640px) {
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li:not(:last-child) {
    margin-bottom: 10px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li,
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li:before,
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li:after {
    width: 75px;
    height: 75px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li .txt-ss {
    font-size: 10px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li .txt-s {
    font-size: 11px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li .txt-m {
    font-size: 11x;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li .txt-l {
    font-size: 13px;
  }
  .section-hero .content .hero_main_block .hero_appeal_box .hero_appeal_merit_item .hero_merit_list > li .txt-ll {
    font-size: 19px;
  }
}

.section-hero .content .hero_main_block .hero_image_box {
  position: relative;
  overflow: hidden;
}
.section-hero .content .hero_main_block .hero_image_box:before {
  content: "";
  position: absolute;
  background-color: #000;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  opacity: 0.1;
}
.section-hero .content .hero_main_block .hero_image_box .hero_image {
  position: relative;
  z-index: 1;
}
.section-hero .content .hero_main_block .hero_image_box .hero_image img {
  max-width: 100%;
}
@media only screen and (min-width: 641px) {
  .section-hero .content .hero_main_block .hero_image_box {
    padding-right: 45px;
  }
  .section-hero .content .hero_main_block .hero_image_box:before {
    right: 35px;
    top: 10px;
    width: 220px;
    height: 100%;
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  .section-hero .content .hero_main_block .hero_image_box .hero_image {
    height: 408px;
  }
  .section-hero .content .hero_main_block .hero_image_box .hero_image img {
    width: 420px;
  }
}
@media only screen and (max-width: 640px) {
  .section-hero .content .hero_main_block .hero_image_box {
    margin-top: -40px;
  }
  .section-hero .content .hero_main_block .hero_image_box:before {
    right: 8px;
    top: 10px;
    width: 150px;
    height: 100%;
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  .section-hero .content .hero_main_block .hero_image_box .hero_image {
    height: 280px;
    text-align: center;
  }
  .section-hero .content .hero_main_block .hero_image_box .hero_image img {
    width: 310px;
  }
}

.section-hero .content .info_line_block {
  background-color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  font-size: 14px;
}
.section-hero .content .info_line_block .icon {
  width: 43px;
  max-width: 100%;
}
.section-hero .content .info_line_block .appeal_txt {
  color: #000;
  padding-left: 20px;
  text-align: center;
  line-height: 1.5;
}
.section-hero .content .info_line_block .appeal_txt .em {
  color: #e261cd;
}
@media only screen and (min-width: 641px) {
  .section-hero .content .info_line_block {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media only screen and (max-width: 640px) {
  .section-hero .content .info_line_block {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media only screen and (min-width: 641px) {
  .section-hero .content .reverse_pcsp {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
    background-color: rgba(24, 38, 72, 0.5);
  }
}

.hero-appeal-point {
  display: -webkit-box;
  display: flex;
  background-color: #1f3b67;
}
.hero-appeal-point > li {
  width: 50%;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  background-color: #1f3b67;
}
.hero-appeal-point > li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.hero-appeal-point > li:nth-child(even) {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
@media only screen and (min-width: 641px) {
  .hero-appeal-point {
    padding-right: 200px;
    padding-left: 200px;
  }
  .hero-appeal-point > li {
    font-size: 20px;
    padding: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .hero-appeal-point > li {
    font-size: 16px;
    padding: 10px;
  }
}

.hero-appeal-point__txt {
  text-align: center;
  width: 100%;
  display: block;
  font-weight: 500;
}
@media only screen and (min-width: 641px) {
  .hero-appeal-point__txt {
    padding: 20px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .hero-appeal-point__txt {
    padding: 10px;
    font-size: 16px;
  }
}

.fixed_entry {
  /* transition: all 0.3s ease; */
  z-index: 99;
}
.fixed_entry.fixed {
  position: fixed;
  /* opacity: 0;
  visibility: hidden;
}
.fixed_entry.fixed.show { */
  /* opacity: 1;
  visibility: visible; */
}
.fixed_entry .fixed_entry_btn {
  background: -webkit-linear-gradient(left, #98ebee, #fbf483 90%);
  background: linear-gradient(90deg, #98ebee, #fbf483 90%);
  background: -webkit-linear-gradient(0deg, #98ebee, #fbf483 90%);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #1f3b67;
}
.fixed_entry .fixed_entry_btn:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: calc(50% - 5px);
  right: 6%;
  border-left: 1px solid #1f3b67;
  border-bottom: 1px solid #1f3b67;
  z-index: 1;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.fixed_entry .fixed_entry_btn__fixed {
  display: none;
}
.fixed_entry.fixed .fixed_entry_btn__fixed {
  display: -webkit-box;
  display: flex;
}
.fixed_entry.fixed .fixed_entry_btn__hero {
  display: none;
}
@media only screen and (min-width: 641px) {
  .fixed_entry {
    padding: 20px;
    /* position: absolute;
    right: 0;
    top: 0; */
  }
  .fixed_entry.fixed {
    width: 100%;
    -webkit-animation: UpAnime 0.5s linear both;
    animation: UpAnime 0.5s linear both;
    position: -webkit-fixed;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(24, 38, 72, 0.5);
  }
  .fixed_entry .fixed_entry_btn {
    height: 75px;
    width: 350px;
    position: relative;
    margin: 0 auto;
  }
  .fixed_entry.fixed .fixed_entry_btn {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 640px) {
  .fixed_entry {
    bottom: 0;
    left: 0;
  }
  .fixed_entry.fixed {
    width: 100%;
    -webkit-animation: DownAnime 0.5s linear both;
    animation: DownAnime 0.5s linear both;
  }
  .fixed_entry .fixed_entry_btn {
    height: 60px;
  }
}
@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(+100px);
    transform: translateY(+100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(+100px);
    transform: translateY(+100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/** SECTION NAV
==============================================*/
@media only screen and (min-width: 641px) {
  .section-nav {
    background: -webkit-linear-gradient(left, #98ebee, #906eee, #e261cd, #fbf483);
    background: linear-gradient(90deg, #98ebee, #906eee, #e261cd, #fbf483);
    background: -webkit-linear-gradient(0deg, #98ebee, #906eee, #e261cd, #fbf483);
  }
}
@media only screen and (max-width: 640px) {
  .section-nav {
    background: -webkit-linear-gradient(left, #98ebee -20%, #906eee, #e261cd, #fbf483 120%);
    background: linear-gradient(90deg, #98ebee -20%, #906eee, #e261cd, #fbf483 120%);
    background: -webkit-linear-gradient(0deg, #98ebee -20%, #906eee, #e261cd, #fbf483 120%);
  }
  .section-nav .content.row {
    padding-right: 0;
    padding-left: 0;
  }
}

.section-nav .content .anchor_nav {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.section-nav .content .anchor_nav > li {
  width: 20%;
}
@media only screen and (min-width: 641px) {
  .section-nav .content .anchor_nav {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .section-nav .content .anchor_nav > li {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
  }
  .section-nav .content .anchor_nav > li:first-child {
  }
}
@media only screen and (max-width: 640px) {
  .section-nav .content .anchor_nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .section-nav .content .anchor_nav > li {
  }
  .section-nav .content .anchor_nav > li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
  }
}

.section-nav .content .anchor_nav .anchor_link {
  position: relative;
  color: #fff;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}
.section-nav .content .anchor_nav .anchor_link:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 2px;
  left: calc(50% - 4px);
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 641px) {
  .section-nav .content .anchor_nav .anchor_link {
    font-size: 16px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 640px) {
  .section-nav .content .anchor_nav .anchor_link {
    font-size: 12px;
    padding-top: 5px;
    padding-bottom: 15px;
  }
}

/** SECTION CAMPAIGN
==============================================*/
.block_campaign {
  text-align: center;
}
.block_campaign .notes {
  display: block;
  text-align: right;
  margin-top: 10px;
}
.block_campaign .notes.left {
  text-align: left;
}
.block_campaign .bnr img {
  max-width: 100%;
  margin: 0 auto;
}

.block_campaign .block_campaign_box {
  width: 780px;
  max-width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 641px) {
  .section-campaign {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .block_campaign:not(:first-child) {
    margin-top: 40px;
  }
  .block_campaign .bnr img {
    width: 840px;
  }
  .block_campaign .block_campaign_box:not(:first-child) {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 640px) {
  .section-campaign {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .block_campaign:not(:first-child) {
    margin-top: 20px;
  }
  .block_campaign .block_campaign_box {
    padding-right: 20px;
    padding-left: 20px;
  }
  .block_campaign .block_campaign_box:not(:first-child) {
    margin-top: 15px;
  }
}

.block_campaign .block_campaign_box .campaign_dl > dt {
  background-color: rgba(0, 0, 30, 0.4);
  position: relative;
  cursor: pointer;
  font-weight: 700;
}
.block_campaign .block_campaign_box .campaign_dl > dt:after {
  content: "";
  background-color: rgba(31, 59, 103, 0.6);
  width: 26px;
  height: 26px;
  position: absolute;
  top: calc(50% - 13px);
}
.block_campaign .block_campaign_box .campaign_dl > dt .campaign_dt:before,
.block_campaign .block_campaign_box .campaign_dl > dt .campaign_dt:after {
  content: "";
  background-color: #fff;
  position: absolute;
  z-index: 1;
}
.block_campaign .block_campaign_box .campaign_dl > dt .campaign_dt:before {
  width: 14px;
  height: 2px;
  top: calc(50% - 0.5px);
}
.block_campaign .block_campaign_box .campaign_dl > dt .campaign_dt:after {
  width: 2px;
  height: 12px;
  right: 25px;
  top: calc(50% - 5.5px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.block_campaign .block_campaign_box .campaign_dl > dt.active .campaign_dt:after {
  opacity: 0;
}
@media only screen and (min-width: 641px) {
  .block_campaign .block_campaign_box .campaign_dl > dt {
    font-size: 19px;
    padding: 20px 70px 20px 75px;
  }
  .block_campaign .block_campaign_box .campaign_dl > dt:after {
    right: 25px;
  }
  .block_campaign .block_campaign_box .campaign_dl > dt .campaign_dt:before {
    right: 31px;
  }
  .block_campaign .block_campaign_box .campaign_dl > dt .campaign_dt:after {
    right: 37px;
  }
}
@media only screen and (max-width: 640px) {
  .block_campaign .block_campaign_box .campaign_dl > dt {
    font-size: 16px;
    padding: 10px 45px 10px 50px;
  }
  .block_campaign .block_campaign_box .campaign_dl > dt:after {
    right: 10px;
  }
  .block_campaign .block_campaign_box .campaign_dl > dt .campaign_dt:before {
    right: 16px;
  }
  .block_campaign .block_campaign_box .campaign_dl > dt .campaign_dt:after {
    right: 22px;
  }
}

@media only screen and (min-width: 641px) {
  .block_campaign .block_campaign_box .campaign_dl > dd {
    font-size: 15px;
    padding: 20px 75px;
  }
}
@media only screen and (max-width: 640px) {
  .block_campaign .block_campaign_box .campaign_dl > dd {
    font-size: 13px;
    padding: 25px 20px;
  }
  .block_campaign .block_campaign_box .campaign_dl > dd .notes {
    font-size: 10px;
  }
}

.block_campaign .block_campaign_box .campaign_info_dl {
  text-align: left;
}
.block_campaign .block_campaign_box .campaign_info_dl > dt {
  color: #fbf483;
}

@media only screen and (min-width: 641px) {
  .block_campaign .block_campaign_box .campaign_info_dl > dd:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .block_campaign .block_campaign_box .campaign_info_dl > dd:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.couponcode_txt_line {
  display: inline-block;
  padding-bottom: 5px;
  padding-top: 5px;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.couponcode_txt_line .yellow {
  color: #fbf483;
  margin-right: 5px;
}
@media only screen and (min-width: 641px) {
  .couponcode_txt_line {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .couponcode_txt_line {
    margin-top: 15px;
  }
}

.block_campaign .block_campaign_box .campaign_info_dl .notes {
  text-align: left;
}

.block_campaign .block_campaign_box .couponcode_dl {
  position: relative;
  line-height: 1;
}
.block_campaign .block_campaign_box .couponcode_dl:after {
  content: "";
  position: absolute;
  background: -webkit-linear-gradient(left, #98ebee, #906eee, #e261cd, #fbf483);
  background: linear-gradient(90deg, #98ebee, #906eee, #e261cd, #fbf483);
  background: -webkit-linear-gradient(0deg, #98ebee, #906eee, #e261cd, #fbf483);
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
}
@media only screen and (min-width: 641px) {
  .block_campaign .block_campaign_box .couponcode_dl {
    margin-top: 30px;
    margin-bottom: 50px;
    padding: 20px 30px;
    display: inline-block;
  }
}
@media only screen and (max-width: 640px) {
  .block_campaign .block_campaign_box .couponcode_dl {
    margin-top: 10px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.block_campaign .block_campaign_box .couponcode_dl > dt,
.block_campaign .block_campaign_box .couponcode_dl > dd {
  display: inline;
  font-weight: 500;
  vertical-align: middle;
}
.block_campaign .block_campaign_box .couponcode_dl > dt {
  background: -webkit-linear-gradient(left, #98ebee, #906eee, #98ebee 90%);
  background: linear-gradient(90deg, #98ebee, #906eee, #98ebee 90%);
  background: -webkit-linear-gradient(0deg, #98ebee, #906eee, #98ebee 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
}
@media only screen and (min-width: 641px) {
  .block_campaign .block_campaign_box .couponcode_dl > dt {
    font-size: 32px;
    margin-right: 50px;
  }
  .block_campaign .block_campaign_box .couponcode_dl > dd {
    font-size: 42px;
    letter-spacing: 0.15em;
  }
}
@media only screen and (max-width: 640px) {
  .block_campaign .block_campaign_box .couponcode_dl > dt {
    font-size: 18px;
    margin-right: 20px;
  }
  .block_campaign .block_campaign_box .couponcode_dl > dd {
    font-size: 24px;
    letter-spacing: 0.1em;
  }
}

.detail2001a ul.notes > li,
.modal-cont ul.notes > li {
  text-indent: 0;
}

.detail2001a > div.clearfix.non-border {
  border-top: none;
}
@media only screen and (min-width: 641px) {
  .modal-cont .c_title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .modal-cont .c_title {
    font-size: 16px;
  }
}

.site-main {
  counter-reset: number;
}

/** HEADLINE
===================={==========================*/
.headline {
  text-align: center;
}
.section .headline:before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  line-height: 1;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  background: -webkit-linear-gradient(left, #98ebee, #906eee, #e261cd, #fbf483, #98ebee, #906eee, #e261cd, #fbf483 90%);
  background: linear-gradient(90deg, #98ebee, #906eee, #e261cd, #fbf483, #98ebee, #906eee, #e261cd, #fbf483 90%);
  background: -webkit-linear-gradient(0deg, #98ebee, #906eee, #e261cd, #fbf483, #98ebee, #906eee, #e261cd, #fbf483 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  opacity: 0.4;
  letter-spacing: -0.05em;
  font-size: 90px;
}
.headline .headline_title {
  position: relative;
  font-weight: 500;
  margin-top: 35px;
}
.headline .headline_title:before {
  content: attr(data-en);
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  width: 100%;
  text-align: center;
  position: absolute;
  top: -85px;
  left: 0;
}
.headline .headline_title:after {
  content: "";
  position: absolute;
  background: -webkit-linear-gradient(left, #98ebee, #906eee, #e261cd, #fbf483);
  background: linear-gradient(90deg, #98ebee, #906eee, #e261cd, #fbf483);
  background: -webkit-linear-gradient(0deg, #98ebee, #906eee, #e261cd, #fbf483);
  width: 100px;
  height: 4px;
  left: calc(50% - 50px);
  top: -35px;
  /* animation: colorfulbg 5s ease infinite reverse; */
}
@media only screen and (min-width: 641px) {
  .headline .headline_title {
    font-size: 32px;
  }
  .headline .headline_title:before {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .headline .headline_title {
    font-size: min(6.4vw, 24px);
  }
  .headline .headline_title:before {
    font-size: 18px;
  }
}

/* type02 */
.headline.type02 .headline_title {
  text-align: center;
}
.headline.type02 .headline_title:before {
  margin-bottom: 50px;
}
.headline.type02 .headline_title:after {
  top: 70px;
  left: calc(50% - 30px);
}
@media only screen and (min-width: 641px) {
  .headline.type02 .headline_title {
    font-size: 20px;
  }
  .headline.type02 .headline_title:before {
    font-size: 50px;
  }
}
@media only screen and (max-width: 640px) {
  .headline.type02 .headline_title {
    font-size: 18px;
  }
  .headline.type02 .headline_title:before {
    font-size: 42px;
  }
}

/* normal */
.headline .headline_title_normal {
  font-size: 25px;
  text-align: center;
}

/** SECTION USEFULL
==============================================*/
.section-usefull {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 641px) {
  .section-usefull {
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .section-usefull .content {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 640px) {
  .section-usefull {
    padding-top: 60px;
    padding-bottom: 90px;
  }
  .section-usefull .section-content {
    /* padding-right: 10px;
    padding-left: 10px; */
  }
  .section-usefull .content {
    padding-top: 70px;
  }
}

@media only screen and (min-width: 641px) {
  .section-usefull .content .block {
    padding-right: 50px;
  }
  .section-usefull .content .block:not(:last-child) {
    padding-bottom: 140px;
  }
  .section-usefull .content .block:after {
    content: "";
    display: block;
    clear: both;
  }
}
@media only screen and (max-width: 640px) {
  .section-usefull .content .block {
    padding-right: 10px;
    padding-left: 10px;
  }
  .section-usefull .content .block:not(:last-child) {
    padding-bottom: 90px;
  }
}

.section-usefull .content .block .block_title {
  position: relative;
  z-index: 1;
}
.section-usefull .content .block .block_title:before {
  content: "";
  border-radius: 50%;
  position: absolute;
  /* animation: serclepoint 2s ease infinite reverse; */
}
@-webkit-keyframes serclepoint {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes serclepoint {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.section-usefull .content .block.apply .block_title:before {
  background-color: rgba(152, 235, 238, 0.7);
}
.section-usefull .content .block.safty .block_title:before {
  background-color: rgba(226, 97, 205, 0.7);
}
.section-usefull .content .block.security .block_title:before {
  background-color: rgba(251, 244, 131, 0.7);
}
.section-usefull .content .block.smart .block_title:before {
  background-color: rgba(154, 255, 157, 0.5);
}
.section-usefull .content .block .block_title .block_title_txt {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 641px) {
  .section-usefull .content .block .block_title {
    font-size: 42px;
    float: left;
    width: calc(100% - 363px);
    margin-top: 40px;
    padding-right: 50px;
  }
  .section-usefull .content .block .block_title:before {
    width: 43px;
    height: 43px;
    left: -21px;
    top: -10px;
  }
}
@media only screen and (max-width: 640px) {
  .section-usefull .content .block .block_title {
    font-size: min(6.4vw, 24px);
    padding-bottom: 20px;
  }
  .section-usefull .content .block .block_title:before {
    width: 25px;
    height: 25px;
    left: -10px;
    top: -7px;
  }
}

.section-usefull .content .block .block_image_box {
  text-align: center;
  position: relative;
}
.section-usefull .content .block .block_image_box .block_image_box-img {
  width: 100%;
}
.section-usefull .content .block .block_image_box-sub {
  position: absolute;
}
@media only screen and (min-width: 641px) {
  .section-usefull .content .block .block_image_box {
    width: 363px;
    float: right;
  }
  .section-usefull .content .block .block_image_box-sub {
    width: 142px;
    height: 131px;
    right: -68px;
    top: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .section-usefull .content .block .block_image_box {
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
  }
  .section-usefull .content .block .block_image_box-sub {
    width: min(32vw, 120px);
    height: min(29.333333333333332vw, 110px);
    left: calc(50% + 70px);
    top: min(2.666666666666667vw, 10px);
  }
}

.section-usefull .content .block .block_txt_box.center {
  text-align: center;
}
.section-usefull .content .block .block_txt_box > *:not(:last-child) {
  margin-bottom: 1.5em;
}
.section-usefull .content .block .block_txt_box .block_txt {
  text-align: justify;
}
@media only screen and (min-width: 641px) {
  .section-usefull .content .block .block_txt_box {
    float: left;
    width: calc(100% - 363px);
    padding-right: 75px;
    padding-top: 25px;
  }
  .section-usefull .content .block .block_txt_box .block_txt {
    font-size: 16px;
  }
}
@media only screen and (max-width: 640px) {
  .section-usefull .content .block .block_txt_box {
    padding-top: 20px;
  }
  .section-usefull .content .block .block_txt_box .block_txt {
    font-size: 14px;
  }
  .section-usefull .content .block .block_txt_box .block_txt.center {
    text-align: center;
    font-size: 16px;
  }
}

.section-usefull .content .block .block_txt_box .block_list > li {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}
.section-usefull .content .block .block_txt_box .block_list > li:before,
.section-usefull .content .block .block_txt_box .block_list > li:after {
  content: "";
  position: absolute;
}
.section-usefull .content .block .block_txt_box .block_list > li:before {
  border: 2px solid #fff;
  left: 0;
  z-index: 0;
}
.section-usefull .content .block .block_txt_box .block_list > li:after {
  background: url(/am_lp/v1-common/images/icon-checkmark.svg) no-repeat center center/100% 100%;
  left: 5px;
  z-index: 1;
}
@media only screen and (min-width: 641px) {
  .section-usefull .content .block .block_txt_box .block_list > li {
    padding-left: 25px;
    font-size: 16px;
  }
  .section-usefull .content .block .block_txt_box .block_list > li:before {
    width: 14px;
    height: 14px;
    top: calc(50% - 7px);
  }
  .section-usefull .content .block .block_txt_box .block_list > li:after {
    width: 14px;
    height: 10px;
    top: calc(50% - 7px);
    left: 3px;
  }
}
@media only screen and (max-width: 640px) {
  .section-usefull .content .block .block_txt_box .block_list {
    display: inline-block;
  }
  .section-usefull .content .block .block_txt_box .block_list > li {
    padding-left: 40px;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
  }
  .section-usefull .content .block .block_txt_box .block_list > li:not(:last-child) {
    margin-bottom: 15px;
  }
  .section-usefull .content .block .block_txt_box .block_list > li:before {
    width: 21px;
    height: 21px;
    top: calc(50% - 10.5px);
  }
  .section-usefull .content .block .block_txt_box .block_list > li:after {
    width: 20px;
    height: 14px;
    top: calc(50% - 10.5px);
    left: 5px;
  }
}

.section-usefull .clearfix {
  clear: both;
}

.numberless_dl {
  background: -webkit-linear-gradient(50deg, rgba(144, 110, 238, 0.6), rgba(226, 97, 205, 0.6));
  background: linear-gradient(40deg, rgba(144, 110, 238, 0.6), rgba(226, 97, 205, 0.6));
  background: -webkit-linear-gradient(-40deg, rgba(144, 110, 238, 0.6), rgba(226, 97, 205, 0.6));
}
@media only screen and (min-width: 641px) {
  .numberless_dl {
    margin-top: 55px;
    padding: 25px;
  }
}
@media only screen and (max-width: 640px) {
  .numberless_dl {
    margin-top: 25px;
    padding: 10px;
  }
}

.numberless_dl > dt {
  text-align: center;
  position: relative;
  cursor: pointer;
}
.numberless_dl > dt:before {
  content: "";
  background-color: rgba(31, 59, 103, 0.6);
  width: 26px;
  height: 26px;
  position: absolute;
  top: calc(50% - 13px);
}
.numberless_dl > dt .numberless_dt {
  font-weight: 500;
}
.numberless_dl > dt .numberless_dt:before,
.numberless_dl > dt .numberless_dt:after {
  content: "";
  background-color: #fff;
  position: absolute;
}
.numberless_dl > dt .numberless_dt:before {
  width: 14px;
  height: 1px;
  top: calc(50% - 0.5px);
}
.numberless_dl > dt .numberless_dt:after {
  width: 1px;
  height: 14px;
  top: calc(50% - 7px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.numberless_dl > dt.active .numberless_dt:after {
  opacity: 0;
}
@media only screen and (min-width: 641px) {
  .numberless_dl > dt .numberless_dt {
    font-size: 26px;
  }
  .numberless_dl > dt:before {
    right: 25px;
  }
  .numberless_dl > dt .numberless_dt:before {
    right: 31px;
  }
  .numberless_dl > dt .numberless_dt:after {
    right: 38px;
  }
}
@media only screen and (max-width: 640px) {
  .numberless_dl > dt {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1.5;
  }
  .numberless_dl > dt .numberless_dt {
    font-size: 17px;
  }
  .numberless_dl > dt:before {
    right: 0;
  }
  .numberless_dl > dt .numberless_dt:before {
    right: 6px;
  }
  .numberless_dl > dt .numberless_dt:after {
    right: 12px;
  }
}

@media only screen and (min-width: 641px) {
  .numberless_dl > dd {
    padding-top: 25px;
  }
}

.numberless_case_box {
  background-color: rgba(31, 59, 103, 0.6);
  position: relative;
}
.numberless_case_box.column3 {
  counter-reset: number;
}
@media only screen and (min-width: 641px) {
  .numberless_case_box.column3 .numberless_case_column {
    display: -webkit-box;
    display: flex;
  }
  .numberless_case_box.column3 .numberless_case_column .numberless_case_column_in {
    width: 31%;
    padding-top: 30px;
  }
  .numberless_case_box.column3 .numberless_case_column .numberless_case_column_in:nth-child(2) {
    margin-right: 3.5%;
    margin-left: 3.5%;
  }
}

.numberless_case_box.column1 {
  margin-top: 20px;
}
.numberless_case_box.column3 {
  margin-top: 50px;
}
.numberless_case_box .numberless_case_box_ttl:first-child {
  position: absolute;
}
@media only screen and (min-width: 641px) {
  .numberless_case_box.column3 {
    padding: 25px 20px;
  }
  .numberless_case_box .numberless_case_box_ttl:first-child {
    top: -25px;
    left: calc(50% - 175px);
  }
}
@media only screen and (max-width: 640px) {
  .numberless_case_box .numberless_case_box_ttl:first-child {
    top: -15px;
    left: calc(50% - 127px);
  }
}

.numberless_case_box.column3 .numberless_case_box_txt_ttl {
  text-align: center;
  font-size: 17px;
}
.numberless_case_box.column3 .numberless_case_box_txt_ttl:before {
  counter-increment: number;
  content: counter(number) ".";
  color: #e261cd;
  font-weight: 700;
}
@media only screen and (min-width: 641px) {
  .numberless_case_box.column3 .numberless_case_box_txt_ttl {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 640px) {
  .numberless_case_box {
    padding: 20px;
  }
  .numberless_case_box.column3 .numberless_case_box_txt_ttl {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 641px) {
  .numberless_case_box.column1 .numberless_case_column_in {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
  }
}
@media only screen and (max-width: 640px) {
  .numberless_case_column_in {
    padding-top: 30px;
  }
}

.numberless_case_box_img {
  text-align: center;
  display: block;
}
.numberless_case_box_img img {
  max-width: 100%;
}
@media only screen and (min-width: 641px) {
  .numberless_case_box.column1 .numberless_case_box_img {
    margin-right: 25px;
    width: 252px;
  }
  .numberless_case_box.column1 .numberless_case_box_img img {
    width: 210px;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  .numberless_case_box.column3 .numberless_case_column_in .numberless_case_box_img img {
    width: 170px;
  }
}
@media only screen and (max-width: 640px) {
  .numberless_case_box_img img {
    height: 100px;
  }
}

.numberless_case_box_ttl {
  background-color: #fff;
  text-align: center;
  font-weight: 500;
  width: 240px;
  margin: 0 auto;
}
.numberless_case_box.column1 .numberless_case_box_ttl {
  color: #906eee;
}
.numberless_case_box.column3 .numberless_case_box_ttl {
  color: #e261cd;
}
@media only screen and (min-width: 641px) {
  .numberless_case_box_ttl {
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 19px;
    width: 350px;
  }
}
@media only screen and (max-width: 640px) {
  .numberless_case_box_ttl {
    border-radius: 15px;
    padding: 5px 15px;
    font-size: 15px;
    width: 255px;
  }
}

.numberless_case_box_txt {
}
.numberless_case_box_txt .txt {
  line-height: 1.7;
  letter-spacing: 0;
}
.numberless_case_box.column3 .numberless_case_box_txt .notes {
  font-size: 11px;
  padding-top: 5px;
}
@media only screen and (min-width: 641px) {
  .numberless_case_box.column1 .numberless_case_box_txt {
  }
  .numberless_case_box.column1 .numberless_case_box_txt .txt {
    font-size: 14px;
  }
  .numberless_case_box.column3 .numberless_case_box_txt {
    margin-top: 15px;
  }
  .numberless_case_box.column3 .numberless_case_box_txt .txt {
    font-size: 13px;
  }
}
@media only screen and (max-width: 640px) {
  .numberless_case_box_txt {
    margin-top: 10px;
  }
  .numberless_case_box_txt .txt {
    font-size: 14px;
  }
}

/** SECTION POINT
==============================================*/
.section-point {
  background-color: rgba(0, 0, 30, 0.4);
}
@media only screen and (min-width: 641px) {
  .section-point {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .section-point .content {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 640px) {
  .section-point {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .section-point .content {
    margin-top: 30px;
  }
}

/** SECTION DESIGN
==============================================*/
.section-design {
  position: relative;
}
@media only screen and (min-width: 641px) {
  .section-design .section-content {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 640px) {
  .section-design .section-content {
    padding-top: 65px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media only screen and (min-width: 641px) {
  .section-design .headline {
    padding-right: 70px;
    padding-left: 70px;
  }
}

.section-design .content {
  padding-top: 50px;
}
@media only screen and (min-width: 641px) {
  .section-design .content {
    padding-right: 70px;
    padding-left: 70px;
  }
}

@media only screen and (min-width: 641px) {
  .section-design .content .design_block {
    display: -webkit-box;
    display: flex;
  }
}

@media only screen and (min-width: 641px) {
  .section-design .content .design_block .design_txt_box {
    width: calc(100% - 330px);
    padding-right: 55px;
    padding-top: 20px;
  }
}

@media only screen and (min-width: 641px) {
  .section-design .content .design_block .design_txt_box .design_lead_txt {
    font-size: 36px;
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 640px) {
  .section-design .content .design_block .design_txt_box .design_lead_txt {
    font-size: min(5.866666666666666vw, 22px);
    padding-bottom: 10px;
  }
}

.section-design .content .design_block .design_display_box {
  overflow: hidden;
  position: relative;
}
.section-design .content .design_block .design_display_box .design_list {
  position: absolute;
  left: calc(50% - 138px);
  top: 110px;
  width: 276px;
  overflow: hidden;
}
.section-design .content .design_block .design_display_box .design_list img {
  width: 270px;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.8));
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.8));
}
@media only screen and (min-width: 641px) {
  .section-design .content .design_block .design_display_box {
    height: 550px;
  }
  .section-design .content .design_block .design_display_box img {
    width: 330px;
  }
  .section-design .content .design_block .design_display_box .design_list img {
    width: 270px;
  }
}
@media only screen and (max-width: 640px) {
  .section-design .content .design_block .design_display_box {
    height: 340px;
    padding-top: 40px;
    text-align: center;
  }
  .section-design .content .design_block .design_display_box img {
    width: 248px;
  }
  .section-design .content .design_block .design_display_box .design_list img {
    width: 207px;
  }
}

.section-design .content .custom_block {
  background-color: rgba(32, 46, 95, 0.9);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media only screen and (min-width: 641px) {
  .section-design .content .custom_block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 640px) {
  .section-design .content .custom_block {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.section-design .content .custom_block .custom_list .slick-track {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
  transform: none !important;
}
.section-design .content .custom_block .custom_list .slick-slide {
  width: auto !important;
}
.section-design .content .custom_block .custom_list .slick-slide,
.section-design .content .custom_block .custom_list .slick-slide > * {
  display: inline-block;
}
.section-design .content .custom_block .custom_list img {
  max-width: 100%;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.section-design .content .custom_block .custom_list .slick-current img {
  -webkit-filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 1));
  filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 1));
}
@media only screen and (min-width: 641px) {
  .section-design .content .custom_block .custom_list img {
    width: 203px;
    padding: 0 7px;
  }
}
@media only screen and (max-width: 640px) {
  .section-design .content .custom_block .custom_list img {
    width: 77px;
    margin: 0 auto;
    padding: 0 3px;
  }
}

/** SECTION QUICKLY
==============================================*/
.quickly_dl > dt {
  border: 1px solid #fff;
  position: relative;
}
.quickly_dl > dt:before {
  content: "";
  width: 22px;
  height: 22px;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 11px);
}
@media only screen and (min-width: 641px) {
  .quickly_dl > dt {
    cursor: pointer;
  }
  .quickly_dl > dt:before {
    right: 28px;
  }
}
@media only screen and (max-width: 640px) {
  .quickly_dl > dt {
  }
  .quickly_dl > dt:before {
    right: 15px;
  }
}

.quickly_dl > dt .quickly_dt {
  font-weight: 500;
  display: block;
  line-height: 1;
  text-align: center;
}
.quickly_dl > dt .quickly_dt:before,
.quickly_dl > dt .quickly_dt:after {
  content: "";
  background-color: #1f3b80;
  position: absolute;
}
.quickly_dl > dt .quickly_dt:before {
  width: 12px;
  height: 2px;
  top: calc(50% - 1px);
}
.quickly_dl > dt .quickly_dt:after {
  width: 2px;
  height: 12px;
  top: calc(50% - 6px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.quickly_dl > dt.active .quickly_dt:after {
  opacity: 0;
}
@media only screen and (min-width: 641px) {
  .quickly_dl > dt .quickly_dt {
    font-size: 18px;
    padding: 25px 28px;
  }
  .quickly_dl > dt .quickly_dt:before {
    right: 33px;
  }
  .quickly_dl > dt .quickly_dt:after {
    right: 38px;
  }
}
@media only screen and (max-width: 640px) {
  .quickly_dl > dt .quickly_dt {
    font-size: 16px;
    padding: 15px;
  }
  .quickly_dl > dt .quickly_dt:before {
    right: 20px;
  }
  .quickly_dl > dt .quickly_dt:after {
    right: 25px;
  }
}

@media only screen and (min-width: 641px) {
  .section-quickly {
    padding-top: 130px;
    padding-bottom: 115px;
  }
}
@media only screen and (max-width: 640px) {
  .section-quickly {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .section-quickly .headline {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media only screen and (min-width: 641px) {
  .section-quickly .content {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 640px) {
  .section-quickly .content {
  }
}

@media only screen and (min-width: 641px) {
  .section-quickly .content .quickly_step_block {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .section-quickly .content .quickly_step_block {
    padding-bottom: 40px;
  }
}

@media only screen and (min-width: 641px) {
  .section-quickly .content .quickly_step_block > .notes {
    margin-top: 50px;
  }
}

.quickly-step {
  counter-reset: number;
}

.quickly-step > li {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
}
.quickly-step > li:not(:last-child):after {
  content: "";
  width: 23px;
  height: 12px;
  background-color: #ffffff;
  -webkit-clip-path: polygon(50% 12px, 0% 0%, 23px 0%);
  clip-path: polygon(50% 12px, 0% 0%, 23px 0%);
  position: absolute;
  left: calc(50% - 11.5px);
}
@media only screen and (min-width: 641px) {
  .quickly-step > li {
    padding-right: 45px;
    padding-left: 45px;
    margin-top: 10px;
    margin-bottom: 10px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+15,000000+15,000000+85,ffffff+85,ffffff+100 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 30, 0) 0%, rgba(0, 0, 30, 0) 40px, rgba(0, 0, 30, 0.4) 40px, rgba(0, 0, 30, 0.4) calc(100% - 40px), rgba(0, 0, 30, 0) calc(100% - 40px), rgba(0, 0, 30, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 30, 0) 0%, rgba(0, 0, 30, 0) 40px, rgba(0, 0, 30, 0.4) 40px, rgba(0, 0, 30, 0.4) calc(100% - 40px), rgba(0, 0, 30, 0) calc(100% - 40px), rgba(0, 0, 30, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
  .quickly-step > li:not(:last-child):after {
    bottom: -15px;
  }
}
@media only screen and (max-width: 640px) {
  .quickly-step > li {
    margin-top: 25px;
    margin-bottom: 25px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+15,000000+15,000000+85,ffffff+85,ffffff+100 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 30, 0) 0%, rgba(0, 0, 30, 0) 10px, rgba(0, 0, 30, 0.4) 10px, rgba(0, 0, 30, 0.4) calc(100% - 10px), rgba(0, 0, 30, 0) calc(100% - 10px), rgba(0, 0, 30, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 30, 0) 0%, rgba(0, 0, 30, 0) 10px, rgba(0, 0, 30, 0.4) 10px, rgba(0, 0, 30, 0.4) calc(100% - 10px), rgba(0, 0, 30, 0) calc(100% - 10px), rgba(0, 0, 30, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
  .quickly-step > li:not(:last-child):after {
    bottom: -20px;
  }
}

.quickly-step__info {
  position: relative;
}
.quickly-step__info:before {
  counter-increment: number;
  content: counter(number);
  font-weight: 500;
  border: 1px solid #98ebee;
  background: -webkit-linear-gradient(top, #906eee, #98ebee);
  background: linear-gradient(180deg, #906eee, #98ebee);
  background: -webkit-linear-gradient(90deg, #906eee, #98ebee);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  border-radius: 50%;
  color: #1f3b67;
}
@media only screen and (min-width: 641px) {
  .quickly-step__info {
    padding-top: 85px;
    padding-bottom: 85px;
    padding-left: 100px;
    padding-right: 30px;
    width: calc(100% - 245px);
  }
  .quickly-step__info:before {
    position: absolute;
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
    left: 0;
    font-size: 27px;
  }
  .quickly-step__txt {
    font-size: 18px;
  }
}
@media only screen and (max-width: 640px) {
  .quickly-step__info {
    padding-right: 5px;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: calc(100% - 167px);
  }
  .quickly-step__info:before {
    width: 40px;
    height: 40px;
    font-size: 21px;
    margin-bottom: 10px;
  }
}

.quickly-step__img {
}
@media only screen and (min-width: 641px) {
  .quickly-step__img {
    width: 245px;
    padding-right: 45px;
  }
}
@media only screen and (max-width: 640px) {
  .quickly-step__img {
    width: 167px;
    padding-right: 7px;
  }
}

.section-quickly .content .quickly_use_block .quickly_use_block_bg {
  /* background-color: rgba(0, 0, 30, 0.4); */
}
@media only screen and (min-width: 641px) {
  .section-quickly .content .quickly_use_block_bg {
    padding-bottom: 85px;
  }
}
@media only screen and (max-width: 640px) {
  .section-quickly .content .quickly_use_block {
    /* padding: 20px; */
  }
}

.section-quickly .content .quickly_use_block .block_headline .block_headline_title {
  text-align: center;
}
@media only screen and (min-width: 641px) {
  .section-quickly .content .quickly_use_block .block_headline {
    padding-bottom: 50px;
  }
  .section-quickly .content .quickly_use_block .block_headline .block_headline_title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 640px) {
  .section-quickly .content .quickly_use_block .block_headline {
    padding-top: 40px;
  }
  .section-quickly .content .quickly_use_block .block_headline .block_headline_title {
    font-size: 24px;
  }
}

@media only screen and (min-width: 641px) {
  .section-quickly .content .quickly_use_block .block_content {
    display: -webkit-box;
    display: flex;
  }
  .section-quickly .content .quickly_use_block .block_content .quickly_use_box {
    padding: 10px 20px 5px;
    width: 33%;
  }
  .section-quickly .content .quickly_use_block .block_content .quickly_use_box:nth-child(3n + 2) {
    width: 34%;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
  }
}
@media only screen and (max-width: 640px) {
  .section-quickly .content .quickly_use_block .block_content {
    padding-right: 20px;
    padding-left: 20px;
  }
  .section-quickly .content .quickly_use_block .block_content .quickly_use_box {
    padding: 20px 0 45px;
  }
  .section-quickly .content .quickly_use_block .block_content .quickly_use_box:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}

.section-quickly .content .quickly_use_block .block_content .quickly_use_box .quickly_use_figure img {
  max-width: 100%;
}
@media only screen and (min-width: 641px) {
  .section-quickly .content .quickly_use_block .block_content .quickly_use_box .quickly_use_figure img {
    width: 310px;
  }
}

.section-quickly .content .quickly_use_block .block_content .quickly_use_box .quickly_use_ttl {
  font-size: 24px;
  text-align: center;
  font-weight: 500;
  padding-top: 30px;
}
.section-quickly .content .quickly_use_block .block_content .quickly_use_box .quickly_use_ttl .small {
  font-size: 0.5em;
}
.section-quickly .content .quickly_use_block .block_content .quickly_use_box .quickly_use_txt {
  font-size: 14px;
  text-align: justify;
  padding-top: 15px;
}
.section-quickly .content .quickly_use_block .block_content .quickly_use_box .notes {
  padding-top: 10px;
}

@media only screen and (min-width: 641px) {
  .section-quickly .content .quickly_apply_block {
    padding-top: 125px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .section-quickly .content .quickly_apply_block > * {
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .section-quickly .content .quickly_apply_block {
    padding-top: 50px;
  }
}

.section-quickly .content .quickly_apply_block .block_headline .block_headline_txt {
  font-size: 16px;
  padding-top: 25px;
}
@media only screen and (min-width: 641px) {
  .section-quickly .content .quickly_apply_block .block_headline {
    padding-right: 10px;
  }
  .section-quickly .content .quickly_apply_block .block_headline .block_headline_title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 640px) {
  .section-quickly .content .quickly_apply_block .block_headline .block_headline_title {
    font-size: 30px;
    text-align: center;
  }
  .section-quickly .content .quickly_apply_block .block_headline .block_headline_txt {
    text-align: center;
  }
}

.section-quickly .content .quickly_apply_block .block_content .quickly_apply_figure img {
  max-width: 100%;
}
@media only screen and (min-width: 641px) {
  .section-quickly .content .quickly_apply_block .block_content {
    padding-left: 30px;
  }
  .section-quickly .content .quickly_apply_block .block_content .quickly_apply_figure img {
    width: 425px;
  }
}
@media only screen and (max-width: 640px) {
  .section-quickly .content .quickly_apply_block .block_content .quickly_apply_figure {
    padding-top: 25px;
    text-align: center;
  }
  .section-quickly .content .quickly_apply_block .block_content .quickly_apply_figure img {
    width: 291px;
  }
}

.quickly_service_block {
}
@media only screen and (min-width: 641px) {
  .quickly_service_block {
    margin-top: 110px;
  }
}
@media only screen and (max-width: 640px) {
  .quickly_service_block {
    margin-top: 70px;
  }
}

/** SECTION FAQ
==============================================*/
@media only screen and (min-width: 641px) {
  .section-faq {
    padding-top: 115px;
    padding-bottom: 115px;
  }
}
@media only screen and (max-width: 640px) {
  .section-faq {
    padding-top: 60px;
    padding-bottom: 45px;
  }
}

@media only screen and (min-width: 641px) {
  .section-faq .content {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 640px) {
  .section-faq .content {
    padding-top: 65px;
  }
}

.section-faq .content .faq_block .faq_dl > dt:nth-of-type(odd),
.section-faq .content .faq_block .faq_dl > dd:nth-of-type(odd) {
}
.section-faq .content .faq_block .faq_dl > dt:not(:first-of-type) {
  margin-top: 10px;
}
.section-faq .content .faq_block .faq_dl > dd:nth-of-type(even) {
  margin-bottom: 10px;
}
.section-faq .content .faq_block .faq_dl > dt:before,
.section-faq .content .faq_block .faq_dl > dd:before {
  font-size: 22px;
  font-weight: 700;
  position: absolute;
  top: 0.6em;
}
.section-faq .content .faq_block .faq_dl > dt:before {
  content: "Q.";
  color: #64ebee;
}
.section-faq .content .faq_block .faq_dl > dt {
  position: relative;
  font-weight: 700;
  background-color: rgba(0, 0, 30, 0.4);
  cursor: pointer;
}
.section-faq .content .faq_block .faq_dl > dt:after {
  content: "";
  background-color: rgba(31, 59, 103, 0.6);
  width: 26px;
  height: 26px;
  position: absolute;
  top: calc(50% - 13px);
}
.section-faq .content .faq_block .faq_dl > dt:after {
  /* content: "";
  width: 50px;
  height: 1px;
  background-color: #c8c8c8;
  position: absolute;
  bottom: 0; */
}
.section-faq .content .faq_block .faq_dl > dt .faq_dt:before,
.section-faq .content .faq_block .faq_dl > dt .faq_dt:after {
  content: "";
  background-color: #fff;
  position: absolute;
  z-index: 1;
}
.section-faq .content .faq_block .faq_dl > dt .faq_dt:before {
  width: 14px;
  height: 2px;
  top: calc(50% - 0.5px);
}
.section-faq .content .faq_block .faq_dl > dt .faq_dt:after {
  width: 2px;
  height: 12px;
  right: 25px;
  top: calc(50% - 5.5px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-faq .content .faq_block .faq_dl > dt.active .faq_dt:after {
  opacity: 0;
}
.section-faq .content .faq_block .faq_dl > dd {
  position: relative;
}
.section-faq .content .faq_block .faq_dl > dd:before {
  content: "A.";
  color: #e261cd;
}
.section-faq .content .faq_block .faq_dl > dd > *:not(:last-child),
.section-faq .content .faq_block .case_dl > *:not(:last-child),
.section-faq .content .faq_block .case_list > *:not(:last-child) {
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 641px) {
  .section-faq .content .faq_block {
    width: 780px;
    max-width: 100%;
    margin: 0 auto;
  }
  .section-faq .content .faq_block .faq_dl > dd {
    padding: 20px 30px 20px 75px;
  }
  .section-faq .content .faq_block .faq_dl > dt:before,
  .section-faq .content .faq_block .faq_dl > dd:before {
    left: 30px;
  }
  .section-faq .content .faq_block .faq_dl > dt {
    font-size: 19px;
    padding: 20px 70px 20px 75px;
  }
  .section-faq .content .faq_block .faq_dl > dt:after {
    right: 25px;
  }
  .section-faq .content .faq_block .faq_dl > dt .faq_dt:before {
    right: 31px;
  }
  .section-faq .content .faq_block .faq_dl > dt .faq_dt:after {
    right: 37px;
  }
  /* .section-faq .content .faq_block .faq_dl > dt:after {
    left: 75px;
  } */
  .section-faq .content .faq_block .faq_dl > dt .txt {
    font-size: 15px;
  }
}
@media only screen and (max-width: 640px) {
  .section-faq .content .faq_block .faq_dl > dd {
    padding: 25px 20px 20px 50px;
  }
  .section-faq .content .faq_block .faq_dl > dt:before,
  .section-faq .content .faq_block .faq_dl > dd:before {
    left: 15px;
  }
  .section-faq .content .faq_block .faq_dl > dt {
    font-size: 14px;
    padding: 25px 45px 20px 50px;
  }
  .section-faq .content .faq_block .faq_dl > dt:after {
    right: 10px;
  }
  .section-faq .content .faq_block .faq_dl > dt .faq_dt:before {
    right: 16px;
  }
  .section-faq .content .faq_block .faq_dl > dt .faq_dt:after {
    right: 22px;
  }
  /* .section-faq .content .faq_block .faq_dl > dt:after {
    left: 50px;
  } */
  .section-faq .content .faq_block .faq_dl > dt .txt {
    font-size: 13px;
  }
  .section-faq .content .faq_block .faq_dl > dd .notes {
    font-size: 10px;
  }
}

.section-faq .content .faq_block .case_dl {
  counter-reset: number;
}
.section-faq .content .faq_block .case_dl > dt {
  color: #fbf483;
}
.section-faq .content .faq_block .case_dl > dt:before {
  counter-increment: number;
  content: "【" counter(number) "】";
  letter-spacing: 0;
}

.section-faq .content .faq_block .case_list {
  counter-reset: number;
}
.section-faq .content .faq_block .case_list > li > *:not(.num) {
  padding-left: 0.5em;
}
.section-faq .content .faq_block .case_list > li .num {
  color: #fbf483;
  position: relative;
  display: block;
  padding-left: 2em;
}
.section-faq .content .faq_block .case_list > li .num:before {
  counter-increment: number;
  content: counter(number);
  font-size: 0.7em;
  position: absolute;
}
.section-faq .content .faq_block .case_list > li .num:after {
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 1px solid;
  position: absolute;
  left: 0.5em;
  top: 0.4em;
}
@media only screen and (min-width: 641px) {
  .section-faq .content .faq_block .case_list > li .num:before {
    left: 1.2em;
    top: 0.4em;
  }
}
@media only screen and (max-width: 640px) {
  .section-faq .content .faq_block .case_list > li .num:before {
    left: 1.1em;
    top: 0.2em;
  }
}

/** SECTION MOVIE
==============================================*/
@media screen and (min-width: 641px) {
  .section-movie {
    padding-top: 110px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 640px) {
  .section-movie {
    padding-top: 80px;
    padding-bottom: 95px;
  }
}
.section-movie .content {
  padding-top: 30px;
}
.video_caption_box {
  padding-top: 25px;
}
.video_caption_box .txt {
  font-size: 14px;
  text-align: justify;
}

.movie_block {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}
.movie_block .video {
  position: relative;
  padding: 0;
  text-align: center;
}
.movie_block .video:before {
  bottom: 0;
  left: 0;
}
.movie_block .video:after {
  top: 0;
  right: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.youtube_movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube_movie .thumb,
.movie_block .video .thum {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  cursor: pointer;
}
.youtube_movie .thumb img,
.movie_block .video .thum img {
  width: 100%;
}

.youtube_movie,
.movie_block .video video {
  width: 100%;
}
.youtube_movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/** SECTION SPEC
==============================================*/
.section-spec {
  background-color: #fff;
  color: #000;
}
@media screen and (min-width: 641px) {
  .section-spec {
    padding-top: 60px;
    padding-bottom: 65px;
  }
}
@media screen and (max-width: 640px) {
  .section-spec {
    padding-top: 45px;
    padding-bottom: 60px;
  }
}

.section-spec .content .spec_block {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}
.section-spec .content .spec_block .spec_dl {
  border-left: 6px solid #bec4ca;
  padding-left: 15px;
}
.section-spec .content .spec_block .spec_dl > dt {
  color: #1f3b80;
  font-size: 16px;
  font-weight: 500;
}
.section-spec .content .spec_block .spec_dl > dd .txt {
  font-size: 14px;
}
.section-spec .content .spec_block .spec_dl > dd .logo_list {
  display: -webkit-box;
  display: flex;
}
.section-spec .content .spec_block .spec_dl > dd .logo_list > li {
  height: 60px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: baseline;
  justify-content: baseline;
  -webkit-box-align: center;
  align-items: center;
}
.section-spec .content .spec_block .spec_dl > dd .logo_list.bland > li img {
  height: 30px;
}
.section-spec .content .spec_block .spec_dl > dd .logo_list.payment > li img {
  height: 36px;
}
.section-spec .content .spec_block .spec_dl > dd .logo_list > li:not(:last-child) img {
  margin-right: 15px;
}
@media screen and (min-width: 641px) {
  .section-spec .content .spec_block {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
  }
  .section-spec .content .spec_block .spec_dl {
    width: 50%;
    max-width: 100%;
  }
  .section-spec .content .spec_block .spec_dl:not(:nth-last-child(-n + 2)) {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .section-spec .content .spec_block .spec_dl:not(:last-child) {
    margin-bottom: 20px;
  }
}

.card-spec__dl {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}
.card-spec__dl > dt,
.card-spec__dl > dd {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.card-spec__dl > dt {
  border-bottom: 2px solid #1f3b67;
  color: #1f3b67;
  font-weight: 500;
  letter-spacing: 0;
}
.card-spec__dl > dd {
  border-bottom: 2px solid #d1d5df;
  letter-spacing: 0;
}
.card-spec__dl .em {
  color: #c831f0;
  font-weight: 500;
}
.card-spec__small {
  font-size: 10px;
}
.card-spec__logo {
  display: -webkit-inline-box;
  display: inline-flex;
}
.card-spec__logo > li:not(:last-child) {
  margin-right: 10px;
}
.card-spec__band {
  background-color: #1f3b67;
  color: #fff;
  font-weight: 500;
}
.card-spec__dl .notes > li {
  font-size: 10px;
  letter-spacing: 0;
}
@media screen and (min-width: 641px) {
  .card-spec__dl > dt,
  .card-spec__dl > dd {
    padding: 15px 10px;
  }
  .card-spec__dl > dt {
    width: calc(20% - 15px);
    font-size: 15px;
  }
  .card-spec__dl > dd {
    width: calc(30% - 15px);
  }
  .card-spec__dl > dd:nth-of-type(odd) {
    margin-right: 30px;
  }
  .card-spec__txt {
    font-size: 15px;
  }
  .card-spec__dl .em {
    font-size: 17px;
  }
  .card-spec__logo.payment > li img {
    height: 25px;
  }
  .card-spec__logo.bland > li img {
    height: 30px;
  }
  .card-spec__band {
    font-size: 12px;
    padding-right: 25px;
    padding-left: 25px;
  }
  .card-spec__notes {
    margin-top: 55px;
    padding-right: 70px;
    padding-left: 70px;
  }
  .card-spec__notes > li {
    font-size: 12px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 640px) {
  .card-spec__dl > dt,
  .card-spec__dl > dd {
    padding: 20px 5px;
  }
  .card-spec__dl > dt {
    width: 30%;
    font-size: 14px;
  }
  .card-spec__dl > dd {
    width: 70%;
  }
  .card-spec__txt {
    font-size: 14px;
  }
  .card-spec__dl .em {
    font-size: 16px;
  }
  .card-spec__logo.payment > li img {
    height: 20px;
  }
  .card-spec__logo.bland > li img {
    height: 25px;
  }
  .card-spec__band {
    font-size: 11px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .card-spec__notes {
    margin-top: 25px;
  }
  .card-spec__notes > li {
    font-size: 10px;
  }
}

/** SECTION SUBSC
==============================================*/
.section-subsc {
}
@media screen and (min-width: 641px) {
  .section-subsc {
    padding-bottom: 115px;
  }
}
@media screen and (max-width: 640px) {
  .section-subsc {
    padding-bottom: 60px;
  }
}

.subsc-info {
}
.subsc-info__txt-txt {
  font-weight: 400;
  line-height: 1.9;
}
@media only screen and (min-width: 769px) {
  .subsc-info {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    padding-bottom: 75px;
  }
  .subsc-info--single {
    display: block;
    margin-top: 40px;
    padding-bottom: 20px;
  }
  .subsc-info__txt {
    padding-right: 35px;
    width: calc(100% - 280px);
  }
  .subsc-info--single .subsc-info__txt {
    padding-right: 0;
    width: 100%;
  }
  .subsc-info__txt-txt {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .subsc-info {
    padding-bottom: 50px;
  }
  .subsc-info--single {
    padding-bottom: 20px;
  }
  .subsc-info__txt {
    margin-bottom: 0;
  }
  .subsc-info__txt-txt {
    font-size: 14px;
  }
}

.subsc-info__balloon {
  background-color: #b156a9;
  position: relative;
  border-radius: 35px;
  border: 5px solid #e261cd;
}
.subsc-info__balloon-txt {
  font-weight: 500;
  line-height: 1.4;
}
.subsc-info__balloon-txt__ss {
  font-size: 0.5em;
}
.subsc-info__balloon-txt__s {
  font-size: 0.6em;
}
.subsc-info__balloon:not(.no-balloon):before,
.subsc-info__balloon:not(.no-balloon):after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
}
.subsc-info__balloon:before {
  border-color: #e261cd transparent transparent transparent;
  top: 100%;
}
.subsc-info__balloon:after {
  border-color: #b156a9 transparent transparent transparent;
}
.subsc-info__balloon-txt {
  text-align: center;
  color: #fff;
}
.subsc-info__balloon-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 769px) {
  .subsc-info__balloon {
    width: 280px;
    padding: 20px;
  }
  .subsc-info__balloon:before,
  .subsc-info__balloon:after {
    border-width: 59px 44px 0 0;
  }
  .subsc-info__balloon:before {
    left: calc(50% - 22px);
  }
  .subsc-info__balloon:after {
    top: calc(100% - 19px);
    left: calc(50% - 16px);
  }
  .subsc-info__balloon-txt {
    font-size: 28px;
  }
  .subsc-info__balloon-img {
    width: 170px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .subsc-info__balloon {
    width: 227px;
    padding: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  .subsc-info__balloon:before,
  .subsc-info__balloon:after {
    border-width: 35px 25px 0 0;
  }
  .subsc-info__balloon:before {
    left: calc(50% - 12.5px);
  }
  .subsc-info__balloon:after {
    top: calc(100% - 17px);
    left: calc(50% - 7.5px);
  }
  .subsc-info__balloon-txt {
    font-size: 22px;
  }
  .subsc-info__balloon-img {
    width: 140px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.item-target {
  /* border: 2px solid #e261cd; */
  background: -webkit-linear-gradient(50deg, rgba(144, 110, 238, 0.6), rgba(226, 97, 205, 0.6));
  background: linear-gradient(40deg, rgba(144, 110, 238, 0.6), rgba(226, 97, 205, 0.6));
  background: -webkit-linear-gradient(-40deg, rgba(144, 110, 238, 0.6), rgba(226, 97, 205, 0.6));
}
@media only screen and (min-width: 769px) {
  .item-target {
    padding: 25px;
  }
  .item-target--short {
    width: 640px;
    padding: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .item-target {
    padding: 10px;
  }
  .item-target--short {
    margin-top: 25px;
  }
}

.item-target > dt {
  background: transparent;
  color: #fff;
  font-weight: 500;
  position: relative;
  /* cursor: pointer; */
  text-align: center;
  line-height: 1.5;
}
/* .item-target > dt:before,
.item-target > dt:after {
  content: "";
  display: block;
  width: 2px;
  height: 14px;
  background: #fff;
  position: absolute;
  top: calc(50% - 7px);
  border-radius: 7px;
}
.item-target > dt:before {
  transform: rotate(145deg);
  right: 27px;
}
.item-target > dt:after {
  transform: rotate(-145deg);
  right: 19px;
}
.item-target > dt.active:before {
  transform: rotate(-145deg);
}
.item-target > dt.active:after {
  transform: rotate(145deg);
} */
.item-target > dd {
  /* padding-bottom: 10px; */
}
@media only screen and (min-width: 769px) {
  .item-target > dt {
    /* padding: 15px; */
    font-size: 26px;
  }
  .item-target--short > dt {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .item-target > dt {
    /* padding: 10px 0; */
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 16px;
  }
}

.item-target__dd {
  background-color: rgba(31, 59, 103, 0.6);
}
@media only screen and (min-width: 769px) {
  .item-target > dd {
    margin-top: 25px;
  }
  .item-target--short > dd {
    margin-top: 20px;
  }
  .item-target__dd {
    padding-right: 45px;
    padding-left: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .item-target > dd {
    margin-top: 10px;
  }
}

.subsc-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  .subsc-list__item {
    width: 25%;
    padding-right: 8px;
    padding-left: 8px;
  }
  .subsc-list__item:not(:nth-child(-n + 4)) {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .subsc-list {
    padding-bottom: 10px;
  }
  .subsc-list__item {
    width: 50%;
    padding-right: 10px;
    padding-left: 10px;
  }
  .subsc-list__item:not(:nth-child(-n + 2)) {
    margin-top: 20px;
  }
}

.subsc-list__item__name {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  margin-top: 5px;
}
.subsc-list__item__img {
  text-align: center;
}
.subsc-list__item__img img {
  max-width: 100%;
}
.subsc-list__item__img--bg {
  background-color: #fff;
  padding: 15px;
  border-radius: 6px;
}
@media only screen and (min-width: 769px) {
  .subsc-list__item__name {
    font-size: 15px;
  }
  .subsc-list__item__img img {
    /* width: 180px;
    min-height: 96px; */
  }
}
@media only screen and (max-width: 768px) {
  .subsc-list__item__name {
    font-size: 14px;
  }
  .subsc-list__item__img img {
    width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .subsc-list__item__name {
    font-size: min(3.2vw, 12px);
  }
}

.item-target > dd > .notes > li {
  text-align: right;
  font-weight: 500;
  font-size: 12px;
}
@media only screen and (max-width: 375px) {
  .item-target > dd > .notes > li {
    font-size: 3.2vw;
  }
}

.point-exchange {
  display: block;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}
@media only screen and (min-width: 769px) {
  .point-exchange {
    width: 580px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .point-exchange {
    width: 100%;
    padding: 15px;
  }
}

.service-block {
  background: -webkit-linear-gradient(50deg, rgba(144, 110, 238, 0.6), rgba(226, 97, 205, 0.6));
  background: linear-gradient(40deg, rgba(144, 110, 238, 0.6), rgba(226, 97, 205, 0.6));
  background: -webkit-linear-gradient(-40deg, rgba(144, 110, 238, 0.6), rgba(226, 97, 205, 0.6));
}
@media only screen and (min-width: 641px) {
  .service-block {
    margin-top: 40px;
    padding: 25px;
  }
}
@media only screen and (max-width: 640px) {
  .service-block {
    margin-top: 20px;
    padding: 10px;
  }
}

.service-list {
  background-color: rgba(31, 59, 103, 0.6);
}
.service-list > li {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row dense;
  grid-auto-columns: 1fr;
  -ms-grid-rows: auto 0px auto;
  grid-template-rows: auto auto;
  gap: 0px 0px;
  justify-items: stretch;
}
.service-list > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.service-list__img {
  grid-area: service-list__img;
}
.service-list__name {
  font-weight: 700;
  grid-area: service-list__name;
}
.service-list__info {
  grid-area: service-list__info;
}
@media only screen and (min-width: 641px) {
  .service-list {
    padding-right: 45px;
    padding-left: 45px;
  }
  .service-list > li {
    padding-top: 35px;
    padding-bottom: 35px;
    -ms-grid-columns: 230px calc(100% - 230px);
    grid-template-columns: 230px calc(100% - 230px);
    grid-template-areas:
      "service-list__img service-list__name"
      "service-list__img service-list__info";
  }
  .service-list__img {
    /* width: 230px; */
    padding-right: 30px;
  }
  .service-list__name {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .service-list__info {
    /* width: calc(100% - 230px); */
  }
  .service-list__txt {
    font-size: 16px;
  }
  .service-list__info .notes {
    margin-top: 10px;
  }
  .service-list__img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .service-list__name {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .service-list__info {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .service-list__img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .service-list__name {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .service-list__info {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .service-list__img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .service-list__name {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .service-list__info {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .service-list__img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .service-list__name {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .service-list__info {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}
@media only screen and (max-width: 640px) {
  .service-list {
    padding-right: 20px;
    padding-left: 20px;
  }
  .service-list > li {
    padding-top: 20px;
    padding-bottom: 20px;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    grid-template-areas:
      "service-list__name service-list__img"
      "service-list__info service-list__info";
  }
  .service-list__img {
    padding-left: 15px;
  }
  .service-list__info {
    margin-top: 15px;
  }
  .service-list__name {
    font-size: 15px;
  }
  .service-list__txt {
    font-size: 12px;
    line-height: 1.5;
  }
  .service-list__info .notes {
    margin-top: 5px;
    font-size: 10px;
  }
  .service-list__img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .service-list__name {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .service-list__info {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .service-list__img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .service-list__name {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .service-list__info {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .service-list__img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .service-list__name {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .service-list__info {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .service-list__img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .service-list__name {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .service-list__info {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
}

/** ITEM CUT
==============================================*/
.item-cut__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media only screen and (min-width: 641px) {
  .item-cut__item {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 640px) {
  .item-cut__item {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.item-cut__item--box {
}
@media only screen and (min-width: 641px) {
  .item-cut__item--box {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
  }
  .item-cut__box {
    width: 50%;
  }
  .item-cut__box:nth-child(odd) {
    padding-right: 40px;
    border-right: 0.5px solid rgba(255, 255, 255, 0.15);
  }
  .item-cut__box:nth-child(even) {
    padding-left: 40px;
    border-left: 0.5px solid rgba(255, 255, 255, 0.15);
  }
}
@media only screen and (max-width: 640px) {
  .item-cut__box:not(:first-child) {
    padding-top: 35px;
  }
  .item-cut__box:not(:last-child) {
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 35px;
  }
}

.item-cut__normal {
}
@media only screen and (min-width: 641px) {
  .item-cut__normal {
    display: -webkit-box;
    display: flex;
  }
  .item-cut__normal .item-cut__info {
    width: calc(100% - 640px);
    padding-right: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .item-cut__info {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.item-cut__ttl {
  margin-bottom: 15px;
}
.item-cut__ttl--center {
  text-align: center;
}
.item-cut__txt--center {
  text-align: center;
}
.item-cut__info > .notes {
  margin-top: 1em;
}
.item-cut__info > .notes > li {
  letter-spacing: 0;
}
@media only screen and (min-width: 641px) {
  .item-cut__ttl {
    font-size: 34px;
  }
  .item-cut__txt {
    font-size: 16px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 640px) {
  .item-cut__ttl {
    font-size: min(5.866666666666666vw, 22px);
    text-align: center;
  }
  .item-cut__txt {
    font-size: 14px;
  }
  .item-cut__info > .notes {
    font-size: 10px;
  }
}

.item-cut__img {
  text-align: center;
}
.item-cut__img-zero-yen {
  width: 159px;
  height: 127px;
}
.item-cut__img-etc {
  -webkit-filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.7));
  filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.7));
  width: 200px;
}
@media only screen and (min-width: 641px) {
  .item-cut__img {
    padding-top: 40px;
  }
  .item-cut__img-etc {
  }
}
@media only screen and (max-width: 640px) {
  .item-cut__img {
    padding-top: 25px;
  }
}

.item-campaign > dt {
  font-weight: 500;
  background: -webkit-linear-gradient(left, rgba(144, 110, 238, 0.6) 0%, rgba(226, 97, 205, 0.6) 100%);
  background: linear-gradient(90deg, rgba(144, 110, 238, 0.6) 0%, rgba(226, 97, 205, 0.6) 100%);
  padding: 10px;
  text-align: center;
}
@media only screen and (min-width: 641px) {
  .item-campaign {
    margin-top: 40px;
  }
  .item-campaign > dt {
    font-size: 20px;
  }
  .item-campaign > dd {
    padding: 60px 43px 30px;
  }
}
@media only screen and (max-width: 640px) {
  .item-campaign {
    padding-right: 10px;
    padding-left: 10px;
    margin-top: 25px;
  }
  .item-campaign > dt {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

.item-campaign__list {
  display: -webkit-box;
  display: flex;
}
.item-campaign__img {
  width: 100%;
}
.item-campaign__txt {
  font-size: 14px;
}
@media only screen and (min-width: 641px) {
  .item-campaign__list {
    flex-wrap: wrap;
  }
  .item-campaign__list > li {
    width: calc(100% / 3);
    padding-right: 17px;
    padding-left: 17px;
  }
  .item-campaign__list > li:not(:nth-child(-n + 3)) {
    padding-top: 45px;
  }
  .item-campaign__info {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 640px) {
  .item-campaign__item {
    padding-right: 15px;
    padding-left: 15px;
  }
  .item-campaign__info {
    margin-top: 10px;
  }
  .item-campaign__list .slick-next,
  .item-campaign__list .slick-prev {
    width: 30px;
    height: 30px;
    top: calc(33.3333333% - 15px);
    background: -webkit-linear-gradient(left, rgba(144, 110, 238, 1) 0%, rgba(226, 97, 205, 1) 100%);
    background: linear-gradient(90deg, rgba(144, 110, 238, 1) 0%, rgba(226, 97, 205, 1) 100%);
    opacity: 1;
  }
  .item-campaign__list .slick-next:before,
  .item-campaign__list .slick-prev:before {
    width: 12px;
    height: 12px;
    top: calc(33.3333333% - 2px);
  }
  .item-campaign__list .slick-next {
    right: -30px;
  }
  .item-campaign__list .slick-prev {
    left: -30px;
  }
  .item-campaign__list .slick-next:before {
    right: 12px;
  }
  .item-campaign__list .slick-prev:before {
    left: 12px;
  }
  .item-campaign__list .slick-dots {
    bottom: -20px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .item-campaign__list .slick-dots li {
    width: auto;
    height: auto;
    margin-right: 5px;
    margin-left: 5px;
  }
  .item-campaign__list .slick-dots li button {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
  }
  .item-campaign__list .slick-dots li.slick-active button {
    width: 12px;
    height: 12px;
    background: -webkit-linear-gradient(left, rgba(144, 110, 238, 0.6) 0%, rgba(226, 97, 205, 0.6) 100%);
    background: linear-gradient(90deg, rgba(144, 110, 238, 0.6) 0%, rgba(226, 97, 205, 0.6) 100%);
  }
  .item-campaign__list .slick-dots li button:before {
    display: none;
  }
}

.item-service__list > li {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
}
.item-service__img {
  border-radius: 6px;
  overflow: hidden;
}
.item-service__img--border {
  border: 3px solid #e261cd;
}
.item-service__img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.item-service__name {
  letter-spacing: 0;
  margin-bottom: 5px;
}
.item-service__txt {
  letter-spacing: 0;
  line-height: 1.5;
}
@media only screen and (min-width: 641px) {
  .item-service {
    margin-top: 50px;
  }
  .item-service__list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
  }
  .item-service__list > li {
    width: 50%;
  }
  .item-service__list > li:not(:nth-child(-n + 2)) {
    margin-top: 25px;
  }
  .item-service__list > li:nth-child(odd) {
    padding-right: 15px;
  }
  .item-service__list > li:nth-child(even) {
    padding-left: 15px;
  }
  .item-service__img {
    width: 103px;
    height: 103px;
  }
  .item-service__info {
    width: calc(100% - 103px);
    padding-left: 20px;
  }
  .item-service__name {
    font-size: 18px;
  }
  .item-service__txt {
    font-size: 14px;
  }
}
@media only screen and (max-width: 640px) {
  .item-service {
    margin-top: 25px;
  }
  .item-service__list > li:not(:first-child) {
    margin-top: 20px;
  }
  .item-service__img {
    width: 80px;
    height: 80px;
  }
  .item-service__info {
    width: calc(100% - 80px);
    padding-left: 10px;
  }
  .item-service__name {
    font-size: 12px;
  }
  .item-service__txt {
    font-size: 12px;
  }
}

.item-service-add {
  margin-top: 50px;
}

.section-service {
  background-color: rgba(0, 0, 30, 0.4);
}
@media only screen and (min-width: 641px) {
  .section-service {
    padding-top: 90px;
    padding-bottom: 130px;
  }
  .section-service .item-service {
    margin-top: 75px;
  }
}
@media only screen and (max-width: 640px) {
  .section-service {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/** SITE NOTES
==============================================*/
.site-notes {
  color: #4c4c4c;
}

/** ENTRT MODAL
==============================================*/
.entry_chart {
  display: none;
}
@media only screen and (min-width: 641px) {
  #question-online {
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  #question-identification {
    display: block;
  }
}
@media only screen and (min-width: 641px) {
  .entry_modal {
    width: 840px;
    max-width: 100%;
    padding: 35px;
  }
  .entry_modal > * {
    max-width: 590px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media only screen and (max-width: 640px) {
  .entry_modal {
    padding: 30px 20px;
  }
}

.entry_modal .entry_modal_ttl {
  color: #004089;
  font-size: 12px;
  display: inline-block;
  border-bottom: 1px solid #004089;
  margin-bottom: 25px;
}

.entry_modal .entry_modal_img {
  text-align: center;
  padding-bottom: 30px;
}
.entry_modal .entry_modal_img.hide {
  display: none;
}
.entry_modal .entry_modal_img img {
  max-width: 100%;
}
@media only screen and (min-width: 641px) {
  .entry_modal .entry_modal_img img {
    width: 238px;
  }
  .entry_modal .entry_modal_txt {
    font-size: 18px;
  }
  .entry_modal .qr_img {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .entry_modal .qr_img canvas {
    width: 150px;
  }
}
@media only screen and (max-width: 640px) {
  .entry_modal .entry_modal_img img {
    width: 127px;
  }
  .entry_modal .entry_modal_txt {
    font-size: 15px;
  }
}

.entry_modal ul.select_entry_style {
  padding-top: 25px;
}
.entry_modal .select_entry_style > li:not(:last-child) {
  margin-bottom: 15px;
}
.entry_modal .select_entry_style > li .btn_wrap a {
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  line-height: 1.3;
  padding: 10px;
  position: relative;
  min-height: 47px;
  font-weight: 700;
}
.entry_modal.digital .select_entry_style > li .btn_wrap a {
  background-color: #e261cd;
  border: 2px solid #e261cd;
}
.entry_modal.digital .select_entry_style > li .btn_wrap a.yes {
  background-color: #ffedeb;
  color: #e261cd;
}
.entry_modal .select_entry_style > li .btn_wrap a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  border-color: transparent transparent transparent rgba(225, 225, 225, 0.6);
  position: absolute;
  right: 10px;
  top: calc(50% - 4px);
}
.entry_modal .select_entry_style > li .btn_wrap a .small {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 641px) {
  .entry_modal .select_entry_style {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .entry_modal .select_entry_style > li {
    padding: 0 10px;
  }
  .entry_modal .select_entry_style > li .btn_wrap a {
    width: 285px;
    max-width: 100%;
  }
  .entry_modal .select_entry_style > li .btn_wrap a .small {
    font-size: 13px;
  }
}
@media only screen and (max-width: 640px) {
  .entry_modal .select_entry_style > li .btn_wrap a .small {
    font-size: 10px;
  }
}

.entry_modal .information_red {
  display: inline-block;
  color: #ff0000;
  font-size: 11px;
  text-align: left;
  background-color: #fff;
}
@media only screen and (max-width: 640px) {
  .entry_modal .information_red {
    padding-top: 10px;
  }
}

.entry_modal .prev_btn {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  text-align: left;
  padding-left: 50px;
  min-height: 40px;
  font-weight: 700;
}
.entry_modal .prev_btn:before,
.entry_modal .prev_btn:after {
  content: "";
  position: absolute;
}
.entry_modal .prev_btn:before {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #004089;
  left: 0;
  top: calc(50% - 20px);
}
.entry_modal .prev_btn:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 8px 4.5px 0;
  border-color: transparent #fff transparent transparent;
  left: 16px;
  top: calc(50% - 4.5px);
}
@media only screen and (min-width: 641px) {
  .entry_modal .prev_btn {
    margin-top: 50px;
    margin-left: -80px;
  }
}
@media only screen and (max-width: 640px) {
  .entry_modal .prev_btn {
    margin-top: 20px;
  }
}

.howto_dl > dt {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}
.digital .howto_dl > dt {
  color: #e261cd;
}
.howto_dl > dt:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  right: 0;
  top: calc(50% - 6px);
}
.digital .howto_dl > dt:after {
  background-color: #e261cd;
}

.howto_dl {
  padding-top: 15px;
}
.howto_dl > dt .howto_dt:before,
.howto_dl > dt .howto_dt:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1px;
  background-color: #fff;
  right: 2.5px;
  top: calc(50% - 0.5px);
  z-index: 1;
}
.howto_dl > dt .howto_dt {
  font-size: 10px;
}
.howto_dl > dt .howto_dt:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.howto_dl > dt.active .howto_dt:after {
  opacity: 0;
}

.howto_dl > dd {
  background-color: #eef2f2;
  padding: 15px;
}
@media only screen and (min-width: 641px) {
  .howto_kantan_dl > dd {
    width: calc(200% + 20px);
  }
}
@media all and (-ms-high-contrast: none) {
  .howto_kantan_dl > dd {
    max-width: 100%;
  }
}

.howto_online_dl .lead {
  font-size: 12px;
}

.plastic .howto_dl > dd .digital_btn {
  display: none;
}
.digital .howto_dl > dd .plastic_btn {
  display: none;
}

.howto_kantan_box > * {
  margin-bottom: 10px;
}

.howto_kantan_box .inner {
  padding-bottom: 10px;
}

.howto_kantan_box .lead {
  text-align: left;
  font-size: 12px;
}

.howto_kantan_box .notes {
  font-size: 10px;
}

.howto_kantan_box .in_ttl {
  font-weight: 700;
  padding-top: 1em;
  font-size: 14px;
}

.howto_kantan_box .em_txt {
  font-weight: 700;
  font-size: 13px;
}
.howto_kantan_box .txt {
  font-size: 12px;
  padding-top: 5px;
}

.howto_kantan_box .img {
  padding-top: 10px;
  padding-bottom: 10px;
}

.howto_kantan_box .dot {
  text-align: left;
  line-height: 1.3;
}
.howto_kantan_box .dot > li {
  text-align: left;
  font-size: 12px;
  display: inline-block;
}

@media only screen and (min-width: 641px) {
  .howto_kantan_box .step_block {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .howto_kantan_box .step_block .step_body .inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .howto_kantan_box .step_block .step_body .inner > * {
    width: 50%;
  }
  .howto_kantan_box .step_block .step_body .inner .img {
    padding-right: 10px;
  }
  .howto_kantan_box .step_block .step_body .inner .text {
    padding-top: 20px;
    padding-left: 10px;
  }
  .howto_kantan_box .step_block .step_body .inner .text .em_txt {
    text-align: left;
  }
  .howto_kantan_box .step_block .step_body .inner .text .txt {
    text-align: left;
  }
}

.modal-cont .howto_kantan_dl ul {
  padding: 0;
}
.modal-cont.digital .howto_kantan_dl ul.plastic {
  display: none;
}
.modal-cont.plastic .howto_kantan_dl ul.digital {
  display: none;
}
.modal-cont .card_entry_box ul.notes {
  font-size: 10px;
}

.modaal-container {
  background: none;
}
@media only screen and (min-width: 641px) {
  .modaal-container {
    max-width: 1000px;
  }
  .modaal-content-container {
    padding: 0;
  }
}

.modal-cont {
  background-color: #fff;
  margin: 0 auto;
}
.modal-cont.entry_modal ul.notes > li:before {
  position: relative;
}

.modal-cont .cycle {
  display: block;
}
.modal-cont .cycle tbody {
  display: table;
  border: 1px solid #efefef;
  font-size: 13px;
  margin-bottom: 10px;
  width: 100%;
  /* white-space: nowrap; */
}
.modal-cont .cycle th {
  background-color: #ececec;
  width: 20%;
  font-weight: bold;
}
.modal-cont .cycle th:first-child {
  width: 16%;
}
.modal-cont .cycle.column5 th {
  width: 25%;
}
.modal-cont .cycle.column5 th:first-child {
  width: 10%;
}
.modal-cont .cycle.column5 th:nth-child(2) {
  width: 15%;
}
.modal-cont .cycle.column4 th,
.modal-cont .cycle.column4 td {
  width: 25%;
}
.modal-cont .cycle th,
.modal-cont .cycle td {
  padding: 10px;
  vertical-align: middle;
}
.modal-cont .cycle td {
  background-color: #fff;
  border-top: 1px solid #efefef;
}
.modal-cont .cycle th:not(:last-child),
.modal-cont .cycle td:not(:last-child) {
  border-right: 1px solid #efefef;
}
@media screen and (max-width: 640px) {
  .modal-cont .cycle {
    overflow-x: scroll;
  }
  .modal-cont .cycle tbody {
    width: 200%;
  }
}
.modal-cont .cycle td em {
  font-style: normal;
  font-weight: bold;
}

.modal-cont .cycle .mouth01 {
  background-color: rgba(97, 155, 184, 0.2);
}
.modal-cont .cycle .mouth02 {
  background-color: rgba(105, 79, 180, 0.2);
}
.modal-cont .cycle .mouth03 {
  background-color: rgba(156, 160, 124, 0.2);
}
@media screen and (max-width: 640px) {
  .modal-cont .cycle {
    font-size: 13px;
  }
}

.modal-cont .cycle .f_wh {
  color: #fff;
}
.modal-cont .cycle .b_or {
  background-color: #ff5104;
}
.modal-cont .cycle .b_salmon {
  background-color: #fdf6f2;
}
.modal-cont .cycle .b_bl {
  background-color: #3faff1;
}
.modal-cont .cycle .b_lbl {
  background-color: #eaf3f8;
}
.modal-cont .cycle .th_in_ttl {
  background-color: #000;
  display: inline-block;
  border-radius: 5px;
  padding: 5px 10px;
  line-height: 1;
  margin-bottom: 5px;
}

/* 2411ABtest */
.question-own-card {
  background-color: #eff0f0;
  color: #333333;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .question-own-card {
    padding: 30px;
    /* margin-top: 40px; */
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .question-own-card {
    padding: 30px 10px;
    /* margin-top: 35px; */
    margin-bottom: 30px;
  }
}

.question-own-card__q {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .question-own-card__q {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .question-own-card__q {
    font-size: 15px;
  }
}

.question-own-card__a {
  padding-top: 0 !important;
}
.question-own-card__sub {
  border-radius: 11px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  font-weight: 700;
  line-height: 1.75;
  width: 100%;
  font-size: 14px;
  color: #000;
  background-color: #ffff00;
  margin-bottom: -10px;
  position: relative;
  z-index: 1;
}
.question-own-card__btn {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.5;
  max-width: 100%;
  font-weight: 700;
  -ms-box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
  padding: 20px 15px 15px;
  min-height: 60px;
  border-radius: 6px;
  line-height: 1.4;
}
.question-own-card__no .question-own-card__btn {
  background-color: #ffedeb;
  border: 2px solid #e261cd;
  color: #e261cd;
}
.question-own-card__yes .question-own-card__btn {
  background-color: #e261cd;
  border: 2px solid #e261cd;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .question-own-card__a > li:not(:first-child) {
    margin-top: 25px;
  }
  .question-own-card__sub {
    max-width: 250px;
  }
  .question-own-card__btn {
    width: 364px;
  }
  .question-own-card__no .question-own-card__btn {
    font-size: 18px;
  }
  .question-own-card__yes .question-own-card__btn {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .question-own-card__a > li:not(:first-child) {
    margin-top: 20px;
  }
  .question-own-card__sub {
    max-width: 200px;
  }
  .question-own-card__btn {
    width: 100%;
    max-width: 284px;
  }
  .question-own-card__no .question-own-card__btn {
    font-size: 15px;
  }
  .question-own-card__yes .question-own-card__btn {
    font-size: 13px;
  }
}

.question-own-card__notes {
  margin-top: 20px;
}
.question-own-card__notes > li {
  font-size: 10px;
  text-align: left;
}
.question-own-card__notes > li:before {
  content: "※";
}

.card-own-card {
  color: #333333;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .card-own-card {
    padding: 20px 30px 30px;
    /* margin-top: 20px; */
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .card-own-card {
    padding: 15px 10px 20px;
    /* margin-top: 15px; */
    margin-bottom: 15px;
  }
}

.card-own-card__q {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .card-own-card__q {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .card-own-card__q {
    font-size: 17px;
  }
}

.card-own-card__a {
  padding-top: 0 !important;
}
.card-own-card__a > li:not(:first-child) {
  margin-top: 20px;
}
.card-own-card__or {
  display: block;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.card-own-card__or:after {
  content: "";
  width: 100%;
  height: 1.5px;
  position: absolute;
  left: 0;
  bottom: 1em;
  background-color: #333;
  z-index: 0;
}
.card-own-card__or-txt {
  background-color: #fff;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 700;
}
.card-own-card__btn {
  display: block;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.625;
  max-width: 100%;
}
.card-own-card__no .card-own-card__btn {
  background-color: #e261cd;
  border: 2px solid #e261cd;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  -ms-box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
  padding: 15px;
}
.card-own-card__yes .card-own-card__btn {
  font-weight: 500;
  color: #e261cd;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .card-own-card__or {
    margin-bottom: 10px;
    width: 364px;
  }
  .card-own-card__btn {
    width: 364px;
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .card-own-card__or {
    margin-bottom: 10px;
    max-width: 284px;
    width: 100%;
  }
  .card-own-card__btn {
    max-width: 284px;
    width: 100%;
    font-size: 15px;
  }
}

.card-own-card__notes > li {
  font-size: 10px;
  text-align: left;
}
.card-own-card__notes > li:before {
  content: "※";
}
@media screen and (min-width: 769px) {
  .card-own-card__notes {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .card-own-card__notes {
    margin-top: 30px;
  }
}

/** SP NEW FONT SIZE
==============================================*/
@media screen and (max-width: 640px) {
  /* 375px size */
  :root {
    --pixel01: 0.27vw;
    --pixel02: 0.53vw;
    --pixel03: 0.8vw;
    --pixel04: 1.07vw;
    --pixel05: 1.33vw;
    --pixel06: 1.6vw;
    --pixel07: 1.87vw;
    --pixel08: 2.13vw;
    --pixel09: 2.4vw;
    --pixel10: 2.67vw;
    --pixel11: 2.93vw;
    --pixel12: 3.2vw;
    --pixel13: 3.47vw;
    --pixel14: 3.73vw;
    --pixel15: 4vw;
    --pixel16: 4.27vw;
    --pixel17: 4.53vw;
    --pixel18: 4.8vw;
    --pixel19: 5.07vw;
    --pixel20: 5.33vw;
    --pixel21: 5.6vw;
    --pixel22: 5.87vw;
    --pixel23: 6.13vw;
    --pixel24: 6.4vw;
    --pixel25: 6.67vw;
    --pixel26: 6.93vw;
    --pixel27: 7.2vw;
    --pixel28: 7.47vw;
    --pixel29: 7.73vw;
    --pixel30: 8vw;
    --pixel31: 8.27vw;
    --pixel32: 8.53vw;
    --pixel33: 8.8vw;
    --pixel34: 9.07vw;
    --pixel35: 9.33vw;
    --pixel36: 9.6vw;
    --pixel37: 9.87vw;
    --pixel38: 10.13vw;
    --pixel39: 10.4vw;
    --pixel40: 10.67vw;
    --pixel41: 10.93vw;
    --pixel42: 11.2vw;
    --pixel43: 11.47vw;
    --pixel44: 11.73vw;
    --pixel45: 12vw;
    --pixel46: 12.27vw;
    --pixel47: 12.53vw;
    --pixel48: 12.8vw;
    --pixel49: 13.07vw;
    --pixel50: 13.33vw;
    --pixel51: 13.6vw;
    --pixel52: 13.87vw;
    --pixel53: 14.13vw;
    --pixel54: 14.4vw;
    --pixel55: 14.67vw;
    --pixel56: 14.93vw;
    --pixel57: 15.2vw;
    --pixel58: 15.47vw;
    --pixel59: 15.73vw;
    --pixel60: 16vw;
    --pixel61: 16.27vw;
    --pixel62: 16.53vw;
    --pixel63: 16.8vw;
    --pixel64: 17.07vw;
    --pixel65: 17.33vw;
    --pixel66: 17.6vw;
    --pixel67: 17.87vw;
    --pixel68: 18.13vw;
    --pixel69: 18.4vw;
    --pixel70: 18.67vw;
    --pixel71: 18.93vw;
    --pixel72: 19.2vw;
    --pixel73: 19.47vw;
    --pixel74: 19.73vw;
    --pixel75: 20vw;
    --pixel76: 20.27vw;
    --pixel77: 20.53vw;
    --pixel78: 20.8vw;
    --pixel79: 21.07vw;
    --pixel80: 21.33vw;
    --pixel81: 21.6vw;
    --pixel82: 21.87vw;
    --pixel83: 22.13vw;
    --pixel84: 22.4vw;
    --pixel85: 22.67vw;
    --pixel86: 22.93vw;
    --pixel87: 23.2vw;
    --pixel88: 23.47vw;
    --pixel89: 23.73vw;
    --pixel90: 24vw;
    --pixel91: 24.27vw;
    --pixel92: 24.53vw;
    --pixel93: 24.8vw;
    --pixel94: 25.07vw;
    --pixel95: 25.33vw;
    --pixel96: 25.6vw;
    --pixel97: 25.87vw;
    --pixel98: 26.13vw;
    --pixel99: 26.4vw;
    --pixel100: 26.67vw;
  }
}

/** SERVICE ANNOUNCE
==============================================*/
.service-announce {
  text-align: center;
}
.service-announce__button,
.service-announce__button:hover {
  position: relative;
  text-align: center;
  color: #004098;
  background-color: #dbe7f6;
  overflow: hidden;
  padding: 0;
  border: none;
}
.service-announce__button:before,
.service-announce__button:after {
  content: "";
  position: absolute;
}
.service-announce__button:before {
  background-color: #fff;
  border-radius: 50%;
}
.service-announce__button:after {
  background-color: #004098;
}
.service-announce__button * {
  font-weight: bold;
  font-weight: 700;
  letter-spacing: 0;
}
.service-announce__button-lead {
  background-color: #004098;
  color: #dbe7f6;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.service-announce__button-txt {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
@media screen and (min-width: 641px) {
  .service-announce {
    padding: 60px 20px;
  }
  .service-announce__button {
    cursor: pointer;
    display: -webkit-inline-box;
    display: inline-flex;
    border-radius: 35px;
  }
  .service-announce__button:before {
    right: 20px;
    width: 24px;
    height: 24px;
    top: calc(50% - 12px);
  }
  .service-announce__button:after {
    right: 26px;
    width: 9px;
    height: 10px;
    -webkit-clip-path: polygon(9px 50%, 0% 0%, 0% 10px);
    clip-path: polygon(9px 50%, 0% 0%, 0% 10px);
    top: calc(50% - 5px);
  }
  .service-announce__button-lead {
    font-size: 22px;
    padding: 15px 40px;
  }
  .service-announce__button-txt {
    font-size: 22px;
    padding: 15px 80px 15px 40px;
  }
}
@media screen and (max-width: 640px) {
  .service-announce {
    padding: var(--pixel40) 0;
  }
  .service-announce__button {
    display: -webkit-box;
    display: flex;
    width: 100%;
    border-radius: var(--pixel35);
  }
  .service-announce__button:before {
    right: var(--pixel10);
    width: var(--pixel24);
    height: var(--pixel24);
    top: calc(50% - var(--pixel12));
  }
  .service-announce__button:after {
    right: var(--pixel16);
    width: var(--pixel09);
    height: var(--pixel10);
    -webkit-clip-path: polygon(var(--pixel09) 50%, 0% 0%, 0% var(--pixel10));
    clip-path: polygon(var(--pixel09) 50%, 0% 0%, 0% var(--pixel10));
    top: calc(50% - var(--pixel05));
  }
  .service-announce__button-lead {
    font-size: var(--pixel14);
    padding: var(--pixel10);
  }
  .service-announce__button-txt {
    width: 55%;
    font-size: var(--pixel14);
    padding: var(--pixel10);
  }
}

@media screen and (min-width: 641px) {
  .modal-service-announce {
    padding: 50px;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 640px) {
  .modal-service-announce {
    padding: var(--pixel20) 0;
  }
}

@media screen and (min-width: 641px) {
  .modal-service-announce__head {
    margin-bottom: 30px;
  }
  .modal-service-announce__head > *:not(:first-child) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 640px) {
  .modal-service-announce__head {
    margin-bottom: var(--pixel10);
  }
  .modal-service-announce__head > *:not(:first-child) {
    margin-top: var(--pixel15);
  }
}

.modal-service-announce__title {
  text-align: center;
}
@media screen and (min-width: 641px) {
  .modal-service-announce__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .modal-service-announce__title {
    font-size: var(--pixel16);
  }
}

@media screen and (min-width: 641px) {
  .modal-service-announce__lead {
    font-size: 18px;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .modal-service-announce__lead {
    font-size: var(--pixel14);
    text-align: left;
  }
}

.modal-service-announce__img {
  text-align: center;
}
.modal-service-announce__img img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 641px) {
  .modal-service-announce__img img {
    width: min(41.66666666666667vw, 600px);
  }
}
@media screen and (max-width: 640px) {
  .modal-service-announce__img img {
    width: 100%;
  }
}

.modal-service-announce__info {
  background-color: #eee;
}
@media screen and (min-width: 641px) {
  .modal-service-announce__info {
    padding: 40px;
  }
}
@media screen and (max-width: 640px) {
  .modal-service-announce__info {
    padding: var(--pixel15);
  }
}

@media screen and (min-width: 641px) {
  .modal-service-announce__box:not(:first-child) {
    margin-top: 30px;
  }
  .modal-service-announce__box > *:not(:first-child) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 640px) {
  .modal-service-announce__box:not(:first-child) {
    margin-top: var(--pixel15);
  }
  .modal-service-announce__box > *:not(:first-child) {
    margin-top: var(--pixel05);
  }
}

.modal-service-announce__txt {
  text-align: left;
}
@media screen and (min-width: 641px) {
  .modal-service-announce__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .modal-service-announce__txt {
    font-size: var(--pixel14);
  }
}

.modal-service-announce__dl > dt,
.modal-service-announce__dl > dd {
  text-align: left;
}
.modal-service-announce__dl > dt {
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .modal-service-announce__dl > dt {
    float: left;
  }
  .modal-service-announce__dl > dt:after {
    content: "：";
  }
  .modal-service-announce__dl > dd {
    text-align: left;
  }
  .modal-service-announce__dl > dd:after {
    content: "";
    display: block;
    clear: both;
  }
  .modal-service-announce__dl > dt,
  .modal-service-announce__dl > dd {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .modal-service-announce__dl > dt,
  .modal-service-announce__dl > dd {
    font-size: var(--pixel14);
  }
  .modal-service-announce__dl > dt:not(:first-child) {
    margin-top: var(--pixel05);
  }
}

.modal-service-announce__notes > li {
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
.modal-service-announce__notes > li:before {
  content: "※";
}
@media screen and (min-width: 641px) {
  .modal-service-announce__notes > li {
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  .modal-service-announce__notes > li {
    font-size: var(--pixel11);
  }
}

.modal-service-announce__table {
  background-color: #fff;
  overflow: hidden;
  width: 100%;
  display: block;
}
.modal-service-announce__table thead {
  display: table;
  width: 100%;
  background-color: #b80201;
  color: #fff;
}
.modal-service-announce__table thead th {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 641px) {
  .modal-service-announce__table {
    border-radius: 10px;
  }
  .modal-service-announce__table thead th {
    font-size: 20px;
    padding: 15px 10px;
  }
}
@media screen and (max-width: 640px) {
  .modal-service-announce__table {
    border-radius: var(--pixel10);
  }
  .modal-service-announce__table thead th {
    font-size: var(--pixel16);
    padding: var(--pixel10);
  }
}

.modal-service-announce__table tbody {
  display: table;
  width: 100%;
}
.modal-service-announce__table tbody th,
.modal-service-announce__table tbody td {
  vertical-align: middle;
  text-align: center;
  line-height: 1.3;
}
.modal-service-announce__table tbody th:last-child,
.modal-service-announce__table tbody td:last-child {
  color: #b80201;
  position: relative;
}
.modal-service-announce__table tbody th:last-child:before,
.modal-service-announce__table tbody td:last-child:before {
  content: "▶";
  position: absolute;
  left: 0;
  top: calc(50% - 0.5em);
}
.modal-service-announce__table tbody th:not(:first-child),
.modal-service-announce__table tbody td:not(:first-child) {
  font-weight: 900;
}
.modal-service-announce__table tbody tr:first-child > th {
  background-color: #fff;
}
.modal-service-announce__table tbody tr:not(:first-child) th,
.modal-service-announce__table tbody tr:not(:first-child) td {
  background-color: #f2f2f2;
}
@media screen and (min-width: 641px) {
  .modal-service-announce__table tbody {
    border-right: 20px solid #fff;
    border-bottom: 20px solid #fff;
    border-left: 20px solid #fff;
  }
  .modal-service-announce__table tbody th,
  .modal-service-announce__table tbody td {
    padding: 15px 10px;
  }
  .modal-service-announce__table tbody tr:first-child > th {
    font-size: 16px;
  }
  .modal-service-announce__table tbody th:last-child:before,
  .modal-service-announce__table tbody td:last-child:before {
    font-size: 14px;
  }
  .modal-service-announce__table tbody tr:not(:first-child) > th,
  .modal-service-announce__table tbody tr:not(:first-child) > td {
    font-size: 20px;
  }
  .modal-service-announce__table tbody tr:not(:first-child) > th:first-child {
    font-size: 16px;
  }
  .modal-service-announce__table tbody tr:not(:first-child) th,
  .modal-service-announce__table tbody tr:not(:first-child) td {
    border-bottom: 4px solid #fff;
  }
}
@media screen and (max-width: 640px) {
  .modal-service-announce__table tbody {
    border-right: var(--pixel05) solid #fff;
    border-bottom: var(--pixel05) solid #fff;
    border-left: var(--pixel05) solid #fff;
  }
  .modal-service-announce__table tbody th,
  .modal-service-announce__table tbody td {
    padding: var(--pixel05);
  }
  .modal-service-announce__table tbody tr:first-child > th {
    font-size: var(--pixel12);
  }
  .modal-service-announce__table tbody th:last-child:before,
  .modal-service-announce__table tbody td:last-child:before {
    font-size: var(--pixel10);
  }
  .modal-service-announce__table tbody tr:not(:first-child) > th,
  .modal-service-announce__table tbody tr:not(:first-child) > td {
    font-size: var(--pixel14);
  }
  .modal-service-announce__table tbody tr:not(:first-child) > th:first-child {
    font-size: var(--pixel12);
  }
  .modal-service-announce__table tbody tr:not(:first-child) th,
  .modal-service-announce__table tbody tr:not(:first-child) td {
    border-bottom: var(--pixel02) solid #fff;
  }
}
