@charset "utf-8";
/*****************************************
*
* 新着情報
*
******************************************/

.news-list {
  text-align: left;
}

.news-list li {
  border-bottom: solid 1px var(--color-light-gray);
}

.news-list li a {
  color: var(--color-text);
  font-size: 1rem;
  padding: 15px 0;
  transition: all .5s ease;
}

.news-list a:visited {
  color: #707070;
}

.news-list a:hover {
  background: var(--color-bright-main);
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .news-list li {
    font-size: 0.9rem;
    padding: 5px 0;
  }
}

@media screen and (min-width: 768px), print {
  .news-list li a {
    display: flex;
  }
}

/* 日付 --------------------------------*/
.news-list li .date {
  font-weight: bold;
}

@media screen and (min-width: 768px), print {
  .news-list li .date {
    width: 8em;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

/* タイトル --------------------------------*/
.news-list .title {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*------------------------------------------*/
/* 記事 見出し
/*------------------------------------------*/

.news-heading {
  display: block;
  width: 100%;
  text-align: center;
}

.news-heading .heading {
  display: inline-block;
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: solid 3px var(--color-main);
  padding-bottom: 20px;
  margin-bottom: 60px;
}

@media screen and (min-width: 834px), print {
  .news-heading .heading {
    font-size: 2.4rem;
    margin-bottom: 80px;
  }
}


/*------------------------------------------*/
/* ページ送り
/*------------------------------------------*/

.news-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.1;
  margin-top: 40px;
}

.news-button li {
  height: 40px;
}

.news-button .list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
  text-decoration: none;
  border: solid 2px var(--color-neon-blue);
  border-radius: 40px;
  color: var(--color-neon-blue);
  font-weight: bold;
  padding: 16px 30px;
  transition: all .5s ease;
}

.news-button .prev a,
.news-button .next a {
  position: relative;
  display: inline-block;
  border: solid 2px var(--color-neon-blue);
  background: var(--color-neon-blue);
  border-radius: 40px;
  transition: all .5s ease;
}

.news-button .prev a::after,
.news-button .next a::after {
  content: '';
  display: inline-block;
  aspect-ratio: 1/1;
  width: 12px;
  height: 12px;
  position: absolute;
  transition: transform 1s;
}

.news-button .prev a::after {
  background: url('../img/common/btn_arrow_l_white.svg') no-repeat;
  background-size: 100%;
}

.news-button .next a::after {
  background: url('../img/common/btn_arrow_white.svg') no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 999px) {

  .news-button .prev a,
  .news-button .next a {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0;
    width: 54px;
    height: 100%;
  }

  .news-button .prev a::after,
  .news-button .next a::after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .news-button .list a {
    padding: 16px 10px;
  }
}

@media screen and (min-width: 1000px), print {
  .news-button {
    font-size: 0.9rem;
    margin-top: 60px;
  }

  .news-button li {
    height: 54px;
  }

  .news-button .list a {
    width: 200px;
    padding: 16px 50px;
  }

  .news-button .prev a,
  .news-button .next a {
    background: transparent;
    text-align: left;
    border: solid 2px var(--color-neon-blue);
    color: var(--color-neon-blue);
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.4;
  }

  .news-button .prev a {
    padding: 16px 50px 16px 100px;
  }

  .news-button .next a {
    padding: 16px 100px 16px 50px;
  }

  .news-button .prev a::before,
  .news-button .next a::before {
    content: '';
    display: inline-block;
    background: var(--color-neon-blue);
    border: solid 2px var(--color-neon-blue);
    border-radius: 15px;
    width: 36px;
    height: 26px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transition: all .5s ease;
  }

  .news-button .prev a::before {
    left: 10px;
  }

  .news-button .next a::before {
    right: 10px;
  }

  .news-button .prev a::after,
  .news-button .next a::after {
    top: 0;
    bottom: 0;
    margin: auto 0;
  }

  .news-button .prev a::after {
    left: 23px;
  }

  .news-button .next a::after {
    right: 23px;
  }

  .news-button .list a:hover,
  .news-button .prev a:hover,
  .news-button .next a:hover {
    text-decoration: none;
  }

  .news-button .list a:hover {
    background: var(--color-neon-blue);
    color: white;
  }

  .news-button .prev a:hover::before,
  .news-button .next a:hover::before {
    background: transparent;
  }

  .news-button .prev a:hover::after,
  .news-button .next a:hover::after {
    transform: rotateY(360deg);
  }

  .news-button .prev a:hover::after {
    background: url('../img/common/btn_arrow_l.svg') no-repeat;
    background-size: 100%;
  }

  .news-button .next a:hover::after {
    background: url('../img/common/btn_arrow.svg') no-repeat;
    background-size: 100%;
  }
}

/* リンクオフ */
.news-button .prev.nolink a,
.news-button .next.nolink a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  background: transparent;
}


/*------------------------------------------*/
/* ページ送り 一覧ページ
/*------------------------------------------*/

.news-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}

.news-pagination .list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-pagination .list .page-numbers,
.news-pagination .list .page-numbers.current {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  border: solid 2px var(--color-neon-blue);
  background: var(--color-neon-blue);
  width: 40px;
  height: 40px;
  color: white;
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.1;
  transition: all .5s ease;
}

.news-pagination .list .page-numbers.current {
  background: transparent;
  color: var(--color-main);
  border: solid 2px var(--color-neon-blue);
}

.news-pagination .list .page-numbers:hover {
  text-decoration: none;
  background: transparent;
  color: var(--color-neon-blue);
}

@media screen and (max-width: 833px) {
  .news-pagination {
    margin-top: 40px;
  }

  .news-pagination .list .page-numbers,
  .news-pagination .list .page-numbers.current {
    width: 30px;
    height: 30px;
  }
}


/* 前次 --------------------------------*/
.news-pagination li.prev a,
.news-pagination li.next a {
  position: relative;
  display: inline-block;
  border-style: solid;
  border-width: 2px;
  border-color: var(--color-neon-blue);
  background: var(--color-neon-blue);
  border-radius: 40px;
  width: 54px;
  height: 40px;
  transition: all .5s ease;
}

.news-pagination li.prev a::before,
.news-pagination li.next a::before {
  content: '';
  display: inline-block;
  aspect-ratio: 1/1;
  width: 12px;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: transform 1s;
}

.news-pagination li.prev a::before {
  background: url('../img/common/btn_arrow_l_white.svg') no-repeat;
  background-size: 100%;
}

.news-pagination li.next a::before {
  background: url('../img/common/btn_arrow_white.svg') no-repeat;
  background-size: 100%;
}

.news-pagination li.prev a:hover,
.news-pagination li.next a:hover {
  text-decoration: none;
  background: transparent;
}

.news-pagination li.prev a:hover::before,
.news-pagination li.next a:hover::before {
  transform: rotateY(360deg);
}

.news-pagination li.prev a:hover::before {
  background: url('../img/common/btn_arrow_l.svg') no-repeat;
  background-size: 100%;
}

.news-pagination li.next a:hover::before {
  background: url('../img/common/btn_arrow.svg') no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 833px) {

  .news-pagination li.prev a,
  .news-pagination li.next a {
    width: 30px;
    height: 30px;
  }

  .news-pagination li.prev a::before,
  .news-pagination li.next a::before {
    width: 8px;
    height: 8px;
  }
}

/* リンクオフ */
.news-pagination li.prev.nolink a,
.news-pagination li.next.nolink a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  background: transparent;
}

.news-pagination li.prev.nolink a::before {
  background: url('../img/common/btn_arrow_l.svg') no-repeat;
  background-size: 100%;
}

.news-pagination li.next.nolink a::before {
  background: url('../img/common/btn_arrow.svg') no-repeat;
  background-size: 100%;
}



/*****************************************
*
* ページレイアウト
*
******************************************/

.section {
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 80px;
}

.section img {
  max-width: 100%;
}

@media screen and (min-width: 768px), print {
  .section {
    width: calc(100% - 80px);
  }
}

@media screen and (min-width: 834px), print {
  .section {
    width: calc(100% - 120px);
    margin-top: 100px;
  }
}

@media screen and (min-width: 1240px), print {
  .section {
    width: 1100px;
    margin-top: 160px;
  }
}


/* 背景あり --------------------------------*/
.section-back {
  background: var(--color-bright-main);
  padding: 80px 0;
  margin-top: 80px;
}

.section-back .section {
  margin-top: 0;
}

@media screen and (min-width: 834px), print {
  .section-back {
    padding: 100px 0;
    margin-top: 100px;
  }
}

@media screen and (min-width: 1240px), print {
  .section-back {
    padding: 160px 0;
    margin-top: 160px;
  }
}


/*------------------------------------------*/
/* サブページメイン
/*------------------------------------------*/

.submain {
  position: relative;
  display: inline-block;
  background: url('../img/common/submain.jpg') no-repeat;
  background-size: cover;
  background-position: center bottom;
  width: 100%;
  height: 200px;
}

.submain .heading {
  display: inline-block;
  width: 100%;
  color: var(--color-main);
  letter-spacing: 0.08em;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
}

.submain .en {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 500;
}

.submain .jp {
  font-size: 0.9rem;
  font-weight: bold;
}

@media screen and (min-width: 834px), print {
  .submain {
    height: 360px;
    margin-top: -60px;
  }

  .submain .en {
    font-size: 2.8rem;
  }

  .submain .jp {
    font-size: 1.1rem;
  }
}


/*------------------------------------------*/
/* パンくず
/*------------------------------------------*/

.breadcrumb {
  width: 100%;
  text-align: left;
  padding: 5px 20px;
}

.breadcrumb li,
.breadcrumb li a {
  font-size: 0.8rem;
  font-weight: bold;
}

.breadcrumb li a {
  color: var(--color-text);
  transition: all .5s ease;
}

.breadcrumb li a:visited {
  color: var(--color-text);
  text-decoration: none;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

.breadcrumb li {
  display: inline-block;
  position: relative;
}

.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: '>';
  padding-left: 0.8em;
  padding-right: 0.5em;
}

@media screen and (min-width: 834px), print {
  .breadcrumb {
    font-size: 0.9rem;
    line-height: 1.1;
    padding: 10px 40px;
  }
}

@media screen and (min-width: 1240px), print {
  .breadcrumb {
    display: inline-block;
    width: 1100px;
    padding: 10px 0;
  }
}



/*****************************************
*
* パーツ
*
******************************************/


/*------------------------------------------*/
/* 見出し 共通
/*------------------------------------------*/

.heading-wrap {
  width: 100%;
}

/*------------------------------------------*/
/* 見出し h2
/*------------------------------------------*/

.heading-secondary {
  margin-top: 60px;
  margin-bottom: 40px;
}

.heading-secondary .jp,
.heading-secondary .en {
  color: var(--color-text);
  font-size: 2rem;
}

.heading-secondary .jp {
  font-weight: bold;
}

.heading-secondary .en {
  font-weight: 400;
}

.heading-secondary .jp.gradation {
  font-size: 2rem;
}

.heading-secondary .jp.gradation span {
  font-size: 1.4rem;
}

.heading-secondary .en.gradation {
  font-size: 2.6rem;
}

.heading-secondary .en.gradation span {
  font-size: 1.6rem;
}

.heading-secondary .min {
  font-size: 0.9rem;
}

.heading-secondary .gradation {
  display: inline-block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-secondary.white .jp {
  color: white;
}

@media screen and (min-width: 834px), print {
  .heading-secondary {
    margin-top: 100px;
    margin-bottom: 60px;
  }

  .heading-secondary br {
    display: none;
  }

  .heading-secondary .jp.gradation {
    font-size: 4rem;
  }

  .heading-secondary .en.gradation {
    font-size: 4.6rem;
  }

  .heading-secondary .jp.gradation span {
    font-size: 2rem;
  }

  .heading-secondary .en.gradation span {
    font-size: 2.4rem;
  }

  .heading-secondary .min {
    font-size: 1rem;
  }

  .cont>.heading-secondary:first-child {
    margin-top: 0;
  }
}

.section>.heading-secondary:first-child {
  margin-top: 0;
}


/*------------------------------------------*/
/* 見出し h3
/*------------------------------------------*/

.heading-tertiary {
  margin-top: 60px;
  margin-bottom: 40px;
}

.heading-tertiary .jp,
.heading-tertiary .en {
  color: var(--color-text);
}

.heading-tertiary .jp {
  font-weight: bold;
}

.heading-tertiary .en {
  font-weight: 400;
}

.heading-tertiary .jp.gradation {
  font-size: 2rem;
}

.heading-tertiary .jp.gradation span {
  font-size: 1.4rem;
}

.heading-tertiary .en.gradation {
  font-size: 2.6rem;
}

.heading-tertiary .en.gradation span {
  font-size: 1.6rem;
}

.heading-tertiary .min {
  font-size: 0.9rem;
}

.heading-tertiary .gradation {
  display: inline-block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-tertiary.white .jp {
  color: white;
}

@media screen and (min-width: 834px), print {
  .heading-tertiary {
    text-align: left;
    margin-top: 100px;
    margin-bottom: 60px;
  }

  .heading-tertiary br {
    display: none;
  }

  .heading-tertiary .jp.gradation {
    font-size: 3rem;
  }

  .heading-tertiary .en.gradation {
    font-size: 4rem;
  }

  .heading-tertiary .jp.gradation span {
    font-size: 2rem;
  }

  .heading-tertiary .en.gradation span {
    font-size: 2.4rem;
  }

  .heading-tertiary .min {
    font-size: 1rem;
  }

  .cont>.heading-tertiary:first-child {
    margin-top: 0;
  }
}

.section>.heading-tertiary:first-child {
  margin-top: 0;
}



/*------------------------------------------*/
/* 見出し h4
/*------------------------------------------*/

.heading-quaternary {
  text-align: left;
  border-bottom: solid 2px var(--color-main);
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.heading-quaternary span {
  font-size: 1rem;
}

@media screen and (min-width: 834px), print {
  .heading-quaternary {
    font-size: 2.4rem;
    margin-top: 80px;
    margin-bottom: 60px;
  }

  .heading-quaternary span {
    font-size: 1.6rem;
  }

  .cont>.heading-quaternary:first-child {
    margin-top: 0;
  }
}

.section>.heading-quaternary:first-child {
  margin-top: 0;
}


/*------------------------------------------*/
/* 見出し h5
/*------------------------------------------*/

.heading-quinary {
  text-align: left;
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.heading-quinary {
  margin-top: 40px;
}

@media screen and (min-width: 834px), print {
  .heading-quinary {
    font-size: 2rem;
    margin-top: 60px;
  }

  .cont>.heading-quinary:first-child {
    margin-top: 0;
  }
}


/*------------------------------------------*/
/* テキスト
/*------------------------------------------*/
.text {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 2em;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-break: strict;
}

.text+.text {
  margin-top: 1em;
}

/* 注意書き --------------*/
.notes {
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}

/* テキスト 寄せ --------------*/
.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

/* テキスト 太字 --------------*/
.text-bold {
  font-weight: bold;
}

/* テキスト 色 --------------*/
.text-main {
  color: var(--color-main);
}

.text-red {
  color: var(--color-red);
}

/* テキスト サイズ --------------*/
.text-size-6 {
  font-size: 0.6rem;
}

.text-size-7 {
  font-size: 0.7rem;
}

.text-size-8 {
  font-size: 0.8rem;
}

.text-size-9 {
  font-size: 0.9rem;
}

.text-size-10 {
  font-size: 1rem;
}

.text-size-11 {
  font-size: 1.1rem;
}

.text-size-12 {
  font-size: 1.2rem;
}

.text-size-13 {
  font-size: 1.3rem;
}

.text-size-14 {
  font-size: 1.4rem;
}

.text-size-15 {
  font-size: 1.5rem;
}

.text-size-16 {
  font-size: 1.6rem;
}

/*------------------------------------------*/
/* margin
/*------------------------------------------*/
.margin-p {
  margin-top: 2rem;
}

.margin-l {
  margin-left: 1em;
}

.margin-t {
  margin-top: 40px;
}

@media screen and (min-width: 834px), print {
  .margin-t {
    margin-top: 60px;
  }
}

.margint0 {
  margin-top: 0 !important;
}


/*------------------------------------------*/
/* 横並び50%
/*------------------------------------------*/

.contents-box {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}

@media screen and (min-width: 768px), print {
  .contents-box {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }
}

@media screen and (min-width: 834px), print {
  .contents-box.row-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*------------------------------------------*/
/* 画像あり 左右レイアウト
/*------------------------------------------*/

.contents-box-image {
  position: relative;
}

.contents-box-image figure img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .contents-box-image .cont {
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px), print {
  .contents-box-image {
    display: flex;
  }

  .contents-box-image.reverse {
    flex-direction: row-reverse;
  }

  .contents-box-image figure {
    flex-shrink: 0;
    width: calc(calc(550 / 1240) * 100vw);
    margin-right: 40px;
  }

  .contents-box-image.reverse figure {
    margin-right: 0;
    margin-left: 40px;
  }

  .contents-box-image .cont {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
  }
}

@media screen and (min-width: 834px), print {
  .contents-box-image figure {
    margin-right: 60px;
  }

  .contents-box-image.reverse figure {
    margin-right: 0;
    margin-left: 60px;
  }
}

@media screen and (min-width: 1240px), print {
  .contents-box-image figure {
    width: 550px;
  }
}


/*------------------------------------------*/
/* リスト 黒丸
/*------------------------------------------*/

.list-type-circle-black li {
  position: relative;
  text-align: left;
  padding-left: 1em;
}

.list-type-circle-black li::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
}


/*------------------------------------------*/
/* リスト 青丸
/*------------------------------------------*/

.list-type-circle {
  margin-top: 1em;
}

.list-type-circle li {
  position: relative;
  text-align: left;
  padding-left: 15px;
}

.list-type-circle li::before {
  content: '';
  display: inline-block;
  background: var(--color-main);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0.5em;
  left: 0;
}

.list-type-circle.pink li::before {
  background: var(--color-pink);
}

.list-type-circle li+li {
  margin-top: 0.5em;
}

@media screen and (min-width: 768px), print {
  .list-type-circle li::before {
    top: 0.6em;
  }
}

/* 入れ子になった場合の青丸スタイル解除用 */
.list-type-circle .list-type-circle-black li {
  padding-left: 1em;
}

.list-type-circle .list-type-circle-black li+li {
  margin-top: 0;
}

.list-type-circle .list-type-circle-black li::before {
  content: '・';
  display: inline;
  background: transparent;
  border-radius: 0;
  width: auto;
  height: auto;
  position: relative;
  top: auto;
  left: auto;
}


/*------------------------------------------*/
/* 外部リンク
/*------------------------------------------*/

.link-blank {
  color: var(--color-main);
}

.link-blank:after {
  content: " ";
  display: inline-block;
  background: url('../img/common/link_blank.svg') no-repeat;
  background-size: 100%;
  width: 15px;
  height: 15px;
  margin-left: 3px;
}


/*------------------------------------------*/
/* ボタン wrap
/*------------------------------------------*/

.btn-type-wrap {
  display: inline-block;
  width: 100%;
  margin-top: 40px;
}

.btn-type-wrap.left {
  text-align: left;
}

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

.btn-type-wrap.right {
  text-align: right;
}

@media screen and (min-width: 834px), print {
  .btn-type-wrap {
    margin-top: 80px;
  }
}


/*------------------------------------------*/
/* ボタン 角丸
/*------------------------------------------*/

.btn-type-rounded {
  position: relative;
  display: inline-block;
  border-style: solid;
  border-width: 2px;
  border-color: var(--color-neon-blue);
  background: var(--color-neon-blue);
  border-radius: 40px;
  text-align: left;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 16px 100px 16px 50px;
  transition: all .5s ease;
}

.btn-type-rounded.wide {
  width: 100%;
  text-align: center;
}

.btn-type-rounded.red {
  border-color: var(--color-red);
  background: var(--color-red);
}

.btn-type-rounded.white {
  background: white;
  border-color: white;
  color: var(--color-neon-blue);
}

.btn-type-rounded::before {
  content: '';
  display: inline-block;
  background: white;
  border-style: solid;
  border-width: 2px;
  border-color: white;
  border-radius: 15px;
  width: 36px;
  height: 26px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 10px;
  transition: all .5s ease;
}

.btn-type-rounded.white::before {
  background: var(--color-neon-blue);
  border-color: var(--color-neon-blue);
}

.btn-type-rounded::after {
  content: '';
  display: inline-block;
  background: url('../img/common/btn_arrow.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 1/1;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 23px;
  transition: transform 1s;
}

.btn-type-rounded.red::after {
  background: url('../img/common/btn_arrow_red.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.white::after {
  background: url('../img/common/btn_arrow_white.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded:visited {
  color: white;
}

.btn-type-rounded.white:visited {
  color: var(--color-neon-blue);
}

.btn-type-rounded:hover {
  text-decoration: none;
}

.btn-type-rounded:hover::before {
  background: transparent;
}

.btn-type-rounded:hover::after {
  background: url('../img/common/btn_arrow_white.svg') no-repeat;
  background-size: 100%;
  transform: rotateY(360deg);
}

.btn-type-rounded.white:hover::after {
  background: url('../img/common/btn_arrow.svg') no-repeat;
  background-size: 100%;
}

/*------------------------------------------*/
/* ボタン 角丸 線
/*------------------------------------------*/

.btn-type-rounded-line {
  position: relative;
  display: inline-block;
  border: solid 2px var(--color-neon-blue);
  background: transparent;
  border-radius: 40px;
  text-align: left;
  color: var(--color-neon-blue);
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 16px 100px 16px 50px;
  transition: all .5s ease;
}

.btn-type-rounded-line::before {
  content: '';
  display: inline-block;
  background: var(--color-neon-blue);
  border: solid 2px var(--color-neon-blue);
  border-radius: 15px;
  width: 36px;
  height: 26px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 10px;
  transition: all .5s ease;
}

.btn-type-rounded-line::after {
  content: '';
  display: inline-block;
  background: url('../img/common/btn_arrow_white.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 1/1;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 23px;
  transition: transform 1s;
}

.btn-type-rounded-line:visited {
  color: var(--color-neon-blue);
}

.btn-type-rounded-line:hover {
  text-decoration: none;
}

.btn-type-rounded-line:hover::before {
  background: transparent;
}

.btn-type-rounded-line:hover::after {
  background: url('../img/common/btn_arrow.svg') no-repeat;
  background-size: 100%;
  transform: rotateY(360deg);
}


/*------------------------------------------*/
/* ボタン 角丸 文字なし
/*------------------------------------------*/

.btn-type-rounded-arrow {
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  border: solid 2px var(--color-neon-blue);
  background: var(--color-neon-blue);
  border-radius: 40px;
  width: 54px;
  height: 40px;
  transition: all .5s ease;
}

.btn-type-rounded-arrow.white {
  background: white;
  border-color: white;
  color: var(--color-neon-blue);
}

.btn-type-rounded-arrow::after {
  content: '';
  display: inline-block;
  background: url('../img/common/btn_arrow_white.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 1/1;
  width: 12px;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: transform 1s;
}

.btn-type-rounded-arrow.white::after {
  background: url('../img/common/btn_arrow.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded-arrow:hover {
  text-decoration: none;
  background: transparent;
}

.btn-type-rounded-arrow:hover::after {
  background: url('../img/common/btn_arrow.svg') no-repeat;
  background-size: 100%;
  transform: rotateY(360deg);
}

.btn-type-rounded-arrow.white:hover::after {
  background: url('../img/common/btn_arrow_white.svg') no-repeat;
  background-size: 100%;
}

/*------------------------------------------*/
/* 表 thの背景色付き
/*------------------------------------------*/

.table-type-th-background {
  border-collapse: collapse;
  width: 100%;
  margin-top: 40px;
}

.table-type-th-background.narrow {
  max-width: 500px;
}

.table-type-th-background th,
.table-type-th-background td {
  border: 1px solid var(--color-light-gray);
  font-size: 1rem;
  padding: 10px;
}

.table-type-th-background th {
  background: var(--color-light-main);
  color: var(--color-main);
  font-weight: bold;
}

.table-type-th-background th.backcolor,
.table-type-th-background td.backcolor {
  background: var(--color-bright-main);
}

.table-type-th-background td {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .table-type-th-background {
    /*テーブルスマホで横スクロールさせる場合*/
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (min-width: 834px), print {
  .table-type-th-background {
    margin-top: 60px;
  }
}

.table-type-th-background.all-center th,
.table-type-th-background.all-center td {
  text-align: center;
}

.table-type-th-background.all-th-left th {
  text-align: left;
}

.table-type-th-background th {
  text-align: center;
}

.table-type-th-background td {
  text-align: left;
}

.table-type-th-background th.center,
.table-type-th-background td.center {
  text-align: center;
}

.table-type-th-background th.right,
.table-type-th-background td.right {
  text-align: right;
}

.section>.table-type-th-background:first-child {
  margin-top: 0;
}


/*------------------------------------------*/
/* 表 下線が破線
/*------------------------------------------*/
.table-type-underline-dashed {
  border-collapse: collapse;
  width: 100%;
  margin-top: 40px;
}

@media screen and (min-width: 834px), print {
  .table-type-underline-dashed {
    margin-top: 60px;
  }
}

.table-type-underline-dashed th,
.table-type-underline-dashed td {
  text-align: left;
  border-bottom: dashed 1px var(--color-light-gray);
  font-size: 1rem;
  padding: 20px 0;
}

.table-type-underline-dashed th {
  font-weight: bold;
}

.table-type-underline-dashed.text-top th {
  vertical-align: text-top;
}

.table-type-underline-dashed td {
  text-align: left;
}

@media screen and (max-width: 767px) {

  .table-type-underline-dashed tr,
  .table-type-underline-dashed th,
  .table-type-underline-dashed td {
    display: block;
    width: auto;
  }

  .table-type-underline-dashed th,
  .table-type-underline-dashed td {
    border-bottom: 1px solid var(--color-light-gray);
    padding: 10px 0;
  }

  .table-type-underline-dashed th {
    border-bottom: 1px dotted var(--color-light-gray);
  }
}

@media screen and (min-width: 768px), print {
  .table-type-underline-dashed th {
    width: 10em;
  }
}

.section>.table-type-underline-dashed:first-child,
.contents-box .table-type-underline-dashed {
  margin-top: 0;
}


/* テーブル 共通 横幅指定 --------------------------------*/
@media screen and (min-width: 768px), print {
  table.thw4 th {
    width: 4em;
  }

  table.thw5 th {
    width: 5em;
  }

  table.thw6 th {
    width: 6em;
  }

  table.thw7 th {
    width: 7em;
  }

  table.thw8 th {
    width: 8em;
  }

  table.thw9 th {
    width: 9em;
  }

  table.thw10 th {
    width: 10em;
  }

  table.thw11 th {
    width: 11em;
  }

  table.thw12 th {
    width: 12em;
  }

  table.thw13 th {
    width: 13em;
  }

  table.thw14 th {
    width: 14em;
  }

  table.thw15 th {
    width: 15em;
  }

  table.thw16 th {
    width: 16em;
  }

  table.thw17 th {
    width: 17em;
  }

  table.thw18 th {
    width: 18em;
  }

  table.thw19 th {
    width: 19em;
  }

  table.thw20 th {
    width: 20em;
  }
}


/*------------------------------------------*/
/* 地図
/*------------------------------------------*/

.map_wrapper iframe {
  width: 100%;
  height: 400px;
}

.map_wrapper {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .map_wrapper iframe {
    width: 100%;
    height: 200px;
  }
}



/*------------------------------------------*/
/* ビデオ
/*------------------------------------------*/

.video_wrapper {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  margin: 0 auto;
}

.video_wrapper>video {
  width: 100%;
}

/* 画面いっぱい --------------------------------*/
.video_wrapper_full {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video_wrapper_full>video {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 144/108;
}


/*------------------------------------------*/
/* YouTube 画面いっぱい
/*------------------------------------------*/


.youtube_full {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube_full iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}