@charset "UTF-8";
/*******************************************
	/css/style.css
*******************************************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  word-break: break-word;
  box-sizing: border-box;
  vertical-align: baseline;
  background: transparent;
}

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

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

li {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

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

img {
  vertical-align: bottom;
  max-width: 100%;
}

picture {
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

br {
  line-height: 0;
}

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

/* safariでのデフォルトスタイルをリセット */
input[type=submit], input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus, input[type=button]::focus {
  outline-offset: -2px;
}

/*------------------------------------------------------------
	basic
------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-width: 1260px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "游ゴシック", YuGothic, Meiryo, sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #242424;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  body {
    min-width: 0;
    font-size: 1.6rem;
    line-height: 1.8;
    font-feature-settings: "palt" 1;
  }
}
html {
  box-sizing: border-box;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}

img {
  max-width: 100%;
  vertical-align: middle;
  border: none;
}

a {
  color: #1F2F8C;
}

li {
  list-style: none;
}

#wrapper {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.load #wrapper {
  opacity: 1;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .sp._inline {
    display: inline;
  }
  .sp._inline-block {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
.loadingWrap {
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  width: 100px;
  height: 100px;
}

.loadingWrap .loadingCircle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 50%;
  border: solid 1px;
  border-color: #777 #1F2F8C #1F2F8C #1F2F8C;
  animation: rotate 2.5s linear infinite;
}

.loadingWrap .loading {
  line-height: 100px;
  font-size: 1.4rem;
  text-align: center;
}

.movieBox {
  width: 100%;
  max-width: 1280px;
}

.movieBox div {
  padding: 56.25% 0 0 0;
  position: relative;
  width: 100%;
}

.movieBox div iframe {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

/**************************************************************************
    ヘルパー (接頭辞 hp_)
**************************************************************************/
@media screen and (max-width: 375px) {
  .hp_xs_none {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hp_sm_none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .hp_md_none {
    display: none !important;
  }
}
.hp_color_base {
  color: #242424 !important;
}

.hp_bg_color_base {
  background-color: #242424 !important;
}

.hp_color_white {
  color: #fff !important;
}

.hp_bg_color_white {
  background-color: #fff !important;
}

.hp_color_key {
  color: #e94709 !important;
}

.hp_bg_color_key {
  background-color: #e94709 !important;
}

.hp_color_bg {
  color: #f2f2f2 !important;
}

.hp_bg_color_bg {
  background-color: #f2f2f2 !important;
}

.hp_color_border {
  color: #b3b3b3 !important;
}

.hp_bg_color_border {
  background-color: #b3b3b3 !important;
}

.hp_color_border_light {
  color: #ccc !important;
}

.hp_bg_color_border_light {
  background-color: #ccc !important;
}

.hp_color_link {
  color: #0071bc !important;
}

.hp_bg_color_link {
  background-color: #0071bc !important;
}

.hp_fw_normal {
  font-weight: normal !important;
}

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

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

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

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

.hp_fs_10 {
  font-size: 1rem !important;
}

.hp_fs_11 {
  font-size: 1.1rem !important;
}

.hp_fs_12 {
  font-size: 1.2rem !important;
}

.hp_fs_13 {
  font-size: 1.3rem !important;
}

.hp_fs_14 {
  font-size: 1.4rem !important;
}

.hp_fs_15 {
  font-size: 1.5rem !important;
}

.hp_fs_16 {
  font-size: 1.6rem !important;
}

.hp_fs_17 {
  font-size: 1.7rem !important;
}

.hp_fs_18 {
  font-size: 1.8rem !important;
}

.hp_fs_19 {
  font-size: 1.9rem !important;
}

.hp_fs_20 {
  font-size: 2rem !important;
}

.hp_fs_21 {
  font-size: 2.1rem !important;
}

.hp_fs_22 {
  font-size: 2.2rem !important;
}

.hp_fs_23 {
  font-size: 2.3rem !important;
}

.hp_fs_24 {
  font-size: 2.4rem !important;
}

.hp_fs_25 {
  font-size: 2.5rem !important;
}

.hp_fs_26 {
  font-size: 2.6rem !important;
}

.hp_fs_27 {
  font-size: 2.7rem !important;
}

.hp_fs_28 {
  font-size: 2.8rem !important;
}

.hp_fs_29 {
  font-size: 2.9rem !important;
}

.hp_fs_30 {
  font-size: 3rem !important;
}

.hp_p_5 {
  padding: 5px !important;
}

.hp_py_5 {
  padding: 5px 0 !important;
}

.hp_px_5 {
  padding: 0 5px !important;
}

.hp_pt_5 {
  padding-top: 5px !important;
}

.hp_pb_5 {
  padding-bottom: 5px !important;
}

.hp_pl_5 {
  padding-left: 5px !important;
}

.hp_pr_5 {
  padding-right: 5px !important;
}

.hp_m_5 {
  margin: 5px !important;
}

.hp_my_5 {
  margin: 5px 0 !important;
}

.hp_mx_5 {
  margin: 0 5px !important;
}

.hp_mt_5 {
  margin-top: 5px !important;
}

.hp_mb_5 {
  margin-bottom: 5px !important;
}

.hp_ml_5 {
  margin-left: 5px !important;
}

.hp_mr_5 {
  margin-right: 5px !important;
}

.hp_p_10 {
  padding: 10px !important;
}

.hp_py_10 {
  padding: 10px 0 !important;
}

.hp_px_10 {
  padding: 0 10px !important;
}

.hp_pt_10 {
  padding-top: 10px !important;
}

.hp_pb_10 {
  padding-bottom: 10px !important;
}

.hp_pl_10 {
  padding-left: 10px !important;
}

.hp_pr_10 {
  padding-right: 10px !important;
}

.hp_m_10 {
  margin: 10px !important;
}

.hp_my_10 {
  margin: 10px 0 !important;
}

.hp_mx_10 {
  margin: 0 10px !important;
}

.hp_mt_10 {
  margin-top: 10px !important;
}

.hp_mb_10 {
  margin-bottom: 10px !important;
}

.hp_ml_10 {
  margin-left: 10px !important;
}

.hp_mr_10 {
  margin-right: 10px !important;
}

.hp_p_15 {
  padding: 15px !important;
}

.hp_py_15 {
  padding: 15px 0 !important;
}

.hp_px_15 {
  padding: 0 15px !important;
}

.hp_pt_15 {
  padding-top: 15px !important;
}

.hp_pb_15 {
  padding-bottom: 15px !important;
}

.hp_pl_15 {
  padding-left: 15px !important;
}

.hp_pr_15 {
  padding-right: 15px !important;
}

.hp_m_15 {
  margin: 15px !important;
}

.hp_my_15 {
  margin: 15px 0 !important;
}

.hp_mx_15 {
  margin: 0 15px !important;
}

.hp_mt_15 {
  margin-top: 15px !important;
}

.hp_mb_15 {
  margin-bottom: 15px !important;
}

.hp_ml_15 {
  margin-left: 15px !important;
}

.hp_mr_15 {
  margin-right: 15px !important;
}

.hp_p_20 {
  padding: 20px !important;
}

.hp_py_20 {
  padding: 20px 0 !important;
}

.hp_px_20 {
  padding: 0 20px !important;
}

.hp_pt_20 {
  padding-top: 20px !important;
}

.hp_pb_20 {
  padding-bottom: 20px !important;
}

.hp_pl_20 {
  padding-left: 20px !important;
}

.hp_pr_20 {
  padding-right: 20px !important;
}

.hp_m_20 {
  margin: 20px !important;
}

.hp_my_20 {
  margin: 20px 0 !important;
}

.hp_mx_20 {
  margin: 0 20px !important;
}

.hp_mt_20 {
  margin-top: 20px !important;
}

.hp_mb_20 {
  margin-bottom: 20px !important;
}

.hp_ml_20 {
  margin-left: 20px !important;
}

.hp_mr_20 {
  margin-right: 20px !important;
}

.hp_p_25 {
  padding: 25px !important;
}

.hp_py_25 {
  padding: 25px 0 !important;
}

.hp_px_25 {
  padding: 0 25px !important;
}

.hp_pt_25 {
  padding-top: 25px !important;
}

.hp_pb_25 {
  padding-bottom: 25px !important;
}

.hp_pl_25 {
  padding-left: 25px !important;
}

.hp_pr_25 {
  padding-right: 25px !important;
}

.hp_m_25 {
  margin: 25px !important;
}

.hp_my_25 {
  margin: 25px 0 !important;
}

.hp_mx_25 {
  margin: 0 25px !important;
}

.hp_mt_25 {
  margin-top: 25px !important;
}

.hp_mb_25 {
  margin-bottom: 25px !important;
}

.hp_ml_25 {
  margin-left: 25px !important;
}

.hp_mr_25 {
  margin-right: 25px !important;
}

.hp_p_30 {
  padding: 30px !important;
}

.hp_py_30 {
  padding: 30px 0 !important;
}

.hp_px_30 {
  padding: 0 30px !important;
}

.hp_pt_30 {
  padding-top: 30px !important;
}

.hp_pb_30 {
  padding-bottom: 30px !important;
}

.hp_pl_30 {
  padding-left: 30px !important;
}

.hp_pr_30 {
  padding-right: 30px !important;
}

.hp_m_30 {
  margin: 30px !important;
}

.hp_my_30 {
  margin: 30px 0 !important;
}

.hp_mx_30 {
  margin: 0 30px !important;
}

.hp_mt_30 {
  margin-top: 30px !important;
}

.hp_mb_30 {
  margin-bottom: 30px !important;
}

.hp_ml_30 {
  margin-left: 30px !important;
}

.hp_mr_30 {
  margin-right: 30px !important;
}

.hp_p_35 {
  padding: 35px !important;
}

.hp_py_35 {
  padding: 35px 0 !important;
}

.hp_px_35 {
  padding: 0 35px !important;
}

.hp_pt_35 {
  padding-top: 35px !important;
}

.hp_pb_35 {
  padding-bottom: 35px !important;
}

.hp_pl_35 {
  padding-left: 35px !important;
}

.hp_pr_35 {
  padding-right: 35px !important;
}

.hp_m_35 {
  margin: 35px !important;
}

.hp_my_35 {
  margin: 35px 0 !important;
}

.hp_mx_35 {
  margin: 0 35px !important;
}

.hp_mt_35 {
  margin-top: 35px !important;
}

.hp_mb_35 {
  margin-bottom: 35px !important;
}

.hp_ml_35 {
  margin-left: 35px !important;
}

.hp_mr_35 {
  margin-right: 35px !important;
}

.hp_p_40 {
  padding: 40px !important;
}

.hp_py_40 {
  padding: 40px 0 !important;
}

.hp_px_40 {
  padding: 0 40px !important;
}

.hp_pt_40 {
  padding-top: 40px !important;
}

.hp_pb_40 {
  padding-bottom: 40px !important;
}

.hp_pl_40 {
  padding-left: 40px !important;
}

.hp_pr_40 {
  padding-right: 40px !important;
}

.hp_m_40 {
  margin: 40px !important;
}

.hp_my_40 {
  margin: 40px 0 !important;
}

.hp_mx_40 {
  margin: 0 40px !important;
}

.hp_mt_40 {
  margin-top: 40px !important;
}

.hp_mb_40 {
  margin-bottom: 40px !important;
}

.hp_ml_40 {
  margin-left: 40px !important;
}

.hp_mr_40 {
  margin-right: 40px !important;
}

.hp_p_45 {
  padding: 45px !important;
}

.hp_py_45 {
  padding: 45px 0 !important;
}

.hp_px_45 {
  padding: 0 45px !important;
}

.hp_pt_45 {
  padding-top: 45px !important;
}

.hp_pb_45 {
  padding-bottom: 45px !important;
}

.hp_pl_45 {
  padding-left: 45px !important;
}

.hp_pr_45 {
  padding-right: 45px !important;
}

.hp_m_45 {
  margin: 45px !important;
}

.hp_my_45 {
  margin: 45px 0 !important;
}

.hp_mx_45 {
  margin: 0 45px !important;
}

.hp_mt_45 {
  margin-top: 45px !important;
}

.hp_mb_45 {
  margin-bottom: 45px !important;
}

.hp_ml_45 {
  margin-left: 45px !important;
}

.hp_mr_45 {
  margin-right: 45px !important;
}

.hp_p_50 {
  padding: 50px !important;
}

.hp_py_50 {
  padding: 50px 0 !important;
}

.hp_px_50 {
  padding: 0 50px !important;
}

.hp_pt_50 {
  padding-top: 50px !important;
}

.hp_pb_50 {
  padding-bottom: 50px !important;
}

.hp_pl_50 {
  padding-left: 50px !important;
}

.hp_pr_50 {
  padding-right: 50px !important;
}

.hp_m_50 {
  margin: 50px !important;
}

.hp_my_50 {
  margin: 50px 0 !important;
}

.hp_mx_50 {
  margin: 0 50px !important;
}

.hp_mt_50 {
  margin-top: 50px !important;
}

.hp_mb_50 {
  margin-bottom: 50px !important;
}

.hp_ml_50 {
  margin-left: 50px !important;
}

.hp_mr_50 {
  margin-right: 50px !important;
}

.hp_p_55 {
  padding: 55px !important;
}

.hp_py_55 {
  padding: 55px 0 !important;
}

.hp_px_55 {
  padding: 0 55px !important;
}

.hp_pt_55 {
  padding-top: 55px !important;
}

.hp_pb_55 {
  padding-bottom: 55px !important;
}

.hp_pl_55 {
  padding-left: 55px !important;
}

.hp_pr_55 {
  padding-right: 55px !important;
}

.hp_m_55 {
  margin: 55px !important;
}

.hp_my_55 {
  margin: 55px 0 !important;
}

.hp_mx_55 {
  margin: 0 55px !important;
}

.hp_mt_55 {
  margin-top: 55px !important;
}

.hp_mb_55 {
  margin-bottom: 55px !important;
}

.hp_ml_55 {
  margin-left: 55px !important;
}

.hp_mr_55 {
  margin-right: 55px !important;
}

.hp_p_60 {
  padding: 60px !important;
}

.hp_py_60 {
  padding: 60px 0 !important;
}

.hp_px_60 {
  padding: 0 60px !important;
}

.hp_pt_60 {
  padding-top: 60px !important;
}

.hp_pb_60 {
  padding-bottom: 60px !important;
}

.hp_pl_60 {
  padding-left: 60px !important;
}

.hp_pr_60 {
  padding-right: 60px !important;
}

.hp_m_60 {
  margin: 60px !important;
}

.hp_my_60 {
  margin: 60px 0 !important;
}

.hp_mx_60 {
  margin: 0 60px !important;
}

.hp_mt_60 {
  margin-top: 60px !important;
}

.hp_mb_60 {
  margin-bottom: 60px !important;
}

.hp_ml_60 {
  margin-left: 60px !important;
}

.hp_mr_60 {
  margin-right: 60px !important;
}

.hp_p_65 {
  padding: 65px !important;
}

.hp_py_65 {
  padding: 65px 0 !important;
}

.hp_px_65 {
  padding: 0 65px !important;
}

.hp_pt_65 {
  padding-top: 65px !important;
}

.hp_pb_65 {
  padding-bottom: 65px !important;
}

.hp_pl_65 {
  padding-left: 65px !important;
}

.hp_pr_65 {
  padding-right: 65px !important;
}

.hp_m_65 {
  margin: 65px !important;
}

.hp_my_65 {
  margin: 65px 0 !important;
}

.hp_mx_65 {
  margin: 0 65px !important;
}

.hp_mt_65 {
  margin-top: 65px !important;
}

.hp_mb_65 {
  margin-bottom: 65px !important;
}

.hp_ml_65 {
  margin-left: 65px !important;
}

.hp_mr_65 {
  margin-right: 65px !important;
}

.hp_p_70 {
  padding: 70px !important;
}

.hp_py_70 {
  padding: 70px 0 !important;
}

.hp_px_70 {
  padding: 0 70px !important;
}

.hp_pt_70 {
  padding-top: 70px !important;
}

.hp_pb_70 {
  padding-bottom: 70px !important;
}

.hp_pl_70 {
  padding-left: 70px !important;
}

.hp_pr_70 {
  padding-right: 70px !important;
}

.hp_m_70 {
  margin: 70px !important;
}

.hp_my_70 {
  margin: 70px 0 !important;
}

.hp_mx_70 {
  margin: 0 70px !important;
}

.hp_mt_70 {
  margin-top: 70px !important;
}

.hp_mb_70 {
  margin-bottom: 70px !important;
}

.hp_ml_70 {
  margin-left: 70px !important;
}

.hp_mr_70 {
  margin-right: 70px !important;
}

.hp_p_75 {
  padding: 75px !important;
}

.hp_py_75 {
  padding: 75px 0 !important;
}

.hp_px_75 {
  padding: 0 75px !important;
}

.hp_pt_75 {
  padding-top: 75px !important;
}

.hp_pb_75 {
  padding-bottom: 75px !important;
}

.hp_pl_75 {
  padding-left: 75px !important;
}

.hp_pr_75 {
  padding-right: 75px !important;
}

.hp_m_75 {
  margin: 75px !important;
}

.hp_my_75 {
  margin: 75px 0 !important;
}

.hp_mx_75 {
  margin: 0 75px !important;
}

.hp_mt_75 {
  margin-top: 75px !important;
}

.hp_mb_75 {
  margin-bottom: 75px !important;
}

.hp_ml_75 {
  margin-left: 75px !important;
}

.hp_mr_75 {
  margin-right: 75px !important;
}

.hp_p_80 {
  padding: 80px !important;
}

.hp_py_80 {
  padding: 80px 0 !important;
}

.hp_px_80 {
  padding: 0 80px !important;
}

.hp_pt_80 {
  padding-top: 80px !important;
}

.hp_pb_80 {
  padding-bottom: 80px !important;
}

.hp_pl_80 {
  padding-left: 80px !important;
}

.hp_pr_80 {
  padding-right: 80px !important;
}

.hp_m_80 {
  margin: 80px !important;
}

.hp_my_80 {
  margin: 80px 0 !important;
}

.hp_mx_80 {
  margin: 0 80px !important;
}

.hp_mt_80 {
  margin-top: 80px !important;
}

.hp_mb_80 {
  margin-bottom: 80px !important;
}

.hp_ml_80 {
  margin-left: 80px !important;
}

.hp_mr_80 {
  margin-right: 80px !important;
}

.hp_p_85 {
  padding: 85px !important;
}

.hp_py_85 {
  padding: 85px 0 !important;
}

.hp_px_85 {
  padding: 0 85px !important;
}

.hp_pt_85 {
  padding-top: 85px !important;
}

.hp_pb_85 {
  padding-bottom: 85px !important;
}

.hp_pl_85 {
  padding-left: 85px !important;
}

.hp_pr_85 {
  padding-right: 85px !important;
}

.hp_m_85 {
  margin: 85px !important;
}

.hp_my_85 {
  margin: 85px 0 !important;
}

.hp_mx_85 {
  margin: 0 85px !important;
}

.hp_mt_85 {
  margin-top: 85px !important;
}

.hp_mb_85 {
  margin-bottom: 85px !important;
}

.hp_ml_85 {
  margin-left: 85px !important;
}

.hp_mr_85 {
  margin-right: 85px !important;
}

.hp_p_90 {
  padding: 90px !important;
}

.hp_py_90 {
  padding: 90px 0 !important;
}

.hp_px_90 {
  padding: 0 90px !important;
}

.hp_pt_90 {
  padding-top: 90px !important;
}

.hp_pb_90 {
  padding-bottom: 90px !important;
}

.hp_pl_90 {
  padding-left: 90px !important;
}

.hp_pr_90 {
  padding-right: 90px !important;
}

.hp_m_90 {
  margin: 90px !important;
}

.hp_my_90 {
  margin: 90px 0 !important;
}

.hp_mx_90 {
  margin: 0 90px !important;
}

.hp_mt_90 {
  margin-top: 90px !important;
}

.hp_mb_90 {
  margin-bottom: 90px !important;
}

.hp_ml_90 {
  margin-left: 90px !important;
}

.hp_mr_90 {
  margin-right: 90px !important;
}

.hp_p_95 {
  padding: 95px !important;
}

.hp_py_95 {
  padding: 95px 0 !important;
}

.hp_px_95 {
  padding: 0 95px !important;
}

.hp_pt_95 {
  padding-top: 95px !important;
}

.hp_pb_95 {
  padding-bottom: 95px !important;
}

.hp_pl_95 {
  padding-left: 95px !important;
}

.hp_pr_95 {
  padding-right: 95px !important;
}

.hp_m_95 {
  margin: 95px !important;
}

.hp_my_95 {
  margin: 95px 0 !important;
}

.hp_mx_95 {
  margin: 0 95px !important;
}

.hp_mt_95 {
  margin-top: 95px !important;
}

.hp_mb_95 {
  margin-bottom: 95px !important;
}

.hp_ml_95 {
  margin-left: 95px !important;
}

.hp_mr_95 {
  margin-right: 95px !important;
}

.hp_p_100 {
  padding: 100px !important;
}

.hp_py_100 {
  padding: 100px 0 !important;
}

.hp_px_100 {
  padding: 0 100px !important;
}

.hp_pt_100 {
  padding-top: 100px !important;
}

.hp_pb_100 {
  padding-bottom: 100px !important;
}

.hp_pl_100 {
  padding-left: 100px !important;
}

.hp_pr_100 {
  padding-right: 100px !important;
}

.hp_m_100 {
  margin: 100px !important;
}

.hp_my_100 {
  margin: 100px 0 !important;
}

.hp_mx_100 {
  margin: 0 100px !important;
}

.hp_mt_100 {
  margin-top: 100px !important;
}

.hp_mb_100 {
  margin-bottom: 100px !important;
}

.hp_ml_100 {
  margin-left: 100px !important;
}

.hp_mr_100 {
  margin-right: 100px !important;
}

.hp_of_hidden {
  overflow: hidden !important;
}

/*------------------------------------------------------------
	先方から共有されたテンプレート
------------------------------------------------------------*/
.l-header {
  transition: 0.2s;
  width: 100%;
  z-index: 10;
}

.l-header--logo {
  background: #fff;
  box-shadow: inset 0 -2px 0 #e8e8e8;
  padding: 18px 13px;
  position: relative;
  line-height: 0;
}

.l-header--logo * {
  list-style: 0;
}

.l-header--logo:after {
  background: #e94709;
  bottom: -7px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  width: 100%;
}

.l-header--nav {
  padding-top: 7px;
  position: relative;
}

.l-header--nav_bg {
  height: 100%;
  margin-top: -7px;
  position: absolute;
  transition: 0.2s;
  width: 100%;
  z-index: -1;
}

.l-header--nav_container {
  align-items: flex-start;
  color: #707070;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 1.6rem;
  justify-content: flex-end;
  letter-spacing: 0.17rem;
  padding-bottom: 7px;
  padding-right: 48px;
  padding-top: 15px;
}

.l-header--nav_block {
  font-weight: 600;
  padding-bottom: 6px;
  transition: 0.2s;
  line-height: 1.15;
}

.l-header--nav_block + .l-header--nav_block {
  margin-left: 46px;
}

@media screen and (max-width: 768px) {
  .l-header--inner {
    position: relative;
  }
  .l-header--logo {
    padding: 10px;
    position: relative;
    z-index: 10;
  }
  .l-header--logo::after {
    bottom: -4px;
    height: 4px;
  }
  .l-header--nav {
    align-items: center;
    display: none;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    left: 0;
    padding-top: 40px;
    position: absolute;
    top: 4px;
    width: 100%;
    z-index: 9;
  }
  .l-header--nav_button {
    align-items: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
    height: 50px;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 39px;
    width: 50px;
    z-index: 10;
  }
  .l-header--nav_button span {
    background: #e94709;
    height: 2px;
    width: 30px;
  }
  .l-header--nav_button span:first-child, .l-header--nav_button span:nth-child(3) {
    transform-origin: -2px 1px 0;
    transition: 0.4s;
  }
  .l-header--nav_button.is-open {
    background: none;
  }
  .l-header--nav_button.is-open span {
    display: block;
    margin-left: 10px;
  }
  .l-header--nav_button.is-open span:first-child {
    transform: rotate(45deg);
  }
  .l-header--nav_button.is-open span:nth-child(2) {
    opacity: 0;
  }
  .l-header--nav_button.is-open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .l-header--nav.is-open {
    animation: show 0.4s linear 0s;
    display: flex;
  }
  .l-header--nav_bg {
    display: none;
  }
  .l-header--nav_container {
    align-items: center;
    background: none;
    flex-direction: column;
    gap: 11.0778443114vh 0;
    justify-content: space-evenly;
    padding: 0;
  }
  .l-header--nav_block {
    padding-bottom: 0;
  }
  .l-header--nav_block + .l-header--nav_block {
    margin-left: 0;
  }
  .l-header--nav_link {
    display: inline-block;
    overflow: hidden;
    text-indent: 200%;
    white-space: nowrap;
  }
  .l-header--nav_top {
    background: url(../img/template/partials/header/nav_top.svg) no-repeat;
    background-position: 50%;
    background-size: contain;
    width: 29.6vw;
  }
  .l-header--nav_usage {
    background: url(../img/template/partials/header/nav_usage.svg) no-repeat;
    background-position: 50%;
    background-size: contain;
    width: 35.7333333333vw;
  }
  .l-header--nav_faq {
    background: url(../img/template/partials/header/nav_faq.svg) no-repeat;
    background-position: 50%;
    background-size: contain;
    width: 35.7333333333vw;
  }
  .l-header--nav_contact {
    background: url(../img/template/partials/header/nav_contact.svg) no-repeat;
    background-position: 50%;
    background-size: contain;
    width: 30.4vw;
  }
}
@media screen and (min-width: 769px) {
  .l-header .is-sp {
    display: none;
  }
  .l-header a {
    color: #707070;
    transition: 0.3s ease;
  }
  .l-header a:hover {
    color: #e94709;
    transition: 0.2s;
  }
}
@media screen and (max-width: 768px) {
  .is-blur {
    filter: blur(20px);
    opacity: 0.35;
  }
  body.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }
}
.l-header, .l-footer, nav {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 768px) {
  .l-header--inner {
    line-height: 0;
  }
}
.l-footer * {
  line-height: 0;
}

.l-footer--nav {
  align-items: flex-start;
  background: #fff;
  border-bottom: 1px solid #707070;
  border-top: 1px solid #707070;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  padding-bottom: 40px;
  padding-top: 40px;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--nav {
    padding-bottom: 3.5511363636vw;
    padding-top: 3.5511363636vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--nav {
    align-items: stretch;
    border-bottom: none;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    position: relative;
  }
  .l-footer--nav:before {
    background: #707070;
    content: "";
    height: 100%;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
  }
}
.l-footer--nav--app_terms {
  width: 177px;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--nav--app_terms {
    max-width: 177px;
    width: 15.7333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--nav--app_terms {
    max-width: 177px;
    width: 47.2vw;
  }
}
.l-footer--nav--enekey_terms {
  width: 158px;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--nav--enekey_terms {
    max-width: 158px;
    width: 14.0269886364vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--nav--enekey_terms {
    max-width: 158px;
    width: 42.1333333333vw;
  }
}
.l-footer--nav--point_terms {
  width: 152px;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--nav--point_terms {
    max-width: 152px;
    width: 13.4943181818vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--nav--point_terms {
    max-width: 152px;
    width: 40.5333333333vw;
  }
}
.l-footer--nav--withdraw {
  width: 186px;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--nav--withdraw {
    max-width: 186px;
    width: 16.5127840909vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--nav--withdraw {
    max-width: 103px;
    width: 27.4666666667vw;
  }
}
.l-footer--nav--privacy {
  width: 137px;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--nav--privacy {
    max-width: 137px;
    width: 12.1626420455vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--nav--privacy {
    max-width: 137px;
    width: 36.5333333333vw;
  }
}
.l-footer--nav--information {
  width: 54px;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--nav--information {
    max-width: 54px;
    width: 4.7940340909vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--nav--information {
    max-width: 54px;
    width: 14.4vw;
  }
}
.l-footer--nav--block {
  margin-left: 22px;
  margin-right: 22px;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--nav--block {
    margin-left: 1.953125vw;
    margin-right: 1.953125vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--nav--block {
    align-items: center;
    border-bottom: 1px solid #707070;
    display: flex;
    flex-direction: column;
    height: 50px;
    justify-content: center;
    margin: 0;
    position: relative;
    width: 50%;
  }
}
.l-footer--nav--block a {
  display: block;
}

.l-footer--nav--block a img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.l-footer--nav--block a.is-external {
  box-sizing: initial;
  padding-right: 20px;
  position: relative;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--nav--block a.is-external {
    padding-right: 1.7755681818vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--nav--block a.is-external {
    padding-right: 20px;
  }
}
.l-footer--nav--block a.is-external:after {
  background: url("../img/template/icons/link_gray.png") no-repeat;
  background-position: 50%;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 10px;
  margin: auto 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--nav--block a.is-external:after {
    height: 0.8877840909vw;
    max-height: 10px;
    max-width: 10px;
    width: 0.8877840909vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--nav--block a.is-external:after {
    height: 10px;
    width: 10px;
  }
}
.l-footer--links {
  background: #000;
  padding-bottom: 25px;
  padding-top: 25px;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--links {
    padding-bottom: 2.2194602273vw;
    padding-top: 2.2194602273vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--links {
    padding: 0;
  }
}
.l-footer--inner {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--inner {
    padding-left: 2.6633522727vw;
    padding-right: 2.6633522727vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 0;
    width: 100%;
  }
}
.l-footer--group {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  .l-footer--group {
    align-items: flex-start;
    border-bottom: 1px solid #707070;
    flex-direction: column;
    padding-bottom: 14px;
    padding-left: 10px;
    padding-top: 14px;
    width: 100%;
  }
}
.l-footer--group_logo {
  margin-right: 50px;
  width: 96px;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--group_logo {
    margin-right: 4.4389204545vw;
    max-width: 96px;
    width: 8.5227272727vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--group_logo {
    margin-bottom: 12px;
    margin-right: 0;
    width: 142px;
  }
}
.l-footer--group_links {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.l-footer--group_links--block {
  margin-right: 32px;
  position: relative;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--group_links--block {
    margin-right: 2.8409090909vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--group_links--block {
    margin-right: 28px;
  }
}
.l-footer--group_links--block a {
  display: block;
}

.l-footer--group_links--block a:after {
  background: url("../img/template/icons/link.png") no-repeat;
  background-position: 50%;
  background-size: contain;
  content: "";
  height: 10px;
  position: absolute;
  right: -16px;
  top: 0;
  width: 10px;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--group_links--block a:after {
    bottom: 0;
    height: 0.8877840909vw;
    max-height: 10px;
    max-width: 10px;
    right: -1.4204545455vw;
    top: auto;
    width: 0.8877840909vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--group_links--block a:after {
    height: 10px;
    right: -14px;
    width: 10px;
  }
}
.l-footer--group_links--hld {
  width: 146px;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--group_links--hld {
    max-width: 146px;
    width: 12.9616477273vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--group_links--hld {
    width: 98px;
  }
}
.l-footer--group_links--nex {
  width: 70px;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--group_links--nex {
    max-width: 70px;
    width: 6.2144886364vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--group_links--nex {
    width: 54px;
  }
}
.l-footer--group_links--nmm {
  width: 49px;
}

@media screen and (min-width: 769px) and (max-width: 1125.4px) {
  .l-footer--group_links--nmm {
    max-width: 49px;
    width: 4.3501420455vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer--group_links--nmm {
    width: 38px;
  }
}
.l-footer--copyright {
  color: #fff;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.15;
}

.l-footer--copyright small {
  font-size: 80%;
}

@media screen and (max-width: 768px) {
  .l-footer--copyright {
    font-size: 1rem;
    padding: 12px 10px;
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

/* 拡大 */
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.zoomInTrigger {
  opacity: 0;
}

/*------------------------------------------------------------
	インナー
------------------------------------------------------------*/
.inner {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: none;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .inner.is_pc {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .inner.is_sp {
    max-width: none;
    padding: 0;
  }
}

/*------------------------------------------------------------
	タイトル
------------------------------------------------------------*/
.title01 {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 453px;
  font-size: 4rem;
  margin-inline: auto;
  font-weight: bold;
  line-height: 1.4038461538;
  text-align: center;
  color: #fff;
  background-color: #242424;
  padding: 10px 50px;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .title01 {
    min-width: 297px;
    padding: 10px 20px;
    font-size: 3rem;
  }
}

/*------------------------------------------------------------
	ボタン
------------------------------------------------------------*/
.btn01 {
  display: flex;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 2dvb 50px;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.1570590909;
  color: #fff;
  background-color: #242424;
  border-radius: 100vmax;
}
@media screen and (max-width: 767px) {
  .btn01 {
    gap: 15px;
    padding: 10px 25px;
    font-size: 2.2rem;
  }
}
.btn01::before {
  content: "";
  width: 18px;
  height: 21px;
  background: url("../img/index_ic01.svg") no-repeat border-box center/cover;
}
@media screen and (max-width: 767px) {
  .btn01::before {
    width: 15px;
    height: 17px;
  }
}
.btn01.is_small {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .btn01.is_small {
    font-size: 2rem;
  }
}

/*------------------------------------------------------------
	アコーディオン
------------------------------------------------------------*/
.accordion + .accordion {
  margin-top: 85px;
}
@media screen and (max-width: 767px) {
  .accordion + .accordion {
    margin-top: 60px;
  }
}
.accordion_head {
  position: relative;
  display: block;
  padding: 15px 25px;
  background-color: #e94709;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .accordion_head {
    text-align: left;
    padding: 10px 20px;
  }
}
.accordion_head.is-active .accordion_icon::after {
  transform: translate(-50%, -50%) rotate(0);
}
.accordion_body {
  display: none;
}
.accordion_title {
  color: #FFF;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .accordion_title {
    font-size: 1.8rem;
  }
}
.accordion_icon {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .accordion_icon {
    right: 20px;
    width: 24px;
    height: 24px;
  }
}
.accordion_icon::before, .accordion_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 4px;
  background-color: #e94709;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .accordion_icon::before, .accordion_icon::after {
    width: 12px;
    height: 2px;
  }
}
.accordion_icon::before {
  transform: translate(-50%, -50%);
}
.accordion_icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion_text {
  margin-top: 35px;
  line-height: 1.931;
}
@media screen and (max-width: 767px) {
  .accordion_text {
    margin-top: 20px;
  }
}

/*------------------------------------------------------------
	appDownload
------------------------------------------------------------*/
.appDownload {
  padding: 60px 30px;
}
@media screen and (max-width: 767px) {
  .appDownload {
    padding: 45px 0;
  }
}
.appDownload_box {
  max-width: 1068px;
  margin-inline: auto;
  background-color: #FFF;
  border-radius: 30px;
  padding: 30px;
  border: 1px solid #b3b3b3;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.appDownload_title {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .appDownload_title {
    font-size: 1.8rem;
  }
}
.appDownload_imgGrid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .appDownload_imgGrid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px 15px;
    width: 280px;
    margin-inline: auto;
  }
}
.appDownload_imgGrid .app {
  width: 338px;
}
@media screen and (max-width: 767px) {
  .appDownload_imgGrid .app {
    width: 100%;
    grid-column: span 2;
  }
}
.appDownload_imgGrid .apple {
  width: 218px;
}
@media screen and (max-width: 767px) {
  .appDownload_imgGrid .apple {
    width: 117px;
  }
}
.appDownload_imgGrid .google {
  width: 270px;
}
@media screen and (max-width: 767px) {
  .appDownload_imgGrid .google {
    width: 145px;
  }
}

#awpoint2024 {
  margin-top: 7px;
  /*------------------------------------------------------------
  キービジュアル
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  アンカーリンク
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  セクション01
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  セクション02
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  セクション03
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  セクション04
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  セクション05
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  セクション06
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  セクション07
  ------------------------------------------------------------*/
}
@media screen and (max-width: 767px) {
  #awpoint2024 {
    margin-top: 4px;
  }
}
#awpoint2024 a {
  transition: opacity 0.2s;
}
#awpoint2024 a:hover {
  opacity: 0.8;
}
#awpoint2024 .bg_color {
  background-color: #e94709;
}
#awpoint2024 .kv {
  width: 100%;
  background: url("../img/index_bg01.jpg") repeat;
  text-align: center;
}
#awpoint2024 .kv img {
  width: 100%;
}
#awpoint2024 .navibox {
  width: 100%;
  background-color: #e94709;
}
#awpoint2024 .navibox_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 15px;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .navibox_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px 0;
  }
}
#awpoint2024 .navibox_item a {
  display: block;
}
#awpoint2024 .sec01 {
  padding: 120px 0 100px;
  background: url("../img/index_bg01.jpg") repeat;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .sec01 {
    padding: 70px 0 55px;
  }
}
#awpoint2024 .sec01_contents {
  position: relative;
}
#awpoint2024 .sec01 .title01 {
  position: absolute;
  inset: 0 auto auto 50%;
  translate: -50% -50%;
  min-width: 297px;
}
#awpoint2024 .sec02 {
  padding: 110px 0 65px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .sec02 {
    padding: 80px 0 50px;
  }
}
#awpoint2024 .sec02_contents {
  position: relative;
  padding: 70px 0 40px;
  background-color: #fff;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .sec02_contents {
    padding: 50px 0;
  }
}
#awpoint2024 .sec02 .title01 {
  position: absolute;
  inset: 0 auto auto 50%;
  translate: -50% -50%;
}
#awpoint2024 .sec02_row {
  display: grid;
  grid-template-columns: 1fr;
  width: 850px;
  margin-inline: auto;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4553571429;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .sec02_row {
    width: 100%;
    font-size: 1.8rem;
    font-weight: 500;
  }
}
#awpoint2024 .sec03 {
  padding: 85px 0;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .sec03 {
    padding: 50px 0;
  }
}
#awpoint2024 .sec03_text {
  margin-top: 50px;
  font-size: 2.1rem;
  line-height: 1.6547619048;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .sec03_text {
    margin-top: 30px;
    line-height: 1.369047619;
    text-align: left;
  }
}
#awpoint2024 .step.is_01 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .step.is_01 {
    margin-top: 40px;
  }
}
#awpoint2024 .step.is_02 {
  margin-top: 85px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .step.is_02 {
    margin-top: 50px;
  }
}
#awpoint2024 .step_list {
  display: flex;
  justify-content: center;
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .step_list {
    display: block;
    margin-top: 50px;
  }
}
#awpoint2024 .step_list.is_col2 {
  gap: 60px;
}
#awpoint2024 .step_list.is_col3 {
  gap: 15px;
}
#awpoint2024 .step_arrow {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .step_arrow {
    margin-top: 30px;
  }
}
#awpoint2024 .step_arrow img {
  width: 218px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .step_arrow img {
    width: 139px;
  }
}
#awpoint2024 .step_title {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
  margin-inline: auto;
  padding: 0 10px 8px;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.1319444444;
  letter-spacing: 0;
  border-bottom: 4px solid #e94709;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .step_title {
    width: 100%;
    text-align: center;
    padding: 0 0 8px;
    font-size: 2.6rem;
  }
}
#awpoint2024 .stepItem {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 390px;
  height: 400px;
  padding: 50px 25px 40px;
  border: 1px solid #ccc;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .stepItem {
    display: block;
    width: 100%;
    height: auto;
    padding: 30px 15px;
  }
  #awpoint2024 .stepItem:not(:first-of-type) {
    margin-top: 50px;
  }
}
#awpoint2024 .stepItem_num {
  position: absolute;
  inset: 0 auto auto 50%;
  translate: -50% -50%;
  width: 220px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vmax;
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  background-color: #e94709;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .stepItem_num {
    width: 170px;
    height: 40px;
    font-size: 2.2rem;
  }
}
#awpoint2024 .stepItem_title {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .stepItem_title {
    font-size: 2.2rem;
  }
}
#awpoint2024 .stepItem_text {
  margin-top: 10px;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .stepItem_text {
    margin-top: 5px;
    font-size: 1.8rem;
  }
}
#awpoint2024 .stepItem_img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: end;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .stepItem_img {
    margin-top: 15px;
  }
}
#awpoint2024 .stepItem_img.is_01 img {
  width: 280px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .stepItem_img.is_01 img {
    width: 230px;
  }
}
#awpoint2024 .stepItem_img.is_02 img {
  width: 334px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .stepItem_img.is_02 img {
    width: 237px;
  }
}
#awpoint2024 .stepItem_imgGrid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .stepItem_imgGrid {
    gap: 10px 15px;
    width: 280px;
    margin-inline: auto;
  }
}
#awpoint2024 .stepItem_imgGrid .app {
  grid-column: span 2;
}
#awpoint2024 .stepItem_imgGrid .apple {
  width: 143px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .stepItem_imgGrid .apple {
    width: 117px;
  }
}
#awpoint2024 .stepItem_imgGrid .google {
  width: 176px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .stepItem_imgGrid .google {
    width: 145px;
  }
}
#awpoint2024 .banner {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .banner {
    margin-top: 35px;
  }
}
#awpoint2024 .banner_title {
  font-size: 2.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .banner_title {
    font-size: 2.2rem;
  }
}
#awpoint2024 .banner_title::before, #awpoint2024 .banner_title::after {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .banner_title::before, #awpoint2024 .banner_title::after {
    font-size: 2.6rem;
  }
}
#awpoint2024 .banner_title::before {
  content: "＼ ";
}
#awpoint2024 .banner_title::after {
  content: "／";
}
#awpoint2024 .banner_item {
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .banner_item {
    margin-top: 5px;
  }
}
#awpoint2024 .banner_note {
  margin-top: 5px;
  text-align: center;
}
#awpoint2024 .sec04 {
  padding: 85px 0 140px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .sec04 {
    padding: 55px 0;
  }
}
@media screen and (max-width: 767px) {
  #awpoint2024 .sec04 .title01 {
    width: 100%;
    font-size: 2.6rem;
  }
}
#awpoint2024 .sec04_catch {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .sec04_catch {
    margin-top: 25px;
  }
}
#awpoint2024 .sec04_catch img {
  width: 890px;
}
#awpoint2024 .sec04_contents {
  width: calc(100% + 18px);
  margin-top: 10px;
  margin-left: -9px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .sec04_contents {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }
}
#awpoint2024 .sec04 .btn01 {
  margin-top: 70px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .sec04 .btn01 {
    width: 100%;
    margin-top: 50px;
    text-align: center;
  }
  #awpoint2024 .sec04 .btn01 span {
    flex: 1;
  }
}
#awpoint2024 .sec05 {
  padding: 90px 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .sec05 {
    padding: 60px 0;
  }
}
#awpoint2024 .table {
  margin-top: 50px;
  border: 1px solid #b3b3b3;
  border-collapse: collapse;
  line-height: 1.931;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .table {
    margin-top: 30px;
  }
}
#awpoint2024 .table th, #awpoint2024 .table td {
  padding: 25px 10px 25px 20px;
  border: 1px solid #b3b3b3;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .table th, #awpoint2024 .table td {
    display: block;
    padding: 5px 10px;
  }
}
#awpoint2024 .table th {
  width: 22%;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .table th {
    width: 100%;
  }
}
#awpoint2024 .table td {
  width: 78%;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .table td {
    width: 100%;
    padding: 20px;
  }
}
#awpoint2024 .table .small {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .table .small {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
#awpoint2024 .faq_row {
  margin-top: 40px;
  border: 1px solid #b3b3b3;
  border-radius: 30px;
  padding: 40px 45px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .faq_row {
    margin-top: 20px;
    padding: 20px;
  }
}
#awpoint2024 .faq_icon {
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  background-color: #e94709;
  margin-top: -5px;
  font-size: 2.1rem;
  font-weight: bold;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .faq_icon {
    width: 24px;
    height: 24px;
    font-size: 1.8rem;
    margin-top: 3px;
  }
}
#awpoint2024 .faq dt, #awpoint2024 .faq dd {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .faq dt, #awpoint2024 .faq dd {
    gap: 10px;
  }
}
#awpoint2024 .faq dt {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #b3b3b3;
  font-size: 2.1rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .faq dt {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}
#awpoint2024 .faq dt .faq_icon {
  padding-bottom: 0.2em;
}
#awpoint2024 .faq dd .faq_text {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .faq dd .faq_text {
    margin-top: 0;
  }
}
#awpoint2024 .faq dd .faq_icon {
  background-color: #000;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .faq dd .faq_icon {
    display: none;
  }
}
#awpoint2024 .sec07 {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .sec07 {
    margin-top: 50px;
  }
}
#awpoint2024 .subsection_title {
  font-size: 3.2rem;
  font-weight: bold;
  background-color: #242424;
  color: #FFF;
  padding: 15px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .subsection_title {
    padding: 10px 20px;
    text-align: left;
    font-size: 1.8rem;
  }
}
#awpoint2024 .subsection_body {
  padding: 50px 20px 30px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .subsection_body {
    padding: 30px 20px;
  }
}
#awpoint2024 .subsection .btn01 {
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .subsection .btn01 {
    width: 100%;
    max-width: 307px;
  }
}
#awpoint2024 .subsection_note {
  max-width: 896px;
  margin-inline: auto;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .subsection_note {
    max-width: 100%;
    margin-top: 20px;
  }
}
#awpoint2024 .subsection_note li {
  padding-left: 1em;
  text-indent: -1em;
}
#awpoint2024 .subsection_note li a {
  color: #242424;
}
#awpoint2024 .subsection.is-02 {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .subsection.is-02 {
    margin-top: 35px;
  }
}
#awpoint2024 .subsection.is-02 .subsection_note {
  max-width: 616px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .subsection.is-02 .subsection_note {
    max-width: 100%;
  }
}
#awpoint2024 .tel dt {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .tel dt {
    text-align: left;
    font-size: 1.8rem;
  }
}
#awpoint2024 .tel dd {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .tel dd {
    margin-top: 0;
  }
}
#awpoint2024 .tel dd a {
  text-align: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 3.8rem;
  font-weight: bold;
  color: #242424;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .tel dd a {
    justify-content: flex-start;
    font-size: 3.2rem;
  }
}
#awpoint2024 .tel dd a img {
  width: 28px;
  margin-top: 5px;
}
#awpoint2024 .noteList {
  margin-top: 75px;
  margin-bottom: 15px;
  text-align: right;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  #awpoint2024 .noteList {
    margin-top: 50px;
    font-size: 1rem;
    text-align: left;
  }
}/*# sourceMappingURL=style.css.map */