@charset "UTF-8";
/* Break point
---------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Sans+JP:wght@400;500;600&family=Sofia+Sans+Extra+Condensed&display=swap");
/* ==========================================================================//
//
//　変数
//
// ========================================================================== */
:root {
  /* Color
  ---------------------------------------------------------- */
  --color-font: #333333;
  --color-main: #005425;
  --color-sub: #812B1F;
  --color-back: #F6F5F4;
  --color-btn: #E9E9E9;
  --color-line: #D4D0CC;
  --color-font_gray: #8E8E8F;
  --color-link: #2C71D6;
  --color-visited:#17236E;
  /* Font
  ---------------------------------------------------------- */
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Marcellus", serif;
  --font-en2: "Sofia Sans Extra Condensed", sans-serif;
  --font-m: 500;
  --font-b: 700;
  --font11: 0.7rem;
  --font12: 0.79rem;
  --font13: 0.81rem;
  --font14: 0.88rem;
  --font16: 1rem;
  --font17: 1.06rem;
  --font18: 1.12rem;
  --font19: 1.19rem;
  --font20: 1.25rem;
  --font22: 1.42rem;
  --font25: 1.6rem;
  --font28: 1.8rem;
  --font30: 1.875rem;
  --font32: 2rem;
  --font35: 2.18rem;
  --font36: 2.28rem;
  --font41: 2.56rem;
  --font43: 2.68rem;
  --font44: 2.75rem;
  --font46: 2.88rem;
  --font48: 3rem;
  --font60: 3.75rem;
  /* Skew
  ---------------------------------------------------------- */
  --bezier: cubic-bezier(0.970, 0.000, 0.395, 0.995);
  /* Radius
  ---------------------------------------------------------- */
  --radius_s: 5px;
  --radius_m: 10px;
  --radius_l: 20px;
  /* Padding
  ---------------------------------------------------------- */
  --secPad: 80px;
  /* hight
  ---------------------------------------------------------- */
  --headerH: 60px;
  --translateH: 56px;
}

/* Placeholder
---------------------------------------------------------- */
.l-inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .l-inner {
    width: 80%;
  }
}

.l-select-block::after {
  content: "";
  display: inline-block;
  width: var(--arrow-width);
  height: var(--arrow-width);
  margin: 0 10px;
  border-right: 2px solid var(--arrow-color);
  border-bottom: 2px solid var(--arrow-color);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

a[href*="tel:"], .c-link, .l-article a:not([class]) {
  color: var(--color-link);
  text-decoration: underline;
}
@media screen and (min-width: 1024px) {
  a[href*="tel:"]:hover, .c-link:hover, .l-article a:hover:not([class]) {
    text-decoration: none;
  }
  a[href*="tel:"]:focus, .c-link:focus, .l-article a:focus:not([class]) {
    text-decoration: none;
  }
}
a[href*="tel:"]:visited, .c-link:visited, .l-article a:visited:not([class]) {
  color: var(--color-visited);
}

[href*=http].c-link:not(.noIcon)::before, .l-article a[href*=http]:not(.noIcon):not([class])::before {
  content: "";
  display: inline-block;
  background-image: url(/common/images/icon_external.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 1.1em;
  height: 1.1em;
  position: relative;
  top: 0.2em;
  margin: 0 5px;
}

.c-btn01 .arrow, .c-btn03 .arrow, .c-link_arrow01 .arrow, .c-link_arrow02 .arrow, .l-globalNav.nav_SP .item_arrow .arrow, .l-globalNav.nav_PC .list_nav .list_nav_child > li > a .arrow, .l-item_accordion .btn_accordion .arrow {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
}

.c-list_disc > li::before, .c-ttl_point::before, .c-ttl03::before {
  content: "";
  display: inline-block;
  width: var(--discW);
  height: var(--discW);
  background-color: var(--discC);
  border-radius: 50%;
  margin-right: 0.5em;
  position: relative;
  bottom: 0.1em;
}

/* ==================================================================

Base

================================================================== */
*,
::before,
::after {
  word-break: break-word;
}

html {
  font-size: 1rem;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--headerH) + 50px);
}

body {
  color: var(--color-font);
  font-family: var(--font-jp);
  position: relative;
}
@media print {
  body {
    zoom: 0.5;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@media screen and (min-width: 1024px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    color: inherit;
    text-decoration: none;
  }
}

video {
  width: 100%;
}

ol,
ul {
  list-style-type: none;
}

img {
  width: 100%;
}

p {
  line-height: 1.75;
}

em, strong {
  font-style: normal;
}

p, li, em, strong, span, a {
  -webkit-transform: rotateZ(0.03deg);
          transform: rotateZ(0.03deg);
}

select {
  border: 1px solid var(--color-line);
}

/* ==========================================================================//
//
//　Layout
//
// ========================================================================== */
.l-pagebody {
  margin-top: var(--headerH);
}
@media screen and (min-width: 1024px) {
  .l-pagebody {
    padding-top: var(--headerH);
    margin-top: 0;
  }
}

.l-inner.inner900 {
  max-width: 900px;
}
.l-inner.inner1200 {
  max-width: 1200px;
}

/*------ ブロックスキップリンク -------*/
.l-skipNav {
  display: block;
  font-size: var(--font25);
  width: 100%;
  height: 1px;
  overflow: hidden;
  text-align: center;
  position: absolute;
}
.l-skipNav:focus {
  position: static;
  overflow: visible;
  height: auto;
  padding: 0.5em;
  background-color: #fff;
  margin-top: var(--headerH);
}

/*------ ページネーション -------*/
.l-pagination {
  --wid: 35px;
  max-width: 400px;
  margin: 0 auto;
}
.l-pagination > ol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
@media screen and (min-width: 768px) {
  .l-pagination > ol {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.l-pagination > ol > li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-main);
}
.l-pagination > ol > li a svg {
  fill: var(--color-main);
  width: calc(var(--wid) - 10px);
  height: calc(var(--wid) - 10px);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.l-pagination > ol > li.pageNum a {
  border-radius: 50%;
  font-weight: var(--font-b);
  width: var(--wid);
  height: var(--wid);
  text-decoration: none;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .l-pagination > ol > li.pageNum a:hover {
    background-color: var(--color-main);
    color: #fff;
  }
  .l-pagination > ol > li.pageNum a:focus {
    background-color: var(--color-main);
    color: #fff;
  }
}
.l-pagination > ol > li.current a {
  background-color: var(--color-main);
  color: #fff;
}
.l-pagination > ol > li.first, .l-pagination > ol > li.last {
  white-space: nowrap;
  font-size: var(--font14);
}
.l-pagination > ol .pageArrow a {
  background-color: transparent;
  width: 20px;
}
.l-pagination > ol .pageArrow.prev svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.l-pagination > ol .pageArrow.next svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/*------ 横スクロールありテーブル -------*/
.l-table_scroll {
  overflow-x: auto;
}
.l-table_scroll table {
  white-space: nowrap;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .l-table_scroll.pcKeep {
    overflow-x: initial;
  }
}
@media screen and (min-width: 1024px) {
  .l-table_scroll.pcKeep table {
    white-space: normal;
  }
}

/*------ タブみたいなボタン(2個用) -------*/
.l-bar_tab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: var(--font-b);
}
.l-bar_tab .item_tab {
  padding: 1em;
  background-color: var(--color-btn);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .l-bar_tab .item_tab {
    padding: 0.8em 1em;
  }
}
.l-bar_tab .item_tab:first-child {
  border-radius: var(--radius_m) 0 0 var(--radius_m);
}
.l-bar_tab .item_tab:last-child {
  border-radius: 0 var(--radius_m) var(--radius_m) 0;
}
.l-bar_tab .item_tab > span {
  opacity: 0.5;
}
.l-bar_tab .item_tab.active {
  background-color: var(--color-main);
}
.l-bar_tab .item_tab.active > span {
  opacity: 1;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .l-bar_tab .item_tab:not(.active):hover > span {
    opacity: 0.8;
  }
  .l-bar_tab .item_tab:not(.active):focus > span {
    opacity: 0.8;
  }
}

/* ==========================================================================//
//
// Header
//
// ========================================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--headerH);
  background-color: #fff;
  border-bottom: 1px solid var(--color-back);
}

/*------ ヘッダーインナー -------*/
.inner_header {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .inner_header {
    gap: 40px;
  }
}

/*------ メニューボタン -------*/
.btn_menu {
  --btnW: 40px;
  --btnH: 24px;
  --btnC: var(--color-main);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: var(--btnW);
  height: var(--btnH);
  /*------ オープン時 -------*/
}
@media screen and (min-width: 1024px) {
  .btn_menu {
    display: none;
  }
}
.btn_menu .line_btn {
  width: var(--btnW);
  height: 3px;
  background-color: var(--btnC);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.btn_menu .line_btn::before, .btn_menu .line_btn::after {
  content: "";
  display: inline-block;
  width: var(--btnW);
  height: 3px;
  background-color: var(--btnC);
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.btn_menu .line_btn::before {
  top: -10px;
}
.btn_menu .line_btn::after {
  top: 10px;
}
.btn_menu.active .line_btn {
  background-color: transparent;
}
.btn_menu.active .line_btn::before {
  top: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn_menu.active .line_btn::after {
  top: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*------ ナビ後ろのオーバーレイ -------*/
.header_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  /*------ オープン時 -------*/
}
@media screen and (min-width: 1024px) {
  .header_overlay {
    display: none;
  }
}
.header_overlay.active {
  visibility: visible;
  opacity: 1;
}

/*------ ヘッダーロゴ -------*/
.l-logo {
  max-width: 200px;
  padding-top: 5px;
}
@media screen and (min-width: 1024px) {
  .l-logo {
    padding-top: 0;
  }
}

/*------ ヘッダーの情報カタマリ -------*/
.l-header_info {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header_info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--headerH);
    background-color: #fff;
    -webkit-transition: top 0.3s ease;
    transition: top 0.3s ease;
  }
}
.l-header_info .inner_header_info {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .l-header_info + .l-header {
    height: 45px;
    top: var(--headerH);
    -webkit-transition: height 0.4s, top 0.3s ease;
    transition: height 0.4s, top 0.3s ease;
  }
}
@media screen and (min-width: 1024px) {
  .l-header_info + .l-header .inner_header {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .l-header_info + .l-header .l-logo {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .l-header_info + .l-header.active {
    height: var(--headerH);
    top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-header_info + .l-header.active .inner_header {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  .l-header_info + .l-header.active .l-logo {
    display: block;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.l-header_info.active {
  top: calc(var(--headerH) * -1);
}

/*------ 翻訳時のヘッダー -------*/
body.translated .l-header {
  top: var(--translateH);
}
body.translated .l-header_info {
  top: var(--translateH);
}
body.translated .l-header_info.active {
  top: calc(var(--headerH) * -1);
}
body.translated .l-header_info + .l-header {
  top: var(--translateH);
}
@media screen and (min-width: 1024px) {
  body.translated .l-header_info + .l-header {
    top: calc(var(--translateH) + var(--headerH));
  }
}
body.translated .l-header_info + .l-header.active {
  top: var(--translateH);
}

.header_symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header_symbol img {
  max-width: 140px;
}

.header_hours {
  padding: 0 1em;
  display: inline-grid;
  grid-template-areas: "time time2" "date date2";
  gap: 0 1em;
  font-size: var(--font14);
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
}

.header_lang {
  background-color: var(--color-btn);
  padding: 0.6em 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--radius_s);
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/* ヘッダーナビゲーション
---------------------------------------------------------- */
.l-globalNav {
  /*------ SPナビゲーション -------*/
  /*------ PCナビゲーション -------*/
}
.l-globalNav.nav_SP {
  position: absolute;
  top: var(--headerH);
  left: auto;
  right: 0;
  background-color: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  height: calc(var(--vh) - var(--headerH));
  overflow-y: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  /*------ オープン時 -------*/
}
.l-globalNav.nav_SP .ttl_list {
  padding: 0 0 0.5em 0;
  color: var(--color-main);
  font-size: var(--font18);
  font-weight: var(--font-b);
  border-bottom: 2px solid var(--color-main);
}
.l-globalNav.nav_SP .list_nav dd {
  font-weight: var(--font-m);
  border-bottom: 1px solid var(--color-line);
}
.l-globalNav.nav_SP .list_nav dd:not(:first-child) {
  padding: 1em 0 1em 0;
}
.l-globalNav.nav_SP .list_nav dd:first-child {
  padding-top: 1.5em 0 1em 0;
}
.l-globalNav.nav_SP .list_nav dd a {
  display: inline-block;
  width: 100%;
  position: relative;
}
.l-globalNav.nav_SP .item_arrow {
  padding-right: 2.5em;
}
.l-globalNav.nav_SP .item_arrow .arrow {
  content: "";
  background-color: #fff;
  border: 1px solid var(--color-main);
  position: absolute;
  right: 0.5em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-globalNav.nav_SP .item_arrow .arrow svg {
  fill: var(--color-main);
  position: relative;
  left: 1px;
}
.l-globalNav.nav_SP.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 1024px) {
  .l-globalNav.nav_SP.active {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.l-globalNav.nav_PC {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-globalNav.nav_PC {
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 750px;
    height: 100%;
  }
}
.l-globalNav.nav_PC .list_nav {
  display: grid;
  grid-template-columns: repeat(5, 25%);
  height: 100%;
  /*------ current -------*/
}
.l-globalNav.nav_PC .list_nav > li {
  height: 100%;
}
.l-globalNav.nav_PC .list_nav > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  font-weight: var(--font-m);
}
@media screen and (min-width: 1024px) {
  .l-globalNav.nav_PC .list_nav > li > a:hover {
    color: var(--color-main);
  }
  .l-globalNav.nav_PC .list_nav > li > a:focus {
    color: var(--color-main);
  }
}
@media screen and (min-width: 1024px) {
  .l-globalNav.nav_PC .list_nav .item_parent:hover .list_nav_child {
    display: block;
  }
  .l-globalNav.nav_PC .list_nav .item_parent:focus .list_nav_child {
    display: block;
  }
}
.l-globalNav.nav_PC .list_nav .item_parent:focus-within .list_nav_child {
  display: block;
}
@media screen and (min-width: 1024px) {
  .l-globalNav.nav_PC .list_nav .item_parent a:hover + .list_nav_child {
    display: block;
  }
  .l-globalNav.nav_PC .list_nav .item_parent a:focus + .list_nav_child {
    display: block;
  }
}
.l-globalNav.nav_PC .list_nav .link_parent {
  position: relative;
}
.l-globalNav.nav_PC .list_nav .list_nav_child {
  position: absolute;
  top: calc(100% + 1px);
  width: 100%;
  font-size: var(--font14);
  font-weight: var(--font-m);
  display: none;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1024px) {
  .l-globalNav.nav_PC .list_nav .list_nav_child:hover {
    display: block;
  }
  .l-globalNav.nav_PC .list_nav .list_nav_child:focus {
    display: block;
  }
}
.l-globalNav.nav_PC .list_nav .list_nav_child > li:not(:last-child) {
  border-bottom: 1px solid var(--color-line);
}
.l-globalNav.nav_PC .list_nav .list_nav_child > li > a {
  padding: 0.8em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
@media screen and (min-width: 1024px) {
  .l-globalNav.nav_PC .list_nav .list_nav_child > li > a:hover {
    background-color: var(--color-main);
    color: #fff;
  }
  .l-globalNav.nav_PC .list_nav .list_nav_child > li > a:focus {
    background-color: var(--color-main);
    color: #fff;
  }
}
.l-globalNav.nav_PC .list_nav .list_nav_child > li > a .arrow {
  background-color: #fff;
  border: 1px solid var(--color-main);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.l-globalNav.nav_PC .list_nav .list_nav_child > li > a .arrow svg {
  fill: var(--color-main);
  position: relative;
  left: 1px;
}
.l-globalNav.nav_PC .list_nav a.current {
  color: var(--color-main);
}

.l-pagetop {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 5;
  color: var(--color-main);
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--radius_s) 0 0 var(--radius_s);
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.4s ease;
  transition: transform 0.3s ease, opacity 0.4s ease, -webkit-transform 0.3s ease;
}
.l-pagetop.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.l-pagetop img {
  position: relative;
  top: 0;
  -webkit-transition: top 0.2s ease;
  transition: top 0.2s ease;
}
@media screen and (min-width: 1024px) {
  .l-pagetop:hover img {
    top: -3px;
  }
  .l-pagetop:focus img {
    top: -3px;
  }
}

/* ヘッダーOPEN
---------------------------------------------------------- */
#navInput {
  position: absolute;
}
#navInput:checked ~ .nav_SP {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  border-top: 1px solid var(--color-line);
}
#navInput:checked ~ .inner_header .btn_menu .line_btn {
  background-color: transparent;
}
#navInput:checked ~ .inner_header .btn_menu .line_btn::before {
  top: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#navInput:checked ~ .inner_header .btn_menu .line_btn::after {
  bottom: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ==========================================================================//
//
//　Common Layout
//
// ========================================================================== */
/* リスト
---------------------------------------------------------- */
/*------ イベント用 -------*/
@media screen and (min-width: 768px) {
  .l-list_event {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 4vw 1.5vw;
  }
}
@media screen and (min-width: 1024px) {
  .l-list_event {
    gap: 4vw 2vw;
  }
}
.l-list_event .item_event {
  --colorItem:var(--color-main);
  position: relative;
  height: 100%;
  /*------ 開催中のとき -------*/
}
.l-list_event .item_event a {
  display: grid;
  grid-template-columns: 40% auto;
  gap: 20px;
  padding: 15px;
  height: 100%;
  border: 1px solid var(--colorItem);
  border-radius: var(--radius_l);
  position: relative;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
}
@media screen and (min-width: 768px) {
  .l-list_event .item_event a {
    grid-template-columns: 1fr;
    grid-template-rows: 180px 1fr;
    gap: 15px;
    padding: 1.5em;
  }
}
@media screen and (min-width: 1024px) {
  .l-list_event .item_event a:hover {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
    -webkit-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
  }
  .l-list_event .item_event a:focus {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
    -webkit-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width: 768px) {
  .l-list_event .item_event .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .l-list_event .item_event .date_event {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.l-list_event .item_event.noContent {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-list_event .item_event.noContent {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 0.15;
    border: 1px solid var(--color-main);
    border-radius: var(--radius_l);
  }
}
.l-list_event .item_event.noContent img {
  max-width: 140px;
}
.l-list_event .item_event.event-on {
  --colorItem:var(--color-sub);
  margin-top: 2em;
}
.l-list_event .item_event .notice_event {
  font-size: var(--font13);
  font-weight: var(--font-m);
  color: var(--color-sub);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  position: absolute;
  top: -1.6em;
  left: 0.4em;
}
@media screen and (min-width: 768px) {
  .l-list_event .item_event .notice_event {
    font-size: var(--font12);
    left: auto;
    right: 0.4em;
  }
}
.l-list_event .item_event .notice_event::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-sub);
  -webkit-animation: fuwa 3s var(--bezier) infinite;
          animation: fuwa 3s var(--bezier) infinite;
}
.l-list_event .item_event + .item_event {
  margin-top: 2em;
}
.l-list_event .thumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-list_event .thumb img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: auto;
  max-height: 150px;
}
@media screen and (min-width: 768px) {
  .l-list_event .thumb img {
    max-height: 180px;
  }
}
.l-list_event .name_event {
  font-weight: bold;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .l-list_event .name_event {
    font-size: var(--font18);
  }
}
.l-list_event .date_event {
  font-size: var(--font12);
  color: var(--color-font_gray);
  line-height: 1.5;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .l-list_event .date_event {
    font-size: var(--font14);
  }
}

/* 階ブロック
---------------------------------------------------------- */
.l-floor {
  border: 1px solid var(--color-line);
  border-radius: var(--radius_l);
}
.l-floor .name_floor {
  font-size: var(--font22);
  border-bottom: 1px solid var(--color-line);
  line-height: 1;
  padding-bottom: 0.2em;
}

/* 下層ページナビ
---------------------------------------------------------- */
.l-nav_page {
  overflow-x: auto;
  background-color: var(--color-btn);
  font-size: var(--font14);
}
@media screen and (min-width: 768px) {
  .l-nav_page {
    font-size: 1rem;
  }
}
.l-nav_page .list_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
  font-weight: var(--font-m);
  padding: 0 5vw;
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.l-nav_page .list_nav > li:first-child::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.5em;
  background-color: var(--color-line);
  vertical-align: middle;
}
.l-nav_page .list_nav > li::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.5em;
  background-color: var(--color-line);
  vertical-align: middle;
}
.l-nav_page .list_nav > li a {
  display: inline-block;
  padding: 0.5em 1.5em;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .l-nav_page .list_nav > li a:hover {
    color: var(--color-main);
  }
  .l-nav_page .list_nav > li a:hover::after {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .l-nav_page .list_nav > li a:focus {
    color: var(--color-main);
  }
  .l-nav_page .list_nav > li a:focus::after {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
.l-nav_page .list_nav > li a::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-transform-origin: right;
          transform-origin: right;
}
.l-nav_page .list_nav > li a.current {
  color: var(--color-main);
  font-weight: var(--font-b);
}
.l-nav_page .list_nav > li a.current::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* パンくずリスト
---------------------------------------------------------- */
.l-bread {
  padding: 1em 0;
  background-color: #fff;
}
.l-bread .list_bread {
  font-size: var(--font12);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-bread .list_bread > li {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-bread .list_bread > li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--color-main);
  border-radius: 50%;
  margin: 0 1em;
}

/* ページタイトルエリア
---------------------------------------------------------- */
.l-head {
  background-color: #fff;
}
.l-head:not(:has(.l-nav_page)) {
  border-bottom: 1px solid var(--color-btn);
}

/* もっと見る　アコーディオン
---------------------------------------------------------- */
.l-item_accordion {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  /* オープン時 */
}
.l-item_accordion .btn_accordion {
  color: var(--color-main);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.6em;
     -moz-column-gap: 0.6em;
          column-gap: 0.6em;
}
.l-item_accordion .btn_accordion .arrow {
  background-color: var(--color-main);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: relative;
  top: 0.1em;
}
.l-item_accordion .btn_accordion .arrow svg {
  fill: #fff;
}
.l-item_accordion .btn_accordion.cover::after {
  content: "";
  display: block;
  width: 100%;
  height: 400%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: -webkit-linear-gradient(93deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(357deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.l-item_accordion.active {
  max-height: 100%;
}
.l-item_accordion.active .btn_accordion {
  margin-top: 1em;
  position: relative;
}
.l-item_accordion.active .btn_accordion::after {
  content: none;
}
.l-item_accordion.active .btn_accordion .arrow {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.l-item_accordion.active .btn_accordion .arrow svg {
  position: relative;
  left: 1px;
}

/* フロアマップ
---------------------------------------------------------- */
.l-floor-map {
  position: relative;
}
.l-floor-map .icon_expand {
  position: absolute;
  width: 30px;
  height: 30px;
  fill: #fff;
  padding: 5px;
  top: 0;
  right: 0;
  background-color: rgba(179, 179, 179, 0.8);
  pointer-events: none;
}
.l-floor-map .icon_pin {
  position: absolute;
  z-index: 1;
  width: 4%;
  max-width: 30px;
  -webkit-filter: drop-shadow(0px 3px 0px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0px 3px 0px rgba(0, 0, 0, 0.3));
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.l-floor-map .icon_pin[href="#greenspace"] {
  bottom: 75%;
  left: 87%;
}
.l-floor-map .icon_pin[href="#ishinohiroba"] {
  bottom: 75%;
  left: 44%;
}
.l-floor-map .icon_pin[href="#galleryA"] {
  bottom: 19%;
  left: 22%;
}
.l-floor-map .icon_pin[href="#galleryB"] {
  bottom: 19%;
  left: 70%;
}
.l-floor-map .icon_pin[href="#eventhall"] {
  bottom: 64%;
  left: 8%;
}
.l-floor-map .icon_pin[href="#gardenroom"] {
  bottom: 40%;
  left: 23%;
}
.l-floor-map .icon_pin[href="#seminarA"] {
  bottom: 40%;
  left: 20%;
}
.l-floor-map .icon_pin[href="#seminarB"] {
  bottom: 40%;
  left: 73%;
}
@media screen and (min-width: 1024px) {
  .l-floor-map .icon_pin:hover {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  .l-floor-map .icon_pin:focus {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}
.l-floor-map .area_link {
  display: inline-block;
  position: absolute;
  min-width: 3em;
}
.l-floor-map .area_link[href="#greenspace"] {
  bottom: 69%;
  left: 84%;
  width: 11%;
  height: 5%;
}
.l-floor-map .area_link[href="#ishinohiroba"] {
  bottom: 69%;
  left: 42%;
  width: 8%;
  height: 5%;
}
.l-floor-map .area_link[href="#galleryA"] {
  bottom: 13%;
  left: 19%;
  width: 11%;
  height: 5%;
}
.l-floor-map .area_link[href="#galleryB"] {
  bottom: 13%;
  left: 67%;
  width: 11%;
  height: 5%;
}
.l-floor-map .area_link[href="#eventhall"] {
  bottom: 58%;
  left: 4%;
  width: 13%;
  height: 5%;
}
.l-floor-map .area_link[href="#gardenroom"] {
  bottom: 33%;
  left: 18%;
  width: 13%;
  height: 5%;
}
.l-floor-map .area_link[href="#seminarA"] {
  bottom: 33%;
  left: 15%;
  width: 14%;
  height: 5%;
}
.l-floor-map .area_link[href="#seminarB"] {
  bottom: 33%;
  left: 67%;
  width: 14%;
  height: 5%;
}
.l-floor-map .viewer {
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .l-floor-map .viewer:hover {
    outline: 2px solid var(--color-line);
  }
  .l-floor-map .viewer:focus {
    outline: 2px solid var(--color-line);
  }
}

/* 記事
---------------------------------------------------------- */
.l-article .image_article img, .l-article .main-image img {
  max-height: 1000px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.l-article .ttl_article {
  font-size: var(--font22);
  font-weight: var(--font-b);
  padding: 0.8em 0 1em;
}
@media screen and (min-width: 768px) {
  .l-article .ttl_article {
    font-size: var(--font28);
  }
}
@media screen and (min-width: 768px) {
  .l-article .block_info {
    display: grid;
    grid-template-columns: 40% 1fr;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4em;
    margin-bottom: 4em;
  }
}
@media screen and (min-width: 768px) {
  .l-article .main-image img {
    max-height: none;
  }
}
.l-article .details {
  border: 1px solid var(--color-main);
  border-radius: var(--radius_l);
  padding: 1.5em;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .l-article .details {
    margin-top: 0;
  }
}
.l-article .details .list_info {
  border-top: 1px solid var(--color-line);
  padding: 0.6em 0 0.4em;
}
@media screen and (min-width: 768px) {
  .l-article .details .list_info {
    padding: 0.8em 0 0.6em;
  }
}
.l-article .details .list_info:first-of-type {
  border-top: none;
  padding-top: 0;
}
.l-article .details .list_info dt {
  font-weight: var(--font-b);
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .l-article .details .list_info dt {
    font-size: var(--font18);
  }
}
.l-article .details .list_info dt + dd {
  padding-top: 0.2em;
}
@media screen and (min-width: 768px) {
  .l-article .details .list_info dt + dd {
    padding-top: 0.5em;
  }
}
.l-article .details .list_info dd {
  font-weight: var(--font-m);
}
.l-article .main_article {
  border-bottom: 1px solid var(--color-line);
}
.l-article .ttl_sec {
  font-size: var(--font20);
  font-weight: var(--font-b);
  color: var(--color-main);
  margin: 0.8em 0;
}
@media screen and (min-width: 768px) {
  .l-article .ttl_sec {
    font-size: var(--font25);
  }
}
.l-article .block_content {
  margin-top: 3em;
}
@media screen and (min-width: 768px) {
  .l-article .block_content .imgL {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 3em;
  }
  .l-article .block_content .imgL .image_article {
    margin-top: 0;
  }
  .l-article .block_content .imgL .text_article {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-article .block_content .imgR {
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 3em;
  }
  .l-article .block_content .imgR .image_article {
    margin-top: 0;
  }
  .l-article .block_content .imgR .text_article {
    margin-top: 0;
  }
}
.l-article .text_article h6, .l-article .text_article h5, .l-article .text_article h4, .l-article .text_article h3, .l-article .text_article h2, .l-article .text_article h1 {
  font-weight: var(--font-b);
  margin: 0.8em 0 0.5em;
}
.l-article .text_article + .image_article {
  margin-top: 1em;
}
.l-article .text_article p {
  line-height: 2;
}
.l-article .text_article p + p {
  padding-top: 0.8em;
}
.l-article .text_article h1 {
  font-size: var(--font25);
}
.l-article .text_article h2 {
  font-size: var(--font22);
}
.l-article .text_article h3 {
  font-size: var(--font20);
}
.l-article .text_article h4 {
  font-size: var(--font18);
}
.l-article .text_article h5 {
  font-size: var(--font17);
}
.l-article .image_article + .text_article {
  margin-top: 1em;
}
.l-article .image_article figcaption {
  font-size: var(--font14);
  text-align: center;
  margin-top: 5px;
}
.l-article .image_article.grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.5em;
}

/* ==========================================================================//
//
//　Footer
//
// ========================================================================== */
.l-footer {
  background-color: var(--color-back);
}

.footer_link {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2em;
}
@media screen and (min-width: 1024px) {
  .footer_link {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer_link > dl dt {
  font-weight: var(--font-m);
}
.footer_link > dl dd {
  font-size: var(--font14);
}
.footer_link > dl dd + dd {
  margin-top: 0.5em;
}

@media screen and (min-width: 1024px) {
  .footer_link_bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.footer_link_bottom .list_bnr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.footer_link_bottom .list_bnr > li {
  min-width: 150px;
  max-width: 180px;
}
.footer_link_bottom .list_sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer_link_bottom .x img {
  width: 29px;
}
.footer_link_bottom .ig img {
  width: 32px;
}
.footer_link_bottom .fb img {
  width: 32px;
}

.footer_bottom {
  border-top: 1px solid var(--color-line);
}

@media screen and (min-width: 1024px) {
  .footer_info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer_info > dl dt {
  font-size: var(--font18);
}
.footer_info > dl dd {
  font-size: var(--font14);
}

.footer_info_sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
}
.footer_info_sub .info_aed {
  max-width: 45px;
}

.footer_symbol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer_symbol img {
  max-width: 140px;
}

.l-copy {
  font-size: var(--font12);
}

.splide__pagination__page.is-active {
  background-color: var(--color-main);
}

/* ==========================================================================//
//
//　input系
//
// ========================================================================== */
.l-select-block {
  position: relative;
}
.l-select-block::after {
  --arrow-width: 0.6em;
  --arrow-color: var(--color-main);
  position: absolute;
  right: 0.5em;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.l-select-block select {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius_s);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  cursor: pointer;
}

/* ==========================================================================//
//
//　微調整
//
// ========================================================================== */
.pcOnly {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .pcOnly {
    display: inline-block !important;
  }
}

@media screen and (min-width: 768px) {
  .spOnly {
    display: none !important;
  }
}

/* Tel
---------------------------------------------------------- */
/* List
---------------------------------------------------------- */
.c-list_info {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-list_info dt {
  background-color: var(--color-btn);
  padding: 0.3em 0.9em;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: var(--radius_s);
}
.c-list_info.compact dt {
  padding: 0.3em 0.5em;
  font-size: var(--font11);
}

.c-list_data {
  grid-template-columns: var(--dt) 1fr;
  padding: 0.8em 0;
  border-bottom: 1px solid var(--color-line);
}
.c-list_data dt {
  font-weight: var(--font-m);
}

.c-list_disc > li {
  --discW: 0.5em;
  --discC: var(--color-main);
  padding-left: calc(var(--discW) + 0.5em);
  position: relative;
}
.c-list_disc > li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  bottom: auto;
}
.c-list_disc.gray > li::before {
  --discC: var(--color-line);
}

/* Button
---------------------------------------------------------- */
.c-btn02, .c-btn01 {
  position: relative;
  overflow: hidden;
}
.c-btn02::after, .c-btn01::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 3em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.c-btn02 .text, .c-btn01 .text {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .c-btn02:hover::after, .c-btn01:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .c-btn02:focus::after, .c-btn01:focus::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.c-btn01 {
  padding: 1em 5em 1em 3em;
  border-radius: 3em;
  display: inline-block;
  background-color: var(--color-main);
}
.c-btn01::after {
  background-color: #003618;
}
.c-btn01 .text {
  color: #fff;
}
.c-btn01 .arrow {
  background-color: #fff;
  position: absolute;
  top: calc(50% + 1px);
  right: 2.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-btn01 .arrow svg {
  fill: var(--color-main);
  position: relative;
  left: 1px;
}
.c-btn01 .icon {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.5em;
  height: 1.5em;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  right: 2em;
}
.c-btn01 .icon svg {
  fill: var(--color-main);
}
@media screen and (min-width: 1024px) {
  .c-btn01:hover .arrow {
    -webkit-transform: translateY(-50%) translateX(0.8em);
            transform: translateY(-50%) translateX(0.8em);
  }
  .c-btn01:focus .arrow {
    -webkit-transform: translateY(-50%) translateX(0.8em);
            transform: translateY(-50%) translateX(0.8em);
  }
}

.c-btn02 {
  padding: 1em 3em;
  border-radius: 3em;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--color-btn);
  width: 100%;
}
.c-btn02::after {
  background-color: var(--color-line);
}
.c-btn02 .text {
  font-weight: var(--font-m);
}
.c-btn02 .type {
  font-size: var(--font14);
  background-color: var(--color-main);
  color: #fff;
  font-family: var(--font-en2);
  font-weight: 400;
  padding: 0.2em 0.4em 0 0.4em;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--radius_s);
  line-height: 1;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .c-btn02:hover .arrow {
    -webkit-transform: translateY(-50%) translateX(0.8em);
            transform: translateY(-50%) translateX(0.8em);
  }
  .c-btn02:focus .arrow {
    -webkit-transform: translateY(-50%) translateX(0.8em);
            transform: translateY(-50%) translateX(0.8em);
  }
}

.c-btn03 {
  border: 1px solid var(--color-line);
  border-radius: 3em;
  padding: 0.3em 1em;
  position: relative;
}
.c-btn03 .arrow {
  background-color: #fff;
  border: 1px solid var(--color-main);
  position: absolute;
  top: calc(50% + 1px);
  right: 1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: top 0.2s;
  transition: top 0.2s;
}
.c-btn03 .arrow svg {
  fill: var(--color-main);
  position: relative;
  top: 1px;
  left: 1px;
}
@media screen and (min-width: 1024px) {
  .c-btn03:hover {
    background-color: var(--color-back);
  }
  .c-btn03:hover .arrow {
    top: calc(50% + 0.3em);
  }
  .c-btn03:focus {
    background-color: var(--color-back);
  }
  .c-btn03:focus .arrow {
    top: calc(50% + 0.3em);
  }
}

.c-btn_big {
  background-color: var(--color-main);
  color: #fff;
  border-radius: var(--radius_m);
  -webkit-box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  top: 0;
  -webkit-transition: top 0.1s;
  transition: top 0.1s;
}
.c-btn_big svg {
  fill: #fff;
}
@media screen and (min-width: 1024px) {
  .c-btn_big:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    top: 3px;
  }
  .c-btn_big:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    top: 3px;
  }
}

/* Image
---------------------------------------------------------- */
.c-image {
  border-radius: var(--radius_l);
}

/* Title variety
---------------------------------------------------------- */
.c-ttl_sec {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-ttl_sec .en {
  font-size: var(--font44);
  color: var(--color-main);
  display: block;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .c-ttl_sec .en {
    font-size: var(--font60);
  }
}
.c-ttl_sec .jp {
  font-size: var(--font12);
  font-weight: var(--font-b);
}
@media screen and (min-width: 1024px) {
  .c-ttl_sec .jp {
    font-size: var(--font14);
  }
}

.c-ttl_sec02 .jp {
  display: block;
  font-size: var(--font28);
  font-weight: var(--font-b);
  line-height: 1;
}
.c-ttl_sec02 .en {
  color: var(--color-main);
}

.c-ttl_point {
  --discC: var(--color-sub);
  --discW: 0.4em;
  font-size: var(--font12);
  color: var(--color-sub);
}
@media screen and (min-width: 768px) {
  .c-ttl_point {
    font-size: var(--font14);
  }
}
.c-ttl_point::before {
  vertical-align: middle;
}

.c-ttl01 {
  font-size: var(--font22);
  font-weight: var(--font-b);
  letter-spacing: 0.01em;
  border-left: 2px solid var(--color-main);
  padding-left: 0.5em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-ttl01 {
    font-size: var(--font25);
    border-left: 4px solid var(--color-main);
  }
}

.c-ttl02 {
  font-size: var(--font18);
  font-weight: var(--font-b);
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .c-ttl02 {
    font-size: var(--font20);
  }
}

.c-ttl03 {
  color: var(--color-sub);
  font-weight: var(--font-b);
  letter-spacing: 0.1em;
  line-height: 1;
}
.c-ttl03::before {
  --discC: var(--color-line);
  --discW: 0.3em;
  bottom: 0.2em;
}

.c-ttl04 {
  font-size: var(--font18);
  font-weight: var(--font-b);
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 0.4em;
}
@media screen and (min-width: 768px) {
  .c-ttl04 {
    font-size: var(--font22);
  }
}

/* Text style
---------------------------------------------------------- */
.c-en {
  font-family: var(--font-en);
  font-weight: normal;
}

.c-cd {
  font-family: var(--font-en2);
  font-weight: 400;
}

.c-color {
  color: var(--color-main);
}

.c-color02 {
  color: var(--color-sub);
}

/* ----- 四角囲み文字 ----- */
.c-text_frame {
  padding: 0.2em 0.5em;
  border: 1px solid var(--lineC);
}

.c-cat {
  font-weight: var(--font-b);
  color: var(--lineC);
  font-size: var(--font11);
}

/* ----- グレー四角囲み文字 ----- */
.c-text_panel {
  font-size: var(--font14);
  background-color: var(--color-btn);
  padding: 0.3em 0.9em;
  border-radius: var(--radius_s);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ----- 丸囲み数字 ----- */
.c-badge {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-main);
  color: #fff;
  width: 1.3em;
  height: 1.3em;
  border-radius: 50%;
}

.c-back {
  background-color: var(--color-back);
}

.c-border {
  border: 1px solid var(--color-line);
  border-radius: var(--radius_l);
}

.c-link.file::before {
  content: "";
  display: inline-block;
  background-image: url(/common/images/icon_doc.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 1em;
  height: 1.4em;
  vertical-align: middle;
  margin-right: 0.5em;
}

.c-link_arrow02, .c-link_arrow01 {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.6em;
     -moz-column-gap: 0.6em;
          column-gap: 0.6em;
  padding-bottom: 0.2em;
  font-weight: var(--font-m);
}
.c-link_arrow02::after, .c-link_arrow01::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-link_arrow02 .arrow, .c-link_arrow01 .arrow {
  background-color: var(--color-main);
}
.c-link_arrow02 .arrow svg, .c-link_arrow01 .arrow svg {
  fill: #fff;
  position: relative;
  left: 1px;
}

.c-link_arrow01 {
  font-size: var(--font14);
  color: var(--color-main);
}
.c-link_arrow01::after {
  background-color: var(--color-main);
}
@media screen and (min-width: 1024px) {
  .c-link_arrow01:hover .arrow {
    right: -0.2em;
  }
  .c-link_arrow01:focus .arrow {
    right: -0.2em;
  }
}
.c-link_arrow01 .arrow {
  position: relative;
  right: 0;
  -webkit-transition: right 0.2s;
  transition: right 0.2s;
}
.c-link_arrow01.reverse svg {
  left: 0;
}
@media screen and (min-width: 1024px) {
  .c-link_arrow01.reverse:hover .arrow {
    right: 0.2em;
  }
  .c-link_arrow01.reverse:focus .arrow {
    right: 0.2em;
  }
}

.c-link_arrow02::after {
  background-color: var(--color-line);
}
.c-link_arrow02 .arrow {
  position: relative;
  top: 1px;
  -webkit-transition: top 0.2s;
  transition: top 0.2s;
}
.c-link_arrow02 .arrow svg {
  left: 0;
}
.c-link_arrow02.line-green::after {
  background-color: var(--color-main);
}
@media screen and (min-width: 1024px) {
  .c-link_arrow02:hover .arrow {
    top: 0.2em;
  }
  .c-link_arrow02:focus .arrow {
    top: 0.2em;
  }
}

.c-ttl05 {
  font-size: var(--font18);
  font-weight: var(--font-b);
}
@media screen and (min-width: 768px) {
  .c-ttl05 {
    font-size: var(--font20);
  }
}

/* Common grid col
---------------------------------------------------------- */
.c-grid-col {
  grid-template-columns: 45% 1fr;
}

/* Table
---------------------------------------------------------- */
.c-table th, .c-table td {
  border: 1px solid var(--color-line);
}
.c-table th {
  background-color: var(--color-btn);
}
.c-table td:empty::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: var(--color-font);
  vertical-align: middle;
}

/* Hover
---------------------------------------------------------- */
.c-hover {
  -webkit-transition: opacity 0.05s;
  transition: opacity 0.05s;
}
@media screen and (min-width: 1024px) {
  .c-hover:hover {
    opacity: 0.8;
  }
  .c-hover:focus {
    opacity: 0.8;
  }
}

/* Margin
---------------------------------------------------------- */