@charset "UTF-8";

@import url(https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lusitana&display=swap);

/* ===================================================================
CSS information

 File Name  : common.css
 Style Info : 見出し、ボタン、表など繰り返し使うパーツのスタイルを定義
=================================================================== */

html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}
body {
  background: #fff;
  color: #000;
  font-family: 'Shippori Mincho', "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Hiragino Mincho ProN W3", serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
  @media screen and (max-width: 767px) {
    body {
      font-size: 3.58vw;
    }
  }

/*----------------------------------------------------
  link要素
--------------------------------------------------- */
a {
  transition: all 0.3s ease-in-out 0s;
}
a:link {
  color: #002063;
}
a:visited {
  color: #002063;
}
a:hover {
  text-decoration: none;
  color: #002063;
}
a:active {
  color: #002063;
}
:focus-ring {
  outline: dotted 1px #F6AB00;
}
:-moz-focusring {
  outline: dotted 1px #F6AB00;
}

/*----------------------------------------------------
  img要素
--------------------------------------------------- */
img {
  line-height: 1;
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.3s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*----------------------------------------------------
  見出し要素
--------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  line-height: 1.5;
  font-weight: 400;
}

/*----------------------------------------------------
 フォントファミリー
--------------------------------------------------- */
.gothic {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
}
.ff01 {
  font-family: 'Lusitana', serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/*----------------------------------------------------
  スクロールバー
--------------------------------------------------- */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
  @media screen and (max-width: 767px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
      border-radius: 10px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.5);
      border-radius: 10px;
      box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }
  }

/*----------------------------------------------------
 共通カラム
--------------------------------------------------- */
#page {
  overflow:hidden;
  margin: 0 auto;
  padding-top: 98px;
}
#contents {
  line-height: 1.8;
}
#contents article {
  overflow: hiddenl
}

.wrapper {
  position: relative;
  z-index: 5;
  max-width: 1640px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.inner {
  position: relative;
  z-index: 5;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
  @media screen and (max-width: 767px) {
    html, body, #page {
      min-width:100%!important;
      max-width:100%!important;
      width:100%!important;
    }
    #page {
      padding-top: 0;
    }
    .outer, .wrapper, .inner {
      width:100%;
      padding-right: 7.69vw;
      padding-left: 7.69vw;
    }
  }

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,0.9);
}
.hd_inner {
  height: 100px;
  padding: 0 30px 0 350px;
  line-height: 1.5;
}
#header .logo {
    position: absolute;
    left: 30px;
    top: 23px;
    z-index: 5;
    display: flex;
    align-items: center;
}
#header .logo .h-logo1 {
    margin-right: 36px;
    position: relative;
}
#header .logo .h-logo1::before, #header .logo .h-logo1::after {
    content: "";
    position: absolute;
    top: 42%;
    right: -17px;
    width: 1px;
    height: 15px;
    background: #595757;
}
#header .logo .h-logo1::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
#header .logo .h-logo1::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}
#header .logo .h-logo2 {
    position: relative;
    margin-right: 10px;
}
#header .logo .h-logo2::after {
    content: "";
    height: 44px;
    width: 1px;
    display: block;
    background: #C7C7C7;
    position: absolute;
    top: 50%;
    right: -7px;
    transform: translate(-50%,-50%);
}

  @media screen and (max-width: 1200px) {
    .hd_inner {
      padding: 0 20px 0 310px;
      line-height: 1.5;
    }
    #header .logo {
      left: 20px;
      top: 26px;
    }
    #header .logo img {
      width: 7vw;
    }
  }
  @media screen and (max-width: 767px) {
    #header {
      position: absolute;
    }
    .hd_inner {
      height: 18vw;
      padding: 0;
    }
    #header .logo {
        left: 6.5vw;
        top: 4.5vw;
    }
    #header .logo img {
        width: 16.7vw;
        height: auto;
    }
      #header .logo .h-logo1 {
        margin-right: 23px;
    }
      #header .logo .h-logo1::before, #header .logo .h-logo1::after {
        right: -13px;
        height: 10px;
    }
      #header .logo .h-logo2 {
        margin-right: 13px;
    }
      #header .logo .h-logo2::after {
        height: 8vw;
        right: -10px;
        }
      #header .logo .h-logo3 img {
        width: 14.1vw;
    }
  }

.hd_navi {
  position: relative;
  align-items: center;
  width: 100%;
  height: 100%;
  white-space: nowrap;
}
.hd_menu li {
  margin-left: 30px;
}
.hd_menu li a {
  position: relative;
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 5px 0;
}
.hd_menu li a::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 0;
  height: 2px;
  background: #333;
  transition: all 0.3s ease-in-out 0s;
}
.hd_menu li a:hover::before {
  width: 20px;
}
  @media screen and (max-width: 1000px) {
    .hd_menu li {
      margin-left: 20px;
    }
  }
  @media screen and (max-width: 767px) {
    .hd_navi {
      display: none;
    }
  }

.hd_reserve {
  padding-left: 30px;
}
.hd_reserve li {
  margin-left: 10px;
  text-align: center;
}
.hd_reserve li a {
  display: block;
  padding: 7px 30px;
  text-decoration: none;
  border: solid 1px #333;
  font-size: 1.4rem;
}
.hd_res01 a {
  color: #333;
}
.hd_res01 a:hover {
  background: #333;
  color: #fff;
}
.hd_res02 a {
  color: #fff;
  background: #333;
}
.hd_res02 a:hover {
  background: #fff;
  color: #333;
}
  @media screen and (max-width: 1000px) {
    .hd_reserve {
      display: block;
      padding-left: 25px;
    }
    .hd_reserve li {
      margin: 8px 0;
    }
    .hd_reserve li a {
      display: block;
      padding: 7px 30px;
      text-decoration: none;
      border: solid 1px #333;
      font-size: 1.4rem;
    }
    .hd_res01 a {
      color: #333;
    }
    .hd_res02 a {
      color: #fff;background: #333;
    }
  }
  @media screen and (max-width: 767px) {
    .hd_reserve {
      display: none;
    }
  }

#header .has-sub {
  position: absolute;
  right: 30px;
  top: 100px;
  width: 140px;
  z-index: 10;
}
.language_ttl {
  display: block;
  line-height: 32px;
  padding-bottom: 4px;
  font-size: 1.5rem;
  background: #fff;
  padding-left: 25px;
}
.lang_sub {
  display: none;
  background: rgba(255,255,255,0.9);
}
#header .has-sub li a {
  display: block;
  line-height: 36px;
  padding: 0 25px;
  color: #000;
  font-size: 1.5rem;
  text-decoration: none;
}
#header .has-sub li a:hover {
  background: #222;
  color: #fff;
}
#header .has-sub li {
  border-bottom: solid 1px #fff;
}
#header .has-sub li:last-child {
  border-bottom: none;
}
  @media screen and (max-width: 767px) {
    #header .has-sub {
      right: 2.66vw;
      top: 18vw;
      width: 30vw;
    }
    .language_ttl {
      line-height: 7.4vw;
      padding-bottom: 0.66vw;
      font-size: 3.46vw;
      padding-left: 5vw;
    }
    #header .has-sub li a {
      line-height: 7.4vw;
      padding: 0 5vw;
      font-size: 3.46vw;
    }
    #header .has-sub li a:hover {
      background: none;
      color: #000;
    }
  }

/*----------------------------------------------------
	パンくずリスト
----------------------------------------------------*/
#crumbs {
  position: absolute;
  left: 0;
  top: 90px;
  z-index: 3;
  width: 100%;
  line-height: 1.5;
}
#crumbs ul {
  display: flex;
  color: #fff;
}
#crumbs li a {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
#crumbs li a::before,
#crumbs li a::after {
  position: absolute;
  bottom: 0;
  content: "";
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease 0s;
}
#crumbs li a::before {
  right: 50%;
}
#crumbs li a:hover::before {
  width: 50%;
}
#crumbs li a::after {
  left: 50%;
}
#crumbs li a:hover::after {
  width: 50%;
}
#crumbs li {
  position: relative;
  padding-right: 40px;
  margin-right: 12px;
}
#crumbs li::before {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  width: 30px;
  height: 1px;
  background: #fff;
}
#crumbs li:last-child {
  position: static;
  padding-right: 0;
  margin-right: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
#crumbs li:last-child::before {
  display: none;
}
#crumbs li br {
  display: none;
}
  @media screen and (max-width: 767px) {
    #crumbs {
      top: 11.33vw;
    }
    #crumbs ul {
      font-size: 3.08vw;
    }
    #crumbs li a:hover {
      text-decoration: underline;
    }
    #crumbs li a::before,
    #crumbs li a::after {
      display: none;
    }
    #crumbs li {
      padding-right: 8.33vw;
      margin-right: 2.66vw;
    }
    #crumbs li::before {
      width: 5.89vw;
    }
  }

/*----------------------------------------------------
	フッター
----------------------------------------------------*/

/*フッターコンタクト*/
#ft_contact {
  position: relative;
  background: #002063;
}
#ft_contact.pt_fix .totop_btn {
  position: absolute!important;
}
.ft_contact_wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.ft_contact_box {
  min-height: 190px;
}
.ft_contact_box dl {
  background: #eee;
  width: 50%;
  padding: 20px;
}
.ft_contact_box dt {
  width: 100%;
  max-width: 300px;
  margin-bottom: 12px;
  color: #002063;
  align-items: center;
}
.ft_contact_box dt small {
  display: block;
  margin-right: 5px;
  font-size: 2rem;
}
.ft_contact_box dt span {
  display: block;
  font-size: 4rem;
}
.ft_contact_box dt a {
  text-decoration: none;
}
.ft_contact_box dd {
  width: 100%;
  max-width: 300px;
}
.ft_contact_box dd .btn01 a {
  display: block;
  min-width: 100%;
  width: 100%;
  background: none;
  padding: 10px;
}
.ft_contact_box dd .btn01 a:hover {
  background: #002063;
}
.ft_contact_box ul {
  width: 50%;
}
.ft_contact_box li {
  width: 50%;
  height: 100%;
}
.ft_contact_box li a {
  position: relative;
  width: 100%;
  height: 100%;
  color: #333;
  text-decoration: none;
  padding: 65px 20px 20px 20px;
}
.ft_contact_box li a:hover {
  background: #f2f2f2!important;
}
.ft_contact_box li span {
  position: relative;
  display: inline-block;
  padding-right: 40px;
}
.ft_contact_box li span::before {
  position: absolute;
  right: 0;
  top: calc(50% - 4px);
  content: "";
  background: url("../img/common/ico/ico_arrow01c.svg") right center no-repeat;
  background-size: 30px auto;
  width: 30px;
  height: 9px;
  transition: all 0.3s ease-in-out 0s;
}
.ft_contact_box li a:hover span::before {
  right: -5px;
}
.ft_plan a {
  background: #E5E5E5;
}
.ft_plan a::before {
  position: absolute;
  left: 0;
  top: 54px;
  width: 100%;
  font-family:"Line Awesome Free","Line Awesome Brands";
  content: "\f236";
  font-weight: 600;
  text-align: center;
  color: #002063;
  font-size: 3.2rem;
  z-index: 2;
  line-height: 1;
}
.ft_calendar a {
  background: #DEDEDE;
}
.ft_calendar a::before {
  position: absolute;
  left: 0;
  top: 54px;
  width: 100%;
  font-family:"Line Awesome Free","Line Awesome Brands";
  content: "\f133";
  font-weight: 600;
  text-align: center;
  color: #002063;
  font-size: 3.2rem;
  z-index: 2;
  line-height: 1;
}
  @media screen and (max-width: 800px) {
    .ft_contact_box dl {
      width: 46%;
    }
    .ft_contact_box ul {
      width: 54%;
    }
  }
  @media screen and (max-width: 767px) {
    #ft_contact.pt_fix .totop_btn {
      position: fixed!important;
    }
    .ft_contact_wrap {
      max-width: 100%;
    }
    .ft_contact_box {
      min-height: auto;
    }
    .ft_contact_box dl {
      width: 100%;
      padding: 6.66vw;
    }
    .ft_contact_box dt {
      max-width: 100%;
      margin-bottom: 3vw;
    }
    .ft_contact_box dt small {
      margin-right: 5px;
      font-size: 5.12vw;
    }
    .ft_contact_box dt span {
      font-size: 8.97vw;
    }
    .ft_contact_box dd {
      max-width: 70vw;
    }
    .ft_contact_box dd .btn01 a {
      padding: 3vw;
    }
    .ft_contact_box dd .btn01 a:hover {
      background: none;
    }
    .ft_contact_box ul {
      width: 100%;
    }
    .ft_contact_box li a {
      padding: 16vw 4vw 6.66vw 4vw;
    }
    .ft_contact_box li span {
      padding-right: 7.4vw;
    }
    .ft_contact_box li span::before {
      top: calc(50% - 1vw);
      background-size: 6.15vw auto;
      width: 6.15vw;
      height: 2vw;
    }
    .ft_contact_box li a:hover span::before {
      right: 0;
    }
    .ft_plan a::before {
      top: 5vw;
      font-size: 8vw;
    }
    .ft_calendar a::before {
      top: 5vw;
      font-size: 8vw;
    }
  }

#footer {
  background: url("../img/common/ft_bg.jpg") #0C0A0A center center no-repeat;
  color: #fff;
  padding-right: 20px;
}
.ft_inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.ft_logo {
  width: 100%;
  max-width: 300px;
  min-height: 420px;
  text-align: center;
  padding: 0 20px;
  background: #fff;
}
.ft_right {
  width: calc(100% - 390px);
  line-height: 1.8;
  font-size: 1.4rem;
  padding: 85px 0;
}
.ft_box {
  padding: 0 0 40px 0;
}
.ft_info {
  width: 380px;
  padding-bottom: 30px;
}
.ft_info p {
  margin-bottom: 25px;
}
.ft_info p a {
  color: #fff;
  text-decoration: none;
}
.ft_sns {
  margin-bottom: 30px;
}
.ft_sns li a:hover {
  opacity: 0.7;
}
.ft_menu {
  padding-bottom: 30px;
}
.ft_menu ul {
  margin-right: 65px;
}
.ft_menu ul:last-child {
  margin-right: 0;
}
.ft_menu li {
  margin-bottom: 4px;
}
.ft_menu li a {
  position: relative;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  white-space: nowrap;
}
.ft_menu li a::before,
.ft_menu li a::after {
  position: absolute;
  bottom: 0;
  content: "";
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease 0s;
}
.ft_menu li a::before {
  right: 50%;
}
.ft_menu li a:hover::before {
  width: 50%;
}
.ft_menu li a::after {
  left: 50%;
}
.ft_menu li a:hover::after {
  width: 50%;
}
.copyright {
  display: block;
  text-align: right;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
}
  @media screen and (max-width: 1120px) {
    #footer {
      background-size: cover;
    }
    .ft_logo {
      max-width: 260px;
      min-height: 320px;
    }
    .ft_right {
      width: calc(100% - 320px);
      padding: 50px 0;
    }
    .ft_box {
      padding: 0 0 10px 0;
    }
    .ft_info {
      width: 360px;
      padding-bottom: 30px;
    }
    .ft_info p {
      margin-bottom: 25px;
    }
    .ft_sns {
      margin-bottom: 20px;
    }
    .ft_menu {
      padding-bottom: 30px;
    }
    .ft_menu ul {
      margin-right: 45px;
    }
  }
  @media screen and (max-width: 767px) {
    #footer {
      background: url("../img/common/ft_bg_sp.jpg") #0C0A0A center center no-repeat;
      padding: 7.69vw 7.69vw 28vw 7.69vw;
    }
    .ft_inner {
      max-width: 100%;
    }
    .ft_logo {
      width: 100%;
      max-width: 100%;
      min-height: 28.84vw;
      padding: 0 5vw;
    }
    .ft_logo img {
      width: 33.33vw;
      height: auto;
    }
    .ft_right {
      width: 100%;
      line-height: 1.9;
      font-size: 3.58vw;
      padding: 7.69vw 0 0 0;
    }
    .ft_box {
      padding: 0 0 9.33vw 0;
    }
    .ft_info {
      width: 100%;
      padding-bottom: 6.66vw;
    }
    .ft_info p {
      margin-bottom: 3.33vw;
    }
    .ft_sns {
      margin-bottom: 4vw;
    }
    .ft_sns li img {
      width: 4.61vw;
      height: auto;
    }
    .ft_menu {
      width: 100%;
      padding-bottom: 0;
      justify-content: space-between;
    }
    .ft_menu ul {
      margin-right: 2vw!important;
    }
    .ft_menu li {
      margin-bottom: 1.13vw;
    }
    .ft_menu li a::before,
    .ft_menu li a::after {
      display: none;
    }
    .copyright {
      text-align: center;
      letter-spacing: 0.03em;
      font-size: 2.56vw;
      white-space: nowrap;
    }
  }

.sp_fix_menu {
  display: none;
}
  @media screen and (max-width: 767px) {
    .sp_fix_menu {
      position: fixed;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      left: 0;
      bottom: 0;
      width: 100%;
      background: #002063;
      padding: 1.28vw;
    }
    .sp_fix_menu li {
      width: calc(50% - 0.64vw);
      text-align: center;
    }
    .sp_fix_menu li a {
      height: 17.94vw;
      font-size: 4.1vw;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: #eee;
    }
    .sp_fix_menu li span {
      position: relative;
      display: inline-block;
      padding-top: 7vw;
    }
    .sp_fix_menu01 span::before {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      font-family:"Line Awesome Free","Line Awesome Brands";
      content: "\f095";
      font-weight: 600;
      text-align: center;
      color: #002063;
      font-size: 6.15vw;
      z-index: 2;
      line-height: 1;
    }
    .sp_fix_menu02 span::before {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      font-family:"Line Awesome Free","Line Awesome Brands";
      content: "\f133";
      font-weight: 600;
      text-align: center;
      color: #002063;
      font-size: 6.15vw;
      z-index: 2;
      line-height: 1;
    }
  }

.ft_btn a {
  position: relative;
  vertical-align: bottom;
  display: inline-block;
  min-width: 278px;
  padding: 14px 10px;
  text-align: center;
  background: #0A0A0A;
  color: #fff;
  text-decoration: none;
}
.ft_btn a:hover {
  background: #002063;
  color: #fff;
}
.ft_btn a span {
  position: relative;
  padding-right: 42px;
}
.ft_btn a span::before {
  position: absolute;
  right: 0;
  top: calc(50% - 4px);
  content: "";
  background: url("../img/common/ico/ico_arrow01b.svg") right center no-repeat;
  background-size: 30px auto;
  width: 30px;
  height: 9px;
  transition: all 0.3s ease-in-out 0s;
}
.ft_btn a:hover span::before {
  right: -5px;
}
  @media screen and (max-width: 767px) {
    .ft_btn a {
      min-width: 60vw;
      padding: 2.13vw 5vw;
    }
    .ft_btn a span {
      padding-right: 8vw;
    }
    .ft_btn a span::before {
      top: calc(50% - 1vw);
      background-size: 6.15vw auto;
      width: 6.15vw;
      height: 2vw;
    }
    .ft_btn a:hover span::before {
      right: 0;
    }
  }

/* footerSNSアイコン調整 */
#footer .youtube {
  padding-left: 10px;
}
#footer .youtube img {
  width: 24px;
  height: auto;;
}
@media screen and (max-width: 767px){
  #footer .ft_sns li:last-child {
    padding-top: 1px;
  }
  #footer .ft_sns li:last-child img {
    width: 22px;
  }
}



/*----------------------------------------------------
  共通タイトル
--------------------------------------------------- */
#lowerVisual {
  position: relative;
  width: 100%;
  height: 550px;
  background-color: #000;
  overflow: hidden;
}
.page_ttl {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.page_ttl span {
  font-size: 4.4rem;
  display: block;
}
.page_ttl small {
  font-size: 2rem;
  display: block;
  margin-top: 15px;
}
  @media screen and (max-width: 767px) {
    #lowerVisual {
      height: 134vw;
      margin-top: 18vw;
    }
    .page_ttl span {
      font-size: 8.2vw;
    }
    .page_ttl small {
      font-size: 3.58vw;
      margin-top: 3.84vw;
    }
  }

#lowerVisual figure {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#lowerVisual figure::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0,0,0,0.5);
}
#lowerVisual figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  @media screen and (max-width: 767px) {

  }

.sub_ttl01 {
  text-align: center;
}
.sub_ttl01 span {
  display: block;
  font-size: 3.2rem;
}
.sub_ttl01 em {
  display: inline-block;
  font-size: 1.4rem;
  padding-top: 38px;
  margin-top: 5px;
  background: url("../img/common/ico/ico_sub_ttl01a.svg") center top no-repeat;
  background-size: 26px auto;
}
  @media screen and (max-width: 767px) {
    .sub_ttl01 span {
      font-size: 6.15vw;
    }
    .sub_ttl01 em {
      font-size: 3.07vw;
      padding-top: 7vw;
      margin-top: 1.66vw;
      background-size: 5vw auto!important;
    }
  }

.sub_ttl02 {
  font-size: 4rem;
  margin-bottom: 40px;
  line-height: 1.7;
  text-align: center;
}
.sub_ttl02 span {
  position: relative;
  display: inline-block;
  padding: 5px 80px;
  transition: opacity 1s ease,transform 1.5s ease,background-position 1.5s ease 0.7s
}
.sub_ttl02 span::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 80px;
  height: 2px;
  background: #002063;
  transform: rotate(-45deg);
}
.sub_ttl02 span::after {
  position: absolute;
  right: 0;
  bottom: 10px;
  content: "";
  width: 80px;
  height: 2px;
  background: #002063;
  transform: rotate(-45deg);
}
  @media screen and (max-width: 767px) {
    .sub_ttl02 {
      font-size: 5.64vw;
      margin-bottom: 10.66vw;
    }
    .sub_ttl02 span {
      padding: 0 10vw 1.66vw 10vw;
    }
    .sub_ttl02 span::before {
      width: 12vw;
      left: -2vw;
    }
    .sub_ttl02 span::after {
      bottom: 2.66vw;
      width: 12vw;
      right: -2vw;
    }
  }

.sub_ttl03 {
  text-align: center;
  font-size: 3.2rem;
}
.sub_ttl03 span {
  position: relative;
  padding: 0 145px;
}
.sub_ttl03 span::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 120px;
  height: 1px;
  background: #13316f;
}
.sub_ttl03 span::before {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  width: 120px;
  height: 1px;
  background: #13316f;
}
  @media screen and (max-width: 767px) {
    .sub_ttl03 {
      font-size: 5.6vw;
    }
    .sub_ttl03 span {
      padding: 0 15vw;
    }
    .sub_ttl03 span::after {
      width: 12vw;
    }
    .sub_ttl03 span::before {
      width: 12vw;
    }
  }

/*----------------------------------------------------
  共通ボタン
--------------------------------------------------- */
.pagetop {
  position: relative;
  z-index: 100;
  display: none;
}
.totop_btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}
.totop_btn a {
  position:relative;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height:60px;
  font-size: 2.4rem;
  color:#fff;
  text-decoration:none;
  background-color: rgba(135,135,135,0.85);
}
.totop_btn a:hover {
  background-color: rgba(135,135,135,0.65);
}
  @media screen and (max-width: 767px) {
    .totop_btn {
      right: 1.28vw;
      bottom: 21.79vw!important;
    }
    .totop_btn a {
      width: 15.38vw;
      height:15.38vw;
      font-size: 6.15vw;
    }
    .totop_btn a:hover {
      background-color: rgba(135,135,135,0.85);
    }
  }

.btn01 {
  position: relative;
  z-index: 5;
}
.btn01 a {
  position: relative;
  vertical-align: bottom;
  display: inline-block;
  min-width: 245px;
  padding: 12px 10px;
  text-align: center;
  background: #fff;
  color: #002063;
  border: solid 1px #002063;
  text-decoration: none;
}
.btn01 a:hover {
  background: #002063;
  color: #fff;
}
.btn01 a span {
  position: relative;
  padding-right: 35px;
}
.btn01 a span::before {
  position: absolute;
  right: 0;
  top: calc(50% - 4px);
  content: "";
  background: url("../img/common/ico/ico_arrow01a.svg") right center no-repeat;
  background-size: 30px auto;
  width: 30px;
  height: 9px;
  transition: all 0.3s ease-in-out 0s;
}
.btn01 a:hover span::before {
  background: url("../img/common/ico/ico_arrow01b.svg") right center no-repeat;
  background-size: 30px auto;
  right: -5px;
}
  @media screen and (max-width: 767px) {
    .btn01 a {
      min-width: 52vw;
      padding: 1.8vw 3.33vw;
    }
    .btn01 a:hover {
      background: #fff;
      color: #002063;
    }
    .btn01 a span {
      padding-right: 7.4vw;
    }
    .btn01 a span::before {
      top: calc(50% - 1vw);
      background-size: 6.15vw auto;
      width: 6.15vw;
      height: 2vw;
    }
    .btn01 a:hover span::before {
      background: url("../img/common/ico/ico_arrow01a.svg") right center no-repeat;
      background-size: 6.15vw auto;
      right: 0;
    }
  }

.w200 a {
  min-width: 200px;
}
.w260 a {
  min-width: 260px;
}
.w270 a {
  min-width: 270px;
}
.w300 a {
  min-width: 300px;
}
  @media screen and (max-width: 767px) {
    .w200 a {
      min-width: 52vw;
    }
    .w260 a {
      min-width: 64vw;
    }
    .w270 a {
      min-width: 64vw;
    }
    .w300 a {
      min-width: 72vw;
    }
  }

.btn02 {
  position: relative;
  z-index: 5;
}
.btn02 a {
  position: relative;
  vertical-align: bottom;
  display: inline-block;
  padding: 12px 25px;
  text-align: center;
  background: #fff;
  color: #002063;
  border: solid 1px #002063;
  text-decoration: none;
}
.btn02 a:hover {
  background: #002063;
  color: #fff;
}
.btn02 a span {
  position: relative;
  padding-right: 16px;
}
.btn02 a span::before {
  position: absolute;
  right: 0;
  top: calc(50% - 7px);
  content: "";
  background: url("../img/common/ico/ico_arrow02a.svg") center center no-repeat;
  background-size: auto 15px;
  width: 9px;
  height: 15px;
  transition: all 0.3s ease-in-out 0s;
}
.btn02 a:hover span::before {
  background: url("../img/common/ico/ico_arrow02b.svg") center center no-repeat;
  background-size: auto 15px;
}

.ex_link01 a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #0d0d0d;
}
.ex_link01 a:hover {
  color: #13316f;
}
.ex_link01 a::before,
.ex_link01 a::after {
  position: absolute;
  bottom: 0;
  content: "";
  width: 0;
  height: 1px;
  background: #13316f;
  transition: all 0.5s ease 0s;
}
.ex_link01 a::before {
  right: 50%;
}
.ex_link01 a:hover::before {
  width: 50%;
}
.ex_link01 a::after {
  left: 50%;
}
.ex_link01 a:hover::after {
  width: 50%;
}
.ex_link01 a i {
  font-size: 2.2rem;
}

/*----------------------------------------------------
  共通テーブル
--------------------------------------------------- */
.tbl01 {
  max-width: 700px;
  margin: 0 auto;
}
.tbl01 th {
  width: 190px;
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
  padding: 13px 27px;
  text-align: right;
}
.tbl01 td {
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  padding: 13px 27px;
}
.tbl01 td small {
  font-size: 1.4rem;
}
  @media screen and (max-width: 767px) {
    .tbl01 th {
      width: 35%;
      padding: 2.66vw 2.33vw;
      padding-left: 0;
    }
    .tbl01 td {
      padding: 2.66vw 2.33vw;
      padding-right: 0;
    }
    .tbl01 td small {
      font-size: 3.06vw;
    }
  }

/*----------------------------------------------------
  共通メニュー
--------------------------------------------------- */

  /*スマホナビ*/
  @media screen and (max-width: 767px) {
    /*transition*/
    .trs {
      -webkit-transition: all .1s ease;
      -moz-transition: all .1s ease;
      -ms-transition: all .1s ease;
      -o-transition: all .1s ease;
      transition: all .1s ease;
    }
    /*trp*/
    .trp {
      -webkit-transition: opacity .1s ease;
      -moz-transition: opacity .1s ease;
      -ms-transition: opacity .1s ease;
      -o-transition: opacity .1s ease;
      transition: opacity .1s ease;
      opacity: 1;
      filter: alpha(opacity=100);
    }
    .trp:hover {
      opacity: .6;
      filter: alpha(opacity=60);
    }
    /* trs-dr */
    .trs-dr02 {
      -webkit-transition-duration: .2s;
      -moz-transition-duration: .2s;
      -ms-transition-duration: .2s;
      -o-transition-duration: .2s;
      transition-duration: .2s;
    }
    .trs-dr03 {
      -webkit-transition-duration: .3s;
      -moz-transition-duration: .3s;
      -ms-transition-duration: .3s;
      -o-transition-duration: .3s;
      transition-duration: .3s;
    }
    .trs-dr05 {
      -webkit-transition-duration: .5s;
      -moz-transition-duration: .5s;
      -ms-transition-duration: .5s;
      -o-transition-duration: .5s;
      transition-duration: .5s;
    }
    .trs-dr06 {
      -webkit-transition-duration: .6s;
      -moz-transition-duration: .6s;
      -ms-transition-duration: .6s;
      -o-transition-duration: .6s;
      transition-duration: .6s;
    }
    .trs-dr08 {
      -webkit-transition-duration: .8s;
      -moz-transition-duration: .8s;
      -ms-transition-duration: .8s;
      -o-transition-duration: .8s;
      transition-duration: .8s;
    }
    .trs-dr12 {
      -webkit-transition-duration: 1.2s;
      -moz-transition-duration: 1.2s;
      -ms-transition-duration: 1.2s;
      -o-transition-duration: 1.2s;
      transition-duration: 1.2s;
    }
    /* trs-tf */
    .trs-tfCb {
      -webkit-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -moz-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -ms-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -o-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      transition-timing-function: cubic-bezier(0, .96, .4, .99);
    }
    .menuTrigger {
      position: fixed;
      z-index: 200;
      top: 3vw;
      right: 4vw;
      display: block;
      width: 12vw;
      height: 12vw;
      cursor: pointer;
      transition: .3s;
    }
    .menuTrigger.open {
      background: none!important;
    }
    .menuIcon_line {
      position: absolute;
      left: 50%;
      margin-left: -3.33vw;
      width: 6.66vw;
      height: 1px;
      background: #333;
    }
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 15px);
    }
    .menuIcon_line:nth-of-type(2) {
      top: 50%;
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(50% + 15px);
    }
    .menuTrigger.hb_fix {
      background: #002063;
    }
    .menuTrigger.hb_fix .menuIcon_line {
      background: #fff;
    }

    /* open */
    .menuTrigger.open .menuIcon_line {
      background: #333!important;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(1) {
      top: 6vw;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(2) {
      opacity: 0;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(3) {
      top: 6vw;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    #hbNav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0 7.69vw;
      background-color: rgba(255,255,255,0.95);
      z-index: 150;
      overflow-y: visible;
      overflow-x: hidden;
      -webkit-overflow-scrolling: auto;
      overflow-scrolling: auto;
    }
    .hb_inner {
      display: table;
      width: 100%;
      height: 100%;
      padding: 30vw 0 6.66vw 0;
      line-height: 1.5;
    }
    .hb_inner a {
      text-decoration: none;
    }
    .hb_logo {
      position: absolute;
      top: 3vw;
      left: 7.69vw;
    }
    .hb_logo img {
      width: 24vw;
      height: auto;
    }
    .hb_home {
      position: absolute;
      left: 48.46vw;
      top: 8vw;
    }
    .hb_home a {
      position: relative;
      display: inline-block;
      padding-right: 5.12vw;
      color: #222;
    }
    .hb_home a::before {
      position: absolute;
      right: 0;
      top: calc(50% - 2vw);
      font-family:"Line Awesome Free","Line Awesome Brands";
      content: "\f105";
      font-weight: 600;
      color: #333;
      font-size: 4.1vw;
      z-index: 2;
      line-height: 1;
      transition: all 0.3s ease-in-out 0s;
    }
    .hb_menu {
      padding-bottom: 2vw;
    }
    .hb_menu li {
      width: 50%;
      margin-bottom: 8vw;
    }
    .hb_menu li a {
      color: #222;
      font-size: 3.6vw;
    }
    .hb_reserve {
      padding-bottom: 9.33vw;
    }
    .hb_reserve li {
      width: 39.74vw;
      text-align: center;
    }
    .hb_reserve li a {
      display: block;
      border: solid 1px #002063;
      padding: 3.33vw 2.66vw;
      background: #fff;
    }
    .hb_link {
      padding-bottom: 6.66vw;
    }
    .hb_link li a {
      display: block;
      padding: 0 3vw;
      line-height: 1;
      color: #222;
    }
    .hb_link li:first-child a {
      border-right: solid 1px #333;
    }
    .hb_tel {
      padding-bottom: 5vw;
    }
    .hb_tel a {
      align-items: center;
    }
    .hb_tel a small {
      display: block;
      font-size: 3.58vw;
      margin-right: 2vw;
    }
    .hb_tel a span {
      display: block;
      font-size: 6.15vw;
    }
    .hb_sns li {
      margin: 0 2vw;
    }
    .hb_sns li img {
      width: 6.15vw;
      height: auto;
    }
  }
  @media screen and (max-width: 580px) {
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 12px);
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(50% + 12px);
    }
  }
  @media screen and (max-width: 480px) {
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 8px);
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(50% + 8px);
    }
  }

  /* top videoボタン */

 .v-btn {
  padding: 20px;
 }
  .v-btn a {
    display: block;
    color: #fff;
    width: 350px;
    padding: 5px 20px;
    text-decoration: none;
    margin: 0 auto;
    background: #333;

  }

  .v-btn a:hover {
    background: #fff;
    color: #333;
  }

    @media screen and (max-width: 480px) {
  .v-btn a {
    width: 200px;
  }
  }


  /* fooerlogo SLH追加 */

  .ft_logo h2.slh-log {
    margin-top: 60px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
} 
.ft_logo h2.slh-log::before, .ft_logo h2.slh-log::after {
    content: "";
    position: absolute;
    top: -28px;
    left: 50%;
    width: 1px;
    height: 30px;
    background: #595757;
}
.ft_logo h2.slh-log::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}
.ft_logo h2.slh-log::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
.ft_logo h2.slh-log .slh-log-1 {
    position: relative;
}
.ft_logo h2.slh-log .slh-log-1::after {
    content: "";
    height: 68%;
    width: 1px;
    display: block;
    background: #C7C7C7;
    position: absolute;
    top: 50%;
    right: -9px;
    transform: translate(-50%,-50%);
}
  @media screen and (max-width: 767px) {
 .ft_logo {
  padding:5vw;
       }
    .ft_logo h2.slh-log  { 
        margin-top:40px;
      }
      .ft_logo h2.slh-log img {
        width: 18vw;
    }
      .ft_logo h2.slh-log .slh-log-1 img {
        width: 25vw;
    }
      .ft_logo h2.slh-log::before, .ft_logo h2.slh-log::after {
    top: -18px;
    height: 20px;
}
    }