@charset "UTF-8";
/* ===========================
基本設定
=========================== */
html {
  font-size: 62.5%;
  font-family: 'Helvetica Neue', Helvetica, Arial,"游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic,-apple-system,BlinkMacSystemFont, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'MS ゴシック', 'MS Gothic', sans-serif;
}

@font-face {
  font-family: 'Noto Sans SC';
  src: url('/font/NotoSansSC-Regular.woff2') format('woff2');
  font-weight: normal;
  font-display: swap;
}
html a[href*="index-chs"],
html[lang="chs"] #contents .text01,
html[lang="chs"] #contents .cont01,
html[lang="chs"] #contents .cont02,
html[lang="chs"] #contents .btn_submit,
html[lang="chs"] #contents .btn_submit input,
html[lang="chs"] #contents .cont01 input {
  font-family: 'Helvetica Neue', Helvetica, Arial,"Noto Sans SC", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #333;
}
@font-face {
  font-family: 'Noto Sans TC';
  src: url('/font/NotoSansTC-Regular.woff2') format('woff2');
  font-weight: normal;
  font-display: swap;
}
html a[href*="index-cht"],
html[lang="cht"] #contents .text01,
html[lang="cht"] #contents .cont01,
html[lang="cht"] #contents .cont02,
html[lang="cht"] #contents .btn_submit,
html[lang="cht"] #contents .btn_submit input,
html[lang="cht"] #contents .cont01 input {
  font-family: 'Helvetica Neue', Helvetica, Arial,"Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #333;
}
body {
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: .05em;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  opacity: .7;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

section {
  display: block;
}

.bold {
  font-weight: bold;
}

body * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
}

svg {
  display: block;
}

::-moz-selection {
  background: #666;
  color: #fff;
}

::selection {
  background: #666;
  color: #fff;
}

::-moz-selection {
  background: #666;
  color: #fff;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* SPここから */
@media only screen and (max-width: 750px) {
  a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  a:hover {
    opacity: 1;
  }
}

/* ===========================
画面幅による表示・非表示
=========================== */
.tb_only {
  display: none !important;
}

.sp_only {
  display: none !important;
}

.pc_only {
  display: block !important;
}

/* TBここから */
@media only screen and (min-width: 751px) and (max-width: 1220px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: none !important;
  }
  .tb_only {
    display: block !important;
  }
}

/* SPここから */
@media only screen and (max-width: 750px) {
  .pc_only {
    display: none !important;
  }
  .tb_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
}

/* ===========================
フェードアップ
=========================== */
.fade_up {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

.fade_up.viewed {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* ===========================
パンくずリスト
=========================== */
.bread_crumb {
  width: 100%;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 8px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2rem;
  letter-spacing: .025em;
  margin-bottom: 110px;
}

.bread_crumb li::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url(../../img/common/arrow_black.png);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  margin: 0 10px;
}

.bread_crumb li:last-of-type::after {
  content: none;
}

@media only screen and (min-width: 751px) and (max-width: 1220px) {
  .bread_crumb {
    padding: 8px 30px;
    margin-bottom: 70px;
  }
}

@media only screen and (max-width: 750px) {
  .bread_crumb {
    width: 100%;
    height: 30px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .bread_crumb li {
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
  .bread_crumb li > a, .bread_crumb li > span {
    display: block;
    padding: 0 8px;
    line-height: 28px;
  }
  .bread_crumb li::after {
    display: block;
    width: 7.5px;
    height: 30px;
    background-image: url(../../img/common/arrow_breadcrumb.png);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    margin: 0;
  }
}

/* ===========================
ページトップ
=========================== */
.btn_page_top {
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  bottom: 60px;
  right: 30px;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
  z-index: 10;
}

.btn_page_top a {
  display: block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn_page_top a span {
  display: block;
  width: 14px;
}

.btn_page_top.viewed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media only screen and (min-width: 751px) and (max-width: 1220px) {
  .btn_page_top {
    bottom: 30px;
  }
}

@media only screen and (max-width: 750px) {
  .btn_page_top {
    width: 12vw;
    height: 12vw;
    bottom: 5.33333vw;
    right: 5.33333vw;
  }
  .btn_page_top a span {
    width: 3.73333vw;
  }
}

/* ===========================
タイトル
=========================== */
.main_ttl_blk {
  width: 100%;
  text-align: center;
  margin-bottom: 90px;
}

.main_ttl_blk .main_ttl {
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: .1em;
  font-weight: normal;
  padding-bottom: 20px;
  position: relative;
}

.main_ttl_blk .main_ttl::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0 auto;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.main_ttl_blk .main_ttl::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #e72410;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.main_ttl_blk .main_ttl.ready::after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.main_ttl_blk .sub_ttl {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  font-size: 1.4rem;
  letter-spacing: .05em;
  padding: 20px 0 0;
}

@media only screen and (min-width: 751px) and (max-width: 1220px) {
  .main_ttl_blk {
    margin-bottom: 60px;
  }
  .main_ttl_blk .main_ttl {
    font-size: 3rem;
  }
  .main_ttl_blk .main_ttl::before {
    width: 35px;
  }
  .main_ttl_blk .main_ttl::after {
    width: 35px;
  }
  .main_ttl_blk .sub_ttl {
    width: 94%;
    margin: 0 auto;
    font-size: 1.2rem;
    padding: 20px 0 0;
  }
}

@media only screen and (max-width: 750px) {
  .main_ttl_blk {
    margin-bottom: 30px;
  }
  .main_ttl_blk .main_ttl {
    font-size: 2.4rem;
    padding-bottom: 15px;
  }
  .main_ttl_blk .main_ttl::before {
    width: 30px;
  }
  .main_ttl_blk .main_ttl::after {
    width: 30px;
  }
  .main_ttl_blk .sub_ttl {
    font-size: 1.2rem;
    padding: 13px 5.33333vw 0;
  }
}

/* ===========================
下層：メインビジュアル
=========================== */
.mv_blk {
  width: 100%;
  margin-bottom: 70px;
}

.mv_blk img {
  display: block;
  width: 100%;
}

@media only screen and (min-width: 751px) and (max-width: 1220px) {
  .mv_blk {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 750px) {
  .mv_blk {
    margin-bottom: 40px;
  }
}

/* Googleフォント追加 2021.6.3 iw */
i.material-icons {
    position: relative;
    top: 5px;
    margin-left: 2px;
	font-size: 2.0rem;
    color: #666;
}
/*# sourceMappingURL=../map/common/common.css.map */