/* GLOBAL STYLES
-------------------------------------------------- */
body {
	background: #fff;
  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: #29397F;
	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: #29397F;
}
a.text_link:hover svg path, a.text_link:focus svg path {
  stroke: #29397F;
}


/* 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: 230px;
  transition-duration: .4s;
  z-index: 2;
  margin-bottom: 15px;
}
.btn.sm {
  height: 40px;
  width: auto;
  font-size: 14px;
  padding: 0 1em;
}
.btn.primary {
  background: #29397F !important;
  border-color: #29397F!important;
  color: #fff;
}
.btn.secondary {
  background: #000;
  border-color: #000;
  color: #fff;
}
.btn.default {
  background: #fff;
  border: 1px solid #707070;
  color: #000;
}
.btn:hover {
  transform: scale(1.02);
}

.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_contact {
  justify-content: space-between;
  font-size: 16px;
}
.btn_contact span {
  display: flex;
  justify-content: center;
  width: calc(100% - 37px);
}
.btn_contact svg {
  margin-right: 15px;
}
.btn_contact::after {
  background: #29397F;
}
.btn_contact:hover::after {
  transform: scale(1, 1);
}
.no_button{
  pointer-events: none;
  border-radius: 8px;
  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: 0px;
  transition-duration: .4s;
  z-index: 2;
  margin-bottom: 15px;
  background: #fff;
  border-color: #fff;
  color: #fff;
}
.delarrow svg path {
  stroke: #fff;
}

@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: 2;
  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/ryugasaki/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;
}
span.highlight {
  padding: 0 0.1em;
  position: relative;
  z-index: 1;
}
span.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 0;
  background: #fff4a9;
  transition: width .8s ease-out;
  z-index: -1;
}
span.highlight.delighter.started::after {
  width: 100%;
}

.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: transparent;
  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;
  transition: all .25s ease-out;
}
@media (max-width: 1000px) {
  #header .header_menu {
    padding-right: 40px;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  #header .header_menu {
    padding-right: 20px;
  }
}

.header_menu .logo {
  position: absolute;
  left: 15px;
  top: 20px;
}
.header_menu .logo img {
  content: url("../images/ryugasaki/logo_white.png");
}
.header_menu .logo span {
  position: absolute;
  left: 64px;
  top: 45px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2.5px;
  white-space: nowrap;
}
@media (max-width: 1000px) {
  .header_menu .logo {
    top: 20px;
  }
}
@media (max-width: 767px) {
  .header_menu .logo {
    left: 10px;
    top: 12px;
    width: 200px;
  }
  .header_menu .logo a {
    display: block;
    height: 33px;
    width: 200px;
    background: url("../images/ryugasaki/logo.png") no-repeat;
    background-size: 200px 33px;
  }
  .header_menu .logo a img {
    display: none;
  }
  .header_menu .logo a span {
    top: 35px;
    left: 52px;
    color: #29397F;
    font-size: 12px;
    letter-spacing: 1.6px;
  }
}

/* gnav */
.gnav {
  margin-right: 40px;
}
.gnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gnav ul.menu {
  display: flex;
  gap: 40px;
}
.gnav ul.menu > li {
  position: relative;
}
.gnav ul.menu a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  text-shadow: 0 0 3px rgba(0,0,0,0.3);
  position: relative;
}
.gnav ul.menu a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.gnav ul.menu a:hover::before {
  transform: scaleX(1);
}

@media (max-width: 1350px) {
  .gnav {
    display: none;
  }
}

.menu-trigger {
  position: relative;
}
.menu-trigger::after {
  content: "";
  display: inline-block;
  height: 6px;
  width: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  margin-left: 10px;
  position: relative;
  top: -3px;
}

.submenu {
  position: absolute;
  top: 150%;
  left: 0;
  min-width: 180px;
  background: rgba(0,0,0,0.6);
  padding: 10px 0 !important;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
}
.submenu::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid rgba(0,0,0,0.6);
  position: absolute;
  top: -8px;
  left: 40px;
}
.submenu li {
  display: block;
  padding: 0 1em 0.5em 1em;
  text-align: left;
}
.submenu li a {
  display: inline-block;
  padding: .5em 0 0;
  text-shadow: none;
}
.has-submenu.is-open .submenu {
  display: block;
  animation: dropdown 0.3s ease forwards;
}

@keyframes dropdown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header_menu .btn_contact {
  width: 200px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .header_menu .btn_contact {
    display: none;
  }
}

@media (max-width: 767px) {
  .contact {
    background-position: 72% center !important;
  }
}

ul.top_menu {
  list-style: none;
  margin: 15px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  float: right;
}
ul.top_menu li {
  padding: 0 20px;
}
ul.top_menu li a {
  color: #fff;
  font-size: 14px;
  text-shadow: 0 0 3px rgba(0,0,0,0.3);
  position: relative;
}
ul.top_menu li a svg {
  margin-left: 8px;  
}
ul.top_menu li a:hover {
  color: #fff;
}
ul.top_menu li a:hover svg path {
  stroke: #fff;
}
ul.top_menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
ul.top_menu li a:hover::before {
  transform: scaleX(1);
}
ul.top_menu li a svg {
  margin-left: 8px;  
}
@media (max-width: 1000px) {
  ul.top_menu {
    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: block;
  font-size: 1.2rem;
  text-decoration: none;
  margin: 20px 0;
  padding: 10px 0;
  transition: color .2s ease;
}
.menu-overlay nav ul li a:hover {
  color: #0078BF;
}
.menu-overlay nav ul li .menu-overlay_btn {
  font-size: 1.2rem;
  font-weight: 300;
  border: 0;
  background: transparent;
  margin: 0;
  padding: 0;
}
.menu-overlay nav ul li > ul {
  display: none;
}
.menu-overlay_submenu li a {
  font-size: 1em !important;
  margin: 10px 0 !important;
  padding-left: 1.5em !important;
}
.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_contact {
  font-size: 16px;
}

/* no scroll background */
body.no-scroll {
  overflow: hidden;
  height: 100%;
}


/* fixed header */
#header.fixed {
  background: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.15);
  padding-bottom: 15px;
  min-height: 55px;
}
#header.fixed .logo {
  top: 7px;
}
#header.fixed .logo a img {
  content: url("../images/ryugasaki/logo.png");
}
#header.fixed .logo span {
  color: #29397F;
  top: 43px;
}
#header.fixed .header_menu {
  padding-top: 10px;
  padding-right: 50px;
  margin-bottom: 0px;
}
#header.fixed .gnav {
  display: none;
}
#header.fixed ul.top_menu {
  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;
  }
  #header.fixed .logo span {
    top: 35px;
  }
}

/* inner page header */
.page-inner #header {
  background: rgba(255,255,255,0.75);
  min-height: 75px;
}
.page-inner #header.fixed {
  background: rgba(255,255,255,1);
  min-height: 55px;
}
.page-inner .logo a img {
  content: url("../images/ryugasaki/logo.png");
}
.page-inner .logo span {
  color: #29397F;
}
@media (max-width: 1000px) {
  .page-inner .header_menu .logo {
    top: 7px;
  }
  .page-inner .header_menu .logo a span {
    top: 43px;
  }
}
@media (max-width: 767px) {
  .page-inner #header {
    min-height: 70px;
  }
  .page-inner .header_menu .logo a span {
    top: 35px;
  }
}
.page-inner .gnav ul.menu a {
  color: #000;
  text-shadow: none;
}
.page-inner .gnav ul.menu a::before {
  background-color: #000;
}
.page-inner .menu-trigger::after {
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
.page-inner .submenu li a {
  color: #fff !important;
}
.page-inner .gnav ul.menu .submenu li a::before {
  background-color: #fff;
}
.page-inner ul.top_menu {
  margin: 10px 0 10px;
}
.page-inner ul.top_menu li a {
  color: #000 !important;
  text-shadow: none;
}
.page-inner ul.top_menu li a:hover {
  color: #000 !important;
}
.page-inner ul.top_menu li a svg path {
  stroke: #000 !important;
}
.page-inner ul.top_menu li a::before {
  background-color: #000;
}


/* footer
-------------------------------------------------- */
#footer {
	background: #000;
	padding-top: 70px;
}
.footer_logo {
  margin-bottom: 50px;
}
.footer_link {
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.footer_link .footer_link_block {
  margin-bottom: 50px;
  width: 30%;
}
.footer_link_title {
  border-bottom: 1px solid rgba(255,255,255,0.3);
  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: rgba(255,255,255,0.8);
  display: block;
  font-size: 14px;
  padding: 7px 0;
  text-decoration: none;
}
.footer_link_block ul li a:hover {
  color: #fff;
}
.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 rgba(255,255,255,0.3);
  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 rgba(255,255,255,0.15);
  font-size: 0.7em;
  margin: 30px 0 0;
  padding: 20px;
  text-align: center;
  color: #fff;
}


/* home page
---------------------------------------------------------------------------------------------------- */

/* main_slider
-------------------------------------------------- */
.main_slider {
  position: relative;
}
.scroll-indicator {
  position: absolute;
  left: 30px;
  bottom: 0;
  width: 30px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 8px;
}
.scroll-line {
  position: relative;
  width: 1px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}
.scroll-line::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: scrollLine 3s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
@media (max-width: 450px) {
  .scroll-indicator {
    display: none;
  }
}
.main_slider_contents {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 40px 50px;
}
@media (max-width: 1000px) {
  .main_slider_contents {
    background: transparent;
    display: block;
    padding: 0;
  }
}
.main_slider_catch {
  padding-left: 70px;
}
.main_slider_catch .en {
  color: #fff;
  font-family: "Inter";
  font-size: 24px;
  font-weight: 200;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0 0 10px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.main_slider_catch .ja {
  color: #fff;
  font-size: 80px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
@media (max-width: 1130px) {
  .main_slider_catch .ja {
    font-size: 60px;
  }
}
@media (max-width: 1000px) {
  .main_slider_catch {
    padding-left: 0;
    padding-bottom: 70px;
    text-align: center;
  }
  .main_slider_catch .ja,
  .main_slider_catch .en {
    font-weight: bold;
    text-shadow: 3px 3px 3px black;
  }
  .main_slider_catch .en {
    font-size: 3vw;
  }
  .main_slider_catch .ja {
    font-size: 10vw;
    margin-left: 6vw;
  }
}
@media (max-width: 767px) {
  .main_slider_catch {
    padding-bottom: 80px;
  }
}

.main_slider_news {
  color: #fff;
  width: 400px;
}
.main_slider_news h2 {
  font-size: 24px;
  margin: 0 0 0.5em;
}
.main_slider_news_list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main_slider_news_list ul li {
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding: 0.75em 0;
  position: relative;
}
.main_slider_news_list ul li::before {
  background: rgba(255,255,255,0.8);
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .5s;
}
.main_slider_news_list ul li:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.main_slider_news_list ul li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  display: block;
}
.main_slider_news_list ul li a:hover {
  color: #fff;
}
.main_slider_news_list ul li .date {
  color: #fff;
  font-size: 12px;
  display: block;
  margin: 0 0 0.25em;
}
.main_slider_news a.text_link {
  color: #fff;
  float: right;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding: 1em 0;
  position: relative;
  transition: all .25s ease-out;
}
.main_slider_news a.text_link svg {
  margin-right: 0;
  margin-left: 1em;
}
.main_slider_news a.text_link:hover {
  margin-right: -10px;
}
.main_slider_news a.text_link:hover svg path {
  stroke: #fff;
}
@media (max-width: 1000px) {
  .main_slider_news {
    background: rgba(0,0,0,0.3);
    border-radius: 8px 0 0 0;
    padding: 30px 30px 10px;
    float: right;
  }
}
@media (max-width: 599px) {
  .main_slider_news {
    width: auto;
  }
  .main_slider_news h2 {
    font-size: 20px;
  }
  .main_slider_news_list ul li a {
    font-size: 12px;
  }
  .main_slider_news a.text_link {
    font-size: 12px;
  }
}

.main_slider .slider {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  height: 100vh;
}
.main_slider .slider img {
  height: 100vh;
  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;
}
.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/ryugasaki/ic_arrow_left.svg") no-repeat left 50%;
}
.slick-next {
  background: url("../images/ryugasaki/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;
}


/* caution
-------------------------------------------------- */
.caution {
  padding: 100px;
  outline: 5px solid #FFE95C;
  outline-offset: -40px;
}
.caution .sub_header {
  text-align: center;
}
.caution .sub_header_en {
  background-image: none;
  background-color: #FFE95C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  width: 130px;
  height: 30px;
  padding: 0;
  border-radius: 15px;
}
.caution .sub_header_en svg {
  margin-right: 10px;
}
.caution .sub_header h2 {
  font-weight: 600;
}
.caution .sub_header + .text {
  font-weight: 400;
  text-align: center;
}
.caution_list ul {
  list-style: none;
  margin: 50px 0 0;
  padding: 0;
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.caution_list ul li {
  background: #FFE95C url("../images/ryugasaki/caution_check_mark.png") no-repeat 20px 20px;
  background-size: 40px 40px;
  border-radius: 8px;
  padding: 20px 20px 20px 80px;
}
.caution_list ul li h3 {
  margin-top: 5px;
  margin-bottom: 10px;
}
.caution_list ul li .text {
  font-size: 14px;
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .caution {
    padding: 100px 40px;
  }
}
@media (max-width: 767px) {
  .caution {
    padding: 60px 30px;
    outline: 5px solid #FFE95C;
    outline-offset: -20px;
  }
  .caution_list ul {
    grid-template-columns: 1fr;
  }
}


/* sub_header
-------------------------------------------------- */
.sub_header {
}
.sub_header_ja {
  background: url("../images/ryugasaki/ic_cessna.png") no-repeat 0 3px;
  background-size: 45px 16px;
  color: #0078BF;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 0 0 55px;
  display: inline-block;
}
.sub_header h2, .sub_header h1  {
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 10px 0 30px;
}
.sub_header_text {
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 767px) {
  .sub_header_ja {
    font-size: 13px;
  }
  .sub_header h2, .sub_header h1 {
    font-size: 32px;
  }
}


/* campaign
-------------------------------------------------- */
.campaign {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: hidden;
}
.campaign::after {
  content: "";
  display: block;
  height: 100%;
  width: 70%;
  background: rgba(41,57,127,0.15);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.campaign > .container .sub_header {
  position: absolute;
}
.campaign .campaign_list {
  float: right;
  width: 60%;
  overflow: hidden;
}
.campaign .campaign_list .slick-slider {
  overflow: visible;
}
.campaign .campaign_list .slick-track {
  display: flex;
  align-items: stretch;
}
.campaign .campaign_list .slick-slide {
  height: auto;
  padding-right: 20px;
}
.campaign .campaign_list .slick-slide > div {
  height: 100%;
}
.campaign_list .slide-item {
  background: #fff;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  margin-right: 200px;
  height: 100%;
  box-sizing: border-box;
}
.campaign_list .slide-item:hover, .campaign_list .slide-item:focus {
  cursor: default;
}
.campaign_list_slider_arrows {
  margin-top: 20px;
}
.campaign_list_slider_arrows .slick-next {
  margin-left: 30px;
}
.campaign_list .slide-item .new {
  background: #000;
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  height: 28px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}
.campaign_list .slide-item img {
  border-radius: 4px;
  width: 100%;
  transition: all .25s ease-out;
}
.campaign_list .slide-item img:hover {
  transform: scale(1.02);
}
.campaign_list .slide-item h3 {
  margin: 10px 0;
}
.campaign_list .slide-item p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1000px) {
  .campaign > .container .sub_header {
    position: relative;
  }
  .campaign .campaign_list {
    float: none;
    box-sizing: border-box;
    width: 100%;
    padding-left: 15px;
    overflow: hidden;
  }
  .campaign .campaign_list ul {
    gap: 20px;
  }
}


/* access
-------------------------------------------------- */
.access {
  background: url("../images/ryugasaki/access_map.png") no-repeat right top;
  background-size: 650px 700px;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  clear: both;
}
.access .btn_wrp {
  margin-top: 40px;
  position: relative;
  z-index: 4;
}
.access .access_map {
  display: none;
}
@media (max-width: 767px) {
  .access {
    background: none;
    min-height: none;
    display: block;
    padding-top: 50px;
  }
  .access .btn_wrp {
    margin-bottom: 40px;
  }
  .access .access_map {
    display: block;
  }
}


/* service
-------------------------------------------------- */
.service {
  background: url("../images/ryugasaki/service_bg.jpg") no-repeat center center / cover;
  padding: 70px 100px;
  position: relative;
  z-index: 1;
}
.service .sub_header {
  text-align: center;
}
.service .sub_header_ja {
  background-image: url("../images/ryugasaki/ic_cessna_white.png");
  color: #fff;
  display: inline-block;
}
.service .sub_header h2 {
  color: #fff;
}
.service .sub_header + .text {
  color: #fff;
  font-weight: 400;
  text-align: center;
  margin-bottom: 50px;
}

.service_list {
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.service_list li {
  background: #fff;
  border-radius: 4px;
  padding: 10px 10px 20px;
  position: relative;
}
.service_list_img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.service_list_img img {
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
.service_list h3 {
  font-size: 28px;
  font-weight: 500;
  margin: 15px 0 0;
  text-align: center;
}
.service_list h3 span {
  display: block;
  font-size: 16px;
}
.service_list li p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin: 20px 10px;
}
.service_list li .btn_wrp {
  margin: 0 10px;
}
.service_list li .btn_wrp .btn {
  border: 0;
  background: #E9E9E9;
  border-radius: 4px;
  box-shadow: none;
  height: 40px;
  width: 150px;
  font-weight: 400;
}
@media (max-width: 1000px) {
  .service {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .service_list {
    grid-template-columns: 1fr;
  }
}


/* area_info
-------------------------------------------------- */
.area_info {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
}
.area_info .sub_header {
  text-align: center;
}
.area_info .sub_header_ja {
  display: inline-block;
}
.area_info .container-fluid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 0;
  padding: 0;
  width: 100%;
}
.area_info_item {
  background: rgba(41,57,127,0.08);
  border: 1px solid rgba(41,57,127,0.2);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.area_info_item > img {
  max-width: 350px;
  width: 45%;
  align-self: center;
}
.area_info_item.ryugasaki_info {
  border-radius: 0 8px 8px 0;
  border-left: 0;
}
.area_info_item.kawauchi_info, 
.area_info_item.kawauchi_info img {
  border-radius: 8px 0 0 8px;
  border-right: 0;
}
.area_info_item .flex_body h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 28px;
  font-weight: 500;
  margin: 20px 30px 20px;
}
.area_info_item .flex_body h3 img {
  margin-right: 0.5em;
}
.area_info_item .flex_body h3 span {
  color: #888;
  font-size: 0.5em;
  font-family: "Inter";
  font-weight: 300;
  margin-left: 1em;
}

.area_info_item .flex_body {
  flex: 1;
  min-width: 0;
  padding-top: 25px;
}

.area_info_item .flex_body dl {
  margin: 0;
  padding: 0 30px;
  display: block;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}
.area_info_item .flex_body dl dt {
  border-top: 1px solid #D6D6D6;
  color: #333;
  font-weight: 300;
  width: 50px;
  margin: 0;
  padding: 0.5em 0;
  float: left;
  width: 120px;
}
.area_info_item .flex_body dl dd {
  border-top: 1px solid #D6D6D6;
  font-weight: 400;
  padding: 0.5em 0;
  margin-left: 120px;
  min-width: 0;
  overflow-wrap: anywhere;
}
.area_info_item .flex_body dl dt:first-of-type, 
.area_info_item .flex_body dl dd:first-of-type {
  border: 0;
}
.area_info_item .flex_body .btn {
  border: 0px;
  font-weight: 400;
  margin: 20px auto 20px;
}
@media (max-width: 1000px) {
  .area_info .container-fluid {
    display: block;
  }
  .area_info_item {
    border: 0;
  }
  .area_info_item.ryugasaki_info {
    margin-bottom: 30px;
    border-radius: 0;
  }
  .area_info_item.kawauchi_info, 
  .area_info_item.kawauchi_info img {
    border-radius: 0;
  }
}
@media (max-width: 599px) {
  .area_info_item {
    display: block;
    text-align: center;
    padding-bottom: 30px;
  }
  .area_info_item > img {
    margin: 30px auto;
    max-width: calc(100% - 60px);
    width: calc(100% - 60px);
  }
  .area_info_item .flex_body h3 {
    justify-content: center;
    font-size: 24px;
  }
}


/* hometown
-------------------------------------------------- */
.hometown {
  background: rgba(41,57,127,0.08);
  border-radius: 8px;
  margin: 40px;
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
}
.hometown .sub_header h2 span {
  display: block;
  font-size: 0.4em;
  margin-top: 0.25em;
}
.hometown_banner ul {
  list-style: none;
  margin: 50px 0 30px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0 50px;
}
.hometown_banner ul li {
  background: #fff;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hometown_banner h3 {
  padding: 20px 30px;
}
@media (min-width: 768px) and (max-width: 1024px) {
    html:not([lang^="en"]) .hometown_banner h3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        white-space: nowrap;
        gap: 3px;
    }
}

.hometown_banner h3 span {
  color: #888;
  font-size: 0.6em;
  font-family: "Inter";
  font-weight: 300;
  margin-top: 0.5em;
  display: block;
}
.hometown_banner h3 img {
  margin-right: 0.5em;
}
.hometown_banner .hometown_banner_img {
  border-radius: 0 8px 8px 0;
  height: 250px;
  width: auto;
  transition: all .25s ease-out;
}
.hometown_banner .hometown_banner_img:hover {
  transform: scale(1.02);
}
.hometown .text .highlight::after {
  transition-delay: 0s;
}
.hometown .text .highlight:nth-child(2)::after {
  transition-delay: 0.5s;
}
@media (max-width: 767px) {
  .hometown {
    margin: 20px;
    padding-top: 30px;
    padding-bottom: 1px;
  }
  .hometown_banner ul {
    display: block;
  }
  .hometown_banner h3 {
    padding: 20px 10px;
    width: 150px;
  }
  .hometown_banner .hometown_banner_img {
    height: auto;
    width: 200px;
  }
  .hometown .text {
    text-align: left;
  }
}


/* inner page
---------------------------------------------------------------------------------------------------- */
.page_head {
  background: url("../images/ryugasaki/page-head_img.png") no-repeat center center / cover;
  border-bottom: 1px solid #D6D6D6;
  border-top: 1px solid #D6D6D6;
}
.page_head_title {
  color: #29397F;
  padding: 70px 0;
  text-align: center;
}
.page_head_title .page_head_title_ {
  background: url("../images/ryugasaki/ic_cessna.png") no-repeat 0 3px;
  background-size: 45px 16px;
  color: #0078BF;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 0 0 55px;
  display: inline-block;
  margin-bottom: 15px;
}
.page_head_title h1 {
  font-size: 50px;
  font-weight: 600;
  margin: 0;
}
.page_head_title h1 span {
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .page_head_title {
    padding: 30px 0;
  }
  .page_head_title .page_head_title_ {
    background-size: 39px 14px;
    font-size: 14px;
    padding: 0 0 0 50px;
  }
  .page_head_title h1 {
    font-size: 30px;
  }
  .page_head_title h1 span {
    margin-bottom: 0px;
  }
}

.page-inner .sub_header_ja {
  background: none;
  color: #0078BF;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0;
  padding: 0;
}

.inner_slider {
  position: relative;
} 
.inner_main_slider {
  position: relative;
}
.inner_slider_gra .inner-main-slider::after {
  content: "";
  display: block;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.inner_main_slider_contents {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-main-slider .slick-dots {
  position: absolute;
  right: 10px;
  bottom: 15px;
  z-index: 3;
}
.inner-main-slider .slick-dots li button {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.5);
  font-family: "Inter";
  font-size: 14px;
  font-weight: 300;
  height: 30px;
  width: 30px;
  text-indent: 0;
}
.inner-main-slider .slick-dots li button::after {
  content: none !important;
}
.inner-main-slider .slick-dots li.slick-active button {
  border-color: rgba(255,255,255,1) !important;
  color: rgba(255,255,255,1) !important;
}
@media (max-width: 1000px) {

}
@media (max-width: 767px) {
  .inner_slider {
    overflow: hidden;
  }
  .inner_slider .slick-list {
    margin-left: -100px;
    margin-right: -100px;
  }
  .inner-main-slider .slick-dots {
    display: none !important;
  }
}

.inner_main_slider_contents .page_head_title {
  background: rgba(0, 0, 0, 0.3);
  padding-top: 50px;
  padding-bottom: 40px;
  width: 100%;
}
.inner_main_slider_contents .page_head_title .page_head_title_ {
  background: url("../images/ryugasaki/ic_cessna_white.png") no-repeat 0 3px;
  background-size: 45px 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 0 0 0 55px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  display: inline-block;
  margin-bottom: 15px;
}
.inner_main_slider_contents .page_head_title h1 {
  color: #fff;
  font-size: 50px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner_main_slider_contents .page_head_title h1 span {
  font-size: 24px;
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .inner_main_slider_contents .page_head_title {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .inner_main_slider_contents .page_head_title .page_head_title_ {
    background-size: 39px 14px;
    font-size: 14px;
    padding: 0 0 0 50px;
  }
  .inner_main_slider_contents .page_head_title h1 {
    display: block;
    font-size: 30px;
  }
  .inner_main_slider_contents .page_head_title h1 span {
    display: block;
    font-size: 18px;
    margin: 0;
  }
}


/* inner page - catch
-------------------------------------------------- */
.inner_catch {
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
}
.inner_catch h2 {
  color: #0078BF;
  font-weight: 500;
}
.inner_catch p.text {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 767px) {
  .inner_catch {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .inner_catch h2 {
    font-size: 32px;
    text-align: left;
  }
  .inner_catch p.text {
    font-size: 16px;
    text-align: left;
  }
  .inner_catch p.text br {
    display: none;
  }
}


/* inner page - contents
-------------------------------------------------- */
.inner_contents {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  .inner_contents {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}


/* general page
-------------------------------------------------- */
dl.general_info_list {
  border-bottom: 1px solid #D6D6D6;
  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;
}@media (max-width: 767px) {
  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;
  }
}

ul.list, dl.list {
  font-size: 1em;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.8;
}
ul.list li, dl.list dd {
  margin-left: 0;
  padding-left: 1.25em;
  padding-bottom: 0.25em;
  position: relative;
}
ul.list li::before, dl.list dd::before {
  content: "・";
  display: block;
  position: absolute;
  left: 0;
}
ul.list.decimal {
  list-style: decimal;
  margin-left: 1.25em;
}
ul.list.decimal li {
  padding-left: 0.1em;
}
ul.list.decimal li::before {
  display: none;
}


/* contact
-------------------------------------------------- */
.contact {
  background: rgba(0,120,191,0.15) url("../images/ryugasaki/contact_img.png") no-repeat right top;
  background-size: auto 100%;
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
  outline: 1px solid rgba(0,120,191,0.5);
  outline-offset: -20px;
}
.contact .text {
  padding-left: 30px;
  padding-right: 30px;
}
.contact .btn_wrp {
  margin-top: 30px;
}
.contact .btn {
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
  padding-right: 10px;
  width: 300px;
  margin: 0 auto 10px;
}
.contact .btn .ttl {
  width: 110px;
}
.contact .btn .tel {
  font-family: "Inter";
  color: #0078BF;
  text-decoration: underline;
  position: relative;
}
.contact .btn .tel svg {
  margin-right: 10px;
  position: relative;
  top: 3px;
}



/* page-about-us
-------------------------------------------------- */
.about-us_info .sub_header {
  text-align: center;
}
.about-us_info .sub_header + .text {
  text-align: center;
}


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%;
}
dl.general_info_list_member dt:last-of-type, 
dl.general_info_list_member dd:last-of-type {
  border: 0;
}
@media (max-width: 767px) {
  dl.general_info_list_member {
    margin-top: 0;
  }
}


/* page-sightseeing-flight
-------------------------------------------------- */
.course_list {
  position: relative;
}

.ic_cessna_wrapper {
  position: relative;
  top: 50px;
  width: 45px; /* アイコンのサイズ */
}
.table-scroll {
 overflow-x: auto;
}
/* 矢印動線 */
.scroll-hint {
 position: fixed;
 top: 50%;
 right: 16px;
 transform: translateY(-50%);
 width: 56px;
 height: 56px;
 display: flex;
 align-items: center;
 justify-content: center;
 background: rgba(0, 0, 0, 0.18);
 color: #333;
 border-radius: 50%;
 font-size: 28px;
 box-shadow: 0 3px 10px rgba(0,0,0,0.2);
 pointer-events: none;
 opacity: 0;
 transition: opacity 0.3s;
 z-index: 10;
}
.scroll-hint.is-visible {
 opacity: 1;
}
@keyframes moveRight {
  0% { left: -10%; opacity: 0; }
  5% { opacity: 1; }
  75% { opacity: 1; }
  80% { left: 110%; opacity: 0; }
  100% { left: 110%; opacity: 0; }
}

@keyframes moveLeft {
  0% { right: -10%; opacity: 0; }
  5% { opacity: 1; }
  75% { opacity: 1; }
  80% { right: 110%; opacity: 0; }
  100% { right: 110%; opacity: 0; }
}
@keyframes wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
.to-right {
  animation: 
    moveRight 10s linear infinite, 
    wave 2s ease-in-out infinite;
}
.to-left {
  animation: 
    moveLeft 10s linear infinite, 
    wave 2.5s ease-in-out infinite;
}
.to-left img {
  transform: scaleX(-1);
}

.course_list_items {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.course_list_items .table {
  border: 0;
  font-size: 14px;
  min-width: 1000px;
  width: 100%;
  margin-top: 30px;
}
.course_list_items .table thead th {
  color: #707070;
  font-size: 12px;
  font-weight: 300;
  padding: 0.5em 1em;
  text-align: center;
  white-space: nowrap;
}
.course_list_items .table thead th small {
  display: block;
}
.course_list_items .table tbody th, .course_list_items .table tbody td {
  border-bottom: 1px solid #D6D6D6;
  padding: 1em 1em;
  position: relative;
}
.course_list_items .table tbody tr:first-child th, .course_list_items .table tbody tr:first-child td {
  border-top: 1px solid #D6D6D6;
}
.course_list_items .table tbody th {
  padding: 1.25em 0;
}
.course_list_items .table .recommend {
  width: 60px;
}
.course_list_items .table .recommend .recommend_label {
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 0px;
  margin: 0;
  padding: 7px 0 7px;
  z-index: 2;
  width: 44px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  background: #FFBA5C;
  border-radius: 2px 0 0 0;
}
.course_list_items .table .recommend .recommend_label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 22px solid #FFBA5C;
  border-right: 22px solid #FFBA5C;
  border-bottom: 10px solid transparent;
}
.course_list_items .table .recommend .recommend_label:before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 5px transparent;
  border-right: solid 10px #6081b7;
}
.course_list_items .table .number {
  color: #0078BF;
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: rgba(0,120,191,0.2);
}
.course_list_items .table .destination {
  font-size: 1.1em;
  font-weight: 400;
}
.course_list_items .table .duration {
  text-align: right;
}
.course_list_items .table .price {
  text-align: center;
}
.course_list_items + .text {
  margin-top: 30px;
}



/* page-location-rental
-------------------------------------------------- */
.location_rental_cases {
  position: relative;
  padding-top: 70px;
  padding-bottom: 100px;
  text-align: center;
}
.location_rental_cases .sub_header h2 span {
  display: block;
  font-size: 0.4em;
  margin-top: 0.25em;
}

.location_rental_cases .container-fluid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 50px 0;
  padding: 0 50px;
  width: 100%;
}
.location_rental_cases_item {
  position: relative;
}
.location_rental_cases_item img {
  border-radius: 8px;
  width: 100%;
  margin-bottom: 15px;
}
.location_rental_cases_item .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
}
.location_rental_cases_item h3 {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    flex: 6 1 0;
    text-align: left;
}
.location_rental_cases_item h3 small {
  font-size: 0.6em;
}
.location_rental_cases_item .btn {
    border: 0px;
    font-weight: 400;
    flex: 4 0;
    white-space: nowrap;
    max-width: 230px;
}
@media (max-width: 767px) {
  .location_rental_cases .container-fluid {
    display: block;
    gap: 15px;
    padding: 0 15px;
  }
  .location_rental_cases_item {
    padding: 0 0 30px;
  }
  .location_rental_cases_item h3 {
    font-size: 21px;
  }
}

.location_service {
  padding: 70px 100px;
  position: relative;
  z-index: 1;
}
.location_service:after {
  content: "";
  display: block;
  height: 100%;
  width: 70%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  background: rgba(0,120,191,0.1);
}
.location_service .sub_header {
  text-align: center;
}
.location_service .sub_header + .text {
  font-weight: 400;
  text-align: center;
  margin-bottom: 50px;
}
.location_service_list {
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.location_service_list li {
  background: #fff;
  border: 1px solid #D6D6D6;
  border-radius: 4px;
  padding: 10px 10px 20px;
  position: relative;
}
.location_service_list_img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.location_service_list_img img {
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
.location_service_list h3 {
  font-size: 28px;
  font-weight: 500;
  margin: 15px 0 0;
  text-align: center;
}
.location_service_list h3 span {
  display: block;
  font-size: 16px;
}
.location_service_list li p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin: 20px 10px;
}
@media (max-width: 1000px) {
  .location_service {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .location_service_list {
    grid-template-columns: 1fr;
  }
}


/* drone
-------------------------------------------------- */
.drone > .container:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .drone > .container:first-child {
    display: block;
    text-align: center;
  }
  .drone > .container:first-child img {
    margin: 0 auto;
  }
}


/* page-faq
-------------------------------------------------- */
.page-faq .faq_drone {
  display: flex;
  justify-content: space-between;
}
.page-faq .faq_drone img {
  margin-left: 50px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .page-faq .faq_drone {
    display: block;
    text-align: center;
  }
  .page-faq .faq_drone .flex_body {
    text-align: left;
  }
  .page-faq .faq_drone img {
    margin: 30px auto;
  }
}
h3.faq_title {
  border-bottom: 1px solid #29397F;
  color: #29397F;
  position: relative;
  padding-left: 30px;
  padding-bottom: 10px;
  margin-top: 50px; 
}
h3.faq_title:before {
  content: "";
  display: block;
  background: #29397F;
  height: 16px;
  width: 16px;
  position: absolute;
  left: 0;
  top: 7px;
}
dl.faq_list {
  background: rgba(41, 57, 127, 0.08);
  border-radius: 8px;
  margin-bottom: 10px;
  position: relative;
  padding: 20px;
}
dl.faq_list dt {
  font-weight: 400;
  padding: 0 40px;
  cursor: pointer;
}
dl.faq_list dt::before {
  content: "Q";
  color: #29397F;
  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 rgba(41, 57, 127, 0.3);
}
dl.faq_list dd::before {
  content: "A";
  color: #FF1900;
  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;
}


/* film_commission
-------------------------------------------------- */
.film_commission {
  padding-bottom: 70px;
  padding-top: 70px;
}
.film_commission_list {
  list-style: none;
  margin: 50px 0 50px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.film_commission_list li {
  background: #fff;
  border: 1px solid #D6D6D6;
  position: relative;
}
.film_commission_list_img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.film_commission_list_img img {
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
.film_commission_list h3 {
  font-weight: 500;
  margin: 15px 0 20px;
  text-align: center;
}
.film_commission_list .btn_wrp {
  text-align: center;
}
.film_commission_list .btn_wrp .btn {
  margin: 0 auto 30px;
}
@media (max-width: 767px) {
  .film_commission_list {
    grid-template-columns: 1fr;
  }
}


/* page-access
-------------------------------------------------- */
.access_gmap .map {
  position: relative;
  width: 100%;
  padding-top: 40%;
  height: 0;
}
.access_gmap .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access_route h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 50px;
}
.access_route h3 svg {
  margin-right: 10px;
}
.access_route h4 {
  border-bottom: 1px solid #29397F;
  color: #29397F;
  padding: 0.5em 0;
  margin-bottom: 10px;
}
.access_route_knowroute {
  background: rgba(41, 57, 127, 0.08);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
}
.access_route_knowroute .text {
  margin: 0;
}
.access_route_knowroute .btn_wrp .btn {
  margin: 0 auto;
}

.knowroute {
  background: rgba(41,57,127,0.08);
  border-radius: 8px;
  margin: 0 40px;
  position: relative;
}
.knowroute .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0 70px;
}
.knowroute .sub_header_ja {
  background: url(../images/ic_cessna.png) no-repeat 0 3px !important;
  background-size: 45px 16px !important;
  color: #0078BF !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  padding: 0 0 0 55px !important;
  display: inline-block;
}
.knowroute h3 {
  font-size: 24px;
}
.knowroute .btn_wrp {
  margin-top: 40px;
  position: relative;
  z-index: 4;
}
.knowroute .btn_wrp .btn {
  width: 300px;
}
@media (max-width: 767px) {
  .knowroute {
    margin: 20px;
  }
  .knowroute .container {
    display: block;
    padding: 50px 30px;
    text-align: center;
  }
  .knowroute .sub_header_ja {
    display: inline-block;
  }
  .knowroute .btn_wrp {
    text-align: center;
  }
  .knowroute .btn_wrp .btn {
    margin: 0 auto 50px;
  }

}


/* page-service-list
-------------------------------------------------- */
.page-service-list .inner_catch {
  padding-top: 10px;
}
.page-service-list .inner_catch h2.ja {
  color: #000;
  font-size: 40px;
}

.service-list_main, 
.service-list_other {
  padding: 70px 100px;
  position: relative;
  z-index: 1;
}
.service-list_main:after {
  content: "";
  display: block;
  height: 480px;
  width: 70%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  background: rgba(0,120,191,0.1);
  border-radius: 0 8px 8px 0;
}
.service-list_other:after {
  content: "";
  display: block;
  height: 480px;
  width: 70%;
  position: absolute;
  left: auto;
  right: 0px;
  top: 0px;
  z-index: -1;
  background: rgba(0,120,191,0.1);
  border-radius: 8px 0 0 8px;
}
.service-list_main .sub_header, 
.service-list_other .sub_header {
  text-align: center;
}
.service-list_main .sub_header + .text, 
.service-list_other .sub_header + .text {
  font-weight: 400;
  text-align: center;
  margin-bottom: 50px;
}
.service-list_main .service_list li, 
.service-list_other .service_list li {
  box-shadow: 0 1px 10px rgba(0,0,0,0.07);
}

@media (max-width: 1000px) {
  .service-list_main, 
  .service-list_other {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .page-service-list .inner_catch h2.ja {
    font-size: 32px;
  }
}


/* page-flight-training
-------------------------------------------------- */
.flight-training_catch .container-fluid {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.flight-training_catch .container-fluid img {
  margin-left: -15px;
  width: 47%;
}
.flight-training_catch .container-fluid .flex_body {
  padding-left: 3%;
}
.flight-training_catch .container-fluid .flex_body h2 {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 0.5em;
  text-align: left;
}
.flight-training_catch .container-fluid .flex_body .text {
  text-align: left;
}
@media (max-width: 767px) {
  .flight-training_catch .container-fluid {
    display: block;
  }
  .flight-training_catch .container-fluid img {
    margin-left: 0;
    width: 100%;
  }
  .flight-training_catch .container-fluid .flex_body {
    padding: 20px 0 0;
  }
  .flight-training_catch .container-fluid .flex_body h2 {
    font-size: 32px;
  }
}

.flight-training_before_starting {
  background: rgba(0,120,191,0.1);
  padding: 50px 100px;
  margin: 40px;
}
.flight-training_before_starting h2 {
  font-size: 36px;
  font-weight: 600;
}
.flight-training_before_starting + .text {
  font-weight: 400;
}

.flight-training_before_starting_flow {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  padding: 40px 30px 30px;
  margin-top: 30px;
  text-align: center;
}
.flight-training_before_starting_flow .sub_header_en {
  color: #0078BF;
}
.flight-training_before_starting_flow .sub_header h3 {
  font-size: 28px;
  margin: 0.5em 0 1em;
}
.flight-training_before_starting_flow ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.flight-training_before_starting_flow ul li {
  background-size: 40px 40px;
  border-radius: 8px;
  padding-bottom: 20px;
}
.flight-training_before_starting_flow_ic {
  background: rgba(0,120,191,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.flight-training_before_starting_flow ul li h4 {
  color: #0078BF;
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 10px;
}
.flight-training_before_starting_flow ul li .text {
  font-size: 14px;
  margin-bottom: 0;
}
@media (max-width: 1000px) {
  .flight-training_before_starting {
    padding: 50px 50px;
  }
  .flight-training_before_starting_flow ul {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .flight-training_before_starting {
    padding: 30px 15px;
    margin: 15px;
  }
  .flight-training_before_starting_flow {
    padding: 30px 15px 20px;
  }
}

.flight-training_courses .sub_header {
  text-align: center;
}

.flight-training_courses_status {
  background: #707070;
  height: 36px;
  width: 150px;
  display: flex;
  align-items: center;
  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;
  padding-left: 1em;
  margin-top: 50px;
  margin-bottom: 20px;
}
.flight-training_courses_status.active {
  background: #40A737;
}
.flight-training_courses_status svg {
  margin-right: 0.5em;
}

dl.flight-training_courses_list {
  border: 1px solid rgba(0,120,191,0.7);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  margin-bottom: 10px;
  position: relative;
}
dl.flight-training_courses_list.active {
  background: rgba(0,120,191,0.05);
}
dl.flight-training_courses_list dt.acc_title {
  font-weight: 400;
  padding: 20px 80px 20px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
dl.flight-training_courses_list span.trigger {
  background: rgba(0,120,191,0.1);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -20px;
}
dl.flight-training_courses_list dt.acc_title span.trigger::before,
dl.flight-training_courses_list dt.acc_title span.trigger::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 50%;
  width: 22px;
  height: 1px;
  background-color: #333;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
dl.flight-training_courses_list dt.acc_title span.trigger::after {
  transform: translateY(-50%) rotate(90deg);
}
dl.flight-training_courses_list.active dt.acc_title span.trigger::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}
dl.flight-training_courses_list.disabled span.trigger dt::before,
dl.flight-training_courses_list.disabled span.trigger dt::after {
  display: none;
}
dl.flight-training_courses_list dt.acc_title h3 {
  color: #29397F;
  font-size: 24px;
  width: 15em;
  margin: 0;
}
dl.flight-training_courses_list dt.acc_title p {
  flex: 1;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}
dl.flight-training_courses_list dd.acc_body {
  display: none;
  position: relative;
  margin: 0 30px 30px;
  background: #fff;
}

dl.flight-training_courses_list.disabled {
  border: 1px solid #707070;
}
dl.flight-training_courses_list.disabled dt.acc_title {
  cursor: not-allowed;
  pointer-events: none;
  padding: 20px 30px 20px 30px;
}
dl.flight-training_courses_list.disabled dt.acc_title span.trigger {
  display: none;
}
dl.flight-training_courses_list.disabled dt.acc_title h3, 
dl.flight-training_courses_list.disabled dt.acc_title p {
  color: #707070;
}

dl.flight-training_courses_list dd.acc_body dl.general_info_list > dt, 
dl.flight-training_courses_list dd.acc_body dl.general_info_list > dd {
  padding: 1em 0;
}
dl.flight-training_courses_list dd.acc_body dl.general_info_list, 
dl.flight-training_courses_list dd.acc_body dl.general_info_list > dt:first-child, 
dl.flight-training_courses_list dd.acc_body dl.general_info_list > dd:first-of-type {
  border: 0;
}
dl.flight-training_courses_list dd.acc_body dl.general_info_list > dt {
  color: #707070;
  font-weight: 500;
  padding-left: 2em;
  width: 20%;
}
dl.flight-training_courses_list dd.acc_body dl.general_info_list > dd {
  padding-right: 2em;
  width: 80%;
}
@media (max-width: 767px) {
  dl.flight-training_courses_list dt.acc_title {
    display: block;
  }
  dl.flight-training_courses_list dt.acc_title h3 {
    width: 100%;
    margin-bottom: 10px;
  }
  dl.flight-training_courses_list dd.acc_body dl.general_info_list > dt {
    padding-bottom: 0;
    width: 100%;
  }
  dl.flight-training_courses_list dd.acc_body dl.general_info_list > dd {
    padding-left: 2em;
    width: 100%;
  }
}

ul.training_process {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.training_process li {
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 15px;
  position: relative;
}
ul.training_process li .ttl {
  background: rgba(0,120,191,0.7);
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
  width: 25%;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  html[lang="en"] .training_process li .ttl {
    width: 36%;
  }
}
ul.training_process li .ttl::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid rgba(0,120,191,0.7);
}
ul.training_process li:last-child .ttl::after {
  display: none;
}
ul.training_process li p {
  flex: 1;
  padding: 10px 20px;
  margin: 0;
}
@media (max-width: 767px) {
  ul.training_process li {
    display: block;
  }
  ul.training_process li .ttl {
    border-radius: 8px 8px 0 0;
    width: 100%;
    padding: 1em 0;
  }
  ul.training_process li .ttl::after {
    display: none;
  }
  ul.training_process li::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    margin-left: -6px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid rgba(0,120,191,0.7);
  }
  ul.training_process li:last-child::after {
    display: none;
  }
  ul.training_process li p {
    padding: 15px;
  }
}


/* page-topics
-------------------------------------------------- */
.topics {
  padding: 70px 15px;
  position: relative;
  z-index: 1;
}
.topics_list {
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.topics_list > li {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 10px rgba(0,0,0,0.07);
  padding: 10px 10px 20px;
  position: relative;
}
.topics_list_img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.topics_list_img img {
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
.topics_list_text .label_new, 
.topics-detail .label_new {
  background: #000;
  color: #fff;
  font-family: "Inter";
  font-size: 12px;
  font-weight: 500;
  height: 24px;
  width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  margin-right: 10px;
}
.topics_list_text .date, 
.topics-detail .date {
  display: inline-block;
  font-size: 13px;
  margin-top: 15px;
}
.topics_list_text h3 {
  font-weight: 500;
  margin: 15px 0 0;
  text-align: left;
}
ul.topics_list_category {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
ul.topics_list_category li {
  padding: 0 0.5em 0.5em 0;
}
ul.topics_list_category li a {
  background: rgba(0,0,0,0.05);
  border-radius: 15px;
  font-size: 12px;
  padding: 0.25em 1em;
  text-decoration: none;
}
@media (max-width: 767px) {
  .topics_list {
    grid-template-columns: 1fr;
  }
}

.topics_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: #29397F;
  color: #29397F;
}
.pagination a.active {
  background-color: #fff;
  color: #29397F;
  border-color: #29397F;
  cursor: default;
}
.pagination a.prev, .pagination a.next {
  font-weight: 300;
}

.topics-detail .sub_header h1 {
  font-size: 32px;
  margin-bottom: 50px;
}
.topics-detail_body_img {
  margin-bottom: 50px;
  text-align: center;
}

.topics-detail_btm_menu {
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topics-detail_btm_menu li a {
  padding: 0 1.5em;
  width: 150px;
}
.topics-detail_btm_menu li.back a {
  justify-content: center;
  width: 230px;
  margin: 0 auto;
}
.topics-detail_btm_menu li.prev a svg, 
.topics-detail_btm_menu li.back a svg {
  margin-right: 1em;
}
.topics-detail_btm_menu li.next a {
  justify-content: flex-end;
}
.topics-detail_btm_menu li.next a svg {
  margin-left: 1em;
}
@media (max-width: 767px) {
  .topics-detail_btm_menu {
    flex-wrap: wrap;
  }
  .topics-detail_btm_menu .prev {
    order: 1;
  }
  .topics-detail_btm_menu .next {
    order: 2;
  }
  .topics-detail_btm_menu .back {
    order: 3;
    width: 100%;
    text-align: center;
  }
}

/* lang_menu
-------------------------------*/
.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;
}
