/* header height control (JS: header-scrolled) */

#main,
#detail {
  padding-top: 100px;
}

/* スクロール後 */
.header-scrolled ~ #main,
.header-scrolled ~ #detail {
  padding-top: 60px;
}

/* SP */
@media (max-width: 991px) {
  #main,
  #detail {
    padding-top: 60px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

/* =========================================================
   Header Base
========================================================= */

:root {
  --header-base-bg: rgba(245, 245, 245, 0.9); /* header, nav */
  --header-float-bg: rgba(255, 255, 255, 0.98); /* dropdown, modal */
  --header-mobile-menu: var(--neutral-100);
  --header-mobile-menu-scrl: rgba(255, 255, 255, 0.96);
}

#header {
  height: 100px;
  transition:
    background-color 0.5s,
    box-shadow 0.5s,
    height 0.3s;
  z-index: 997;
  background: var(--header-base-bg);
  color: var(--color-text);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 0 30px var(--shadow-header);
  overflow: visible;
}

#header p i {
  font-size: 42px;
  position: relative;
  left: 25%;
}

header a:focus,
header a:focus-visible {
  outline: none;
  opacity: 0.7;
}

/* =========================================================
   Language / Nav Base
========================================================= */

.nav-item,
.lang-menu {
  font-size: 90%;
}

.nav-item *,
.lang-menu * {
  box-sizing: border-box;
}

.lang-menu p {
  position: relative;
  right: 25%;
}

.lang-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  color: var(--primary-lang-menu);
}

.lang-menu a:hover {
  color: #0c5c78;
}

/* =========================================================
   Desktop Layout (≥1280px)
========================================================= */

@media (min-width: 1280px) {
  #header .dropdown-menu .row {
    width: 1280px;
    padding: 0;
  }
}

/* =========================================================
   Desktop Layout (≥992px)
========================================================= */

@media (min-width: 992px) {
  .nav-item *,
  .lang-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #header .define {
    margin-top: 12px;
  }

  #header .logo {
    width: 200px;
    height: auto;
    object-fit: contain;
  }

  #header .lang-menu {
    margin-left: 30px;
    margin-right: 20px;
  }

  header .nav-item a span {
    font-size: 12px;
  }

  /* --- Dropdown Layout --- */

  #header .dropdown-menu .row {
    display: flex;
    justify-content: space-between;
    gap: 0;
    padding: 0 20px;
    margin: 0 auto;
    min-height: 300px;
  }

  #header .dropdown-menu ul {
    padding: 0;
    margin: 0;
  }

  #header .dropdown-menu li {
    padding: 5px 0;
    transition: all 0.3s;
  }

  #header .dropdown-menu a {
    color: var(--primary-lang-menu);
    text-decoration: none;
    transition: color 0.3s;
  }

  /* --- Mega Menu Animation --- */

  .dropdown-hover .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  #header .nav-item {
    position: relative;
    padding-bottom: 17px;
  }

  /* hover */
  #header:not(.header-scrolled) .dropdown-hover:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* click */
  #header.header-scrolled .dropdown-hover:hover .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* click.is-open */
  #header.header-scrolled .dropdown-hover.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .dropdown-menu {
    background: var(--header-float-bg);
  }

  #header .m-menu {
    position: static;
  }

  #header .m-menu .dropdown-menu {
    width: 100%;
  }

  [class^="col-"] {
    padding: 1rem;
    margin: 0 0 0.25rem 0;
  }

  .navbar-collapse {
    display: flex;
    justify-content: flex-end;
  }

  .navbar-nav {
    margin-left: auto;
  }

  /* --- Scrolled State --- */

  #header.header-scrolled {
    background: var(--header-base-bg);
    height: 60px;
    padding: 15px 0 0 0;
  }

  #header.header-scrolled .define {
    margin-top: 0;
    transform: translateY(-45px); /* 見た目だけ動かす */
  }

  #header.header-scrolled .logo {
    margin-top: 30px;
  }

  #header.header-scrolled .lang-menu {
    margin-top: 10px;
  }

  #header.header-scrolled p i {
    font-size: 0;
  }

  /* --- Mega Menu Content --- */

  #header .pbox {
    position: relative;
    z-index: 1;
    padding: 40px 20px 40px 60px;
  }

  #header .pbox h2 {
    font-weight: 600;
    font-size: 20px;
    padding: 5px 0;
    margin: 20px 0;
    border-bottom: 1px solid #ccc;
  }

  #header .pbox h2:first-child {
    margin-top: 0;
  }

  #header .pbox h2 a {
    color: #0c5c78;
  }

  #header .pbox ul {
    width: 100%;
  }

  #header .pbox ul li {
    margin-left: 10px;
  }

  #header .pbox ul li a {
    display: block;
    width: 100%;
    padding: 0 10px;
    color: #0c5c78;
    transition:
      background-color 0.5s ease,
      color 0.5s ease;
  }

  #header .pbox ul li a:hover {
    background-color: var(--primary-surface-soft);
    text-decoration: none;
  }

  /* --- Header Font Control --- */

  #header .navbar-nav p,
  #header .navbar-nav span {
    color: var(--primary-lang-menu);
  }

  #header .navbar-nav li:hover p,
  #header .navbar-nav li:hover span,
  #header .prime p,
  #header .prime span {
    color: #0c5c78;
  }

  /* --- Decorative Elements --- */

  #header .icon-decor {
    position: absolute;
    right: 80px;
    top: 28%;
    font-size: 200px;
    opacity: 0.15;
    pointer-events: none;
    color: #0c5c78;
    animation: floatIcon 6s ease-in-out infinite;
  }

  #header .geo-decor {
    position: absolute;
    right: 100px;
    top: 28%;
    width: 150px;
    height: 100%;
    background-image: url("/assets/ve/img/shimonita-flag.svg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
  }

  @keyframes floatIcon {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
}

/* =========================================================
   Mobile Layout (≤991px)
========================================================= */

@media (max-width: 991px) {
  #header {
    height: 60px;
    padding: 0 0 10px 20px;
    background: var(--header-mobile-menu);
  }

  #header p i {
    display: none;
  }

  #header .logo {
    width: 160px;
    height: auto;
    object-fit: contain;
  }

  #header .lang-menu {
    position: fixed;
    top: -23px;
    right: 6px;
    z-index: 9999;
  }

  #header.header-scrolled {
    background: var(--header-mobile-menu-scrl);
    height: 60px;
    padding: 0 0 0 20px;
  }

  #header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23000' stroke-opacity='0.5' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  #header .nav-item a {
    font-size: 16px;
    padding: 20px;
  }
  #header li.dropdown-hover {
    display: block;
    margin: 5px;
    background-color: #f5f5f5;
  }
  #header .nav-item li {
    padding: 5px;
    background-color: #f5f5f5;
  }

  #header .dropdown-toggle {
    display: block;
    width: 100%;
    height: 100%;
    padding: 1rem;
    text-align: left;
  }

  #header .navbar-toggler {
    position: absolute;
    z-index: 999;
    background: var(--header-base-bg);
    border: 1px solid #ccc;
    right: 60px;
  }
  #header .dnone {
    display: none;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    overflow-y: auto;
    margin-top: 60px;
  }

  body.menu-open {
    overflow: hidden;
  }

  #header .pbox {
    padding: 0 20px;
  }
  #header .pbox ul {
    margin-bottom: 20px;
  }
  .navbar-nav .nav-item.dropdown .nav-link p {
    display: inline;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

:root {
  --footer-grad-start: var(--primary-link);
  --footer-grad-end: #305769;

  --footer-color-text: var(--neutral-100);
  --footer-text-normal: var(--neutral-150);
  --footer-text-sub: var(--neutral-200);

  --footer-border: var(--neutral-500);
  --footer-border-light: var(--neutral-300);

  --footer-title-head: #0e9ea3;

  --footer-icon: var(--neutral-200);
  --footer-divider: var(--neutral-400);

  --footer-social: #192b24;
  --footer-social-hover: #0c7874;
}

#footer {
  background: #fff;
  padding: 0 0 20px 0;
  color: #111;
  font-size: 14px;
}

#footer a {
  transition: color 0.2s ease;
}

#footer .ftlogo img {
  max-width: 270px;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  #footer .ftlogo img {
    max-width: 190px;
  }
}

#footer .footer-top {
  background: linear-gradient(
    to bottom,
    var(--footer-grad-start),
    var(--footer-grad-end)
  );
  padding: 60px 0 30px;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 30px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--footer-color-text);
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--footer-text-normal);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--footer-social);
  color: var(--footer-text-normal);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--footer-social-hover);
  color: var(--footer-color-text);
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: var(--footer-color-text);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #ccc;
}

#footer .footer-top h4::after {
  background: var(--footer-title-head);
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid var(--footer-border);
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--footer-text-normal);
}

#footer .footer-top .footer-links ul a:hover {
  color: #f8bf76;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
  color: var(--footer-color-text);
}
#footer .footer-top .footer-contact p a {
  color: var(--footer-color-text);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}
#footer .privacy-link {
  background-color: #33717a;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid #ccc;
}
#footer .privacy-link ul {
  margin: 0 auto;
  text-align: center;
}
#footer .privacy-link ul li {
  display: inline;
  margin-right: 30px;
}
#footer .privacy-link ul li a {
  color: #ccc;
}
#footer .privacy-link ul li a:hover {
  color: #eee;
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
.crumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.5rem 0 1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  list-style: none;
  font-size: 85%;
  border-top: 1px solid #ccc;
}

.crumb-item + .crumb-item {
  padding-left: 0.5rem;
}

.crumb-item + .crumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #b0abab;
  content: "/";
}

.crumb-item + .crumb-item:hover::before {
  text-decoration: underline;
}

.crumb-item + .crumb-item:hover::before {
  text-decoration: none;
}

.crumb-item.active,
.crumb-item a {
  color: #b0abab;
}

/*--------------------------------------------------------------
# second level
--------------------------------------------------------------*/

#level {
  padding: 60px 0 40px 0;
  background-size: cover;
}

#level {
  background: none;
}

#level .is-field {
  background: #fff;
}

/*--------------------------------------------------------------
# under level
--------------------------------------------------------------*/

#lower {
  padding: 60px 0 40px 0;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #f7f7f7;
}

/*--------------------------------------------------------------
# section-inner
--------------------------------------------------------------*/
.section {
  width: 100%;
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

/*--------------------------------------------------------------
# mojotop
--------------------------------------------------------------*/
#mojotop {
  padding: 60px 0;
}

/*--------------------------------------------------------------
# News & Topics
--------------------------------------------------------------*/

#new-info {
  padding: 60px 0;
}

/*--------------------------------------------------------------
# blossom
--------------------------------------------------------------*/

#blossom {
  padding: 60px 0;
}

/*--------------------------------------------------------------
# campain
--------------------------------------------------------------*/

#campain {
  padding: 60px 0 40px 0;
}

/*--------------------------------------------------------------
# Shimonita de exp
--------------------------------------------------------------*/
#event-exp-list {
  padding: 60px 0;
}

/*--------------------------------------------------------------
# farm-list
--------------------------------------------------------------*/

#farm-list {
  padding: 60px 0;
}

/*--------------------------------------------------------------
# Staff blog
--------------------------------------------------------------*/
#staff-blog-list {
  padding: 60px 0;
}

/*--------------------------------------------------------------
# Shimonita Welcome list
--------------------------------------------------------------*/

#welcome-list {
  padding: 60px 0 40px 0;
}

/*--------------------------------------------------------------
# Access List
--------------------------------------------------------------*/

#access-list {
  padding: 60px 0 40px 0;
}

/*--------------------------------------------------------------
# konpara
--------------------------------------------------------------*/

#konpara {
  width: 100%;
  padding: 60px 0;
}

/*--------------------------------------------------------------
#catchups
--------------------------------------------------------------*/

#catchups {
  padding: 100px 0;
}

/*--------------------------------------------------------------
#sns
--------------------------------------------------------------*/

#sns {
  padding: 60px 0;
}

/*--------------------------------------------------------------
#banner-list
--------------------------------------------------------------*/

#banner-list {
  padding: 60px 0;
}

/*--------------------------------------------------------------
# slide Section
--------------------------------------------------------------*/
.is-slide {
  opacity: 0;
}

.is-slide.is-visible {
  opacity: 1;
  transition: opacity 0.25s ease-out;
}

@media (max-width: 599px) {
  .is-slide {
    display: block;
    width: 100%;
    height: 60vh;
    background: #000;
  }

  .is-slide .carousel-item {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (min-width: 600px) {
  .is-slide {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
  }

  .is-slide .carousel-item {
    width: 100%;
    aspect-ratio: 16 / 8.5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (min-width: 1400px) {
  .is-slide .carousel-item {
    max-height: 900px;
  }
}

.is-slide .carousel-content {
  background: rgba(0, 0, 0, 0.2);
  display: inline-block;
  padding: 0.5em 1em;
  border-radius: 4px;
}

.is-slide .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.02);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.is-slide .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  inset: 0;
}

.is-slide .carousel-background img {
  max-width: 100%;
}

.is-slide a {
  text-decoration: none;
}

.is-slide .carousel-content {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}

.is-slide h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 700;
}

.is-slide p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

.is-slide .carousel-fade {
  overflow: hidden;
}

.is-slide .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

.is-slide .carousel-fade .carousel-inner .carousel-item,
.is-slide .carousel-fade .carousel-inner .active.carousel-item-left,
.is-slide .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

.is-slide .carousel-fade .carousel-inner .active,
.is-slide .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
.is-slide
  .carousel-fade
  .carousel-inner
  .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

.is-slide .carousel-fade .carousel-inner .carousel-item-next,
.is-slide .carousel-fade .carousel-inner .carousel-item-prev,
.is-slide .carousel-fade .carousel-inner .active.carousel-item-left,
.is-slide .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: none;
}

.is-slide .carousel-control-prev,
.is-slide .carousel-control-next {
  width: 10%;
}

.is-slide .carousel-control-next-icon,
.is-slide .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.is-slide .carousel-indicators li {
  cursor: pointer;
}

.is-slide .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #460c79;
}

.is-slide .btn-get-started:hover {
  background: #fff;
  color: #460c79;
}

/*--------------------------------------------------------------
# blossom
--------------------------------------------------------------*/
.is-blossom .bl-card {
  border-radius: 10px 10px 4px 4px;
  background: #fff;
  width: 100%;
  height: auto;
  flex-direction: column;
  display: flex;
}
.is-blossom list {
  display: flex;
}

.is-blossom .pave {
  border-radius: 10px 0px 4px 4px;
  background-color: #fff;
  margin-bottom: 20px;
}
.is-blossom .twcl {
  border-radius: 0px 10px 4px 4px;
  background-color: #fff;
  margin-bottom: 20px;
}
.is-blossom .column {
  margin-top: 20px;
  font-size: 20px;
}
.is-blossom .column p {
  width: 100%;
  margin: 0 auto 30px auto;
  font-size: 85%;
}
.is-blossom .column .caption {
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
}

.is-blossom .entitle {
  position: relative;
  padding-top: 30px;
  padding-bottom: 4px;
  font-size: 26px;
  color: #518ba0;
  border-bottom: 1px solid #518ba0;
}

.is-blossom .entitle span {
  position: relative;
  z-index: 2;
}

.is-blossom .entitle::before {
  content: attr(data-en);
  position: absolute;
  top: 0px;
  left: 0;
  color: rgba(136, 2, 68, 0.1);
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 1;
}
.is-blossom .datewrap {
  align-self: flex-end;
  margin: auto 0 20px 0;
}
.is-blossom .toolbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.is-blossom .realtime {
  margin: 15px 20px 0 0;
  font-size: 80%;
  color: var(--primary-surface-hover);
}
.is-blossom .percent {
  border-radius: 20px;
  padding: 6px 10px 6px 10px;
  border: 2px solid var(--primary-surface-hover);
  background-color: var(--primary-surface-hover);
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  width: auto;
}
.is-blossom .image {
  width: 100%;
  height: auto;
}
.is-blossom .btn {
  border-radius: 4px;
  padding: 6px 30px 6px 30px;
  border: 2px solid var(--primary-surface-hover);
  color: var(--primary-surface-hover);
  font-weight: 500;
  margin: 10px 0px 20px 0px;
  font-size: 12px;
}

.is-blossom .btn:hover {
  background-color: var(--primary-surface-hover);
  color: #fff;
}
@media (min-width: 992px) {
  .is-blossom .btn {
    float: right;
  }
}
@media (max-width: 991px) {
  .is-blossom h2 {
    font-size: 24px;
  }
  .is-blossom .btn {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .is-blossom .pave {
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 0px;
  }
  .is-blossom .twcl {
    border-radius: 0px 0px 10px 10px;
  }
}

/*--------------------------------------------------------------
# mojotop
--------------------------------------------------------------*/

.is-mojotop {
  background: #fff;
  background-size: cover;
  text-align: center;
}

.is-mojotop img {
  width: 70%;
}
#mojotop img {
  width: 70% !important;
}
/*--------------------------------------------------------------
# News & Topics
--------------------------------------------------------------*/

.is-new-info {
  background: #fff;
  background-size: cover;
}

.is-new-info p {
  color: #111;
}

.is-new-info .portfolio-item {
  width: 100%;
}
.is-new-info .crown {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  width: 27%;
}

.is-new-info .date {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.is-new-info .cat {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  padding: 1px 5px;
  text-align: center;
  border-radius: 8px;
  color: #fff;
}

.is-new-info .content {
  display: inline-block;
  width: 72%;
  text-align: left;
}

.is-new-info ul {
  margin-left: 0;
}
.is-new-info ul li {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--divider-soft);
  font-size: 1.2rem;
  padding: 6px 0px;
  margin-right: 20px;
}

.is-new-info .topics {
  background-color: orange;
  color: #fff;
}
.is-new-info .news {
  background-color: maroon;
  color: #fff;
}

.is-new-info .btn {
  border-radius: 4px;
  padding: 6px 30px 6px 30px;
  border: 2px solid var(--primary-surface-hover);
  color: var(--primary-surface-hover);
  font-weight: 500;
  margin: 10px 0px 20px 0px;
  font-size: 12px;
}

.is-new-info .btn:hover {
  background-color: var(--primary-surface-hover);
  color: #fff;
}

@media (max-width: 991px) {
  .is-new-info .btn {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .is-new-info .btn {
    float: right;
  }
}

@media (min-width: 1280px) {
  .is-new-info .date {
    width: 55%;
  }
  .is-new-info .cat {
    font-size: 80%;
    width: 38%;
    margin-left: -15px;
  }
}

@media (max-width: 1279px) {
  .is-new-info .crown {
    width: 100%;
    margin-bottom: 8px;
    margin-left: 0;
  }
  .is-new-info .date {
    font-size: 80%;
  }
  .is-new-info .cat {
    font-size: 60%;
  }
  .is-new-info .content {
    width: 100%;
  }
  .is-new-info ul {
    margin-left: -25px;
  }
}

/* coloring / top badge
-------------------------------------------- */

.is-new-info .cat-topics,
.is-new-info .cat-topics-en {
  background-color: #2c41be;
}

.is-new-info .cat-news,
.is-new-info .cat-news-en {
  background-color: #3aad1b;
}

.is-new-info .cat-info,
.is-new-info .cat-info-en {
  background-color: #c21043;
}

/*--------------------------------------------------------------
# campain
--------------------------------------------------------------*/
.is-campain .wraps {
  padding: 10px;
  margin-top: 20px;
  border-radius: 10px;
  background-color: #fff;
}
.is-campain .pave {
  border-radius: 10px 0px 4px 4px;
  background-color: #fff;
}
.is-campain .perform {
  border-radius: 0px 10px 4px 4px;
  background-color: #fff;
  margin: 0;
}
.is-campain .date {
  margin-top: 10px;
}
.is-campain .entitle {
  position: relative;
  padding-top: 10px;
  font-size: 26px;
  border-bottom: 1px solid #187b86;
}
.is-campain .entitle a {
  color: #187b86;
}
.is-campain .entitle span {
  position: relative;
  z-index: 2;
}
.is-campain .entitle::before {
  content: attr(data-en);
  position: absolute;
  top: 0px;
  left: 0;
  color: rgba(136, 2, 68, 0.1);
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 1;
}

/*--------------------------------------------------------------
# Shimonita de exp
--------------------------------------------------------------*/

.is-event-exp-list {
  background: #fff;
  background-size: cover;
}

.is-event-exp-list p {
  color: #111;
}

.is-event-exp-list .portfolio-item {
  width: 100%;
}
.is-event-exp-list .crown {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  width: 33%;
}

.is-event-exp-list .date {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.is-event-exp-list .cat {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  padding: 1px 5px;
  text-align: center;
  border-radius: 8px;
  color: #fff;
}

.is-event-exp-list .content {
  display: inline-block;
  width: 65%;
  text-align: left;
}

.is-event-exp-list ul {
  margin-left: 0;
}
.is-event-exp-list ul li {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--divider-soft);
  transition: border-color 0.2s ease;
  font-size: 1.2rem;
  padding: 6px 0px;
  margin-right: 20px;
}

.is-event-exp-list ul li:hover {
  border-bottom-color: var(--neutral-300);
}

.is-event-exp-list .btn {
  border-radius: 4px;
  padding: 6px 30px 6px 30px;
  border: 2px solid var(--primary-surface-hover);
  color: var(--primary-surface-hover);
  font-weight: 500;
  margin: 10px 0px 20px 0px;
  font-size: 12px;
}

.is-event-exp-list .btn:hover {
  background-color: var(--primary-surface-hover);
  color: #fff;
}

@media (min-width: 1280px) {
  .is-event-exp-list .date {
    width: 42%;
  }
  .is-event-exp-list .cat {
    font-size: 80%;
    width: 48%;
  }
}
@media (max-width: 1279px) {
  .is-event-exp-list .crown {
    width: 100%;
    margin-bottom: 8px;
    margin-left: 0;
  }
  .is-event-exp-list .date {
    font-size: 80%;
  }
  .is-event-exp-list .cat {
    font-size: 60%;
  }
  .is-event-exp-list .content {
    width: 100%;
  }
  .is-event-exp-list ul {
    margin-left: -25px;
  }
}
@media (max-width: 991px) {
  .is-event-exp-list .btn {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .is-event-exp-list .btn {
    float: right;
  }
}

/* coloring / top badge
-------------------------------------------- */

.is-event-exp-list .eventexp {
  background-color: #1f9ff1;
}
.is-event-exp-list .cat {
  background-color: #1f9ff1;
}
.is-event-exp-list .cat-log-negi {
  background-color: #3aad1b;
}
.is-event-exp-list .cat-log-heritage {
  background-color: #c21043;
}
.is-event-exp-list .cat-log-kozufarm {
  background-color: #2c41be;
}
.is-event-exp-list .cat-log-other {
  background-color: #109fc2;
}
.is-event-exp-list .cat-log-geo {
  background-color: #c29010;
}

/*--------------------------------------------------------------
# farm-list
--------------------------------------------------------------*/

.is-farm-list p {
  color: #111;
}

.is-farm-list .portfolio-item {
  width: 100%;
}
.is-farm-list .crown {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  width: 33%;
}

.is-farm-list .date {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.is-farm-list .cat {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  padding: 1px 5px;
  text-align: center;
  border-radius: 8px;
  color: #fff;
}

.is-farm-list .content {
  display: inline-block;
  width: 65%;
  text-align: left;
}

.is-farm-list ul {
  margin-left: 0;
}
.is-farm-list ul li {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--divider-soft);
  font-size: 1.2rem;
  padding: 6px 0px;
  margin-right: 20px;
  transition: border-color 0.2s ease;
}

.is-farm-list ul li:hover {
  border-bottom-color: var(--neutral-300);
}

.is-farm-list .btn {
  border-radius: 4px;
  padding: 6px 30px 6px 30px;
  border: 2px solid var(--primary-surface-hover);
  color: var(--primary-surface-hover);
  font-weight: 500;
  margin: 10px 0px 20px 0px;
  font-size: 12px;
}

.is-farm-list .btn:hover {
  background-color: var(--primary-surface-hover);
  color: #fff;
}

@media (max-width: 991px) {
  .is-farm-list .btn {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .is-farm-list .btn {
    float: right;
  }
}

@media (min-width: 1280px) {
  .is-farm-list .date {
    width: 42%;
  }
  .is-farm-list .cat {
    font-size: 80%;
    width: 45%;
  }
}

@media (max-width: 1279px) {
  .is-farm-list .crown {
    width: 100%;
    margin-bottom: 8px;
    margin-left: 0;
  }
  .is-farm-list .date {
    font-size: 80%;
  }
  .is-farm-list .cat {
    font-size: 60%;
  }
  .is-farm-list .content {
    width: 100%;
  }
  .is-farm-list ul {
    margin-left: -25px;
  }
}

@media (max-width: 991px) {
  .is-farm-list .crown {
    width: 100%;
    margin-bottom: 8px;
    margin-left: 0;
  }
  .is-farm-list .content {
    width: 100%;
  }
  .is-farm-list ul {
    margin-left: -25px;
  }
}
/* coloring / top badge
-------------------------------------------- */

.is-farm-list .cat {
  background-color: #24a295;
}

/*--------------------------------------------------------------
# Staff blog ← is-event-exp を丸ごとコピー
--------------------------------------------------------------*/

.is-staff-list {
  background: #fff;
  background-size: cover;
}

.is-staff-list p {
  color: #111;
}

.is-staff-list .portfolio-item {
  width: 100%;
}
.is-staff-list .crown {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  width: 33%;
}

.is-staff-list .date {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.is-staff-list .cat {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  padding: 1px 5px;
  text-align: center;
  border-radius: 8px;
  color: #fff;
}

.is-staff-list .content {
  display: inline-block;
  width: 65%;
  text-align: left;
}

.is-staff-list ul {
  margin-left: 0;
}
.is-staff-list ul li {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--divider-soft);
  font-size: 1.2rem;
  padding: 6px 0px;
  margin-right: 20px;
}

.is-staff-list .btn {
  border-radius: 4px;
  padding: 6px 30px 6px 30px;
  border: 2px solid var(--primary-surface-hover);
  color: var(--primary-surface-hover);
  font-weight: 500;
  margin: 10px 0px 20px 0px;
  font-size: 12px;
}

.is-staff-list .btn:hover {
  background-color: var(--primary-surface-hover);
  color: #fff;
}

@media (min-width: 1280px) {
  .is-staff-list .date {
    width: 42%;
  }
  .is-staff-list .cat {
    font-size: 80%;
    width: 48%;
  }
}
@media (max-width: 1279px) {
  .is-staff-list .crown {
    width: 100%;
    margin-bottom: 8px;
    margin-left: 0;
  }
  .is-staff-list .date {
    font-size: 80%;
  }
  .is-staff-list .cat {
    font-size: 60%;
  }
  .is-staff-list .content {
    width: 100%;
  }
  .is-staff-list ul {
    margin-left: -25px;
  }
}
@media (max-width: 991px) {
  .is-staff-list .btn {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .is-staff-list .btn {
    float: right;
  }
}

/* coloring / top badge
-------------------------------------------- */

.is-staff-list .eventexp {
  background-color: #1f9ff1;
}
.is-staff-list .cat {
  background-color: #1f9ff1;
}
.is-staff-list .cat-log-negi {
  background-color: #3aad1b;
}
.is-staff-list .cat-log-heritage {
  background-color: #c21043;
}
.is-staff-list .cat-log-kozufarm {
  background-color: #2c41be;
}
.is-staff-list .cat-log-other {
  background-color: #109fc2;
}
.is-staff-list .cat-log-geo {
  background-color: #c29010;
}

/*--------------------------------------------------------------
# Welcome to Shimonita
--------------------------------------------------------------*/

.is-welcome-list {
  position: relative;
  background: url("/assets/img/about-bg.jpg") center top no-repeat fixed;
  background-size: cover;
}

.is-welcome-list::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 9;
}

.is-welcome-list .container {
  position: relative;
  z-index: 10;
}
.is-welcome-list .list {
  display: flex;
  padding: 0px;
}
.is-welcome-list .wrap {
  display: flex;
}

.is-welcome-list .wel-card {
  border-radius: 10px 10px 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  background: #fff;
}

.is-welcome-list .wel-card .img {
  position: relative;
}

.is-welcome-list .wel-card .img img {
  border-radius: 10px 10px 0 0;
}

.is-welcome-list .wel-card .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #0c5c78;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc(50% - 32px);
  bottom: -30px;
  transition: 0.3s;
}

.is-welcome-list .wel-card i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

.is-welcome-list .wel-card:hover .icon {
  background-color: #55a5aa;
}

.is-welcome-list .wel-card:hover i {
  color: #fff;
}

.is-welcome-list .wel-card h2 {
  color: #000;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

.is-welcome-list .wel-card h2 a {
  color: #333;
}

.is-welcome-list .wel-card h2 a:hover {
  color: #088de4;
}

.is-welcome-list .wel-card p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}

/*--------------------------------------------------------------
# Access
--------------------------------------------------------------*/

.is-access-list {
  background: #fff;
  background-size: cover;
}

.is-access-list .box {
  margin-bottom: 30px;
}

.is-access-list .icon {
  float: left;
}

.is-access-list .icon i {
  color: #0c5c78;
  font-size: 36px;
  line-height: 1;
  transition: 0.5s;
}

.is-access-list .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.is-access-list .title a {
  color: #111;
}

.is-access-list .box:hover .title a {
  color: #0c5c78;
}

.is-access-list .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}

.is-access-list-sub {
  background: #fff;
  background-size: cover;
  padding: 30px 0 20px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-top: 35px;
  width: 100%;
}

.is-access-list-sub .box {
  margin-top: 10px;
  margin-bottom: 10px;
}

.is-access-list-sub .icon {
  float: left;
}

.is-access-list-sub .icon i {
  color: #0c5c78;
  font-size: 36px;
  line-height: 0.8;
  transition: 0.5s;
}

.is-access-list-sub .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 0px;
  font-size: 18px;
}

.is-access-list-sub .title a {
  color: #111;
}

.is-access-list-sub .box:hover .title a {
  color: #0c5c78;
}
.is-access-list-sub .description {
  font-size: 12px;
  margin-left: 60px;
  line-height: 20px;
  margin-bottom: 0;
}

/* access submenu
--------------------------------------------------------------------------- */

.sub .icon {
  float: left;
}
.sub .icon i {
  color: #0c5c78;
  font-size: 36px;
  line-height: 0.8;
  transition: 0.5s;
}
.sub .access {
  margin-left: 40px;
}

@media (max-width: 992px) {
  .disap {
    display: none;
  }
}

/*--------------------------------------------------------------
# konpara
--------------------------------------------------------------*/

.is-konpara .kn-card {
  width: 100%;
  height: auto;
  flex-direction: column;
  display: flex;
}

.is-konpara .pave {
  border-radius: 10px 0px 4px 4px;
  background-color: #fff;
  margin-bottom: 20px;
}
.is-konpara .twcl {
  border-radius: 0px 10px 4px 4px;
  margin-bottom: 20px;
  background-color: #fff;
  background-image: url("/assets/ve/img/nyakucchi.jpg");
  background-size: 20%;
  background-repeat: no-repeat;
  background-position: 90% 50%;
}

@media (max-width: 991px) {
  .is-konpara .pave {
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 0px;
  }
  .is-konpara .twcl {
    border-radius: 0px 0px 10px 10px;
    background-position: 90% 65%;
    margin-top: -30px;
  }
}

.is-konpara .column {
  margin-top: 20px;
  font-size: 20px;
}
.is-konpara .column p {
  width: 100%;
  margin: 0 auto 10px auto;
  font-size: 85%;
}
.is-konpara .column .caption {
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
}

.is-konpara .entitle {
  position: relative;
  padding-top: 30px;
  font-size: 26px;
  border-bottom: 1px solid rgba(5, 62, 98, 1);
}

.is-konpara .entitle span {
  position: relative;
  z-index: 2;
}

.is-konpara .entitle::before {
  content: attr(data-en);
  position: absolute;
  top: 0px;
  left: 0;
  color: rgba(136, 2, 68, 0.1);
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 1;
}
#konpara .datewrap {
  align-self: flex-end;
  margin: -30px 0 20px 0;
}
.is-konpara .toolbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.is-konpara .realtime {
  margin: 15px 20px 0 0;
  font-size: 80%;
  color: var(--primary-surface-hover);
}

.is-konpara .media {
  margin-top: 0px;
  margin-bottom: 0px;
}

.is-konpara .image {
  width: 100%;
  height: auto;
}
.is-konpara .btn {
  border-radius: 4px;
  padding: 6px 30px 6px 30px;
  border: 2px solid var(--primary-surface-hover);
  color: var(--primary-surface-hover);
  font-weight: 500;
  margin: 10px 0px 20px 0px;
  font-size: 12px;
}

.is-konpara .btn:hover {
  background-color: var(--primary-surface-hover);
  color: #fff;
}

@media (min-width: 992px) {
  .is-konpara .btn {
    float: right;
  }
}
@media (max-width: 991px) {
  .is-konpara h2 {
    font-size: 24px;
  }
  .is-konpara .btn {
    width: 100%;
  }
}

/*--------------------------------------------------------------
Catchups Section
--------------------------------------------------------------*/

.is-catchups-list {
  padding: 100px 0;
}

.is-catchups-list {
  background:
    linear-gradient(rgba(0, 86, 60, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%),
    url(/assets/img/myougi-bg.jpg) center center / cover fixed;
  color: #fff;
}

.is-catchups-list .section-header {
  margin-bottom: 40px;
}

.is-catchups-list h2 {
  font-size: 40px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.is-catchups-list .owl-nav,
.is-catchups-list .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.is-catchups-list .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

.is-catchups-list .owl-dot.active {
  background-color: #c14c00;
}

.is-catchups-list .cta-btn {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  margin-bottom: 30px;
  border: 3px solid #fff;
  color: #fff;
}
.is-catchups-list .cta-btn:hover {
  background: #c14c00;
  border: 3px solid #96b8c4;
}
@media (max-width: 991px) {
  .is-catchups-list {
    padding: 50px 0;
  }
  .is-catchups-list h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
  }
}

/*--------------------------------------------------------------
# sns
--------------------------------------------------------------*/

.is-sns .list {
  border-radius: 10px;
  background-color: #fff;
}
.is-sns .pave {
  border-radius: 10px 10px 4px 4px;
  background-color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
}
.is-sns .twcl {
  border-radius: 10px 10px 10px 10px;
  background-color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
}
.is-sns .sns {
  border-radius: 10px 10px 4px 4px;
  background-color: #fff;
  margin-bottom: 20px;
}
.is-sns .social-links {
  text-align: center;
}
.is-sns .social-links img {
  width: 150px;
  height: auto;
  padding: 0px 30px 20px 30px;
}

.is-sns .date {
  font-weight: 600;
  color: #555;
}

.is-sns h3.title {
  margin-top: 5px;
  font-size: 100%;
  font-weight: 500;
  padding: 0;
}

.is-sns h3.title a {
  color: #555;
}
.is-sns .btn {
  border-radius: 4px;
  padding: 6px 30px 6px 30px;
  border: 2px solid var(--primary-surface-hover);
  color: var(--primary-surface-hover);
  font-weight: 500;
  margin: 10px 0px 20px 0px;
  width: 100%;
}

.is-sns .btn:hover {
  background-color: var(--primary-surface-hover);
  color: #fff;
}
.is-sns .sns-container {
  width: 100%;
}

@media (max-width: 991px) {
  .is-sns .sns-container {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .is-sns .sns-container {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# BANNER
--------------------------------------------------------------*/

.is-banner-list img {
  max-width: 100%;
  height: auto;
  transition: 0.3s;
  padding: 15px 0;
  padding: 0 10px;
}

.is-banner-list img:hover {
  opacity: 1;
}

.is-banner-list .owl-nav,
.is-banner-list .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.is-banner-list .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

.is-banner-list .owl-dot.active {
  background-color: #460c79;
}

/*--------------------------------------------------------------
.is-field
--------------------------------------------------------------*/

/* field */

.is-field .content-block h1 {
  position: relative;
  color: #0c5c78;
  font-size: 30px;
  padding: 10px 0;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
}

.is-field .content-block h2 {
  position: relative;
  color: #518ba0;
  text-transform: uppercase;
  font-size: 30px;
  padding-top: 55px;
  padding-bottom: 35px;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
}
.is-field h3 {
  position: relative;
  color: #333;
  font-size: 24px;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 8px;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
}

.is-field h4::before,
.is-field h5::before,
.is-field h6::before {
  font-family: shimonita;
  content: "\e924";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 40px;
  height: 48px;
  line-height: 40px;
  text-align: center;

  color: #fff;
  border: solid 3px #fff;
  border-radius: 10px 0 0 10px;
}

.is-field :is(blockquote, .clipadd, .quotepin) li {
  font-size: inherit;
}

.is-field :is(blockquote, .clipadd, .quotepin) :is(h1, h2, h3, p) {
  padding: 0;
}
.is-field :is(blockquote, .clipadd, .quotepin) :is(h1, h2) {
  margin: 0 0 20px 0;
}

.is-field h4,
.is-field h5,
.is-field h6 {
  background: #dceddf;
}

.is-field h4::before,
.is-field h5::before,
.is-field h6::before {
  background: #158b2b;
}

/* .course */
.course {
  position: relative;
  margin: 15px 0;
  padding: 15px 12px;
  box-sizing: border-box;
  font-style: normal;
  color: #464646;
  border: 3px solid #d39477;
  border-radius: 6px;
}

/* ACF route plan
------------------------------------------------------------ */
.plan p {
  line-height: 1.6em;
}
.plan span {
  background-color: #e2f6f3;
  padding: 0px 10px;
  color: #158b2b;
  border-radius: 25px;
}

/*--------------------------------------------------------------
.is-geo-park Geopark
--------------------------------------------------------------*/

.is-geo-park p {
  font-size: 120%;
}

.is-geo-park h1,
.is-geo-park h2,
.is-geo-park h3,
.is-geo-park h4,
.is-geo-park h5,
.is-geo-park h6 {
  position: relative;
  font-weight: 600;
}
.is-geo-park .content-block h1 {
  font-size: 32px;
  margin: 70px 0 30px;
  padding: 1rem 2rem;
  color: #518ba0;
  border-top: 3px solid #518ba0;
  border-bottom: 3px solid #518ba0;
}
.is-geo-park .content-block h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  padding: 0.8rem 2rem;
  color: #fff;
  background: #009970;
  box-shadow: 5px 5px 0 #007032;
}
.is-geo-park h3 {
  font-size: 24px;
  display: inline-block;
  margin: 20px 0;
  padding: 0.2rem 2rem 0.2rem 3rem;
  color: #fff;
  background: #da4a1f;
  border-radius: 100vh 0 0 100vh;
}

.is-geo-park h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}
.is-geo-park h4 {
  padding: 1rem 1rem;
  font-size: 24px;
  border-bottom: 6px solid #009970;
  font-weight: 500;
}

.is-geo-park h4::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20%;
  height: 6px;
  background: #00cc89;
}
.is-geo-park h5 {
  display: inline-block;
  margin: 1rem 0 1rem -10px;
  padding: 1rem 3rem;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  background: #0075a9;
  border-radius: 0 100vh 100vh 0;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

.is-geo-park h5::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  border-top: 10px solid #005276;
  border-left: 10px solid transparent;
}
.is-geo-park h6 {
  margin: 10px 0;
  padding: 8px 5px 8px 50px;
  font-size: 22px;
  font-weight: 500;
  color: #474747;
  background: #e3e9f0;
  border-radius: 0 10px 10px 0;
}

.is-geo-park h6::before {
  content: "\e924";
  font-family: shimonita;
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 48px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background: #15218b;
  border: 3px solid #fff;
  border-radius: 10px 0 0 10px;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .is-geo-park h1 {
    font-size: 24px;
  }
  h2.trans-title,
  .is-geo-park h2 {
    font-size: 20px;
    padding-bottom: 15px;
    padding: 1rem 1rem;
  }
  .is-geo-park h3 {
    font-size: 18px;
    padding: 0.5rem 2rem 0.5rem 2.5rem;
  }

  .is-geo-park strong {
    font-size: 100%;
  }
  .is-geo-park .lft {
    padding-right: 0px;
  }
  .is-geo-park .rgt {
    padding-left: 0px;
  }
}

.is-geo-park strong {
  color: #0c5c78;
  font-size: 110%;
}

.is-geo-park :is(blockquote, .clipadd, .quotepin) li {
  font-size: inherit;
}

.is-geo-park :is(blockquote, .clipadd, .quotepin) :is(h1, h2, h3, p) {
  padding: 0;
}
.is-geo-park :is(blockquote, .clipadd, .quotepin) :is(h1, h2) {
  margin: 0 0 20px 0;
}

/* JTA　logo
---------------------------------------- */

.jta {
  background: url("/assets/img/JTA-logo-sm.png") no-repeat;
  background-position: 100% 0%;
}

.jta-logo {
  margin-top: 100px;
  margin-bottom: 100px;
  text-align: center;
}

@media (max-width: 991px) {
  .jta {
    background: url("/assets/img/trans.png") no-repeat;
    background-position: 100% 0%;
  }
}

/*--------------------------------------------------------------
.service dl / dt / dd
--------------------------------------------------------------*/

/* table block wrapper */
.tb {
  margin: 30px 0;
}

/* section title */
.tbttl {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
}

/* ===== service dl ===== */

.service {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  background-color: #fff;
  border-top: 1px solid #e4e4e4;
  border-left: 1px solid #e4e4e4;
  box-sizing: border-box;
}

.service dt,
.service dd {
  margin: 0;
  padding: 15px;
  box-sizing: border-box;
  border-right: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

/* label */
.service dt {
  width: 25%;
  font-weight: 600;
  background-color: #fbfbfb;
}

/* value */
.service dd {
  width: 75%;
}

/* ===== responsive ===== */

@media (max-width: 992px) {
  .service {
    border: none;
  }

  .service dt,
  .service dd {
    width: 100%;
    border-right: none;
  }

  .service dd {
    margin: 10px 0 20px;
    text-align: left;
  }
}
/* map */
.service + .jmap {
  border-top: none;
  margin-top: 0;
}

/*--------------------------------------------------------------
# journey Section
--------------------------------------------------------------*/

.journey-container img {
  width: 100%;
  height: 100%;
}

.journey-container h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}
.journey-container p {
  width: 100%;
  margin: 0 auto 30px auto;
  color: #fff;
}
.journey-container .caption {
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
}

/* journey Details
--------------------------------*/
.journey-details {
  padding-top: 0px;
}

.journey-container {
  position: relative;
  padding: 0 100px;
}

.journey-carousel {
  position: relative;
  z-index: 1;
}

.journey-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.journey-details .journey-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

.journey-carousel .owl-dot.active {
  background-color: #18837d;
}

.journey-carousel .owl-dots {
  display: block;
  margin-top: 15px;
}

@media (max-width: 991px) {
  .journey-container h2 {
    font-size: 24px;
  }
  .journey-container {
    padding: 0 10px;
  }
}

/*--------------------------------------------------------------
.is-notice 
--------------------------------------------------------------*/

.is-notice p {
  color: #111;
}
.is-notice ul {
  margin-left: 0;
}
.is-notice .portfolio-item ul li {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--divider-soft);
  font-size: 1.2rem;
  padding: 6px 0;
}

.is-notice .portfolio-item {
  width: 100%;
}

.is-notice .crown {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  width: 100%;
}
.is-notice .date {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  margin-right: 3px;
}
.is-notice .cat {
  display: inline-block;
  vertical-align: top;
  padding: 1px 5px;
  text-align: center;
  border-radius: 8px;
  color: #fff;
  font-size: 70%;
}
.is-notice .content {
  display: inline-block;
  width: 100%;
  text-align: left;
}
.is-notice .topics {
  background-color: orange;
  color: #fff;
}
.is-notice .news {
  background-color: maroon;
  color: #fff;
}

/* coloring / top badge
-------------------------------------------- */

.is-notice .cat-topics,
.is-notice .cat-topics-en {
  background-color: #2c41be;
}

.is-notice .cat-news,
.is-notice .cat-news-en {
  background-color: #3aad1b;
}

.is-notice .cat-info,
.is-notice .cat-info-en {
  background-color: #c21043;
}

@media (min-width: 992px) {
  .is-notice .cat {
    font-size: 70%;
    width: 80px;
  }
  .is-notice li {
    margin-right: 40px;
  }
}
@media (max-width: 991px) {
  .is-notice .crown {
    width: 100%;
    margin-bottom: 8px;
    margin-left: 0;
  }
  .is-notice .date {
    font-size: 80%;
  }
  .is-notice .cat {
    font-size: 60%;
  }
  .is-notice .content {
    width: 100%;
  }
  .is-notice ul {
    margin-left: -25px;
  }
}

/*--------------------------------------------------------------
.is-sitemap
--------------------------------------------------------------*/

.is-sitemap h2 {
  position: relative;
  width: 100%;
  margin-top: 25px;
  padding-top: 5px;
  padding-left: 70px;
  padding-bottom: 5px;
  color: #333;
  font-weight: 600;
  font-size: 20px;
  text-align: left;
  border-bottom: 2px solid #477f9a;
}
.is-sitemap h2 i {
  position: absolute;
  left: 0;
  bottom: 0px;
  background-color: #477f9a;
  color: #fff;
  font-size: 34px;
  padding: 8px;
  margin-right: 0px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 10% 10% 0% 0%;
}

.is-sitemap .sitemap-block a i {
  color: #fff;
}
.is-sitemap .sitemap-block a:hover i {
  background-color: #c5d0d3;
}
.is-sitemap .sitemap-block p {
  padding: 0px 0px 30px 0px;
  margin-left: 20px;
  line-height: 1.8em;
  color: #333;
  font-size: 100%;
}
.is-sitemap .sitemap-block a {
  color: #333;
}
.is-sitemap .sitemap-block a:hover {
  color: #f67a0a;
}

.is-sitemap .sitemap-block .catlist a {
  font-size: 95%;
}
.is-sitemap .sitemap-block .catlist {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #bbb;
}

.is-sitemap .sitemap-block img {
  width: 100%;
  height: auto;
}
.is-sitemap .sitemap-block .wp-block-columns {
  margin: 0;
}
.is-sitemap .sitemap-block .wp-block-column {
  padding: 0 20px;
  flex-grow: 1;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
.is-sitemap .sitemap-block .wp-block-column p {
  padding: 3px 0px 3px 0px !important;
}

/*--------------------------------------------------------------
.inquiry
--------------------------------------------------------------*/

.inquiry p {
  margin: 0px 20px 0px 20px;
}
.inquiry input[type="text"] {
  width: 100%;
  box-sizing: border-box;
}
.inquiry input,
.inquiry textarea {
  border: 1px solid #378886;
  border-radius: 4px;
  padding: 4px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.inquiry input.mx,
.inquiry textarea.mx {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.inquiry .ttls {
  margin: 0 30px;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
  padding: 0px 0;
  font-weight: 300;
}
.inquiry .ctns {
  margin: 0 30px;
  font-size: 20px;
  padding: 10px 0;
  font-weight: 500;
}
.inquiry .msg {
  margin-left: 30px;
  margin-bottom: 100px;
  font-size: 16px;
  padding: 10px 0;
  font-weight: 400;
}

.inquiry .twins {
  width: 40%;
  border-radius: 4px;
  padding: 6px 0px 6px 0px;
  border: 2px solid var(--primary-surface-hover);
  color: var(--primary-surface-hover);
  font-weight: 500;
  font-size: 18px;
  background-color: #fff;
  margin: 10px;
  box-sizing: border-box;
}

.inquiry .twins:hover {
  background-color: var(--primary-surface-hover);
  color: #fff;
}

.inquiry .tlp {
  width: 38%;
}
.inquiry .wspw {
  white-space: pre-wrap;
}

.inquiry .tr {
  text-align: right;
  padding: 6px 3px;
}
.inquiry dl,
.inquiry dt,
.inquiry dd {
  margin: 0;
  padding: 0;
  font-size: 100%;
}
.inquiry label {
  padding: 6px 6px;
  border-radius: 4px;
  margin-bottom: 0px;
}
.inquiry select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 30px 10px 10px;
  line-height: 1.1em;
  background-image: url(/assets/img/select-down.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: right 3px center;
  background-color: #fff;
  border: 1px solid #27625e;
  border-radius: 4px;
}
.inquiry dl {
  background-color: #fff;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.inquiry dt {
  font-weight: 500;
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
}
.inquiry dd {
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
  margin-top: -25px;
}

.inquiry .required {
  background-color: #d83e48;
  color: #fff;
  font-size: 70%;
  padding: 2px 5px;
  border-radius: 25%;
  margin-left: 7px;
}
.inquiry .option {
  background-color: #aaa;
  color: #fff;
  font-size: 70%;
  padding: 2px 5px;
  border-radius: 25%;
  margin-left: 7px;
}
.inquiry .example {
  color: #adb9ba;
}
.inquiry .cap {
  margin-top: -10px;
  margin-left: 20px;
  margin-bottom: 20px;
}

/* dl dt dd
--------------------------------------------------------------------------- */

.confirm dl,
.confirm dt,
.confirm dd {
  margin: 0;
  padding: 0;
  font-size: 100%;
}
.confirm label {
  border: #ddd 1px solid;
  padding: 6px 10px;
  margin-left: -10px;
}

.confirm dl {
  width: 90%;
  padding: 0 20px;
  background-color: #fff;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.confirm dt {
  font-weight: 500;
  padding: 5px;
  width: 100%;
  box-sizing: border-box;
  background-color: #eee;
}
.confirm dd {
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
}

.confirm .required,
.confirm .option {
  display: none;
}
.confirm .comment {
  padding: 30px 50px;
  border: 1px solid #518ba0;
  border-radius: 10px;
  font-size: 18px;
}
.confirm .example {
  display: none;
}

@media (min-width: 991px) {
  .confirm {
    min-height: 600px;
  }
}

.btn-wrap {
  text-align: center;
}

.submit {
  width: 60%;
  border-radius: 4px;
  padding: 6px 0px 6px 0px;
  border: 2px solid var(--primary-surface-hover);
  color: var(--primary-surface-hover);
  font-weight: 500;
  font-size: 18px;
  background-color: #fff;
  margin: 10px;
  box-sizing: border-box;
}

.submit:hover {
  background-color: var(--primary-surface-hover);
  color: #fff;
}
