@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

/* CSS Reset */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
}

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

table,
td,
th {
  border: 1px solid #333;
}

html {
  font-size: 100%;
  background-color: #fff;
  word-break: break-word;
  scroll-behavior: smooth;
}

/* 404エラーページスタイル */
.error-404 {
  text-align: center;
  padding: 50px 20px;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 200px auto 80px;
  max-width: 600px;
}

.error-title {
  font-size: 36px;
  color: #e74c3c;
  margin-bottom: 20px;
}

.error-message {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

.home-link {
  margin-top: 20px;
}

.home-link .button {
  padding: 12px 25px;
  background-color: #2ecc71;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 18px;
}

.home-link .button:hover {
  background-color: #27ae60;
}

body {
  min-height: 100vh;
  color: #000;
  overflow-x: hidden;
  font: normal normal normal 16px/1.8 "Noto Sans JP", sans-serif;
  background-color: #fff;
}

a,
a:active,
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

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

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

textarea {
  resize: vertical;
}

input,
select {
  vertical-align: middle;
}

button {
  vertical-align: inherit;
  line-height: inherit;
  cursor: pointer;
}

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
  font-size: 1em;
}

mark {
  background-color: #ff0;
}

small {
  font-size: 80%;
}

img {
  height: auto;
  max-inline-size: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

h2,
h3,
h4 {
  font-weight: 600;
}

.home .floating-box {
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.home .floating-box.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.hamburger-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 35px;
  height: 25px;
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 5;
  display: none;
  margin-right: 20px;
}
.hamburger-menu:hover {
  opacity: 0.6;
}

.line {
  height: 2px;
  background-color: #F7B100;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  position: absolute;
}

.top {
  width: 100%;
  top: 0;
}

.middle {
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bottom {
  width: 100%;
  bottom: 0;
}

.hamburger-menu.active .top {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: calc(50% - 1px);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.hamburger-menu.active .middle {
  opacity: 0;
}

.hamburger-menu.active .bottom {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: calc(50% - 1px);
  width: 100%;
  -webkit-transform-origin: center;
          transform-origin: center;
}

#menu {
  position: fixed;
  z-index: 4;
  background: #fff;
  width: 100%;
  height: 100vh;
  top: 0;
  right: -100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#menu a {
  display: block;
  color: #87D395;
  margin-bottom: 10px;
  font-size: 16px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}
#menu a::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background: #87D395;
  left: -20px;
  top: 50%;
}
#menu a:hover {
  opacity: 0.6;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 5;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 15px;
}
header .head_logo {
  max-width: 200px;
  width: 100%;
  margin-right: 40px;
  z-index: 5;
}
header .head_logo img {
  width: 100%;
}
header .head_logo a {
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
header .head_logo a:hover {
  opacity: 0.6;
}
header .head_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .head_nav .hamburger-menu {
  margin-left: 10px;
}
header .head_nav .head_nav_txt {
  width: 100%;
  max-width: 150px;
}

.head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1440px;
  padding: 10px 20px;
  margin: 0 auto;
}
.head .top_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.head .top_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.head .top_nav ul li a {
  margin-left: 30px;
  position: relative;
}
.head .top_nav ul li a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #F7B100;
  position: absolute;
  left: 0;
  bottom: -10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.head .top_nav ul li a:hover::before {
  width: 100%;
}
.head .head_contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #4262FF;
  padding: 10px 30px;
  font-size: 14px;
  color: #fff;
  border-radius: 20px;
  margin-left: 40px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 5;
  position: relative;
}
.head .head_contact a:hover {
  background: #F7B100;
}
.head .head_contact a img {
  width: 100%;
  max-width: 29px;
  height: 29px;
}

.header_scrolled {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

main {
  position: relative;
  width: 100%;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top_search {
  margin: -6% auto 0;
  max-width: 1220px;
  padding: 0 20px;
  z-index: 2;
  position: relative;
}
.top_search .search-box {
  background: #4262FF;
  border-radius: 20px;
  width: 100%;
  padding: 30px 40px 40px;
}
.top_search .search-box h2 {
  font-size: 30px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top_search .search-box h2 img {
  margin-right: 10px;
  max-width: 30px;
}
.top_search .search-box-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.top_search .search-box-container .ser_left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: #fff;
  padding: 30px 40px;
  border-radius: 60px;
  -webkit-box-shadow: 2px 2px 5px #666;
          box-shadow: 2px 2px 5px #666;
}
.top_search .search-box-container .ser_left .form-group {
  width: 25%;
  padding-right: 30px;
  margin-left: 30px;
  border-right: 1px solid #E2E8F0;
}
.top_search .search-box-container .ser_left .form-group label {
  display: block;
  color: #64748B;
  margin-bottom: 4px;
  font-weight: bold;
}
.top_search .search-box-container .ser_left .form-group input,
.top_search .search-box-container .ser_left .form-group select {
  display: block;
  border: none;
  color: #666;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 16px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: none;
}
.top_search .search-box-container .ser_left .form-group input:hover,
.top_search .search-box-container .ser_left .form-group select:hover {
  opacity: 0.6;
  cursor: pointer;
}
.top_search .search-box-container .ser_left .form-group .ser_left_time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.top_search .search-box-container .ser_left .form-group .ser_left_time01 input {
  width: 88px;
}
.top_search .search-box-container .ser_left .form-group01 {
  border: none;
}
.top_search .search-box-container button {
  background: #F7B400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 20px;
  width: 150px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 40px;
  border: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 2px 2px 5px #666;
          box-shadow: 2px 2px 5px #666;
  color: #000;
}
.top_search .search-box-container button:hover {
  background: #fff;
}
.top_search .search-box-container button img {
  margin-right: 10px;
  width: 20px;
}

.top_content01 {
  padding: 20px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ecf0f6));
  background: linear-gradient(to bottom, #ffffff, #ecf0f6);
}

.top_class {
  margin: 60px auto;
  max-width: 1440px;
}
.top_class h2 {
  font-size: 45px;
  margin: 0 auto 30px;
  text-align: center;
}
.top_class .top_class_content {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.top_class .top_class_content li {
  width: calc(25% - 20px);
}
.top_class .top_class_content li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}
.top_class .top_class_content li a img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.top_class .top_class_content li a h3 {
  font-size: 20px;
}
.top_class .top_class_content li a div {
  margin-top: 7px;
  background: rgb(226, 232, 240);
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top_class .top_class_content li a div span {
  padding: 5px 15px;
  display: block;
}
.top_class .top_class_content li a div span:last-child {
  position: relative;
  color: #1D2089;
}
.top_class .top_class_content li a div span:last-child strong {
  position: relative;
}
.top_class .top_class_content li a div span:last-child::before {
  right: 0;
  top: 0;
  content: "";
  position: absolute;
  width: 180px;
  height: 100%;
  background: linear-gradient(105deg, transparent 50%, #d0d6dd 50%);
}
.top_class .top_class_content li a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.top_class .top_class_content li a:hover div {
  background: #4262FF;
}
.top_class .top_class_content li a:hover div span:first-child {
  color: #fff;
}
.top_class .top_class_content li a:hover div span:last-child::before {
  background: linear-gradient(105deg, transparent 50%, #f7b400 50%);
}

.top_price {
  margin: 60px auto;
  max-width: 1440px;
  padding: 0 20px;
}
.top_price ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.top_price ul li:first-child {
  max-width: 700px;
}
.top_price ul li:last-child {
  margin-left: -150px;
  width: calc(100% - 550px);
}
.top_price .top_price_txt {
  background: url(../images/top_price_txt——bg.png) center top/cover no-repeat;
  width: 100%;
  padding: 30px 20px;
  color: #1D2089;
  font-weight: bold;
}
.top_price .top_price_txt div p {
  font-size: 35px;
  margin: 0 30px;
  position: relative;
  display: inline-block;
  padding: 0 5px;
}
.top_price .top_price_txt div p::before {
  content: "";
  width: 100%;
  height: 15px;
  background: #FFE6A5;
  position: absolute;
  left: 0;
  bottom: 10px;
}
.top_price .top_price_txt div p span {
  position: relative;
}
.top_price .top_price_txt p {
  font-size: 20px;
  margin: 50px 30px 80px;
}
.top_price .top_price_con {
  margin: 20px 50px 0;
  padding-top: 100px;
  background: url(../images/tree.png) center top/contain no-repeat;
}
.top_price .top_price_con h2 {
  font-size: 45px;
  position: relative;
  margin-bottom: 40px;
}
.top_price .top_price_con h2::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 8px;
  left: 0;
  bottom: -15px;
  background: #4262FF;
}
.top_price .top_price_con h2 span {
  display: block;
  font-size: 16px;
  color: #4262FF;
}
.top_price .top_price_con strong {
  margin-bottom: 20px;
  display: block;
  font-size: 18px;
}
.top_price .top_price_con a {
  display: inline-block;
  margin-top: 40px;
  width: 150px;
  background: #4262FF;
  font-size: 16px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 22px;
  padding: 8px 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.top_price .top_price_con a:hover {
  background: #F7B100;
}

.top_guard {
  margin: 80px auto 0;
  background: url(../images/comp_Japan.png) bottom left/contain no-repeat;
}
.top_guard ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.top_guard ul img {
  width: 100%;
}
.top_guard .top_guard_ul01 {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.top_guard .top_guard_ul01 li:first-child {
  width: 50%;
}
.top_guard .top_guard_ul01 li:last-child {
  width: 38%;
  margin-left: 3%;
  margin-bottom: -4%;
}
.top_guard .top_guard_ul02 {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 2.5%;
}
.top_guard .top_guard_ul02 li:first-child {
  width: 42%;
}
.top_guard .top_guard_ul02 li:last-child {
  width: 36%;
  padding: 40px;
}
.top_guard .top_guard_ul02 li:last-child h3 {
  margin-bottom: 40px;
  font-size: 28px;
}
.top_guard .top_guard_ul02 li:last-child p {
  font-size: 18px;
}

.top_reason {
  margin: 0 auto 80px;
  padding-top: 180px;
  background: url(../images/top_reason_bg.svg) top center/cover no-repeat;
  position: relative;
}
.top_reason .top_reason_txt {
  position: absolute;
  width: 100%;
  left: 0;
  top: 120px;
}
.top_reason .top_reason_txt img {
  width: 100%;
}
.top_reason h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 45px;
  position: relative;
}
.top_reason h2::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 8px;
  left: calc(50% - 25px);
  bottom: -15px;
  background: #4262FF;
}
.top_reason h2 span {
  font-size: 16px;
  color: #4262FF;
  display: block;
  margin-top: 30px;
}
.top_reason ul {
  margin: 80px auto 0;
  max-width: 1680px;
  padding: 0 20px;
}
.top_reason ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 80px auto 0;
}
.top_reason ul li .top_reason_li_img {
  width: 55%;
  min-width: 250px;
}
.top_reason ul li .top_reason_li_img img {
  width: 100%;
}
.top_reason ul li .top_reason_li_txt {
  padding: 40px;
}
.top_reason ul li .top_reason_li_txt div {
  font-weight: bold;
  font-size: 34px;
  color: #4262FF;
  margin-bottom: 20px;
}
.top_reason ul li .top_reason_li_txt h3 {
  margin-bottom: 10px;
  font-size: 28px;
}
.top_reason ul li .top_reason_li_txt p {
  margin-bottom: 30px;
  font-size: 18px;
}

.top_news {
  margin: 100px auto 60px;
  max-width: 1680px;
  padding: 40px 0 6% 5%;
  background: url(../images/top_news_bg.jpg) top right/cover no-repeat;
}
.top_news h2 {
  font-size: 45px;
  position: relative;
  margin-bottom: 40px;
}
.top_news h2::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 8px;
  left: 0;
  bottom: -15px;
  background: #4262FF;
}
.top_news h2 span {
  display: block;
  font-size: 16px;
  color: #4262FF;
}
.top_news ul {
  margin: 40px auto 0;
}
.top_news ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  max-width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px dashed #333;
}
.top_news ul li:last-child {
  border: none;
}
.top_news ul li .top_news-date {
  min-width: 45px;
}
.top_news ul li h3 {
  margin-left: 30px;
  font-size: 18px;
}
.top_news ul li h3 a {
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.top_news ul li h3 a:hover {
  opacity: 0.6;
}
.top_news ul li .top_news-date span {
  display: block;
  line-height: 1.2;
  font-weight: bold;
}
.top_news ul li .top_news-date span.year {
  color: #666;
}
.top_news ul li .top_news-date span.month, .top_news ul li .top_news-date span.day {
  color: #4262FF;
  font-size: 24px;
}
.top_news .more {
  display: inline-block;
  margin-top: 30px;
  width: 150px;
  background: #4262FF;
  font-size: 16px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 22px;
  padding: 8px 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.top_news .more:hover {
  background: #F7B100;
}

.top_campaign {
  margin: 80px auto;
  max-width: 900px;
  padding: 0 20px;
}
.top_campaign a {
  display: block;
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.top_campaign img {
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.top_campaign img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.top_insurance {
  margin: 0 auto;
  width: 100%;
  background: url(../images/top_insurance_bg.png) top right/cover no-repeat;
  padding-bottom: 100px;
}
.top_insurance h2 {
  font-size: 45px;
  position: relative;
  margin: 0 auto 60px;
  max-width: 1340px;
  padding: 0 20px;
}
.top_insurance h2::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 8px;
  left: 20px;
  bottom: -15px;
  background: #4262FF;
}
.top_insurance h2 span {
  display: block;
  font-size: 16px;
  color: #4262FF;
}
.top_insurance ul {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top_insurance ul li:first-child {
  max-width: 47%;
  min-width: 47%;
  margin-right: 8%;
}
.top_insurance ul li:first-child img {
  width: 100%;
}
.top_insurance ul li:last-child h3 {
  color: #F7B400;
  font-size: 24px;
  position: relative;
  padding-left: 15px;
  margin-bottom: 30px;
}
.top_insurance ul li:last-child h3::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 3px;
  height: calc(100% - 20px);
  background: #F7B400;
}
.top_insurance ul li:last-child p {
  margin-left: 15px;
}
.top_insurance ul li:last-child {
  max-width: 600px;
}

footer {
  margin: 0 auto;
  width: 100%;
  position: relative;
}
footer .footer_line {
  margin: 0 auto;
  width: 100%;
}
footer .footer_line img {
  width: 100%;
}
footer .foot_nav {
  width: 100%;
  margin: 0 auto;
  background: #4262FF;
  color: #fff;
  padding: 40px 0;
}
footer .foot_nav ul {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .foot_nav ul li:first-child a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: block;
}
footer .foot_nav ul li:first-child a:hover {
  opacity: 0.6;
}
footer .foot_nav ul li:last-child div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  margin-bottom: 10px;
}
footer .foot_nav ul li:last-child div a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: block;
}
footer .foot_nav ul li:last-child div a:hover {
  opacity: 0.6;
}
footer .foot_nav ul li:last-child div img {
  margin: 0 15px;
}
footer .foot_nav ul li:last-child div:last-child {
  margin-bottom: 0;
}
footer .foot_nav ul li:last-child div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .foot_copy {
  margin: 0 auto;
  padding: 20px;
  background: #E2E8F0;
  color: #64748B;
  text-align: center;
  font-size: 14px;
}
footer .foot_copy ul {
  margin: 0 auto 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .foot_copy ul li a {
  display: inline-block;
  margin: 0 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
footer .foot_copy ul li a:hover {
  text-decoration: underline;
}

/*page*/
.page_main {
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.page_main img {
  width: 100%;
}
.page_main .page_main_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  text-align: center;
}
.page_main .page_main_txt h1 {
  margin-bottom: 20px;
  font-size: 60px;
  text-shadow: 1px 1px 10px #666;
}
.page_main .page_main_txt p {
  font-size: 20px;
  text-shadow: 1px 1px 10px #666;
}
.page_main .page_main_txt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px auto 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_main .page_main_txt ul li {
  margin: 0 auto;
  max-width: 270px;
  min-width: 150px;
}
.page_main .page_main_txt ul li a {
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.page_main .page_main_txt ul li a:hover {
  opacity: 0.8;
}
.page_main .page_main_txt_img {
  min-width: 340px;
}

.page_guide_flow {
  margin: 40px auto 0;
  padding: 100px 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#E5F6F9));
  background: linear-gradient(to bottom, #ffffff, #E5F6F9);
  position: relative;
}
.page_guide_flow::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/guide_top_bg.png) top right/contain no-repeat;
  top: 0;
}
.page_guide_flow .page_guide_flow_content {
  position: relative;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
  color: #64748B;
}
.page_guide_flow .page_guide_flow_content h2 {
  font-size: 45px;
  position: relative;
  margin-bottom: 40px;
  color: #000;
}
.page_guide_flow .page_guide_flow_content h2::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 8px;
  left: 0;
  bottom: -15px;
  background: #4262FF;
}
.page_guide_flow .page_guide_flow_content h2 span {
  display: block;
  font-size: 60px;
  color: #4262FF;
  line-height: 1.4;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_ul {
  margin: 80px auto 0;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 auto 40px;
  width: 100%;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_step {
  margin-right: 40px;
  min-width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_step img {
  width: 100%;
  height: auto;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_step .page_guide_flow_step_line {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 10px;
  margin-left: -10px;
  width: 2px;
  background: url(../images/line-step.png) center center/cover no-repeat;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_content_det {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_content_det h3 {
  font-size: 22px;
  margin-bottom: 20px;
  margin-top: 35px;
  color: #000;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_content_det .page_guide_flow_content_ul {
  margin: 30px auto 0;
  background: #EFF3F7;
  padding: 50px 60px 35px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 15px;
  gap: 20px;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_content_det .page_guide_flow_content_ul li {
  width: calc(50% - 10px);
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_content_det .page_guide_flow_content_ul li::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url(../images/check.png) center center/contain no-repeat;
  left: 0;
  top: 2px;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_content_det .page_guide_flow_content_ul_step03 {
  background: #fff;
  counter-reset: number;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_content_det .page_guide_flow_content_ul_step03 li {
  width: calc(50% - 10px);
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_content_det .page_guide_flow_content_ul_step03 li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  width: 24px;
  height: 24px;
  top: 3px;
  left: 0;
  background: transparent;
  border: 1px solid #F7B400;
  border-radius: 50%;
  color: #F7B400;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li:last-child {
  margin: 0 auto;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li:last-child .page_guide_flow_step .page_guide_flow_step_line {
  display: none;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_content_ul02 li {
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_content_ul02 li h4 {
  color: #F7B400;
  display: inline-block;
  border-radius: 40px;
  border: 1px solid #F7B400;
  padding: 8px 20px;
  margin-bottom: 30px;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_content_ul02 li .page_guide_flow_content_ul02_img {
  margin-bottom: 20px;
}
.page_guide_flow .page_guide_flow_content .page_guide_flow_content_ul02 li .page_guide_flow_content_ul02_img img {
  width: auto;
}
.page_guide_flow .page_guide_flow_down {
  margin: 30px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_guide_flow .page_guide_flow_content_det_span {
  color: #33B266;
}

.page_guide_cancel .page_guide_flow_content {
  position: relative;
  padding: 100px 20px;
  max-width: 1280px;
  margin: 0 auto;
  color: #64748B;
}
.page_guide_cancel .page_guide_flow_content h2 {
  font-size: 45px;
  position: relative;
  margin-bottom: 40px;
  color: #000;
}
.page_guide_cancel .page_guide_flow_content h2::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 8px;
  left: 0;
  bottom: -15px;
  background: #4262FF;
}
.page_guide_cancel .page_guide_flow_content h2 span {
  display: block;
  font-size: 60px;
  color: #4262FF;
  line-height: 1.4;
}
.page_guide_cancel .page_guide_flow_content .page_guide_cancel_content {
  margin: 30px auto 0;
  background: #EFF3F7;
  padding: 50px 60px 35px 60px;
  border-radius: 15px;
}
.page_guide_cancel .page_guide_flow_content .page_guide_cancel_content h4 {
  margin-bottom: 30px;
  font-size: 22px;
  text-align: center;
  color: #000;
}
.page_guide_cancel .page_guide_flow_content .page_guide_cancel_content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.page_guide_cancel .page_guide_flow_content .page_guide_cancel_content ul li {
  width: calc(50% - 5px);
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
}
.page_guide_cancel .page_guide_flow_content .page_guide_cancel_content ul li::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url(../images/check.png) center center/contain no-repeat;
  left: 0;
  top: 2px;
}
.page_guide_cancel .page_guide_flow_content .page_guide_cancel_content p {
  color: #33B266;
}

.page_price_class {
  margin: -10% auto 0;
  position: relative;
}
.page_price_class .top_class {
  max-width: 1280px;
  background: #fff;
  -webkit-box-shadow: 2px 2px 10px #ccc;
          box-shadow: 2px 2px 10px #ccc;
  border-radius: 15px;
  padding: 40px 0;
  margin: 0 auto;
}

.page_price_content {
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}
.page_price_content .page_price_content_k2 {
  margin: 0 auto;
  padding-top: 80px;
}
.page_price_content .page_price_content_k2 .page_price_content_k2_h2 {
  position: relative;
  padding-left: 25px;
  margin-bottom: 30px;
}
.page_price_content .page_price_content_k2 .page_price_content_k2_h2 h2 {
  font-size: 45px;
}
.page_price_content .page_price_content_k2 .page_price_content_k2_h2 .page_price_content_k2_h2_div {
  margin-top: 7px;
  background: #4262FF;
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 280px;
}
.page_price_content .page_price_content_k2 .page_price_content_k2_h2 .page_price_content_k2_h2_div span {
  padding: 5px 15px;
  display: block;
  color: #fff;
}
.page_price_content .page_price_content_k2 .page_price_content_k2_h2 .page_price_content_k2_h2_div span:last-child {
  position: relative;
  color: #1D2089;
}
.page_price_content .page_price_content_k2 .page_price_content_k2_h2 .page_price_content_k2_h2_div span:last-child strong {
  position: relative;
}
.page_price_content .page_price_content_k2 .page_price_content_k2_h2 .page_price_content_k2_h2_div span:last-child::before {
  right: -25px;
  top: 0;
  content: "";
  position: absolute;
  width: 230px;
  height: 100%;
  background: linear-gradient(105deg, transparent 50%, #f7b400 50%);
}
.page_price_content .page_price_content_k2 .page_price_content_k2_h2::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  content: "";
  width: 4px;
  height: calc(100% - 30px);
  background: #4262FF;
}
.page_price_content .page_price_content_k2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px;
}
.page_price_content .page_price_content_k2 ul li {
  width: calc(33.3333% - 30px);
  margin: 20px 0;
  border: 1px solid #F1F6FB;
  border-radius: 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.page_price_content .page_price_content_k2 ul li h3 {
  padding: 15px 30px;
  background: #F1F6FB;
  border-radius: 0 0 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.page_price_content .page_price_content_k2 ul li h3 span {
  font-size: 14px;
}
.page_price_content .page_price_content_k2 ul li:hover {
  -webkit-box-shadow: 1px 1px 10px #ccc;
          box-shadow: 1px 1px 10px #ccc;
}
.page_price_content .page_price_content_k2 ul li:hover h3 {
  background: #fff;
  color: #4262FF;
}
.page_price_content .page_price_content_k2:last-child {
  margin: 0 auto 80px;
}

.modal-car {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-car .modal-content-car {
  background: white;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  position: relative;
  border-radius: 15px;
}

.pop_h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.close {
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
  font-size: 24px;
}

.pop_price-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 14px;
}
.pop_price-content h4 {
  font-size: 16px;
  padding-left: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #007bff;
  position: relative;
}
.pop_price-content h4::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  top: 5px;
  left: 0;
  background: #007bff;
  margin-left: 10px;
}
.pop_price-content .pop_left_img {
  margin: 0 auto 15px;
}
.pop_price-content .pop_left_txt_con {
  background: #F1F5F9;
  padding: 10px 20px;
  margin-bottom: 15px;
}
.pop_price-content .pop_left {
  margin-right: 40px;
}
.pop_price-content .pop_right_txt_con01 {
  margin-top: 15px;
}
.pop_price-content .pop_right_txt_con01 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pop_price-content .pop_right_txt_con01 ul li {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 15px;
}
.pop_price-content .pop_right_txt_con01 ul li .pop_right_form {
  margin-top: 7px;
  background: #4262FF;
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 200px;
  font-size: 12px;
}
.pop_price-content .pop_right_txt_con01 ul li .pop_right_form span {
  padding: 2px 9px;
  display: block;
  color: #fff;
}
.pop_price-content .pop_right_txt_con01 ul li .pop_right_form span:last-child {
  position: relative;
  color: #1D2089;
}
.pop_price-content .pop_right_txt_con01 ul li .pop_right_form span:last-child strong {
  position: relative;
}
.pop_price-content .pop_right_txt_con01 ul li .pop_right_form span:last-child::before {
  right: -15px;
  top: 0;
  content: "";
  position: absolute;
  width: 210px;
  height: 100%;
  background: linear-gradient(105deg, transparent 50%, #f7b400 50%);
}
.pop_price-content .pop_right_txt_con02 {
  margin-top: 15px;
  margin-left: 15px;
  margin-bottom: 15px;
}

.pop_p {
  color: #4262FF;
}

a.pop_more {
  margin: 20px auto 0;
  background: #007bff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #fff;
  max-width: 200px;
  border-radius: 40px;
  padding: 10px;
  display: block;
  text-align: center;
}

.main-swiper_pop {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 571/428;
  margin: 0 auto 8px auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-swiper_pop .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-swiper_pop .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  display: block;
  background-color: transparent;
}

.thumb-swiper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  overflow-x: auto;
  padding-bottom: 5px;
  margin: 0;
}

.thumb-swiper .swiper-slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  aspect-ratio: 571/428;
  height: 80px;
  opacity: 0.5;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.3s ease, opacity 0.3s ease;
  transition: border-color 0.3s ease, opacity 0.3s ease;
  margin: 0 !important;
  padding: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f5f5f5;
}

.thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #007bff;
}

.thumb-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  background-color: transparent;
}

#accident.page_guide_flow::before {
  background-image: url(../images/insurance_top_bg.png);
  background-position: right 100px;
  background-size: cover;
  background-repeat: no-repeat;
}

.page_guide_accident_ul {
  margin: 80px auto 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.page_guide_accident_ul .page_guide_accident_ul_txt {
  max-width: 30%;
  min-width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background: #fff;
  padding: 3%;
  border-radius: 15px;
  -webkit-box-shadow: 2px 2px 10px #ccc;
          box-shadow: 2px 2px 10px #ccc;
}
.page_guide_accident_ul .page_guide_accident_ul_txt img {
  height: 60px;
  margin: 20px auto 10px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.page_guide_accident_ul .page_guide_accident_ul_img {
  max-width: 5%;
  min-width: 5%;
  padding: 0 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page_guide_accident_div {
  margin: 0 auto;
  padding: 40px 20px;
  background: #007bff;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 15px;
}
.page_guide_accident_div h3 {
  margin-bottom: 20px;
  font-size: 28px;
}
.page_guide_accident_div p {
  margin-bottom: 20px;
  font-size: 18px;
}
.page_guide_accident_div ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_guide_accident_div ul li {
  margin: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 20px;
  border-radius: 40px;
  width: 260px;
  position: relative;
}
.page_guide_accident_div ul li::before {
  position: absolute;
  width: 100px;
  content: "";
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-top: 1px dashed #1D2089;
  margin-top: 2px;
}
.page_guide_accident_div ul li span:first-child {
  margin-bottom: 4px;
}
.page_guide_accident_div ul li:first-child {
  background: #fff;
  color: #1D2089;
}
.page_guide_accident_div ul li:last-child {
  background: #F7B400;
}
.page_guide_accident_div ul li:last-child::before {
  border-top: 1px dashed #fff;
}

.page_guide_ompensation01 {
  overflow-x: auto;
  margin-top: 80px;
  position: relative;
}
.page_guide_ompensation01 img {
  width: 100%;
  min-width: 700px;
}

.swipe-hint {
  position: absolute;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 15px;
  border-radius: 10px;
  font-size: 14px;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  display: none;
  z-index: 3;
  -webkit-animation: blink 3s infinite;
          animation: blink 3s infinite;
  width: 230px;
  text-align: center;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.page_guide_ompensation01_ul {
  margin: 60px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page_guide_ompensation01_ul li:first-child {
  width: 45%;
}
.page_guide_ompensation01_ul li:first-child img {
  width: 100%;
}
.page_guide_ompensation01_ul li:last-child {
  width: 52%;
  padding: 20px 40px;
  background: #F3F7FD;
  border-radius: 15px;
}
.page_guide_ompensation01_ul li:last-child h4 {
  font-size: 20px;
  color: #4262FF;
  position: relative;
  margin-bottom: 10px;
}
.page_guide_ompensation01_ul li:last-child h4::before {
  content: "";
  position: absolute;
  right: 0;
  top: 15px;
  width: calc(100% - 120px);
  height: 1px;
  background: #4262FF;
}
.page_guide_ompensation01_ul li:last-child p {
  margin-bottom: 20px;
}
.page_guide_ompensation01_ul li:last-child div {
  color: #000;
}

#compensation.page_guide_cancel .page_guide_flow_content {
  padding: 100px 20px 20px;
}

.page_guide_ompensation_div01 {
  background: #F3F7FD;
  padding: 40px;
  border-radius: 15px;
  margin: 0 auto 60px;
}
.page_guide_ompensation_div01 h3 {
  font-size: 28px;
  color: #000;
  position: relative;
  margin: 0 auto 40px;
  text-align: center;
}
.page_guide_ompensation_div01 h3::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: #007bff;
  bottom: -10px;
  left: calc(50% - 25px);
}
.page_guide_ompensation_div01 p {
  text-align: center;
  margin-bottom: 40px;
}
.page_guide_ompensation_div01 .ompensation_ul01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page_guide_ompensation_div01 .ompensation_div_txt01 {
  padding: 30px 0;
  margin-bottom: 30px;
  border-bottom: 1px dashed #64748B;
}
.page_guide_ompensation_div01 h4 {
  font-size: 20px;
  margin-bottom: 30px;
  color: #000;
}
.page_guide_ompensation_div01 .ompensation_ul02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
}
.page_guide_ompensation_div01 .ompensation_ul02 li {
  background: #007bff;
  padding: 10px 30px;
  border-radius: 40px;
  color: #fff;
}
.page_guide_ompensation_div01 .ompensation_ul03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page_guide_ompensation_div01 .ompensation_ul03 li {
  background: #007bff;
  padding: 10px 30px;
  border-radius: 24px;
  color: #fff;
  width: calc(33.3333% - 20px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.page_guide_ompensation_div01 .ompensation_ul03 li:hover {
  opacity: 0.8;
  cursor: pointer;
}
.page_guide_ompensation_div01 .ompensation_ul03 li .ompensation_ul03_div01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_guide_ompensation_div01 .ompensation_ul03 li .ompensation_turn .sankaku_d {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.page_guide_ompensation_div01 .ompensation_ul03 li .ompensation_ul03_div02 {
  border-top: 1px dashed #fff;
  padding-top: 10px;
  margin-top: 10px;
  display: none;
}
.page_guide_ompensation_div01 .ompensation_ul03 li .ompensation_ul03_div02.ompensation_show {
  display: block;
  font-size: 14px;
}
.page_guide_ompensation_div01 .ompensation_04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.page_guide_ompensation_div01 .ompensation_04 li {
  background: #F7B400;
  color: #1D2089;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 20px;
  border-radius: 40px;
  width: 260px;
  position: relative;
}
.page_guide_ompensation_div01 .ompensation_04 li::before {
  position: absolute;
  width: 100px;
  content: "";
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-top: 1px dashed #1D2089;
  margin-top: 2px;
}
.page_guide_ompensation_div01 .ompensation_05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  width: 100%;
  margin: 40px auto 0;
  padding-top: 40px;
  border-top: 1px dashed #1D2089;
}
.page_guide_ompensation_div01 .ompensation_05 li {
  background: #007bff;
  padding: 8px 40px;
  border-radius: 40px;
  color: #fff;
  text-align: center;
}
.page_guide_ompensation_div01 .ompensation_div_txt03 {
  margin: 40px auto 20px;
  padding: 40px;
  background: #fff;
}

.news_con {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.news_con .news_con_list {
  width: 100%;
}
.news_con .news_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 80px;
}
.news_con .news_content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  display: inline-block;
  padding-bottom: 10px;
}
.news_con .news_content .news_con_side {
  margin-right: 10%;
  min-width: 150px;
}
.news_con .news_content .news_con_side h3 {
  border-bottom: 1px dashed #ccc;
}
.news_con .news_content .news_con_side ul li {
  margin-top: 10px;
  position: relative;
  padding-left: 20px;
}
.news_con .news_content .news_con_side ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.news_con .news_content .news_con_side .current-cat {
  color: #F7B400;
}
.news_con .news_content .news_con_list_info {
  margin-top: 30px;
}
.news_con .news_content .news_con_list_info .news_con_list_info-guard {
  margin-bottom: 10px;
  font-size: 14px;
}
.news_con .news_content .news_con_list_info .news_con_list_info-guard .news_con_list_info-date {
  margin-right: 5px;
}
.news_con .news_content .news_con_list_info .news_con_list_info-guard .news_con_list_info-cate {
  padding: 2px 10px;
  border-radius: 29px;
  color: #fff;
}
.news_con .news_content .news_con_list_info .news_con_list_info-guard .category01 {
  background: #007bff;
}
.news_con .news_content .news_con_list_info .news_con_list_info-guard .category02 {
  background: #2ecc71;
}
.news_con .news_content .news_con_list_info .news_con_list_info-guard .category03 {
  background: #f7b400;
}
.news_con .news_content .news_con_list_info h4 {
  width: 100%;
}
.news_con .news_content .news_con_list_info h4 a {
  display: block;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
}
.news_con h2 {
  font-size: 45px;
  position: relative;
}
.news_con h2::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 8px;
  left: 0;
  bottom: -15px;
  background: #4262FF;
}

.news_pagination {
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  font-size: 18px;
}
.news_pagination a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.news_pagination a:hover {
  opacity: 0.6;
}
.news_pagination .prev,
.news_pagination .next {
  border-radius: 50%;
  background: #000;
  color: #fff;
  width: 35px;
  height: 35px;
  text-align: center;
}

.single_con {
  max-width: 1000px;
}
.single_con h2 {
  text-align: center;
}
.single_con h2::before {
  left: calc(50% - 25px);
}
.single_con .news_con_list_info-guard {
  margin-top: 80px;
  text-align: right;
  color: #666;
  margin-bottom: 60px;
}
.single_con .news_navigation {
  margin: 60px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
}
.single_con .news_back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.single_con .news_back a {
  display: inline-block;
  margin-top: 40px;
  width: 150px;
  background: #4262FF;
  font-size: 16px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 22px;
  padding: 8px 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.single_con .news_back a:hover {
  background: #F7B100;
}

.contact_info {
  margin: 0 auto;
  padding: 100px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#E5F6F9), to(#ffffff));
  background: linear-gradient(to bottom, #E5F6F9, #ffffff);
}
.contact_info .contact_info_txt {
  margin: 0 auto 60px;
  padding: 0 20px;
  max-width: 1280px;
  position: relative;
  font-size: 20px;
}
.contact_info .contact_info_txt::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 4px;
  left: 20px;
  bottom: -15px;
  background: #4262FF;
}
.contact_info .contact_info_tel {
  margin: 0 auto 60px;
  max-width: 500px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 20px;
}
.contact_info .contact_info_tel .contact_info_tel_p1 {
  font-size: 20px;
}
.contact_info .contact_info_tel .contact_info_tel_num {
  margin: 10px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
  color: #007bff;
}
.contact_info .contact_info_tel .contact_info_tel_num img {
  max-width: 30px;
  min-width: 30px;
  margin-right: 20px;
}
.contact_info .contact_info_form {
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 20px;
}
.contact_info .contact_info_form .contact_form_content {
  margin: 40px auto 0;
  padding: 40px;
  background: #fff;
}
.contact_info .contact_info_form .contact_form_content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}
.contact_info .contact_info_form .contact_form_content dl input,
.contact_info .contact_info_form .contact_form_content dl textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px;
  color: #666;
}
.contact_info .contact_info_form .contact_form_content dl dt {
  margin-bottom: 5px;
}
.contact_info .contact_info_form .contact_form_content dl .hisu,
.contact_info .contact_info_form .contact_form_content dl .nini {
  font-size: 12px;
  background: #e74c3c;
  color: #fff;
  padding: 2px 7px;
  border-radius: 2px;
  margin: 0 7px;
}
.contact_info .contact_info_form .contact_form_content dl .nini {
  background: #ccc;
}
.contact_info .contact_info_form .contact_form_content dl .add_txt {
  margin-bottom: 10px;
}
.contact_info .contact_info_form .contact_form_content dl .add1,
.contact_info .contact_info_form .contact_form_content dl .add2,
.contact_info .contact_info_form .contact_form_content dl .add3 {
  margin-bottom: 10px;
}
.contact_info .contact_info_form .contact_form_content dl .add1 .add_input {
  max-width: 400px;
}
.contact_info .contact_info_form .contact_send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact_info .contact_info_form .contact_send input {
  display: inline-block;
  margin-top: 40px;
  width: 150px;
  background: #4262FF;
  font-size: 16px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 22px;
  padding: 8px 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border: none;
  cursor: pointer;
}
.contact_info .contact_info_form .contact_send input:hover {
  background: #F7B100;
}

.page_guide_pri_con,
.page_about {
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 20px;
}
.page_guide_pri_con h2,
.page_guide_pri_con .page_guide_pri_txt,
.page_about h2,
.page_about .page_guide_pri_txt {
  margin: 20px auto;
}

.page_about h2:first-child {
  margin: 0 auto 20px;
}

.page_about .page_guide_pri_txt {
  padding-bottom: 20px;
  border-bottom: 1px dashed #ccc;
}

.page_reception .page_reception_title {
  margin: 0 auto 40px;
  max-width: 1280px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page_reception .page_reception_title h2 {
  font-size: 45px;
  position: relative;
  margin-bottom: 40px;
  color: #000;
}
.page_reception .page_reception_title h2::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 8px;
  left: 0;
  bottom: -15px;
  background: #4262FF;
}
.page_reception .page_reception_title .page_reception_title_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_reception .page_reception_title .page_reception_title_right li:first-child {
  background: #007bff;
  padding: 10px 30px;
  border-radius: 40px;
  color: #fff;
  margin-right: 20px;
}
.page_reception .page_reception_title .page_reception_title_right li:last-child {
  text-align: center;
}
.page_reception .page_reception_title .page_reception_title_right li:last-child div:first-child {
  color: #1D2089;
  font-size: 20px;
}
.page_reception .page_reception_title .page_reception_title_right li:last-child div:first-child span {
  font-size: 14px;
}
.page_reception .page_reception_title .page_reception_title_right li:last-child div:last-child {
  padding-top: 5px;
  margin-top: 5px;
  color: #64748B;
  border-top: 1px dashed #1D2089;
}
.page_reception .page_reception_img {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}
.page_reception .page_reception_img img {
  width: 100%;
}
.page_reception .page_reception_info {
  margin: -5% auto 0;
  max-width: 1000px;
  padding: 20px 20px 10px;
  background: #fff;
  position: relative;
  border-radius: 15px;
  -webkit-box-shadow: 2px 2px 10px #ccc;
          box-shadow: 2px 2px 10px #ccc;
}
.page_reception .page_reception_info .page_reception_info_map {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 40px;
}
.page_reception .page_reception_info .page_reception_info_map iframe {
  width: 100%;
  height: 100%;
}
.page_reception .page_reception_info .page_reception_info_txt {
  padding-left: 20px;
  margin-left: 20px;
  margin-bottom: 30px;
  border-left: 3px solid #007bff;
}
.page_reception #reception02 {
  padding-top: 100px;
}

.style_con_cat_list_img > div {
  display: none;
}

.style_con_cat_list_img > div.active {
  display: block;
}

.style_con {
  margin: 0 auto;
  width: 100%;
  background: url(../images/style_bg.png) center bottom/contain no-repeat;
  padding: 0 20px 100px;
}

.style_content {
  margin: -10% auto 0;
  max-width: 1200px;
  position: relative;
  -webkit-box-shadow: 2px 2px 10px #ccc;
          box-shadow: 2px 2px 10px #ccc;
  border-radius: 15px;
  background: #fff;
  padding: 20px 20px 10px;
}

.style_con_cat_list_img,
.pine_category_list {
  width: 100%;
}

.pine_category_cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -62px;
  left: 0;
}
.pine_category_cate li {
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.6);
  color: #000;
  font-size: 18px;
  padding: 15px 30px 30px;
  border-radius: 10px 10px 0 0;
}
.pine_category_cate li:hover {
  cursor: pointer;
}
.pine_category_cate li.category-item.active {
  background: rgb(255, 255, 255);
  color: #4262FF;
}

.style_con_cat_list_img {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #4262FF;
}
.style_con_cat_list_img img {
  width: 100%;
}

.pine_category_list {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pine_category_list .pine_category_info {
  width: calc(50% - 10px);
  background: #F1F6FB;
}

.pine_category_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  padding: 60px 20px 20px;
  border-radius: 15px;
  margin-bottom: 30px;
}
.pine_category_info .pine_category_info_img {
  max-width: 40%;
  min-width: 40%;
  margin-right: 20px;
  height: 130px;
  overflow: hidden;
  border-radius: 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.pine_category_info .pine_category_info_img:hover {
  opacity: 0.6;
}
.pine_category_info .pine_category_info_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.pine_category_info h3 {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #4262FF;
}
.pine_category_info h3 a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.pine_category_info h3 a:hover {
  text-decoration: underline;
}
.pine_category_info h3 img {
  display: inline-block;
  margin-right: 5px;
}
.pine_category_info .pine_category_info-tags {
  position: absolute;
  top: -15px;
  left: 0;
  text-indent: -9999px;
}
.pine_category_info .pine_category_info-tags span {
  width: 60px;
  height: 63px;
  display: block;
}
.pine_category_info .pine_category_info-tags .tag-24 {
  background: url(../images/tag24.png) center center/contain no-repeat;
}
.pine_category_info .pine_category_info-tags .tag-25 {
  background: url(../images/tag25.png) center center/contain no-repeat;
}
.pine_category_info .pine_category_info-tags .tag-26 {
  background: url(../images/tag26.png) center center/contain no-repeat;
}
.pine_category_info .pine_category_info-tags .tag-23 {
  background: url(../images/tag23.png) center center/contain no-repeat;
}

/*pop start*/
.modal-backdrop {
  display: none !important;
}

#modal-calender-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal_calender_month {
  float: left;
  width: 33.3333%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  min-width: 235px;
}

.modal-calender-row {
  width: 230px;
}

.modal-calender-cell {
  width: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 0.1px #CCC;
  display: block;
  float: left;
  text-align: center;
  padding: 5px;
}

.modal-calender-cell-hide {
  width: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 0.1px #CCC;
  background-color: #8fbc8f;
  display: block;
  float: left;
  text-align: center;
  padding: 5px;
}

.modal_calender_cell_selected {
  background-color: #00008b;
  color: #FFF;
}

.share_botton {
  width: 30px;
}

.share_button:hover {
  cursor: pointer;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 0 !important;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
          transform: translate(0, -25%);
}

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  outline: 0;
  padding: 20px;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
}

.modal-header .close {
  width: 50px;
  height: 50px;
  background: #fff;
  border: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.modal-header .close:hover {
  opacity: 0.6;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 20px;
  font-weight: normal;
  padding-bottom: 15px;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px 10px 10px;
  border-top: 1px solid #e9ecef;
  margin-top: 10px;
}
.modal-footer button {
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #e9ecef;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.modal-footer button:last-child {
  background: #007bff;
  color: #fff;
  margin-left: 15px;
}
.modal-footer button:hover {
  opacity: 0.6;
}

.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.modal-dialog {
  max-width: 750px;
  margin: 120px auto 20px;
}

.modal-dialog-centered {
  min-height: calc(100% - 3.5rem);
}

.modal-content {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
}

.modal-sm {
  max-width: 300px;
}

.modal-lg {
  max-width: 800px;
}

/*pop end*/
.page_main .page_main_txt_benefit ul {
  margin: 0 auto;
}

.post-type-archive-benefit .news_pagination {
  display: none;
}

.page_main .page_main_txt_benefit .page_main_txt_img {
  max-width: 800px;
}

.page_guide_booking {
  background: -webkit-gradient(linear, left top, left bottom, from(#E5F6F9), to(#ffffff));
  background: linear-gradient(to bottom, #E5F6F9, #ffffff);
  margin: 0 auto;
  padding: 100px 0 0;
  position: relative;
  width: 100%;
}
.page_guide_booking .page_guide_flow_content {
  position: relative;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
  color: #64748B;
}
.page_guide_booking .page_guide_flow_content h2 {
  font-size: 45px;
  position: relative;
  margin-bottom: 40px;
  color: #000;
}
.page_guide_booking .page_guide_flow_content h2::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 8px;
  left: 0;
  bottom: -15px;
  background: #4262FF;
}
.page_guide_booking .page_guide_flow_content .page_guide_flow_map {
  position: absolute;
  right: -100px;
  top: -100px;
}
.page_guide_booking .page_guide_booking_info {
  position: relative;
  margin-top: 40px;
  padding: 40px 30px 80px;
  background: url(../images/booking_info_bg.png) left center/cover no-repeat;
  max-width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #1D2089;
}
.page_guide_booking .page_guide_booking_info h3 {
  font-size: 20px;
}
.page_guide_booking .page_guide_booking_info div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin: 20px auto;
}
.page_guide_booking .page_guide_booking_info div img {
  max-width: 40px;
}
.page_guide_booking .page_guide_booking_info div a {
  font-size: 38px;
  font-weight: bold;
}
.page_guide_booking .page_guide_booking_info .page_guide_booking_info_p {
  padding-top: 20px;
  border-top: 1px dashed #4262FF;
}
.page_guide_booking .page_guide_flow_map {
  position: relative;
}

.page_guide_hotel {
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
  width: 100%;
}
.page_guide_hotel .page_guide_hotel_content {
  position: relative;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
  color: #64748B;
}
.page_guide_hotel .page_guide_hotel_content h2 {
  font-size: 45px;
  position: relative;
  margin-bottom: 40px;
  color: #000;
}
.page_guide_hotel .page_guide_hotel_content h2::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 8px;
  left: 0;
  bottom: -15px;
  background: #4262FF;
}

.page_guide_hotel_content_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin: 60px auto 0;
}
.page_guide_hotel_content_list .hotel_list_info {
  width: calc(33.3333% - 20px);
  background: #F1F6FB;
  border-radius: 15px;
  overflow: hidden;
  padding: 30px 30px 100px;
  position: relative;
}
.page_guide_hotel_content_list .hotel_list_info h3 {
  color: #000;
}
.page_guide_hotel_content_list .hotel_list_info .hotel_con_list_img {
  aspect-ratio: 3/2;
  overflow: hidden;
  width: 100%;
  margin: 20px auto;
  border-radius: 15px;
}
.page_guide_hotel_content_list .hotel_list_info .hotel_con_list_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_guide_hotel_content_list .hotel_list_info .hotel_con_list_cat {
  position: absolute;
  left: 0;
  top: 0;
  background: #4262FF;
  border-radius: 0 0 15px 0;
  color: #fff;
  padding: 5px 25px;
  font-size: 14px;
  display: none;
}
.page_guide_hotel_content_list .hotel_list_info a {
  position: absolute;
  right: 20px;
  bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4262FF;
  font-weight: bold;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.page_guide_hotel_content_list .hotel_list_info a:hover {
  opacity: 0.6;
}
.page_guide_hotel_content_list .hotel_list_info a.hotel_con_list_tel {
  bottom: 20px;
  color: red;
  font-size: 20px;
}

.page-id-102 .page_guide_pri_txt:first-child {
  margin: 0 auto 20px;
}

.page_guide_booking .page_guide_booking_info .page_guide_booking_info_p.page_benefit_p_color {
  color: #fff;
}

a.text_link {
  color: #007bff;
  text-decoration: underline;
}
a.text_link:hover {
  text-decoration: none;
}

.page_guide_qa {
  background: -webkit-gradient(linear, left top, left bottom, from(#E5F6F9), to(#ffffff));
  background: linear-gradient(to bottom, #E5F6F9, #ffffff);
  padding-top: 100px;
}
.page_guide_qa .page_guide_flow_content {
  padding: 0 20px 100px;
}
.page_guide_qa .page_guide_flow_content h3 {
  font-size: 24px;
  margin-top: 30px;
  color: #333;
}
.page_guide_qa .page_guide_flow_content p {
  font-size: 15px;
  margin-top: 10px;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 24px;
}

.top_pine_img {
  display: none;
}

#imgOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
}

.overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

#imgOverlay img {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 1;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
          box-shadow: 0 0 10px #000;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.zoom-img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

/*responsive*/
@media (max-width: 1400px) {
  header .head_logo {
    max-width: 140px;
    margin-right: 20px;
  }
  .head .top_nav ul li a {
    margin-left: 20px;
  }
  .head .head_contact a {
    padding: 7px 20px;
    font-size: 12px;
  }
  .modal-dialog {
    margin: 100px auto 20px;
  }
}
@media (max-width: 1240px) {
  .top_search .search-box h2 {
    font-size: 22px;
  }
  .top_search .search-box h2 img {
    max-width: 22px;
  }
  .top_search .search-box {
    padding: 20px;
  }
  .top_search .search-box-container .ser_left {
    padding: 20px;
    border-radius: 40px;
    width: 100%;
  }
  .top_search .search-box-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top_search .search-box-container button {
    margin-top: 20px;
  }
  .top_search .search-box-container .ser_left .form-group {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 0;
  }
}
@media (max-width: 1140px) {
  header {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  main {
    margin-top: 70px;
  }
  .page_main {
    margin-top: 70px;
  }
  .hamburger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .head .top_nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    right: -100%;
    top: 0;
    width: 0;
    background: #fff;
    height: 100vh;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 4;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .head .top_nav ul.active {
    right: 0;
    width: 100%;
  }
  .head .top_nav ul li a {
    display: block;
    margin-left: 0;
    margin-bottom: 15px;
    color: #007bff;
  }
  .head .top_nav ul li a::before {
    display: none;
  }
  .head .head_contact a {
    padding: 5px 15px;
    margin-left: 20px;
  }
  header .head_logo {
    max-width: 120px;
    margin-right: 0;
  }
  .modal-dialog {
    margin: 90px auto 20px;
  }
  .top_class .top_class_content {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .top_class .top_class_content li {
    width: calc(33.3333% - 15px);
  }
  .top_price ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top_price .top_price_con {
    padding-top: 50px;
    margin: 0 auto;
  }
  .top_price ul li:last-child {
    display: none;
  }
  .top_class,
  .top_price {
    margin: 50px auto;
  }
  .top_class h2 {
    margin-bottom: 20px;
  }
  .top_guard .top_guard_ul02 li:last-child {
    width: 100%;
  }
  .top_guard .top_guard_ul02 li:first-child {
    min-width: 230px;
  }
  .top_reason {
    margin: 0 auto 50px;
    padding-top: 50px;
  }
  .top_reason ul li {
    margin: 50px auto 0;
  }
  .top_news,
  .top_campaign {
    margin: 50px auto;
  }
  .top_insurance {
    padding-bottom: 60px;
  }
  .page_price_content .page_price_content_k2:last-child {
    margin: 0 auto 60px;
  }
  .page_main .page_main_txt h1,
  .page_guide_flow .page_guide_flow_content h2,
  .page_guide_cancel .page_guide_flow_content h2,
  .page_price_content .page_price_content_k2 .page_price_content_k2_h2 h2,
  .page_guide_booking .page_guide_flow_content h2,
  .page_guide_hotel .page_guide_hotel_content h2,
  .news_con h2,
  .page_reception .page_reception_title h2 {
    font-size: 30px;
  }
  .page_main .page_main_txt p {
    font-size: 18px;
  }
  .page_guide_flow .page_guide_flow_content h2 span,
  .page_guide_cancel .page_guide_flow_content h2 span {
    font-size: 40px;
  }
  .page_price_class {
    margin: -20px auto 0;
  }
  .page_price_content .page_price_content_k2,
  .page_reception #reception02 {
    padding-top: 60px;
  }
  .page_guide_flow,
  .page_guide_hotel,
  .contact_info {
    padding: 60px 0;
  }
  .page_guide_cancel .page_guide_flow_content {
    padding: 60px 20px;
  }
  .page_guide_qa {
    background: -webkit-gradient(linear, left top, left bottom, from(#E5F6F9), to(#ffffff));
    background: linear-gradient(to bottom, #E5F6F9, #ffffff);
    padding-top: 60px;
  }
  .page_guide_qa .page_guide_flow_content {
    padding: 0 20px 60px;
  }
  .page_guide_qa .page_guide_flow_content h3 {
    font-size: 18px;
  }
  .page-id-14 .page_guide_flow,
  .page_guide_booking {
    margin: 0 auto;
    padding: 60px 0 0;
  }
  #compensation.page_guide_cancel .page_guide_flow_content {
    padding: 60px 20px 20px;
  }
  .style_con {
    padding: 0 20px 60px;
  }
  .single_con .news_con_list_info-guard {
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .top_pine_img {
    display: block;
  }
}
@media (max-width: 960px) {
  .page_guide_ompensation_div01 {
    padding: 20px;
  }
  .page_guide_ompensation_div01 .ompensation_ul03 li {
    width: calc(50% - 15px);
  }
  .modal-car .modal-content-car {
    max-width: 100%;
    margin: 0 20px;
  }
  .close {
    top: 25px;
  }
  .pop_price-content .pop_left {
    margin-right: 20px;
    width: calc(45% - 20px);
  }
  .pop_price-content .pop_right {
    width: 55%;
  }
  .pop_price-content .pop_right_txt_con01 ul li {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .top_search .search-box-container .ser_left {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top_search .search-box-container .ser_left .form-group {
    width: 50%;
    border-right: none;
  }
  .top_search .search-box-container .ser_left .form-group#datepicker-default,
  .top_search .search-box-container .ser_left .form-group#datepicker-default2 {
    margin-bottom: 10px;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 10px;
  }
  .top_search .search-box-container .ser_left .form-group .ser_left_time {
    max-width: 200px;
  }
  .modal-footer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .top_class .top_class_content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .top_class .top_class_content li {
    width: calc(50% - 10px);
  }
  .page_main .page_main_txt p {
    display: none;
  }
  .page_main .page_main_txt ul {
    margin: 0 auto;
  }
  .page_price_content .page_price_content_k2 ul {
    gap: 20px;
  }
  .page_price_content .page_price_content_k2 ul li {
    width: calc(50% - 10px);
  }
  .pine_category_cate li {
    padding: 10px 15px;
    font-size: 14px;
  }
  .pine_category_cate {
    top: -33px;
  }
  .pine_category_info {
    padding: 100px 20px 20px;
  }
  .pine_category_info h3 {
    top: 50px;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.4;
  }
  .page_guide_hotel_content_list .hotel_list_info {
    width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .swipe-hint {
    display: block;
  }
  .top_search,
  .top_guard {
    margin: 50px auto 0;
  }
  .top_class h2,
  .top_price .top_price_con h2,
  .top_reason h2,
  .top_news h2,
  .top_insurance h2,
  .top_price .top_price_txt div p {
    font-size: 30px;
  }
  .top_reason ul li .top_reason_li_txt div,
  .top_guard .top_guard_ul02 li:last-child h3,
  .page_guide_accident_div h3,
  .page_guide_ompensation_div01 h3,
  .page_guide_booking .page_guide_booking_info div a {
    font-size: 24px;
  }
  .top_reason ul li .top_reason_li_txt h3,
  .top_insurance ul li:last-child h3 {
    font-size: 20px;
  }
  .top_price .top_price_txt {
    background: none;
    padding: 0;
  }
  .top_price .top_price_txt div p {
    margin: 0 auto;
  }
  .top_price .top_price_txt p {
    margin: 20px auto;
  }
  .top_guard_ul02,
  .page_reception .page_reception_title,
  .page_reception .page_reception_title .page_reception_title_right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top_guard .top_guard_ul02 li:first-child {
    width: 100%;
    margin: 20px auto 0;
    max-width: 230px;
  }
  .top_guard .top_guard_ul02 li:last-child h3 {
    margin-bottom: 20px;
  }
  .top_guard .top_guard_ul02 li:last-child {
    padding: 40px 20px;
  }
  .top_reason ul li .top_reason_li_txt {
    padding: 0 20px;
  }
  .top_news {
    background: #fff;
    padding: 0 20px;
  }
  .page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_step {
    max-width: 50px;
    min-width: 50px;
    margin-right: 20px;
  }
  .page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_content_det h3 {
    margin-top: 5px;
  }
  .page_price_content .page_price_content_k2 ul li {
    border: none;
  }
  .page_guide_ompensation_div01 .ompensation_ul03 li {
    width: 100%;
    max-width: 400px;
  }
  .page_guide_accident_div ul,
  .page_guide_ompensation01_ul,
  .page_guide_ompensation_div01 .ompensation_ul02,
  .page_guide_ompensation_div01 .ompensation_04,
  .page_guide_ompensation_div01 .ompensation_05 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page_guide_ompensation01_ul li:first-child,
  .page_guide_ompensation01_ul li:last-child {
    width: 100%;
  }
  .page_guide_ompensation01_ul li:last-child {
    padding: 20px;
  }
  .page_guide_ompensation_div01 .ompensation_ul01 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page_guide_ompensation_div01 .ompensation_ul01 li {
    width: 50%;
  }
  .page_guide_ompensation_div01 .ompensation_ul02 {
    max-width: 320px;
  }
  .page_guide_ompensation_div01 .ompensation_ul02 {
    margin: 0 auto;
  }
  .pine_category_list .pine_category_info {
    width: 100%;
  }
  .pine_category_cate li.category-item {
    border-radius: 10px;
  }
  .pine_category_cate {
    top: -100px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pine_category_cate li {
    width: calc(50% - 20px);
    max-width: 200px;
    margin-bottom: 10px;
  }
  .pine_category_cate {
    top: -110px;
  }
  .style_content {
    margin: 50px auto 0;
  }
  .pine_category_cate {
    position: relative;
    top: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 10px;
  }
  .pine_category_cate li.category-item {
    background: #4262FF;
  }
  .pine_category_cate li.category-item.active {
    background: #F7B100;
    color: #fff;
  }
  .page_guide_booking .page_guide_booking_info {
    background: none;
    padding: 0;
  }
  .page_guide_booking .page_guide_booking_info div img {
    max-width: 24px;
  }
  .news_con .news_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 60px;
  }
  .news_con_side {
    margin-right: 0;
    margin-top: 40px;
  }
  .pop_price-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pop_price-content .pop_left {
    width: 100%;
    margin-right: 0;
  }
  .pop_price-content .pop_right {
    width: 100%;
  }
  .page_guide_booking .page_guide_booking_info .page_guide_booking_info_p.page_benefit_p_color {
    color: #4262FF;
  }
  .page_guide_booking .page_guide_booking_info .page_guide_booking_info_p.page_benefit_p_color br {
    display: none;
  }
  .page_main .page_main_txt ul.page_guid_ul_main li {
    min-width: 120px;
  }
  .head .top_nav ul li a {
    font-size: 18px;
  }
}
@media (max-width: 560px) {
  .top_class .top_class_content li a h3 {
    font-size: 15px;
  }
  .top_class .top_class_content li a div {
    font-size: 10px;
  }
  .top_class .top_class_content li a div span:last-child::before {
    width: 120px;
  }
  .top_class .top_class_content li a div span {
    padding: 5px 10px;
  }
  .top_reason ul > li:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top_reason ul > li:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .top_reason ul li .top_reason_li_txt {
    padding: 30px 0 0;
  }
  .top_reason ul li .top_reason_li_img {
    width: 100%;
  }
  .top_insurance ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top_insurance ul li:first-child {
    max-width: 500px;
    margin: 0 auto 40px;
  }
  footer .foot_nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .foot_nav ul li:last-child {
    margin: 20px auto 0;
  }
  footer .foot_nav ul li:last-child div {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .foot_copy ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page_main .page_main_txt h1 {
    font-size: 24px;
    margin-bottom: 0;
  }
  .page_guide_cancel .page_guide_flow_content .page_guide_cancel_content ul,
  .page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_content_det .page_guide_flow_content_ul {
    gap: 0;
  }
  .page_guide_cancel .page_guide_flow_content .page_guide_cancel_content ul li,
  .page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_content_det .page_guide_flow_content_ul li {
    width: 100%;
  }
  .page_guide_cancel .page_guide_flow_content .page_guide_cancel_content,
  .page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_content_det .page_guide_flow_content_ul.page_guide_flow_content_ul_step03,
  .page_guide_flow .page_guide_flow_content .page_guide_flow_content_ul02 li,
  .page_guide_flow .page_guide_flow_content .page_guide_flow_ul > li .page_guide_flow_content_det .page_guide_flow_content_ul,
  .contact_info .contact_info_form .contact_form_content {
    padding: 20px;
  }
  .page_price_content .page_price_content_k2 ul li h3 span {
    display: none;
  }
  .page_price_content .page_price_content_k2 ul li h3 {
    padding: 5px 10px;
    font-size: 13px;
  }
  .page_guide_flow .page_guide_flow_content h2,
  .page_guide_cancel .page_guide_flow_content h2,
  .page_price_content .page_price_content_k2 .page_price_content_k2_h2 h2,
  .page_guide_booking .page_guide_flow_content h2,
  .page_guide_hotel .page_guide_hotel_content h2,
  .news_con h2,
  .page_reception .page_reception_title h2 {
    font-size: 24px;
  }
  .page_guide_flow .page_guide_flow_content h2 span,
  .page_guide_cancel .page_guide_flow_content h2 span {
    font-size: 32px;
  }
  .page_guide_cancel .page_guide_flow_content .page_guide_cancel_content h4,
  .news_con .news_content h3 {
    font-size: 20px;
  }
  .page_guide_flow .page_guide_flow_content .page_guide_flow_content_ul02 li h4 {
    font-size: 14px;
    padding: 5px 10px;
  }
  footer .foot_nav {
    padding: 20px 0;
  }
  footer .foot_nav ul li:first-child a {
    max-width: 120px;
  }
  .post-type-archive-benefit .page_main .page_main_txt_benefit .page_main_txt_img {
    width: 240px;
    min-width: 240px;
  }
  .post-type-archive-benefit .page_main .page_main_txt ul {
    margin: -20px auto 0;
  }
  .page_guide_hotel_content_list .hotel_list_info {
    width: 100%;
  }
  .top_guard {
    background: none;
  }
}
@media (max-width: 500px) {
  .top_search .search-box-container .ser_left .form-group {
    width: 100%;
  }
  .top_search .search-box-container .ser_left .form-group01 {
    margin-top: 10px;
    border-top: 1px solid #E2E8F0;
    padding-top: 10px;
  }
  .top_price .top_price_txt div p {
    font-size: 22px;
  }
  .page_guide_accident_ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page_guide_accident_ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page_guide_accident_ul .page_guide_accident_ul_txt {
    max-width: 300px;
    width: 100%;
  }
  .page_guide_accident_ul .page_guide_accident_ul_img {
    max-width: 40px;
    width: 100%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .page_guide_accident_ul {
    margin: 60px auto 40px;
  }
  .pine_category_list .pine_category_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pine_category_info .pine_category_info_img {
    width: 100%;
    max-width: 100%;
    height: 230px;
    margin-bottom: 20px;
  }
  .page_guide_booking .page_guide_booking_info h3,
  .contact_info .contact_info_tel .contact_info_tel_p1,
  .page_about h2,
  .page-id-102 h2 {
    font-size: 18px;
  }
  .page-id-102 .page_main .page_main_txt,
  .page-id-106 .page_main .page_main_txt {
    top: 40px;
    left: auto;
    -webkit-transform: translate(0);
            transform: translate(0);
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */