@charset "UTF-8";
/* 共通 */
* {
  min-width: 0;
  min-height: 0;
  color: #333333;
  line-height: 1;
}
@media (max-width: 800px) {
  * {
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: 500;
  }
}

/* 共通 */
body {
  margin: 0;
  padding: 0;
}
body.scroll-lock {
  overflow: hidden;
}

font font {
  overflow-wrap: break-word;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
}
a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

:target {
  /* ヘッダーの高さ分だけパディングを追加し、内容が隠れないようにする */
  padding-top: 110px;
  /* パディングで内容が下に押し出されるのを避けるために、同じ大きさのマイナスマージンを設定 */
  margin-top: -110px;
  /* ブラウザが要素を表示する際の挙動を補助する */
  display: block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 600px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 600px) {
  .sp {
    display: block;
  }
}

.wrap {
  max-width: 80%;
  /* full-width 1400pxに対して、1000px maxを想定 */
  margin: 0 auto;
}
@media (max-width: 800px) {
  .wrap {
    max-width: 100%;
    padding: 0 3%;
  }
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

div img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: top;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .inner {
    max-width: 100%;
    width: 90%;
  }
}
@media (max-width: 600px) {
  .inner {
    width: 100%;
    padding: 0 3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

/*ハンバーガーメニュー*/
#navArea {
  width: 100%;
  opacity: 0;
  display: none;
  z-index: -1;
}
#navArea nav {
  width: 100%;
  height: 100vh;
  padding: 80px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #68ab66;
  display: block;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 600px) {
  #navArea nav {
    padding: 10px 3%;
  }
}
#navArea nav .inner {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 600px) {
  #navArea nav .inner {
    height: 100vh;
    overflow-y: scroll;
    padding: 60px 30px 30px 30px;
  }
}
#navArea.open {
  opacity: 1;
  display: block;
  z-index: 60;
  top: 0;
}

.view {
  visibility: visible;
  opacity: 1;
}

/* header */
.header-group {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 110px;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 600px) {
  .header-group {
    height: 70px;
  }
}
.header-group .header-wrap {
  background-color: #fff;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-group .header-wrap .header-menu {
  width: calc(100% - 110px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 22px 9px 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1100px) {
  .header-group .header-wrap .header-menu {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 600px) {
  .header-group .header-wrap .header-menu {
    padding: 0 3%;
  }
}
.header-group .header-wrap .header-menu .header-logo {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 60px;
}
@media (max-width: 1100px) {
  .header-group .header-wrap .header-menu .header-logo {
    height: 65px;
  }
}
.header-group .header-wrap .header-menu .header-logo a {
  height: 100%;
}
.header-group .header-wrap .header-menu .top {
  width: 700px;
  height: 52px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
@media (max-width: 1270px) {
  .header-group .header-wrap .header-menu .top {
    width: auto;
  }
}
@media (max-width: 800px) {
  .header-group .header-wrap .header-menu .top {
    display: none;
  }
}
.header-group .header-wrap .header-menu .top .btn {
  margin-right: 20px;
}
.header-group .header-wrap .header-menu .top .btn:last-of-type {
  margin-right: 12px;
}
@media (max-width: 1270px) {
  .header-group .header-wrap .header-menu .top .btn {
    display: none;
  }
}
.header-group .header-wrap .header-menu .top .btn a {
  color: #555555;
  font-family: yu-gothic-pr6n, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.header-group .header-wrap .header-menu .top .btn a:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 9px;
  background-image: url(/wp-content/uploads/2024/07/arrow-mini.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 5px;
}
.header-group .header-wrap .header-menu .top .submit-area {
  margin-right: 50px;
}
.header-group .header-wrap .header-menu .bottom {
  margin: 0 0 0 auto;
}
@media (max-width: 1270px) {
  .header-group .header-wrap .header-menu .bottom {
    display: none;
  }
}
.header-group .header-wrap .header-menu .bottom .btn {
  width: 138px;
  text-align: center;
}
.header-group .header-wrap .header-menu .bottom .btn a {
  position: relative;
  display: block;
  letter-spacing: 0.02em;
}
.header-group .header-wrap .header-menu .bottom .btn a::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 30px;
  background-color: #ddd;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.header-group .header-wrap .header-menu .bottom .btn a img {
  height: 26px;
  margin-bottom: 5px;
}
.header-group .header-wrap .header-menu .bottom .btn a span {
  display: block;
  font-family: fot-tsukubrdgothic-std, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
}
.header-group .header-wrap .header-menu .bottom .btn:last-child a::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 30px;
  background-color: #ddd;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
.header-group .toggle_btn {
  width: 110px;
  height: 110px;
  background-color: #68ab66;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 70;
}
@media (max-width: 600px) {
  .header-group .toggle_btn {
    width: 70px;
    height: 70px;
  }
}
.header-group .toggle_btn .toggle_line {
  width: 35%;
  height: 40%;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 600px) {
  .header-group .toggle_btn .toggle_line {
    width: 35px;
    height: 45px;
    margin: 0 auto;
  }
}
.header-group .toggle_btn .toggle_line p {
  text-align: center;
  color: #fff;
  font-size: 10px;
  margin-bottom: 8px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .header-group .toggle_btn .toggle_line p {
    font-size: 10px;
  }
}
.header-group .toggle_btn .toggle_line span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .header-group .toggle_btn .toggle_line span {
    margin-bottom: 8px;
  }
}
.header-group .toggle_btn .toggle_line span:last-child {
  margin-bottom: 0;
}
.header-group .toggle_btn.open span {
  background-color: #fff;
}
.header-group .toggle_btn.open span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(50%) rotate(-315deg);
  transform: translateY(50%) rotate(-315deg);
  position: absolute;
}
.header-group .toggle_btn.open span:nth-child(3) {
  opacity: 0;
}
.header-group .toggle_btn.open span:nth-child(4) {
  top: 50%;
  -webkit-transform: translateY(50%) rotate(315deg);
  transform: translateY(50%) rotate(315deg);
  position: absolute;
}

#navArea .inner .top {
  margin-bottom: 65px;
}
#navArea .inner .top .left {
  width: 30%;
}
#navArea .inner .top .left .image img {
  width: 100%;
}
#navArea .inner .top .left .image:last-child {
  text-align: center;
}
#navArea .inner .top .left .image:last-child img {
  max-height: 90px;
}
#navArea .inner .top .right {
  width: calc(70% - 60px);
  margin-left: 60px;
  text-align: left;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#navArea .inner .top .right .box {
  width: 50%;
}
#navArea .inner .top .right .box .btn a {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
}
#navArea .inner .top .right .box:first-child .btn {
  margin-bottom: 35px;
}
#navArea .inner .top .right .box:first-child .btn:last-child {
  margin-bottom: 0;
}
#navArea .inner .top .right .box:first-child .btn a {
  font-size: 18px;
  letter-spacing: 0.06em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
#navArea .inner .top .right .box:first-child .btn a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #e07f7e;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#navArea .inner .top .right .box:first-child .btn:nth-child(2) a::before {
  background-color: #e29061;
}
#navArea .inner .top .right .box:first-child .btn:nth-child(3) a::before {
  background-color: #e38f9f;
}
#navArea .inner .top .right .box:first-child .btn:nth-child(4) a::before {
  background-color: #8ab472;
}
#navArea .inner .top .right .box:first-child .btn:nth-child(5) a::before {
  background-color: #e38f9f;
}
#navArea .inner .top .right .box:first-child .btn:nth-child(6) a::before {
  background-color: #a188d2;
}
#navArea .inner .top .right .box:first-child .btn:nth-child(7) a::before {
  background-color: #8fa0f8;
}
#navArea .inner .top .right .box:last-child .btn {
  margin-bottom: 30px;
}
#navArea .inner .top .right .box:last-child .btn:last-child {
  margin-bottom: 0;
}
#navArea .inner .top .right .box:last-child .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
#navArea .inner .top .right .box:last-child .btn a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: solid 2px #cccccc;
  border-right: solid 2px #cccccc;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#navArea .inner .bottom .left {
  width: calc(40% - 4vw);
  margin-right: 4vw;
}
#navArea .inner .bottom .left .image img {
  width: 100%;
}
#navArea .inner .bottom .left .image p {
  color: #808080;
  text-align: left;
  font-size: 14px;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin-top: 10px;
}
#navArea .inner .bottom .right {
  width: 60%;
}
#navArea .inner .bottom .right .links {
  margin-bottom: 30px;
}
#navArea .inner .bottom .right .links .btn {
  width: calc(50% - 1vw);
  margin-right: 2vw;
}
#navArea .inner .bottom .right .links .btn:last-child {
  margin-right: 0;
}
@media (max-width: 600px) {
  #navArea .inner .bottom .right .links .btn {
    width: calc(50% - 1vw);
    margin-right: 2vw;
  }
}
#navArea .inner .bottom .right .links .btn::before, #navArea .inner .bottom .right .links .btn::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border: 5px solid transparent;
}
#navArea .inner .bottom .right .links .btn:before {
  bottom: 100%;
  border-bottom-color: inherit;
}
#navArea .inner .bottom .right .links .btn:after {
  top: 100%;
  border-top-color: inherit;
}
#navArea .inner .bottom .right .links .btn a {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  padding: 5px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: min(1.8vw, 16px);
  line-height: 1.4;
}
@media (max-width: 600px) {
  #navArea .inner .bottom .right .links .btn a {
    padding: 5px 10px;
    font-size: min(3vw, 16px);
  }
}
#navArea .inner .bottom .right .links .btn a::before, #navArea .inner .bottom .right .links .btn a::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 10px;
  width: 3.8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  -webkit-transform-origin: calc(100% - 0.5px) 50%;
          transform-origin: calc(100% - 0.5px) 50%;
}
#navArea .inner .bottom .right .links .btn a::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#navArea .inner .bottom .right .links .btn a::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#navArea .inner .bottom .right .links .btn:first-child {
  background-color: #ea9292;
}
#navArea .inner .bottom .right .links .btn:first-child::before, #navArea .inner .bottom .right .links .btn:first-child::after {
  color: #ea9292;
}
#navArea .inner .bottom .right .links .btn:last-child {
  background-color: #93abe5;
}
#navArea .inner .bottom .right .links .btn:last-child::before, #navArea .inner .bottom .right .links .btn:last-child::after {
  color: #93abe5;
}
#navArea .inner .bottom .right .submit-area {
  margin-right: 30px;
}
@media (max-width: 600px) {
  #navArea .inner .bottom .right .submit-area {
    width: 100%;
    margin: 5px 0 0 0;
  }
}
#navArea .inner.sp .top {
  margin-bottom: 35px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#navArea .inner.sp .top .box {
  width: 50%;
}
#navArea .inner.sp .top .box .btn a {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
}
#navArea .inner.sp .top .box:first-child .btn {
  margin-bottom: 30px;
}
#navArea .inner.sp .top .box:first-child .btn:last-child {
  margin-bottom: 0;
}
#navArea .inner.sp .top .box:first-child .btn a {
  font-size: 16px;
  letter-spacing: 0.06em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
#navArea .inner.sp .top .box:first-child .btn a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #90b07a;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#navArea .inner.sp .top .box:first-child .btn:nth-child(2) a::before {
  background-color: #e07f7e;
}
#navArea .inner.sp .top .box:first-child .btn:nth-child(3) a::before {
  background-color: #e29061;
}
#navArea .inner.sp .top .box:first-child .btn:nth-child(4) a::before {
  background-color: #e38f9f;
}
#navArea .inner.sp .top .box:first-child .btn:nth-child(5) a::before {
  background-color: #8ab472;
}
#navArea .inner.sp .top .box:first-child .btn:nth-child(6) a::before {
  background-color: #e38f9f;
}
#navArea .inner.sp .top .box:first-child .btn:nth-child(7) a::before {
  background-color: #a188d2;
}
#navArea .inner.sp .top .box:first-child .btn:nth-child(8) a::before {
  background-color: #8fa0f8;
}
#navArea .inner.sp .top .box:last-child .btn {
  margin-bottom: 30px;
}
#navArea .inner.sp .top .box:last-child .btn:last-child {
  margin-bottom: 0;
}
#navArea .inner.sp .top .box:last-child .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 14px;
}
#navArea .inner.sp .top .box:last-child .btn a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: solid 2px #cccccc;
  border-right: solid 2px #cccccc;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#navArea .inner.sp .bottom .links {
  margin-bottom: 20px;
}
#navArea .inner.sp .bottom .links .btn {
  width: calc(100% / 2 - 15px / 2);
  margin-right: 15px;
}
#navArea .inner.sp .bottom .links .btn:nth-child(2n) {
  margin-right: 0;
}
#navArea .inner.sp .bottom .links .btn::before, #navArea .inner.sp .bottom .links .btn::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border: 5px solid transparent;
}
#navArea .inner.sp .bottom .links .btn:before {
  bottom: 100%;
  border-bottom-color: inherit;
}
#navArea .inner.sp .bottom .links .btn:after {
  top: 100%;
  border-top-color: inherit;
}
#navArea .inner.sp .bottom .links .btn a {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: min(3vw, 16px);
  line-height: 1.3;
  color: #fff;
}
#navArea .inner.sp .bottom .links .btn a::before, #navArea .inner.sp .bottom .links .btn a::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 10px;
  width: 3.8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  -webkit-transform-origin: calc(100% - 0.5px) 50%;
          transform-origin: calc(100% - 0.5px) 50%;
}
#navArea .inner.sp .bottom .links .btn a::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#navArea .inner.sp .bottom .links .btn a::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#navArea .inner.sp .bottom .links .btn:first-child {
  margin-right: 30px;
  background-color: #ea9292;
}
@media (max-width: 600px) {
  #navArea .inner.sp .bottom .links .btn:first-child {
    margin-right: 10px;
  }
}
#navArea .inner.sp .bottom .links .btn:first-child::before, #navArea .inner.sp .bottom .links .btn:first-child::after {
  color: #ea9292;
}
#navArea .inner.sp .bottom .links .btn:last-child {
  background-color: #93abe5;
}
#navArea .inner.sp .bottom .links .btn:last-child::before, #navArea .inner.sp .bottom .links .btn:last-child::after {
  color: #93abe5;
}
#navArea .inner.sp .bottom .image {
  margin-bottom: 30px;
}
#navArea .inner.sp .bottom .image img {
  width: 100%;
}
#navArea .inner.sp .bottom .image p {
  color: #808080;
  text-align: left;
  font-size: 14px;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin-top: 5px;
}
#navArea .inner.sp .bottom .gtranslate_wrapper {
  margin-bottom: 5px;
}

.bottom-btns-sp {
  display: none;
}
@media (max-width: 600px) {
  .bottom-btns-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    z-index: 55;
    padding: 10px 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0 -2px 6px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 -2px 6px 0 rgba(0, 0, 0, 0.15);
  }
  .bottom-btns-sp .btn {
    width: calc(25% - 10px);
    margin-right: 10px;
  }
  .bottom-btns-sp .btn a {
    text-align: center;
  }
  .bottom-btns-sp .btn a .image {
    height: 25px;
    margin-bottom: 5px;
  }
  .bottom-btns-sp .btn a span {
    font-size: 10px;
  }
  .bottom-btns-sp .gtranslate_wrapper {
    width: calc(25% - 10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    margin: 0;
  }
  .bottom-btns-sp .gtranslate_wrapper:before {
    content: "";
    display: block;
    width: 30px;
    height: 25px;
    background-image: url(/wp-content/uploads/2024/02/logo-earth.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .bottom-btns-sp .gtranslate_wrapper .gt_selector {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding-top: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.submit-area {
  width: 220px;
  height: 28px;
}
@media (max-width: 600px) {
  .submit-area {
    width: 100%;
  }
}
.submit-area .search-box {
  height: 100%;
}
.submit-area .search-box .search-edit {
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #dddddd;
  border-radius: 3px;
}
.submit-area .search-box button {
  width: 16px;
  height: 16px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
}
.submit-area .search-box button img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.post_breadcrumb {
  max-width: 1100px;
  margin: 60px auto;
}
@media (max-width: 1100px) {
  .post_breadcrumb {
    padding: 0 3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

/* footer */
.footer {
  padding: 70px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #ddecdc;
}
@media (max-width: 600px) {
  .footer {
    margin-bottom: 80px;
  }
}
.footer .row {
  max-width: 1000px;
  margin: 0 auto 70px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1100px) {
  .footer .row {
    padding: 0 3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 600px) {
  .footer .row {
    padding: 0 15px;
  }
}
@media (max-width: 600px) {
  .footer .row .list {
    width: 100%;
    margin-bottom: 30px;
  }
}
.footer .row .list .item {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .footer .row .list .item {
    margin-bottom: 20px;
  }
}
.footer .row .list .item:last-child {
  margin-bottom: 0;
}
.footer .row .list .item:first-child a {
  font-weight: bold;
}
.footer .row .list .item.flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .row .list .item.flex:before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 10px;
  height: 1px;
  background-color: #333333;
}
.footer .row .list .item.flex:first-child {
  font-size: 18px;
}
.footer .row .list .item.flex:first-child:before {
  width: 10px;
  height: 15px;
  background-color: transparent;
  background-image: url(/wp-content/uploads/2024/02/arrow-r.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.footer .row .list .item.flex:first-child a {
  width: calc(100% - 20px);
}
.footer .row .list:last-child .item {
  line-height: 1.625;
}
.footer .row .list:last-child .item.flex:before {
  display: none;
}
.footer .row .list:last-child .item.flex:first-child:before {
  display: block;
}
.footer .row .list:last-child .item a {
  color: #808080;
  text-decoration: underline;
  display: inline-block;
  text-decoration-color: #808080;
}
.footer .row .list:last-child .item span {
  font-weight: bold;
}
.footer .row .list:last-child .item:first-child a {
  color: #333333;
  text-decoration: none;
}
.footer .info-bot {
  width: 100%;
  background-color: #fff;
  padding: 15px 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 600px) {
  .footer .info-bot {
    padding: 15px 3%;
  }
}
.footer .info-bot .logo {
  height: 50px;
}
@media (max-width: 600px) {
  .footer .info-bot .logo {
    height: 30px;
  }
}
.footer .info-bot .btn {
  text-decoration: underline;
}

.gtranslate_wrapper {
  width: 130px;
  height: 28px;
  position: relative;
}
.gtranslate_wrapper::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 6px;
  height: 6px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  position: absolute;
  top: 50%;
  right: 10px;
}
.gtranslate_wrapper .gt_selector {
  width: 100%;
  height: 100%;
  padding: 5px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 12px;
  border: none;
  color: #fff;
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
  border-radius: 3px;
  background-color: #f19754;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.gtranslate_wrapper .gt_selector option {
  color: #fff;
}

.rm-box {
  width: 280px;
  margin: 0 auto 80px auto;
  border-radius: 5px;
  border: 1px solid #5e9b5c;
}
.rm-box a {
  display: block;
  color: #5e9b5c;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  position: relative;
  font-weight: bold;
}
.rm-box a:after {
  content: "";
  width: 20px;
  height: 13px;
  background-image: url(/wp-content/uploads/2024/02/arrow-g.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.rm-box a:hover::after {
  right: 10px;
}

.rm-btn {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 50px auto;
}
@media (max-width: 1100px) {
  .rm-btn {
    max-width: 90%;
  }
}
@media (max-width: 600px) {
  .rm-btn {
    max-width: 100%;
    padding: 0 3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.rm-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  color: #5e9b5c;
  font-weight: bold;
}
.rm-btn a:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  background-image: url(/wp-content/uploads/2024/02/arrow-btn.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.fot-tsuku {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.fot-tsuku-b {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-style: normal;
  font-weight: 700;
}

.page-title-wrapper h1 {
  font-size: 30px;
  font-weight: bold;
  margin: 30px 0 40px 0;
  text-align: center;
}

.dataTables_wrapper {
  overflow: scroll;
  height: 300px;
}
@media (max-width: 600px) {
  .dataTables_wrapper table {
    width: 700px;
  }
}

/*footer共通*/
@media (max-width: 600px) {
  .ranking-cont {
    overflow-x: hidden;
  }
}
.ranking-cont .ranking-slider {
  margin-top: 120px;
  position: relative;
}
@media (max-width: 600px) {
  .ranking-cont .ranking-slider {
    margin-top: 60px;
  }
}
.ranking-cont .ranking-slider:before {
  content: "";
  display: block;
  width: 200px;
  height: 120%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), color-stop(45%, rgba(255, 255, 255, 0.55)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 600px) {
  .ranking-cont .ranking-slider:before {
    width: 50px;
  }
}
.ranking-cont .ranking-slider:after {
  content: "";
  display: block;
  width: 200px;
  height: 120%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(60%, rgba(255, 255, 255, 0.55)), to(rgb(255, 255, 255)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 60%, rgb(255, 255, 255) 100%);
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 600px) {
  .ranking-cont .ranking-slider:after {
    width: 50px;
  }
}
.ranking-cont .ranking-slider .list {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 50px auto;
}
@media (max-width: 600px) {
  .ranking-cont .ranking-slider .list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.ranking-cont .ranking-slider .list div[class*=box] {
  width: calc(100% / 3 - 60px / 3);
  margin-right: 30px;
  -webkit-box-shadow: 5px 2px 5px 4px rgba(104, 95, 95, 0.25);
          box-shadow: 5px 2px 5px 4px rgba(104, 95, 95, 0.25);
  position: relative;
  height: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.ranking-cont .ranking-slider .list div[class*=box]:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 600px) {
  .ranking-cont .ranking-slider .list div[class*=box] {
    -webkit-box-shadow: 3px 2px 5px 2px rgba(104, 95, 95, 0.25);
            box-shadow: 3px 2px 5px 2px rgba(104, 95, 95, 0.25);
  }
}
.ranking-cont .ranking-slider .list div[class*=box]:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ranking-cont .ranking-slider .list div[class*=box]::before {
  content: "";
  display: block;
  width: 70px;
  height: 50px;
  background-image: url(/wp-content/uploads/2024/02/rank-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 600px) {
  .ranking-cont .ranking-slider .list div[class*=box]::before {
    width: 60px;
    height: 45px;
  }
}
.ranking-cont .ranking-slider .list div[class*=box] a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ranking-cont .ranking-slider .list div[class*=box] a .image {
  width: 100%;
  aspect-ratio: 16/9;
}
.ranking-cont .ranking-slider .list div[class*=box] a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ranking-cont .ranking-slider .list div[class*=box] a:nth-child(2) {
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  line-height: 1.3125;
  letter-spacing: 0em;
}
.ranking-cont .ranking-slider .list div[class*=box] a .title {
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  flex-grow: 1;
  font-size: 14px;
  font-weight: bold;
  background-color: #fff;
}
.ranking-cont .ranking-slider .list .box_2::before {
  background-image: url(/wp-content/uploads/2024/02/rank-02.png) !important;
}
.ranking-cont .ranking-slider .list .box_3::before {
  background-image: url(/wp-content/uploads/2024/02/rank-03.png) !important;
}
@media (max-width: 600px) {
  .ranking-cont .ranking-slider .list div[class*=box]::before {
    top: -25px;
    left: -15px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.ranking-cont .ranking-slider .swiper-horizontal > .swiper-scrollbar,
.ranking-cont .ranking-slider .swiper-scrollbar.swiper-scrollbar-horizontal {
  bottom: -30px;
}
.ranking-cont .headline:before {
  border-bottom: 2px solid #9a9a9a;
}
.ranking-cont .headline:after {
  border-bottom: 2px solid #9c80ce;
}
.ranking-cont .headline p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
  letter-spacing: 0.2em;
  text-align: center;
}
@media (max-width: 600px) {
  .ranking-cont .headline p {
    font-size: 24px;
  }
}
.ranking-cont .headline p::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url(/wp-content/uploads/2024/02/icon20.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 10px;
}

.special {
  display: block;
}
.special .headline {
  margin-bottom: 50px;
}
.special .headline:before {
  border-bottom: none;
}
.special .headline:after {
  border-bottom: none;
}
.special .headline p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
  letter-spacing: 0.2em;
  text-align: center;
}
@media (max-width: 600px) {
  .special .headline p {
    font-size: 22px;
  }
}
.special .headline p::before {
  content: "";
  display: block;
  width: 20px;
  height: 25px;
  background-image: url(/wp-content/uploads/2024/02/icon23.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 10px;
}
.special .spacial-list {
  margin-bottom: 100px;
}
.special .spacial-list .banner a {
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 600px) {
  .special .spacial-list .banner a {
    padding: 0 10px;
  }
}
.special .spacial-list .banner a img {
  width: 100%;
}
.special .spacial-list .slick-slide {
  opacity: 0.5;
}
.special .spacial-list .slick-slide.slick-center {
  opacity: 1;
}
@media (max-width: 600px) {
  .special .spacial-list .slick-slide.slick-active {
    opacity: 1;
  }
}
.special .spacial-list .arrow {
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
.special .spacial-list .prev-arrow {
  left: 50%;
  -webkit-transform: translate(calc(-50% - 200px), -50%);
          transform: translate(calc(-50% - 200px), -50%);
}
@media (max-width: 600px) {
  .special .spacial-list .prev-arrow {
    width: 20px;
    height: 20px;
    left: 20px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.special .spacial-list .next-arrow {
  right: 50%;
  -webkit-transform: translate(calc(-50% + 220px), -50%);
          transform: translate(calc(-50% + 220px), -50%);
}
@media (max-width: 600px) {
  .special .spacial-list .next-arrow {
    width: 20px;
    height: 20px;
    right: 20px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

.banners-cont {
  margin-bottom: 80px;
}
@media (max-width: 600px) {
  .banners-cont {
    padding: 0 3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 50px;
  }
}
.banners-cont .headline {
  margin-bottom: 50px;
}
.banners-cont .headline:before {
  border-bottom: none;
}
.banners-cont .headline:after {
  border-bottom: none;
}
.banners-cont .headline p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
  letter-spacing: 0.2em;
  text-align: center;
}
@media (max-width: 600px) {
  .banners-cont .headline p {
    font-size: 22px;
  }
}
.banners-cont .headline p::before {
  content: "";
  display: block;
  width: 35px;
  height: 25px;
  background-image: url(/wp-content/uploads/2024/02/icon22.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 10px;
}
.banners-cont div[class^=banner-slider] {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}
.banners-cont div[class^=banner-slider] .list {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin: 0;
}
.banners-cont div[class^=banner-slider] .list .image {
  width: calc(25% - 23px);
  margin: 0 30px 25px 0;
}
.banners-cont div[class^=banner-slider] .list .image:nth-child(4n) {
  margin-right: 0;
}
.banners-cont div[class^=banner-slider] .list .image img {
  width: 100%;
}
@media (max-width: 600px) {
  .banners-cont div[class^=banner-slider] .list .image {
    width: calc(50% - 5px);
    margin: 0 10px 10px 0;
  }
  .banners-cont div[class^=banner-slider] .list .image:nth-child(2n) {
    margin-right: 0;
  }
}
.banners-cont .sp {
  display: none;
}
@media (max-width: 600px) {
  .banners-cont .sp {
    display: block;
  }
}

/* 検索 */
/* 検索スマホ*/
.as-form-box {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto;
}
.as-form-box .detail_search_area .show_tab .as-form-list_inner {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}
.as-form-box .detail_search_area .show_tab .as-form-list_inner dt {
  width: 15%;
}
.as-form-box .detail_search_area .show_tab .as-form-list_inner dd {
  width: 85%;
}
.as-form-box .detail_search_area .show_tab .as-form-list_inner input[type=text] {
  font-size: 16px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #e9e9e9;
  margin-bottom: 10px;
}
.as-form-box .detail_search_area .show_tab .check_block_wrapper {
  width: 90%;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #e9e9e9;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px;
  margin: 0 auto;
}
.as-form-box .detail_search_area .show_tab .check_block_wrapper .display-inline {
  display: inline;
  margin-left: 15px;
}
.as-form-box .detail_search_area .show_tab .check_block_wrapper .display-inline .check_block {
  width: 100%;
  display: inline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.as-form-box .detail_search_area .show_tab .check_block_wrapper .display-inline .check_block dt {
  width: 100%;
}
.as-form-box .detail_search_area .show_tab .check_block_wrapper .display-inline .check_block dd {
  width: 25%;
}
.as-form-box .detail_search_area .show_tab .check_block_wrapper .display-inline .check_block .search-input-wrapper {
  display: inline-block;
  margin-bottom: 10px;
}
.as-form-box .detail_search_area .show_tab .check_block_wrapper .display-inline .check_block .search-input-wrapper .form-cat-label {
  color: #383c3c;
  margin-right: 15px;
  margin-left: 5px;
  vertical-align: middle;
}
.as-form-box .detail_search_area .show_tab .check_columnone {
  margin-bottom: 10px;
}
.as-form-box .detail_search_area .show_tab .check_columnone .check_category_title {
  margin-top: 0px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 16px;
  display: inline;
}
.as-form-box .detail_search_area .show_tab .check_columntwo {
  margin-bottom: 20px;
}
.as-form-box .search_button_wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.as-form-box .search_button_wrapper input[type=submit] {
  background-color: #383c3c;
  color: #fff;
  padding: 10px 0px;
  border-radius: 3px;
  border: none;
  font-size: 16px;
  width: 160px;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}

/*検索ボックス*/
.detail_search_area {
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .detail_search_area {
    max-width: 94%;
    width: 100%;
  }
}
.detail_search_deco {
  display: block;
  margin: 1.5px 0;
  text-align: center;
  padding: 11px 12px;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.detail_search:hover {
  background: #85baef;
}

.det_sea {
  display: none;
}

.detail_search_area .show_tab {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.det_sea:checked + .show_tab {
  height: auto;
  padding: 5px;
  opacity: 1;
}

.content .text {
	line-height: 1.2;
    font-size: 14px;
	letter-spacing: 0.03em; 
}