@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  vertical-align: top;
  font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1200px;
  overflow: auto;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  color: #333;
}
@media screen and (max-width: 768px) {
  body {
    min-width: 0;
  }
}

p,
h1,
h2,
h3,
h4,
th,
td,
li,
dt,
dd,
figcaption,
input,
select,
textarea {
  font-weight: normal;
}

ul,
ol {
  list-style-type: none;
}

figure {
  margin: 0;
}
@media screen and (max-width: 768px) {
  figure {
    margin: 0;
  }
}

sup {
  position: static;
  line-height: normal;
  font-size: 75%;
  vertical-align: top;
}

img {
  width: 100%;
  height: auto;
  border: none;
}

a {
  color: inherit;
  text-decoration: underline;
}

/* -------------------------------------------------
  Layout
------------------------------------------------- */
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.container.w620 {
  max-width: 660px;
}
.container.w700 {
  max-width: 740px;
}
.container.w920 {
  max-width: 960px;
}
.container.w980 {
  max-width: 1020px;
}
@media screen and (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* -------------------------------------------------
  Content
------------------------------------------------- */
.kv {
  width: 100%;
  height: 740px;
  overflow: hidden;
}
.kv picture {
  display: block;
  width: 100%;
  height: 100%;
}
.kv img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .kv {
    height: auto;
  }
  .kv img {
    height: auto;
  }
}

.cv1 {
  padding: 30px 0 40px;
}
.cv1_btn a {
  display: block;
}
.cv1_notes {
  margin-top: 15px;
}
.cv1_note {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
  font-size: 13px;
}
.cv1_dpoint {
  margin: 30px -1px 0;
}
@media screen and (max-width: 768px) {
  .cv1 {
    padding: 20px 0 25px;
  }
  .cv1_note {
    font-size: 11px;
  }
  .cv1_dpoint {
    margin: 25px 0 0;
  }
}

.nav {
  max-width: 980px;
  margin: 0 auto 50px;
}
.nav_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.nav_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 6px 0 38px;
  border-radius: 10px;
  background-color: #01a2e6;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
.nav_link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 26px;
  height: 26px;
  translate: -50% 0;
  background: url(../images/icon_nav_arrow.png) 0 0/contain no-repeat;
}
@media (hover: hover) {
  .nav_link {
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  .nav_link:hover {
    text-decoration: none;
    background-color: #cbe7fb;
    color: #01a2e6;
  }
}
@media screen and (max-width: 768px) {
  .nav {
    margin-bottom: 25px;
  }
  .nav_items {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .nav_link {
    justify-content: start;
    height: 60px;
    padding: 0 0 0 15px;
    border-radius: 0;
    line-height: 1.3;
    text-align: left;
    font-size: 15px;
  }
  .nav_link::after {
    content: "";
    position: absolute;
    left: auto;
    right: 14px;
    top: 50%;
    bottom: auto;
    width: 20px;
    height: 20px;
    translate: 0 -50%;
  }
}

.section_title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background-color: #01a2e6;
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
}
.section_title span {
  position: relative;
}
.section_title span::before {
  content: "";
  position: absolute;
  top: 50%;
  background: 0 0/contain no-repeat;
  translate: 0 -50%;
}
.section_title.about_title span::before {
  left: -70px;
  width: 45px;
  height: 45px;
  background-image: url(../images/icon_about_title.png);
}
.section_title.price_title span::before {
  left: -84px;
  width: 59px;
  height: 59px;
  background-image: url(../images/icon_price_title.png);
}
.section_title.lineup_title span::before {
  left: -92px;
  width: 67px;
  height: 58px;
  background-image: url(../images/icon_lineup_title.png);
}
.section_title.flow_title span::before {
  left: -84px;
  width: 59px;
  height: 55px;
  background-image: url(../images/icon_flow_title.png);
}
@media screen and (max-width: 768px) {
  .section_title {
    height: 65px;
    padding-left: 20px;
    font-size: 23px;
  }
  .section_title.about_title span::before {
    left: -35px;
    width: 23px;
    height: 23px;
  }
  .section_title.price_title span::before {
    left: -42px;
    width: 30px;
    height: 30px;
  }
  .section_title.lineup_title span::before {
    left: -46px;
    width: 34px;
    height: 29px;
  }
  .section_title.flow_title span::before {
    left: -42px;
    width: 30px;
    height: 28px;
  }
}

.lead {
  line-height: 1.6;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
}
.lead .large {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .lead {
    font-size: 15px;
  }
  .lead .large {
    font-size: 20px;
  }
}

.about {
  padding-bottom: 60px;
}
.about_channel {
  margin-top: 30px;
}
.about_channel_image {
  margin-top: 25px;
}
.about_channel_copyright {
  margin-top: 5px;
  font-size: 10px;
}
.about_baseball {
  margin-top: 25px;
}
.about_baseball_image {
  margin-top: 10px;
}
.about_usage {
  margin-top: 35px;
  padding: 20px 70px;
  border-radius: 20px;
  background-color: #cbe7fb;
}
.about_usage_text {
  line-height: 1.8;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}
.about_usage_image {
  margin-top: 10px;
}
.about_point {
  margin-top: 40px;
}
.about_point_title {
  width: 360px;
  margin: 0 auto;
}
.about_point_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 12px;
}
.about_notes {
  margin-top: 35px;
}
.about_note {
  margin-left: 2em;
  text-indent: -2em;
  line-height: 1.4;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .about {
    padding-bottom: 25px;
  }
  .about_channel {
    margin-top: 25px;
  }
  .about_channel_image {
    margin-top: 20px;
  }
  .about_channel_copyright {
    font-size: 8px;
  }
  .about_baseball {
    margin-top: 25px;
  }
  .about_baseball_image {
    margin-top: 10px;
  }
  .about_usage {
    margin-top: 25px;
    padding: 20px;
    border-radius: 10px;
  }
  .about_usage_text {
    margin: 0 -20px;
    font-size: 14px;
  }
  .about_usage_image {
    margin-top: 10px;
  }
  .about_point {
    margin-top: 25px;
  }
  .about_point_title {
    width: 243px;
  }
  .about_point_items {
    gap: 10.5px;
    margin-top: 10px;
  }
  .about_notes {
    margin-top: 18px;
  }
  .about_note {
    font-size: 11px;
  }
}

.price_outline {
  padding: 45px 0 35px;
}
.price_outline_images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 124px;
}
.price_outline_images::before, .price_outline_images::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 6px;
  background-color: #01a2e6;
  translate: -50% -50%;
}
.price_outline_images::after {
  rotate: 90deg;
}
.price_outline_new {
  margin-top: -13px;
}
.price_plan {
  padding-top: 45px;
}
.price_plan_title {
  max-width: 620px;
  margin: 0 auto;
}
.price_plan_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.price_plan_notes {
  margin-top: 25px;
}
.price_plan_note {
  margin-left: 2em;
  text-indent: -2em;
  line-height: 1.4;
  font-size: 13px;
}
.price_tuner {
  margin-top: 25px;
  padding-bottom: 50px;
}
.price_tuner_contents {
  margin-top: 15px;
  padding: 25px 0 20px;
  border-radius: 20px;
  background-color: #fff;
}
.price_tuner_price {
  position: relative;
}
.price_tuner_price::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 18px;
  width: 127px;
  height: 127px;
  background: url(../images/img_price_12.png) 0 0/contain no-repeat;
}
.price_tuner_price dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 225px;
  height: 40px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #01a2e6;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
.price_tuner_price dd {
  width: 228px;
  margin: 20px auto 0;
}
.price_tuner_image {
  width: 501px;
  margin: 20px auto 0;
}
.price_tuner_notes {
  margin-top: 15px;
  text-align: center;
}
.price_tuner_note {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .price_outline {
    width: 305px;
    margin: 0 auto;
    padding: 32px 0;
  }
  .price_outline_images {
    gap: 57px;
  }
  .price_outline_images::before, .price_outline_images::after {
    width: 24px;
    height: 3px;
  }
  .price_outline_new {
    margin-top: -18px;
  }
  .price_plan {
    padding-top: 25px;
  }
  .price_plan_items {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 20px;
  }
  .price_plan_notes {
    margin-top: 15px;
  }
  .price_plan_note {
    font-size: 11px;
  }
  .price_tuner {
    margin-top: 20px;
    padding-bottom: 25px;
  }
  .price_tuner_contents {
    margin-top: 15px;
    padding: 20px 0 15px;
    border-radius: 10px;
  }
  .price_tuner_price::after {
    top: -5px;
    right: 16px;
    width: 74px;
    height: 74px;
  }
  .price_tuner_price dt {
    width: 140px;
    height: 25px;
    border-radius: 13px;
    font-size: 14px;
  }
  .price_tuner_price dd {
    width: 154px;
    margin-top: 10px;
  }
  .price_tuner_image {
    width: 253px;
    margin-top: 15px;
  }
  .price_tuner_notes {
    margin-top: 12px;
  }
  .price_tuner_note {
    font-size: 11px;
  }
}

.plan {
  display: flex;
  flex-direction: column;
  border: 4px solid #01a2e6;
  border-radius: 20px;
  background-color: #01a2e6;
  box-shadow: 6px 6px 0 0 #a2d1f7;
}
.plan_inner {
  position: relative;
  flex-grow: 1;
  padding: 15px 25px 55px;
  background-color: #fff;
  border-radius: 0 0 16px 16px;
}
.plan_title {
  position: relative;
  padding: 13px 0 13px 88px;
  border-bottom: 4px solid #01a2e6;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}
.plan_title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  width: 45px;
  height: 45px;
  background: 0 0/contain no-repeat;
  translate: 0 -50%;
}
.plan:nth-child(1) .plan_title::before {
  background-image: url(../images/icon_price_plan_01.png);
}
.plan:nth-child(1) .plan_title::after {
  content: "";
  position: absolute;
  top: -25px;
  right: -9px;
  width: 114px;
  height: 80px;
  background: url(../images/icon_price_popular.png) 0 0/contain no-repeat;
}
.plan:nth-child(2) .plan_title::before {
  background-image: url(../images/icon_price_plan_02.png);
}
.plan_price dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 225px;
  height: 40px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #01a2e6;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
.plan_price dd {
  margin-top: 15px;
}
.plan_discount {
  width: 370px;
  margin: 5px auto 0;
}
.plan_points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 25px;
}
.plan_point {
  height: 36px;
}
.plan_point img {
  width: auto;
  height: 100%;
}
.plan_notes {
  position: absolute;
  bottom: 20px;
}
.plan_note {
  margin-left: 1.5em;
  text-indent: -1.5em;
  line-height: 1.4;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .plan {
    border-radius: 10px;
    box-shadow: 5px 5px 0 0 #a2d1f7;
  }
  .plan_inner {
    padding: 12px 20px 14px;
    border-radius: 0 0 6px 6px;
  }
  .plan_title {
    padding: 6px 0 6px 60px;
    font-size: 19px;
  }
  .plan_title::before {
    left: 14px;
    width: 35.5px;
    height: 35.5px;
  }
  .plan:nth-child(1) .plan_title::after {
    top: -12px;
    right: 1px;
    width: 67px;
    height: 47px;
  }
  .plan_price dt {
    width: 120px;
    height: 25px;
    border-radius: 13px;
    font-size: 14px;
  }
  .plan_price dd {
    width: 297px;
    margin: 10px auto 0;
  }
  .plan_discount {
    width: 265px;
  }
  .plan_points {
    gap: 8px;
    margin-top: 18px;
  }
  .plan_point {
    height: 23px;
  }
  .plan_notes {
    position: static;
    margin-top: 10px;
  }
  .plan_note {
    font-size: 11px;
  }
}

.lineup {
  padding-bottom: 60px;
}
.lineup .lead {
  margin-top: 30px;
}
.lineup_nav {
  margin-top: 30px;
}
.lineup_nav_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 5px;
}
.lineup_nav_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 16px 0 26px;
  border: 1px solid #01a2e6;
  background-color: #d6f3ff;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #01a2e6;
}
.lineup_nav_link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13px;
  width: 21px;
  height: 13px;
  background: url(../images/icon_lineup_arrow.png) 0 0/contain no-repeat;
  translate: -50% 0;
}
.lineup_nav_link.is-active {
  background-color: #fff;
}
.lineup_link {
  margin-top: 20px;
  line-height: 1.25;
  text-align: right;
  font-size: 16px;
  color: #01a2e6;
}
.lineup_link_link {
  text-decoration: none;
}
.lineup_contents {
  margin-top: 15px;
}
.lineup_content {
  display: none;
}
.lineup_content.is-active {
  display: block;
  animation: fadeIn 0.4s ease-in-out forwards;
}
.lineup_content_title {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
  font-size: 20px;
}
.lineup_content_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 28px;
  background-color: #01a2e6;
  translate: 0 -50%;
}
.lineup_content_text {
  margin-top: 15px;
  font-size: 16px;
}
.lineup_content_items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 25px;
}
.lineup_content_items li {
  border: 1px solid #d3d3d3;
  padding: 15px;
}
.lineup_content_items li p {
  margin-top: 15px;
  font-size: 12px;
}
@media (hover: hover) {
  .lineup_nav_link {
    transition: background-color 0.3s ease-in-out;
  }
  .lineup_nav_link:hover {
    background-color: #fff;
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  .lineup {
    padding-bottom: 35px;
  }
  .lineup .lead {
    margin: 25px -15px 0;
  }
  .lineup_nav {
    margin-top: 25px;
  }
  .lineup_nav_items {
    gap: 5px;
  }
  .lineup_nav_link {
    height: 55px;
    padding: 0 4px 18px;
    line-height: 1.25;
    font-size: 12px;
  }
  .lineup_nav_link::after {
    bottom: 6px;
    width: 14px;
    height: 9px;
  }
  .lineup_link {
    margin-top: 15px;
    line-height: 1.5;
    font-size: 12px;
  }
  .lineup_contents {
    margin-top: 15px;
  }
  .lineup_content_title {
    padding-left: 12px;
    font-size: 14px;
  }
  .lineup_content_title::before {
    width: 6px;
    height: 18px;
  }
  .lineup_content_text {
    margin-top: 10px;
    font-size: 12px;
  }
  .lineup_content_items {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 15px;
  }
  .lineup_content_items li {
    padding: 10px;
  }
  .lineup_content_items li p {
    margin-top: 5px;
    font-size: 10px;
  }
}

.flow_preparation {
  padding-top: 40px;
}
.flow_steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 77px;
  padding-bottom: 60px;
}
.flow_steps::before {
  content: "";
  position: absolute;
  top: -62px;
  left: 50%;
  width: 64px;
  height: 47px;
  background: url(../images/icon_flow_next.png) 0 0/contain no-repeat;
  translate: -50% 0;
}
@media screen and (max-width: 768px) {
  .flow_preparation {
    padding-top: 30px;
  }
  .flow_steps {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 55px;
    padding-bottom: 32px;
  }
  .flow_steps::before {
    top: -47.5px;
    width: 51px;
    height: 37.5px;
  }
}

.preparation {
  border: 4px solid #e51b62;
  border-radius: 20px;
  background-color: #e51b62;
}
.preparation_title {
  padding: 12px 0;
  border-bottom: 4px solid #e51b62;
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  color: #fff;
}
.preparation_inner {
  padding: 25px 35px;
  border-radius: 0 0 16px 16px;
  background-color: #fff;
}
.preparation_caution {
  position: relative;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  color: #e51b62;
}
.preparation_caution span {
  position: relative;
  padding-left: 52px;
}
.preparation_caution span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 37px;
  background: url(../images/icon_flow_caution.png) 0 0/contain no-repeat;
  translate: 0 -50%;
}
.preparation_text {
  margin-top: 15px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
}
.preparation_image {
  width: 620px;
  margin: 20px auto 0;
}
.preparation_notes {
  margin-top: 15px;
}
.preparation_note {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
  font-size: 13px;
}
.preparation_note.ordered {
  margin-left: 2em;
  text-indent: -2em;
}
@media screen and (max-width: 768px) {
  .preparation {
    border-width: 2px;
    border-radius: 10px;
  }
  .preparation_title {
    padding: 6px 0;
    border-bottom-width: 2px;
    font-size: 15px;
  }
  .preparation_inner {
    padding: 15px 13px;
    border-radius: 0 0 8px 8px;
  }
  .preparation_caution {
    font-size: 15px;
  }
  .preparation_caution span {
    padding-left: 25px;
  }
  .preparation_caution span::before {
    width: 20px;
    height: 18.5px;
  }
  .preparation_text {
    margin-top: 10px;
    font-size: 12px;
  }
  .preparation_image {
    width: 315px;
    margin: 15px auto 0;
  }
  .preparation_notes {
    margin-top: 10px;
  }
  .preparation_note {
    font-size: 11px;
  }
}

.step {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  padding: 60px 15px 18px;
  border: 4px solid #01a2e6;
  border-radius: 20px;
  background-color: #fff;
}
.step_number {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 43px;
  padding-top: 8px;
  padding-left: 30px;
  border-radius: 5px 0 20px 0;
  background-color: #01a2e6;
}
.step_number img {
  width: auto;
  height: 22px;
}
.step_title {
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
}
.step_content {
  display: contents;
}
.step_text {
  grid-row: 2;
  margin-top: 15px;
  font-weight: 700;
  font-size: 14px;
}
.step_text a {
  color: #e83574;
}
.step_image {
  grid-row: 3;
  margin-top: 15px;
  text-align: center;
}
.step:nth-child(1) .step_image img {
  width: 158px;
}
.step:nth-child(2) .step_image img {
  width: 188px;
}
.step:nth-child(3) .step_image img {
  width: 188px;
}
.step:nth-child(4) .step_image img {
  width: 183px;
}
@media screen and (max-width: 768px) {
  .step {
    display: block;
    padding: 10px 15px 12px;
    border-width: 2px;
    border-radius: 10px;
  }
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 28px;
    height: 12px;
    background-color: #01a2e6;
    clip-path: polygon(50% 12px, 0% 0%, 28px 0%);
    translate: -50% 0;
  }
  .step_number {
    width: 55px;
    height: 25px;
    padding-top: 3px;
    padding-left: 8px;
    border-radius: 5px 0 10px 0;
  }
  .step_number img {
    height: 15px;
  }
  .step_title {
    display: block;
    padding-left: 53px;
    -moz-text-align-last: left;
         text-align-last: left;
    font-size: 16px;
  }
  .step_content {
    display: grid;
    grid-template-columns: 1fr 128px;
    gap: 18px;
  }
  .step:nth-child(1) .step_content {
    grid-template-columns: 1fr 123px;
    gap: 8px;
  }
  .step:nth-child(3) .step_content {
    grid-template-columns: 1fr 123px;
    gap: 8px;
  }
  .step_text {
    grid-row: auto;
    margin-top: 12px;
    font-size: 12px;
  }
  .step_text .small {
    font-size: 11px;
  }
  .step_image {
    grid-row: auto;
    margin: 15px auto 0;
    text-align: center;
  }
  .step_image img {
    width: 100%;
  }
  .step:nth-child(1) .step_image img {
    width: 89px;
  }
  .step:nth-child(2) .step_image img {
    width: 128px;
  }
  .step:nth-child(3) .step_image {
    margin-top: -18px;
  }
  .step:nth-child(3) .step_image img {
    width: 119.5px;
  }
  .step:nth-child(4) .step_image {
    margin-top: -20px;
  }
  .step:nth-child(4) .step_image img {
    width: 128px;
  }
}

.footer {
  padding: 15px 0 115px;
  text-align: center;
}
.footer_link {
  font-size: 14px;
}
.footer_logo {
  width: 144px;
  margin: 20px auto 0;
}
.footer_cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 7px 0;
  box-shadow: 0px -4px 22px 0px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  pointer-events: none;
}
.footer_cta.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.footer_pagetop {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 48px;
  height: 48px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  translate: 0 -50%;
}
.footer_pagetop img {
  width: 100%;
}
.footer_cv img {
  width: 480px;
}
@media (hover: hover) {
  .footer_pagetop {
    transition: opacity 0.3s ease-in-out;
  }
  .footer_pagetop:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 10px 0 100px;
  }
  .footer_link {
    font-size: 10px;
  }
  .footer_logo {
    width: 120px;
    margin-top: 15px;
  }
  .footer_cta {
    box-shadow: 0px -2px 11px 0px rgba(0, 0, 0, 0.06);
  }
  .footer_pagetop {
    top: -46px;
    right: 10px;
    width: 36px;
    height: 36px;
    translate: 0 0;
  }
  .footer_cv img {
    width: 480px;
  }
  .footer_cv img {
    width: 335px;
  }
}

/* -------------------------------------------------
  Utility
------------------------------------------------- */
.bg_lightblue {
  background-color: #cbe7fb;
}

.baseline {
  vertical-align: baseline;
}

.red {
  color: #e51b62;
}

.blue {
  color: #01a2e6;
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
@media print, screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}