/* GLOBAL STYLES
-------------------------------------------------- */
body {
	background: #F5FAFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #0078BF;
	transition: all .25s ease-out;
}
a:hover, a:focus {
  color: #000;
}

button {
	transition: all .25s ease-out;
}

span, path {
	transition: all .25s ease-out;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/* delighter */
.delighter {
  transition: all .5s ease-out;
  transform: translateY(20px);
  opacity: 0;
}
.delighter.started {
  transform: none;
  opacity: 1;
}


/* common
---------------------------------------------------------------------------------------------------- */
/* margin */
.mgt0	{
	margin-top: 0px !important;
}
.mgt10	{
	margin-top: 10px !important;
}
.mgt20	{
	margin-top: 20px !important;
}
.mgt30	{
	margin-top: 30px !important;
}
.mgt40	{
	margin-top: 40px !important;
}
.mgt50	{
	margin-top: 50px !important;
}
.mgb0	{
	margin-bottom: 0px !important;
}
.mgb10	{
	margin-bottom: 10px !important;
}
.mgb20	{
	margin-bottom: 20px !important;
}
.mgb30	{
	margin-bottom: 30px !important;
}
.mgb40	{
	margin-bottom: 40px !important;
}
.mgb50	{
	margin-bottom: 50px !important;
}
.mgb60	{
	margin-bottom: 60px !important;
}
.mgb70	{
	margin-bottom: 70px !important;
}
.mgb80	{
	margin-bottom: 80px !important;
}
.mgb90	{
	margin-bottom: 90px !important;
}
.mgb100	{
	margin-bottom: 100px !important;
}

/* link */
a.text_link {
  color: #000;
  text-decoration: none;
}
a.text_link svg {
  margin-left: 6px;
  margin-right: 6px;
}
a.text_link:hover, a.text_link:focus {
  color: #0078BF;
}
a.text_link:hover svg path, a.text_link:focus svg path {
  stroke: #0078BF;
}


/* button */
.btn_wrp.center {
  text-align: center;
}
.btn_wrp.right {
  text-align: right;
}
.btn_wrp.center .btn {
  margin-left: auto;
  margin-right: auto;
}
.btn_wrp.horizontal {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.btn_wrp.horizontal .btn:first-child {
  margin-right: 15px;
}
.btn {
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.12);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  height: 50px;
  width: 250px;
  transition-duration: .4s;
  z-index: 2;
  margin-bottom: 15px;
}
.btn.sm {
  height: 40px;
  width: auto;
  font-size: 14px;
  padding: 0 1em;
}
.btn.lg {
  height: 60px;
  width: 300px;
  font-size: 16px;
  padding: 0 1em;
}
.btn.primary {
  background: #29397F;
  border-color: #29397F;
  color: #fff;
}
.btn.secondary {
  background: #0078BF;
  border-color: #0078BF;
  color: #fff;
}
.btn.default {
  background: #fff;
  border: 1px solid #707070;
  color: #000;
}
.btn::after {
  background: #0078BF;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.btn:hover {
  color: #fff;
}
.btn:hover::after {
  transform: scale(1, 1);
}
.btn.default:hover svg path {
  stroke: #fff;
}
.btn.secondary::after {
  background: #29397F;
  border-color: #29397F;
}

.btn.arrow {
  justify-content: space-between;
  padding-left: 1.25em;
  padding-right: 1.25em;
}
.btn.primary.arrow svg path, 
.btn.secondary.arrow svg path {
  stroke: #fff;
}
.btn.arrow:hover svg path {
  stroke: #fff;
}

.btn_booking {
  justify-content: center;
  height: 60px;
  width: 300px;
  font-size: 16px;
}
.btn_booking svg {
  margin-right: 15px;
}
.btn_booking::after {
  background: #29397F;
}
.btn_booking:hover::after {
  transform: scale(1, 1);
}
@media (max-width: 599px) {
  .btn.sm {
    font-size: 12px;
  }
}

.select_wrp {
  position: relative;
  width: 250px;
}
.select_wrp select {
  appearance: none;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}
.select_wrp::after {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -6px;
  transform: rotate(45deg);
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}
h3.title {
  font-size: 1.2em;
  font-weight: 500;
}
h4.title {
  font-size: 1.1em;
  font-weight: 500;
}
h5.title {
  font-size: 1em;
  font-weight: 500;
}
.btm_line {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  position: relative;
}
.btm_line::before {
  content: "";
  border-bottom: 2px solid #0078BF;
  width: 100px;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.text {
  font-size: 1em;
  line-height: 1.8;
  margin: 0 0 1.5em;
}
.text.md, .md, .list.md li {
  font-size: 0.9em;
  line-height: 1.6;
}
.text.sm, .sm, .list.sm li {
  font-size: 0.75em;
  line-height: 1.6;
}
.text.ic {
  display: flex;
  align-items: center;
}
.text.ic svg {
  margin-right: 0.5em;
}

.ic_PDF {
  background: url("../images/ic_PDF.png") no-repeat right 50%;
  background-size: 20px 20px;
  padding-right: 30px;
}

strong, .bold {
  font-weight: 600;
}
.red {
  color: #CA0000;
}
.en {
  font-family: "Inter";
}
.center {
  text-align: center;
}

.breadcrumb {
  padding: 1em 0;
}
.breadcrumb ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.breadcrumb ul li {
  font-size: 13px;
  padding-right: 16px;
  margin-right: 10px;
  position: relative;
  line-height: 1;
}
.breadcrumb ul li::after {
  content: "";
  display: block;
  height: 6px;
  width: 6px;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -3px;
  transform: rotate(45deg);
}
.breadcrumb ul li:last-child::after {
  display: none;
}
.breadcrumb ul li a {
  color: #333;
  text-decoration: none;
}
.breadcrumb ul li span {
  font-weight: 400;
}


/* structure
---------------------------------------------------------------------------------------------------- */
.main {
  /*overflow: hidden;*/
}
.container {
  box-sizing: border-box !important;
  margin: 0 auto;
  position: relative;
  width: 1000px;
}
.container-fluid {
  box-sizing: border-box !important;
  margin: 0 auto;
  position: relative;
  width: calc(100% - 30px);
}
.container.page_content {
  padding-bottom: 70px;
}
.container.page_content.has_aside {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sidebar {
  position: sticky;
  top: 70px;
  height: fit-content;
  transition: all 0.3s ease;
  padding-top: 70px;
  width: 330px;
}
.has_aside .main_content {
  position: relative;
  width: calc(100% - 350px);
}
.main_content_flex {
  display: flex;
  justify-content: space-between;
}
.main_content_flex_block {
  width: calc(50% - 20px);
}
@media (max-width: 1060px) {
  .container, .container-fluid {
    padding-left: 30px;
		padding-right: 30px;
		width: 100%;
	}
}
@media (max-width: 767px) {
  .container, .container-fluid {
    padding-left: 15px;
		padding-right: 15px;
	}
  .container.page_content {
    flex-direction: column;
  }
  .sidebar {
    position: static;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 0;
  }
  .main_content, .has_aside .main_content {
    width: 100%;
  }
  .main_content_flex {
    display: block;
  }
  .main_content_flex_block {
    width: 100%;
  }
}


/* header
-------------------------------------------------- */
#header {
  background: #F5FAFF;
  text-align: center;
  z-index: 10;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
#header .header_menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: all .25s ease-out;
}
@media (max-width: 1000px) {
  #header .header_menu {
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  #header .header_menu {
    padding-right: 20px;
    padding-bottom: 0;
  }
}

.header_menu .logo {
  position: absolute;
  left: 15px;
  top: 25px;
}
@media (max-width: 1000px) {
  .header_menu .logo {
    top: 20px;
  }
}
@media (max-width: 767px) {
  .header_menu .logo {
    left: 10px;
    width: 200px;
  }
}

.header_menu ul.top_menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.header_menu ul.top_menu li {
  padding: 0 20px;
}
.header_menu ul.top_menu li a {
  font-size: 14px;
}
.header_menu ul.top_menu li a svg {
  margin-left: 8px; 
}
@media (max-width: 1000px) {
  .header_menu ul.top_menu {
    display: none;
  }
}

.header_menu .lang_menu {
  height: 60px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-left: 1px solid #e9e9e9;
}
.header_menu .lang_menu a {
  text-decoration: none;
}
.header_menu .lang_menu a span {
  display: block;
  font-family: "Inter";
  font-size: 11px;
  color: #000;
}
.header_menu .lang_menu a:hover svg path {
  stroke: #0078BF;
}
.header_menu .lang_menu a:hover span {
  color: #0078BF;
}
.header_menu .lang_menu-toggle {
  display: block;
}
.header_menu .lang_submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #29397F;
  border-radius: 3px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
  border-top: 0;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 60px;
  width: 80px;
  font-size: 14px;
}
.header_menu .lang_submenu::before {
  position: absolute;
  display: block;
  content: '';
  top: -7px;
  transform: translateX(50%);
  left: calc(50% - 16px);
  width: 16px;
  height: 10px;
  background-color: #29397F;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.header_menu .lang_submenu li a {
  display: block;
  padding: 8px 12px;
  color: #fff;
  text-decoration: none;
}
.header_menu .lang_submenu li a:hover {
  background: #0078BF;
}
.header_menu .btn_booking {
  margin-bottom: 0;
}
@media (max-width: 1000px) {
  .header_menu .lang_menu {
    border: 0px;
  }
}
@media (max-width: 1000px) {
  .header_menu  .btn_booking {
    height: 50px;
  }
}
@media (max-width: 767px) {
  .header_menu  .btn_booking {
    display: none;
  }
}

dl.header_status {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 10px 0 25px;
}
dl.header_status dt {
  display: flex;
  align-items: center;
  padding-right: 5px;
}
dl.header_status dt a {
  color: #000;
  text-decoration: none;
}
dl.header_status dt a svg {
  margin-left: 10px;
  position: relative;
  top: -1px;
}
dl.header_status dt a:hover {
  color: #0078BF;
}
dl.header_status dt a:hover svg path {
  stroke: #0078BF;
}
dl.header_status dd {
  margin: 0;
  padding: 0 5px;
}
dl.header_status .status_item {
  height: 36px;
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
  text-decoration: none;
  color: #fff;
  position: relative;
  box-sizing: border-box;
}
.status_normal {
  background: #5653FF;
}
.status_investigate {
  background: #D6B62A;
}
.status_cancel {
  background: #CA0000;
}
dl.header_status .status_item .direction {
  height: 36px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.5);
  padding-left: 5px;
}
dl.header_status .status_item .status {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 80px);
  margin-right: 10px;
}
@media (max-width: 1000px) {
  dl.header_status dd {
    padding: 0 2px;
  }
  dl.header_status {
    margin: 0px 0 15px;
  }
  dl.header_status .status_item {
    height: 30px;
    font-size: 14px;
    width: 170px;
  }
  dl.header_status .status_item .direction {
    height: 30px;
    width: 70px;
  }
  dl.header_status .status_item .status {
    height: 30px;
    width: calc(100% - 70px);
  }
}
@media (max-width: 850px) {
  dl.header_status {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 5px;
    justify-content: center;
    margin: 0 0 15px;
  }
  dl.header_status dt {
    grid-column-start: 1;
    grid-column-end: 3;
    justify-content: center;
  }
  dl.header_status dd:nth-child(even) a {
    margin-left: auto;
  }
  dl.header_status .status_item {
    font-size: 13px;
  }
  dl.header_status .status_item .direction {
    width: 70px;
  }
  dl.header_status .status_item .status {
    width: calc(100% - 70px);
  }
}

.gnav {
  background: #29397F;
}
.gnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-content: center;
  justify-content: center;
}
.gnav a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 60px;
  padding: 0 40px;
  text-decoration: none;
}
.gnav a:hover, .gnav a:focus, .gnav .active a {
  background: #0063B0;
}
@media (max-width: 1000px) {
  .gnav {
    display: none;
  }
}

/* humberger buttnon */
.hamburger {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 100;
}
.bar, .bar::before, .bar::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  position: relative;
  z-index: 100;
}
.bar::before {
  position: absolute;
  top: -7px;
}
.bar::after {
  position: absolute;
  top: 7px;
}
.hamburger.open .bar {
  opacity: 1;
  background: #fff;
}
.hamburger.open .bar::before {
  transform: translateY(7px) rotate(45deg);
  opacity: 1;
}
.hamburger.open .bar::after {
  transform: translateY(-7px) rotate(-45deg);
  opacity: 1;
}
@media (max-width: 1000px) {
  .hamburger {
    display: flex;
  }
}
@media (max-width: 767px) {
  .hamburger {
    right: 10px;
  }
}

/* menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
  transition: opacity .4s ease, transform .4s ease;
  z-index: 10;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.menu-overlay nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.menu-overlay nav ul li a {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.2rem;
  text-decoration: none;
  margin: 20px 0;
  padding: 10px 0;
  transition: color .2s ease;
}
.menu-overlay nav ul li a svg {
  margin-right: 15px;
}
.menu-overlay nav ul li a:hover {
  color: #0078BF;
}
.menu-overlay nav ul li a:hover svg path {
  stroke: #0078BF;
}
.menu-overlay nav ul.menu-overlay_sub {
  border-top: 1px solid #e9e9e9;
}
.menu-overlay nav ul.menu-overlay_sub li a {
  font-size: 1rem !important;
  padding: 8px 0;
}
.menu-overlay nav ul.menu-overlay_sub li a svg {
  margin-left: 10px;
  margin-right: 0;
}
.menu-overlay nav .btn_booking {
  font-size: 16px;
  justify-content: center;
}
/* no scroll background */
body.no-scroll {
  overflow: hidden;
  height: 100%;
}
@media (max-width: 767px) {
  .menu-overlay nav .btn_booking {
    display: none;
  }
}


#header.fixed {
  background: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
#header.fixed .header_menu {
  padding-top: 10px;
  padding-right: 50px;
  margin-bottom: 0px;
}
#header.fixed .btn_booking {
  height: 50px;
}
#header.fixed ul.header_status {
  margin: 0 0 15px;
}
#header.fixed .gnav {
  display: none;
}
#header.fixed .hamburger {
  display: flex;
}
@media (max-width: 1000px) {
  #header.fixed .header_menu {
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  #header.fixed .header_menu {
    padding-right: 20px;
  }
}


/* tourist_spot
-------------------------------------------------- */
.tourist_spot {
  background: url("../images/tourist_spot_bg.jpg") no-repeat left top / cover;
  padding-bottom: 100px;
  padding-top: 100px;
  position: relative;
  z-index: 1;
  animation: bgMove 10s linear infinite;
}
@keyframes bgMove {
  0% {
    background-position: center 0%;
  }
  50% {
    background-position: center 50%;
  }
  100% {
    background-position: center 50%;
  }
}
.tourist_spot .sub_header_en {
  background: url("../images/logo_mark_white.png") no-repeat 0 0;
  background-size: 40px 24px;
  color: #fff;
}
.tourist_spot .sub_header h2 {
  color: #fff;
  margin-bottom: 50px;
}

.tourist_spot_list {
  background: rgba(255,255,255,0.75);
  list-style: none;
  margin: 0;
  padding: 0 15px;
  display: flex;
  position: relative;
  z-index: 2;
}
.tourist_spot_list li {
  background: #000;
  border-radius: 8px;
  margin: 30px 15px;
  position: relative;
}
.tourist_spot_list_img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tourist_spot_list_img h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  text-shadow: 0 0 8px #29397F;
  position: absolute;
  margin: 0;
  z-index: 2;
}
.tourist_spot_list_img h3 span {
  display: block;
  font-family: "Inter";
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.tourist_spot_list_img .credit {
  position: absolute;
  right: 5px;
  bottom: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  z-index: 2;
}
.tourist_spot_list_img img {
  border-radius: 8px;
  position: relative;
  z-index: 1;
  opacity: 0.5;
  transition: all .25s ease-out;
}
.tourist_spot_list li a:hover .tourist_spot_list_img .credit {
  opacity: 1;
}
.tourist_spot_list li a:hover .tourist_spot_list_img img {
  opacity: 0.8;
}
.tourist_spot_waves {
  background: url("../images/tourist_spot_waves.svg") no-repeat center bottom;
  background-size: 100% auto;
  height: 500px;
  width: 100%;
  position: absolute;
  bottom: 50px;
  left: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .tourist_spot {
    background-size: auto 100% !important;
    background-position: left 0 top 0 !important;
  }
  .tourist_spot_list {
    flex-wrap: wrap;
    padding: 10px;
  }
  .tourist_spot_list li {
    width: calc(50% - 20px);
    margin: 10px;
  }
  .tourist_spot_list_img h3 {
    font-size: 24px;
  }
  .tourist_spot_list_img h3 span {
    font-size: 11px;
    margin-bottom: 2px;
    letter-spacing: 1px;
  }
}


/* footer
-------------------------------------------------- */
#footer {
	background: #fff;
	padding-top: 70px;
}
.footer_logo {
  margin-bottom: 50px;
}
.footer_link {
  display: flex;
  justify-content: space-between;
}
.footer_link .footer_link_block {
  margin-bottom: 50px;
  width: 30%;
}
.footer_link_title {
  border-bottom: 1px solid #d6d6d6;
  display: block;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.footer_link_block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer_link_block ul li a {
  color: #000;
  display: block;
  font-size: 14px;
  padding: 7px 0;
  text-decoration: none;
}
.footer_link_block ul li a:hover {
  color: #0063B0;
}
.footer_link_block ul li ul li a {
  font-size: 13px;
  text-indent: 1em;
}
.footer_link_block ul li.banner_img img {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px;
  border-radius: 4px;
  margin-top: 10px;
}
ul.footer_link_infos {
  border-top: 1px solid #d6d6d6;
  margin-top: 15px !important;
  padding-top: 15px !important;
}
ul.footer_link_infos li a {
  font-size: 13px;
}
@media (max-width: 767px) {
  .footer_link {
    display: block;
  }
  .footer_link .footer_link_block {
    width: 100%;
  }
}

#footer .copyright {
  border-top: 1px solid #e9e9e9;
  font-size: 0.7em;
  margin: 30px 0 0;
  padding: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  #footer .copyright {
    padding-bottom: 70px;
  }
}


.fixed_btm {
  display: none;
}
@media (max-width: 767px) {
  .fixed_btm {
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    height: 60px;
    width: 100%;
    z-index: 100;
  }
  .fixed_btm .btn_booking {
    width: 100%;
    border-radius: 0;
  }
}


/* home page
---------------------------------------------------------------------------------------------------- */

/* main_slider
-------------------------------------------------- */
.main_slider {
}
.main_slider .slider {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.main_slider .slider img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 5s ease;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.animation {
  animation: zoom 4s 0s forwards;
}
.slick-img .slider_catch {
  position: absolute;
  left: 80px;
  bottom: 80px;
  z-index: 5;
  width: 80%;
}
.slick-img .slider_catch .en {
  color: #fff;
  font-family: "Inter";
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0 0 10px;
  text-shadow: 0 0 10px rgba(0,120,191,1);
}
.slick-img .slider_catch .ja {
  color: #fff;
  font-size: 80px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 0 20px rgba(0,120,191,1);
}
.slider-controls {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.slick-prev,
.slick-next {
  position: static;
  transform: none;
  background: transparent;
  border: 0px;
  height: 22px;
  width: 22px;
  text-indent: -9999px;
  cursor: pointer;
}
.slick-prev {
  background: url("../images/ic_arrow_left.svg") no-repeat left 50%;
}
.slick-next {
  background: url("../images/ic_arrow_right.svg") no-repeat right 50%;
}
ul.slick-dots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
ul.slick-dots li {
  padding: 0 5px;
}
ul.slick-dots li button {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  height: 16px;
  width: 16px;
  position: relative;
  text-indent: -9999px;
  cursor: pointer;
}
ul.slick-dots li button:after {
  content: "";
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  display: block;
  height: 8px;
  width: 8px;
  position: absolute;
  left: 3px;
  top: 3px;
}
ul.slick-dots li.slick-active button {
  border: 1px solid rgba(0,0,0,0.2);
}
ul.slick-dots li.slick-active button:after {
  background: #29397F;
}
@media (max-width: 1000px) {
  .slider img {
    height: calc(100vh - 125px);
  }
  .slick-img .slider_catch {
    left: 50px;
    bottom: 80px;
    width: 80%;
  }
  .slick-img .slider_catch .en {
    font-size: 3vw;
  }
  .slick-img .slider_catch .ja {
    font-size: 8vw;
  }
}
@media (max-width: 767px) {
  #main_slider {
    padding-bottom: 60px;
  }
  .slider img {
    height: calc(100vh - 180px);
  }
  .slick-img .slider_catch {
    left: 50px;
    bottom: 80px;
  }
}
@media (max-width: 599px) {
  .slider img {
    height: calc(100vh - 240px);
  }
  .slick-img .slider_catch {
    left: 30px;
    bottom: 80px;
  }
}


/* main_menu
-------------------------------------------------- */
.main_menu {
  padding-top: 70px;
  padding-bottom: 70px;
}
.main_menu_list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_menu_list ul li {
  padding: 0 10px;
}
.main_menu_list ul li a {
  background: #fff;
  border-radius: 8px;
  display: block;
  text-align: center;
  padding: 40px 20px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  width: 220px;
  box-sizing: border-box;
}
.main_menu_list ul li a img {
  transform: scale(1);
  transition: all .25s ease-out;
}
.main_menu_list ul li a span {
  display: block;
  color: #000;
  font-weight: 500;
  margin-top: 15px;
}
.main_menu_list ul li a:hover img {
  transform: scale(1.15);
}
@media (max-width: 1000px) {
  .main_menu_list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
    justify-content: center;
  }
  .main_menu_list ul li {
    padding: 0;
  }
  .main_menu_list ul li:nth-child(odd) {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .main_menu_list ul {
    margin-left: -10px;
    margin-right: -10px;
    gap: 10px 10px;
  }
  .main_menu_list ul li a {
    width: 170px;
    font-size: 14px;
    padding: 30px 10px;
  }
}

/* sub_header
-------------------------------------------------- */
.sub_header {
  
}
.sub_header_en {
  background: url("../images/logo_mark.png") no-repeat 0 0;
  background-size: 40px 24px;
  color: #0078BF;
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 0 0 55px;
}
.sub_header h2, .sub_header h1  {
  font-size: 40px;
  font-weight: 400;
  margin: 10px 0 30px;
}
.sub_header_text {
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 767px) {
  .sub_header_en {
    font-size: 13px;
  }
  .sub_header h2, .sub_header h1 {
    font-size: 32px;
  }
}

.sub_header_en.ic {
  background: none;
  padding: 4px 0 0 0;
  display: flex;
  align-items: center;
}
.sub_header_en.ic svg {
  margin-right: 15px;
}


/* news
-------------------------------------------------- */
.news {
  background: #fff;
  padding-bottom: 70px;
  padding-top: 70px;
}
.news_list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news_list ul li {
  border-bottom: 1px solid #e9e9e9;
  padding: 1.5em 0;
  position: relative;
}
.news_list ul li::before {
  background: #0078BF;
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .5s;
}
.news_list ul li:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.news_list ul li a {
  color: #000;
  text-decoration: none;
  display: block;
}
.news_list ul li a:hover {
  color: #0078BF;
}
.news_list ul li .date {
  color: #707070;
  font-size: 12px;
  display: block;
  margin-bottom: 12px;
}
.news_list ul li .new {
  background: #0078BF;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 4px;
  margin-left: 15px;
}
.news .btn {
  position: absolute;
  right: 0;
  top: 40px;
}
@media (max-width: 1000px) {
  .news .btn {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 30px;
  }
  .news_list ul li {
    padding: 1em 0;
  }
}

.news_list_pagenation {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.pagination {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 8px;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 8px 18px;
  text-decoration: none;
  color: #333;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  transition: all .25s ease-out;
  font-family: "Inter";
  font-weight: 300;
}
.pagination a:hover {
  background-color: transparent;
  border-color: #0078BF;
  color: #0078BF;
}
.pagination a.active {
  background-color: #0078BF;
  color: #fff;
  border-color: #0078BF;
  cursor: default;
}
.pagination a.prev, .pagination a.next {
  font-weight: 300;
}


/* route
-------------------------------------------------- */
.route {
  background: rgba(0,120,191,0.3) url("../images/route_map.png") no-repeat top right;
  background-size: 100% auto;
  padding-bottom: 70px;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.route .sub_header h2 {
  font-size: 50px;
  font-weight: 600;
}
.route .sub_header h2 br {
  display: none;
}
.route .sub_header h2 span {
  padding: 0 0.1em;
  position: relative;
  z-index: 1;
}
.route .sub_header h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 0;
  background: #FFBA5C;
  transition: width .5s ease-out;
  z-index: -1;
}
.route .sub_header h2 span.delighter.started::after {
  width: 100%;
}
.route .route_img {
  margin-top: 70px;
}
.route .route_map {
  display: none;
}
@media (max-width: 1200px) {
  .route {
    background-size: 1440px auto;
    background-position: right -140px top 0;
  }
}
@media (max-width: 1000px) {
  .route .sub_header h2 br {
    display: block;
  }
  .route .sub_header_text br.mb {
    display: block;
  }
}
@media (max-width: 767px) {
  .route {
    background-image: none;
    padding-bottom: 0;
  }
  .route .sub_header h2 {
    font-size: 40px;
  }
  .route .route_img {
    margin-top: 30px;
  }
  .route .route_map {
    margin-top: 30px;
    width: 100%;
    display: block;
    height: 550px;
    background: transparent url("../images/route_map.png") no-repeat top right;
    background-size: 1440px auto;
    background-position: right -150px top -50px;
  }
}


/* aircraft
-------------------------------------------------- */
.aircraft {
  position: relative;
}
.aircraft_cloud {
  overflow: hidden;
  height: 500px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cloud_1 {
  background: url("../images/aircraft_wave01.png") repeat-x;
  background-size: 1440px 169px;
  height: 500px;
  width: 100%;
  animation: slide-left 20s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
}
@keyframes slide-left {
  from {
      background-position: 0 0;
  }
  to {
      background-position: -1440px 0;
  }
}
.cloud_2 {
  background: url("../images/aircraft_wave02.png") repeat-x;
  background-size: 1440px 288px;
  height: 500px;
  width: 100%;
  animation: slide-right 20s linear infinite;
  position: absolute;
  top: -100px;
  left: 0;
}
@keyframes slide-right {
  from {
      background-position: 0 0;
  }
  to {
      background-position: 1440px 0;
  }
}
.aircraft .container {
  padding-bottom: 70px;
  padding-top: 70px;
}
.aircraft .btn_wrp {
  margin-top: 40px;
  position: relative;
  z-index: 4;
}
.aircraft_img {
  position: absolute;
  right: 0;
  top: 70px;
  text-align: right;
}
.aircraft_img01 {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 3;
  margin-left: auto;
}
.aircraft_img02 {
  position: relative;
  right: 100px;
  top: 90px;
  z-index: 2;
}
@media (max-width: 767px) {
  .aircraft_img {
    position: relative;
    top: -50px;
    right: 0;
  }
  .aircraft_img01 {
    right: 0;
    width: 160px;
  }
  .aircraft_img02 {
    right: auto;
    right: 70px;
    width: 280px;
  }
}


/* banner
-------------------------------------------------- */
.banner {
  padding-bottom: 50px;
  padding-top: 50px;
  position: relative;
}
.banner_list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.banner_list ul li {
  padding: 10px;
}
.banner_list ul li img {
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
  border-radius: 12px;
}
@media (max-width: 767px) {
  .banner_list ul, 
  .banner_list ul li:nth-child(odd) {
    display: block;
    text-align: center;
  }
}


/* ryugasaki
-------------------------------------------------- */
.ryugasaki {
  background: url("../images/ryugasaki_bg.jpg") no-repeat 50% 50% / cover;
  padding-bottom: 80px;
  padding-top: 80px;
  position: relative;
}
.ryugasaki_intro {
  background: rgba(0,0,0,0.6);
  border-radius: 8px;
  margin: 0 auto;
  padding: 50px 100px;
  text-align: center;
  max-width: 800px;
  box-sizing: border-box;
}
.ryugasaki_intro h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  margin: 0 0 30px;
}
.ryugasaki_intro p {
  color: #fff;
  line-height: 2;
  margin: 0 0 1.5em;
  text-shadow: 0 0 6px rgba(0,0,0,0.3);
}
.ryugasaki_intro .btn {
  border: 0px;
  justify-content: center;
  font-weight: 400;
  margin: 50px auto 10px;
  width: 250px;
}
.ryugasaki_intro .btn svg {
  margin-left: 15px;
}
.ryugasaki_intro .btn:hover svg path {
  stroke: #fff;
}
@media (max-width: 767px) {
  .ryugasaki_intro {
    padding: 50px 30px;
  }
  .ryugasaki_intro h2 {
    font-size: 24px;
  }
}


/* inner page
---------------------------------------------------------------------------------------------------- */
.page_head {
  background: url("../images/page-head_img.jpg") no-repeat right top / cover;
}
.page_head_title {
  color: #fff;
  padding: 100px 0;
}
.page_head_title .page_head_title_en {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  letter-spacing: 1px;
}
.page_head_title .page_head_title_en svg {
  margin-right: 10px;
}
.page_head_title h1 {
  font-size: 40px;
  font-weight: 400;
  margin: 5px 0 0;
}
@media (max-width: 767px) {
  .page_head_title {
    padding: 50px 0;
  }
  .page_head_title .page_head_title_en {
    font-size: 14px;
  }
  .page_head_title h1 {
    font-size: 32px;
  }
}

ul.sidebar_menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.sidebar_menu li {
  margin-bottom: 5px;
}
ul.sidebar_menu li a {
  border-left: 3px solid #D6D6D6;
  color: #29397F;
  display: block;
  font-size: 18px;
  font-weight: 400;
  padding: 0.75em 0 0.75em 1em;
  text-decoration: none;
}
ul.sidebar_menu li a.active {
  border-left: 3px solid #0078BF;
}
ul.sidebar_menu li a .num {
  display: inline-block;
  font-family: "Inter";
  font-weight: 400;
  margin-right: 0.5em;
}
@media (max-width: 767px) {
  ul.sidebar_menu {
    background: #fff;
    border: 1px solid #D6D6D6;
    border-radius: 8px;
    padding: 15px;
  }
  ul.sidebar_menu li {
    margin: 0;
  }
  ul.sidebar_menu li a {
    border: 0;
    font-size: 14px;
    padding: 0.5em;
  }
  ul.sidebar_menu li a.active {
    border: 0;
  }
}

.main_content_box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  margin-bottom: 50px;
  position: relative;
}
.main_content_box_main {
  padding: 30px;
}
.main_content_box_btm {
  background: rgba(0,0,0,0.03);
  border-radius: 0 0 8px 8px;
  padding: 15px 30px;
}
@media (max-width: 767px) {
  .main_content_box {
    margin-bottom: 30px;
  }
}
@media (max-width: 599px) {
  .main_content_box_main {
    padding: 20px;
  }
  .main_content_box_btm {
    padding: 15px 20px;
  }
}

.main_content_sec_title {
  color: #29397F;
  font-size: 40px;
  font-weight: 500;
  margin: 0 0 0.75em;
  padding-top: 70px;
}
.main_content_sec_title small {
  font-size: 20px;
}
.main_content_sec_title_sub {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 500;
}
.main_content_sec_title_sub svg {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .main_content_sec_title {
    font-size: 26px;
    padding-top: 30px;
  }
  .main_content_sec_title small {
    font-size: 14px;
  }
  .main_content_sec_title_sub {
    font-size: 18px;
  }
}

.table {
  border: 0;
  font-size: 14px;
  width: 100%;
  margin-top: 30px;
}
.table thead th, .table thead td {
  color: #707070;
  font-size: 12px;
  font-weight: 300;
  padding: 0.5em 1em;
  text-align: center;
}
.table tbody th, .table tbody td {
  border-bottom: 1px solid #D6D6D6;
  padding: 1em 1em;
}
.table tbody tr:first-child th, .table tbody tr:first-child td {
  border-top: 1px solid #D6D6D6;
}
.table tbody th {
  background: rgba(0,120,191,0.1);
  font-weight: 300;
}

ul.list, dl.list {
  font-size: 1em;
  margin: 0;
  padding: 0;
  line-height: 1.8;
}
ul.list > li, dl.list > dd {
  list-style: none;
  margin-left: 0;
  padding-left: 1.25em;
  padding-bottom: 0.5em;
  position: relative;
}
ul.list > li::before, dl.list > dd::before {
  content: "・";
  display: block;
  position: absolute;
  left: 0;
}
ul.list > li > ul {
  margin-top: 1em;
}
ul.list > li > ul > li > ul {
  margin-top: 1em;
}

/* 数字付きリスト */
ul.list_decimal {
  font-size: 1em;
  margin: 0 0 1.5em;
  padding: 0;
  line-height: 1.8;
}
ul.list_decimal > li {
  list-style: decimal;
  padding-left: 1em;
  padding-bottom: 1em;
  margin-left: 1em;
}
ul.list_decimal > li::before {
  display: none;
}

/* （数字）付きリスト */
ul.list_decimal_parentheses {
  font-size: 1em;
  margin: 0;
  padding: 0;
  line-height: 1.8;
}
ul.list_decimal_parentheses > li {
  list-style-type: none;
  counter-increment: number;
  position: relative;
  padding-left: 3em;
}
ul.list_decimal_parentheses > li::before {
  content: "（" counter(number) "）";
  display: inline-block;
  position: absolute;
  left: 0;
}

/* （カタカナ）付きリスト */
ul.list_decimal_katakana {
  font-size: 1em;
  margin: 0;
  padding: 0;
  line-height: 1.8;
}
ul.list_decimal_katakana > li {
  list-style-type: none;
  counter-increment: count-katakana;
  position: relative;
  padding-left: 3.5em;
}
ul.list_decimal_katakana > li::before {
  content: "（" counter(count-katakana, katakana-iroha) "）";
  display: inline-block;
  position: absolute;
  left: 0;
}

dl.note_list, ul.note_list {
  font-size: 11px;
}
dl.note_list dt {
  margin: 0 0 0.25em;
}

p.note_text {
  font-size: 11px;
  margin: 0 0 0.5em;
}

ul.description {
  font-size: 12px;
}


/* user-guide
-------------------------------------------------- */
ul.tel_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.tel_list li {
  margin-bottom: 10px;
}
ul.tel_list li a {
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
  padding-right: 10px;
  width: 300px;
  transition: none;
}
ul.tel_list li a span.ttl {
  width: 110px;
}
ul.tel_list li a span.tel {
  font-family: "Inter";
  color: #0078BF;
  text-decoration: underline;
  position: relative;
}
ul.tel_list li a span.tel svg {
  margin-right: 10px;
  position: relative;
  top: 3px;
}
ul.tel_list li a:hover span.tel {
  color: #fff;
}

.cnt_cancel {
}
.cnt_cancel_table_title {
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 0;
  padding-left: 22px;
  position: relative;
}
.cnt_cancel_table_title span {
  font-size: 0.8em;
  font-weight: 300;
  display: inline-block;
  margin-top: 3px;
  margin-left: 5px;
}
.cnt_cancel_table_title::before {
  content: "";
  background: #0078BF;
  display: block;
  position: absolute;
  top: 6px;
  height: 12px;
  width: 16px;
  left: -8px;
  transform: translateX(50%);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.cnt_cancel_table {
  margin-top: 0;
}
.cnt_cancel_table thead td {
  color: #000;
  font-size: 1em;
  font-weight: 400;
}
.cnt_cancel_table tbody th {
  font-weight: 400;
  width: 150px;
}
.cnt_cancel_table tbody td {
  text-align: center;
}
.cnt_cancel_table tbody td:last-child {
  border-left: 1px dotted #D6D6D6;
}
@media (max-width: 599px) {
  .cnt_cancel_table tbody th {
    width: 100px;
  }
}

.cnt_checkin::after {
  content: "";
  background: #0078BF;
  display: block;
  position: absolute;
  bottom: -30px;
  height: 30px;
  width: 40px;
  left: calc(50% - 40px);
  transform: translateX(50%);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.cnt_checkin:last-child::after {
  display: none;
}
.cnt_checkin_img {
  background: url("../images/checkin-1_img.jpg") no-repeat right 50% / cover;
  border-radius: 8px 8px 0 0;
  height: 200px;
  position: relative;
}
.cnt_checkin_img02 {
  background-image: url("../images/checkin-2_img.jpg");
}
.cnt_checkin_img .number {
  background: #fff;
  color: #0078BF;
  font-family: "Inter";
  font-size: 30px;
  font-weight: 500;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1px solid #fff;
  outline-offset: 5px;
  position: absolute;
  left: 20px;
  top: 20px;
}
.cnt_checkin_title {
  color: #0078BF;
  font-size: 1.5em !important;
  margin-top: 0;
}
.cnt_checkin_table tbody th {
  font-weight: 400;
  text-align: left;
}
.cnt_checkin_sample {
  margin: 50px auto 20px;
  text-align: center;
  width: 466px;
  max-width: 466px;
}
.cnt_checkin_sample p {
  color: #707070;
  margin-bottom: 10px;
  text-align: left;
}
@media (max-width: 767px) {
  .cnt_checkin_sample {
    width: 90%;
    max-width: 90%;
  }
}
@media (max-width: 599px) {
  .cnt_checkin_img {
    /*background-position: right -100px top 50%;*/
  }
}

.cnt_support {
  margin-bottom: 20px;
}
.cnt_support h3.title {
  border-bottom: 1px solid #0078BF;
  margin-top: 0;
  padding-bottom: 10px;
}


/* schedule-fee
-------------------------------------------------- */
.schedule-fee .page_head_title {
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .schedule-fee .page_head_title {
    padding-bottom: 150px;
  }
}

.schedule_check {
  position: relative;
  top: -120px;
  margin-bottom: -150px;
}
.schedule_check .main_content_box {
  padding: 30px 40px;
  position: relative;
}
@media (max-width: 599px) {
  .schedule_check .main_content_box {
    padding: 30px 20px;
  }
}
dl.schedule_check_search {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
dl.schedule_check_search:first-child {
  margin-bottom: 30px;
}
dl.schedule_check_search dt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 400;
  width: 140px;
}
dl.schedule_check_search dt svg {
  margin-right: 0.75em;
}
.datepicker_input_wrp {
  position: relative;
  width: 250px;
}
.datepicker_input_wrp::after {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -6px;
  transform: rotate(45deg);
  pointer-events: none;
}

.ui-widget-header { /* plugin override */
  background: transparent !important;
  border: transparent !important;
}
.ui-state-default {
  border-color: transparent !important;
}
#date.ui-datepicker-input:focus, #date:focus, 
#current-day.ui-datepicker-input:focus, #current-day:focus {
  border: 1px solid #29397F !important;
  outline: none;
}
.ui-state-active {
  border: 1px solid #0078BF !important;
  background: #0078BF !important;
  color: #fff !important;
}


dl.schedule_check_search dd {
  margin: 0 20px 0 0;
}
dl.schedule_check_search dd input {
  position: relative;
  width: 250px;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  box-sizing: border-box;
  height: 44px;
}
dl.schedule_check_search dd button {
  position: relative;
  width: 170px;
  padding: 10px;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  box-sizing: border-box;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease-out;
}
dl.schedule_check_search dd button svg {
  margin: 0 10px;
}
dl.schedule_check_search dd button:hover, dl.schedule_check_search dd button.active {
  background: #29397F;
  border-color: #29397F;
  color: #fff;
}
dl.schedule_check_search dd button:hover svg path, dl.schedule_check_search dd button.active svg path {
  stroke: #fff;
}
dl.schedule_check_search dd.link {
  margin-left: auto;
}
dl.schedule_check_search dd.link a {
  font-size: 0.9em;
}
@media (max-width: 1000px) {
  dl.schedule_check_search {
    flex-wrap: wrap;
  }
  dl.schedule_check_search:nth-child(2) dt {
    width: 100%;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .schedule_check {
    margin-bottom: -100px;
  }
  dl.schedule_check_search:first-child dt {
    width: 100%;
    margin-bottom: 15px;
  }
  dl.schedule_check_search:first-child dd {
    width: 100%;
  }
  dl.schedule_check_search:first-child dd.link {
    margin-top: 10px;
  }
  dl.schedule_check_search:nth-child(2) {
    justify-content: flex-start;
  }
  dl.schedule_check_search:nth-child(2) dd {
    margin-bottom: 10px;
  }
  dl.schedule_check_search:nth-child(2) dd button {
    font-size: 18px;
  }
}

.destination_title {
  color: #000;
  font-size: 30px;
  position: relative;
}
.destination_title .area {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: #29397F;
  font-size: 50px;
  position: relative;
  margin-right: 10px;
}
.area_departure, .area_arrival {
  position: relative;
}
.destination_title .area .en {
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: -12px;
}
.destination_title .area svg {
  margin: 0 15px;
}
.destination_title .current_time {
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  right: 0;
  bottom: 0;
}
.destination_title + .btn {
  float: right;
  position: relative;
  top: -80px;
}
.destination_title_sub {
  color: #29397F;
  font-size: 30px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .destination_title {
    font-size: 24px;
  }
  .destination_title .area {
    font-size: 36px;
  }
  .destination_title .area .en {
    font-size: 12px;
  }
  .destination_title + .btn {
    position: relative;
    top: 0;
    float: none;
  }
}

.date_switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -75px;
  margin-bottom: -45px;
}
.date_switcher_prev, .date_switcher_next, .date_switcher_today {
  background: #fff;
  border: 1px solid #fff;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.date_switcher_prev {
  border-radius: 22px 0 0 22px;
  width: 90px;
}
.date_switcher_next {
  border-radius: 0 22px 22px 0;
  width: 90px;
}
.date_switcher_prev svg {
  margin-right: 5px;
}
.date_switcher_next svg {
  margin-left: 5px;
}
.date_switcher_today {
  width: 250px;
  margin: 0 10px;
  text-align: center;
  color: #29397F;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0;
  height: 44px;
}
.date_switcher_prev:hover, .date_switcher_next:hover {
  border: 1px solid #29397F;
  box-shadow: 0 0 10px rgba(41,57,127,0.1);
}
@media (max-width: 767px) {
  .date_switcher {
    top: -10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .date_switcher_prev, .date_switcher_next, .date_switcher_today {
    font-size: 14px;
  }
  .date_switcher_today {
    width: 200px;
    margin: 0 5px;
  }
}

.schedule_timetable_details h4 {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 10px;
}
.schedule_timetable_details h4 svg {
  margin: 0 10px;
}
.schedule_timetable_details h4 + a.text_link {
  float: right;
  font-size: 0.9em;
  position: relative;
  top: 8px;
}

table.schedule_timetable_table {
  font-size: 16px;
  margin: -10px 0 0;
}
table.schedule_timetable_table thead td {
  white-space: nowrap;
}
table.schedule_timetable_table td {
  border: 0;
  padding: 0.75em 1em;
  text-align: center;
}
table.schedule_timetable_table td:nth-child(2) .en, table.schedule_timetable_table td:nth-child(4) .en {
  margin-left: 0.5em;
}
table.schedule_timetable_table td:nth-child(3) {
  font-size: 10px;
}
table.schedule_timetable_table tbody tr.odd {
  background: rgba(0,0,0,0.03);
}
table.schedule_timetable_table span.status {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 110px;
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  margin: 0 auto;
}
table.schedule_timetable_table  td.message_warning {
  padding-top: 0;
}
table.schedule_timetable_table  td.message_warning p {
  border: 1px solid #CA0000;
  color: #CA0000;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0.5em 1em;
  text-align: left;
}
@media (max-width: 767px) {
  table.schedule_timetable_table {
    font-size: 14px;
  }
  table.schedule_timetable_table td {
    padding: 0.75em 0.5em;
  }
}
@media (max-width: 599px) {
  table.schedule_timetable_table td .en {
    display: block;
    margin-left: 0 !important;
  }
}

.schedule_fee_details h4 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 10px;
}
.schedule_fee_details .main_content_box {
  margin-bottom: 15px;
}
dl.schedule_fee_table {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
dl.schedule_fee_table dt, dl.schedule_fee_table dd {
  padding: 1.5em 1em;
  box-sizing: border-box;
}
dl.schedule_fee_table dt {
  border-right: 1px dotted rgba(0,0,0,0.3);
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
dl.schedule_fee_table dt span {
  display: block;
  font-size: 24px;
  font-weight: 500;
  margin-top: 5px;
  width: 100%;
  text-align: center;
}
dl.schedule_fee_table dd {
  text-align: center;
  margin: 0;
}
dl.schedule_fee_table dd .age {
  background: rgba(0,0,0,0.06);
  height: 30px;
  border-radius: 15px;
  font-size: 13px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
dl.schedule_fee_table dd .price {
  color: #29397F;
  font-weight: 500;
}
dl.schedule_fee_table dd .price .en {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
}
dl.schedule_fee_table dd .price .small {
  font-size: 13px;
  line-height: 1.6;
  display: block;
}

dl.schedule_fee_table.horizontal dt {
  width: 220px;
  flex-wrap: nowrap;
}
dl.schedule_fee_table.horizontal dt span {
  display: inline;
  font-size: 20px;
  margin-top: 0;
  text-align: left;
  margin-left: 15px;
}
  @media (max-width: 599px) {
  dl.schedule_fee_table {
    flex-wrap: wrap;
    justify-content: center;
  }
  dl.schedule_fee_table dt {
    width: 100%;
    border-bottom: 1px dotted rgba(0,0,0,0.3);
    border-right: 0;
    justify-content: flex-start;
    padding: 1em 1em;
  }
  dl.schedule_fee_table dt span {
    display: inline;
    width: auto;
    margin-left: 15px;
    font-size: 18px;
  }
  dl.schedule_fee_table dd {
    width: 50%;
  }
  dl.schedule_fee_table.horizontal {
    align-items: center !important;
  }
  dl.schedule_fee_table.horizontal dt {
    border-right: 1px dotted rgba(0,0,0,0.3) !important;
    border-bottom: 0;
    width: 220px;
    padding: 1.5em 1em;
  }
  dl.schedule_fee_table.horizontal dt span {
    margin-left: 10px;
  }
  dl.schedule_fee_table.horizontal dd {
    width: calc(100% - 220px);
    text-align: right;
    padding: 1.5em 1em;
  }
  dl.schedule_fee_table dd .price .en {
    font-size: 24px;
  }
}


/* baggage
-------------------------------------------------- */
.baggage_prohibited .main_content_box_main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.baggage_prohibited .main_content_sec_title_sub {
  color: #29397F;
  font-size: 32px;
  margin-top: 50px;
}
.baggage_prohibited .main_content_box {
  margin-bottom: 20px;
}
.baggage_prohibited_img {
  width: 70px;
}
.baggage_prohibited_text {
  width: calc(100% - 90px);
}
.baggage_prohibited_text h3 {
  margin-top: 0;
}
@media (max-width: 767px) {
  .baggage_prohibited .main_content_sec_title_sub {
    font-size: 21px;
  }
}


.baggage_fee_table_title {
  border-bottom: 1px solid #000;
  padding-bottom: 0.5em;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}
.baggage_fee_table_title span.free {
  font-size: 0.8em;
}
.baggage_fee_table_title small {
  font-size: 12px;
  font-weight: 300;
}
table.baggage_fee_table tbody tr, table.baggage_fee_table tbody td {
  border-bottom: 0px;
}
table.baggage_fee_table tbody tr:first-child th, table.baggage_fee_table tbody tr:first-child td {
  border-top: 0px;
}
table.baggage_fee_table tbody tr.odd {
  background: rgba(0,0,0,0.03);
}
table.baggage_fee_table tbody td:first-child {
  text-align: center;
  width: 50%;
}
table.baggage_fee_table tbody td span {
  display: inline-block;
  margin: 0 auto;
  width: 8em;
  text-align: left;
}
table.baggage_fee_table tbody td:last-child {
  text-align: center;
  width: 50%;
}
@media (max-width: 599px) {
  table.baggage_fee_table td {
    font-size: 12px;
  }
  table.baggage_fee_table tbody td:first-child {
    width: 40%;
  }
  table.baggage_fee_table tbody td:last-child {
    width: 60%;
  }
}

.baggage_checkin {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 10px;
}
.baggage_checkin_img {
  width: 120px;
  margin-bottom: 30px;
}
.baggage_checkin_img img {
  max-height: auto;
  max-width: 100%;
}
.baggage_checkin_text {
  width: calc(100% - 150px);
}
.baggage_checkin_text h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
}
@media (max-width: 599px) {
  .baggage_checkin_img {
    width: 70px;
  }
  .baggage_checkin_text {
    width: calc(100% - 100px);
  }
}


/* guide-access
-------------------------------------------------- */
.guide-access_details_title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.guide-access_details_title a.btn {
  margin-bottom: 30px;
}
.guide-access_details_title a.btn svg {
  margin-right: 0.5em;
}
@media (max-width: 767px) {
  .guide-access_details_title a.btn {
    margin-bottom: 20px;
  }
}
.guide-access_details dl {
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.guide-access_details dl dt {
  box-sizing: border-box;
  border-bottom: 1px solid #D6D6D6;
  margin: 0;
  padding: 1em 0;
  font-weight: 500;
  width: 25%;
  display: flex;
  align-items: center;
}
.guide-access_details dl dt svg {
  margin: 0 10px;
}
.guide-access_details dl dd {
  box-sizing: border-box;
  border-bottom: 1px solid #D6D6D6;
  margin: 0;
  padding: 1em 0;
  width: 75%;
}
.guide-access_details dl dt.w100 {
  border-bottom: 0;
  padding-bottom: 0;
  width: 100%;
}
.guide-access_details dl dd.w100 {
  padding-left: 40px;
  padding-top: 0.5em;
  width: 100%;
}
@media (max-width: 599px) {
  .guide-access_details dl {
    display: block;
  }
  .guide-access_details dl dt {
    border-bottom: 0;
    padding-bottom: 0;
    width: 100%;
  }
  .guide-access_details dl dd {
    padding-top: 0.5em;
    padding-left: 40px;
    width: 100%;
  }
}
.guide-access_details_caution {
  background: rgba(255,233,92,0.15);
  border: 1px solid rgba(255,233,92,0.5);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.guide-access_details_caution svg {
  width: 30px;
  margin-left: 10px;
}
.guide-access_details_caution p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  width: calc(100% - 60px);
}
@media (max-width: 599px) {
  .guide-access_details_caution {
    padding: 10px;
  }
  .guide-access_details_caution p {
    font-size: 12px;
  }
}
.map {
  position: relative;
  width: 100%;
  padding-top: 60%;
  height: 0;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* floormap-
-------------------------------------------------- */
.floormap .sub_header {
  margin-bottom: 60px;
}
.floormap_map {
  padding-top: 0;
  padding-bottom: 50px;
  text-align: center;
}
.floormap_map h2 {
  margin-top: 0;
  margin-bottom: 20px;
  position: relative;
  top: -20px;
}
.floormap_map h2 > span {
  background: #fff;
  border: 2px solid #0078BF;
  border-radius: 4px;
  color: #0078BF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 2em;
  line-height: 1;
}
.floormap_map h2 > span .en {
  letter-spacing: 0.3em;
  position: relative;
  bottom: -2px;
}

.floormap_map_list {
  background: #fff;
  border: 1px solid #D6D6D6;
  padding: 30px 30px 10px;
}
ul.floormap_mark {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
ul.floormap_mark li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  margin-right: 20px;
  width: calc(25% - 20px);
}
ul.floormap_mark li img {
  margin-right: 15px;
}
ul.floormap_area {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
ul.floormap_area li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  margin-right: 50px;
  width: auto;
}
ul.floormap_area li span {
  display: inline-block;
  height: 24px;
  width: 48px;
  margin-right: 15px;
  border: 1px solid #ccc;
}
ul.floormap_area li span.floormap_area_lobby {
  background: #fffdee;
}
ul.floormap_area li span.floormap_area_restriction {
  background: #e1f0f9;
}
ul.floormap_area li span.floormap_area_office {
  background: #ededed;
}
@media (max-width: 767px) {
  ul.floormap_mark li {
    width: calc(50% - 20px);
  }
}
@media (max-width: 599px) {
  ul.floormap_mark li {
    margin-right: 0px;
    width: 100%;
  }
}



/* news-info & news-info-detail
-------------------------------------------------- */
.news-info {
}
.news-info-detail .sub_header .date {
  color: #707070;
  font-size: 12px;
  display: block;
  margin-bottom: 12px;
}
.news-info-detail_body {
  padding-top: 20px;
  text-align: center;
}
.news-info-detail_body img {
  margin: 50px auto;
  max-width: 100%;
}
.news-info-detail_body p {
  text-align: left;
}
@media (max-width: 767px) {

}

/* faq
-------------------------------------------------- */
dl.faq_list {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
  position: relative;
  padding: 20px;
}
dl.faq_list dt {
  font-weight: 400;
  padding: 0 40px;
  cursor: pointer;
}
dl.faq_list dt::before {
  content: "Q";
  color: #0078BF;
  font-family: "Inter";
  font-weight: 500;
  font-size: 30px;
  position: absolute;
  left: 20px;
  top: 13px;
}
dl.faq_list dt::after {
  content: "";
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  display: block;
  height: 12px;
  width: 12px;
  position: absolute;
  right: 30px;
  top: 20px;
  transform: rotate(45deg);
  transition: all .25s ease-out;
}
dl.faq_list dt.active::after {
  transform: rotate(-135deg);
  top: 30px;
}
dl.faq_list dd {
  display: none;
  position: relative;
  margin: 20px 0 0;
  padding-left: 40px;
  padding-top: 20px;
  border-top: 1px solid #0078BF;
}
dl.faq_list dd::before {
  content: "A";
  color: #0078BF;
  font-family: "Inter";
  font-weight: 500;
  font-size: 30px;
  position: absolute;
  left: 2px;
  top: 18px;
}
dl.faq_list dd p:last-child {
  margin-bottom: 0;
}


/* aircraft-info
-------------------------------------------------- */
.aircraft-info .page_head {
  background: #365faf url("../images/aircraft-info_img.jpg") no-repeat 50% 50% / cover;
}
.aircraft-info .page_head .container-fluid {
  text-align: right;
}
.aircraft-info_details {
  margin-top: 200px;
  margin-left: auto;
  width: 75%;
}
.aircraft-info_details h2 {
  color: rgba(255,255,255,0.5);
  font-size: 80px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  margin: 0 0 15px;
}
.aircraft-info_details ul.aircraft-info_details_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-left: auto;
  text-align: left;
}
.aircraft-info_details ul.aircraft-info_details_list li {
  border-top: 1px solid rgba(255,255,255,0.5);
  width: calc(33.333% - 15px);
  color: rgba(255,255,255,0.8);
  font-family: "Inter";
  font-size: 24px;
  font-weight: 400;
  padding: 2px 0 20px;
}
.aircraft-info_details ul.aircraft-info_details_list .title {
  display: block;
  color: rgba(255,255,255,0.5);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 5px;
}
.aircraft-info_details ul.aircraft-info_details_list sup {
  font-size: 10px;
}
.aircraft-info_details ul.aircraft-info_details_list.size li {
  border-top: 1px solid rgba(255,255,255,0.5);
  width: calc(20% - 15px);
}
.aircraft-info_details .text {
  color: rgba(255,255,255,0.5);
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .aircraft-info .page_head {
    background-size: 100% auto;
    background-position: center top;
  }
  .aircraft-info .page_head .page_head_title {
    padding-bottom: 0;
    padding-top: 200px;
  }
  .aircraft-info_details {
    margin-top: 30px;
    width: 100%;
  }
  .aircraft-info_details h2 {
    font-size: 8vw;
  }
  .aircraft-info_details ul.aircraft-info_details_list li {
    font-size: 18px;
  }
  .aircraft-info_details ul.aircraft-info_details_list .title {
    font-size: 12px;
  }
}
@media (max-width: 599px) {
  .aircraft-info_details ul.aircraft-info_details_list li {
    font-size: 14px;
     width: calc(33.333% - 5px);
  }
  .aircraft-info_details ul.aircraft-info_details_list .title {
    font-size: 11px;
  }
  .aircraft-info_details ul.aircraft-info_details_list sup {
    font-size: 8px;
  }
  .aircraft-info_details ul.aircraft-info_details_list.size li {
    width: calc(20% - 5px);
  }
}

.aircraft-info_text {
  padding-top: 100px;
  padding-bottom: 100px;
}
.aircraft-info_text .text {
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 599px) {
  .aircraft-info_text {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.slider-aircraft {
  margin-bottom: 10px;
}
.thumbnail-aircraft {
  max-width: 940px;
  margin: 0 auto;
  padding-bottom: 70px;
  display: flex !important;
  align-items: center;
}
.thumbnail-aircraft img {
  opacity: 0.5;
  max-width: calc(100% - 10px);
  cursor: pointer;
  margin: 5px;
}
.thumbnail-aircraft .slick-current img {
  opacity: 1;
}
.thumbnail-aircraft .slick-prev {
  margin-right: 10px;
  width: 45px;
}
.thumbnail-aircraft .slick-next {
  margin-left: 10px;
  width: 45px;
}


/* recruit & recruit-detail
-------------------------------------------------- */
.recruit_head {
  background: rgba(0,120,191,0.15) url("../images/recruit_map.png") no-repeat left bottom;
  background-size: 60% auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 200px;
}
.recruit_head .page_head_title {
  padding-left: 50px;
}
.recruit_head .page_head_title_en {
  color: #0078BF;
  font-weight: 600;
}
.recruit_head .page_head_title_en::after {
  content: "";
  display: block;
  height: 1px;
  width: 200px;
  background: #0078BF;
  margin-left: 10px;
  margin-top: 2px;
}
.recruit_head .page_head_title h1 {
  font-size: 4vw;
  font-weight: 600;
  background: linear-gradient(90deg, #019A67 0%, #269BA8 33%, #0078BF 66%, #29397F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 30px 0;
}
.recruit_head .page_head_title p {
  color: #000;
  font-size: 1.5vw;
  font-weight: 500;
}
.recruit_head_img {
  width: 45%;
}
@media (max-width: 599px) {
  .recruit_head {
    background: rgba(0,120,191,0.15) url("../images/recruit_map.png") no-repeat right -110px bottom 0;
    background-size: 1000px auto;
    padding-bottom: 500px;
    display: block;
  }
  .recruit_head .page_head_title {
    padding-left: 30px;
  }
  .recruit_head .page_head_title h1 {
    font-size: 7.5vw;
  }
  .recruit_head .page_head_title p {
    font-size: 3vw;
  }
  .recruit_head_img {
    display: none;
    margin-left: 30px;
  }
}

.recruit_intro_top {
  background: linear-gradient(180deg, rgba(0,120,191,0.15) 0%, #F5FAFF 100%);
  padding-top: 50px;
}

.recruit_intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 100px;
}
.recruit_intro .recruit_intro_img {
  width: 43%;
  position: relative;
  z-index: 2;
}
.recruit_intro_text {
  width: 50%;
}
.recruit_intro_text h2 {
  background: linear-gradient(90deg, #019A67 0%, #269BA8 33%, #0078BF 66%, #29397F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  font-size: 60px;
  font-weight: 200;
  font-style: italic;
  opacity: 0.3;
}
.recruit_intro_text h2::before {
  content: "";
  display: block;
  height: 1px;
  width: 200px;
  background: rgba(0,120,191,0.5);
  position: absolute;
  left: -220px;
  top: 50%;
  z-index: 1;
}
.recruit_intro_text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 2.5;
  padding-right: 30px;
}
.recruit_intro_right .recruit_intro_img {
  order: 2;
}
.recruit_intro_right .recruit_intro_text {
  order: 1;
  text-align: right;
}
.recruit_intro_right .recruit_intro_text h2::before {
  left: auto;
  right: -220px;
}
.recruit_intro_right .recruit_intro_text p {
  padding-right: 0;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .recruit_intro {
    display: block;
  }
  .recruit_intro .recruit_intro_img {
    width: 100%;
  }
  .recruit_intro_text {
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
  }
  .recruit_intro_text h2 {
    font-size: 40px;
    padding-left: 0.5em;
    padding-top: 0.5em;
  }
  .recruit_intro_text h2::before {
    height: 100px;
    width: 1px;
    background: rgba(0,120,191,0.5);
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: auto;
    top: auto;
    z-index: 3;
  }
  .recruit_intro_text p {
    font-size: 16px;
    line-height: 2;
  }
  .recruit_intro_right .recruit_intro_text {
    text-align: left;
  }
  .recruit_intro_right .recruit_intro_text h2::before {
    left: 0px;
    right: auto;
    bottom: 0px;
  }
  .recruit_intro_right .recruit_intro_text p {
    padding-left: 0;
  }
}

.recruit_description_text {
  background: linear-gradient(90deg, rgba(1,154,103,0.2) 0%, rgba(38,155,168,0.2) 33%, rgba(0,120,191,0.2) 66%, rgba(41,57,127,0.2) 100%);
  padding-top: 70px;
  padding-bottom: 200px;
  text-align: center;
}
.recruit_description_text p {
  color: #29397F;
  font-size: 24px;
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 767px) {
  .recruit_description_text p {
    font-size: 16px;
  }
}

.recruit_description {
  position: relative;
  top: -150px;
  margin-bottom: -50px;
}
.recruit_description .main_content_box {
  box-shadow: none;
  text-align: center;
  padding: 30px 80px 50px;
}
.recruit_description .main_content_box h2 {
  color: #29397F;
  font-size: 40px;
}
.recruit_description dl.recruit_description_list {
  margin: 50px 0 0;
  padding: 0;
  text-align: left;
}
.recruit_description dl.recruit_description_list dt {
  margin: 0 0 20px;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
}
.recruit_description dl.recruit_description_list dd {
  margin: 0;
  padding: 0 0 10px;
}
.recruit_description dl.recruit_description_list dd .btn {
  height: 70px;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  padding-left: 2em;
}
.recruit_description dl.recruit_description_list dd .btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 70px;
  border-left: 1px dotted #ccc;
  position: absolute;
  right: 0;
}
.recruit_description dl.recruit_description_list dd .btn:hover {
  border-color: #0078BF;
  color: #0078BF;
}
.recruit_description dl.recruit_description_list dd .btn:hover::after {
  display: none;
}
.recruit_description dl.recruit_description_list dd .btn:hover span {
  border-color: #0078BF;
}
.recruit_description dl.recruit_description_list dd .btn:hover span svg path {
  stroke: #0078BF;
}
@media (max-width: 767px) {
  .recruit_description .main_content_box {
    padding: 20px 30px 30px;
  }
  .recruit_description .main_content_box h2 {
    font-size: 28px;
  }
  .recruit_description dl.recruit_description_list dt {
    font-size: 16px;
  }
  .recruit_description dl.recruit_description_list dd {
    padding: 0;
  }
  .recruit_description dl.recruit_description_list dd .btn {
    height: 60px;
    font-size: 14px;
    padding-left: 1em;
  }
  .recruit_description dl.recruit_description_list dd .btn span {
    width: 60px;
  }
}

.recruit-detail .general_info_list > dt {
  padding: 1.5em 0;
  width: 20%;
} 
.recruit-detail dl.general_info_list > dd {
  padding: 1.5em 0;
  width: 80%;
}
@media (max-width: 767px) {
  .recruit-detail .general_info_list > dt {
    padding: 2em 0 0;
    width: 100%;
  }
  .recruit-detail dl.general_info_list > dd {
    border-top: 0px;
    padding: 1em 0 2em;
    width: 100%;
  }
}


/* general page
-------------------------------------------------- */
.no_page_head {
  padding-top: 70px;
}

.general_content {
  margin: 30px;
}

dl.general_info_list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
dl.general_info_list > dt {
  box-sizing: border-box;
  margin: 0;
  padding: 2em 0;
  border-top: 1px solid #D6D6D6;
  width: 30%;
  font-weight: 400;
  color: #29397F;
}
dl.general_info_list > dd {
  box-sizing: border-box;
  margin: 0;
  padding: 2em 0;
  border-top: 1px solid #D6D6D6;
  width: 70%;
  font-size: 1em;
  line-height: 1.8;
}

dl.general_info_list_member {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: -1em;
}
dl.general_info_list_member dt {
  margin: 0;
  border-top: 0px;
  border-bottom: 1px dotted #D6D6D6;
  padding: 1em 0;
  width: 50%;
  font-weight: 400;
}
dl.general_info_list_member dd {
  margin: 0;
  border-top: 0px;
  border-bottom: 1px dotted #D6D6D6;
  padding: 1em 0;
  width: 50%;
}
@media (max-width: 767px) {
  .general_content {
    margin: 0;
  }
  dl.general_info_list {
    display: block;
  }
  dl.general_info_list > dt {
    padding: 2em 0 0;
    width: 100%;
  }
  dl.general_info_list > dd {
    border-top: 0px;
    padding: 1em 0 2em;
    width: 100%;
  }
  dl.general_info_list_member {
    margin-top: 0;
  }
}

.general_consent {
  background: rgba(0,0,0,0.03);
  padding: 10px;
  text-align: center;
}
.general_consent p {
  margin: 0;
}















