html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

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

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1.4em;
}

.btn_def {
  display: block;
  margin: auto;
  width: 130px;
  height: 40px;
  border: 0;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  background-color: rgb(7, 70, 245);
  transition: 0.2s;
  outline: none;
  cursor: pointer;
}

.btn_def:hover {
  background-color: rgb(0, 52, 121);
}

.btn_submit {
  display: block;
  width: 130px;
  height: 40px;
  border: 0;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  background-color: rgb(129, 128, 189);
  transition: 0.3s;
  outline: none;
  cursor: pointer;
}

.btn_submit:hover {
  filter: brightness(120%);
  color: yellow;
}

body {
  background-color: rgb(15, 15, 15);
  color: rgb(214, 214, 214);
}

a {
  color: rgb(214, 214, 214);
}

a:hover {
  opacity: 0.8;
  transition: 0.2s;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: auto;
  padding-top: 100px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding-top: 80px;
  }
}

.header {
  width: 100%;
  height: 80px;
  background-color: rgba(24, 24, 24, 0.8);
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}
.header .header_inner {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
}
.header .header_inner .header_l {
  width: 70%;
  height: 100%;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .header .header_inner .header_l {
    width: 85%;
  }
}
.header .header_inner .header_l .header_logo {
  height: 100%;
  margin-left: 10px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
.header .header_inner .header_l .header_logo a {
  height: 60px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .header .header_inner .header_l .header_logo a {
    height: 40px;
  }
}
.header .header_inner .header_l .header_logo img {
  height: 100%;
}
@media screen and (min-width: 500px) {
  .header .header_inner .header_l .title_bar {
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.header .header_inner .header_l .header_title {
  font-size: 2.4rem;
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .header .header_inner .header_l .header_title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .header .header_inner .header_l .header_title {
    font-size: 1.4rem;
  }
}
.header .header_inner .header_l .site_title {
  margin-left: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .header .header_inner .header_l .site_title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  .header .header_inner .header_l .site_title {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .header .header_inner .header_l .site_title {
    font-size: 1.2rem;
  }
}
.header .header_inner .header_menu {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  width: 30%;
}
.header .header_inner .header_menu .menu_item {
  margin-left: 40px;
}
@media screen and (max-width: 1024px) {
  .header .header_inner .header_menu .menu_item {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header .header_inner .header_menu {
    display: none;
  }
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 15px;
  top: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: rgb(214, 214, 214);
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

.hamburger.active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}
.hamburger.active span {
  background: rgb(214, 214, 214);
}

.hamburger.active span:nth-child(2) {
  width: 0px;
}

.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(4px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-16px) rotate(90deg);
}

nav.sp_menu {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #cfcfcf;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.9s;
  width: 100%;
  padding-top: 30px;
  background-color: rgba(65, 65, 65, 0.8);
}

nav.sp_menu ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.sp_menu ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #cfcfcf;
}

nav.sp_menu ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.sp_menu ul li:hover {
  background: #747474;
}

nav.sp_menu ul li a {
  display: block;
  color: #cfcfcf;
  font-weight: bold;
  padding: 1em 0;
  text-decoration: none;
}

nav.sp_menu ul li a:hover {
  color: #000000;
}

nav.sp_menu.active {
  transform: translateY(0%);
}

@media screen and (min-width: 768px) {
  .form_area {
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .form_area .form_inner {
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.form_area .form_inner * {
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .form_area .form_inner > div {
    padding: 10px 5px 0 0;
    font-size: 2.2rem;
  }
}
.form_area .place_select {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .form_area .place_select div > select {
    font-size: 2.4rem;
    margin-left: 5px;
    display: block;
    margin-top: 5px;
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .form_area .form_inner > div > select {
    font-size: 2.4rem;
    margin-left: 5px;
  }
}
.form_area .inner_day {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
}
.form_area .today_btn_area {
  display: flex;
}
@media screen and (max-width: 767px) {
  .form_area .btn_select {
    margin-top: 20px;
  }
}

.today_send {
  margin: 0 0 0 5px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .today_send {
    margin: 20px auto 0 50px;
  }
  .today_send a {
    font-size: 1.4rem;
  }
}
.today_send a {
  color: rgb(255, 255, 255);
  margin-right: 0 !important;
}

.day_send {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .day_send {
    font-size: 2rem;
  }
}

.arrow_icon {
  color: rgb(205, 211, 150);
  margin: 0 10px 0 10px;
}

.arrow_icon:hover {
  transition: 0.2s;
  opacity: 0.8;
}

.file_err {
  margin-top: 10px;
  color: rgb(255, 78, 167);
}

.current_place_text {
  margin-top: 20px;
}
.current_place_text .area_text {
  font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .current_place_text .area_text {
    font-size: 1.8rem;
  }
}
.current_place_text .place_text {
  font-size: 3.2rem;
}
@media screen and (max-width: 1024px) {
  .current_place_text .place_text {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .current_place_text .place_text {
    font-size: 2rem;
  }
}

.today_tide_area {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px;
  width: 100%;
}
.today_tide_area .today_tide_data {
  width: 20%;
}
@media screen and (min-width: 768px) {
  .today_tide_area .today_tide_data {
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.today_tide_area .today_moon_image {
  width: 60px;
}
@media screen and (max-width: 767px) {
  .today_tide_area .today_moon_image {
    margin: auto;
  }
}
.today_tide_area .today_moon_image img {
  width: 100%;
}
.today_tide_area .target_tide {
  font-size: 3.2rem;
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .today_tide_area .target_tide {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .today_tide_area .target_tide {
    margin: 10px 0 0 0;
    text-align: center;
  }
}

.today_tide_sun_area {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .today_tide_sun_area {
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-start;
  }
}

.today_tide {
  padding-left: 20px;
}
.today_tide .tide_data {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .today_tide .tide_data {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .today_tide .tide_data {
    margin-top: 5px;
    border-left: solid 1px rgb(214, 214, 214);
    border-right: solid 1px rgb(214, 214, 214);
    border-top: solid 1px rgb(214, 214, 214);
    border-bottom: solid 1px rgb(214, 214, 214);
  }
}
.today_tide .tide_data_max {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.today_tide .tide_data_min {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.today_tide .data_head {
  width: 30%;
  min-width: 40px;
  padding-top: 10px;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .today_tide .data_head {
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-start;
    width: 20%;
    height: 80px;
    padding-top: 0;
    margin-left: 10px;
  }
}
.today_tide .data_section {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .today_tide .data_section {
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.today_tide .data_body {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .today_tide .data_body {
    height: 100%;
    width: 100%;
  }
}
.today_tide .data_datail {
  width: 100%;
  min-width: 100px;
  text-align: right;
  padding-top: 10px;
}
@media screen and (max-width: 1024px) {
  .today_tide .data_datail {
    min-width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .today_tide .data_datail {
    width: 100%;
    height: 40px;
    min-width: 60px;
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-end;
    border-left: solid 1px rgb(214, 214, 214);
    padding-top: 5px;
    padding-right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .today_tide .scd_body {
    border-top: dashed 1px rgb(214, 214, 214);
    background-color: rgb(40, 40, 40);
  }
}

.today_sun {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .today_sun {
    margin-top: 20px;
  }
}
.today_sun .sun_time {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 2.4rem;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .today_sun .sun_time {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .today_sun .sun_time {
    border-bottom: solid 1px rgb(214, 214, 214);
  }
}
.today_sun .sun_time .data_head {
  width: 100%;
  min-width: 60px;
}
@media screen and (max-width: 767px) {
  .today_sun .sun_time .data_head {
    min-width: 80px;
  }
}
.today_sun .sun_time .data_datail {
  width: 100%;
  min-width: 100px;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .today_sun .sun_time .data_datail {
    width: 80px;
  }
}

.weather_today {
  margin: 20px 0 40px 0;
}

.weather_place_text {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .weather_place_text {
    font-size: 1.8rem;
  }
}

.today_main {
  width: 100%;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  justify-content: left;
  align-items: center;
}
.today_main .today_temp {
  font-size: 3.2rem;
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .today_main .today_temp {
    font-size: 2.8rem;
  }
}
.today_main .today_description {
  font-size: 2.4rem;
  min-width: 80px;
}
@media screen and (max-width: 1024px) {
  .today_main .today_description {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .today_main .today_description {
    font-size: 1.8rem;
  }
}
.today_main .today_detail {
  width: 50%;
  font-size: 2.4rem;
  margin-left: 10%;
}
@media screen and (min-width: 768px) {
  .today_main .today_detail {
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-start;
    width: 60%;
    margin-left: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .today_main .today_detail {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .today_main .today_detail {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}
.today_main .today_detail div {
  flex: 1;
}
.today_main .today_detail .max_temp {
  color: rgb(250, 64, 142);
}
.today_main .today_detail .min_temp {
  color: rgb(0, 140, 255);
}
.today_main .today_icon {
  margin-right: 20px;
  width: 20%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .today_main .today_icon {
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.today_main .today_icon img {
  width: 60px;
}

.weather_week {
  margin-top: 40px;
}
.weather_week .weather_daily {
  display: flex;
  border: 1px solid rgb(214, 214, 214);
  margin-bottom: -1px;
}
.weather_week .daily_title {
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgb(214, 214, 214);
}
@media screen and (max-width: 1024px) {
  .weather_week .daily_title {
    width: 80px;
    min-width: 80px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .weather_week .daily_title {
    width: 60px;
    min-width: 60px;
  }
}

.hour_detail {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hour_detail {
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-start;
  }
}

.hour_block {
  font-size: 14px;
  text-align: center;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .hour_block {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .hour_block {
    width: 100%;
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.hour_block div {
  margin-top: 5px;
  flex: 1;
}
.hour_block img {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .hour_block img {
    width: 30px;
  }
}

.graph_sns_btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
}

.share_area_btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
.share_area_btn li {
  margin: 0 20px 0 20px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .share_area_btn li {
    margin: 0 10px 0 10px;
  }
}
.share_area_btn li :hover {
  transition: 0.3s;
  filter: brightness(110%);
  margin-top: -5px;
}
.share_area_btn .facebook a {
  color: #1778f2;
}
.share_area_btn .twitter a {
  color: #1da1f2;
}
.share_area_btn .line {
  font-size: 2.7rem;
}
.share_area_btn .line a {
  color: #00b900;
}

@media screen and (max-width: 767px) {
  .chart_section {
    margin-top: 30px;
  }
}

.graph_on {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 10px 0;
}

.chart_area {
  background: linear-gradient(359deg, #000000, #00003b);
}

.month_header {
  background-color: rgb(15, 15, 15);
  position: sticky;
  top: 80px;
}
@media screen and (max-width: 767px) {
  .month_header {
    top: 55px;
  }
}

.month_tide_title {
  font-size: 2rem;
  margin-top: 40px;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .month_tide_title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

.month_send {
  max-width: 1000px;
  margin: 0;
  padding: 10px 0 5px 0;
  font-size: 2rem;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .month_send {
    font-size: 1.6rem;
    max-width: 695px;
  }
}

.month_tide_table {
  max-width: 1200px;
  border-collapse: collapse;
  border-bottom: solid 1px rgb(214, 214, 214);
}

.month_table_head th {
  position: sticky;
  top: 150px;
  height: 35px;
  background-color: rgb(15, 15, 15);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .month_table_head th {
    top: 135px;
  }
}

.month_table_head th::before {
  content: "";
  position: absolute;
  width: 99.5%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid rgb(214, 214, 214);
  margin: 0 0 0 -1px;
  background-color: rgb(25, 34, 39);
  z-index: -1;
}

.month_tide_table th {
  vertical-align: middle;
  text-align: center;
}

.month_tide_table td {
  vertical-align: middle;
  text-align: center;
  border-left: solid 1px rgb(214, 214, 214);
  border-right: solid 1px rgb(214, 214, 214);
}

.fst_step {
  border-top: solid 1px rgb(214, 214, 214);
}

.sec_step {
  border-top: dashed 1px rgb(214, 214, 214);
  background-color: rgb(40, 40, 40);
}

.month_tide_table th {
  width: 150px;
}
@media screen and (max-width: 767px) {
  .month_tide_table th {
    width: 100px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 380px) {
  .month_tide_table th {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .month_tide_table td {
    font-size: 1.2rem;
  }
}

.month_day_th {
  width: 100px !important;
}
@media screen and (max-width: 767px) {
  .month_day_th {
    width: 80px !important;
  }
}

.month_moon_image {
  width: 50px;
  min-width: 20px;
}
.month_moon_image img {
  width: 100%;
}

.caution h3 {
  margin: 40px 0 10px 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .caution p {
    font-size: 1.2rem;
  }
}

.print_area {
  position: fixed;
  display: -webkit-flex;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.1s;
  z-index: -1;
  opacity: 0;
}
.print_area .print_inner {
  position: fixed;
  background-color: #ffffff;
  margin-top: 40px;
  width: 95%;
  max-width: 210mm;
  max-height: 100%;
  overflow: auto;
}
.print_area .print_inner .print_header {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
}
.print_area .print_inner .print_header .print_title {
  color: black;
  font-size: 2rem;
  margin: 0 auto 0 20px;
}
@media screen and (max-width: 767px) {
  .print_area .print_inner .print_header .print_title {
    font-size: 1.2rem;
  }
}
.print_area .print_inner .print_header .print_menu {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 3rem;
  color: rgb(2, 2, 2);
}
@media screen and (max-width: 767px) {
  .print_area .print_inner .print_header .print_menu {
    font-size: 2rem;
  }
}
.print_area .print_inner .print_header .print_menu li {
  cursor: pointer;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .print_area .print_inner .print_header .print_menu li {
    margin-left: 20px;
  }
}
.print_area .print_inner .print_header .print_menu li :hover {
  opacity: 0.8;
}
.print_area .print_inner .print_header .print_menu .down_btn {
  color: rgb(0, 136, 61);
}
.print_area .print_inner .print_header .print_menu .print_btn {
  color: #00459e;
}
.print_area .print_inner .print_header .print_menu .cancel_btn {
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .print_area .print_inner .print_header .print_menu .cancel_btn {
    margin-left: 30px;
  }
}
.print_area .print_inner .print_body {
  color: black;
  width: 100%;
  max-width: 200mm;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 10px auto 60px auto;
  border-collapse: collapse;
  border-right: solid 1px rgb(0, 0, 0);
  border-top: solid 1px rgb(0, 0, 0);
  border-bottom: solid 1px rgb(0, 0, 0);
  page-break-after: always;
}
@media screen and (max-width: 767px) {
  .print_area .print_inner .print_body {
    width: 95%;
  }
}
.print_area .print_inner .print_body tr {
  background-color: white;
}
.print_area .print_inner .print_body th,
.print_area .print_inner .print_body td {
  vertical-align: middle;
  text-align: center;
  border-left: solid 1px rgb(0, 0, 0);
}
.print_area .print_inner .print_body .fst_step {
  border-top: solid 1px rgb(0, 0, 0);
}
.print_area .print_inner .print_body .sec_step {
  border-top: dashed 1px rgb(7, 7, 7);
  background-color: rgb(235, 255, 255);
}
.print_area .print_inner .print_body .body_image {
  width: 25px;
  min-width: 20px;
}
.print_area .print_inner .print_body .body_image img {
  width: 100%;
}
.print_area .print_inner .print_body td {
  background-color: white;
}

.down_tip {
  position: absolute;
  right: 160px;
  top: 5px;
  padding: 6px 10px;
  background: #01579B;
  color: #FFF;
  font-size: 1.2rem;
  border-radius: 10px;
  transition: 0.5s;
  opacity: 0;
}

.down_tip:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 16px;
  border: 5px solid transparent;
  border-top: 14px solid #01579B;
}

@media screen and (min-width: 768px) {
  .pop_down_text :hover + .down_tip {
    opacity: 0.8;
  }
}
.print_tip {
  position: absolute;
  right: 105px;
  top: 5px;
  padding: 6px 10px;
  background: #01579B;
  color: #FFF;
  font-size: 1.2rem;
  border-radius: 10px;
  transition: 0.5s;
  opacity: 0;
}

.print_tip:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 16px;
  border: 5px solid transparent;
  border-top: 14px solid #01579B;
}

@media screen and (min-width: 768px) {
  .pop_print_text :hover + .print_tip {
    opacity: 0.8;
  }
}
.pop {
  opacity: 1;
  z-index: 3;
}

.print_pop {
  width: 100px;
  margin: 0 0 0 auto;
  font-size: 2.8rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .print_pop {
    width: 80px;
    font-size: 2rem;
    margin: 0 10px 0 auto;
  }
}
.print_pop .pop_btn_area {
  position: relative;
}
.print_pop .tooltip {
  position: absolute;
  bottom: 4.5rem;
  right: 0px;
  padding: 6px 10px;
  background: #01579B;
  color: #FFF;
  font-size: 1.4rem;
  border-radius: 10px;
  transition: 0.5s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .print_pop .tooltip {
    opacity: 1;
    bottom: 3rem;
    font-size: 1.2rem;
  }
}
.print_pop .tooltip:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 16px;
  border: 5px solid transparent;
  border-top: 14px solid #01579B;
}
.print_pop .black {
  background: #000000;
}
.print_pop .black:after {
  border-top-color: #000000;
}
.print_pop .pop_btn {
  cursor: pointer;
  color: rgb(183, 212, 255);
}
.print_pop .pop_btn :hover + .tooltip {
  opacity: 1;
}

.other_area {
  margin-top: 20px;
  margin-left: 10px;
}
.other_area a {
  color: #adcefa;
  border-bottom: 1px solid;
}

.other_title {
  margin-top: 20px;
}

.other_place {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 10px;
}
.other_place li {
  margin: 5px 10px;
}
.other_place li :hover {
  filter: brightness(200%);
}
.other_place li a {
  color: #adcefa;
  border-bottom: 1px solid;
}

.footer {
  height: 100px;
  margin-top: 60px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  background-color: #181818;
}

.list_body {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .list_body {
    margin-top: 10px;
  }
}

.main_list {
  border-collapse: collapse;
  border-top: solid 1px rgb(214, 214, 214);
  border-left: solid 1px rgb(214, 214, 214);
  border-right: solid 1px rgb(214, 214, 214);
  margin-top: 10px;
}

.list_area {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: solid 1px rgb(214, 214, 214);
}
.list_area span {
  width: 10%;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .list_area span {
    width: 20%;
  }
}

.list_place {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  width: 90%;
  flex-wrap: wrap;
  border-left: double rgb(214, 214, 214);
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .list_place {
    width: 80%;
  }
}
.list_place li {
  padding: 12px;
}
@media screen and (max-width: 767px) {
  .list_place li {
    padding: 10px;
  }
}
.list_place li a {
  color: #adcefa;
}
.list_place li a:hover {
  color: rgb(236, 255, 68);
}

.service_container h1 {
  font-size: 2rem;
}
.service_container h2 {
  font-size: 1.8rem;
  padding: 10px 0;
}
.service_container p {
  padding: 10px 0;
}

.service_content {
  min-height: 100vh;
  padding: 30px 0;
  background-color: rgb(29, 29, 29);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.service_content_header_text {
  padding: 10px 30px;
}
@media screen and (max-width: 767px) {
  .service_content_header_text {
    font-size: 1.2rem;
  }
}

.content_title {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.section_privacy {
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .section_privacy {
    padding: 0 15px;
  }
  .section_privacy h2 {
    font-size: 1.6rem !important;
  }
  .section_privacy p {
    font-size: 1.2rem;
  }
}

.content_text_f {
  margin-left: 1.2rem;
}

.content_text_s {
  margin-left: 2rem;
}

.content_text_t {
  margin-left: 3rem;
}

.content_text_end {
  text-align: right;
}

.contact_form {
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contact_form {
    width: 90%;
  }
}
.contact_form p {
  padding-top: 40px;
}
.contact_form ::-moz-placeholder {
  color: rgb(136, 136, 136);
}
.contact_form ::placeholder {
  color: rgb(136, 136, 136);
}
.contact_form .required {
  color: rgb(250, 248, 158);
}
.contact_form .error {
  color: red;
}
.contact_form .form_inner {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .contact_form .form_inner {
    margin-top: 20px;
  }
}
.contact_form .form_text {
  width: 80%;
  height: 30px;
  margin: 5px 0 10px 0;
}
@media screen and (max-width: 767px) {
  .contact_form .form_text {
    width: 90%;
  }
}
.contact_form textarea {
  width: 100%;
  height: 200px;
  margin: 5px 0 5px 0;
}
.contact_form .contact_btn {
  width: 180px;
  margin: 30px 0 0 0;
}

.confirm_inner {
  width: 60%;
  margin: auto;
  padding-top: 60px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .confirm_inner {
    width: 80%;
    padding-top: 20px;
  }
}
.confirm_inner header {
  margin-bottom: 40px;
}
.confirm_inner label {
  display: block;
  margin-bottom: 5px;
}
.confirm_inner .inner_text {
  word-wrap: break-word;
  width: 100%;
  margin-bottom: 10px;
  margin-left: 10px;
}
.confirm_inner .send_btn_area {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .confirm_inner .send_btn_area {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
  }
}
.confirm_inner .back_btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(205, 162, 255);
  color: black;
}
@media screen and (max-width: 767px) {
  .confirm_inner .back_btn {
    margin-top: 20px;
  }
}
.confirm_inner .top_btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .confirm_inner .top_btn {
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */