@charset "UTF-8";
:root{
  --brand:#17356b;
  --brand-2:#13355d;
  --gold:#d8be59;
  --ink:#0f2b4d;
  --bg:#e1e6ef;
  --text:#1c2634;
  --header-h:50px;
  --radius:14px;
  --gray:#a5a5a5;
}

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
body {
  font-family: "Noto Serif JP","Noto Sans JP","Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight: 400;
  width: 100%;
}
.wrapper {
  width: 100%;
}
div.countainer {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}
header {
  z-index: 98;
}
.site-header{
  margin:15px;
  padding: 10px;
  border-radius: 5px;
  position:sticky; 
  top:15px;
  z-index:1000;
  background:#e1e6ef;
  border-bottom:1px solid #e9edf4;
  height:var(--header-h);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .3);
}
.header-inner{
  height:30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  padding-top: 0px;
}
.header-logo img{
  height:30px;
  transition: opacity 0.3s ease-out; 
}
.header-logo img:hover{
  opacity:.8;
  text-decoration:none;
}
.header-contacts{ 
  margin-right: auto;
  padding-left: 20px;
  padding-top: 0px;
  gap:12px;
}
.header-contacts img{
  display:block;
  height:22px;
  vertical-align: middle;
}
.top-contact {
  margin-top: 0px;
  text-decoration: none;
  display: block;
  margin-left: 15px;
}
.top-contact img {
  transition: opacity 0.3s ease-out; 
}
.top-contact img:hover{
  opacity:.8;
  text-decoration:none;
}

/* 1079px */
@media only screen and (min-width:1079px){
  .marker {
    position: relative;
    z-index: 1;
    height: 16px;
  }
  .marker::before {
    background: var(--gold);
    content: "";
    display: block;
    width: 100%;
    height: 18px;
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .2s;
    z-index: -1;
  }
  .marker:hover {
    color: #fff;
  }
  .marker:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .main-nav {
    margin-top: 0px;
  }
  .main-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-nav ul li.marker {
    list-style: none;
    margin-left: 15px;
  }
  .main-nav ul li a {
    color: var(--ink);
    text-decoration: none;
    display: block;
    font-size: 16px;
    padding: 0px 0px;
  }
  /* メニューアイテムのホバースタイル */
  .main-nav ul li:hover .submenu {
    transform: scaleY(1);
  }

  .main-nav ul li:hover {
    transition: background-color .3s;
  }

  .submenu li:hover {
    opacity: .8;
    transition: opacity .3s;
  }

  .menu-item a {
    align-items: center;
    color: #fff;
    display: flex;
    height: 50px;
    justify-content: center;
    text-decoration: none;
    width: 120px;
  }

  /* ドロップダウンメニュー */
  .drop-menu {
    position: relative;
  }

  .submenu {
    left: 0;
    position: absolute;
    top: 100%;
    transform: scaleY(0);
    transform-origin: center top;
    transition: transform .3s;
    width: max-content;
    z-index: 1;
    display: block !important;
  }

  .submenu li {
    background-color: #696969;
    transition: opacity .3s;
    display: block !important;
    padding: 20px 10px;
  }
  
  .pc-non {
    display: none;
  }
  
  .nav-inst {
    width:20px;
    height: auto;
  }
  .hd-inst-posi {
    display: none;
  }

}

/* 1078px以下から 1カラム表示
------------------------------------------------------------*/
@media only screen and (max-width:1078px){
  h1.logo {
/*
    position: fixed;
    top   : 5px;
*/
  }
  /*　ハンバーガーメニューボタン　*/
  .hamburger {
    display : block;
    position: fixed;
    z-index : 300;
    right : 30px;
    top   : 29px;
    width : 30px;
    height: 30px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 3px ;
    left    : 6px;
    background : var(--brand-2);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 0px;
  }
  .hamburger span:nth-child(2) {
    top: 10px;
  }
  .hamburger span:nth-child(3) {
    top: 20px;
  }

  /* スマホメニューを開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top : 12px;
    left: 6px;
    background:var(--brand-2);
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 12px;
    background:var(--brand-2);
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }

  /* メニュー背景　*/
  nav.globalMenu {
    position: fixed;
    z-index : 102;
    top  : 80px;
    left : 0;
    color: #00A0BE;
    background: rgba( 222,222,222,1.00 );
    text-align: center;
    width: 100%;
    transform: translateY(-180%);
    transition: all 0.6s;
  }

  nav.globalMenu ul {
    margin: 0px auto 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }

  nav.globalMenu ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
    text-align: center;
    border-bottom: rgba(255,255,255,1.00) 1px solid;
  }
  nav.globalMenu ul li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  nav.globalMenu ul li a{
    display: block;
    text-align: center;
    overflow: hidden;
    margin: 0px auto;
    padding: 25px 0;
    text-decoration :none;
    font-family: "Anta", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 110%;
  }
  nav.globalMenu ul li ul li a {
    color: var(--brand-2);
    background-color: #E1CDB9;
    padding: 15px 25px;
    border-bottom: rgba(200,200,200,1.00) 1px solid;
  }

  nav.globalMenu.active {
    opacity: 100;
    display: block;
    transform: translateY(0px);
  }
  .submenu li {
    padding: 20px 10px;
  }
  .vision-img {
    max-width: 600px;
    height: auto;
  }
  .nav-inst {
    width:30px;
    height: auto;
  }
  .hd-inst-posi {
    display : block;
    position: fixed;
    z-index : 300;
    right : 82px;
    top   : 23px;
    width : 28px;
    height: 28px;
  }
  nav.globalMenu ul li.logo {
    background-color: #00A0BE;
    padding: 20px 0 20px 20px;
    width: 100%;
    text-align: left;
  }
  .top-contact {
    margin-left: 0px;
  }

}

/* ------------------------------------------------------
   Footer
------------------------------------------------------ */
.site-footer{
  background:#ffffff;
  color:var(--ink);
  border-top: #888888 1px dashed;
  margin-top: 0px;
  margin-bottom: 60px;
}
.footer-inner{
  display:flex;
  padding:40px 0;
  width:min(900px,92%);
  margin-inline:auto;
}
.footer-logo img{
  max-width:272px
}
.footer-addr{
  margin:12px 0 15px;
  font-style:normal;
  font-size: 18pt;
  line-height: 120%;
}
.footer-addr span {
  font-size: 12pt;
}
.footer-brand {
}
.footer-links {
  margin-left: auto;
}
.footer-sns {
}
.footer-contacts a,
.footer-contacts span{
  display:inline-block;
  margin:4px 8px 0 0;
}
.footer-links{
  display:flex;
}
.footer-nav {
  display:flex;
  gap:10px 10px;
  width: 100%;
}
.footer-nav ul {
  list-style:none;
  margin:0;
  padding:0;
  width: 200px;
}
.footer-nav ul li {
  margin-bottom: 15px;
}
.lst {
}
.footer-nav a{
  color:var(--ink);
  font-size: 14pt;
  text-decoration: none;
}
.footer-nav a:hover{
  text-decoration:underline;
}
.footer-sns{
  list-style:none;
  margin:0 0 0px 20px;
  padding:0;
}
.footer-sns li {
  margin-bottom: 20px;
}
.foot-tel {
  width: 200px;
  margin-top: 5px;
}
.footer-copy{
  text-align:center;
  padding:14px 0;
  font-size:12pt;
}
#pagetop{
  position:fixed;
  right:30px;
  bottom:30px;
  width: 52px;
  height: 52px;
  cursor: pointer;
}
@media only screen and (max-width:1279px){
}
@media only screen and (max-width:900px){
  .footer-links {
    padding-left: 20px;
  }
  .footer-nav {
  }
  .footer-sns {
    margin:0 0 0px 0px;
  }
  .footer-nav ul{
    width: 150px;
  }
  .footer-nav a{
    font-size: 12pt;
  }
}
@media only screen and (max-width:800px){
  .foot-logo img {
    width: 260px;
    max-width: 100%;
  }
  .footer-nav ul{
    width: 120px;
  }
  .footer-nav a{
    font-size: 11pt;
  }
  .footer-addr{
    font-size: 15pt;
  }
}
@media only screen and (max-width:640px){
  .footer-nav {
    display: none;
  }
  .footer-inner{
    display:block;
    padding:40px 0;
    width:min(900px,92%);
    margin-inline:auto;
    text-align: center;
  }
  .footer-addr{
    margin:12px 0 15px;
    font-style:normal;
    font-size: 15pt;
    line-height: 120%;
  }
  .footer-addr span {
    font-size: 10pt;
  }
  .foot-tel {
    margin: 5px auto;
  }
  .footer-sns {
    width: 80%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
  }
  .footer-sns li {
    margin: 0 15px;
  }
}
@media only screen and (max-width:450px){
  h1.logo,
  div.logo {
    width: 200px;
    height: 50px;
    margin-top: 10px;
    margin-left: 15px;

  }
  h1.logo a,
  div.logo a {
    width: 200px;
    height: 50px;
  }
  .footer-logo img{
    max-width:200px
  }
  .fax {
    display: none;
  }
  .header-contacts{ 
    display: none;
  }
  #pagetop{
    position:fixed;
    right:10px;
    bottom:10px;
    width: 52px;
    height: 52px;
  }
}

.pc-br {
  display: initial;
}
.sm-br {
  display: none;
}
.sm-non {
  display: initial;
}
@media only screen and (max-width:640px){
  .pc-br {
    display: none;
  }
  .sm-br {
  display: initial;
  }
  .sm-non {
    display: none;
  }
}

/************************************
** レスポンシブページネーション
************************************/
.pagination{
  list-style-type: none;
  padding-left: 0;
  margin: 30px 0;
}

.pagination,
.pagination li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pagination a {
  font-weight: 300;
  padding-top: 1px;
  text-decoration:none;
  border: 0px solid #ddd;
  border-left-width: 0;
  min-width:36px;
  min-height:36px;
  color: #333;
}

.pagination li:not([class*="current"]) a:hover {
  background-color: #eee;
  border-radius: 30px;
}

.pagination li:first-of-type a {
  border-left-width: 0;
}

.pagination li.first span,
.pagination li.last span,
.pagination li.previous span,
.pagination li.next span {
  /* screen readers only */
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.pagination li.first a::before,
.pagination li.last a::after,
.pagination li.previous a::before,
.pagination li.next a::after {
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}

.pagination li.first a::before { 
  content: "\f100"; 
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
.pagination li.last a::after { 
  content: "\f101"; 
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.pagination li.previous a::before { 
  content: "\f104"; 
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
.pagination li.next a::after { 
  content: "\f105"; 
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.pagination li.current a {
  border-radius: 30px;
  background-color: var(--brand);
  color: #ffffff;
  cursor: default;
  pointer-events: none;
}

.pagination > li:first-child > a {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination > li:last-child > a {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

@media only screen and ( max-width: 680px ) {
  .pagination li.first,
  .pagination li.last {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .pagination li.previous a { border-left-width: 1px; }
}

@media only screen and ( max-width: 500px ) {
  .pagination li {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .pagination li.current,
  .pagination li.first,
  .pagination li.last,
  .pagination li.previous,
  .pagination li.next{
    position: initial;
    top: initial;
    left: initial;
  }

  .pagination li.previous a { border-left-width: 0; }
}

@media only screen and ( max-width: 400px ) {
  .pagination li.first,
  .pagination li.last {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .pagination li.previous a { border-left-width: 1px; }
}

@media only screen and ( max-width: 240px ) { /* For watches? */
  .pagination li { width: 50%;}

  .pagination li.current {
    order: 2;
    width: 100%;
    border-left-width: 1px;
  }
}
.cta_wrapper {
  justify-content: center !important;
  text-align: center !important;
}
.block-2 .cta_wrapper a, .block-2 .cta_wrapper button, .block-2 .popup-btn {
  font-size: 11pt !important;
  background-color: var(--brand) !important;
  margin-bottom: 10px !important;
  margin-top: 10px !important;
  border-radius: 15px !important;
  padding: 10px 25px !important;
}
.pdfp_wrapper p {
  text-indent: -9999px;
}
