@charset "UTF-8";
/*スマホ優先*/
/*
/+-------------------------------------------------------------------+
| 基本
*/
@font-face {
  font-family: "Inter";
  src: url("Inter_Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  font-size: 18px;
  line-height: 1.8;
  --main-color: #ea0000;
  --gray-color: #7b7b7b;
  box-sizing: border-box;
  scroll-padding: 20px;
}

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

img {
  max-width: 600px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1128px) {
  img {
    width: auto;
    max-width: 100%;
  }
}

a,
button {
  cursor: pointer;
}

a[href^="tel:"] {
  text-decoration: none;
  color: var(--black-color);
}

.mb_s {
  margin-bottom: 15px;
}

.mb_m {
  margin-bottom: 30px;
}
@media screen and (min-width: 1128px) {
  .mb_m .mb_m {
    margin-bottom: 50px;
  }
}

.mb_b {
  margin-bottom: 60px;
}
@media screen and (min-width: 1128px) {
  .mb_b .mb_b {
    margin-bottom: 80px;
  }
}

.mb_sb {
  margin-bottom: 80px;
}
@media screen and (min-width: 1128px) {
  .mb_sb .mb_b {
    margin-bottom: 100px;
  }
}

.pd_sp {
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width:460px) and (max-width:1127px) {
  .pd_sp {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.pd_sp_small {
  padding-left: 8px;
  padding-right: 8px;
}

.ta_c {
  text-align: center;
}

.fs_big {
  font-size: 140%;
}

.fs_small {
  font-size: 60%;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #000000;
}

.pc_only {
  display: none !important;
}
@media screen and (min-width: 1128px) {
  .pc_only {
    display: block !important;
  }
}

.pctab_only {
  display: none !important;
}
@media screen and (min-width: 460px) {
  .pctab_only {
    display: block !important;
  }
}

.sp_only {
  display: block !important;
}
@media screen and (min-width:460px) and (max-width:1127px) {
  .sp_only {
    display: none !important;
  }
}
@media screen and (min-width: 1128px) {
  .sp_only {
    display: none !important;
  }
}

@media screen and (min-width: 1128px) {
  .sptab_only {
    display: none;
  }
}

ul {
  margin-left: 0;
  padding-left: 0;
}
ul li {
  list-style: none;
}

.ta_c {
  text-align: center;
  margin-inline: auto;
}

/*
/+-------------------------------------------------------------------+
| その他ページ共通
*/
/*
/+-------------------------------------------------------------------+
| フォーム
*/
#form_section {
  margin-inline: auto;
  background-color: #ffe500;
  padding: 16px;
}
#form_section h2 {
  position: relative;
  margin-bottom: 16px;
}
#form_section .form_anime {
  position: absolute;
  bottom: 30px;
}
@media screen and (min-width: 1128px) {
  #form_section .form_anime {
    right: 50%;
    transform: translateX(460px);
    bottom: 80px;
  }
}
#form_section .form_wrap {
  margin: 0 0 20px 0;
  background-color: #fff;
  border: 4px solid #000;
  padding: 8px 16px;
  font-size: 16px;
}
@media screen and (min-width: 1128px) {
  #form_section .form_wrap {
    width: 850px;
    margin: 0 auto 20px auto;
    padding: 32px 48px;
  }
}
#form_section .form_wrap li {
  display: grid;
  grid-template-columns: 25dvw 1fr;
  font-size: 15px;
  -moz-column-gap: 5px;
       column-gap: 5px;
  border-bottom: 1px dashed var(--gray-color);
  padding: 15px 0;
  align-items: center;
}
#form_section .form_wrap li:last-child {
  border-bottom: none;
}
@media screen and (min-width:460px) and (max-width:1127px) {
  #form_section .form_wrap li {
    grid-template-columns: 130px 1fr;
    font-size: 18px;
  }
}
@media screen and (min-width: 1128px) {
  #form_section .form_wrap li {
    grid-template-columns: 150px 1fr;
    font-size: 18px;
    -moz-column-gap: 32px;
         column-gap: 32px;
    padding: 24px 0;
  }
}
#form_section .label {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
}
#form_section .hissu {
  background-color: var(--main-color);
  color: #fff;
  display: block;
  text-align: center;
  font-weight: bold;
  width: 60px;
  font-size: 12px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1128px) {
  #form_section .hissu {
    width: 80px;
    font-size: 18px;
  }
}
#form_section .hissu.ok {
  background-color: green; /* OK時の背景（薄緑） */
  color: #fff;
}
#form_section .label_t {
  display: block;
  width: 100%;
  text-align: right;
}
@media screen and (min-width: 460px) {
  #form_section .label_t {
    text-align: right;
  }
}
#form_section .form_wrap li.form_money {
  display: block;
}
@media screen and (min-width: 1128px) {
  #form_section .form_wrap li.form_money {
    display: grid;
  }
}
#form_section .form_wrap li.form_money .label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (min-width: 1128px) {
  #form_section .form_wrap li.form_money .label {
    display: flex;
    justify-content: right;
  }
}
#form_section .form_wrap li.form_money .label_t {
  width: auto;
}
#form_section .form_wrap li.form_money span.hissu {
  display: inline-block;
  margin-left: 10px;
}
@media screen and (min-width: 1128px) {
  #form_section .form_wrap li.form_money span.hissu {
    display: block;
    margin-left: 0;
  }
}
#form_section .radio-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  grid-column-gap: 10px;
}
@media screen and (min-width:460px) and (max-width:1127px) {
  #form_section .radio-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1128px) {
  #form_section .radio-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 460px) {
  #form_section .radio-wrap-big {
    grid-template-columns: 1fr 1fr;
  }
}
#form_section .custom-radio {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}
#form_section .custom-radio input[type=radio] + span {
  display: inline-block;
  padding: 5px;
  border: 1px solid var(--gray-color);
  cursor: pointer;
  border-radius: 5px;
  margin: 3px;
  font-size: 14px;
  background-color: #ffffff;
  color: #3e3f47;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
#form_section .big-radio input[type=radio] + span {
  padding: 15px 5px;
  top: -10px;
}
#form_section .custom-radio.disabled input[type=radio] + span {
  background-color: #cdcccc;
  color: var(--glay2-color);
  cursor: not-allowed;
}
#form_section .custom-radio input[type=radio] {
  visibility: hidden;
}
#form_section .custom-radio input[type=radio]:checked + span {
  color: #fff;
}
#form_section .custom-radio input[type=radio]:checked + span::before {
  content: "✔";
  margin-right: 10px;
}
#form_section .custom-radio input[type=radio]:checked + span {
  background-color: #007bff;
  border-color: #007bff;
}
#form_section input[type=number],
#form_section input[type=tel],
#form_section input[type=email],
#form_section input[type=text],
#form_section textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid var(--gray-color);
}
#form_section input[type=tel],
#form_section input[type=email],
#form_section input[type=text],
#form_section textarea {
  width: 100%;
  max-width: 500px;
}
#form_section select {
  font-size: 18px;
}
#form_section input[type=checkbox] {
  position: relative;
  width: 30px;
  height: 30px;
  border: 2px solid crimson;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0 0.5em 0 1em;
}
#form_section input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 7px;
  transform: rotate(50deg);
  width: 12px;
  height: 24px;
  border-right: 4px solid #000;
  border-bottom: 4px solid #000;
  content: "";
}
#form_section .grid-houjin {
  grid-column: 2/3;
  grid-row: 2/3;
  font-size: 14px;
  font-weight: bold;
  color: crimson;
}
#form_section label.error {
  background-color: var(--main-color);
  color: white;
  font-size: 14px !important;
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
  grid-column: 1/3;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 1128px) {
  #form_section label.error {
    font-size: 16px;
    padding: 5px;
  }
}
#form_section .form_btn {
  text-align: center;
}
#form_section button {
  border: none;
  cursor: pointer;
  background: #01bf2d;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.6);
  border-radius: 13px;
  color: #fff;
  padding: 30px 10px;
  font-size: 22px;
  width: 90dvw;
  max-width: 380px;
  line-height: 1.2;
}
@media screen and (min-width: 1128px) {
  #form_section button {
    width: 700px;
    font-size: 27px;
    padding: 30px 20px;
    font-size: 42px;
    max-width: inherit;
  }
}
#form_section .form_tel {
  border: 1px solid #000;
  padding: 10px 20px;
  margin-top: 20px;
}
#form_section .form_tel a {
  display: block;
  background-color: var(--main-color);
  color: var(--white-color);
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  line-height: 1;
  padding: 10px 5px;
  margin-top: -10px;
}
#form_section .form_tel a h5 {
  font-size: 26px;
}
#form_section .form_tel a p {
  font-size: 14px;
}

/*
/+-------------------------------------------------------------------+
| アニメーション
*/
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: var(--main-color);
  padding: 10px 0;
}

.marquee-inner {
  display: flex;
  width: 3008px; /* 1504px × 2 */
  animation: slideLeft 10s linear infinite;
}

.marquee-inner img {
  width: 1504px;
  height: auto;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1504px);
  }
}
.anim-box.poyoyon2.is-animated {
  animation: poyoyon2 1.6s ease-in-out infinite;
  overflow: hidden;
}

@keyframes poyoyon2 {
  0% {
    transform: scale(1, 1) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1, 0.9) translate(0, 5px);
  }
  85% {
    transform: scale(1, 1) translate(0, 0);
  }
  100% {
    transform: scale(1, 1) translate(0, 0); /* 小休止状態 */
  }
}
@keyframes anime_blink_slow_flashy {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90%, 100% {
    opacity: 1;
  }
  0%, 2%, 17%, 27%, 37%, 47%, 57%, 67%, 77%, 87%, 97% {
    opacity: 0.9;
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    opacity: 0;
  }
}
.blink {
  animation: anime_blink_slow_flashy 10s linear infinite;
}

.anim-box.poyoyon3.is-animated {
  animation: poyoyon3 2.5s infinite;
  opacity: 1;
}

@keyframes poyoyon3 {
  0%, 40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(5deg, 5deg);
  }
  10% {
    transform: skew(-4deg, -4deg);
  }
  15% {
    transform: skew(3deg, 3deg);
  }
  20% {
    transform: skew(-2deg, -2deg);
  }
  25% {
    transform: skew(1deg, 1deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}
/*
/+-------------------------------------------------------------------+
| その他ページオリジナル
*/
@media screen and (max-width: 1127px) {
  .main_wrap {
    background-color: #fff;
  }
}
@media screen and (min-width:460px) and (max-width:1127px) {
  .main_wrap {
    max-width: 460px;
    margin-inline: auto;
  }
  html {
    background: #baf1ff url(../img/sp/tab-bg.png) no-repeat bottom center;
    background-size: 100%;
    background-attachment: fixed;
  }
}
.top_1man_wrap {
  background-color: var(--main-color);
  padding: 8px 8px 0 8px;
}
@media screen and (min-width: 1128px) {
  .top_1man_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }
}

.topimg_wrap {
  background: #baf1ff url(../img/topimg_bg.png) repeat-x bottom;
  padding: 16px 8px 8px 8px;
  background-size: contain;
}
@media screen and (min-width: 1128px) {
  .topimg_wrap {
    background-size: inherit;
    padding: 16px 8px 0 8px;
  }
}

.topimg_wrapin {
  position: relative;
}
@media screen and (min-width: 1128px) {
  .topimg_wrapin {
    width: 1128px;
    margin-inline: auto;
  }
}

.topimg1 {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1128px) {
  .topimg1 {
    width: 689px;
  }
}

.topimg2 {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  width: 80dvw;
  top: 170px;
  max-width: 400px;
}
@media screen and (min-width: 400px) {
  .topimg2 {
    top: 200px;
  }
}
@media screen and (min-width: 1128px) {
  .topimg2 {
    right: 0;
    top: 100px;
    width: 450px;
    left: inherit;
    transform: none;
    max-width: inherit;
  }
}

.topimg3 {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}
@media screen and (min-width: 400px) {
  .topimg3 {
    padding-top: 150px;
  }
}
@media screen and (min-width: 1128px) {
  .topimg3 {
    padding-top: 0px;
    margin-top: -110px;
    width: 600px;
  }
}

.top_bottom_wrap {
  background: var(--main-color);
  padding: 16px 8px;
}

.nayami_wrap {
  background: url(../img/nayami_bg.png) repeat;
}

.r_triangle {
  width: 180px;
  aspect-ratio: 2;
  clip-path: polygon(50% 100%, 100% 0.1%, 0 0.1%);
  background: var(--main-color) url(../img/tex-dot.png) repeat;
  backface-visibility: hidden;
  transform: translateZ(0);
  margin-inline: auto;
  top: -1px;
  position: relative;
}
@media screen and (min-width: 1128px) {
  .r_triangle {
    width: 300px;
    aspect-ratio: 3;
    top: -3px;
  }
}

.nayami_ima {
  background-color: var(--main-color);
  padding: 8px 8px 0 8px;
}

.r_bg_jishin {
  background: url(../img/sp/bg-kira1.png) no-repeat top;
  background-size: cover;
}
@media screen and (min-width: 1128px) {
  .r_bg_jishin {
    background: url(../img/bg_kira2.png) no-repeat center top;
    background-size: cover;
  }
}

.r_huyou {
  background: var(--main-color) url(../img/tex-dot.png) repeat;
  padding-top: 32px;
  padding-bottom: 16px;
  margin-top: -20px;
}
@media screen and (min-width: 1128px) {
  .r_huyou {
    padding-top: 56px;
    padding-bottom: 32px;
    margin-top: -32px;
  }
}

.r_bg_contact {
  background: url(../img/sp/bg_kira2.png) no-repeat bottom;
  background-size: cover;
  padding: 0 16px 32px 16px;
}
@media screen and (min-width: 1128px) {
  .r_bg_contact {
    background: url(../img/bg-kira3.png) no-repeat bottom;
    background-size: cover;
    padding-bottom: 0 0 56px 0;
  }
}

.r_tel {
  border: 3px solid #000;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.4);
  margin-bottom: 8px;
  display: block;
  padding-bottom: 8px;
  text-decoration: none;
  color: #000;
}
@media screen and (min-width: 1128px) {
  .r_tel {
    width: 960px;
    margin-inline: auto;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.4);
    display: grid;
    grid-template-columns: 360px 1fr;
    margin-bottom: 32px;
    padding-bottom: 0;
  }
}

.r_tel_img img {
  position: absolute;
  top: -25px;
  z-index: 2;
  width: 87dvw;
  max-width: 400px;
}
@media screen and (min-width: 1128px) {
  .r_tel_img img {
    width: 303px;
    top: 13px;
    left: 50%;
    transform: translateX(-450px);
  }
}

.r_tel_nump {
  background: var(--main-color);
  height: 14dvw;
  max-height: 70px;
}
@media screen and (min-width: 1128px) {
  .r_tel_nump {
    display: flex;
    height: 100%;
    max-height: 100%;
  }
}

.r_tel_num {
  font-size: 10.5dvw;
  letter-spacing: -2px;
  line-height: 1;
  padding-top: 8px;
  text-align: center;
}
@media screen and (min-width: 450px) and (max-width: 1127px) {
  .r_tel_num {
    font-size: 52px;
  }
}
@media screen and (min-width: 1128px) {
  .r_tel_num {
    font-size: 70px;
  }
}
.r_tel_num:before {
  content: "";
  background: url(../img/ico-tel.png) no-repeat center center;
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: inline-block;
  background-size: contain;
  position: relative;
  top: 3px;
}
@media screen and (min-width: 1128px) {
  .r_tel_num:before {
    width: 70px;
    height: 70px;
    top: 5px;
  }
}

.r_tel_time {
  font-size: 16px;
  line-height: 1;
}
@media screen and (min-width: 1128px) {
  .r_tel_time {
    font-size: 20px;
  }
}
@media screen and (min-width: 1128px) and (min-width: 1128px) {
  .r_tel_time {
    margin-bottom: 16px;
  }
}

.r_line {
  margin-bottom: 8px;
}
@media screen and (min-width: 1128px) {
  .r_line {
    margin-bottom: 24px;
  }
}

.speed_wrap {
  background: #0095ff;
  position: relative;
  margin-top: 54px;
  padding-bottom: 32px;
}
@media screen and (min-width: 1128px) {
  .speed_wrap {
    margin-top: 120px;
    padding-bottom: 56px;
    background: #001eff;
  }
}
.speed_wrap h3 {
  position: absolute;
  top: -50px;
  z-index: 2;
}
@media screen and (min-width: 1128px) {
  .speed_wrap h3 {
    left: 50%;
    transform: translateX(-50%);
  }
}

.speed_anime {
  position: absolute;
  bottom: 15px;
}
@media screen and (min-width: 1128px) {
  .speed_anime {
    bottom: 15px;
    right: 50%;
    transform: translateX(360px);
  }
}

.speed_wrap2 {
  background: url(../img/text-b-dot.png) repeat;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media screen and (min-width: 1128px) {
  .speed_wrap2 {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

.hayai_bg {
  background: url(../img/sp/bg-kira1.png) no-repeat center;
}
@media screen and (min-width:460px) and (max-width:1127px) {
  .hayai_bg {
    background: url(../img/bg-kira1.png) no-repeat top;
  }
}
@media screen and (min-width: 1128px) {
  .hayai_bg {
    background: url(../img/bg-kira1.png) no-repeat center;
    background-size: cover;
  }
}

.noyes_wrap {
  background: url(../img/sp/m_bg.png) no-repeat bottom;
  background-size: 100%;
  padding-bottom: 100px;
}
@media screen and (min-width: 1128px) {
  .noyes_wrap {
    background: url(../img/topimg_bg.png) repeat-x bottom;
    padding-bottom: 200px;
  }
}

.v_wrap {
  background: var(--main-color);
  padding: 16px;
}
@media screen and (min-width:460px) and (max-width:1127px) {
  .v_wrap {
    padding: 32px;
  }
}
@media screen and (min-width: 1128px) {
  .v_wrap {
    padding: 32px 0 64px 0;
  }
}

.v_content_list {
  background-color: #fff;
  padding: 33dvw 16px 32px 16px;
  position: relative;
}
@media screen and (min-width:460px) and (max-width:1127px) {
  .v_content_list {
    padding: 130px 16px 32px 16px;
  }
}
@media screen and (min-width: 1128px) {
  .v_content_list {
    padding: 160px 40px 40px 40px;
    width: 1032px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 27px;
         column-gap: 27px;
    margin-inline: auto;
  }
}
.v_content_list li {
  border: 3px solid #000;
  padding: 32px 16px 16px;
  position: relative;
  margin-bottom: 33dvw;
}
@media screen and (min-width:460px) and (max-width:1127px) {
  .v_content_list li {
    padding: 64px 16px 16px 16px;
    margin-bottom: 130px;
  }
}
.v_content_list li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1128px) {
  .v_content_list li {
    margin-bottom: 0;
    padding: 40px 20px 24px;
    border: 4px solid #000;
  }
}
.v_content_list h4 {
  font-size: 28px;
  letter-spacing: -1px;
}

.v_content_m {
  position: absolute;
  top: -30dvw;
  left: 50%;
  transform: translateX(-50%);
  width: 80dvw;
}
@media screen and (min-width:460px) and (max-width:1127px) {
  .v_content_m {
    top: -100px;
    width: 360px;
  }
}
@media screen and (min-width: 1128px) {
  .v_content_m {
    top: -100px;
    width: 300px;
    left: 0;
    transform: none;
  }
}

.v_mtitle {
  position: relative;
  top: 20px;
  z-index: 2;
}
@media screen and (min-width: 1128px) {
  .v_mtitle {
    top: 40px;
  }
}

.v_person {
  color: var(--gray-color);
}

.ys_wrap {
  background: url(../img/txt-gray-dot.png) repeat;
  padding-top: 32px;
  padding-bottom: 32px;
}
.ys_wrap p {
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (min-width: 1128px) {
  .ys_wrap p {
    font-size: 28px;
    width: 1000px;
  }
}
.ys_wrap h3 {
  font-size: 22px;
}
.ys_wrap h2 {
  font-size: 32px;
  line-height: 1.2;
}
.ys_wrap dd {
  margin-bottom: 24px;
  font-size: 18px;
  border-bottom: 1px solid var(--gray-color);
  padding-bottom: 24px;
}
.ys_wrap dt {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 1128px) {
  .ys_wrap dl {
    width: 800px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 150px 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
    background-color: #fff;
    padding: 48px 32px;
  }
  .ys_wrap dd {
    border-bottom: none;
  }
  .ys_wrap dd:last-child {
    margin-bottom: 0;
  }
  .ys_wrap dt {
    text-align: right;
  }
  .ys_wrap h2 {
    font-size: 48px;
  }
}

.copy {
  background: #fff;
  color: #000;
  padding: 16px;
  text-align: center;
}

.follow_pc {
  background: #0022ff;
  border-top: 4px solid #000;
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 130px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  position: sticky;
  bottom: 0;
  z-index: 4;
}
@media screen and (min-width:460px) and (max-width:1127px) {
  .follow_pc {
    display: none;
  }
}
@media screen and (max-width: 459px) {
  .follow_pc {
    display: none;
  }
}

.follow_pc_img {
  position: relative;
  top: -20px;
}

.follow_pc_tel {
  font-size: 40px;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.follow_pc_tel::before {
  content: "";
  background: url(../img/follow-tel.png) no-repeat center center;
  width: 40px;
  height: 40px;
  display: inline-block;
  background-size: contain;
}
.follow_pc_tel span {
  font-size: 15px;
  display: block;
  line-height: 1.3;
}

.follow_pc_list {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.follow_pc_line a,
.follow_pc_mail a,
.follow_pc_line2 a,
.follow_pc_mail2 a {
  background: #00b900;
  padding: 10px 10px;
  border-radius: 10px;
  display: block;
}

.follow_pc_line2 a,
.follow_pc_mail2 a {
  padding: 25px 10px;
}

.follow_pc_mail a,
.follow_pc_mail2 a {
  background: #ff5900;
}

.follow_sp {
  background: #001eff;
  position: sticky;
  bottom: 0;
  z-index: 4;
  padding-top: 10px;
}
@media screen and (min-width: 1128px) {
  .follow_sp {
    display: none;
  }
}

.follow_sp_img {
  width: 90dvw;
  max-width: 450px;
  margin-inline: auto;
}
.follow_sp_img img {
  display: block;
}
.follow_sp_img .follow_sp_imgin {
  position: absolute;
  top: -30px;
  width: 70px;
  z-index: 1;
}
.follow_sp_img .follow_sp_imgin2 {
  padding-left: 75px;
  padding-bottom: 10px;
}

.follow_sp_list {
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
  padding: 0 5px 5px;
  z-index: 2;
  position: relative;
  max-width: 650px;
  margin-inline: auto;
}

.follow_sp_list li {
  width: 100%;
}

.follow_sp_list li a {
  background-color: var(--main-color);
  border-radius: 10px;
  padding: 7px 2px;
  display: flex;
  text-decoration: none;
  color: #fff;
  text-align: center;
  flex-wrap: wrap;
  line-height: 1;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.follow_sp_list li a span {
  font-size: 12px;
  display: block;
}

.follow_sp_list li.follow_sp_tel a {
  background-color: var(--main-color);
}

.follow_sp_list li.follow_sp_line a {
  background: #00b900;
}

.follow_sp_list li.follow_sp_mail a {
  background: #ff5900;
}

.popup_inner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 90%;
  max-width: 450px;
}

.popup_btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: end;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
}
.popup_btn li {
  cursor: pointer;
}

.popup_wrap {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none; /* 初期は非表示 */
}

.popup_hukidasi {
  position: absolute;
  top: 41%;
  width: 75%;
  left: 12%;
}

.popup_close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: white;
  border: 2px solid #ccc;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-align: center;
  line-height: 31px;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.2s;
}

.popup_close:hover {
  background: #eee;
}

.popup_no_btn {
  background: none;
  border: none;
}

/* =====================
   メールボタン：全体がポップに動く
   ===================== */
/* PC版 */
.follow_pc_mail a {
  background: #ff5900;
  padding: 10px 10px;
  border-radius: 10px;
  display: block;
  animation: bounceMail 1.8s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 89, 0, 0.5);
  transform-origin: center bottom;
  transition: transform 0.3s;
}

.follow_pc_mail a:hover {
  transform: scale(1.05);
}

/* SP版 */
.follow_sp_list li.follow_sp_mail a {
  background: #ff5900;
  animation: bounceMail 1.8s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 89, 0, 0.4);
  transform-origin: center bottom;
  transition: transform 0.3s;
}

.follow_sp_list li.follow_sp_mail a:hover {
  transform: scale(1.05);
}

/* =====================
   アニメーション定義
   ===================== */
@keyframes bounceMail {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(-6px) scale(1.05);
  }
  60% {
    transform: translateY(0) scale(0.98);
  }
}/*# sourceMappingURL=style.css.map */