@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  padding: 0;
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  outline: 0;
}

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  padding: 0;
  margin: 0;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  color: #000;
  text-decoration: none;
  background-color: #ff9;
}

/* change colours to suit your needs */
mark {
  font-style: italic;
  font-weight: bold;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #ccc;
}

input,
select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.6;
}

.link_btn {
  text-align: center;
}
.link_btn a {
  box-sizing: border-box;
  display: inline-block;
  min-width: 190px;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  border: 1px solid #000;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .link_btn a {
    font-size: 14px;
  }
}

@media screen and (min-width: 767px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}
* {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

html {
  font-size: 0.694vw;
  line-height: 1.6em;
  color: #222;
  letter-spacing: 0.005rem;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 767px) {
  html {
    font-size: 2.336vw;
  }
}

body {
  font-size: 1.6rem;
}
body p,
body h1,
body h2,
body h3,
body h4 {
  line-height: 1.6;
}

.close_annotation {
  padding: 10px;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  background-color: black;
}

nav {
  background-color: #fff;
}
nav h1 {
  position: relative;
}
nav h1 img {
  position: absolute;
  top: 3rem;
  left: 6rem;
  width: 22.8rem;
  cursor: pointer;
  transition: 0.8s;
}
nav .nav_for_pc {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
}
nav .nav_for_pc li {
  margin: 0 20px;
}
nav .nav_for_pc li a {
  font-size: 1.4rem;
  font-weight: 400;
  color: #000;
}
nav .nav_for_pc li a.to_apply {
  color: #568fae;
}
nav .nav_for_pc li a.disabled {
  color: #aaa;
  pointer-events: none;
}
nav.header_fixed {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
nav.header_fixed h1 img {
  top: 1rem;
  left: 6rem;
  width: 13rem;
}
@media (max-width: 767px) {
  nav {
    position: fixed;
    bottom: 0 !important;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
  }
  nav .nav_for_pc {
    display: none;
  }
  nav .nav_toggle {
    position: absolute;
    z-index: 101;
    width: 30%;
  }
  nav .nav_toggle::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    content: "";
    background-image: url("../images/menu_close.svg");
    opacity: 0;
    transition: 0.3s;
  }
  nav .nav_toggle::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    content: "";
    background-image: url("../images/menu_open.svg");
    transition: 0.3s;
  }
  nav .nav_toggle.open::before {
    opacity: 1;
    transform: rotate(90deg);
  }
  nav .nav_toggle.open::after {
    opacity: 0;
    transform: rotate(90deg);
  }
  nav .nav_for_sp {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
  }
  nav .nav_for_sp h1 {
    width: 100%;
    margin-top: 8rem;
    text-align: center;
  }
  nav .nav_for_sp h1 img {
    position: unset;
    width: 15rem;
  }
  nav .nav_for_sp ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 60vh;
  }
  nav .nav_for_sp ul li {
    margin: 10px;
  }
  nav .nav_for_sp ul li a {
    font-size: 20px;
    color: #000;
  }
  nav .nav_for_sp ul li a.to_apply {
    color: #568fae;
  }
  nav .nav_for_sp ul li a.disabled {
    color: #aaa;
    pointer-events: none;
  }
  nav .apply_btn {
    z-index: 101;
    flex: 1;
    text-align: center;
  }
  nav .apply_btn a {
    padding: 1rem 1.5rem;
    color: #fff;
    background-color: #568fae;
    border-radius: 5px;
  }
  nav .apply_btn.disabled a {
    background-color: #aaa;
    pointer-events: none;
  }
  nav .sns_list {
    z-index: 101;
    display: flex;
    justify-content: flex-end;
    width: 30%;
  }
  nav .sns_list li {
    margin: 0 5px;
  }
  nav.header_fixed {
    position: fixed;
    top: unset !important;
    bottom: 0 !important;
  }
}

.main_visual {
  padding-bottom: 3rem;
}
.main_visual.header_fixed {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .main_visual.header_fixed {
    margin-top: 0;
  }
}
.main_visual img {
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
}
@media (max-width: 767px) {
  .main_visual {
    margin-top: 3rem;
  }
}

.about {
  padding: 8.4rem 0;
  overflow: hidden;
  background: #eee;
}
.about .about_inner {
  width: 69.4vw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .about .about_inner {
    width: 100%;
  }
}
.about h2 {
  margin-bottom: 1.6rem;
  font-size: 4.2rem;
}
@media (max-width: 767px) {
  .about h2 {
    padding: 0 1.5rem;
    font-size: 2.4rem;
  }
}
.about .about_description {
  margin-bottom: 4rem;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .about .about_description {
    padding: 0 0 0 1.5rem;
    font-size: 1.5rem;
    font-weight: normal;
  }
}
.about .about_detail {
  position: relative;
  margin-bottom: 0.7rem;
}
.about .about_detail > img {
  width: 45.8vw;
}
.about .about_detail .detail_text {
  position: absolute;
}
.about .about_detail .detail_text h3 {
  margin-bottom: 3rem;
  font-size: 2.9rem;
}
.about .about_detail .detail_text p {
  line-height: 1.8;
}
.about .about_detail .about_detail_credit {
  font-size: 1.2rem;
  margin-right: 1rem;
}
.about .about_detail.goen .detail_text {
  top: 4rem;
  right: 1rem;
}
.about .about_detail.pairing {
  text-align: right;
}
.about .about_detail.pairing .detail_text {
  top: 4rem;
  left: 3rem;
  text-align: left;
}
.about .about_detail.pairing .detail_text p {
  width: 30rem;
}
.about .about_detail.shokuzai .detail_text {
  top: 4rem;
  right: 1.5rem;
}
.about .about_detail.shokuzai p {
  width: 38rem;
  padding-left: 7rem;
}
.about .about_detail.remote {
  margin-bottom: 12.1rem;
  text-align: right;
}
.about .about_detail.remote .detail_text {
  top: 4rem;
  left: 3rem;
  text-align: left;
}
.about .about_detail.remote .detail_text img {
  width: 17.6vw;
}
@media (max-width: 767px) {
  .about .about_detail {
    margin-bottom: 0;
  }
  .about .about_detail > img {
    width: 55.8vw;
  }
  .about .about_detail .detail_text {
    position: absolute;
  }
  .about .about_detail .detail_text h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  .about .about_detail .detail_text p {
    width: 16rem;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .about .about_detail.goen .detail_text {
    top: 3rem;
    right: 1rem;
  }
  .about .about_detail.pairing {
    text-align: right;
  }
  .about .about_detail.pairing .detail_text {
    top: 3rem;
    left: 3rem;
    text-align: left;
  }
  .about .about_detail.pairing .detail_text p {
    width: 23rem;
  }
  .about .about_detail.shokuzai .detail_text {
    top: 3rem;
    right: 1rem;
  }
  .about .about_detail.shokuzai p {
    width: 23rem;
    padding-left: 7rem;
  }
  .about .about_detail.remote {
    margin-bottom: 12.1rem;
    text-align: right;
  }
  .about .about_detail.remote .detail_text {
    top: 4rem;
    left: 1.5rem;
    text-align: left;
  }
  .about .about_detail.remote .detail_text img {
    width: 17.6vw;
  }
  .about .about_detail.remote .detail_text p {
    width: 14rem;
  }
}
.about .secret_box {
  position: relative;
  display: flex;
  width: 90%;
  margin: 0 auto;
  border: 1px solid #a7a5a5;
}
.about .secret_box > img {
  width: 33.9rem;
}
.about .secret_box .secret_box_detail {
  padding-top: 4.6rem;
  padding-left: 3.5rem;
}
.about .secret_box .secret_box_detail h3 {
  margin-bottom: 2.9rem;
}
.about .secret_box .secret_box_detail h3 img {
  width: 38.5rem;
}
.about .secret_box .box {
  position: absolute;
  right: -66px;
  bottom: -88px;
}
.about .secret_box .box img {
  width: 22.9rem;
}
.about .secret_box .secret_box_annotation {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .about .secret_box {
    flex-direction: column;
    width: 33.9rem;
  }
  .about .secret_box > img {
    width: 100%;
  }
  .about .secret_box .secret_box_detail {
    padding-top: 1.8rem;
    padding-bottom: 5.7rem;
    padding-left: 1.1rem;
  }
  .about .secret_box .secret_box_detail h3 {
    margin-bottom: 1rem;
  }
  .about .secret_box .secret_box_detail h3 img {
    width: 90%;
  }
  .about .secret_box .box {
    position: absolute;
    right: -66px;
    bottom: -88px;
  }
  .about .secret_box .box img {
    width: 158px;
  }
  .about .secret_box .secret_box_annotation {
    position: absolute;
    bottom: -2rem;
    left: 0;
    font-size: 1.2rem;
  }
}

.travel_content {
  padding: 8.4rem 0;
}
@media (max-width: 767px) {
  .travel_content {
    padding: 2rem 0 6rem;
  }
}
.travel_content .travel_content_inner {
  position: relative;
  width: 104.8rem;
  margin: 0 auto;
}
.travel_content .travel_content_inner h2 {
  margin-bottom: 6rem;
  font-size: 5rem;
}
.travel_content .travel_content_inner .travel_content_description {
  margin-bottom: 15.8rem;
  line-height: 1.9;
}
.travel_content .travel_content_inner hr {
  width: 40.2rem;
  margin: 3.2rem 0;
}
.travel_content .travel_content_inner h3 {
  margin-bottom: 0.6rem;
}
.travel_content .travel_content_inner h2.apply {
  width: 100%;
  padding: 6.5rem 0;
  margin-top: 14.8rem;
  font-size: 3rem;
  line-height: 1.8;
  text-align: center;
  border-top: 1px solid #a7a5a5;
}
.travel_content .travel_content_inner .apply_area {
  display: flex;
  justify-content: space-between;
  margin-bottom: 13.9rem;
}
.travel_content .travel_content_inner .apply_area > div p {
  line-height: 100%;
}
.travel_content .travel_content_inner .apply_area .apply_detail_left {
  width: 48%;
  color: #568fae;
}
.travel_content .travel_content_inner .apply_area .apply_detail_left .limit {
  margin-bottom: 2.8rem;
  font-size: 3rem;
  font-weight: 500;
}
.travel_content .travel_content_inner .apply_area .apply_detail_left .limit span {
  font-size: 3.6rem;
}
.travel_content .travel_content_inner .apply_area .apply_detail_left .plan_copy {
  margin-bottom: 1.8rem;
  font-size: 2rem;
  font-weight: 700;
}
.travel_content .travel_content_inner .apply_area .apply_detail_left .plan_title {
  margin-bottom: 1.8rem;
  font-size: 3.8rem;
  font-weight: bold;
}
.travel_content .travel_content_inner .apply_area .apply_detail_left .plan_time {
  font-size: 2rem;
}
.travel_content .travel_content_inner .apply_area .apply_detail_right .plan_price {
  margin-bottom: 2.2rem;
  font-size: 2rem;
  font-weight: bold;
}
.travel_content .travel_content_inner .apply_area .apply_detail_right .plan_price span {
  font-size: 1.6rem;
}
.travel_content .travel_content_inner .apply_area .apply_detail_right .plan_box {
  margin-bottom: 4.4rem;
  font-size: 2rem;
  font-weight: bold;
}
.travel_content .travel_content_inner .apply_area .apply_detail_right .apply_btn {
  display: block;
  width: 38.6rem;
  padding: 3.8rem 4.4rem;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  background-color: #568fae;
  border-radius: 5px;
}
.travel_content .travel_content_inner .apply_area .apply_detail_right .apply_btn.disabled {
  background-color: #ccc;
  pointer-events: none;
  line-height: 1.2;
  font-size: 1.6rem;
  padding: 1rem 1rem;
  width: 60%;
}
.travel_content .travel_content_inner .apply_area .apply_detail_right .plan_annotation {
  margin-top: 1rem;
  font-size: 1rem;
}
.travel_content .travel_content_inner .map {
  position: absolute;
  top: 9rem;
  right: 0;
  width: 50rem;
}
@media (max-width: 767px) {
  .travel_content .travel_content_inner {
    width: 100%;
    padding: 3rem 1.6rem;
  }
  .travel_content .travel_content_inner h2 {
    margin-bottom: 3rem;
    font-size: 2rem;
    line-height: 2rem;
  }
  .travel_content .travel_content_inner .travel_content_description {
    margin-bottom: 3.8rem;
    font-size: 1.3rem;
    line-height: 2.8rem;
  }
  .travel_content .travel_content_inner hr {
    width: 100%;
    margin: 3.6rem 0;
  }
  .travel_content .travel_content_inner h3 {
    margin-bottom: 0.6rem;
  }
  .travel_content .travel_content_inner h2.apply {
    padding: 3.6rem;
    margin-top: 3.6rem;
    margin-bottom: 0;
    font-size: 2rem;
  }
  .travel_content .travel_content_inner .apply_area {
    flex-direction: column;
    margin-bottom: 5.6rem;
  }
  .travel_content .travel_content_inner .apply_area > div p {
    line-height: 100%;
  }
  .travel_content .travel_content_inner .apply_area .apply_detail_left {
    width: 100%;
    margin-bottom: 2rem;
  }
  .travel_content .travel_content_inner .apply_area .apply_detail_left .limit {
    margin-bottom: 1.2rem;
    font-size: 2.4rem;
  }
  .travel_content .travel_content_inner .apply_area .apply_detail_left .limit span {
    font-size: 3rem;
  }
  .travel_content .travel_content_inner .apply_area .apply_detail_left .plan_copy {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
  }
  .travel_content .travel_content_inner .apply_area .apply_detail_left .plan_title {
    margin-bottom: 1.2rem;
    font-size: 3rem;
  }
  .travel_content .travel_content_inner .apply_area .apply_detail_left .plan_time {
    font-size: 1.6rem;
  }
  .travel_content .travel_content_inner .apply_area .apply_detail_right .plan_price {
    margin-bottom: 2.2rem;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.4;
  }
  .travel_content .travel_content_inner .apply_area .apply_detail_right .plan_price span {
    font-size: 1.6rem;
  }
  .travel_content .travel_content_inner .apply_area .apply_detail_right .plan_box {
    margin-bottom: 2.4rem;
    font-size: 2rem;
    font-weight: bold;
  }
  .travel_content .travel_content_inner .apply_area .apply_detail_right .apply_btn {
    width: 30.5rem;
    padding: 3rem 4rem;
    font-size: 2.4rem;
  }
  .travel_content .travel_content_inner .map {
    top: 17.5rem;
    right: 0;
    width: 32.8rem;
  }
}
.travel_content .travel_content_photo {
  width: 100%;
}

.live_video {
  padding: 8.4rem 0;
  background: #dce4e4;
}
.live_video .live_video_inner {
  display: flex;
  width: 104.8rem;
  margin: 0 auto;
}
.live_video .live_video_photo {
  width: 64.2rem;
}
.live_video .live_video_detail {
  padding-left: 4.2rem;
}
@media (max-width: 767px) {
  .live_video {
    padding: 4.8rem 0;
  }
  .live_video .live_video_inner {
    flex-direction: column;
    width: 100%;
    padding: 0 2.4rem;
  }
  .live_video .live_video_photo {
    width: 100%;
  }
  .live_video .live_video_detail {
    padding-left: 0;
    margin-top: 2.5rem;
  }
  .live_video .live_video_detail img {
    width: 70%;
  }
}

.how_to {
  padding: 8.4rem 0;
}
@media (max-width: 767px) {
  .how_to {
    padding: 5rem 0;
  }
}
.how_to .how_to_inner {
  width: 104.8rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .how_to .how_to_inner {
    width: 100%;
  }
}
.how_to h2 {
  margin-bottom: 4rem;
  font-size: 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .how_to h2 {
    font-size: 2.5rem;
  }
}
.how_to .how_to_detail {
  display: flex;
  padding: 4.2rem 0;
  border-top: 1px solid #a7a5a5;
}
.how_to .how_to_detail h3 {
  width: 30.3rem;
}
.how_to .how_to_detail .how_to_detail_text {
  flex: 1;
}
@media (max-width: 767px) {
  .how_to .how_to_detail {
    flex-direction: column;
    padding: 2.8rem;
  }
  .how_to .how_to_detail h3 {
    margin-bottom: 2.8rem;
  }
  .how_to .how_to_detail .how_to_detail_text {
    flex: 1;
  }
  .how_to .how_to_detail.annotation h3 {
    display: none;
  }
}
.how_to .term {
  padding: 4.5rem 3.6rem;
  background: #eee;
}
.how_to .term h2 {
  margin-bottom: 3.3rem;
  font-size: 2.4rem;
}
.how_to .term .term_detail {
  padding: 3.5rem 2.4rem 0.5rem;
  font-size: 1.4rem;
  border: 1px solid #ccc;
}
.how_to .term .term_detail p {
  margin-bottom: 2rem;
}
.how_to .term .term_detail a {
  color: black;
  word-break: break-all;
}
@media (max-width: 767px) {
  .how_to .term .term_detail {
    height: 75vh;
    overflow: scroll;
  }
}

.link_area {
  width: 104.8rem;
  margin: 2rem auto 3rem;
}
.link_area img {
  width: 100%;
}
@media (max-width: 767px) {
  .link_area {
    width: 38rem;
    margin: 2rem auto;
  }
}

.before_contents {
  width: 104.8rem;
  margin: 0 auto 13.7rem;
}
.before_contents h2 {
  margin: 6rem 0;
  font-size: 2.4rem;
  font-weight: normal;
  text-align: center;
}
.before_contents h2 span {
  font-weight: bold;
}
.before_contents ul li {
  margin-bottom: 1.6rem;
}
.before_contents ul li a {
  display: flex;
  color: #000;
}
.before_contents ul li a img {
  width: 46.5rem;
}
.before_contents ul li a .before_contents_detail {
  flex: 1;
  padding: 3.7rem;
}
.before_contents ul li a .before_contents_detail .before_contents_title {
  margin-bottom: 1rem;
  font-weight: bold;
}
.before_contents ul li a .before_contents_detail .before_contents_title span {
  font-weight: normal;
}
@media (max-width: 767px) {
  .before_contents {
    box-sizing: border-box;
    width: 100%;
    padding: 0 2.4rem;
    margin: 0;
  }
  .before_contents ul li a {
    flex-direction: column;
  }
  .before_contents ul li a img {
    width: 100%;
  }
  .before_contents ul li a .before_contents_detail {
    padding: 2rem 0.5rem 3.7rem;
  }
  .before_contents ul li a .before_contents_detail .before_contents_title {
    margin-bottom: 1rem;
    font-weight: bold;
  }
  .before_contents ul li a .before_contents_detail .before_contents_title span {
    font-weight: normal;
  }
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 50px 30px;
  background-color: black;
}
footer .sns_area {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
}
footer .sns_area p {
  margin-right: 20px;
  color: #fff;
}
footer .sns_area a {
  margin-right: 10px;
}
footer .lumine_logo {
  text-align: center;
}
footer .lumine_logo p {
  margin-top: 20px;
  font-size: 12px;
  color: #9f9f9f;
}
footer .page_top {
  color: #fff;
}
footer .page_top p a {
  color: #fff;
}
footer .page_top p a::before {
  display: inline-block;
  margin-right: 5px;
  content: ">";
  transform: rotate(-90deg);
}
@media (max-width: 767px) {
  footer {
    position: relative;
    margin-bottom: 7rem;
  }
  footer .sns_area {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  footer .page_top {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  footer .lumine_logo {
    width: 100%;
    margin-top: 40px;
  }
}


.close_txt p {
    font-size: 1.8rem;
    line-height: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 5rem;
    padding: 1rem 0;
    text-align: center;
    letter-spacing: 0;
    color: #fff;
    background: #000;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

@media (max-width: 767px) {
  .close_txt p {
      font-size: 1.6rem;
      line-height: 1.4em;
      height: 7rem;
      padding: 0.85333rem 0;
      letter-spacing: 0;
  }
}

/*# sourceMappingURL=master.css.map */
