<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
/*共通設定・共通パーツ ////////////////////////////////////////////////////////*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  line-height: 1.5;
  font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #272727;
}
/*文字サイズ*/
@media (min-width: 1025px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 90%;
  }
}
/*PCとスマホの表示・非表示設定*/
@media (min-width: 1025px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media (max-width: 1024px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*コンテンツ幅*/
.contents {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .contents {
    padding: 0 4%;
  }
}
/*画像*/
img {
  max-width: 100%;
  height: auto;
}
/*リンク*/
a {
  color: inherit;
  text-decoration: none;
}
/*余白*/
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
/*文字装飾*/
strong, .bold {
  font-weight: bold;
}
.fs2 {
  font-size: 2rem;
}
.fs_small {
  font-size: 0.85rem;
}
/*文字配置*/
.txa_center {
  text-align: center;
}
@media (min-width: 1025px) {
  .txa_center_pc {
    text-align: center;
  }
}
/*見出し*/
h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.ttl_line {
  position: relative;
  padding: 0 45px;
  text-align: center;
}
.ttl_line:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #000;
}
.ttl_line span {
  position: relative;
  padding: 0 1em;
  background: #fff;
  white-space: nowrap;
}
.bg_black .ttl_line span {
  background: #161218;
}
.bg_black .ttl_line:before {
  background: #fff;
}
.ttl_bgb {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 0.3rem 0.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 599px) {
  h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
}
/*ボタン設定*/
.btn a {
  display: block;
  padding: 10px 20px;
  font-weight: bold;
}
.btn {
  border-radius: 999px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: left 20px center;
  width: 320px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.btn.center {
  margin-right: auto;
  margin-left: auto;
}
.btn_r {
  border: 3px solid #d61719;
  background-image: url("images/icon_darts_r.png");
}
.btn_r a {
  color: #d61719;
}
.btn_p {
  border: 3px solid #f41b68;
  background-image: url("images/icon_darts_p.png");
}
.btn_p a {
  color: #f41b68;
}
.btn_w {
  border: 3px solid #fff;
  background-image: url("images/icon_darts_w.png");
}
.btn_w a {
  color: #fff;
}
/*レイアウト設定*/
.flex {
  display: flex;
  flex-wrap: wrap;
}
.col4 {
  align-items: center;
}
.col2, .col3, .col4, .col5 {
  justify-content: space-between;
}
.col2 &gt; div, .col2 &gt; li {
  flex: 0 0 49.0%;
}
.col3 &gt; div, .col3 &gt; li {
  flex: 0 0 33.0%;
  margin-bottom: 10px;
}
.col4 &gt; div, .col4 &gt; li {
  flex: 0 0 25.0%;
  margin-bottom: 10px;
}
.col5 &gt; div, .col5 &gt; li {
  flex: 0 0 20.0%;
}
@media (max-width: 599px) {
  .col2 &gt; div, .col2 &gt; li {
    flex: 0 0 100%;
  }
  .col2 &gt; div:not(:last-of-type), .col2 &gt; li:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .col3 &gt; div, .col3 &gt; li, .col4 &gt; li {
    flex: 0 0 49.0%;
  }
  .col5 &gt; div:not(:last-of-type), .col5 &gt; li:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
/*各ブロック設定*/
/*テーブル*/
.table_a table {
  width: 100%;
  text-align: left;
}
.table_a tr {
  border: 1px solid #707070;
}
.table_a th {
  background-color: #F6F6F6;
}
.table_a a {
  text-decoration: underline;
}
.table_a th, .table_a td {
  padding: 0.5rem 1rem;
  border: 1px solid #707070;
}
.table_b table {
  width: 100%;
}
.table_b tr {
  border-bottom: 1px solid #E9F1F8;
}
.table_b th {
  text-align: left;
  width: 25%;
}
.table_b th, .table_b td {
  padding: 0.5rem 1rem;
}
.table_c tr {
  border-bottom: 1px solid #E9F1F8;
}
.table_c th {
  color: #2C72BA;
  font-weight: bold;
  text-align: left;
}
@media (max-width: 520px) {
  .table_a table {
    width: auto;
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .table_c th, .table_c td, .table_b_sp100 th, .table_b_sp100 td {
    display: block;
    width: 100%;
  }
  .table_c th {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  .table_c td, .table_b_sp100 td {
    margin-bottom: 1rem;
  }
}
@media (min-width: 960px) {
  .table_c th, .table_c td {
    padding: 1rem;
  }
}
/*ヘッダー・メイン画像 ////////////////////////////////////////////////////////*/
header {
  color: #fff;
}
.header_logo {
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}
.header_logo a {
  display: block;
}
.top_header {
  position: relative;
  width: 100%;
  height: 78vh; /* ヘッダー全体を画面いっぱいに表示 */
  overflow: hidden;
}
.top_header video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1; /* 動画を背景として表示 */
}
.header_content {
  position: relative;
  z-index: 1; /* 動画の上に表示されるように調整 */
}
.top_mv {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.sub_header {
  position: relative;
  background-image: url("images/sub_bg.png");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  height: 40vh;
}
.sub_header .header_logo {
  width: 150px;
}
.sub_ttl {
  width: 100%;
  margin-top: 40px;
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.header_sns {
  font-size: 0.9rem;
  padding: 20px;
}
.header_sns li {
  display: inline-block;
  margin-right: 10px;
}
.header_nav_center {
  display: flex;
  justify-content: center;
}
.top_header .header_nav_center {
  color: #fff;
}
.sub_header .header_nav_center {
  color: #fff;
  margin-top: 20px;
}
.header_nav_center ul {
  margin: 0 auto !important;
}
.header_nav_center li {
  padding: 0 20px !important;
}
.header_nav_center, .header_nav_l, .header_nav_r {
  font-size: 20px;
  font-family: "Agdasima", sans-serif;
  font-weight: 700;
}
.header_nav_l, .header_nav_r {
  width: 50.0%;
  position: absolute;
}
.header_nav_l {
  left: 0;
  text-align: right;
}
.header_nav_r {
  right: 0;
  text-align: left;
}
.header_nav ul {
  margin: 0 180px;
}
.header_nav li {
  display: inline-block;
  border-right: 1px solid #fff;
  padding: 0 10px;
}
/*.top_header .header_nav_center li {
  border-right: 1px solid #292929;
}*/
.sub_header .header_nav_center li {
  border-right: 1px solid #fff;
}
.header_nav li:last-of-type {
  border-right: none;
}
.header_nav_contact {
  width: 128px;
  height: 128px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #d61719;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 0.85rem;
}
.header_nav_contact img {
  display: block;
  margin: 0 auto 16px;
}
@media (max-width: 1300px) {
  .sub_header {
    height: 30vh;
  }
  .sub_ttl {
    padding-top: 150px;
  }
  /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
  .openbtn {
    /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    position: relative;
    background: #d61719;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
  }
  /*ボタン内側*/
  .openbtn .openbtn-area {
    transition: all .6s; /*アニメーションの設定*/
    width: 50px;
    height: 50px;
  }
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  /*activeクラスが付与されると .openbtn-areaが360度回転し、その中の線が回転して×に*/
  .openbtn.active .openbtn-area {
    transform: rotate(360deg);
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: rgba(0, 0, 0, 0.77);
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    top: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .header_nav_center, .header_nav_l, .header_nav_r, .header_nav_contact {
    display: none;
  }
}
@media (max-width: 599px) {
  .top_mv {
    padding-bottom: 30px;
  }
  .header_logo {
    width: 130px;
  }
  .header_sns {
    display: none;
  }
  .sub_header .header_logo {
    width: 90px;
  }
  .sub_ttl {
    padding-top: 0;
    font-size: 2.0rem;
  }
}
/*フッター ////////////////////////////////////////////////////////*/
footer {
  color: #fff;
  background-color: #161218;
}
footer .col3 {
  padding: 50px 0 30px;
}
footer .col5 li {
  text-align: center;
}
.footer_logo {
  text-align: center;
  margin: 50px 0 30px;
}
.footer_nav ul {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}
.page footer .gmap, .page footer .mapshop, .single footer .gmap, .single footer .mapshop, .blog footer .gmap, .blog footer .mapshop, .archive footer .gmap, .archive footer .mapshop {
  display: none;
}
.home footer .gmap, .home footer .mapshop {
  display: block !important;
}
.copy {
  background-color: #d61719;
  padding: 10px;
  text-align: center;
}
@media (max-width: 1024px) {
  .bottom-sticky-nav {
    height: 60px;
    position: fixed;
    display: block;
    background: #ffffff;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  .ScrollTop {
    opacity: 0;
    transition: all 0.65s;
  }
  .ScrollTop.isActive {
    opacity: 1;
    transition: all 0.65s;
  }
  .bottom-sticky-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
  }
  .bottom-sticky-nav ul li {
    flex: 1;
    font-weight: bold;
    background-repeat: no-repeat;
    background-position: left 30px center;
  }
  .bottom-sticky-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    height: 60px;
    color: #fff;
    line-height: 40px;
  }
  .bottom-sticky-nav li img {
    width: auto;
    height: 15px;
    margin-bottom: 5px;
  }
  .bottom-sticky-nav ul li a:hover, .bottom-sticky-nav ul li a:focus {
    text-decoration: none;
  }
  .bottom-sticky-nav ul li a i {
    font-size: 20px;
    margin-bottom: 0.3rem;
  }
  .bottom-sticky-nav ul li a span {
    font-size: 12px;
    line-height: 1.5;
  }
  .bottom-sticky-nav li:first-of-type {
    background-color: #17246e;
  }
  .bottom-sticky-nav li:last-of-type {
    background-color: #d61719;
  }
  footer .col3 li {
    flex: 0 0 32.0%;
  }
  footer .col5 li {
    flex: 0 0 19.0%;
  }
}
@media (max-width: 599px) {
  footer .col3 li {
    flex: 0 0 100%;
    text-align: center;
  }
  footer .col3 li:not(:last-of-type) {
    margin-bottom: 10px;
  }
  footer .col5 li {
    flex: 0 0 49.0%;
  }
  .mapshop {
    flex-wrap: wrap;
  }
}
/*サイドメニュー ////////////////////////////////////////////////////////*/
.sidemenu {
  position: fixed;
  right: 0;
  bottom: 20px;
  background: rgba(0, 0, 0, 0.9);
  padding: 20px;
  color: #fff;
}
.sidemenu img {
  display: block;
  margin: 0 auto;
}
.sidemenu li {
  font-size: 1.1rem;
}
.sidemenu li a {
  display: block;
}
.sidemenu_ttl, .sidemenu_snsttl {
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
}
.sidemenu_ttl {
  font-size: 1.5rem;
}
.sidemenu_snsttl {
  font-size: 1.3rem;
}
.sidemenu_mail, .sidemenu_tel {
  background-repeat: no-repeat;
  background-position: left 30px center;
  -webkit-background-size: 30px;
  background-size: 30px;
}
.sidemenu_mail span, .sidemenu_tel span {
  padding-left: 60px;
}
.sidemenu_mail {
  background-color: #d61719;
  padding: 16px;
  margin-bottom: 10px;
  background-image: url("images/icon_mail.png");
}
.sidemenu_tel {
  background-color: #17246E;
  padding: 16px;
  background-image: url("images/icon_tel.png");
}
.sidemenu_instagram img, .sidemenu_twitter img, .sidemenu_line img {
  padding: 10px;
  height: 50px;
}
.sidemenu_instagram {
  background-color: #BF3655;
}
.sidemenu_twitter {
  background-color: #3296D4;
}
.sidemenu_line {
  background-color: #05c756;
  margin-top: 5px;
}
.sidemenu_sns {
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 1024px) {
  .sidemenu {
    display: none;
  }
}
/*トップページコンテンツ ////////////////////////////////////////////////////////*/
body.home {
  background: #242424;
}
.background {
  background: linear-gradient(180deg, #242424 0%, #242424 10%, #fff 50%, #fff 100%);
}
.top_wedding {
  color: #f41b68;
  font-weight: bold;
}
.top_news {
  margin-top: 30px;
  background: #242424;
}
.top_news h2 {
  text-align: center;
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #fff;
}
.top_about h2 {
  font-size: 2.5rem;
  text-shadow: 1px 3px 1px #808080;
  margin-bottom: 2rem;
}
.pinkkakomi {
  background-color: #f41b68;
  color: #fff;
  text-align: center;
  display: inline-block;
  font-size: 1.5rem;
  margin-right: 10px;
  padding: 0 10px;
}
.top_wedding h2, .top_rental h2 {
  font-size: 3.0rem;
  margin-bottom: 1rem;
}
.top_rental {
  background-color: #17246E;
  color: #fff;
  padding: 60px 0;
  background-image: url("images/top_rental_bg.png");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}
.bnr_darts-sports .contents {
  position: relative;
  margin-top: -100px;
  background-color: #242424;
  padding: 30px;
}
.news_img {
  width: 183px;
  height: 183px;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  margin-bottom: 10px;
}
.home .news_date {
  color: #fff;
}
.news_date {
  font-size: 0.8rem;
  margin-right: 10px;
}
.news_category {
  background-color: #000;
  color: #fff;
  font-size: 0.75rem;
  padding: 0 10px;
}
.news_category.news {
  background-color: #000;
}
.news_category.event {
  background-color: #d71518;
}
.top_about {
  color: #fff;
  font-weight: bold;
  background-color: #d61719;
  /*  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);*/
  padding: 200px;
  background-image: url("images/hips.png");
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
}
.top_about .contents {
  padding-left: 400px;
}
.top_wedding {
  background-image: url("http://www.dijest.co.jp/wordpress/wp-content/uploads/2021/12/top_wedding_bg.png");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  padding-bottom: 100px;
}
.slider { /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 30px auto;
}
.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 10px;
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev, .slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #f41b68; /*矢印の色*/
  border-right: 2px solid #f41b68; /*矢印の色*/
  height: 15px;
  width: 15px;
}
.slick-prev { /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}
.slick-next { /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}
.mapshop p:first-of-type {
  font-size: 2.8rem;
  margin-right: 15px;
}
.mapshop {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .top_header {
    height: 50vh;
  }
  .bnr_darts-sports {
    padding: 20px;
  }
  .top_news {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .top_news .col5 li:last-of-type {
    display: none;
  }
  .news_img {
    width: 160px;
    height: 160px;
  }
  .top_about {
    /*-webkit-clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);*/
    background-position: bottom left -80px;
    -webkit-background-size: 400px;
    background-size: 400px;
    padding: 50px;
  }
  .top_about .contents {
    padding-left: 0;
    text-align: right;
  }
  .top_wedding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 599px) {
  .bnr_darts-sports .contents {
    padding: 20px;
  }
  .top_news .col5 li:nth-of-type(3), .top_news .col5 li:nth-of-type(4) {
    display: none;
  }
  .top_news h2, .top_about h2, .top_wedding h2, .top_rental h2 {
    font-size: 1.5rem;
  }
  .top_news .col5 {
    justify-content: space-around;
  }
  .top_about {
    padding: 50px 10px;
    background-position: bottom center;
    -webkit-background-size: 400px;
    background-size: 400px;
  }
  .top_about .contents {
    padding-bottom: 450px;
    text-align: left;
  }
  .top_wedding h2 span:last-of-type {
    margin-bottom: 10px;
  }
  .top_wedding {
    padding-top: 30px;
    padding-bottom: 30px;
    background-position: top right -300px;
  }
  .pinkkakomi {
    margin-bottom: 5px;
    font-size: 1.3rem;
  }
  .top_rental .col3 &gt; li {
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .news_main .news_date {
    display: block;
    margin-top: 5px;
  }
}
/*サブページコンテンツ ////////////////////////////////////////////////////////*/
.sub_main &gt; section {
  padding: 2rem 0;
}
.sub_main &gt; section:last-of-type {
  padding-bottom: 4rem;
}
.gmap {
  clear: both;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50%; /*比率をお好みで*/
  margin-bottom: 20px;
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*ぱんくずリスト*/
.cp_breadcrumb {
  margin: 1rem auto 0;
  font-size: 0.9rem;
}
.cp_breadcrumb .breadcrumbs {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.cp_breadcrumb li {
  display: inline-block;
  position: relative;
  padding-right: calc(16px + 8px);
  margin-right: 8px;
}
.cp_breadcrumb li::before {
  content: '›';
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  font-size: 1em;
  color: inherit;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cp_breadcrumb li:not(:last-child) {
  color: #C1C1C1;
}
.cp_breadcrumb li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.cp_breadcrumb li:last-child::before {
  content: normal;
}
.annai h2 + p {
  padding-bottom: 30px;
}
.annai .col2 {
  margin-top: 20px;
}
.annai .col2 &gt; li:first-of-type img {
  display: block;
  margin-right: auto;
}
.annai .col2 &gt; li:last-of-type img {
  display: block;
  margin-left: auto;
}
.annai .col2 p {
  padding: 0.5rem;
}
.bg_black {
  background-color: #161218;
  color: #fff;
  margin: 2rem 0;
}
.bg_black .contents {
  padding: 2rem;
}
.mdtxt {
  display: flex;
  margin: 20px 0;
  align-items: center;
}
.mdtxt div:first-of-type, .news .mdtxt a &gt; div:first-of-type {
  margin-right: 20px;
}
.mdtxt_img {
  flex: 1;
}
.mdtxt_txt {
  flex: 2;
}
.mdtxt_txt_ttl {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.comnt {
  display: flex;
  margin: 20px 0;
  align-items: center;
}
.comnt_img {
  flex: 1;
}
.comnt_txt {
  flex: 3;
}
.comnt &gt; div:first-of-type {
  margin-right: 20px;
}
.setubi {
  background-repeat: no-repeat;
  background-position: 50% 300px;
  -webkit-background-size: cover;
  background-size: cover;
}
.setubi_darts {
  background-image: url("images/darts_bg.png");
}
.setubi_sports {
  background-image: url("images/sports_bg.png");
}
.setubi_wedding {
  background-image: url("images/wedding_bg.png");
  margin-bottom: 30px;
}
.drinkmenu th {
  width: 80%;
}
.drinkmenu_ttl {
  font-weight: bold;
  border-bottom: none !important;
}
.drinkmenu_ttl &gt; th {
  padding: 1.5rem 0 1.5rem 1rem;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(151, 151, 151, 0.40);
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
  letter-spacing: 2px;
}
.food_info {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.food_info span {
  display: block;
  padding: 0.3rem;
}
.partymenu .col2 &gt; div {
  margin-bottom: 30px;
}
.contact_box {
  border: 3px solid #CECECE;
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
}
.contact_box_tel {
  font-size: 2.5rem;
  font-weight: bold;
}
.faq dl {
  background-color: #F6F6F6;
  padding: 2rem;
}
.faq dl {
  margin-top: 2rem;
}
.faq dt {
  margin-bottom: 1rem;
}
.faq dt, .faq dd {
  position: relative;
  padding-left: 50px;
}
.faq dt:before, .faq dd:before {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.faq dt:before {
  content: url("images/icon_q.png");
}
.faq dd:before {
  content: url("images/icon_a.png");
}
.form-control {
  padding: 8px;
  width: 100%;
  color: #000;
  border: 0;
  border: 1px solid #C4C4C4;
  font-size: 16px;
}
.wpcf7-not-valid-tip, .screen-reader-response {
  font-weight: bold;
  font-size: 0.85rem;
  display: block;
  color: #D51719;
}
.wpcf7-list-item label {
  display: block;
}
.wpcf7-response-output {
  text-align: center;
  font-weight: bold;
  padding: 0 0 30px;
  color: #D51719;
}
form .table_b td textarea {
  vertical-align: top;
}
form .table_b {
  max-width: 1000px;
  margin: 1rem auto;
}
.hissu, .nini {
  display: inline-block;
  color: #fff;
  padding: 3px 10px;
  text-align: center;
  font-size: 0.85rem;
  margin-right: 0.5rem;
}
.hissu {
  background-color: #D51719;
}
.nini {
  background-color: #D6D6D6;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  padding: 10px 20px;
  color: #d61719;
  font-weight: bold;
}
.news_main, .news_side {
  padding: 2rem 0 4rem;
}
.news_main .mdtxt {
  align-items: flex-start;
  border-bottom: 1px solid #ccc;
  padding: 20px;
  margin: 0;
}
.news_main .news_category {
  margin-right: 10px;
}
.home .news_ttl {
  color: #fff;
}
.news_ttl {
  padding: 10px 0;
}
.news_main {
  margin-right: 40px;
}
.news_main {
  width: 760px;
}
.news_side {
  width: 200px;
}
.news_side ul {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.news_side li {
  line-height: 1.8;
}
.news_side a {
  text-decoration: underline;
}
/* ページネーション（共通） */
.nav-links {
  text-align: center;
  padding-top: 30px;
  margin-bottom: 5rem;
}
.page-numbers {
  display: inline-block;
  padding: 6px 10px;
  margin: 0 3px;
  background-color: #F2F2F2;
}
a.page-numbers:hover {
  background-color: #161218;
  color: #FFF;
}
.page-numbers.current {
  background-color: #161218;
  color: #FFF;
}
/* primary - single */
/* primary - archive */
/* archive - ページネーション */
.pagination {
  margin: 30px 0;
}
.pagination .screen-reader-text {
  display: none;
}
.pagination {
  margin: 30px 0;
}
.pagination .screen-reader-text {
  display: none;
}
@media (max-width: 1024px) {
  .news_main, .news_side {
    flex: 0 0 100%;
  }
  .news_main .mdtxt_img {
    text-align: center;
  }
}
@media (max-width: 599px) {
  .mdtxt {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .mdtxt_img, .mdtxt {
    flex: 0 0 100%;
  }
  .mdtxt_img img {
    display: block;
    margin: 0 auto;
  }
  .mdtxt_txt_ttl {
    margin: 10px 0;
  }
  .comnt {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .comnt_img, .comnt_txt {
    flex: 0 0 100%;
  }
  .comnt_txt {
    margin-bottom: 10px;
  }
  .comnt_img {
    text-align: center;
  }
}
.attention {
  color: #454545;
  font-size: 0.85em;
}
@media (min-width: 1025px) {
  .attention {
    text-align: center;
  }
}
.dartprice-table {
  margin-top: 20px;
}
.dartprice-table p:first-child {
  font-weight: bold;
  font-size: 1.1rem;
}
.dartprice-table table {
  margin: 10px 0;
  width: 100%;
  border: 1px solid #fff;
  font-size: 1.1rem;
}
.dartprice-table th {
  vertical-align: middle;
  text-align: center;
  border: 1px solid #fff;
  padding: 10px;
}
.dartprice-table td {
  border: 1px solid #fff;
  padding: 10px;
  white-space: nowrap;
}</pre></body></html>