@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --color_pink: #f13b8a;
  --color_lightblue: #00ccc5;
  --color_red: #ff0000;
}
body {
  font-size: 1vw;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
header {
}
footer {
}
main {
  background-image: url(../img/tokyo_back_img.webp);
  background-size: cover;
  background-attachment: fixed;
  min-height: 83.3vh;
  position: relative;
  padding-top: 20px;
  padding-bottom: 40px;
}
section {
}
div {
}
img {
  max-width: 100%;
  /* height: 100%; */
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}
a {
  text-decoration: none;
  color: #fff;
}
p {
}
h1 {
  color: #fff;
  font-size: 1.5em;
}
h2 {
  font-size: 1.1rem;
}
h3 {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
h3::before {
  content: "■";
  position: absolute;
  left: 0vw;
  top: 0em;
  color: #93d6db;
}
h4 {
}
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"] {
  padding: 2px 10px;
  border-radius: 8px;
  line-height: 2;
  width: 250px;
  font-size: 16px;
  text-align: left;
  border: 2px solid #ccc;
  box-sizing: initial;
}
input[type="radio"],
input[type="checkbox"] {
  display: none;
}
input[type="radio"]:checked + label,
input[type="checkbox"]:checked + label {
  background-color: var(--color_pink);
  color: #fff !important;
}
input[type="radio"] {
}
input[type="checkbox"] {
}
select {
  padding: 2px 10px;
  border-radius: 8px;
  line-height: 2;
  width: 250px;
  font-size: 16px;
  text-align: left;
  border: 2px solid #ccc;
  margin-bottom: 10px;
  height: 35px;
  box-sizing: initial;
  background: #fff;
}
.color_red {
  color: var(--color_red);
  width: 100% !important;
  margin-bottom: 5px;
}
.color_lightblue {
  color: var(--color_lightblue);
}
.color_pink {
  color: var(--color_pink);
}
.size_big {
  font-size: 24px;
  display: block;
}
.font_min {
  font-size: 11px;
  display: block;
  margin-left: 5px;
}

/*============================
#header
============================*/
#header {
  background-color: #595959;
  padding: 10px;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_logo {
  width: 23%;
}
.header_logo_img {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header_logo_img img {
  height: 4.4vw;
}
.header_center_text {
  text-align: center;
  color: #fff;
}
.header_center_text_p {
  font-size: 1.6em;
}
.heaer_btns {
  width: 20%;
  text-align: center;
}
.heade_link {
  background: linear-gradient(
    180deg,
    #2845d1 0%,
    #2845d1 50%,
    #0022cb 50%,
    #0022cb 100%
  );
  padding: 15px 45px 15px 15px;
  border-radius: 10px;
  position: relative;
}
.heade_link::after {
  content: "▶";
  position: absolute;
  right: 0vw;
  top: 50%;
  transform: translateY(-50%);
  padding: 14.9px 10px;
  background-color: #041d95;
  border-radius: 0 10px 10px 0;
}

/*============================
#taxi_form
============================*/
#taxi_form {
  background-color: #ffffff;
  max-width: 420px;
  margin: 0 auto;
  /* min-height: calc(100vh - 183px); */
  border: 1px solid #ccc;
  background: hsla(0, 0%, 100%, 0.9);
}

.taxi_form_lists {
  position: relative;
}
.lists_top_padding {
}
.taxi_form_lists_finger {
  position: absolute;
  top: 29%;
  right: 3%;
  width: 53px;
  height: 55px;
  background-image: url(../img/finger.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  animation: infinity-finger 1.5s infinite linear;
  transition: all 0.6s linear;
}
@keyframes infinity-finger {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0px);
  }
}

.taxi_form_steps {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding-bottom: 20px;
  border-bottom: solid 1px #707070;
  transition: all 0.6s linear;
  transform: translateY(-10vw);
  width: 100%;
  padding: 0 10% 20px;
  height: 65px;
  margin: 0 auto;
}
.taxi_form_step_line {
  position: absolute;
  width: 70%;
  height: 3px;
  background-image: linear-gradient(90deg, var(--color_pink) 0 3%, #cccccc 3%);
  z-index: 1;
  bottom: 22.9px;
}
.taxi_form_step {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cccccc;
  position: relative;
  z-index: 2;
}
.taxi_form_step::before {
  content: "Step" attr(step-num);
  position: absolute;
  top: -26px;
  left: 50%;
  font-size: 11px;
  transform: translateX(-50%);
  color: #707070;
  font-weight: 800;
  transition: all 0.6s linear;
}
.taxi_form_step.active {
  background-color: var(--color_pink);
}
.taxi_form_step.active::before {
  color: var(--color_pink);
}
.taxi_form_step_img {
  position: absolute;
  width: 11.5%;
  left: 10.5%;
  bottom: 17px;
  z-index: 3;
  animation: infinity-up-down 0.2s infinite linear;
  transition: all 1s linear;
}
@keyframes infinity-up-down {
  from {
    transform: translateY(0vw);
  }
  to {
    transform: translateY(0.05vw);
  }
}
.taxi_form_content_slider {
}

.taxi_form_content_title {
  margin: 0 auto 10px;
  width: 90%;
}

.taxi_form_content_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  margin: auto;
}

.taxi_form_content_btn_label {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 9px 10px;
  background: #fff;
  border: 1px solid #555;
  color: #707070;
  font-weight: 700;
  box-shadow: 2px 2px 6px -2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
  font-size: 14px;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.taxi_form_content_btn_label img {
  margin: 0px auto 8px;
  height: 40px;
}

.taxi_form_content {
  padding-top: 25px;
  padding-bottom: 15px;
}
.taxi_form_content:first-child .taxi_form_content_btn_label {
  display: inline-block;
  border: 2px solid #555;
  cursor: pointer;
  color: #707070;
  font-weight: 700;
  border-radius: 40px;
  width: 250px;
  text-align: center;
  box-shadow: 2px 2px 6px -2px rgba(0, 0, 0, 0.5);
  font-size: 17px;
  position: relative;
  width: 80%;
  box-sizing: border-box;
  padding: 28px 0;
  border-radius: 60px;
  margin: 0 0 20px;
}
.taxi_form_content:first-child .taxi_form_content_btn_label::after {
  content: "▶";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--color_pink);
  font-size: 0.9em;
}
.taxi_form_content:first-child .taxi_form_content_btns {
  gap: 0;
}
.question1 {
}

.btn_div {
  width: 100%;
  text-align: center;
  margin: auto;
}

.question1 .btn_div {
}

.taxi_form_licence_hidden_open_btn {
  text-align: center;
  margin: 1vw auto;
  padding: 5px 20px;
  background-color: #d5d5d5;
  border-radius: 2vw;
  position: relative;
  font-size: 13px;
}

.taxi_form_licence_hidden {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  display: none;
  width: 100%;
}

.btn_div.half_btn {
  width: 48.5%;
  font-size: 0.85em;
}

.taxi_form_content_btns_top_text {
  width: 90%;
  font-size: 11px;
  margin: auto;
}

.taxi_form_licence_hidden.address_code {
}
.address_img {
  margin: 25px 5% 0px;
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;
}
.address_bottoms {
  width: 100%;
  display: flex;
  align-items: center;
}

.address_bottoms_img {
  display: inline-block;
  width: 35%;
  z-index: 2;
}
.question7 .address_bottoms_img,
.question8 .address_bottoms_img {
  width: 13%;
  margin: 20px;
  margin-left: 7%;
}
.address_bottoms_text {
  position: relative;
  display: flex;
  align-items: center;
  width: 65%;
  background-color: #bbc2ef;
  border-radius: 1vw;
  padding: 10px;
  font-size: 12px;
  min-height: 60px;
}
.address_bottoms_text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  background: #bbc2ef;
  height: calc(tan(60deg) * 20px / 2);
  width: 20px;
  transform: translateY(-50%) rotate(30deg);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.jobs_nearby {
  width: 100%;
  text-align: center;
}

.jobs_nearby_num {
}

.taxi_form_content_btns_top_text {
}

.taxi_form_content_btns_top_text.text_center {
}

.taxi_form_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 5% 20px;
  align-items: center;
  margin: 2vw auto 0;
  border-top: solid 1px #707070;
  font-size: 12px;
}

.taxi_form_btn_back {
  cursor: pointer;
  width: 30%;
}

.taxi_form_btn_next {
  padding: 5px;
  background: #ccc;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  width: 200px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  flex: 1 1;
}
.taxi_form_btn_next::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  transform: skewX(-25deg);
}
.taxi_form_btn_next.active {
  background-color: #0199d2;
  cursor: pointer;
}
.taxi_form_btn_next.active::before {
  animation: shine 1.5s;
  animation-iteration-count: infinite;
}
.mailSend {
  font-size: 12px;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

.big_thanks {
  position: absolute;
  color: #ffffff69;
  font-size: 190px;
  transform: rotate(-23deg);
}

.purapori {
  color: #a9abb0;
  font-size: 12px;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
.purapori a {
  color: #a9abb0;
  text-decoration: underline;
}

/*============================
#thanks
============================*/
#thanks {
}
.information {
  color: #fff;
  text-align: center;
  margin: auto;
}
.thanks_h2 {
  border-bottom: solid 4px #2845d1;
  display: inline-block;
  padding: 0 1.5vw 0.5vw;
  margin: 4vw auto 2vw;
}
.information_img {
  width: 50%;
  display: flex;
  gap: 3vw;
  margin: 3vw auto;
  align-items: center;
  justify-content: center;
}
.information_qr {
  width: 20%;
}
.information_line {
  width: 30%;
}

/*============================
#thenks_footer
============================*/
#thenks_footer {
  background-color: #4c4c4c;
  color: #fff;
  text-align: center;
}
.footer_flows {
  display: flex;
  justify-content: space-around;
  margin: auto;
  width: 60%;
  gap: 2vw;
}
.footer_flow {
  background-color: #fff;
  padding: 0.6vw 0.5vw;
  width: calc(20% - 1vw);
  border-radius: 0.7vw;
}
.step {
  background-color: #2845d1;
  width: 80%;
  margin: 0 auto 0.5vw;
  border-radius: 1.2vw;
  padding: 0.2vw;
}
.flow_text {
  color: #000000;
  display: table;
  width: 100%;
  height: 60%;
}
.flow_text p {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.footer_flow:first-child .step {
  background-color: #707070;
}
.footer_information {
  display: flex;
  flex-wrap: wrap;
  width: 35%;
}
.footer_information h2 {
  width: 47%;
}
.information_flex_text {
  width: 65%;
}
.footer_tel {
  color: #fff;
  margin: 1vw 0;
  position: relative;
}
.footer_tel::before {
  content: "";
  background-image: url(../img/tel.webp);
  width: 20px;
  height: 20px;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: -23px;
  top: 55%;
  transform: translateY(-50%);
}
.information_flex_img {
  width: 18%;
}

/*============================
#footer
============================*/
#footer {
  background-color: #fcf5ea;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  padding: 10px 0;
  height: 6vh;
  flex-wrap: wrap;
}

.footer_center_text {
}

.slick-prev:before,
.slick-next:before {
  color: #000;
  display: none;
}

.address_img_a {
}
.address_img_a_top_text {
  color: #000;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.2px;
}
.address_img_a_cta {
  background: linear-gradient(
    180deg,
    #06c755 0%,
    #06c755 50%,
    #07a94a 50%,
    #07a94a 100%
  );
  padding: 15px 45px 15px 45px;
  border-radius: 10px;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 2px 2px 3px #716d6d;
}
.address_img_a_cta::after {
  content: "▶";
  position: absolute;
  right: 0vw;
  top: 49%;
  transform: translateY(-50%);
  padding: 14.8px 10px;
  background-color: #005b00;
  border-radius: 0 10px 10px 0;
}
.address_img_a_cta::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  background-image: url(../img/handle.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 2;
}
.address_img_a_cta:hover {
  background-color: #233a66;
  box-shadow: none;
  position: relative;
  left: 2px;
  top: 2px;
  background: linear-gradient(
    180deg,
    #06c755 0%,
    #06c755 50%,
    #07a94a 50%,
    #07a94a 100%
  );
}
.Footer_bg-black__ycxPp {
  background: #000;
  width: 100%;
  font-size: 12px;
  padding: 20px 0 20px;
  margin-top: 10px;
}
.Footer_top__rVDRG {
  width: 270px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  margin-bottom: 5px;
  font-size: 14px;
}
.Footer_bottom__0HzHr {
}
.Footer_copyright__QmGIo {
  color: #fff;
  text-align: center;
  margin-top: 15px;
}
.error {
  display: none;
  color: red;
  font-size: 15px;
  width: 100%;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  body {
  }
  header {
  }
  footer {
  }
  main {
    background-position: -32vw;
  }
  section {
  }
  div {
  }
  img {
  }
  a {
  }
  p {
  }
  h1 {
    font-size: 1.7vw;
  }
  h2 {
    font-size: 1.7vw;
  }
  h3 {
  }
  h3::before {
  }
  h4 {
  }
  input[type="text"],
  input[type="number"],
  input[type="tel"],
  input[type="email"] {
  }
  input[type="radio"],
  input[type="checkbox"] {
  }
  input[type="radio"]:checked + label,
  input[type="checkbox"]:checked + label {
  }
  input[type="radio"] {
  }
  input[type="checkbox"] {
  }
  select {
  }
  .color_red {
  }
  .color_lightblue {
  }
  .color_pink {
  }
  .size_big {
  }

  /*============================
	#header
	============================*/
  #header {
  }
  .header_inner {
  }
  .header_logo {
  }
  .header_logo_img {
  }
  .header_logo_img img {
  }
  .header_center_text {
  }
  .header_center_text_p {
    font-size: 2.8vw;
  }
  .heaer_btns {
  }
  .heade_link {
    font-size: 1.3vw;
  }
  .heade_link::after {
  }

  /*============================
	#taxi_form
	============================*/
  #taxi_form {
  }

  .taxi_form_lists {
  }
  .lists_top_padding {
  }
  .taxi_form_lists_finger {
  }
  .taxi_form_steps {
  }
  .taxi_form_step_line {
  }
  .taxi_form_step {
  }
  .taxi_form_step::before {
  }
  .taxi_form_step.active {
  }
  .taxi_form_step.active::before {
  }
  .taxi_form_step_img {
  }
  .taxi_form_content_slider {
  }

  .taxi_form_content_title {
  }

  .taxi_form_content_btns {
  }

  .taxi_form_content_btn_label {
  }

  .taxi_form_content_btn_label img {
  }

  .taxi_form_content {
  }

  .question1 {
  }

  .btn_div {
  }

  .question1 .btn_div {
  }

  .taxi_form_licence_hidden_open_btn {
  }
  .taxi_form_licence_hidden_open_btn::after {
  }

  .taxi_form_licence_hidden {
  }

  .btn_div.half_btn {
  }

  .taxi_form_content_btns_top_text {
  }

  .taxi_form_licence_hidden.address_code {
  }

  .address_bottoms {
  }

  .address_bottoms_img {
  }
  .question7 .address_bottoms_img,
  .question8 .address_bottoms_img {
  }
  .address_bottoms_text {
  }
  .address_bottoms_text::before {
  }

  .jobs_nearby {
  }

  .jobs_nearby_num {
  }

  .taxi_form_content_btns_top_text {
  }

  .taxi_form_content_btns_top_text.text_center {
  }

  .taxi_form_btns {
  }

  .taxi_form_btn_back {
  }

  .taxi_form_btn_next {
  }
  .taxi_form_btn_next.active {
  }

  .big_thanks {
  }

  /*============================
	#thanks
	============================*/
  #thanks {
  }
  .information {
  }
  .thanks_h2 {
  }
  .information_img {
  }
  .information_qr {
  }
  .information_line {
  }

  /*============================
	#thenks_footer
	============================*/
  #thenks_footer {
  }
  .footer_flows {
  }
  .footer_flow {
  }
  .step {
    width: 100%;
  }
  .flow_text {
  }
  .flow_text p {
  }
  .footer_flow:first-child .step {
  }
  .footer_information {
    justify-content: center;
  }
  .footer_information h2 {
  }
  .information_flex_text {
  }
  .footer_tel {
  }
  .footer_tel::before {
  }
  .information_flex_img {
  }

  /*============================
	#footer
	============================*/
  #footer {
  }

  .footer_center_text {
  }

  .slick-prev:before,
  .slick-next:before {
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 3.5vw;
  }
  header {
  }
  footer {
  }
  main {
    min-height: 79.7vh;
    background-image: none;
    overflow-x: hidden;
    padding: 0;
  }
  section {
  }
  div {
  }
  img {
  }
  a {
  }
  p {
  }
  h1 {
    font-size: 0.9rem;
  }
  h2 {
    font-size: 0.75rem;
    text-align: center;
  }
  h3 {
    font-size: 4.2vw;
    padding-left: 5vw;
  }
  h3::before {
    width: 4vw;
    height: 4vw;
  }
  h4 {
  }
  input[type="text"],
  input[type="number"],
  input[type="tel"],
  input[type="email"] {
  }
  input[type="radio"],
  input[type="checkbox"] {
  }
  input[type="radio"]:checked + label,
  input[type="checkbox"]:checked + label {
  }
  input[type="radio"] {
  }
  input[type="checkbox"] {
  }
  select {
  }
  .color_red {
  }
  .color_lightblue {
  }
  .color_pink {
  }
  .size_big {
    font-size: 1rem;
  }

  /*============================
	#header
	============================*/
  #header {
    height: auto;
  }
  .header_inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .header_logo {
    width: 54%;
    order: 1;
  }
  .header_logo_img {
    justify-content: start;
    gap: 0.5vw;
  }
  .header_logo_img img {
    width: 11vw;
    height: auto;
  }
  .header_center_text {
    margin-top: 1vw;
    width: 100%;
    order: 3;
  }
  .header_center_text_p {
  }
  .heaer_btns {
    order: 2;
    width: 45%;
    display: none;
  }
  .heade_link {
    font-size: 0.7rem;
    padding: 2.4vw 7vw 2.4vw 2.4vw;
    border-radius: 2vw;
  }
  .heade_link::after {
    line-height: 8.5vw;
    padding: 0.2vw 1vw;
    border-radius: 0 2vw 2vw 0;
  }

  /*============================
	#taxi_form
	============================*/
  #taxi_form {
    width: 100%;
    border: none;
  }
  .taxi_form_lists {
    padding: 0 5%;
  }
  .lists_top_padding {
    /* padding-top: 14.5vw; */
  }
  .taxi_form_lists_finger {
    width: 13vw;
    height: 14vw;
    top: 47%;
  }
  .taxi_form_steps {
    border-bottom: none;
    padding: 0;
  }
  .taxi_form_step_line {
    width: 85%;
    bottom: 0.8vw;
  }
  .taxi_form_step {
    width: 2.5vw;
    height: 2.5vw;
  }
  .taxi_form_step::before {
    top: -9vw;
    font-size: 3.3vw;
  }
  .taxi_form_step.active {
  }
  .taxi_form_step.active::before {
  }
  .taxi_form_step_img {
    width: 13.5vw;
    bottom: -1vw;
    left: 0;
  }

  .taxi_form_content_slider {
  }

  .taxi_form_content_title {
    margin: 5vw 0 2vw;
  }

  .taxi_form_content_btns {
    gap: 1.7vw;
  }

  .taxi_form_content_btn_label {
    font-size: 3.2vw;
    padding: 10px 5px;
  }

  .taxi_form_content_btn_label img {
    height: 10vw;
  }

  .taxi_form_content {
  }

  .question1 {
  }

  .btn_div {
  }

  .question1 .btn_div {
  }

  .taxi_form_licence_hidden_open_btn {
  }
  .taxi_form_licence_hidden_open_btn::after {
  }

  .taxi_form_licence_hidden {
    gap: 1.5vw;
  }

  .btn_div.half_btn {
  }

  .taxi_form_content_btns_top_text {
  }

  .taxi_form_licence_hidden.address_code {
  }

  .address_bottoms {
  }

  .address_bottoms_img {
  }
  .question7 .address_bottoms_img,
  .question8 .address_bottoms_img {
  }
  .address_bottoms_text {
    min-height: 40px;
    font-size: 2.6vw;
  }
  .address_bottoms_text::before {
  }

  .jobs_nearby {
  }

  .jobs_nearby_num {
  }

  .taxi_form_content_btns_top_text {
  }

  .taxi_form_content_btns_top_text.text_center {
  }

  .taxi_form_btns {
    padding: 0 0 6vw;
    border: none;
  }

  .taxi_form_btn_back {
    font-size: 1.1em;
  }

  .taxi_form_btn_next {
    border-radius: 2vw;
    font-size: 3vw;
    padding: 10px;
  }
  .taxi_form_btn_next.active {
  }

  .big_thanks {
    display: none;
  }

  .taxi_form_content:first-child {
    padding-top: 24vw;
  }

  /*============================
	#thanks
	============================*/
  #thanks {
    font-size: 2.7vw;
    line-height: 1.7;
    padding: 6vw 0;
  }
  .thanks_main {
    background-image: url(../img/tokyo_back_img.webp);
    background-position: -25vw;
    min-height: auto;
  }
  .information {
    width: 90%;
  }
  .thanks_h2 {
    margin-bottom: 3vw;
    font-size: 16px;
    line-height: 1.3;
  }
  .information_img {
    width: 90%;
    margin-top: 25px;
  }
  .information_qr {
  }
  .information_line {
    width: 60%;
  }

  /*============================
	#thenks_footer
	============================*/
  #thenks_footer {
  }
  .footer_flows {
    width: 90%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer_flow {
    padding: 2vw;
    width: 48%;
  }
  .step {
    font-size: 3.6vw;
    padding: 1vw;
  }
  .flow_text {
    font-size: 2.8vw;
    height: auto;
    padding: 2vw 0;
  }
  .flow_text p {
  }
  .footer_flow:first-child .step {
  }
  .footer_informationf {
  }
  .footer_information h2 {
    width: 50%;
  }
  .information_flex_text {
    font-size: 10px;
    width: 70%;
  }
  .footer_tel {
  }
  .footer_tel::before {
    width: 12px;
    height: 12px;
    left: -16px;
  }
  .information_flex_img {
    width: 13%;
  }

  /*============================
	#footer
	============================*/
  #footer {
  }

  .footer_center_text {
  }

  .slick-prev:before,
  .slick-next:before {
  }
  .address_img {
    margin-top: 30px;
  }
}
.telandtime {
  display: inline-flex;
  width: 60%;
  font-size: 18px;
}
.telandtime span:first-child {
  margin-right: 20px;
}
.pc_none {
  display: none;
}
@media screen and (max-width: 768px) {
  .telandtime {
    font-size: 10px;
  }
  .telandtime span:first-child {
    margin-right: 10px;
  }
  .pc_none {
    display: block;
  }
}
.purapori_back {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000000ad;
  width: 100vw;
  height: 100vh;
  display: none;
}
#purapori,
#purapori2 {
  display: none;
  padding: 30px;
  max-height: 450px;
  max-width: 900px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 9999;
  border-radius: 2px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  overflow-y: overlay;
  text-align: left;
  line-height: 27px;
  word-wrap: break-word;
  font-size: 16px;
  font-weight: 300;
  color: #37465a;
}
body.purapori_show {
  overflow: hidden;
}
#purapori {
}
#purapori2 {
}
.purapori_close {
  position: fixed;
  display: none;
  top: calc(50% - 225px);
  left: calc(50% + 440px);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 50%;
  text-align: center;
  line-height: 27px;
  font-size: 29px;
  z-index: 999999;
  cursor: pointer;
  color: #fff;
  border: solid 3px #fff;
}
@media screen and (max-width: 1280px) {
  .purapori_back {
  }
  #purapori,
  #purapori2 {
    max-width: 90vw;
    width: 90vw;
    height: 88vh;
    max-height: 88vh;
  }
  body.purapori_show {
  }
  #purapori {
  }
  #purapori2 {
  }
  .purapori_close {
  }
}
@media screen and (max-width: 768px) {
  .purapori_back {
  }
  #purapori,
  #purapori2 {
  }
  body.purapori_show {
  }
  #purapori {
  }
  #purapori2 {
  }
  .purapori_close {
    top: 13vw;
    left: 93vw;
    width: 35px;
    height: 35px;
    line-height: 19px;
  }
}
