@charset "UTF-8";
/*---------------------------------------------
design-width
---------------------------------------------*/
/*---------------------------------------------
vw変換

width: vw-sp(320);
@include pc-only {
  width: min(vw-pc(194), 194px);
}
---------------------------------------------*/
/*---------------------------------------------
メディアクエリ
---------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

/*---------------------------------------------
フォント用のmixinとユーティリティ

@include font-sp(26); // モバイルファースト
@include font-pc(18); // タブレット〜PC対応
---------------------------------------------*/
/*---------------------------------------------
カスタムプロパティ
---------------------------------------------*/
:root {
  --custom-vw: 97.4vw;
  --color-gray: #f3f3f3;
  --color-darkgray: #444444;
}

/*---------------------------------------------
リセット
---------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img, picture, video, canvas, svg {
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*---------------------------------------------
初期設定
---------------------------------------------*/
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
  color: #222;
  font-weight: 500;
}

html, body {
  font-size: 100%;
}

a {
  color: #021f42;
}

a:hover,
a:link {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
  height: auto;
}

svg {
  vertical-align: bottom;
}

sup, sub {
  font-size: 0.6em;
}

iframe {
  border: none;
}

/*---------------------------------------------
common
---------------------------------------------*/
:root {
  --custom-vw: 97.4vw;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .container {
    padding-left: calc(var(--custom-vw) * 0.04);
    padding-right: calc(var(--custom-vw) * 0.04);
  }
}
@media screen and (min-width: 768px) {
  .container {
    width: min(90vw, 900px);
    margin-left: auto;
    margin-right: auto;
  }
}

section h2 {
  font-size: 6.1333333333vw;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  section h2 {
    font-size: min(4.4vw, 44px);
  }
}
section h2 + .lead {
  font-size: 4.2666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  section h2 + .lead {
    font-size: min(2.6vw, 26px);
  }
}

/*---------------------------------------------
footer
---------------------------------------------*/
.footer {
  background-color: var(--color-darkgray);
  color: #fff;
  padding: 3.3333333333vw 0 4.6666666667vw;
  text-align: center;
  font-size: 2.5333333333vw;
}
@media screen and (min-width: 768px) {
  .footer {
    font-size: min(1.4vw, 14px);
  }
}
@media screen and (min-width: 768px) {
  .footer {
    padding: min(4vw, 40px) 0 min(5vw, 50px);
  }
}

/*---------------------------------------------
ユーティリティ
---------------------------------------------*/
/* font-weight */
.font-medium {
  font-weight: 500;
}

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

/* text-align */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .text-center-sp {
    text-align: center;
  }
  .text-left-sp {
    text-align: left;
  }
  .text-right-sp {
    text-align: right;
  }
}
/* flex */
.flex {
  display: flex;
}

.flex-pc {
  display: flex;
}
@media screen and (max-width: 767px) {
  .flex-pc {
    flex-direction: column;
  }
}

.flex-col {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.item-center {
  align-items: center;
}

/* line-height */
.leading-sm {
  line-height: 1.5;
}

.leading-lg {
  line-height: 1.77;
}

.leading-xl {
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .leading-sm-sp {
    line-height: 1.5;
  }
}
/* bourder-radius */
.rounded-md {
  border-radius: 30px;
}

/* width */
@media screen and (max-width: 767px) {
  .w-sp-169 {
    width: calc(var(--custom-vw) * 0.2253333333);
  }
}
/* background-color */
.bg-gray {
  background-color: #f6f7f7;
}

/* marker */
.marker {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.marker::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 70%;
  background-color: #f4d9dc;
  z-index: -1;
  translate: 0 -50%;
}

/* font */
.jost-600-italic {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
}

/*---------------------------------------------
anime
---------------------------------------------*/
[data-anime=fadeUp] {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 1s ease transform, 1s ease opacity;
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=fadeUp].is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

[data-anime=slideRight] {
  opacity: 0;
  -webkit-transform: translateX(-30%);
  transform: translateX(-30%);
  -webkit-transition: 1s ease transform, 1s ease opacity;
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=slideRight].is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

[data-anime=slideLeft] {
  opacity: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 1s ease transform, 1s ease opacity;
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=slideLeft].is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

[data-anime=scaledown] {
  opacity: 0;
  transform: scale(2);
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=scaledown].is-animated {
  opacity: 1;
  transform: scale(1);
}

/*---------------------------------------------
mv
---------------------------------------------*/
.mv img {
  width: 100%;
}

/*---------------------------------------------
feature
---------------------------------------------*/
.feature {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url(../img/feature_bg.sp.webp);
  padding: 13.3333333333vw 0;
}
@media screen and (min-width: 768px) {
  .feature {
    background-image: url(../img/feature_bg.pc.webp);
    padding: min(12vw, 120px) 0;
  }
}
.feature .feature_items {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 6.6666666667vw;
  gap: 6vw;
}
@media screen and (min-width: 768px) {
  .feature .feature_items {
    flex-direction: row;
    justify-content: center;
    gap: min(3.5vw, 35px);
    margin-top: min(6vw, 60px);
  }
}
.feature .feature_items .feature_item {
  width: 76.81%;
  background-color: #fff;
  box-shadow: 0px 11px 21.6px 5.4px rgba(0, 0, 0, 0.09);
  padding: 2.6666666667vw 2.6666666667vw 5.3333333333vw;
  text-align: center;
  min-height: 33.3333333333vw;
}
@media screen and (min-width: 768px) {
  .feature .feature_items .feature_item {
    width: min(27vw, 270px);
    padding: min(2vw, 20px) min(1.5vw, 15px);
    min-height: min(27vw, 270px);
  }
}
.feature .feature_items .feature_item p {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .feature .feature_items .feature_item p {
    font-size: min(2vw, 20px);
  }
}
.feature .feature_items .feature_item p.number {
  font-size: 6.6666666667vw;
  color: #b60014;
  position: relative;
  line-height: 1.2;
  margin-bottom: 0.4em;
}
@media screen and (min-width: 768px) {
  .feature .feature_items .feature_item p.number {
    font-size: min(5vw, 50px);
  }
}
.feature .feature_items .feature_item p.number:after {
  content: "";
  display: block;
  width: 10.9333333333vw;
  height: 2px;
  position: absolute;
  background-color: #b60014;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .feature .feature_items .feature_item p.number:after {
    width: min(8.2vw, 82px);
  }
}

/*---------------------------------------------
activity-details
---------------------------------------------*/
.activity-details {
  padding: 17.3333333333vw 0 22.6666666667vw;
}
@media screen and (min-width: 768px) {
  .activity-details {
    padding: min(10vw, 100px) 0;
  }
}
.activity-details .activity-period {
  text-align: center;
  font-size: 4vw;
  color: #b60014;
}
@media screen and (min-width: 768px) {
  .activity-details .activity-period {
    font-size: min(3vw, 30px);
  }
}
.activity-details h3 {
  background-color: #f3f3f3;
  text-align: center;
  padding: 0.4em 0.3em 0.5em;
  line-height: 1.3;
  font-size: 4.8vw;
  border-bottom: solid 2px #b60014;
  margin-top: 8.6666666667vw;
  margin-bottom: 5.3333333333vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .activity-details h3 {
    font-size: min(3vw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .activity-details h3 {
    margin-top: min(6.5vw, 65px);
    margin-bottom: min(2vw, 20px);
  }
}
.activity-details .notes {
  text-align: right;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .activity-details .notes {
    font-size: min(1.6vw, 16px);
  }
}

.update-notices {
  padding-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .update-notices {
    padding-bottom: min(2vw, 20px);
  }
}
.update-notices .update-notices_items .update-notices_item {
  border-bottom: solid 2px #f3f3f3;
  padding: 4vw 0;
  font-size: 3.4666666667vw;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .update-notices .update-notices_items .update-notices_item {
    font-size: min(1.6vw, 16px);
  }
}
@media screen and (min-width: 768px) {
  .update-notices .update-notices_items .update-notices_item {
    flex-direction: row;
    padding: min(1.5vw, 15px) min(6vw, 60px);
  }
}
.update-notices .update-notices_items .update-notices_item .date {
  color: #b60014;
  border-left: 2px solid #b60014;
  padding-left: 2.6666666667vw;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .update-notices .update-notices_items .update-notices_item .date {
    width: min(15vw, 150px);
    border-left: 3px solid #b60014;
    padding-left: min(2vw, 20px);
  }
}
.update-notices .update-notices_items .update-notices_item .title {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .update-notices .update-notices_items .update-notices_item .title {
    padding-left: 2.6666666667vw;
    margin-top: 0.5em;
  }
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .schedule-table {
    width: 93.33%;
    margin: min(5vw, 50px) auto;
  }
}
.schedule-table th, .schedule-table td {
  border: solid 1px #313131;
  font-size: 2.9333333333vw;
  text-align: center;
  padding: 1.3333333333vw;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .schedule-table th, .schedule-table td {
    font-size: min(1.8vw, 18px);
  }
}
@media screen and (min-width: 768px) {
  .schedule-table th, .schedule-table td {
    padding: min(1.2vw, 12px);
  }
}
.schedule-table th {
  background-color: #767676;
  color: #fff;
  font-weight: 500;
}
.schedule-table tr:nth-of-type(2n+1) td {
  background-color: #f3f3f3;
}
.schedule-table tr > *:nth-child(1) {
  width: 26%;
}
.schedule-table tr > *:nth-child(2) {
  width: 16%;
}
.schedule-table tr > *:nth-child(3) {
  width: 16%;
}
.schedule-table tr > *:nth-child(4) {
  width: 42%;
}
@media screen and (min-width: 768px) {
  .schedule-table tr > *:nth-child(1) {
    width: 22%;
  }
  .schedule-table tr > *:nth-child(2) {
    width: 12%;
  }
  .schedule-table tr > *:nth-child(3) {
    width: 18%;
  }
  .schedule-table tr > *:nth-child(4) {
    width: 48%;
  }
}

.icon-list_items {
  margin-top: 4.6666666667vw;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.66%;
}
@media screen and (min-width: 768px) {
  .icon-list_items {
    margin-top: min(3.5vw, 35px);
  }
}
.icon-list_items .icon-list_item {
  width: 30%;
  min-height: 10.6666666667vw;
  line-height: 1.2;
  margin-bottom: 2.4vw;
  font-size: 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .icon-list_items .icon-list_item {
    font-size: min(2.2vw, 22px);
  }
}
@media screen and (min-width: 768px) {
  .icon-list_items .icon-list_item {
    min-height: min(7.2vw, 72px);
    margin-bottom: min(1.7vw, 17px);
  }
}
.icon-list_items .icon-list_item:not(.-adjustment) {
  border: solid 1px #b60014;
}
.icon-list_items .icon-list_item.item-school {
  padding-right: 2%;
  position: relative;
}
.icon-list_items .icon-list_item.item-school i {
  margin-right: 8%;
}
@media screen and (max-width: 767px) {
  .icon-list_items .icon-list_item.item-school i {
    width: 7.0666666667vw;
    position: absolute;
    top: 50%;
    left: 5.45%;
    translate: 0 -50%;
  }
  .icon-list_items .icon-list_item.item-school i img {
    width: 100%;
  }
}
.icon-list_items .icon-list_item.item-swimming {
  padding-right: 3%;
}
@media screen and (max-width: 767px) {
  .icon-list_items .icon-list_item.item-swimming {
    padding-right: 5%;
  }
}
.icon-list_items .icon-list_item.item-swimming i {
  position: relative;
  left: -15%;
}
@media screen and (max-width: 767px) {
  .icon-list_items .icon-list_item.item-swimming i {
    left: -22%;
    width: 6.8vw;
  }
}
.icon-list_items .icon-list_item.item-dance {
  padding-right: 3%;
}
@media screen and (max-width: 767px) {
  .icon-list_items .icon-list_item.item-dance {
    padding-right: 5%;
  }
}
.icon-list_items .icon-list_item.item-dance i {
  position: relative;
  left: -15%;
}
@media screen and (max-width: 767px) {
  .icon-list_items .icon-list_item.item-dance i {
    width: 5.2vw;
    left: -18%;
  }
}
.icon-list_items .icon-list_item.item-table-tennis {
  padding-right: 3%;
}
.icon-list_items .icon-list_item.item-table-tennis i {
  position: relative;
  left: -18%;
}
@media screen and (max-width: 767px) {
  .icon-list_items .icon-list_item.item-table-tennis i {
    width: 6.8vw;
  }
}
.icon-list_items .icon-list_item.item-badminton {
  padding-right: 1.5%;
}
.icon-list_items .icon-list_item.item-badminton i {
  position: relative;
  left: -4.5%;
}
@media screen and (max-width: 767px) {
  .icon-list_items .icon-list_item.item-badminton i {
    width: 6.1333333333vw;
  }
}
.icon-list_items .icon-list_item.item-guitar i {
  position: relative;
}
@media screen and (max-width: 767px) {
  .icon-list_items .icon-list_item.item-guitar i {
    width: 7.0666666667vw;
  }
}
.icon-list_items .icon-list_item.item-parasports i {
  position: relative;
  left: -6%;
}
@media screen and (max-width: 767px) {
  .icon-list_items .icon-list_item.item-parasports i {
    width: 5.2vw;
  }
}
.icon-list_items .icon-list_item.item-physical i {
  position: relative;
  left: -6%;
}
@media screen and (max-width: 767px) {
  .icon-list_items .icon-list_item.item-physical i {
    width: 8.2666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .icon-list_items.icon-list_school .icon-list_item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .icon-list_items.icon-list_club .icon-list_item {
    width: 47.826%;
  }
  .icon-list_items.icon-list_club .icon-list_item i img {
    width: 100%;
  }
}

.venue h3 {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .venue h3 {
    margin-bottom: min(4vw, 40px);
  }
}
@media screen and (min-width: 768px) {
  .venue .inner {
    padding: 0 min(3vw, 30px);
  }
}
.venue .venue_text {
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .venue .venue_text {
    font-size: min(2.4vw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .venue .venue_text {
    margin-inline: min(2vw, 20px);
  }
}
.venue .venue_text + .venue_text {
  margin-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .venue .venue_text + .venue_text {
    margin-top: min(3vw, 30px);
  }
}
.venue .venue_text strong {
  color: #b60014;
  font-weight: 500;
  padding-left: 1em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .venue .venue_text strong {
    margin-right: 15px;
  }
}
.venue .venue_text strong:after {
  position: absolute;
  display: block;
  content: "";
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  background-color: #b60014;
  border-radius: 2.6666666667vw;
  top: 50%;
  left: 0;
  translate: 0 -30%;
}
@media screen and (min-width: 768px) {
  .venue .venue_text strong:after {
    width: min(1vw, 10px);
    height: min(1vw, 10px);
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .venue .venue_text span {
    padding-left: 1em;
  }
}
.venue .venue_item {
  margin-top: 3.3333333333vw;
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .venue .venue_item {
    width: min(80vw, 800px);
    margin-top: min(3.5vw, 35px);
  }
}
.venue .venue_item h4 {
  font-size: 3.7333333333vw;
  font-weight: 600;
  padding: 0.3em 1em;
}
@media screen and (min-width: 768px) {
  .venue .venue_item h4 {
    font-size: min(2.4vw, 24px);
  }
}
.venue .venue_item .venue_item_title {
  background-color: #b60014;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.venue .venue_item .venue_item_details {
  background-color: #f3f3f3;
  padding: 3.3333333333vw 4.6666666667vw 6vw;
}
@media screen and (min-width: 768px) {
  .venue .venue_item .venue_item_details {
    padding: min(3vw, 30px) min(3vw, 30px) min(4vw, 40px);
  }
}
.venue .venue_item .venue_item_details ul li {
  font-size: 3.2vw;
  padding-left: 4.2666666667vw;
  position: relative;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .venue .venue_item .venue_item_details ul li {
    font-size: min(1.6vw, 16px);
  }
}
@media screen and (min-width: 768px) {
  .venue .venue_item .venue_item_details ul li {
    padding-left: min(2.6vw, 26px);
  }
}
.venue .venue_item .venue_item_details ul li:after {
  content: "";
  display: block;
  width: 1.3333333333vw;
  height: 1.3333333333vw;
  border-radius: 1.3333333333vw;
  background-color: #222222;
  position: absolute;
  top: 0.4em;
  left: 0;
}
@media screen and (min-width: 768px) {
  .venue .venue_item .venue_item_details ul li:after {
    width: 10px;
    height: 10px;
    border-radius: 10px;
  }
}
.venue .venue_item .venue_item_details ul li + li {
  margin-top: 0.4em;
}
.venue .venue_item .venue_item_details ul + .photos {
  margin-top: 20px;
}
.venue .venue_item .venue_item_details .photos {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .venue .venue_item .venue_item_details .photos {
    gap: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .venue .venue_item .venue_item_details .photos {
    flex-direction: row;
  }
  .venue .venue_item .venue_item_details .photos .photo {
    width: min(36vw, 360px);
  }
}

/*---------------------------------------------
howto
---------------------------------------------*/
.howto {
  padding: 10.6666666667vw 0 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .howto {
    padding: min(10vw, 100px) 0;
  }
}
.howto .howto_about {
  background-color: #fff;
  margin-top: 6vw;
  border: solid 3px #dddddd;
  border-radius: 18px;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  padding: 7.3333333333vw 7.3333333333vw 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .howto .howto_about {
    flex-direction: row;
    margin-top: min(4vw, 40px);
    padding: min(2.5vw, 25px) min(7vw, 70px) min(4vw, 40px);
  }
}
.howto .howto_about .howto_about_logo {
  width: 46.4vw;
}
@media screen and (max-width: 767px) {
  .howto .howto_about .howto_about_logo {
    margin-top: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .howto .howto_about .howto_about_logo {
    width: min(28vw, 280px);
    margin-right: min(4.5vw, 45px);
  }
}
.howto .howto_about .howto_about_text {
  flex: 1;
  line-height: 1.875;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .howto .howto_about .howto_about_text {
    font-size: min(1.6vw, 16px);
  }
}
.howto .howto_about h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 4.8vw;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .howto .howto_about h3 {
    font-size: min(2.6vw, 26px);
  }
}
.howto .howto_about h3 img {
  width: 31.6vw;
}
@media screen and (min-width: 768px) {
  .howto .howto_about h3 {
    display: inline-flex;
  }
  .howto .howto_about h3 img {
    width: min(17.2vw, 172px);
  }
}
.howto .howto_about + * {
  margin-top: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .howto .howto_about + * {
    margin-top: min(5.5vw, 55px);
  }
}
.howto .howto_step .notes {
  font-size: 2.4vw;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .howto .howto_step .notes {
    font-size: min(1.4vw, 14px);
  }
}
@media screen and (min-width: 768px) {
  .howto .howto_step .notes-wrapper {
    width: 88.88%;
    margin-inline: auto;
  }
}
.howto .howto_step .howto_step_title {
  margin-bottom: 4.6666666667vw;
  line-height: 1.5;
  font-size: 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.7333333333vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .howto .howto_step .howto_step_title {
    font-size: min(2.6vw, 26px);
  }
}
@media screen and (min-width: 768px) {
  .howto .howto_step .howto_step_title {
    margin-bottom: min(4.5vw, 45px);
    gap: min(1.3vw, 13px);
  }
}
.howto .howto_step .howto_step_title img {
  translate: 0 10%;
}
.howto .howto_step .howto_step_title img:nth-child(1) {
  margin-right: 2vw;
}
@media screen and (min-width: 768px) {
  .howto .howto_step .howto_step_title img:nth-child(1) {
    margin-right: min(0.8vw, 8px);
  }
}
@media screen and (max-width: 767px) {
  .howto .howto_step .howto_step_title img {
    width: 5.8666666667vw;
  }
}
.howto .howto_step_item {
  border-radius: 18px;
  background-color: #fff;
  border: solid 2px #b60014;
  width: 100%;
  margin-inline: auto;
  padding: 4vw 4vw 8vw;
}
@media screen and (min-width: 768px) {
  .howto .howto_step_item {
    width: 88.88%;
    padding: min(3vw, 30px) min(3vw, 30px) min(4.5vw, 45px);
  }
}
.howto .howto_step_item .howto_step_head {
  display: flex;
  align-items: flex-start;
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .howto .howto_step_item .howto_step_head {
    font-size: min(1.8vw, 18px);
  }
}
@media screen and (min-width: 768px) {
  .howto .howto_step_item .howto_step_head {
    align-items: center;
  }
}
.howto .howto_step_item .howto_step_head .number {
  width: 14.9333333333vw;
  margin-right: 2.4vw;
}
@media screen and (min-width: 768px) {
  .howto .howto_step_item .howto_step_head .number {
    width: min(11.2vw, 112px);
    margin-right: min(2vw, 20px);
  }
}
.howto .howto_step_item .howto_step_head .desc {
  flex: 1;
}
.howto .howto_step_item .howto_step_head .desc .notes {
  margin-top: 0.3em;
}
.howto .howto_step_item .notes-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 2em;
}
.howto .howto_step_item + .notes-wrapper {
  margin-top: 1em;
}
.howto .howto_step_item.step2 .notes {
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .howto .howto_step_item.step2 .notes {
    font-size: min(1.6vw, 16px);
  }
}
.howto .next {
  text-align: center;
  margin: 12px 0;
}
@media screen and (min-width: 768px) {
  .howto .next {
    margin: min(1.2vw, 12px) 0;
  }
}
.howto .next svg {
  width: 16vw;
}
@media screen and (min-width: 768px) {
  .howto .next svg {
    width: min(8.1vw, 81px);
  }
}
.howto .howto_step_qr {
  display: flex;
  justify-content: center;
  gap: 3.4666666667vw;
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .howto .howto_step_qr {
    gap: min(4.5vw, 45px);
    margin-top: min(2vw, 20px);
  }
}
.howto .howto_step_qr img {
  width: 36.5333333333vw;
}
@media screen and (min-width: 768px) {
  .howto .howto_step_qr img {
    width: min(17.2vw, 172px);
  }
}
.howto .howto_step_qr .howto_step_qr_item {
  text-align: center;
}
.howto .howto_step_qr .howto_step_qr_item p {
  font-size: 3.4666666667vw;
  margin-top: 0.3em;
}
@media screen and (min-width: 768px) {
  .howto .howto_step_qr .howto_step_qr_item p {
    font-size: min(1.8vw, 18px);
  }
}
.howto .howto_step_login {
  margin-inline: auto;
  margin-top: 6vw;
  width: 92%;
}
@media screen and (min-width: 768px) {
  .howto .howto_step_login {
    width: min(58.1vw, 581px);
    margin-top: min(3vw, 30px);
  }
}
.howto .howto_step_login .caption {
  font-size: 3.2vw;
  margin-bottom: 0.3em;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .howto .howto_step_login .caption {
    font-size: min(1.6vw, 16px);
  }
}
.howto .howto_step_login table {
  border-collapse: collapse;
  width: 100%;
}
.howto .howto_step_login table th {
  font-weight: 500;
}
.howto .howto_step_login table th, .howto .howto_step_login table td {
  border: solid 2px #042433;
  font-size: 3.2vw;
  padding: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .howto .howto_step_login table th, .howto .howto_step_login table td {
    font-size: min(1.6vw, 16px);
  }
}
@media screen and (min-width: 768px) {
  .howto .howto_step_login table th, .howto .howto_step_login table td {
    padding: min(1vw, 10px) min(2vw, 20px);
  }
}
.howto .howto_step_login table + .caption {
  margin-top: 1.5em;
}
.howto .howto_step_login .web-title {
  margin-top: 1.5em;
  font-size: 3.2vw;
  margin-bottom: 0.3em;
}
@media screen and (min-width: 768px) {
  .howto .howto_step_login .web-title {
    font-size: min(1.6vw, 16px);
  }
}
.howto .howto_step_login .web-content {
  border: solid 2px #042433;
  padding: 1.3333333333vw;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .howto .howto_step_login .web-content {
    font-size: min(1.6vw, 16px);
  }
}
@media screen and (min-width: 768px) {
  .howto .howto_step_login .web-content {
    padding: min(1vw, 10px) min(2vw, 20px);
  }
}
.howto .howto_step_login .web-content a:hover {
  opacity: 0.7;
}
.howto .howto_step_entry {
  width: 100%;
  margin-inline: auto;
  margin-top: 7.3333333333vw;
}
@media screen and (min-width: 768px) {
  .howto .howto_step_entry {
    width: min(69.6vw, 696px);
    margin-top: min(4vw, 40px);
  }
}