@charset "UTF-8";
@media (min-width: 768px) {
  .is-hidden_pc {
    display: none;
  }
}
@media (max-width: 767px) {
  .is-hidden_sp {
    display: none;
  }
}
.u-txt_left {
  text-align: left !important;
}

.u-txt_center {
  text-align: center !important;
}

.u-txt_right {
  text-align: right !important;
}

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

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

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

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

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

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

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

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

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

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

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

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

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

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

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

.post_content {
  overflow: auto;
}
.post_content h1,
.post_content h2,
.post_content h3,
.post_content h4,
.post_content h5,
.post_content h6 {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.post_content h1:not(:first-child),
.post_content h2:not(:first-child),
.post_content h3:not(:first-child),
.post_content h4:not(:first-child),
.post_content h5:not(:first-child),
.post_content h6:not(:first-child) {
  margin-top: 1.5em;
}
.post_content h1 {
  font-size: 3.4rem;
}
.post_content h2 {
  font-size: 2.6rem;
}
.post_content h3 {
  font-size: 2rem;
}
.post_content h4 {
  font-size: 1.8rem;
}
.post_content p {
  margin-bottom: 1em;
}
.post_content ul {
  margin-bottom: 1em;
}
.post_content ul li {
  margin-left: 1em;
  list-style: disc;
}
.post_content ol {
  margin-bottom: 1em;
}
.post_content ol li {
  margin-left: 1em;
  list-style: decimal;
}
.post_content blockquote {
  margin-bottom: 1em;
  padding: 10px 20px;
  background: #EEE;
}
.post_content blockquote *:last-child {
  margin-bottom: 0;
}
.post_content strong {
  font-weight: bold;
}
.post_content em {
  font-style: italic;
}
.post_content a {
  text-decoration: underline;
}
.post_content code {
  font-family: monospace;
}
.post_content figure {
  margin-bottom: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.post_content figure figcaption {
  font-size: 1.2rem;
  text-align: center;
}

a {
  color: inherit;
  text-decoration: underline;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
a img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
a:hover {
  opacity: 0.7;
}

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

table {
  width: 100%;
}
@media (max-width: 767px) {
  table {
    display: block;
  }
  table tbody,
table tr,
table th,
table td {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    width: 100% !important;
  }
}

.bold {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic", Meiryo, sans-serif;
  font-weight: bold;
}

.flex > .flex--img {
  text-align: center;
}
.flex .flex-shrink {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .flex.flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex.align-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flex.align-items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .flex.align-items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .flex.justify-content-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .flex.justify-content-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .flex.justify-content-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .flex.justify-content-evenly {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .flex.flex-directio-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

mark {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ff0));
  background: linear-gradient(transparent 60%, #ff0 60%);
}

@media (min-width: 768px) {
  .is-txt_center-pc {
    text-align: center !important;
  }
}
.txt--kome {
  font-size: 1.3rem;
  text-indent: -1em;
  margin-left: 1em;
}
@media (max-width: 767px) {
  .txt--kome {
    font-size: 1.2rem;
  }
}

.ttl_normal {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .ttl_normal {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.lst_disc li {
  padding-left: 30px;
  position: relative;
}
.lst_disc li:before {
  content: "";
  border: 4px solid #ff0;
  border-radius: 50px;
  height: 12px;
  width: 12px;
  position: absolute;
  left: 0;
  top: 5px;
}

@media (max-width: 767px) {
  .eyecatch--img {
    width: 100%;
  }
}

.breadcrumbs {
  padding: 5px 0;
  background: #DFEEFF;
}
.breadcrumbs li {
  display: inline-block;
  line-height: 1;
}
.breadcrumbs li::before {
  display: inline-block;
  vertical-align: top;
  content: "＞";
}
.breadcrumbs li:first-child::before {
  content: normal;
}

.page-numbers {
  font-weight: bold;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}
.page-numbers.current {
  border-bottom: 1px solid #121212;
}
@media (max-width: 767px) {
  .page-numbers {
    font-size: 1.6rem;
  }
}

.pagination:empty {
  display: none;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Arial, YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-size: 1.5em;
  background-color: #FFE731;
  line-height: 1.6;
  color: #121212;
}
@media (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

.wrap {
  min-width: 1200px;
  margin: auto;
}
@media (max-width: 767px) {
  .wrap {
    width: 100%;
    min-width: auto;
    min-width: initial;
  }
}

#container {
  width: 1000px;
  margin: 60px auto 0;
}
@media (max-width: 767px) {
  #container {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }
}

main:not(.column_one) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  main {
    padding: 0 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 769px) and (orientation: portrait) {
  main {
    min-height: 95vh;
  }
}

#contents {
  margin-top: 50px;
  width: 800px;
}
@media (max-width: 767px) {
  #contents {
    margin-top: 40px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  aside {
    margin-top: 10px;
    margin-left: 50px;
    width: 300px;
  }
}
@media (max-width: 767px) {
  aside {
    margin-top: 40px;
  }
}
aside ul {
  background-color: #fff;
  border-radius: 10px;
  padding: 0 5px;
}
aside ul li a {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  /* R04.10.21変更 */
  /* padding: 15px 10px 15px 70px; */
  text-decoration: none;
}

/* R04.10.21追加 */
aside ul li a span {
  display: block;
  padding: 15px 10px 15px 70px;
  background-repeat: no-repeat;
  background-position: center left 15px;
  background-size: 40px;
}


@media (max-width: 767px) {
  aside ul li a {
    /* R04.10.21変更 */
    /* background-position: center left 7px !important; */
    /* background-size: 30px !important; */
    font-size: 1.5rem;
    /* padding: 12px 7px 12px 45px; */
  }
  
  /* R04.10.21追加 */
  aside ul li a span {
    padding: 12px 7px 12px 45px;
    background-position: center left 7px !important;
    background-size: 30px !important;
  }
}
aside ul li + li {
  border-top: 1px solid #707070;
}
aside ul li.cat-item-3 a {
  background: url(../img/common/ico_gourmet.png) no-repeat center left 15px/40px;
}
aside ul li.cat-item-4 a {
  background: url(../img/common/ico_shopping.png) no-repeat center left 15px/40px;
}
aside ul li.cat-item-5 a {
  background: url(../img/common/ico_health.png) no-repeat center left 15px/40px;
}
aside ul li.cat-item-6 a {
  background: url(../img/common/ico_entertainment.png) no-repeat center left 15px/40px;
}
aside ul li.cat-item-7 a {
  background: url(../img/common/ico_lodging.png) no-repeat center left 15px/40px;
}
aside ul li.cat-item-8 a {
  background: url(../img/common/ico_other.png) no-repeat center left 15px/40px;
}

.totop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .totop {
    width: 44px;
    height: 44px;
  }
}

header {
  background-color: #121212;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 10px;
}
@media (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    padding: 10px;
    z-index: 9999;
  }
  header .logo img {
    width: 100px;
  }
}

@media (min-width: 768px) {
  #js-gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  #js-gnav {
    margin-top: 15px;
  }
}
@media (min-width: 768px) {
  #js-gnav li + li {
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  #js-gnav li + li {
    margin-top: 1px;
  }
}
#js-gnav li a {
  background-color: #fff;
  border-radius: 8px;
  color: #121212;
  font-weight: bold;
  width: 160px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
@media (max-width: 767px) {
  #js-gnav li a {
    border-radius: 0;
    width: 100%;
    height: auto;
    padding: 10px;
  }
}
#js-gnav li.info a {
  background-color: #FFE731;
}

.gnav_btn {
  position: fixed;
  top: 2px;
  right: 10px;
  z-index: 100;
  display: block;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: transparent;
  border: 0;
}
@media (min-width: 768px) {
  .gnav_btn {
    display: none;
  }
}

.gnav_btn--line {
  position: absolute;
  left: 15%;
  display: block;
  width: 70%;
  height: 3px;
  background: #FFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gnav_btn--line:first-child {
  top: 23%;
}
.gnav_btn--line:nth-child(2) {
  top: 48%;
  opacity: 1;
}
.gnav_btn--line:last-child {
  top: 72%;
}

.gnav_btn.is-open .gnav_btn--line {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.gnav_btn.is-open .gnav_btn--line:first-child {
  top: 48%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.gnav_btn.is-open .gnav_btn--line:nth-child(2) {
  display: none;
  opacity: 0;
}
.gnav_btn.is-open .gnav_btn--line:last-child {
  top: 48%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#js-gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  #js-gnav {
    display: none;
  }
}

#mv-page {
  background: url(../img/common/mv_page.jpg) no-repeat center center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 400px;
}
#mv-page h1 {
  background-color: #121212;
  color: #fff;
  font-weight: bold;
  font-size: 2.5rem;
  padding: 10px 20px;
  min-width: 250px;
  text-align: center;
}
@media (max-width: 767px) {
  #mv-page {
    height: 150px;
  }
  #mv-page h1 {
    font-size: 1.8rem;
    padding: 5px 15px;
  }
}

#pankuzu {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px auto;
  width: 1000px;
}
#pankuzu li {
  position: relative;
}
#pankuzu li + * {
  margin-left: 0.8em;
  padding-left: 1.3em;
}
#pankuzu li + *::before {
  content: ">";
  position: absolute;
  left: 0;
}
#pankuzu li a {
  text-decoration: none;
}
@media (max-width: 767px) {
  #pankuzu {
    font-size: 1.2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }
}

.box_white {
  background: #fff;
  padding: 50px 70px;
}
@media (max-width: 767px) {
  .box_white {
    padding: 50px 20px;
  }
}

@media (min-width: 768px) {
  .partner--lst {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .partner--lst {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 20px;
  }
}
.partner--lst .partner--llst-item {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 8px 8px 6px -5px rgba(0, 0, 0, 0.16);
          box-shadow: 8px 8px 6px -5px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.partner--lst .partner--llst-item a {
  text-decoration: none;
}
.partner--lst .partner--llst-item h3 {
  font-weight: bold;
}
.partner--lst .partner--llst-item .address {
  font-size: 1.3rem;
}
.partner--lst .partner--llst-item .partner--llst-img {
  height: 150px;
}
.partner--lst .partner--llst-item .partner--llst-img img {
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 767px) {
  .partner--lst .partner--llst-item .partner--llst-img {
    height: 100px;
  }
  .partner--lst .partner--llst-item .partner--llst-img img {
    height: 100px;
  }
}
.partner--lst .partner--llst-item .partner--llst-txt {
  padding: 15px;
}
.partner--lst .partner--llst-item .partner--category span {
  display: inline-block;
  border-radius: 3px;
  font-size: 1.1rem;
  padding: 0 10px;
  margin: 2px;
}
.partner--lst .partner--llst-item .partner--category span.gourmet {
  background-color: #FFCC66;
}
.partner--lst .partner--llst-item .partner--category span.shopping {
  background-color: #FF6699;
}
.partner--lst .partner--llst-item .partner--category span.health {
  background-color: #CC66FF;
}
.partner--lst .partner--llst-item .partner--category span.entertainment {
  background-color: #6698FF;
}
.partner--lst .partner--llst-item .partner--category span.lodging {
  background-color: #66FFCB;
}
.partner--lst .partner--llst-item .partner--category span.other {
  background-color: #99FF66;
}

.page-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
}
.page-nav a {
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
}
@media (max-width: 767px) {
  .page-nav {
    margin-top: 40px;
  }
  .page-nav a {
    font-size: 1.6rem;
  }
}

.nav-links {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .nav-links {
    margin-top: 40px;
  }
}

footer {
  background-color: #121212;
  margin-top: 180px;
  padding-top: 30px;
}
@media (max-width: 767px) {
  footer {
    margin-top: 90px;
    padding: 30px 15px 0;
  }
}

#footer--menu {
  font-size: 1.4rem;
}
#footer--menu li a {
  color: #fff;
  display: block;
  text-decoration: none;
}
#footer--menu li a:hover {
  color: #FFE731;
}
@media (max-width: 767px) {
  #footer--menu li a {
    text-align: center;
  }
}
@media (min-width: 768px) {
  #footer--menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

#copyright {
  border-top: 1px solid #fff;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  margin: 100px auto 0;
  padding: 20px 0;
  width: 900px;
  max-width: 100%;
}
@media (max-width: 767px) {
  #copyright {
    font-size: 1rem;
    margin: 50px auto 0;
    padding: 10px 0;
  }
}

body.single-partner .partner--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px) {
  body.single-partner .partner--wrap .partner--slider {
    width: 30%;
  }
  body.single-partner .partner--wrap .partner--txt {
    width: 62%;
  }
}
@media (max-width: 767px) {
  body.single-partner .partner--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body.single-partner .partner--wrap .partner--slider {
    margin: 0 auto 30px;
    max-width: 300px;
  }
}
body.single-partner h2 {
  border-bottom: 1px dashed #121212;
  font-weight: bold;
  font-size: 1.8rem;
  padding-bottom: 10px;
}
body.single-partner dl div {
  border-bottom: 1px dashed #121212;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0;
}
body.single-partner dl div dt {
  font-weight: bold;
  width: 80px;
}
body.single-partner .partner--comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 70px;
}
@media (max-width: 767px) {
  body.single-partner .partner--comment {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
}
body.single-partner .partner--comment .partner--comment-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
  width: 180px;
  text-align: center;
}
body.single-partner .partner--comment .partner--comment-img img {
  border-radius: 100px;
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
body.single-partner .partner--comment .partner--comment-img p {
  font-weight: bold;
  font-size: 1.4rem;
  margin-top: 10px;
}
@media (max-width: 767px) {
  body.single-partner .partner--comment .partner--comment-img {
    width: 100%;
    margin: 0 0 30px;
  }
}
body.single-partner .partner--comment .partner--comment-txt {
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 10px;
  font-size: 1.4rem;
  padding: 20px;
  width: 100%;
  position: relative;
}
body.single-partner .partner--comment .partner--comment-txt::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent #707070 transparent transparent;
}
@media (max-width: 767px) {
  body.single-partner .partner--comment .partner--comment-txt::before {
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-width: 0 10px 20px 10px;
    border-color: transparent transparent #707070 transparent;
  }
}
body.single-partner .partner--comment .partner--comment-txt::after {
  content: "";
  position: absolute;
  top: 41px;
  left: -18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 18px 9px 0;
  border-color: transparent #fff transparent transparent;
}
@media (max-width: 767px) {
  body.single-partner .partner--comment .partner--comment-txt::after {
    top: -18px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-width: 0 9px 18px 9px;
    border-color: transparent transparent #fff transparent;
  }
}

body.post-type-archive-post .news--list {
  border-top: 2px solid #121212;
}
body.post-type-archive-post .news--list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 5px;
  text-decoration: none;
}
@media (max-width: 767px) {
  body.post-type-archive-post .news--list a {
    display: block;
  }
}
body.post-type-archive-post .news--list article {
  border-bottom: 2px solid #121212;
}
@media (max-width: 767px) {
  body.post-type-archive-post .news--list article .day {
    display: inline-block;
  }
}
body.post-type-archive-post .news--list article .category {
  margin: 0 15px 0 30px;
}
body.post-type-archive-post .news--list article .category span {
  background-color: #121212;
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  text-align: center;
  width: 140px;
}
@media (max-width: 767px) {
  body.post-type-archive-post .news--list article .category {
    display: inline-block;
    margin: 0 10px 0 20px;
  }
  body.post-type-archive-post .news--list article .category span {
    font-size: 1.2rem;
    width: 100px;
  }
}
@media (max-width: 767px) {
  body.post-type-archive-post .news--list article h2 {
    margin-top: 10px;
  }
}

body.single-post #container {
  margin-top: 0;
}
body.single-post .news--thumnail img {
  margin-bottom: 40px;
  width: 700px;
  max-width: 90%;
}

.contact_form--table {
  margin-top: 100px;
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .contact_form--table {
    margin-top: 40px;
  }
}
.contact_form--table td {
  padding: 15px 10px;
  vertical-align: middle;
}
.contact_form--table th {
  padding: 15px 10px;
  position: relative;
  width: 225px;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  background-clip: padding-box !important;
}
.contact_form--table th::after {
  position: absolute;
  top: 20px;
  right: 15px;
  padding: 4px 5px;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
}
.contact_form--table .is-required::after {
  color: #FFF;
  content: "必須";
  background: #FF6699;
  padding: 3px 15px;
}
.contact_form--table .is-option::after {
  color: #FFF;
  content: "任意";
  background: #999;
}
@media (max-width: 767px) {
  .contact_form--table td {
    padding: 10px 5px;
  }
  .contact_form--table th {
    padding: 5px;
  }
  .contact_form--table th::after {
    top: 5px;
    right: 10px;
  }
}

.contact_form--table textarea {
  height: 130px;
}
.contact_form--table input[type=text],
.contact_form--table input[type=email],
.contact_form--table input[type=tel],
.contact_form--table input[type=nmber],
.contact_form--table input[type=date],
.contact_form--table textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 10px;
  font-family: inherit;
  font-weight: normal;
  color: #333;
  background: #fff;
  border: solid 1px #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contact_form--table input[type=text]:focus,
.contact_form--table input[type=email]:focus,
.contact_form--table input[type=tel]:focus,
.contact_form--table input[type=nmber]:focus,
.contact_form--table input[type=date]:focus,
.contact_form--table textarea:focus {
  background: #FFF;
  border: solid 1px #E6EDF2;
  outline: none;
}
.contact_form--table input[type=checkbox]:checked + span,
.contact_form--table input[type=radio]:checked + span {
  font-weight: bold;
}
.contact_form--table select {
  padding: 2px 0 4px 4px;
  margin-right: 2px;
  border: solid 1px #345372;
  border-radius: 3px;
}
.contact_form--table select option {
  padding: 0;
}
.contact_form--table .mwform-tel-field input[type=text],
.contact_form--table .mwform-zip-field input[type=text] {
  width: 5em;
}

.contact_form--btn {
  margin-top: 30px;
  overflow: hidden;
  text-align: center;
}
.contact_form--btn input[type=submit],
.contact_form--btn input[type=button],
.contact_form--btn button[type=submit] {
  display: inline-block;
  width: 220px;
  height: 60px;
  margin: 10px;
  overflow: hidden;
  font-weight: bold;
  font-size: 1.8rem;
  color: #121212;
  cursor: pointer;
  background: #F9C624;
  border: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact_form--btn input[type=submit]:hover,
.contact_form--btn input[type=button]:hover,
.contact_form--btn button[type=submit]:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .contact_form--btn input[type=submit],
.contact_form--btn input[type=button],
.contact_form--btn button[type=submit] {
    max-width: 80%;
  }
}

.frm.danger {
  position: relative;
  display: block;
  padding: 5px 10px;
  margin-top: 12px;
  clear: both;
  font-size: 1.2rem;
  color: #FFF !important;
  background: #C90000;
}
.frm.danger::before {
  position: absolute;
  top: -20px;
  width: 0;
  height: 0;
  content: "";
  border: 10px solid #C90000;
  border-color: transparent;
  border-bottom-color: #C90000;
}

.info--wrap {
  background-color: #F4F4F4;
  padding: 100px 70px;
}
.info--wrap p {
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .info--wrap {
    padding: 50px 20px;
  }
  .info--wrap p {
    text-align: left;
  }
  .info--wrap p br {
    display: none;
  }
}

#loading {
  display: none;
}

.thanks {
  padding: 20px;
  font-size: 1.8rem;
}

.notfound_page {
  text-align: center;
}

.notfound_page--ttl {
  font-size: 2rem;
  margin-bottom: 30px;
}

.notfound_page--paragraph {
  margin-bottom: 1em;
}

.notfound_page--link a {
  text-decoration: underline;
}