@charset "UTF-8";
/**
 * Common Styles
 *
 * 01. Reset
 * 02. Base
 * 03. Layout
 * 04. Parts
 * 05. Responisive
 *
 */
/* ==========================================================================
   01. Reset
   ========================================================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* ==========================================================================
   02. Base
   ========================================================================== */
html {
  color: #000;
  font-size: 62.5%;
  font-weight: 500;
}

body {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 160%;
  -webkit-text-size-adjust: 100%;
}

body * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (min-width: 768px), print {
  body {
    line-height: 1.75;
    min-width: 1200px;
  }
}

@media screen and (max-width: 767px) {
  body {
    line-height: 1.75;
    font-size: 160%;
  }
}

#main {
  display: block;
}

/* link
   ========================================================================== */
a {
  color: #555;
  text-decoration: underline;
}

a:visited {
  color: #555;
  text-decoration: none;
}

@media screen and (min-width: 768px), print {
  a:hover {
    color: #555;
    text-decoration: none;
  }
}

/* image
   ========================================================================== */
img {
  height: auto;
  line-height: 1;
  max-width: 100%;
  vertical-align: top;
}

table th img,
table td img {
  vertical-align: middle;
}

/* ClearFix
   ========================================================================== */
.clear {
  clear: both;
}

.clearfix,
.fbox,
#contents {
  display: block;
}

.clearfix:after,
.fbox:after,
#contents:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* float
   ========================================================================== */
.fr {
  float: right;
}

.fl {
  float: left;
}

ul.fbox li {
  float: left;
  display: inline;
}

/* margin
   ========================================================================== */
.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

/* padding
   ========================================================================== */
.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

/* form label
   ========================================================================== */
input,
textarea,
label {
  vertical-align: middle;
}

/* position
   ========================================================================== */
.text-r {
  text-align: right !important;
}

.text-c,
table.text-c th,
table.text-c td,
table.th-c th {
  text-align: center !important;
}

.text-l {
  text-align: left !important;
}

/* block
   ========================================================================== */
/* 下余白確保用 */
.main-block {
  margin-bottom: 100px;
}

.main-block > * {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .main-block {
    margin-bottom: 50px;
  }
  .main-block > * {
    margin-bottom: 20px;
  }
}

/* SP左右余白確保用 */
@media screen and (max-width: 767px) {
  .sp-pdg {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* inview
   ========================================================================== */
.inview {
  opacity: 0;
  will-change: animation,opacity;
}

.inview-fade {
  animation-name: fadeIn;
  animation-duration: 1.25s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 15%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ==========================================================================
   03. Layout
   ========================================================================== */
/* wrapper
   ========================================================================== */
html, body {
  height: 100%;
}

/* #contentsを囲むブロック要素 */
/* #mainと#sideを囲むブロック要素 */
/* メインエリア */
/* サイドエリア */
/* セクション */
@media screen and (min-width: 768px), print {
  .contents-item {
    margin: 0 auto;
    padding-left: 100px;
    padding-right: 100px;
    max-width: 2000px;
  }
}

@media screen and (min-width: 768px), print {
  .sct-cmn {
    margin: 100px 0;
  }
}

@media screen and (max-width: 767px) {
  .sct-cmn {
    margin: 40px 0;
  }
}

.sct-gray {
  background-color: #f8f8f8;
  padding: 65px 100px;
}

@media screen and (min-width: 768px), print {
  #contents {
    padding-top: 74px;
  }
}

@media screen and (max-width: 767px) {
  #contents {
    padding-top: 60px;
  }
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  #contents {
    padding-top: 0 !important;
  }
}

/* header
   ========================================================================== */
#header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
}

#header:not(.ready) {
  transition: transform .5s;
}

@media screen and (min-width: 768px), print {
  #header {
    height: 74px;
    padding: 15px 30px;
  }
}

@media screen and (max-width: 767px) {
  #header {
    height: 60px;
    padding: 10px;
    z-index: 99;
  }
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  #header {
    position: relative !important;
  }
}

.header-fixed #header {
  position: fixed;
  transform: translateY(-100px);
  left: 0;
  z-index: 10000;
  width: 100%;
  background-color: #fff !important;
  display: block !important;
}

#header.header-an {
  transform: translateY(0);
  background-color: #fff !important;
  animation: none !important;
}

.header-inner {
  position: relative;
  font-size: 0;
}

@media screen and (min-width: 768px), print {
  .header-inner {
    min-width: 1100px;
  }
}

@media screen and (max-width: 767px) {
  .header-inner {
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 768px), print {
  .header-logo,
  #gnav {
    vertical-align: bottom;
    display: inline-block;
  }
  .header-logo a:hover,
  #gnav a:hover {
    color: #fcff00;
    transition-duration: .5s;
  }
}

@media screen and (min-width: 768px), print {
  .header-logo {
    margin-right: 50px;
  }
}

@media screen and (max-width: 767px) {
  .header-logo img {
    width: 155px;
  }
}

@media screen and (max-width: 767px) {
  #gnav {
    display: none;
  }
}

/* header-utility */
.header-utility {
  position: absolute;
  right: 0;
}

@media screen and (min-width: 768px), print {
  .header-utility {
    top: 10px;
    font-size: 0;
  }
  .header-utility > * {
    display: inline-block;
    vertical-align: middle;
  }
}

@media screen and (max-width: 767px) {
  .header-utility {
    top: 13px;
    z-index: 1;
  }
}

@media screen and (min-width: 768px), print {
  .u-list {
    font-size: 0;
    padding-right: 25px;
  }
  .u-list li {
    display: inline-block;
  }
  .u-list li:not(:last-child) {
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .u-list {
    display: none;
  }
}

.u-btn a {
  background-color: #555;
  border: 1px solid #d1d1d1;
  color: #fff;
  display: block;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0;
  overflow: hidden;
}

@media screen and (min-width: 768px), print {
  .u-btn a {
    border-radius: 20px;
    width: 170px;
    height: 40px;
    padding: 11px 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .u-btn a:hover {
    background-color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
    transition-duration: .5s;
  }
}

@media screen and (max-width: 767px) {
  .u-btn a {
    border-radius: 13px;
    width: 135px;
    height: 25px;
    padding: 5px 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* sp-memu */
.header-menu-wrap {
  background-color: #fff;
  border: 1px solid #d1d1d1;
  padding: 12px 10px;
  border-radius: 3px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 99;
}

.header-menu-wrap.active {
  border: none;
  background: none;
}

.header-menu-wrap.active .header-menu span:nth-child(1) {
  transform: translateY(7px) rotate(-45deg);
}

.header-menu-wrap.active .header-menu span:nth-child(2) {
  opacity: 0;
}

.header-menu-wrap.active .header-menu span:nth-child(3) {
  bottom: 0;
  transform: translateY(-7px) rotate(45deg);
}

.header-menu-wrap .header-menu {
  display: inline-block;
  transition: all .4s;
  position: relative;
  width: 20px;
  height: 15px;
}

.header-menu-wrap .header-menu span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  transition: all .3s;
  will-change: transform;
}

.header-menu-wrap .header-menu span:nth-child(1) {
  top: 0;
}

.header-menu-wrap .header-menu span:nth-child(2) {
  top: 7px;
}

.header-menu-wrap .header-menu span:nth-child(3) {
  bottom: 0;
}

@media screen and (min-width: 768px), print {
  .header-menu-wrap {
    display: none;
  }
}

/* navigation
   ========================================================================== */
/* gnav */
#gnav li {
  font-weight: bold;
}

#gnav li a {
  color: #000;
  text-decoration: none;
}

@media screen and (min-width: 768px), print {
  #gnav {
    font-size: 0;
    padding-bottom: 13px;
  }
  #gnav li {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    font-size: 16px;
    font-size: 1.6rem;
  }
  #gnav li:not(:last-child) {
    margin-right: 30px;
  }
  #gnav li.sp-item {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  #gnav li {
    line-height: 1.5;
  }
}

/* sp-gnav */
#sp-gnav {
  display: none;
  background-color: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 3px;
  padding: 55px 40px 75px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5;
}

#sp-gnav #gnav li {
  font-size: 16px;
  font-size: 1.6rem;
}

#sp-gnav #gnav li:not(:last-child) {
  margin-bottom: 24px;
}

#sp-gnav .u-btn {
  text-align: right;
  margin-bottom: 10px;
}

#sp-gnav .u-btn a {
  display: inline-block;
}

#sp-gnav.active {
  display: block;
}

#sp-gnav.active #gnav {
  display: block;
}

@media screen and (min-width: 768px), print {
  #sp-gnav {
    display: none;
  }
}

/* side
   ========================================================================== */
/* サイドエリア内のタイトル */
/* サイドエリア内のナビゲーション */
/* footer
   ========================================================================== */
#footer {
  background-color: #222;
  color: #999;
  position: relative;
}

.organizer {
  background-color: #f8f8f8;
}

@media screen and (max-width: 767px) {
  .organizer {
    padding: 0 20px;
  }
}

.organizer .footer-inner {
  flex-direction: row;
}

@media screen and (min-width: 768px), print {
  .organizer .footer-inner {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .organizer .footer-inner > * {
    margin-bottom: 0;
  }
  .organizer .footer-inner > *:first-child {
    width: 30%;
  }
  .organizer .footer-inner > *:last-child {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .organizer .footer-inner {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .o-footer-left {
    margin-bottom: 10px !important;
  }
}

.o-footer-left .ttl {
  color: #000;
  font-weight: bold;
  line-height: 1.1;
}

@media screen and (min-width: 768px), print {
  .o-footer-left .ttl {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .o-footer-left .ttl {
    margin-bottom: 16px;
    font-size: 20px;
    font-size: 2rem;
  }
}

.o-footer-left p {
  line-height: 1.85;
}

@media screen and (min-width: 768px), print {
  .o-footer-left p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .o-footer-left p {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 768px), print {
  .o-footer-right {
    padding-left: 60px;
  }
}

.o-footer-right .tel {
  color: #000;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.o-footer-right .tel span:not(.tel-linktext) {
  background: url(/common/img/icon_tell.png) no-repeat left center;
}

@media screen and (min-width: 768px), print {
  .o-footer-right .tel {
    margin-bottom: 13px;
  }
  .o-footer-right .tel span:not(.tel-linktext) {
    background-size: 30px auto;
    padding-left: 40px;
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .o-footer-right .tel {
    margin-bottom: 10px;
    font-size: 28px;
    font-size: 2.8rem;
  }
  .o-footer-right .tel span:not(.tel-linktext) {
    text-decoration: none;
    background-size: 24px auto;
    padding-left: 30px;
  }
}

.o-footer-right .time {
  color: #999;
  text-align: center;
  line-height: 1;
}

@media screen and (min-width: 768px), print {
  .o-footer-right .time {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .o-footer-right .time {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.o-footer-right-head {
  border-bottom: 1px solid #e5e5e5;
}

@media screen and (min-width: 768px), print {
  .o-footer-right-head {
    display: flex;
    align-items: center;
    padding: 0 10px 20px;
    margin-bottom: 30px;
  }
  .o-footer-right-head > p {
    width: calc(100% - 315px);
  }
  .o-footer-right-head .o-footer-right-head-tel {
    width: 315px;
  }
}

@media screen and (max-width: 767px) {
  .o-footer-right-head {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .o-footer-right-head > p {
    margin-bottom: 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.o-footer-right-head p {
  color: #000;
}

@media screen and (min-width: 768px), print {
  .o-footer-right-head p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.o-foot-list {
  font-size: 0;
}

.o-foot-list .btn02 {
  background-color: #fff;
  color: #000;
}

@media screen and (max-width: 767px) {
  .o-foot-list .btn02 {
    padding-top: 13px;
    padding-bottom: 13px;
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .o-foot-list .btn02 small {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .o-foot-list li:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 768px), print {
  .o-foot-list {
    text-align: left;
  }
  .o-foot-list li {
    display: inline-block;
    vertical-align: top;
    width: 32%;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .o-foot-list li:not(:last-child) {
    margin-right: 2%;
  }
  .o-foot-list .btn02 {
    padding: 12px 3px;
  }
  .o-foot-list .btn02:hover {
    color: #000;
  }
  .o-foot-list .btn02 small {
    font-weight: normal;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 768px), print {
  .footer-inner {
    display: flex;
    flex-direction: row-reverse;
    padding-top: 100px !important;
    padding-bottom: 80px !important;
  }
  .footer-inner > * {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .footer-inner {
    padding: 20px 0 30px !important;
  }
}

.footer-nav {
  line-height: 1;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
}

@media screen and (min-width: 768px), print {
  .footer-nav {
    font-size: 0;
    text-align: right;
  }
  .footer-nav > * {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    position: relative;
    padding-top: 20px;
  }
  .footer-nav > *:before {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #535353;
    position: absolute;
    left: -35px;
    top: 0;
  }
  .footer-nav a:hover {
    color: #a1a1a1;
  }
  .footer-nav .footer-nav-g {
    margin-right: 70px;
  }
  .footer-nav .footer-nav-g li {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .footer-nav .footer-nav-g li:not(:last-child) {
    margin-bottom: 20px;
  }
  .footer-nav .footer-nav-g a {
    font-weight: bold;
  }
  .footer-nav .footer-nav-sub li {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .footer-nav .footer-nav-sub li:not(:last-child) {
    margin-bottom: 15px;
  }
  .footer-nav .footer-nav-sub li:last-child {
    margin-top: 35px;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav .footer-nav {
    margin-bottom: 30px;
  }
  .footer-nav .footer-nav-g {
    display: none;
  }
  .footer-nav .footer-nav-sub li {
    border-bottom: 1px solid #535353;
  }
  .footer-nav .footer-nav-sub a {
    color: #fff;
    display: block;
    padding: 13px 25px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-info {
    padding: 0 20px;
  }
}

.footer-ttl-wrap {
  font-size: 0;
  line-height: 1;
}

.footer-ttl-wrap > * {
  display: inline-block;
  vertical-align: middle;
}

@media screen and (min-width: 768px), print {
  .footer-ttl-wrap {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 767px) {
  .footer-ttl-wrap {
    margin-bottom: 25px;
  }
}

.footer-ttl {
  color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 768px), print {
  .footer-ttl {
    margin-right: 70px;
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-ttl {
    display: block;
    margin-bottom: 20px;
    margin-right: 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.footer-contact a {
  background-color: #555;
  border: 1px solid #d1d1d1;
  color: #fff;
  display: block;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

@media screen and (min-width: 768px), print {
  .footer-contact a {
    border-radius: 20px;
    width: 200px;
    height: 40px;
    padding: 9px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .footer-contact a:hover {
    background-color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
    transition-duration: .5s;
  }
}

@media screen and (max-width: 767px) {
  .footer-contact a {
    border-radius: 13px;
    width: 135px;
    height: 25px;
    padding: 5px 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.footer-address {
  color: #999;
}

@media screen and (min-width: 768px), print {
  .footer-address {
    line-height: 1.71;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-address {
    line-height: 1.66;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.footer-copy {
  color: #999;
  font-weight: bold;
  line-height: 1;
}

.footer-copy span {
  position: relative;
}

@media screen and (min-width: 768px), print {
  .footer-copy {
    margin-top: 60px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .footer-copy span {
    top: 4px;
    font-size: 23px;
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-copy {
    margin-top: 40px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .footer-copy span {
    top: 3px;
    font-size: 19px;
    font-size: 1.9rem;
  }
}

/* ページトップ */
#pagetop {
  position: absolute;
  top: -70px;
  right: 20px;
}

#pagetop.fixed {
  position: fixed;
  bottom: 20px;
  top: inherit;
}

#pagetop a {
  background-color: #ccc;
  color: #fff;
  display: block;
  position: relative;
  text-align: center;
  text-decoration: none;
  height: 50px;
  width: 50px;
}

#pagetop span {
  position: absolute;
  left: 50%;
  top: 55%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#pagetop span:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
  display: block;
  height: 10px;
  width: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ==========================================================================
   04. Parts
   ========================================================================== */
/* ボックス
   ========================================================================== */
/* センターボックス */
@media screen and (min-width: 768px), print {
  .box-center {
    margin: 0 auto;
    max-width: 2000px;
    padding: 0 100px;
    position: relative;
  }
  .box-center > *:not(:last-child) {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .box-center {
    padding: 0 20px;
    position: relative;
  }
  .box-center > *:not(:last-child) {
    margin-bottom: 30px;
  }
}

/* 横並びボックス（flex） */
@media screen and (min-width: 768px), print {
  .box-col2 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 20px;
  }
  .box-col2 > * {
    margin: 0 20px 20px 0;
    overflow: hidden;
    width: 50%;
  }
  .box-col2 > *:nth-child(2n) {
    margin-right: -20px;
  }
}

@media screen and (max-width: 767px) {
  .box-col2 > * {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 768px), print {
  .box-col3 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 40px;
  }
  .box-col3 > * {
    margin: 0 20px 20px 0;
    overflow: hidden;
    width: 33.3333333333%;
  }
  .box-col3 > *:nth-child(3n) {
    margin-right: -40px;
  }
}

@media screen and (max-width: 767px) {
  .box-col3 > * {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 768px), print {
  .box-col4 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 60px;
  }
  .box-col4 > * {
    margin: 0 20px 20px 0;
    overflow: hidden;
    width: 25%;
  }
  .box-col4 > *:nth-child(4n) {
    margin-right: -60px;
  }
}

@media screen and (max-width: 767px) {
  .box-col4 > * {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 768px), print {
  .box-col2-parsent {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .box-col2-parsent > * {
    overflow: hidden;
    width: 49%;
  }
  .box-col2-parsent > *:nth-child(n+1) {
    margin: 0 2% 2% 0;
  }
  .box-col2-parsent > *:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .box-col2-parsent > * {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 768px), print {
  .box-col3-parsent {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .box-col3-parsent > * {
    overflow: hidden;
    width: 32%;
  }
  .box-col3-parsent > *:nth-child(n+1) {
    margin: 0 2% 2% 0;
  }
  .box-col3-parsent > *:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .box-col3-parsent > * {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 768px), print {
  .box-col4-parsent {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .box-col4-parsent > * {
    overflow: hidden;
    width: 23.5%;
  }
  .box-col4-parsent > *:nth-child(n+1) {
    margin: 0 2% 2% 0;
  }
  .box-col4-parsent > *:nth-child(4n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .box-col4-parsent > * {
    margin-bottom: 15px;
  }
}

/* 画像左、テキスト右 */
@media screen and (min-width: 768px), print {
  .box-img-l {
    display: -ms-flexbox;
    display: flex;
  }
  .box-img-l .box-img {
    padding-right: 40px;
  }
  .box-img-l .box-text {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .box-img-l.respo .box-img,
  .box-img-l.respo .box-text {
    width: 50%;
  }
  .box-img-l.respo img {
    height: auto;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .box-img-l .box-img {
    margin-bottom: 20px;
  }
  .box-img-l .box-img img {
    height: auto;
    width: 100%;
  }
}

/* 画像右、テキスト左 */
@media screen and (min-width: 768px), print {
  .box-img-r {
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .box-img-r .box-img {
    padding-left: 40px;
  }
  .box-img-r .box-text {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media screen and (max-width: 767px) {
  .box-img-r .box-img {
    margin-bottom: 20px;
  }
  .box-img-r .box-img img {
    height: auto;
    width: 100%;
  }
}

/* ハーフボックス */
.box-half {
  display: flex;
}

@media screen and (max-width: 767px) {
  .box-half {
    display: block;
  }
}

.box-half .box {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .box-half .box {
    margin-bottom: 15px;
    width: 100%;
  }
  .box-half .box:last-child {
    margin-bottom: 0;
  }
}

.box-half .box:first-child {
  margin-right: 5%;
}

.box-half .box img {
  width: 100%;
}

/* info-box */
@media screen and (min-width: 768px), print {
  .info-box {
    font-size: 0;
  }
  .info-box > * {
    display: inline-block;
    vertical-align: top;
  }
}

.info-box-ttl {
  color: #000;
  line-height: 1.2;
}

@media screen and (min-width: 768px), print {
  .info-box-ttl {
    width: 500px;
    padding-right: 50px;
    text-align: center;
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .info-box-ttl {
    margin-bottom: 20px;
    text-align: left;
    font-size: 30px;
    font-size: 3rem;
  }
}

.info-box-cont {
  font-weight: bold;
}

@media screen and (min-width: 768px), print {
  .info-box-cont {
    width: calc(100% - 500px);
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .info-box-cont p {
    line-height: 1.5;
  }
}

.info-box-cont .btn-wrap {
  text-align: right;
}

@media screen and (min-width: 768px), print {
  .info-box-cont .btn-wrap {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .info-box-cont .btn-wrap {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px), print {
  .info-box-cont .btn {
    display: inline-block;
    width: 450px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .info-box-cont .text-r {
    text-align: left !important;
  }
}

/* search-box
 ========================================================================== */
@media screen and (min-width: 768px), print {
  .search-box-inner .box-center {
    display: block;
  }
  .search-box-inner .box-center:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
}

@media screen and (max-width: 767px) {
  .search-box-inner .box-center {
    padding: 0;
  }
}

.search-ttl {
  color: #000;
  letter-spacing: -.01em;
  line-height: 1;
}

.search-ttl span {
  position: relative;
}

.search-ttl span:before {
  content: '';
  background: url(/common/img/icon_search.png) no-repeat left 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px), print {
  .search-ttl span:before {
    background-size: 20px auto;
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 767px) {
  .search-ttl span:before {
    background-size: 18px auto;
    width: 18px;
    height: 18px;
  }
}

@media screen and (min-width: 768px), print {
  .search-ttl {
    margin-bottom: 20px;
    font-size: 24px;
    font-size: 2.4rem;
  }
  .search-ttl span {
    padding-left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .search-ttl {
    margin-bottom: 15px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .search-ttl span {
    padding-left: 25px;
  }
}

.search-btn {
  font-size: 0;
}

.search-btn li {
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 5px;
  display: inline-block;
  line-height: 1;
  overflow: hidden;
}

.search-btn li:hover {
  background-color: #fff603;
}

.search-btn li.active {
  background-color: #f4f4f4;
  border: 1px solid #e5e5e5;
  box-shadow: none;
}

.search-btn li.active a {
  cursor: default;
  pointer-events: none;
}

.search-btn a {
  display: block;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  letter-spacing: -.025em;
}

@media screen and (min-width: 768px), print {
  .search-btn li {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    height: 80px;
  }
  .search-btn a {
    padding: 30px 5px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .search-btn li {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    height: 40px;
  }
  .search-btn a {
    padding: 11px 5px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* ボタン
   ========================================================================== */
/* ボタンの基本スタイル */
.btn01, .btn02 {
  background-color: #fff;
  display: inline-block;
  line-height: 1.2;
  outline: none;
  text-align: center;
  text-decoration: none !important;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

/* 矢印 */
.btn01, .icon-arrow, .link-list li a {
  position: relative;
}

.btn01:before, .icon-arrow:before, .link-list li a:before {
  content: '';
  border-top: 1px solid #bcbcbc;
  border-right: 1px solid #bcbcbc;
  height: 6px;
  width: 6px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transform: rotate(45deg);
}

/* スタイル別クラス */
.btn01 {
  border: 2px solid #d1d1d1;
  border-radius: 30px;
  color: #666;
  width: 100%;
  position: relative;
}

.btn01:before {
  right: 20px !important;
}

.btn01.reverse:before {
  right: auto !important;
  left: 20px;
  transform: rotate(-135deg);
}

.btn01:hover {
  background-color: #fed230;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.18);
  transition-duration: .3s;
}

.btn01.bdr-yellow {
  border-color: #fed230;
  font-weight: bold;
}

@media screen and (min-width: 768px), print {
  .btn01 {
    padding: 13px 25px 14px 25px;
  }
  .btn01.pc-w-s {
    width: 450px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .btn01 {
    border-width: 1px;
    padding: 9px 25px 10px 25px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.btn02 {
  background-color: #555;
  border-radius: 40px;
  border: 1px solid #d1d1d1;
  color: #fff;
  font-weight: bold;
  width: 100%;
  position: relative;
}

.btn02:hover {
  color: #fff;
}

.btn02:before {
  right: 20px !important;
}

.btn02.reverse:before {
  right: auto !important;
  left: 20px;
  transform: rotate(-135deg);
}

.btn02.bdr-yellow {
  border-color: #fed230;
  font-weight: bold;
}

@media screen and (min-width: 768px), print {
  .btn02 {
    padding: 13px 25px 14px 25px;
  }
  .btn02.pc-w-s {
    width: 450px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .btn02 {
    border-width: 1px;
    padding: 9px 25px 10px 25px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* サイズ別クラス */
.btn-s {
  padding: 8px;
  font-size: 14px;
  font-size: 1.4rem;
}

.btn-l {
  padding: 13px;
  font-size: 22px;
  font-size: 2.2rem;
}

/* ボタンレイアウト */
.btn-list li .btn01, .btn-list li .btn02 {
  width: 100%;
}

.btn-list {
  letter-spacing: -.4em;
  text-align: center;
}

.btn-list li {
  display: inline-block;
  letter-spacing: normal;
  padding: 0 10px;
  width: 40%;
}

@media screen and (max-width: 767px) {
  .btn-list li {
    display: block;
    margin-bottom: 20px;
    width: 100%;
  }
  .btn-list li:last-child {
    margin-bottom: 0;
  }
}

/* ==========================================================================
 フォーム
 ========================================================================== */
/* .input-search
 ========================================================================== */
.input-search {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #000;
}

.input-search .input-txt {
  width: 100%;
  padding-right: 40px;
  border: none;
  outline: 0;
  background: transparent;
}

.input-search__btn {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  border-radius: 0 5px 5px 0;
  width: 40px;
  height: 100%;
  outline: 0;
  z-index: 2;
}

.input-search__icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
  z-index: 1;
}

.input-search__icon span {
  position: relative;
  display: block;
  line-height: 1;
  width: 40px;
  height: 100%;
}

.input-search__icon span:before {
  content: '';
  background: url(/common/img/icon_search.png) no-repeat left 0;
  background-size: 15px auto;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* アイコン
   ========================================================================== */
/*

icomoonを使用する場合はコメントアウトを外してください

@font-face {
  font-family: 'icomoon';
  font-style: normal;
  font-weight: normal;
  src: url('fonts/icomoon.eot?n6dhp8');
  src: url('fonts/icomoon.eot?n6dhp8#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?n6dhp8') format('truetype'),
    url('fonts/icomoon.woff?n6dhp8') format('woff'),
    url('fonts/icomoon.svg?n6dhp8#icomoon') format('svg');
}

[class*=" icon-"],
[class^="icon-"] {
  &:before {
    color: $color-link;
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

*/
/* 矢印 */
.btn01, .icon-arrow, .link-list li a {
  position: relative;
}

.btn01:before, .icon-arrow:before, .link-list li a:before {
  content: '';
  border-top: 1px solid #bcbcbc;
  border-right: 1px solid #bcbcbc;
  height: 6px;
  width: 6px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transform: rotate(45deg);
}

.icon-arrow {
  padding-right: 10px;
}

/* リスト
   ========================================================================== */
/* 新規ウィンドウ */
/* PDF */
/* リスト
   ========================================================================== */
/* arr */
.btn01, .icon-arrow, .link-list li a {
  position: relative;
}

.btn01:before, .icon-arrow:before, .link-list li a:before {
  content: '';
  border-top: 1px solid #bcbcbc;
  border-right: 1px solid #bcbcbc;
  height: 6px;
  width: 6px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transform: rotate(45deg);
}

/* 黒丸付きリスト */
.list-disc li {
  padding-left: 10px;
  position: relative;
  line-height: 1.5;
}

.list-disc li:not(:last-child) {
  margin-bottom: 10px;
}

.list-disc li:before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #555;
  position: absolute;
  left: 0;
  top: .75em;
  overflow: hidden;
}

/* 番号付きリスト */
.list-decimal {
  margin-left: 1.5em;
}

.list-decimal li {
  list-style-type: decimal;
  margin-bottom: 10px;
}

.list-decimal li:last-child {
  margin-bottom: 0;
}

/* 注釈リスト */
.list-note li {
  color: #999;
  line-height: 1.5;
  margin-bottom: 3px;
}

.list-note li:last-child {
  margin-bottom: 0;
}

.list-note li span {
  position: relative;
  padding-left: 16px;
}

.list-note li span:before {
  content: '※';
  width: 15px;
  height: 15px;
  position: absolute;
  left: 2px;
  top: 0;
}

.list-note.right li {
  text-align: right;
}

@media screen and (min-width: 768px), print {
  .list-note {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .list-note {
    font-size: 10px;
    font-size: 1rem;
  }
}

/* ナビリスト */
.list-nav {
  font-size: 0;
  overflow: hidden;
}

.list-nav li {
  display: inline-block;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.list-nav li > span {
  background-color: #d1d1d1;
  color: #fff;
  display: block;
}

.list-nav li > span.white {
  background-color: #fff;
  border: 1px solid #d1d1d1;
  color: #000;
  font-weight: normal;
}

.list-nav li > span.yellow {
  background-color: #ffd202;
}

.list-nav a {
  background-color: #ffae00;
  color: #fff;
  display: block;
  text-decoration: none;
}

@media screen and (min-width: 768px), print {
  .list-nav li {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .list-nav li > span,
  .list-nav li a {
    min-height: 36px;
    border-radius: 20px;
    padding: 9px 5px;
  }
  .list-nav.pc-col5 {
    margin-bottom: -1%;
  }
  .list-nav.pc-col5 li {
    width: 19.2%;
    margin-right: 1%;
    margin: 0 1% 1% 0;
  }
  .list-nav.pc-col5 li:nth-child(5n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .list-nav li {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .list-nav li > span,
  .list-nav li a {
    min-height: 30px;
    border-radius: 15px;
    padding: 6px 5px;
  }
  .list-nav.sp-col2 {
    margin-bottom: -2%;
  }
  .list-nav.sp-col2 li {
    width: 49%;
    margin: 0 2% 2% 0;
  }
  .list-nav.sp-col2 li:nth-child(even) {
    margin-right: 0;
  }
}

/* リンクリスト */
.link-list {
  border-top: 1px solid #e5e5e5;
}

.link-list li {
  border-bottom: 1px solid #e5e5e5;
  line-height: 1.2;
}

.link-list li a {
  display: block;
  text-decoration: none;
}

@media screen and (min-width: 768px), print {
  .link-list li a {
    padding: 20px 30px 20px 20px;
  }
  .link-list li a:before {
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .link-list li a {
    padding: 15px 20px 15px 15px;
  }
  .link-list li a:before {
    right: 10px;
  }
}

/* ニュースリスト */
.news {
  border-top: 1px solid #e5e5e5;
}

.news li {
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}

.news li.important p {
  color: #db0000;
}

.news li.important p::after {
  content: "重要";
  display: inline-block;
  background-color: #db0000;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  border-radius: 3px;
  padding: 0 10px;
  margin-left: 10px;
}

.news li a {
  display: block;
  text-decoration: none;
}

.news li span {
  background-color: #efefef;
  border-radius: 10px;
  display: block;
  line-height: 1;
  text-align: center;
  height: 20px;
  padding: 2px 0;
}

@media screen and (min-width: 768px), print {
  .news li a {
    padding: 18px 20px 18px 200px;
  }
  .news li a:hover {
    color: #8e8e8e;
  }
  .news li span {
    color: #555;
    width: 120px;
    position: absolute;
    left: 30px;
    top: 19px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .news li a {
    padding: 20px 10px;
  }
  .news li span {
    width: 130px;
    margin-bottom: 10px;
  }
}

/* フロア番号 */
.floor-num {
  font-size: 0;
  overflow: hidden;
}

.floor-num li {
  background-color: #000;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  vertical-align: top;
  text-align: center;
  overflow: hidden;
  line-height: 1;
}

@media screen and (min-width: 768px), print {
  .floor-num {
    margin-bottom: -10px;
  }
  .floor-num li {
    border-radius: 25px;
    margin: 0 20px 10px 0;
    width: 50px;
    height: 50px;
    padding: 11px 0;
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .floor-num {
    margin-bottom: -5px;
  }
  .floor-num li {
    border-radius: 25px;
    margin: 0 10px 5px 0;
    width: 40px;
    height: 40px;
    padding: 11px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* その他パーツ
   ========================================================================== */
/* スマホ電話番号 */
.sp-tel {
  color: #000;
}

@media screen and (min-width: 768px), print {
  .sp-tel {
    pointer-events: none;
    text-decoration: none;
  }
}

/* 画像を幅100%にする */
img.img-full {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* object fit image */
img.ofi {
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

img.ofi.ofi-c {
  object-fit: contain;
  font-family: 'object-fit: contain;';
}

/* 画像PC時の幅固定 */
@media screen and (min-width: 768px), print {
  img.pc-org {
    width: auto !important;
    height: auto;
  }
}

/* ページ内リンク */
.pagelink-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.pagelink-wrap:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  position: absolute;
  left: 0;
  bottom: 0;
}

.pagelink {
  font-size: 0;
  text-align: center;
  overflow: hidden;
}

.pagelink li {
  display: inline-block;
  font-weight: bold;
  line-height: 1.2;
  font-size: 16px;
  font-size: 1.6rem;
}

.pagelink a {
  text-decoration: none;
}

.pagelink a span {
  position: relative;
}

.pagelink a span:before {
  content: '';
  border-right: 1px solid #bcbcbc;
  border-bottom: 1px solid #bcbcbc;
  height: 6px;
  width: 6px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transform: rotate(45deg);
}

@media screen and (min-width: 768px), print {
  .pagelink {
    margin-right: -150px;
  }
  .pagelink li {
    margin: 0 150px 20px 0;
  }
  .pagelink a span {
    padding-right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .pagelink {
    margin-right: -20px;
  }
  .pagelink li {
    margin: 0 20px 24px 0;
  }
  .pagelink a span {
    padding-right: 15px;
  }
}

/* キャプション */
.caption {
  color: #999;
  text-align: center;
  line-height: 1.2;
}

@media screen and (min-width: 768px), print {
  .caption {
    margin-top: 16px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .caption {
    margin-top: 10px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

/* 館内目印 */
.sct-number {
  background-color: #f8f8f8;
  border-radius: 10px;
}

.sct-number table {
  border-top: none;
}

@media screen and (min-width: 768px), print {
  .sct-number {
    padding: 65px 100px 50px;
  }
  .sct-number .sttl02 {
    margin-bottom: 25px;
  }
  .sct-number .btn-wrap {
    margin-top: 50px;
    text-align: center;
  }
  .sct-number table th,
  .sct-number table td {
    vertical-align: middle;
  }
}

@media screen and (max-width: 767px) {
  .sct-number {
    padding: 20px 30px 25px;
  }
  .sct-number .sttl02 {
    margin-bottom: 5px;
    line-height: 1.4;
    text-align: left;
  }
  .sct-number .btn-wrap {
    margin-top: 25px;
  }
  .sct-number .floor-num {
    padding: 10px 0;
  }
}

/* タブ */
.tab {
  display: flex;
  position: relative;
}

.tab:before {
  background-color: #000;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  z-index: 0;
}

.tab li {
  border: 2px solid #000;
  border-radius: 4px 4px 0 0;
  width: 49.1%;
  position: relative;
  z-index: 1;
}

.tab li:first-child {
  margin-right: 1.8%;
}

.tab li.active {
  border-color: #000 #000 #fff #000;
}

.tab li.active a {
  background-color: #fff;
  color: #000;
  cursor: default;
  pointer-events: none;
}

.tab a {
  background-color: #000;
  color: #fff;
  display: block;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.tab a:hover {
  background-color: #fff000;
  border-top: 2px solid #fff000;
  border-left: 0;
  border-right: 0;
  position: absolute;
  left: -2px;
  bottom: 0;
  width: 100.6%;
  height: auto;
  z-index: 100;
}

@media screen and (min-width: 768px), print {
  .tab a {
    padding: 21px 10px;
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .tab {
    padding: 0 !important;
    padding: 0 20px;
  }
  .tab:before {
    height: 1px;
  }
  .tab li {
    border: 1px solid #000;
    border-radius: 4px 4px 0 0;
  }
  .tab li.active {
    border-color: #000 #000 #fff #000;
  }
  .tab li.active a {
    background-color: #fff;
    border-radius: 4px 4px 0 0;
    color: #000;
    cursor: default;
    pointer-events: none;
  }
  .tab a {
    padding: 13px 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* gmap */
@media screen and (min-width: 768px), print {
  .map-box {
    padding: 0 0;
    margin-top: 70px;
  }
}

@media screen and (max-width: 767px) {
  .map-box {
    padding: 0 20px;
  }
}

.map-box.ready .map-box-inner:before {
  content: 'Now Loading…';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  animation-name: flash;
  animation-duration: .5s;
  animation-iteration-count: infinite;
  font-size: 18px;
  font-size: 1.8rem;
}

.map-box-inner {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 768px), print {
  .map-box-inner {
    padding-top: 34.3%;
  }
}

@media screen and (max-width: 767px) {
  .map-box-inner {
    padding-top: 120%;
  }
}

.gmap {
  background-color: #f7f7f7;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* slick - slider */
@media screen and (min-width: 768px), print {
  .slider-wrap h2 {
    margin-left: 40px;
  }
}

@media screen and (max-width: 767px) {
  .slider-wrap h2 {
    text-align: center;
  }
}

.slider-wrap {
  margin-bottom: 0;
}

@media screen and (min-width: 768px), print {
  .slider-wrap h2 {
    margin-left: 10px;
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .slider-wrap {
    margin-top: -50px;
  }
  .slider-wrap h2 {
    text-align: left;
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.slider-wrap .slick-counter {
  font-weight: 700;
  width: 90px;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .slider-wrap .slick-counter {
    font-size: 24px;
    font-size: 2.4rem;
    position: absolute;
    margin-bottom: 0;
    right: 200px;
    top: 0;
  }
}

@media screen and (max-width: 767px) {
  .slider-wrap .slick-counter {
    text-align: center;
    position: absolute;
    left: calc(50% - 45px);
    top: 60px;
    font-size: 20px;
    font-size: 2rem;
    margin: 0 auto;
  }
}

.slider-wrap .slick-slider {
  display: none;
}

.slider-wrap .slick-slider.slick-initialized {
  display: block;
}

.slider-wrap #slider {
  position: relative;
  opacity: 0;
  transition: opacity .5s .3s;
}

.slider-wrap #slider.slider-ready {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .slider-wrap #slider {
    margin-top: 60px;
  }
}

.slider-wrap #slider .slick-list {
  margin-top: 10px;
  position: relative;
  z-index: 9999;
}

@media screen and (min-width: 768px), print {
  .slider-wrap #slider .slick-slide {
    width: 700px;
    margin: 15px;
  }
}

.slider-wrap #slider .slick-slide img {
  margin: 0 auto;
}

.slider-wrap #slider .slick-dots li button {
  background-color: #fff;
  width: 7px;
  height: 7px;
}

.slider-wrap #slider .slick-dots li.slick-active button {
  background-color: #000;
}

@media screen and (min-width: 768px), print {
  .slider-wrap #slider .slick-dots {
    top: -55px;
    right: 100px;
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  .slider-wrap #slider .slick-dots {
    top: -60px;
  }
}

.slider-wrap #slider .slider-contents .slider-inner {
  border: 1px solid #e8e8e8;
  background-color: #fff603;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 768px), print {
  .slider-wrap #slider .slider-contents .slider-inner {
    padding: 40px 30px 45px 50px;
  }
}

@media screen and (max-width: 767px) {
  .slider-wrap #slider .slider-contents .slider-inner {
    border: none;
    padding: 40px 5% 50px;
  }
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-left {
  background-color: #fff603;
  vertical-align: middle;
}

@media screen and (min-width: 768px), print {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-left {
    padding: 70px 5px 10px;
  }
}

@media screen and (max-width: 767px) {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-left {
    width: 100%;
    padding: 70px 0;
  }
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-left .slider-box-img {
  position: relative;
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-left .slider-box-img img {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  height: 80px;
  width: auto;
}

@media screen and (max-width: 767px) {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-left .slider-box-img img {
    width: auto;
  }
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-left .slider-box-img figcaption {
  position: absolute;
  top: -20px;
  color: #fff;
  font-size: 70px;
  font-size: 7rem;
  width: 100%;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-left .slider-box-img figcaption {
    top: -10%;
  }
}

@media screen and (min-width: 768px), print {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .has-pic {
    padding-right: 240px;
  }
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-genre {
  font-size: 14px;
  font-size: 1.4rem;
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-genre .date {
  font-weight: bold;
  padding-right: 10px;
}

@media screen and (min-width: 768px), print {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-genre .date {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-genre .bg {
  background-color: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 30px;
  padding: 2px 24px;
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-ttl {
  font-weight: bold;
  margin-top: 10px;
}

@media screen and (min-width: 768px), print {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-ttl {
    line-height: 1.5;
    font-size: 20px;
    font-size: 2rem;
    padding-right: 240px;
  }
}

@media screen and (max-width: 767px) {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-ttl {
    line-height: 1.5;
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (min-width: 768px), print {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail {
    margin-top: 15px;
  }
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail li {
  color: #333;
  margin-top: 5px;
  position: relative;
  line-height: 1.3;
}

@media screen and (min-width: 768px), print {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail li {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail li:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail li {
    line-height: 1.5;
    margin-top: 7px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail li:first-child {
    margin-top: 0;
  }
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail .d-ttl {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

@media screen and (min-width: 768px), print {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail .d-ttl {
    padding-left: 8px;
  }
}

@media screen and (max-width: 767px) {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail .d-ttl {
    padding-left: 8px;
  }
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail .d-ttl:before {
  content: '';
  width: 2px;
  height: 1em;
  background-color: #b2ac02;
  position: absolute;
  left: 0;
  top: .2em;
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail .d-txt {
  display: block;
}

@media screen and (min-width: 768px), print {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail .d-txt {
    padding-left: 44px;
  }
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail .d-txt:nth-child(n+2) {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail .d-txt {
    padding-left: 50px;
  }
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail .tell-text .d-txt {
  display: block;
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail .tell-text .tel-link {
  text-decoration: none;
}

@media screen and (min-width: 768px), print {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-detail .tell-text .tel-link {
    pointer-events: none;
  }
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-pic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-pic .img-dir {
  width: 225px;
  height: 225px;
}

.slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-pic img {
  object-position: 50% 50%;
}

@media screen and (min-width: 768px), print {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-pic {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 767px) {
  .slider-wrap #slider .slider-contents .slider-inner .slider-inner-right .event-pic {
    margin-top: 15px;
  }
}

.slider-wrap #slider .slick-arrow {
  color: #000;
  text-decoration: none;
  position: absolute;
  z-index: 10;
  display: block;
  text-align: center;
  border-top: 1px solid #e5e5e5;
}

@media screen and (min-width: 768px), print {
  .slider-wrap #slider .slick-arrow {
    padding: 5px 30px 0;
    font-size: 14px;
    font-size: 1.4rem;
    top: -50px;
  }
  .slider-wrap #slider .slick-arrow.slider-arrow-prev {
    right: 300px;
  }
  .slider-wrap #slider .slick-arrow.slider-arrow-next {
    right: 100px;
  }
}

@media screen and (max-width: 767px) {
  .slider-wrap #slider .slick-arrow {
    padding: 5px 15px 0;
    font-size: 12px;
    font-size: 1.2rem;
    top: -40px;
  }
  .slider-wrap #slider .slick-arrow.slider-arrow-prev {
    left: calc(50% - 120px);
  }
  .slider-wrap #slider .slick-arrow.slider-arrow-next {
    right: calc(50% - 120px);
  }
}

/* google-search */
.gsc-input-box-focus,
.gsc-input-box-hover {
  outline: none !important;
  box-shadow: none !important;
}

.gsc-input-box {
  border: none !important;
  height: auto !important;
}

.gsc-search-button {
  background: url(/common/img/icon_search.png) no-repeat center center;
  background-size: 20px auto;
}

.gsc-search-button-v2 {
  border: none !important;
  background-color: transparent !important;
}

.gsc-search-button-v2:active, .gsc-search-button-v2:hover, .gsc-search-button-v2:focus {
  background-color: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.gsc-search-button-v2 svg {
  display: none;
}

.g-search {
  display: none;
}

@media screen and (min-width: 768px), print {
  .g-search {
    background: white;
    position: absolute;
    width: 100%;
    top: 74px;
    left: 0;
    z-index: 999;
    padding: 30px 100px;
    overflow: hidden;
  }
  .g-search.active {
    display: block;
  }
  .g-search .gsc-search-box {
    background-color: transparent;
    border: none;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: auto;
    padding: 0;
  }
  .g-search table.gsc-search-box {
    border-bottom: 1px solid #000 !important;
  }
  .g-search .gsc-input,
  .g-search .gsc-search-button {
    height: 42px;
  }
  .g-search .gsib_a {
    padding: 8px 15px;
  }
  .g-search .gsc-search-box {
    position: relative;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .input-search {
    margin-top: 40px;
  }
  .input-search .input-txt {
    padding: 5px 40px 15px 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .input-search .gsc-search-box {
    background-color: transparent;
    margin: 0 auto;
    height: auto;
    padding: 0;
    border: none;
  }
  .input-search .gsc-input,
  .input-search .gsc-search-button {
    height: 42px;
  }
  .input-search .gsib_a {
    padding: 8px 15px;
  }
  .input-search .gsc-search-box {
    position: relative;
    margin-bottom: 0;
  }
}

/* 上付き文字 */
.sup-txt {
  vertical-align: top;
  position: relative;
  top: -0.1em;
  font-size: 10px;
  font-size: 1rem;
}

/* anchor */
@media screen and (min-width: 768px), print {
  .anchor-link {
    margin-top: -74px;
    padding-top: 74px;
  }
}

@media screen and (max-width: 767px) {
  .anchor-link {
    margin-top: -60px;
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  #organizer .anchor-link {
    margin-top: -60px;
    padding-top: 90px;
  }
}

/* 文字色 */
.txt-red {
  color: #db0000;
}

/* ページャー
   ========================================================================== */
.pager {
  font-size: 0;
  line-height: 1;
  margin: 50px auto;
  text-align: center;
}

.pager li {
  display: inline-block;
  margin: 0 10px;
  height: 40px;
  width: 40px;
  position: relative;
  vertical-align: middle;
  font-size: 18px;
  font-size: 1.8rem;
}

.pager a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}

.pager a:hover {
  background-color: #f5f5f5;
}

.pager span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.pager span:before {
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.pager .pager-item-prev,
.pager .pager-item-next {
  background-color: #f5f5f5;
  font-size: 14px;
  font-size: 1.4rem;
}

.pager .pager-item-prev span,
.pager .pager-item-next span {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.pager .pager-item-prev {
  margin-right: 50px;
}

.pager .pager-item-next {
  margin-left: 50px;
}

.pager .pager-item-current {
  background-color: #f5f5f5;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .pager li {
    margin: 0 5px;
    height: 30px;
    width: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .pager .pager-item-prev,
  .pager .pager-item-next {
    font-size: 10px;
    font-size: 1rem;
  }
  .pager .pager-item-prev {
    margin-right: 5px;
  }
  .pager .pager-item-next {
    margin-left: 5px;
  }
}

/* テーブル
   ========================================================================== */
/* tbl-cmn */
.tbl-cmn {
  border-top: 1px solid #e5e5e5;
  color: #555;
  text-align: left;
  line-height: 1.3;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
}

.tbl-cmn th,
.tbl-cmn td {
  border-bottom: 1px solid #e5e5e5;
}

.tbl-cmn th {
  font-weight: bold;
}

@media screen and (min-width: 768px), print {
  .tbl-cmn th {
    padding: 18px 30px;
  }
  .tbl-cmn td {
    padding: 18px 10px;
  }
}

@media screen and (max-width: 767px) {
  .tbl-cmn th,
  .tbl-cmn td {
    padding: 18px 15px;
  }
}

.tbl-cmn-l {
  border-top: 1px solid #e5e5e5;
  color: #555;
  text-align: left;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
}

.tbl-cmn-l th,
.tbl-cmn-l td {
  border-bottom: 1px solid #e5e5e5;
  vertical-align: middle;
}

.tbl-cmn-l th {
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (min-width: 768px), print {
  .tbl-cmn-l {
    line-height: 1.75;
  }
  .tbl-cmn-l th {
    padding: 20px 10px;
  }
  .tbl-cmn-l td {
    padding: 20px 10px;
  }
}

@media screen and (max-width: 767px) {
  .tbl-cmn-l {
    line-height: 1.5;
  }
  .tbl-cmn-l th,
  .tbl-cmn-l td {
    padding: 18px 15px;
  }
}

@media screen and (max-width: 767px) {
  .sp-block {
    display: block;
  }
  .sp-block tbody,
  .sp-block tr {
    display: block;
    width: 100%;
  }
  .sp-block th,
  .sp-block td {
    display: block;
    width: 100%;
  }
  .sp-block th {
    border-bottom: none;
    padding: 10px 10px 5px;
  }
  .sp-block td {
    padding: 0 10px 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.tbl-scroll {
  border-top: 1px solid #e2e2e2;
  color: #a8a8a8;
  margin-bottom: 0 !important;
  padding: 3px 5px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .item-tbl-wrap {
    overflow-x: auto;
  }
  .item-tbl-wrap .item-tbl {
    min-width: 1000px;
  }
  .item-tbl-wrap .item-tbl th, .item-tbl-wrap .item-tbl td {
    width: auto;
  }
}

.item-tbl {
  width: 100%;
}

.item-tbl th,
.item-tbl td {
  border-bottom: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  vertical-align: middle;
}

.item-tbl th {
  padding: 20px 10px;
  background-color: #f8f8f8;
}

.item-tbl .border-r {
  border-right: 1px solid #e5e5e5;
}

.item-tbl td {
  padding: 20px 30px;
}

.item-tbl td .list-disc {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .item-tbl th {
    padding: 10px 10px;
  }
  .item-tbl td {
    padding: 10px 15px;
  }
}

/* タイトル
   ========================================================================== */
/* ページタイトル */
.main-ttl {
  color: #000;
  font-weight: bold;
  line-height: 1;
}

.main-ttl span {
  display: block;
  word-break: break-all;
}

@media screen and (min-width: 768px), print {
  .main-ttl {
    margin-bottom: 30px;
    font-size: 28px;
    font-size: 2.8rem;
  }
  .main-ttl span {
    margin-bottom: 10px;
    letter-spacing: -.05em;
    font-size: 100px;
    font-size: 10rem;
  }
}

@media screen and (max-width: 767px) {
  .main-ttl {
    margin-bottom: 15px;
    font-size: 20px;
    font-size: 2rem;
  }
  .main-ttl span {
    margin-bottom: 5px;
    font-size: 45px;
    font-size: 4.5rem;
  }
}

.main-ttl-wrap {
  text-align: center;
  overflow: hidden;
}

.main-ttl-wrap.no-bottom {
  padding-bottom: 0;
  margin-bottom: 0;
}

.main-ttl-wrap.no-bg .main-ttl,
.main-ttl-wrap.no-bg .illust {
  background-color: transparent;
}

.main-ttl-wrap.no-bg .illust {
  padding-bottom: 0;
}

@media screen and (min-width: 768px), print {
  .main-ttl-wrap.no-bg {
    padding-bottom: 100px;
  }
  .main-ttl-wrap.no-bg .main-ttl span {
    font-size: 80px;
    font-size: 8rem;
  }
}

@media screen and (max-width: 767px) {
  .main-ttl-wrap.no-bg .main-ttl {
    padding-top: 0;
  }
  .main-ttl-wrap.no-bg .main-ttl span {
    font-size: 40px;
    font-size: 4rem;
  }
}

.main-ttl-wrap.bg-yellow .main-ttl,
.main-ttl-wrap.bg-yellow .illust {
  background-color: #fff603;
}

@media screen and (min-width: 768px), print {
  .main-ttl-wrap.bg-yellow {
    padding-bottom: 100px;
  }
  .main-ttl-wrap.bg-yellow .illust {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 767px) {
  .main-ttl-wrap.bg-yellow {
    padding-bottom: 20px;
  }
}

.main-ttl-wrap.ttl-hg-low .main-ttl {
  background: none;
  padding: 0;
}

.main-ttl-wrap.ttl-hg-low .main-ttl span {
  font-weight: bold;
}

@media screen and (min-width: 768px), print {
  .main-ttl-wrap.ttl-hg-low .main-ttl {
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 50px;
    padding-bottom: 50px;
  }
  .main-ttl-wrap.ttl-hg-low .main-ttl span {
    font-size: 60px;
    font-size: 6rem;
    margin-bottom: 25px;
  }
  .main-ttl-wrap.ttl-hg-low .illust {
    padding-bottom: 0;
    background-color: transparent;
    margin-top: -25px;
  }
}

@media screen and (max-width: 767px) {
  .main-ttl-wrap.ttl-hg-low .main-ttl {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: -30px;
  }
  .main-ttl-wrap.ttl-hg-low .main-ttl span {
    margin-bottom: 15px;
  }
  .main-ttl-wrap.ttl-hg-low .illust {
    padding-bottom: 0;
    background-color: transparent;
  }
}

@media screen and (max-width: 767px) {
  .main-ttl-wrap.no-illust .main-ttl {
    border-radius: 5px;
  }
}

@media screen and (min-width: 768px), print {
  .main-ttl-wrap.ttl-bg-higher {
    padding-bottom: 0;
  }
  .main-ttl-wrap.ttl-bg-higher .illust {
    padding-bottom: 70px;
    border-radius: 0;
  }
}

.main-ttl-wrap .main-ttl,
.main-ttl-wrap .illust {
  background-color: #f2f2f2;
}

.main-ttl-wrap .main-ttl {
  padding-bottom: 25px;
  margin-bottom: 0;
}

.main-ttl-wrap .illust {
  display: block;
  margin-bottom: 0;
}

.main-ttl-wrap .lead {
  color: #000;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (min-width: 768px), print {
  .main-ttl-wrap {
    margin-top: 40px;
    padding: 0 20px 0 20px;
  }
  .main-ttl-wrap .main-ttl {
    padding-top: 120px;
    border-radius: 10px 10px 0 0;
  }
  .main-ttl-wrap .illust {
    border-radius: 0 0 10px 10px;
    padding-bottom: 130px;
  }
  .main-ttl-wrap .lead {
    margin-top: -65px;
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .main-ttl-wrap {
    padding-bottom: 50px;
  }
  .main-ttl-wrap .main-ttl {
    padding-top: 20vh;
    border-radius: 5px 5px 0 0;
  }
  .main-ttl-wrap .illust {
    border-radius: 0 0 5px 5px;
    padding-bottom: 18vh;
  }
  .main-ttl-wrap .illust img {
    width: 60px;
  }
  .main-ttl-wrap .lead {
    margin-top: -32px;
    padding: 0 7%;
    text-align: left;
    font-size: 28px;
    font-size: 2.8rem;
  }
}

/* サブタイトル */
.sttl01 {
  color: #000;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (min-width: 768px), print {
  .sttl01 {
    margin-bottom: 45px;
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .sttl01 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 20px;
    font-size: 2rem;
  }
}

.sttl02 {
  color: #000;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .sttl02 {
    margin-bottom: 45px;
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .sttl02 {
    margin-bottom: 25px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/* パンくずリスト
   ========================================================================== */
.topicpath {
  margin: 30px auto;
}

.topicpath li {
  display: inline;
  padding-left: 5px;
}

.topicpath li:before {
  border-right: 1px solid #555;
  border-top: 1px solid #555;
  content: '';
  display: inline-block;
  height: 5px;
  width: 5px;
  margin-right: 8px;
  position: relative;
  top: -1px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.topicpath li:first-child {
  padding-left: 0;
}

.topicpath li:first-child:before {
  display: none;
}

.topicpath li:last-child a {
  font-weight: bold;
  pointer-events: none;
  text-decoration: none;
}

@media screen and (min-width: 768px), print {
  .topicpath {
    position: relative;
    margin: 30px auto;
    max-width: 2200px;
    padding: 0 100px;
  }
  .topicpath li {
    list-style-type: none;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 767px) {
  .topicpath li {
    font-size: 10px;
    font-size: 1rem;
  }
}

/* Webフォント
   ========================================================================== */
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 400;
  src: url("/common/css/fonts/NotoSansCJKjp/NotoSansCJKjp_Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 700;
  src: url("/common/css/fonts/NotoSansCJKjp/NotoSansCJKjp_Bold.woff") format("woff");
  font-display: swap;
}

/* キーフレーム
   ========================================================================== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-15%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(15%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInNormal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes flash {
  from {
    opacity: .15;
  }
  50% {
    opacity: .7;
  }
  to {
    opacity: .15;
  }
}

/* Article Editor
   ========================================================================== */
.ve > * {
  margin-bottom: 30px;
}

.ve > *:first-child {
  margin-top: 0;
}

.ve > *:last-child {
  margin-bottom: 0;
}

.ve h3 {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.ve .image-wrap {
  display: block;
}

.ve .image-wrap:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.ve .image-wrap .img {
  text-align: center;
  margin-bottom: 30px;
}

.ve .image-wrap .img img {
  max-width: 1000px;
  width: 100%;
  height: auto;
}

.ve .image-wrap .img-left {
  float: left;
  margin-right: 80px;
}

.ve .image-wrap .img-right {
  float: right;
  margin-left: 80px;
}

.ve .image-wrap .img-center {
  text-align: center;
}

.ve .link-wrap a {
  position: relative;
}

.ve .link-wrap a:before {
  content: '';
  border-top: 1px solid #bcbcbc;
  border-right: 1px solid #bcbcbc;
  height: 6px;
  width: 6px;
  position: absolute;
  top: 9px;
  right: -12px;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .ve > * {
    margin-bottom: 20px;
  }
  .ve > *:first-child {
    margin-top: 0;
  }
  .ve > *:last-child {
    margin-bottom: 0;
  }
  .ve h3 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .ve h3 br {
    display: none;
  }
  .ve p {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .ve .image-wrap .img {
    margin-bottom: 20px;
  }
  .ve .image-wrap .img-left {
    float: none;
    margin-right: 0;
  }
  .ve .image-wrap .img-right {
    float: none;
    margin-left: 0;
  }
  .ve .link-wrap a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   05. Responisive
   ========================================================================== */
/* display
   ========================================================================== */
.block {
  display: block;
}

.sp-item {
  display: none;
}

.pc-block {
  display: block;
}

@media screen and (max-width: 767px) {
  .sp-item {
    display: block;
  }
  .pc-item {
    display: none !important;
  }
  .pc-block {
    display: inline;
  }
  .sp-block {
    display: block;
  }
}
