@charset "UTF-8";
/********************************************************
*  ハンバーガーメニュー
********************************************************/
.c-hamburger {
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
  position: absolute;
  z-index: 9999;
  top: 10px;
  right: 0px;
  width: 50px;
  height: 50px;
  border: none;
  background: none;
}
@media only screen and (max-width: 769px) {
  .c-hamburger {
    top: 10px;
  }
}

.c-hamburger_on {
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
  position: absolute;
  z-index: 9999;
  top: 20px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  background: none;
}
@media only screen and (max-width: 769px) {
  .c-hamburger_on {
    top: 14px;
    right: 0px;
  }
}

.c-hamburger__line {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-hamburger__line::before, .c-hamburger__line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  transition: all 0.3s;
  background-color: #ffffff;
}
.c-hamburger__line::before {
  top: -6px;
}
.c-hamburger__line::after {
  top: 6px;
}

.c-hamburger__line_on {
  width: 22px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
}
.c-hamburger__line_on::before, .c-hamburger__line_on::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  transition: all 0.3s;
  top: 0;
  background-color: #333;
}
.c-hamburger__line_on::before {
  top: -1px;
  transform: rotate(45deg);
}
.c-hamburger__line_on::after {
  top: -1px;
  transform: rotate(-45deg);
}

.c-drawer {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  width: 588px;
  height: auto;
  background-color: white;
  visibility: hidden;
  padding: 50px;
  overflow-y: scroll;
  z-index: 9998;
}
@media only screen and (max-width: 769px) {
  .c-drawer {
    width: 90%;
  }
}

#js-drawer {
  position: fixed;
  right: -100%;
  top: 0;
  width: 40%;
  height: 100vh;
  transition: right 0.5s ease-in-out;
}
@media only screen and (max-width: 769px) {
  #js-drawer {
    width: 100%;
  }
}

.is-drawer-active #js-drawer {
  right: 0; /* メニューが表示されるときは右側に0を設定します */
}

.is-drawer-active .c-hamburger__line {
  background-color: transparent;
}
.is-drawer-active .c-hamburger__line::before, .is-drawer-active .c-hamburger__line::after {
  top: 0;
  background-color: #333;
}
.is-drawer-active .c-hamburger__line::before {
  transform: rotate(45deg);
}
.is-drawer-active .c-hamburger__line::after {
  transform: rotate(-45deg);
}
.is-drawer-active .c-drawer {
  visibility: visible;
  overflow: scroll;
  height: 98vh;
}
@media only screen and (max-width: 769px) {
  .is-drawer-active .c-drawer {
    height: 100vh;
    width: 90%;
    padding: 5%;
  }
}
.is-drawer-active .dwawer-logo {
  width: 122px;
  position: absolute;
  top: 24px;
  left: 50px;
}
@media only screen and (max-width: 769px) {
  .is-drawer-active .dwawer-logo {
    width: 102px;
    position: absolute;
    top: 31px;
    left: 6px;
  }
}
.is-drawer-active .menu-inner {
  margin: 49px auto;
  padding: 30px 0px 0px;
  color: #394637;
}
.is-drawer-active .menu-inner-inner {
  line-height: 30px;
  margin: 30px 0px;
  font-size: 17px;
  position: relative;
}
.is-drawer-active .menu-inner-inner::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0px;
  width: 11px;
  height: 11px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
}

.logo {
  width: 123px;
  height: 28px;
  position: absolute;
  top: 15px;
  left: 0px;
  z-index: 99;
}
@media only screen and (max-width: 769px) {
  .logo {
    width: 100px;
    height: auto;
    position: fixed;
    top: 20px;
    left: 8%;
    z-index: 99;
  }
}

#acMenu dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 30px;
  margin: 20px 0px;
  font-size: 20px;
  color: #511f08;
  position: relative;
  padding-right: 5px;
}
@media only screen and (max-width: 769px) {
  #acMenu dt {
    width: 100%;
  }
}
#acMenu dt .dli-plus {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 13px;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
}
#acMenu dt .dli-plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
#acMenu dt .dli-plus {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 13px;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
}
#acMenu dt .dli-plus.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(0deg);
}

#acMenu dd {
  height: auto;
  line-height: 30px;
  text-align: left;
  display: none;
  line-height: 30px;
  margin: 30px 0px;
  font-size: 17px;
  color: #511f08;
}
@media only screen and (max-width: 769px) {
  #acMenu dd {
    width: 100%;
  }
}
#acMenu dd .menu-dd-inner {
  position: relative;
  display: block;
  margin: 0px 0px 10px 0px;
  border-top: 1px solid;
  padding-top: 10px;
  padding-left: 20px;
}
#acMenu dd .menu-dd-inner::before {
  left: -3px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #511f08;
  border-right: 1px solid #511f08;
  transform: rotate(45deg);
  content: "";
  position: absolute;
  top: 18px;
}
#acMenu dd .menu-dd-last {
  border-bottom: 1px solid #511f08;
  padding-bottom: 10px;
  margin-bottom: 50px;
}

.hamburger-demo-cover {
  display: none;
}
.hamburger-demo-cover.active {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9997;
  background: rgba(3, 3, 3, 0.5);
  display: block;
}

.header-back {
  position: fixed;
  height: 73px;
  width: 100%;
  margin-top: 0px;
  z-index: 99;
  background: #64c000;
}
.header-back .header-inner {
  width: 1100px;
  position: relative;
  height: 74px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .header-back .header-inner {
    width: 100%;
  }
}

.header-sns-waku {
  display: block;
  margin: 0px auto 0px;
  width: auto;
  width: 276px;
}
.header-sns-waku-inner {
  width: 276px;
}
@media only screen and (max-width: 769px) {
  .header-sns-waku {
    width: 80%;
    max-width: 250px;
  }
}

.online-header {
  background-color: white;
  width: 100%;
  height: 44px;
  position: fixed;
  z-index: 90;
}

.fixed {
  position: fixed;
  bottom: 5px;
  right: 0;
}

.banner {
  width: 200px;
  padding: 10px;
  margin-bottom: 20px;
  z-index: 10;
}

.float-button__wrap {
  display: none; /*最初は隠す*/
  width: 200px;
  height: 45px;
  position: fixed;
  bottom: 28px;
  right: 5px;
  z-index: 10;
}

.hidden {
  display: none;
}

body {
  font-size: 17px;
}
@media only screen and (max-width: 769px) {
  body {
    font-size: 15px;
  }
}

.wrapper {
  width: 100%;
  background-color: white;
  margin-top: 97px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 769px) {
  .wrapper {
    display: block;
  }
}
.wrapper .pc-right {
  width: 290px;
  margin: 0px 0px 0px 30px;
  background-color: white;
  padding: 15px 0px 0px 15px;
}
@media only screen and (max-width: 769px) {
  .wrapper .pc-right {
    width: 100%;
    margin: 0px;
    padding: 0px;
  }
}
.wrapper .pc-left {
  width: 800px;
  margin: 0px;
  background-color: #f1f6ef;
}
@media only screen and (max-width: 769px) {
  .wrapper .pc-left {
    width: 100%;
  }
}
.wrapper .pc-left-2 {
  width: 800px;
  margin: 0px;
  background-color: white;
}
@media only screen and (max-width: 769px) {
  .wrapper .pc-left-2 {
    width: 100%;
  }
}

.fornt-bana-waku {
  padding: 30px 0px 10px;
  width: 800px;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  justify-content: space-between;
  background: white;
}
@media only screen and (max-width: 769px) {
  .fornt-bana-waku {
    width: 100%;
    padding: 3%;
  }
}
.fornt-bana-waku .front-bana-inner {
  width: 32.5%;
  display: block;
  margin: 5px 0px;
}
.fornt-bana-waku .front-bana-inner img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5/1;
}

.front-menu-top {
  display: flex;
  justify-content: flex-start;
  background: #f1f6ef;
  margin-top: -3px;
  align-items: center;
  flex-wrap: wrap;
}
.front-menu-top .menu-inner-inner {
  padding: 5px 10px;
  font-size: 12px;
}
.front-menu-top-inner {
  width: 1100px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .front-menu-top-inner {
    width: 100%;
  }
}

.susume-section {
  width: 100%;
  background-color: #E1EDF0;
  padding: 50px;
  display: block;
}
@media only screen and (max-width: 769px) {
  .susume-section {
    width: 100%;
    padding: 10% 7%;
    margin: auto;
  }
}
.susume-section-inner {
  width: 700px;
}
@media only screen and (max-width: 769px) {
  .susume-section-inner {
    width: 100%;
  }
}
.susume-section-inner .title-waku {
  text-align: center;
  margin: auto;
}
.susume-section-inner .title-waku .title {
  font-size: 30px;
  letter-spacing: 4px;
  text-align: center;
  letter-spacing: 8px;
  font-weight: 700;
  color: #28626F;
  border-bottom: 1px solid #28626F;
  display: inline-block;
}
@media only screen and (max-width: 769px) {
  .susume-section-inner .title-waku .title {
    font-size: 5vw;
  }
}
.susume-section-inner .midori-waku-title {
  border: 2px solid #28626F;
  font-size: 25px;
  width: 100%;
  background-color: #F1EE71;
  color: #28626F;
  max-width: 1000px;
  padding: 5px 20px;
  position: relative;
  margin: 50px auto 10px;
  display: block;
}
@media only screen and (max-width: 769px) {
  .susume-section-inner .midori-waku-title {
    font-size: 5vw;
  }
}
.susume-section-inner .midori-waku-title::after {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid #28626F;
  content: "";
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: 50%;
  right: 0px;
  position: absolute;
}
@media only screen and (max-width: 769px) {
  .susume-section-inner .midori-waku-title {
    margin: 5% auto;
  }
}
.susume-section-inner .osusume-waku {
  width: 100%;
  box-shadow: 7px 7px 0px 0 rgb(131, 131, 131);
  background-color: white;
  padding: 5px;
  display: block;
}
.susume-section-inner .osusume-waku:hover {
  margin-top: 30px;
  box-shadow: none;
  margin-bottom: -7px;
}
.susume-section-inner .osusume-waku-inner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5/1;
}
.susume-section-inner .osusume-waku-inner-img img {
  width: 100%;
  height: 100%;
}
.susume-section-inner .osusume-waku-inner-bun {
  width: 90%;
  font-size: 15px;
  line-height: 30px;
  margin: auto;
}
.susume-section-inner .osusume-waku-2 {
  width: 100%;
  box-shadow: 7px 7px 0px 0 rgb(131, 131, 131);
  background-color: white;
  padding: 5px;
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}
.susume-section-inner .osusume-waku-2:hover {
  margin-top: 30px;
  box-shadow: none;
  margin-bottom: -7px;
}
.susume-section-inner .osusume-waku-2-inner-img {
  width: 40%;
  height: auto;
  aspect-ratio: 1.7/1;
}
.susume-section-inner .osusume-waku-2-inner-img img {
  width: 100%;
  height: 100%;
}
.susume-section-inner .osusume-waku-2-inner-bun {
  width: 58%;
  font-size: 15px;
  line-height: 30px;
  margin: 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media only screen and (max-width: 769px) {
  .susume-section-inner .osusume-waku-2-inner-bun {
    font-size: 13px;
    line-height: 20px;
  }
}
.susume-section-inner .midori-btn {
  border: 1px solid #28626F;
  background-color: #F1EE71;
  color: #28626F;
  font-size: 15px;
  text-align: center;
  width: 331px;
  line-height: 56px;
  letter-spacing: 2px;
  position: relative;
  display: block;
  box-shadow: 7px 7px 0px 0 #28626F;
  margin: 10% auto;
}
@media only screen and (max-width: 769px) {
  .susume-section-inner .midori-btn {
    width: 100%;
    max-width: 331px;
  }
}
.susume-section-inner .midori-btn::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  top: 20px;
  right: 20px;
}
.susume-section-inner .midori-btn::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 10px;
  transform: rotate(45deg);
  top: 11px;
  right: 10px;
  background-color: #28626F;
  border-radius: 50%;
}
.susume-section-inner .midori-btn:hover {
  background-color: #64c000;
  color: #28626F;
  box-shadow: none;
}
.susume-section-inner .midori-btn:hover::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  top: 20px;
  right: 20px;
}

.susume-section2 {
  width: 100%;
  background-color: none;
  padding: 50px;
  display: block;
}
@media only screen and (max-width: 769px) {
  .susume-section2 {
    width: 100%;
    padding: 10% 7%;
    margin: auto;
  }
}
.susume-section2-inner {
  width: 700px;
}
@media only screen and (max-width: 769px) {
  .susume-section2-inner {
    width: 100%;
  }
}
.susume-section2-inner .title-waku {
  text-align: center;
  margin: auto;
}
.susume-section2-inner .title-waku .title {
  font-size: 30px;
  letter-spacing: 4px;
  text-align: center;
  letter-spacing: 8px;
  font-weight: 700;
  color: #28626F;
  border-bottom: 1px solid #28626F;
  display: inline-block;
}
@media only screen and (max-width: 769px) {
  .susume-section2-inner .title-waku .title {
    font-size: 5vw;
  }
}
.susume-section2-inner .midori-waku-title {
  border: 2px solid #28626F;
  font-size: 25px;
  width: 100%;
  background-color: #F1EE71;
  color: #28626F;
  max-width: 1000px;
  padding: 5px 20px;
  position: relative;
  margin: 50px auto 10px;
}
@media only screen and (max-width: 769px) {
  .susume-section2-inner .midori-waku-title {
    font-size: 5vw;
  }
}
.susume-section2-inner .midori-waku-title::after {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid #28626F;
  content: "";
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: 50%;
  right: 0px;
  position: absolute;
}
@media only screen and (max-width: 769px) {
  .susume-section2-inner .midori-waku-title {
    margin: 5% auto;
  }
}
.susume-section2-inner .osusume-waku {
  width: 100%;
  box-shadow: 7px 7px 0px 0 rgb(131, 131, 131);
  background-color: white;
  padding: 5px;
}
.susume-section2-inner .osusume-waku-inner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5/1;
}
.susume-section2-inner .osusume-waku-inner-img img {
  width: 100%;
  height: 100%;
}
.susume-section2-inner .osusume-waku-inner-bun {
  width: 90%;
  font-size: 15px;
  line-height: 30px;
  margin: auto;
}
.susume-section2-inner .osusume-waku-2 {
  width: 100%;
  box-shadow: 7px 7px 0px 0 rgb(131, 131, 131);
  background-color: white;
  padding: 5px;
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}
.susume-section2-inner .osusume-waku-2:hover {
  margin-top: 30px;
  box-shadow: none;
  margin-bottom: -7px;
}
.susume-section2-inner .osusume-waku-2-inner-img-waku {
  width: 40%;
}
.susume-section2-inner .osusume-waku-2-inner-img-waku .tag {
  background-color: #28626F;
  color: white;
  width: 100%;
  line-height: 20px;
  font-size: 13px;
  text-align: center;
  padding: 5px 0px;
}
.susume-section2-inner .osusume-waku-2-inner-img-waku .osusume-waku-2-inner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.7/1;
}
.susume-section2-inner .osusume-waku-2-inner-img-waku .osusume-waku-2-inner-img img {
  width: 100%;
  height: 100%;
}
.susume-section2 .osusume-waku-2-inner-bun {
  width: 58%;
  font-size: 15px;
  line-height: 30px;
  margin: 0px;
  position: relative;
}
.susume-section2 .osusume-waku-2-inner-bun .bun {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
@media only screen and (max-width: 769px) {
  .susume-section2 .osusume-waku-2-inner-bun .bun {
    font-size: 13px;
    line-height: 20px;
    -webkit-line-clamp: 4;
  }
}
.susume-section2 .osusume-waku-2-inner-bun .date {
  color: black;
  font-size: 10px;
  line-height: 1;
  font-size: 13px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.susume-section2 .midori-btn {
  border: 1px solid #28626F;
  background-color: #F1EE71;
  color: #28626F;
  font-size: 15px;
  text-align: center;
  width: 331px;
  line-height: 56px;
  letter-spacing: 2px;
  position: relative;
  display: block;
  box-shadow: 7px 7px 0px 0 #28626F;
  margin: 10% auto;
}
@media only screen and (max-width: 769px) {
  .susume-section2 .midori-btn {
    width: 100%;
    max-width: 331px;
  }
}
.susume-section2 .midori-btn::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  top: 20px;
  right: 20px;
}
.susume-section2 .midori-btn::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 10px;
  transform: rotate(45deg);
  top: 11px;
  right: 10px;
  background-color: #28626F;
  border-radius: 50%;
}
.susume-section2 .midori-btn:hover {
  background-color: #64c000;
  color: #28626F;
  box-shadow: none;
}
.susume-section2 .midori-btn:hover::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  top: 20px;
  right: 20px;
}

.front-sarch-section {
  width: 100%;
  background: none;
  display: block;
}
@media only screen and (max-width: 769px) {
  .front-sarch-section {
    width: 100%;
    padding: 10% 7%;
    margin: auto;
    background-color: #E1EDF0;
  }
}
.front-sarch-section .search_container {
  box-sizing: border-box;
  height: 35px;
  display: flex;
  border: 1px solid #74696A;
  background: white;
  width: 331px;
  margin: auto;
  height: 56px;
  justify-content: space-between;
}
.front-sarch-section .search_button {
  position: relative;
  cursor: pointer; /* マウスカーソルをポインターに変更する */
}
.front-sarch-section .search_button::after {
  background-image: url("../img/front/search.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px; /* 虫眼鏡のイメージの適切なサイズに調整してください */
  height: 20px;
  border: none; /* ボーダーを削除するために必要な場合 */
  padding: 0; /* パディングを削除するために必要な場合 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.front-sarch-section .search_container input[type=text] {
  background: white;
  padding-left: 5px;
}
.front-sarch-section .search_container input[type=text]:focus {
  outline: 0;
}
.front-sarch-section .search_container input[type=submit] {
  cursor: pointer;
  font-family: FontAwesome;
  border: none;
  background: #74696A;
  color: #fff;
  outline: none;
  width: 70px;
  height: 54px;
}
.front-sarch-section .searc-title-waku {
  margin: 10px auto;
}
.front-sarch-section .searc-title-waku .searc-title {
  background-color: #28626F;
  color: white;
  font-size: 15px;
  text-align: left;
  width: 100%;
  line-height: 56px;
  letter-spacing: 2px;
  display: block;
  padding: 0px 20px;
  line-height: 45px;
}
@media only screen and (max-width: 769px) {
  .front-sarch-section .searc-title-waku .searc-title {
    font-size: 13px;
    padding: 0px 10px;
  }
}
.front-sarch-section .searc-title-waku .searc-bun {
  background-color: white;
  border-bottom: 1px solid gray;
  font-size: 15px;
  text-align: left;
  width: 100%;
  line-height: 56px;
  letter-spacing: 2px;
  display: block;
  padding: 0px 20px;
}
@media only screen and (max-width: 769px) {
  .front-sarch-section .searc-title-waku .searc-bun {
    font-size: 13px;
    padding: 0px 10px;
  }
}
.front-sarch-section .searc-title-waku .searc-bun:last-child {
  border-bottom: none;
}
.front-sarch-section .searc-title-waku .searc-bun-2 {
  background-color: white;
  border-bottom: 1px solid gray;
  font-size: 15px;
  text-align: left;
  width: 100%;
  line-height: 30px;
  letter-spacing: 2px;
  display: block;
  padding: 10px 0px;
}
@media only screen and (max-width: 769px) {
  .front-sarch-section .searc-title-waku .searc-bun-2 {
    font-size: 13px;
    padding: 10px 10px 10px;
    margin: 0px;
  }
}
.front-sarch-section .searc-title-waku .searc-bun-2:last-child {
  border-bottom: none;
}

.sidbar-kanshu-waku {
  width: 100%;
  margin: 20px auto 10px;
  border: 1px solid gray;
  padding: 30px 10px 10px;
  border-radius: 10px;
  position: relative;
  background: #f1ee71;
}
.sidbar-kanshu-waku-img {
  width: 80%;
  margin: 5px auto;
}
@media only screen and (max-width: 769px) {
  .sidbar-kanshu-waku-img {
    width: 60%;
  }
}
.sidbar-kanshu-waku-bun {
  width: 90%;
  font-size: 13px;
}
.sidbar-kanshu-waku-title {
  background: #28626f;
  color: white;
  position: absolute;
  border-radius: 5px;
  padding: 5px 10px;
  top: -10px;
  left: 20px;
}

.site-information-waku {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 769px) {
  .site-information-waku {
    padding: 5% 5%;
  }
}
.site-information-waku .site-title-waku {
  margin: 0px auto 0px;
  background: white;
  padding: 20px 0px 20px;
}
.site-information-waku .site-title-waku .site-title {
  font-size: 15px;
  text-align: left;
  width: 100%;
  line-height: 30px;
  letter-spacing: 2px;
  display: block;
  padding: 0px 20px 0px 0px;
  background: none;
  color: #28626F;
  border-bottom: 2px solid #28626F;
  display: inline-block;
  width: auto;
  font-weight: 800;
  width: 100%;
  padding: 0px 20px;
}
.site-information-waku .site-title-waku .site-bun {
  background-color: white;
  border-bottom: 1px solid gray;
  font-size: 15px;
  text-align: left;
  width: 100%;
  line-height: 56px;
  letter-spacing: 2px;
  display: block;
  padding: 0px 20px;
}
@media only screen and (max-width: 769px) {
  .site-information-waku .site-title-waku .site-bun {
    font-size: 13px;
    padding: 0px 10px;
  }
}
.site-information-waku .site-title-waku .site-bun:last-child {
  border-bottom: none;
}
.site-information-waku .site-title-waku .site-bun-2 {
  background-color: white;
  border-bottom: 1px solid gray;
  font-size: 15px;
  text-align: left;
  width: 100%;
  line-height: 30px;
  letter-spacing: 2px;
  display: block;
  padding: 10px 0px;
  line-height: 35px;
  border-bottom: none;
  margin-top: 0px;
  padding-bottom: 0px;
}
@media only screen and (max-width: 769px) {
  .site-information-waku .site-title-waku .site-bun-2 {
    font-size: 13px;
    padding: 10px 10px 10px;
    margin: 0px;
  }
}
.site-information-waku .site-title-waku .site-bun-2:last-child {
  border-bottom: none;
}

.single-wrap {
  width: 100%;
}
.single-wrap .single-title {
  background-color: #28626f;
  font-size: 25px;
  color: white;
  max-width: 1000px;
  padding: 5px 20px;
  position: relative;
  margin: 0px auto 0px;
  padding: 20px 20px;
  display: block;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 769px) {
  .single-wrap .single-title {
    font-size: 18px;
    padding: 5%;
  }
}
.single-wrap .bread-list {
  background-color: #f0f0f0;
  padding: 5px 20px;
  display: flex;
  color: #6e6e6e;
  font-size: 12px;
  align-items: center;
}
.single-wrap .triangle-migi {
  width: 0;
  height: 0;
  border-left: 5px solid #6e6e6e;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin: 0px 5px;
}
.single-wrap .single-subtitle-waku {
  background-color: #f0ee71;
  padding: 20px 20px;
}
@media only screen and (max-width: 769px) {
  .single-wrap .single-subtitle-waku {
    padding: 5%;
  }
}
.single-wrap .sub-title {
  font-size: 25px;
  margin-top: 20px;
  line-height: 35px;
}
@media only screen and (max-width: 769px) {
  .single-wrap .sub-title {
    font-size: 18px;
    line-height: 28px;
    margin: auto;
    font-weight: bolder;
  }
}
.single-wrap .tag-waku {
  display: flex;
  justify-content: flex-start;
  padding: 0px 20px 20px;
  background-color: #f0ee71;
}
.single-wrap .tag-waku .dli-clock {
  display: inline-block;
  vertical-align: middle;
  color: #28626f;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}
.single-wrap .tag-waku .dli-clock::before, .single-wrap .tag-waku .dli-clock::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 50%;
  background: currentColor;
  border-radius: 0.1em;
  transform: translate(-0.05em, 0.05em);
}
.single-wrap .tag-waku .dli-clock::before {
  width: 0.1em;
  height: 0.4em;
}
.single-wrap .tag-waku .dli-clock::after {
  width: 0.35em;
  height: 0.1em;
}
.single-wrap .tag-waku .tag {
  background: #28626f;
  color: white;
  padding: 1px 10px;
  font-size: 13px;
  margin-right: 10px;
}
.single-wrap .tag-waku .kousin {
  font-size: 13px;
  color: #6e6e6e;
  margin-left: 10px;
}
.single-wrap .content-1 {
  width: 100%;
  background-color: #f1f6ef;
}
.single-wrap .content-1 .contnet-1-title {
  font-size: 25px;
  line-height: 35px;
  padding: 20px 20px;
  color: #878383;
}
@media only screen and (max-width: 769px) {
  .single-wrap .content-1 .contnet-1-title {
    font-size: 15px;
    line-height: 25px;
  }
}
.single-wrap .content-1 .content-img {
  width: 100%;
  height: auto;
}
.single-wrap .content-1 .content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-wrap .about-content-waku {
  margin: 0px auto;
  padding: 20px 50px 30px;
  background-color: white;
}
@media only screen and (max-width: 769px) {
  .single-wrap .about-content-waku {
    padding: 10% 8%;
  }
}
.single-wrap .about-content-waku .content-wrap {
  border: 1px solid gray;
  font-size: 15px;
  padding: 5px 20px;
}
.single-wrap .about-content-waku .content-wrap .about-title {
  width: 100%;
  background-color: white;
  color: gray;
  position: relative;
  margin: 0px auto 0px;
  display: block;
  position: relative;
  font-size: 15px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}
.single-wrap .about-content-waku .content-wrap .about-title::after {
  display: inline-block;
  vertical-align: middle;
  color: #808080;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(135deg);
  position: absolute;
  top: 18%;
  right: 50px;
  content: "";
}
@media only screen and (max-width: 769px) {
  .single-wrap .about-content-waku .content-wrap .about-title::after {
    right: 3%;
  }
}
.single-wrap .about-content-waku .content-wrap .about-title.active::after {
  transform: translateY(25%) rotate(315deg);
}
.single-wrap .about-content-waku .content-wrap .acMenu-inner-content {
  display: none;
  text-align: left;
  font-size: 15px;
  line-height: 25px;
}
.single-wrap .review-content {
  display: none !important;
  background-color: #FFF2F2;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content {
    padding: 20px 10px;
  }
}
.single-wrap .review-content.active {
  display: block !important;
}
.single-wrap .review-content-inner {
  display: flex;
  padding: 0px 20px 30px;
  background: white;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner {
    padding: 0px 5% 10px;
    align-items: center;
  }
}
.single-wrap .review-content-inner .left {
  width: 15%;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner .left {
    width: 15%;
    margin: 0px;
  }
}
.single-wrap .review-content-inner .left .img {
  margin: 0px auto;
}
.single-wrap .review-content-inner .left .font {
  font-size: 16px;
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner .left .font {
    text-align: center;
  }
}
.single-wrap .review-content-inner .right {
  width: 85%;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner .right {
    width: 85%;
    margin: 0px;
  }
}
.single-wrap .review-content-inner .right-inner {
  display: flex;
  margin-left: 10px;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner .right-inner {
    margin: 0px;
  }
}
.single-wrap .review-content-inner .right-inner .yajirushi {
  display: inline-block;
  vertical-align: middle;
  color: #e0f1f8;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 15px 23px;
  border-right-color: currentColor;
  border-left: 0;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner .right-inner .yajirushi {
    border-width: 8px 13px;
  }
}
.single-wrap .review-content-inner .right-inner .migi-waku {
  background-color: #e0f1f8;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner .right-inner .migi-waku {
    padding: 10px;
  }
}
.single-wrap .review-content-inner .right-inner .migi-waku-title {
  font-size: 20px;
  color: #FA6E78;
  margin-bottom: 10px;
  border-bottom: 1px solid #FA6E78;
  padding-bottom: 10px;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner .right-inner .migi-waku-title {
    font-size: 1rem;
  }
}
.single-wrap .review-content-inner .right-inner .migi-waku-bun {
  font-size: 15px;
  line-height: 25px;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner .right-inner .migi-waku-bun {
    font-size: 0.9rem;
  }
}
.single-wrap .review-content-inner .right-inner .migi-waku-chui {
  text-align: right;
  font-size: 10px;
  color: #4A4A4A;
}
.single-wrap .review-content-inner-2 {
  display: flex;
  padding: 0px 20px 30px;
  background: white;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner-2 {
    padding: 0px 5% 10px;
  }
}
.single-wrap .review-content-inner-2 .left {
  width: 85%;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner-2 .left {
    width: 85%;
    margin: 0px;
  }
}
.single-wrap .review-content-inner-2 .left-inner {
  display: flex;
  margin-left: 10px;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner-2 .left-inner {
    margin: 0;
  }
}
.single-wrap .review-content-inner-2 .left-inner .yajirushi {
  display: inline-block;
  vertical-align: middle;
  color: #fcfbc2;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 15px 23px;
  border-left-color: currentColor;
  border-right: 0;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner-2 .left-inner .yajirushi {
    border-width: 8px 13px;
  }
}
.single-wrap .review-content-inner-2 .left-inner .migi-waku {
  background-color: #fcfbc2;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner-2 .left-inner .migi-waku {
    padding: 10px;
  }
}
.single-wrap .review-content-inner-2 .left-inner .migi-waku-title {
  font-size: 20px;
  color: #FA6E78;
  margin-bottom: 10px;
  border-bottom: 1px solid #FA6E78;
  padding-bottom: 10px;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner-2 .left-inner .migi-waku-title {
    font-size: 1rem;
  }
}
.single-wrap .review-content-inner-2 .left-inner .migi-waku-bun {
  font-size: 15px;
  line-height: 25px;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner-2 .left-inner .migi-waku-bun {
    font-size: 0.9rem;
  }
}
.single-wrap .review-content-inner-2 .left-inner .migi-waku-chui {
  text-align: right;
  font-size: 10px;
  color: #4A4A4A;
}
.single-wrap .review-content-inner-2 .right {
  width: 15%;
}
@media only screen and (max-width: 769px) {
  .single-wrap .review-content-inner-2 .right {
    width: 15%;
    margin: 0px;
  }
}
.single-wrap .review-content-inner-2 .right .img {
  margin: 0px auto;
}

.content-2-waku {
  background-color: #f1f6ef;
  margin: 0px auto;
  padding: 30px 50px;
}
@media only screen and (max-width: 769px) {
  .content-2-waku {
    padding: 5%;
  }
}
.content-2-waku .title-1 {
  font-size: 18px;
  line-height: 28px;
}
@media only screen and (max-width: 769px) {
  .content-2-waku .title-1 {
    font-size: 15px;
    line-height: 25px;
  }
}
.content-2-waku .single-osusume-waku {
  padding: 20px;
  background-color: #f0ee71;
  margin: 20px auto;
}
@media only screen and (max-width: 769px) {
  .content-2-waku .single-osusume-waku {
    padding: 10px 5px;
    margin: 10px auto;
  }
}
.content-2-waku .single-osusume-waku .title {
  font-size: 15px;
  text-align: left;
  width: 100%;
  line-height: 30px;
  letter-spacing: 2px;
  display: block;
  padding: 10px 20px;
  line-height: 35px;
  border-bottom: none;
  padding: 5px;
  color: #28626f;
}
@media only screen and (max-width: 769px) {
  .content-2-waku .single-osusume-waku .title {
    line-height: 25px;
  }
}

.section-ranking-waku {
  background-color: white;
  padding: 50px;
}
@media only screen and (max-width: 769px) {
  .section-ranking-waku {
    padding: 10% 5%;
  }
}
.section-ranking-waku .ranking-btn-wrap {
  border: 1px solid gray;
  font-size: 15px;
  padding: 5px 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 769px) {
  .section-ranking-waku .ranking-btn-wrap {
    padding: 5px 0px;
  }
}
.section-ranking-waku .ranking-btn-wrap .ranking-btn {
  width: 100%;
  background-color: white;
  color: gray;
  max-width: 1000px;
  position: relative;
  display: block;
  position: relative;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}
.section-ranking-waku .ranking-btn-wrap .ranking-btn::after {
  display: inline-block;
  vertical-align: middle;
  color: #808080;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(135deg);
  position: absolute;
  top: 12px;
  right: 50px;
  content: "";
}
.section-ranking-waku .ranking-btn-wrap .ranking-btn.active::after {
  transform: translateY(25%) rotate(315deg);
}
.section-ranking-waku .ranking-btn-wrap .acMenu-inner-content {
  display: none;
  text-align: left;
  margin-top: 10px;
}
.section-ranking-waku .ranking-btn-wrap .acMenu-inner-content .searc-title-waku {
  margin: 0px auto;
}
.section-ranking-waku .ranking-btn-wrap .acMenu-inner-content .searc-title-waku .searc-title {
  background-color: #28626F;
  color: white;
  font-size: 15px;
  text-align: left;
  width: 100%;
  line-height: 56px;
  letter-spacing: 2px;
  display: block;
  padding: 0px 20px;
  background-color: #f0ee71;
  color: #28626f;
}
@media only screen and (max-width: 769px) {
  .section-ranking-waku .ranking-btn-wrap .acMenu-inner-content .searc-title-waku .searc-title {
    font-size: 13px;
    padding: 0px 10px;
  }
}
.section-ranking-waku .ranking-btn-wrap .acMenu-inner-content .searc-title-waku .searc-bun {
  background-color: white;
  border-bottom: 1px solid gray;
  font-size: 15px;
  text-align: left;
  width: 100%;
  line-height: 56px;
  letter-spacing: 2px;
  display: block;
  padding: 0px 20px;
}
@media only screen and (max-width: 769px) {
  .section-ranking-waku .ranking-btn-wrap .acMenu-inner-content .searc-title-waku .searc-bun {
    font-size: 13px;
    padding: 0px 10px;
  }
}
.section-ranking-waku .ranking-btn-wrap .acMenu-inner-content .searc-title-waku .searc-bun:last-child {
  border-bottom: none;
}
.section-ranking-waku .ranking-btn-wrap .acMenu-inner-content .searc-title-waku .searc-bun-2 {
  background-color: white;
  border-bottom: 1px solid gray;
  font-size: 15px;
  text-align: left;
  width: 100%;
  line-height: 30px;
  letter-spacing: 2px;
  display: block;
  padding: 10px 0px;
}
@media only screen and (max-width: 769px) {
  .section-ranking-waku .ranking-btn-wrap .acMenu-inner-content .searc-title-waku .searc-bun-2 {
    font-size: 13px;
    padding: 10px 10px 10px;
    margin: 0px;
  }
}
.section-ranking-waku .ranking-btn-wrap .acMenu-inner-content .searc-title-waku .searc-bun-2:last-child {
  border-bottom: none;
}
.section-ranking-waku .ranking-btn-wrap .ranking-mokuji-btn {
  width: 100%;
  background-color: white;
  color: gray;
  max-width: 1000px;
  position: relative;
  display: block;
  position: relative;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}
.section-ranking-waku .ranking-btn-wrap .mokuji-acMenu-inner-content {
  text-align: left;
  margin-top: 10px;
}
.section-ranking-waku .ranking-btn-wrap .mokuji-acMenu-inner-content .searc-title-waku {
  margin: 0px auto;
}
.section-ranking-waku .ranking-btn-wrap .mokuji-acMenu-inner-content .searc-title-waku .searc-title {
  background-color: #28626F;
  color: white;
  font-size: 15px;
  text-align: left;
  width: 100%;
  line-height: 56px;
  letter-spacing: 2px;
  display: block;
  padding: 0px 20px;
  background-color: #f0ee71;
  color: #28626f;
}
@media only screen and (max-width: 769px) {
  .section-ranking-waku .ranking-btn-wrap .mokuji-acMenu-inner-content .searc-title-waku .searc-title {
    font-size: 13px;
    padding: 0px 10px;
  }
}
.section-ranking-waku .ranking-btn-wrap .mokuji-acMenu-inner-content .searc-title-waku .searc-bun {
  background-color: white;
  border-bottom: 1px solid gray;
  font-size: 15px;
  text-align: left;
  width: 100%;
  line-height: 56px;
  letter-spacing: 2px;
  display: block;
  padding: 0px 20px;
}
@media only screen and (max-width: 769px) {
  .section-ranking-waku .ranking-btn-wrap .mokuji-acMenu-inner-content .searc-title-waku .searc-bun {
    font-size: 13px;
    padding: 0px 10px;
  }
}
.section-ranking-waku .ranking-btn-wrap .mokuji-acMenu-inner-content .searc-title-waku .searc-bun:last-child {
  border-bottom: none;
}
.section-ranking-waku .ranking-btn-wrap .mokuji-acMenu-inner-content .searc-title-waku .searc-bun-2 {
  background-color: white;
  border-bottom: 1px solid gray;
  font-size: 15px;
  text-align: left;
  width: 100%;
  line-height: 30px;
  letter-spacing: 2px;
  display: block;
  padding: 10px 0px;
}
@media only screen and (max-width: 769px) {
  .section-ranking-waku .ranking-btn-wrap .mokuji-acMenu-inner-content .searc-title-waku .searc-bun-2 {
    font-size: 13px;
    padding: 10px 10px 10px;
    margin: 0px;
  }
}
.section-ranking-waku .ranking-btn-wrap .mokuji-acMenu-inner-content .searc-title-waku .searc-bun-2:last-child {
  border-bottom: none;
}

.osusume-ranking-waku {
  width: 100%;
  margin: 0px auto;
}
.osusume-ranking-waku .title {
  background-color: #64c000;
  font-size: 18px;
  width: 100%;
  color: white;
  max-width: 1000px;
  padding: 5px 20px;
  position: relative;
  margin: 0px auto 0px;
  padding: 20px 20px;
  display: block;
  text-align: center;
}
.osusume-ranking-waku .osusume-ranking-waku-inner {
  padding: 30px 50px 0px;
  background-color: white;
}
@media only screen and (max-width: 769px) {
  .osusume-ranking-waku .osusume-ranking-waku-inner {
    padding: 5% 5% 0 5%;
  }
}
.osusume-ranking-waku .osusume-ranking-waku-inner .img-1 {
  width: 100%;
  height: auto;
}
.osusume-ranking-waku .osusume-ranking-waku-inner .title-1 {
  font-size: 18px;
  border-left: 5px solid #3a6f70;
  border-bottom: 2px solid #3a6f70;
  color: #3a6f70;
  padding-left: 20px;
  margin: 20px auto;
  font-weight: 800;
  line-height: 48px;
}
@media only screen and (max-width: 769px) {
  .osusume-ranking-waku .osusume-ranking-waku-inner .title-1 {
    padding-left: 5px;
    line-height: 28px;
  }
}
.osusume-ranking-waku .osusume-ranking-waku-inner th {
  background-color: #E0F1F8;
}
.osusume-ranking-waku .osusume-ranking-waku-inner th, .osusume-ranking-waku .osusume-ranking-waku-inner td {
  border: 1px #333 solid; /* 枠線をつける */
  padding: 10px;
}
.osusume-ranking-waku .osusume-ranking-waku-inner table {
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
  line-height: 25px;
}
.osusume-ranking-waku .osusume-ranking-waku-inner tr {
  padding: 10px;
}

.ranking-hyou-container {
  margin-inline: auto;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  margin: 30px auto;
  border: 1px solid grey;
}
@media only screen and (max-width: 769px) {
  .ranking-hyou-container {
    width: 90%;
  }
}
.ranking-hyou-container table {
  width: 500px; /* tableタグの親要素より広く */
}
.ranking-hyou-container th {
  border: 1px solid #ccc;
  color: #333;
  font-size: 16px;
  padding: 10px;
  width: 25%;
  background-color: #f0ee71;
  color: #28626f;
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .ranking-hyou-container th {
    font-size: 13px;
  }
}
.ranking-hyou-container .fixed {
  position: sticky;
  left: 0;
  z-index: 10;
  background-color: white;
  bottom: 0px;
  border-bottom: 1px solid #ccc;
}
.ranking-hyou-container .fixed::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 1px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #ccc;
}
.ranking-hyou-container .fixed::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 1px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.ranking-hyou-container tr {
  display: table-row;
}
.ranking-hyou-container td {
  border: 1px solid #ccc;
  font-size: 16px;
  padding: 20px;
  background-color: white;
  vertical-align: middle;
}
@media only screen and (max-width: 769px) {
  .ranking-hyou-container td {
    padding: 10px;
    font-size: 13px;
  }
}
.ranking-hyou-container td .img {
  width: 60px;
  margin: auto;
}
.ranking-hyou-container td .img-logo {
  width: 100%;
  margin: auto;
}
.ranking-hyou-container td .link {
  background-color: #c7c0bc;
  padding: 3px 12px;
  margin: auto;
  border-radius: 10px;
}
.ranking-hyou-container .rank {
  text-align: center;
}
.ranking-hyou-container .center {
  text-align: center;
}
.ranking-hyou-container .rank-table {
  width: auto; /* テキストの長さに合わせて幅を自動調整する */
  white-space: normal; /* テキストの改行を許可する */
}

.ranking-section-1 {
  width: 100%;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 {
    margin: 10% auto;
  }
}
.ranking-section-1 .title-waku {
  display: flex;
  justify-content: center;
  margin: 100px auto 30px;
  align-items: center;
  border-bottom: 3px solid #64c000;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .title-waku {
    justify-content: flex-start;
    padding-left: 3%;
    margin: 30px auto 0px;
  }
}
.ranking-section-1 .title-waku .img {
  width: 54px;
  height: auto;
  aspect-ratio: 1/1.2;
  -o-object-fit: cover;
     object-fit: cover;
}
.ranking-section-1 .title-waku .img img {
  width: 100%;
  height: 100%;
}
.ranking-section-1 .title-waku .title {
  font-size: 40px;
  margin-left: 5px;
  font-weight: bold;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .title-waku .title {
    font-size: 22px;
    line-height: 30px;
  }
}
.ranking-section-1 .raking-img-waku {
  width: 100%;
  box-shadow: 0 0 8px gray;
  background-color: white;
  padding: 5px;
  display: block;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .raking-img-waku {
    width: 90%;
  }
}
.ranking-section-1 .raking-img-waku .ranking-title-img {
  width: 100%;
  height: auto;
}
.ranking-section-1 .raking-img-waku .ranking-title-img img {
  width: 100%;
  height: 100%;
}
.ranking-section-1 .raking-img-waku .ranking-img-bun {
  width: 95%;
  font-size: 15px;
  line-height: 30px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .raking-img-waku .ranking-img-bun {
    width: 90%;
  }
}
.ranking-section-1 .ranking-content-2 {
  border-radius: 20px;
  border: 1px solid #286270;
  margin: 50px auto 10px;
  padding: 10px;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .ranking-content-2 {
    width: 90%;
    border-radius: 5px;
  }
}
.ranking-section-1 .ranking-content-2 .title-waku {
  width: 98%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #286270;
  border-radius: 8px;
  margin-top: -34px;
  padding: 10px;
  margin-bottom: 9px;
  border-bottom: none;
}
.ranking-section-1 .ranking-content-2 .title {
  font-size: 25px;
  color: white;
  margin-left: 10px;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .ranking-content-2 .title {
    font-size: 15px;
    margin-left: 0px;
  }
}
.ranking-section-1 .ranking-content-2 .inner-title {
  font-size: 20px;
  margin-left: 10px;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .ranking-content-2 .inner-title {
    font-size: 15px;
    margin-left: 0px;
  }
}
.ranking-section-1 .table-waku {
  margin: 30px auto;
  width: 90%;
}
.ranking-section-1 .table-waku table {
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
  line-height: 25px;
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .table-waku table {
    font-size: 13px;
    line-height: 20px;
  }
}
.ranking-section-1 .table-waku th {
  border: 1px #333 solid;
  padding: 10px;
  background-color: #fcfbc2;
}
.ranking-section-1 .table-waku tr {
  padding: 10px;
}
.ranking-section-1 .table-waku td {
  border: 1px #333 solid;
  padding: 10px;
}
.ranking-section-1 .review-content {
  display: none !important;
  background-color: #FFF2F2;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content {
    padding: 20px 10px;
  }
}
.ranking-section-1 .review-content.active {
  display: block !important;
}
.ranking-section-1 .review-content-inner {
  display: flex;
  padding: 0px 20px 30px;
  background: white;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content-inner {
    padding: 0px 5% 10px;
    align-items: center;
  }
}
.ranking-section-1 .review-content-inner .left {
  width: 15%;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content-inner .left {
    width: 15%;
    margin: 0px;
  }
}
.ranking-section-1 .review-content-inner .left .img {
  margin: 0px auto;
}
.ranking-section-1 .review-content-inner .left .font {
  font-size: 16px;
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content-inner .left .font {
    text-align: center;
  }
}
.ranking-section-1 .review-content-inner .right {
  width: 85%;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content-inner .right {
    width: 85%;
    margin: 0px;
  }
}
.ranking-section-1 .review-content-inner .right-inner {
  display: flex;
  margin-left: 10px;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content-inner .right-inner {
    margin: 0px;
  }
}
.ranking-section-1 .review-content-inner .right-inner .yajirushi {
  display: inline-block;
  vertical-align: middle;
  color: #e0f1f8;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 10px 15px;
  border-right-color: currentColor;
  border-left: 0;
}
.ranking-section-1 .review-content-inner .right-inner .migi-waku {
  background-color: #e0f1f8;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content-inner .right-inner .migi-waku {
    padding: 10px;
  }
}
.ranking-section-1 .review-content-inner .right-inner .migi-waku-title {
  font-size: 20px;
  color: #FA6E78;
  margin-bottom: 10px;
  border-bottom: 1px solid #FA6E78;
  padding-bottom: 10px;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content-inner .right-inner .migi-waku-title {
    font-size: 1rem;
  }
}
.ranking-section-1 .review-content-inner .right-inner .migi-waku-bun {
  font-size: 15px;
  line-height: 25px;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content-inner .right-inner .migi-waku-bun {
    font-size: 0.9rem;
  }
}
.ranking-section-1 .review-content-inner .right-inner .migi-waku-chui {
  text-align: right;
  font-size: 10px;
  color: #4A4A4A;
}
.ranking-section-1 .review-content-inner-2 {
  display: flex;
  padding: 0px 20px 30px;
  background: white;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content-inner-2 {
    padding: 0px 5% 10px;
    align-items: center;
  }
}
.ranking-section-1 .review-content-inner-2 .left {
  width: 85%;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content-inner-2 .left {
    width: 85%;
    margin: 0px;
  }
}
.ranking-section-1 .review-content-inner-2 .left-inner {
  display: flex;
  margin-left: 10px;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content-inner-2 .left-inner {
    margin: 0px;
  }
}
.ranking-section-1 .review-content-inner-2 .left-inner .yajirushi {
  display: inline-block;
  vertical-align: middle;
  color: #fcfbc2;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 10px 15px;
  border-left-color: currentColor;
  border-right: 0;
}
.ranking-section-1 .review-content-inner-2 .left-inner .migi-waku {
  background-color: #fcfbc2;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content-inner-2 .left-inner .migi-waku {
    padding: 10px;
  }
}
.ranking-section-1 .review-content-inner-2 .left-inner .migi-waku-title {
  font-size: 20px;
  color: #FA6E78;
  margin-bottom: 10px;
  border-bottom: 1px solid #FA6E78;
  padding-bottom: 10px;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content-inner-2 .left-inner .migi-waku-title {
    font-size: 1rem;
  }
}
.ranking-section-1 .review-content-inner-2 .left-inner .migi-waku-bun {
  font-size: 15px;
  line-height: 25px;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content-inner-2 .left-inner .migi-waku-bun {
    font-size: 0.9rem;
  }
}
.ranking-section-1 .review-content-inner-2 .left-inner .migi-waku-chui {
  text-align: right;
  font-size: 10px;
  color: #4A4A4A;
}
.ranking-section-1 .review-content-inner-2 .right {
  width: 15%;
}
@media only screen and (max-width: 769px) {
  .ranking-section-1 .review-content-inner-2 .right {
    width: 15%;
    margin: 0px;
  }
}
.ranking-section-1 .review-content-inner-2 .right .img {
  margin: 0px auto;
}

.ranking-fukidashi {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #286270;
  border-radius: 8px;
  margin-top: -34px;
  padding: 10px;
  margin-bottom: 9px;
  position: relative;
  color: white;
  padding-left: 20px;
  margin-top: 30px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 769px) {
  .ranking-fukidashi {
    width: 90%;
    margin: 30px auto 0px;
  }
}
.ranking-fukidashi::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid #286270;
  bottom: -14px;
  left: 20px;
}

.ranking-text-waku {
  margin: 30px auto;
  font-size: 15px;
}
@media only screen and (max-width: 769px) {
  .ranking-text-waku {
    width: 90%;
    margin: 5% auto;
  }
}

a.btn--green {
  color: #ffffff;
  background-color: #77DC67;
  width: 400px;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  text-shadow: -1px 1px 1px #272727;
  font-size: 25px;
  margin: 30px auto;
  display: block;
  box-shadow: 5px 5px 0px 0 #1a5e29;
}
@media only screen and (max-width: 769px) {
  a.btn--green {
    width: 90%;
    max-width: 400px;
    font-size: 20px;
  }
}
a.btn--green:hover {
  margin-top: 35px;
  background: #77DC67;
  box-shadow: none;
  margin-bottom: 30px;
}

.ranking-fukidashi-waku {
  display: block;
  margin: 30px auto 3px;
  text-align: center;
}
.ranking-fukidashi-waku .fukidashi {
  margin: auto;
  position: relative;
  padding: 10px 20px;
  border-bottom: 3px solid #f40305;
  border-left: 3px solid #f40305;
  border-radius: 0 0 0 5px;
  display: inline-block;
  color: red;
}
@media only screen and (max-width: 769px) {
  .ranking-fukidashi-waku .fukidashi {
    width: 90%;
  }
}
.ranking-fukidashi-waku .fukidashi::before {
  position: absolute;
  right: 50px;
  bottom: -21px;
  width: 0;
  height: 0;
  content: "";
  border-width: 21px 21px 0 0;
  border-style: solid;
  border-color: #f40305 transparent transparent transparent;
}
.ranking-fukidashi-waku .fukidashi::after {
  position: absolute;
  right: 54px;
  bottom: -14px;
  width: 0;
  height: 0;
  content: "";
  border-width: 14px 14px 0 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.ranking-fukidashi-waku .fukidashi-2 {
  margin: auto;
  position: relative;
  padding: 10px 20px;
  border-bottom: 3px solid #f40305;
  border-left: 3px solid #f40305;
  border-radius: 0 0 0 5px;
  display: inline-block;
  color: red;
  background-color: #f0ee71;
}
@media only screen and (max-width: 769px) {
  .ranking-fukidashi-waku .fukidashi-2 {
    width: 90%;
  }
}
.ranking-fukidashi-waku .fukidashi-2::before {
  position: absolute;
  right: 50px;
  bottom: -21px;
  width: 0;
  height: 0;
  content: "";
  border-width: 21px 21px 0 0;
  border-style: solid;
  border-color: #f40305 transparent transparent transparent;
}
.ranking-fukidashi-waku .fukidashi-2::after {
  position: absolute;
  right: 54px;
  bottom: -14px;
  width: 0;
  height: 0;
  content: "";
  border-width: 14px 14px 0 0;
  border-style: solid;
  border-color: #f0ee71 transparent transparent transparent;
}

.ranking-hito-fukidashi .review-content-inner {
  display: flex;
  padding: 0px 20px 30px;
  background: white;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  .ranking-hito-fukidashi .review-content-inner {
    padding: 0px 5%;
    align-items: center;
  }
}
.ranking-hito-fukidashi .review-content-inner .left {
  width: 15%;
}
.ranking-hito-fukidashi .review-content-inner .right {
  width: 85%;
}
.ranking-hito-fukidashi .review-content-inner .right-inner {
  display: flex;
  margin-left: 10px;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  .ranking-hito-fukidashi .review-content-inner .right-inner {
    margin-left: 0;
  }
}
.ranking-hito-fukidashi .review-content-inner .right-inner .migi-waku {
  background-color: #eeffef;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .ranking-hito-fukidashi .review-content-inner .right-inner .migi-waku {
    padding: 10px;
    margin-bottom: 10px;
  }
}
.ranking-hito-fukidashi .review-content-inner .right-inner .migi-waku-bun {
  font-size: 15px;
  line-height: 25px;
}
.ranking-hito-fukidashi .review-content-inner .right-inner .yajirushi {
  display: inline-block;
  vertical-align: middle;
  color: #eeffef;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 15px 23px;
  border-right-color: currentColor;
  border-left: 0;
}
@media only screen and (max-width: 769px) {
  .ranking-hito-fukidashi .review-content-inner .right-inner .yajirushi {
    border-width: 5px 15px;
  }
}

.midashi-1 {
  position: relative;
  display: inline-block;
  height: 64px;
  margin-left: 30px;
  padding: 1rem 2rem 1rem 3rem;
  color: #fff;
  background: #cb3b3b;
  width: 100%;
  text-align: center;
  margin: 0px auto;
  line-height: 39px;
}
@media only screen and (max-width: 769px) {
  .midashi-1 {
    width: 90%;
    margin: auto;
    display: block;
    border-radius: 5px;
  }
}
.midashi-1::before {
  position: absolute;
  top: 0;
  left: -30px;
  content: "";
  border-width: 32px 30px 32px 0;
  border-style: solid;
  border-color: transparent #cb3b3b transparent transparent;
}
@media only screen and (max-width: 769px) {
  .midashi-1::before {
    content: none;
  }
}
.midashi-1::after {
  position: absolute;
  top: calc(50% - 7px);
  left: -10px;
  width: 14px;
  height: 14px;
  content: "";
  border-radius: 50%;
  background: #fff;
}
@media only screen and (max-width: 769px) {
  .midashi-1::after {
    content: none;
  }
}

.midashi-2 {
  position: relative;
  display: inline-block;
  height: 64px;
  margin-left: 30px;
  padding: 1rem 2rem 1rem 3rem;
  color: #fff;
  background: #076BAF;
  width: 100%;
  text-align: center;
  margin: 0px auto;
  line-height: 39px;
}
@media only screen and (max-width: 769px) {
  .midashi-2 {
    width: 90%;
    margin: auto;
    display: block;
    border-radius: 5px;
  }
}
.midashi-2::before {
  position: absolute;
  top: 0;
  left: -30px;
  content: "";
  border-width: 32px 30px 32px 0;
  border-style: solid;
  border-color: transparent #076BAF transparent transparent;
}
@media only screen and (max-width: 769px) {
  .midashi-2::before {
    content: none;
  }
}
.midashi-2::after {
  position: absolute;
  top: calc(50% - 7px);
  left: -10px;
  width: 14px;
  height: 14px;
  content: "";
  border-radius: 50%;
  background: #fff;
}
@media only screen and (max-width: 769px) {
  .midashi-2::after {
    content: none;
  }
}

.balloon2-left {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 0px 15px;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #e0edff;
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .balloon2-left {
    width: 90%;
    margin: 5% auto;
    display: block;
  }
}
.balloon2-left::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #e0edff;
}
.balloon2-left p {
  margin: 0;
  padding: 0;
}
.balloon2-left:last-child {
  margin-bottom: 2em;
}

.balloon3-left {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 0px 15px;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: rgba(255, 0, 76, 0.1019607843);
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .balloon3-left {
    width: 90%;
    margin: 5% auto;
    display: block;
  }
}
.balloon3-left::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid rgba(255, 0, 76, 0.1019607843);
}
.balloon3-left p {
  margin: 0;
  padding: 0;
}
.balloon3-left:last-child {
  margin-bottom: 2em;
}

.campain-waku {
  background-color: #f1f6ef;
  padding: 10px 10px 10px;
}
@media only screen and (max-width: 769px) {
  .campain-waku {
    padding: 5% 6%;
  }
}
.campain-waku .campain-inner-bun {
  padding: 10px 20px;
}
@media only screen and (max-width: 769px) {
  .campain-waku .campain-inner-bun {
    padding: 5% 0px;
  }
}
.campain-waku .campain {
  line-height: 60px;
  position: relative;
  height: 60px;
  margin: 10px 50px 1em;
  padding: 0 2rem;
  text-align: center;
  color: #336a70;
  background: #f0ee71;
}
@media only screen and (max-width: 769px) {
  .campain-waku .campain {
    width: 100%;
    margin: auto;
    border-radius: 5px;
  }
}
.campain-waku .campain:before,
.campain-waku .campain:after {
  position: absolute;
  top: 0;
  display: block;
  height: 48px;
  content: "";
  border: 30px solid #f0ee71;
}
@media only screen and (max-width: 769px) {
  .campain-waku .campain:before,
  .campain-waku .campain:after {
    content: none;
  }
}
.campain-waku .campain:before {
  left: -40px;
  border-left-width: 15px;
  border-left-color: transparent;
}
.campain-waku .campain:after {
  right: -40px;
  border-right-width: 15px;
  border-right-color: transparent;
}
.campain-waku .campain span {
  position: relative;
  display: block;
}

a.btn--red {
  color: #ffffff;
  background-color: #ff0000;
  border-bottom: 5px solid #ca0404;
  display: block;
  width: 400px;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  text-shadow: -1px 1px 1px #272727;
  font-size: 25px;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  a.btn--red {
    width: 90%;
  }
}
a.btn--red:hover {
  margin-top: 33px;
  background: #ff0000;
  border-bottom: 2px solid #ca0404;
}

.shousai-btn {
  border: 1px solid gray;
  font-size: 15px;
  padding: 5px 20px;
  margin-bottom: 10px;
  width: 400px;
  display: block;
  text-align: center;
  line-height: 50px;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .shousai-btn {
    width: 90%;
  }
}
.shousai-btn:hover {
  background: #9ca3a3;
}

.ranking-matome {
  width: 100%;
  margin: 100px auto;
}
@media only screen and (max-width: 769px) {
  .ranking-matome {
    margin: 10% auto 0px;
  }
}
.ranking-matome .title {
  background-color: #64c000;
  font-size: 18px;
  width: 100%;
  color: white;
  max-width: 1000px;
  padding: 5px 20px;
  position: relative;
  margin: 0px auto 0px;
  padding: 20px 20px;
  display: block;
  text-align: center;
}
.ranking-matome .title-2 {
  background-color: #190E44;
  font-size: 18px;
  width: 100%;
  color: white;
  max-width: 1000px;
  padding: 5px 20px;
  position: relative;
  margin: 0px auto 0px;
  padding: 20px 20px;
  display: block;
  text-align: center;
}
.ranking-matome .title-img {
  margin: 10px auto;
  width: 100%;
}
.ranking-matome .review-content {
  display: none !important;
  background-color: #FFF2F2;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content {
    padding: 20px 10px;
  }
}
.ranking-matome .review-content.active {
  display: block !important;
}
.ranking-matome .review-content-inner {
  display: flex;
  padding: 0px 20px 30px;
  background: white;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content-inner {
    padding: 0px 5% 10px;
    align-items: center;
  }
}
.ranking-matome .review-content-inner .left {
  width: 15%;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content-inner .left {
    width: 15%;
    margin: 0px;
  }
}
.ranking-matome .review-content-inner .left .img {
  margin: 0px auto;
}
.ranking-matome .review-content-inner .left .font {
  font-size: 16px;
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content-inner .left .font {
    text-align: center;
  }
}
.ranking-matome .review-content-inner .right {
  width: 85%;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content-inner .right {
    width: 85%;
    margin: 0px;
  }
}
.ranking-matome .review-content-inner .right-inner {
  display: flex;
  margin-left: 10px;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content-inner .right-inner {
    margin: 0px;
  }
}
.ranking-matome .review-content-inner .right-inner .yajirushi {
  display: inline-block;
  vertical-align: middle;
  color: #eeffef;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 10px 15px;
  border-right-color: currentColor;
  border-left: 0;
}
.ranking-matome .review-content-inner .right-inner .migi-waku {
  background-color: #eeffef;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content-inner .right-inner .migi-waku {
    padding: 10px;
  }
}
.ranking-matome .review-content-inner .right-inner .migi-waku-title {
  font-size: 20px;
  color: #FA6E78;
  margin-bottom: 10px;
  border-bottom: 1px solid #FA6E78;
  padding-bottom: 10px;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content-inner .right-inner .migi-waku-title {
    font-size: 1rem;
  }
}
.ranking-matome .review-content-inner .right-inner .migi-waku-bun {
  font-size: 15px;
  line-height: 25px;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content-inner .right-inner .migi-waku-bun {
    font-size: 0.9rem;
  }
}
.ranking-matome .review-content-inner .right-inner .migi-waku-chui {
  text-align: right;
  font-size: 10px;
  color: #4A4A4A;
}
.ranking-matome .review-content-inner-2 {
  display: flex;
  padding: 0px 20px 30px;
  background: white;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content-inner-2 {
    padding: 0px 5% 10px;
    align-items: center;
  }
}
.ranking-matome .review-content-inner-2 .left {
  width: 85%;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content-inner-2 .left {
    width: 85%;
    margin: 0px;
  }
}
.ranking-matome .review-content-inner-2 .left-inner {
  display: flex;
  margin-left: 10px;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content-inner-2 .left-inner {
    margin: 0px;
  }
}
.ranking-matome .review-content-inner-2 .left-inner .yajirushi {
  display: inline-block;
  vertical-align: middle;
  color: #fcfbc2;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 10px 15px;
  border-left-color: currentColor;
  border-right: 0;
}
.ranking-matome .review-content-inner-2 .left-inner .migi-waku {
  background-color: #fcfbc2;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content-inner-2 .left-inner .migi-waku {
    padding: 10px;
  }
}
.ranking-matome .review-content-inner-2 .left-inner .migi-waku-title {
  font-size: 20px;
  color: #FA6E78;
  margin-bottom: 10px;
  border-bottom: 1px solid #FA6E78;
  padding-bottom: 10px;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content-inner-2 .left-inner .migi-waku-title {
    font-size: 1rem;
  }
}
.ranking-matome .review-content-inner-2 .left-inner .migi-waku-bun {
  font-size: 15px;
  line-height: 25px;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content-inner-2 .left-inner .migi-waku-bun {
    font-size: 0.9rem;
  }
}
.ranking-matome .review-content-inner-2 .left-inner .migi-waku-chui {
  text-align: right;
  font-size: 10px;
  color: #4A4A4A;
}
.ranking-matome .review-content-inner-2 .right {
  width: 15%;
}
@media only screen and (max-width: 769px) {
  .ranking-matome .review-content-inner-2 .right {
    width: 15%;
    margin: 0px;
  }
}
.ranking-matome .review-content-inner-2 .right .img {
  margin: 0px auto;
}

.step-5 {
  border: 1px solid #286270;
  border-radius: 10px;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .step-5 {
    width: 90%;
    margin: 5% auto;
    border-radius: 5px;
  }
}
.step-5 .inner-title {
  background-color: #f0ee71;
  color: #28626f;
  font-size: 20px;
  padding: 20px;
  border-radius: 10px 10px 0px 0px;
}
@media only screen and (max-width: 769px) {
  .step-5 .inner-title {
    border-radius: 5px 5px 0px 0px;
    font-size: 18px;
    padding: 5px 20px;
  }
}
.step-5 .inner-bun {
  font-size: 20px;
  color: black;
  padding: 5px 20px;
}
@media only screen and (max-width: 769px) {
  .step-5 .inner-bun {
    font-size: 18px;
    padding: 5px 20px;
  }
}

.step-shousai-title-2 {
  display: flex;
  justify-content: flex-start;
  background-color: #f0ee71;
  line-height: 50px;
  margin: 20px auto;
}
@media only screen and (max-width: 769px) {
  .step-shousai-title-2 {
    width: 90%;
    margin: auto;
  }
}
.step-shousai-title-2 .step-num {
  background-color: #28626f;
  font-size: 25px;
  color: white;
  font-weight: 900;
  width: 50px;
  text-align: center;
}
.step-shousai-title-2 .step-bun {
  margin-left: 20px;
  font-size: 20px;
  color: #28626f;
  font-weight: bolder;
}

.step-shousai-title-3 {
  display: flex;
  justify-content: flex-start;
  background-color: #f0ee71;
  line-height: 50px;
  margin: 20px auto;
}
@media only screen and (max-width: 769px) {
  .step-shousai-title-3 {
    width: 90%;
    margin: auto;
  }
}
.step-shousai-title-3 .step-bun {
  margin-left: 0px;
  font-size: 20px;
  color: #28626f;
  font-weight: bolder;
  border-left: 20px solid #28626f;
  padding-left: 10px;
}

.step-shousai-title {
  display: flex;
  justify-content: flex-start;
  background-color: #f0ee71;
  line-height: 50px;
}
@media only screen and (max-width: 769px) {
  .step-shousai-title {
    width: 90%;
    margin: auto;
  }
}
.step-shousai-title .step-num {
  background-color: #28626f;
  font-size: 25px;
  color: white;
  font-weight: 900;
  width: 50px;
  text-align: center;
}
.step-shousai-title .step-bun {
  margin-left: 20px;
  font-size: 20px;
  color: #28626f;
  font-weight: bolder;
}

.table-waku-2 {
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .table-waku-2 {
    width: 90%;
    margin: 5% auto;
  }
}
.table-waku-2 table {
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
  line-height: 25px;
  text-align: center;
}
.table-waku-2 th {
  border: 1px #333 solid;
  padding: 10px;
  background-color: #E0F1F8;
}
.table-waku-2 tr {
  padding: 10px;
}
.table-waku-2 td {
  border: 1px #333 solid;
  padding: 10px;
}

.hyouhan {
  border: 2px solid #28626f;
  border-radius: 10px;
  margin: 30px auto;
  padding: 20px;
  font-size: 20px;
  font-weight: bolder;
  color: #28626f;
  background-color: #f0ee71;
}
@media only screen and (max-width: 769px) {
  .hyouhan {
    width: 90%;
    padding: 8px 10px;
    font-size: 15px;
    line-height: 25px;
  }
}
.hyouhan-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.gg-arrow-right-r {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border: 2px solid;
  transform: scale(var(--ggs, 1));
  border-radius: 4px;
  margin-right: 10px;
}

.gg-arrow-right-r::after,
.gg-arrow-right-r::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  right: 4px;
}

.gg-arrow-right-r::after {
  width: 6px;
  height: 6px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  bottom: 6px;
}

.gg-arrow-right-r::before {
  width: 10px;
  height: 2px;
  bottom: 8px;
  background: currentColor;
}

.santei {
  background-color: #e9e8e8;
  margin: 30px auto;
  padding: 10px 20px 20px;
}
@media only screen and (max-width: 769px) {
  .santei {
    padding: 3% 5%;
    margin: 1px auto;
  }
}
.santei .title {
  background-color: white;
  padding: 7px 20px;
  color: red;
  margin-bottom: 10px;
}
@media only screen and (max-width: 769px) {
  .santei .title {
    padding: 5px;
    margin-bottom: 0px;
    border-bottom: 1px solid;
    background-color: #e9e8e8;
  }
}
.santei .title-2 {
  border-bottom: 1px solid black;
  margin-bottom: 10px;
  padding: 7px 20px;
  background: none;
  color: black;
}
@media only screen and (max-width: 769px) {
  .santei .title-2 {
    padding: 0px;
  }
}
.santei .inner-bun {
  font-size: 18px;
  line-height: 28px;
  display: block;
}
@media only screen and (max-width: 769px) {
  .santei .inner-bun {
    font-size: 13px;
  }
}

@media only screen and (max-width: 769px) {
  .sm-text-right-chui {
    width: 90%;
    margin: -15px auto;
    text-align: left;
  }
}

.search-form-005 {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid #858585;
  margin-top: 10px;
}

.search-form-005 input {
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  border: none;
  border-radius: 3px 0 0 3px;
  box-sizing: border-box;
  background-color: #ffffff;
  font-size: 1em;
  outline: none;
}

.search-form-005 input::-moz-placeholder {
  color: #767d83;
}

.search-form-005 input::placeholder {
  color: #767d83;
}

.search-form-005 button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 45px;
  border: none;
  border-radius: 0 3px 3px 0;
  background-color: #858585;
  cursor: pointer;
}

.search-form-005 button::after {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20d%3D%22M23.7%2020.8%2019%2016.1c-.2-.2-.5-.3-.8-.3h-.8c1.3-1.7%202-3.7%202-6C19.5%204.4%2015.1%200%209.7%200S0%204.4%200%209.7s4.4%209.7%209.7%209.7c2.3%200%204.3-.8%206-2v.8c0%20.3.1.6.3.8l4.7%204.7c.4.4%201.2.4%201.6%200l1.3-1.3c.5-.5.5-1.2.1-1.6zm-14-5.1c-3.3%200-6-2.7-6-6s2.7-6%206-6%206%202.7%206%206-2.6%206-6%206z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%20%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  content: "";
}

.template-waku {
  margin: 20px auto;
}
@media only screen and (max-width: 769px) {
  .template-waku {
    margin: 10% auto;
  }
}
.template-waku .osusume-ranking-waku-inner {
  padding: 0px;
}

.pro-content-warp {
  margin-top: 70px;
}
.pro-content-warp .swiper-wrap {
  position: relative;
  height: 392px;
}
.pro-content-warp .swiper-wrap .bana-waku {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  width: 60%;
  bottom: 0;
  left: 0;
  padding: 30px 30px 30px 20%;
  color: black;
}
@media only screen and (max-width: 769px) {
  .pro-content-warp .swiper-wrap .bana-waku {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    width: 70%;
    bottom: 0;
    left: 0;
    padding: 30px 30px 30px 5%;
    color: black;
  }
}
.pro-content-warp .swiper-wrap .bana-waku .title {
  font-size: 17px;
  font-weight: 700;
  line-height: 27px;
  text-align: left;
}
@media only screen and (max-width: 769px) {
  .pro-content-warp .swiper-wrap .bana-waku .title {
    font-size: 16px;
    line-height: 22px;
  }
}
.pro-content-warp .swiper-wrap .bana-waku .bun {
  font-size: 15px;
  margin-top: 10px;
  line-height: 25px;
  text-align: left;
}
@media only screen and (max-width: 769px) {
  .pro-content-warp .swiper-wrap .bana-waku .bun {
    font-size: 15px;
    line-height: 25px;
  }
}
.pro-content-warp .swiper-wrap .bana-waku .shousai-btn {
  border: 1px solid #28626F;
  background-color: #F1EE71;
  color: #28626F;
  font-size: 15px;
  text-align: center;
  width: 331px;
  line-height: 56px;
  letter-spacing: 2px;
  position: relative;
  display: block;
  box-shadow: 7px 7px 0px 0 #28626F;
  margin: 10px auto 10px 0px;
}
@media only screen and (max-width: 769px) {
  .pro-content-warp .swiper-wrap .bana-waku .shousai-btn {
    width: 100%;
    max-width: 331px;
  }
}
.pro-content-warp .swiper-wrap .bana-waku .shousai-btn::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  top: 20px;
  right: 20px;
}
.pro-content-warp .swiper-wrap .bana-waku .shousai-btn::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 10px;
  transform: rotate(45deg);
  top: 11px;
  right: 10px;
  background-color: #28626F;
  border-radius: 50%;
}
.pro-content-warp .swiper-wrap .bana-waku .shousai-btn:hover {
  background-color: #64c000;
  color: #28626F;
  box-shadow: none;
}
.pro-content-warp .swiper-wrap .bana-waku .shousai-btn:hover::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  top: 20px;
  right: 20px;
}

.swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: 392px;
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 300px;
}
.swiper-slide img {
  width: 100%;
  height: 392px;
  -o-object-fit: none;
     object-fit: none;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  color: aliceblue;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  color: aliceblue;
}

.pro-bana-waku {
  width: 1000px;
  margin: 100px auto;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 769px) {
  .pro-bana-waku {
    width: 100%;
    margin: 10% auto;
  }
}
.pro-bana-waku-inner {
  width: 30%;
  margin: 10px 1.5%;
  background-color: green;
  position: relative;
  border-radius: 7px;
}
@media only screen and (max-width: 769px) {
  .pro-bana-waku-inner {
    width: 47%;
    overflow: hidden;
  }
}
.pro-bana-waku-inner:hover {
  opacity: 0.5;
}
.pro-bana-waku-inner .inner-img {
  width: 100%;
  height: 200px;
  z-index: 1;
}
@media only screen and (max-width: 769px) {
  .pro-bana-waku-inner .inner-img {
    position: relative;
    height: 78%;
  }
}
.pro-bana-waku-inner .inner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.pro-bana-waku-inner .inner-title {
  color: white;
  font-size: 15px;
  text-align: left;
  font-weight: 800;
  height: 109px;
  padding: 40px;
}
@media only screen and (max-width: 769px) {
  .pro-bana-waku-inner .inner-title {
    color: white;
    font-size: 15px;
    text-align: left;
    font-weight: 800;
    height: 67px;
    padding: 12px;
  }
}
.pro-bana-waku-inner .inner-waku {
  padding: 40px;
  color: white;
}
.pro-bana-waku-inner .inner-waku .day {
  font-size: 13px;
}
.pro-bana-waku-inner .inner-waku .title-bun {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 表示する行数 */
  -webkit-box-orient: vertical;
}
.pro-bana-waku-inner .comming-soon-font {
  color: white;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 3;
}
@media only screen and (max-width: 769px) {
  .pro-bana-waku-inner .comming-soon-font {
    width: 100%;
    text-align: center;
  }
}
.pro-bana-waku-inner .comming-soon {
  position: absolute;
  background-color: black;
  opacity: 0.5;
  width: 100%;
  height: 309px;
  line-height: 309px;
  font-weight: 700;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 5px;
}

.pro-bana-waku2 {
  width: 800px;
  margin: 100px auto;
}
@media only screen and (max-width: 769px) {
  .pro-bana-waku2 {
    width: 100%;
    margin: 10% auto;
  }
}
.pro-bana-waku2-inner {
  width: 30%;
  margin: 10px 1.5%;
  background-color: white;
  position: relative;
}
@media only screen and (max-width: 769px) {
  .pro-bana-waku2-inner {
    width: 47%;
    overflow: hidden;
  }
}
.pro-bana-waku2-inner:hover {
  opacity: 0.5;
}
.pro-bana-waku2-inner .inner-img {
  width: 100%;
  height: 200px;
  z-index: 1;
}
@media only screen and (max-width: 769px) {
  .pro-bana-waku2-inner .inner-img {
    position: relative;
    height: 78%;
  }
}
.pro-bana-waku2-inner .inner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pro-bana-waku2-inner .inner-title {
  color: white;
  font-size: 15px;
  text-align: left;
  font-weight: 800;
  height: 109px;
  padding: 40px;
}
@media only screen and (max-width: 769px) {
  .pro-bana-waku2-inner .inner-title {
    color: white;
    font-size: 15px;
    text-align: left;
    font-weight: 800;
    height: 67px;
    padding: 12px;
  }
}
.pro-bana-waku2-inner .inner-waku {
  padding: 40px;
  color: black;
  background-color: white;
}
.pro-bana-waku2-inner .inner-waku .day {
  font-size: 13px;
}
.pro-bana-waku2-inner .inner-waku .title-bun {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 表示する行数 */
  -webkit-box-orient: vertical;
}
.pro-bana-waku2-inner .comming-soon-font {
  color: white;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 3;
}
@media only screen and (max-width: 769px) {
  .pro-bana-waku2-inner .comming-soon-font {
    width: 100%;
    text-align: center;
  }
}
.pro-bana-waku2-inner .comming-soon {
  position: absolute;
  background-color: black;
  opacity: 0.5;
  width: 100%;
  height: 309px;
  line-height: 309px;
  font-weight: 700;
  left: 0;
  top: 0;
  z-index: 2;
}

/* ======================================
お知らせ詳細
====================================== */
@media (min-width: 768px) {
  .container {
    width: 1000px;
    margin: 0 auto;
    padding: 0px 0;
  }
}
/* パンくずリスト */
.breadcrumbs {
  display: flex;
  align-items: center;
  margin-bottom: 9.2308%;
  overflow-x: scroll;
  color: #6b2800;
  font-size: 10px;
  line-height: 1.6;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  /* IE・Edge スクロールバー非表示 */
  -ms-overflow-style: none;
  /* Firefox スクロールバー非表示 */
  scrollbar-width: none;
}

/* Chrome・Safari スクロールバー非表示 */
.breadcrumbs::-webkit-scrollbar {
  display: none;
}

.breadcrumbs li:not(:last-child) {
  margin-right: 0.25em;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.25em;
  content: "＞";
}

.breadcrumbs a,
.breadcrumbs span {
  display: inline-block;
  padding: 0 0.25em;
}

.breadcrumbs a {
  color: #6b2800;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .breadcrumbs {
    margin-bottom: 80px;
    color: #2e2121;
    font-size: 14px;
    line-height: 20px;
  }
  .breadcrumbs a {
    color: #2e2121;
  }
}
/* 大見出し */
.tl {
  color: #280d04;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .tl {
    font-size: 30px;
    line-height: 1;
  }
}
/* ボックス */
.box {
  margin-top: 6.1538%;
  padding: 7.6924%;
  background-color: #fff;
  border-radius: 5px;
  border-top-left-radius: 0;
}

@media (min-width: 768px) {
  .box {
    margin-top: 40px;
    padding: 50px 100px;
    border-radius: 10px;
  }
}
/* 日付 */
.date {
  color: black;
  font-size: 10px;
  line-height: 1;
}

@media (min-width: 768px) {
  .date {
    font-size: 14px;
    line-height: 20px;
  }
}
/* 中見出し */
.tm {
  margin-top: 2.9091%;
  color: #2b2b2b;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.3334;
}

@media (min-width: 768px) {
  .tm {
    margin-top: 14px;
    font-size: 24px;
    line-height: 30px;
  }
}
/* アイキャッチ画像 */
.eyecatch {
  margin-top: 2.9091%;
  overflow: hidden;
  border-radius: 5px;
}

@media (min-width: 768px) {
  .eyecatch {
    margin-top: 34px;
    border-radius: 10px;
  }
}
/* 本文 */
.article {
  margin-top: 7.6364%;
  color: #2c1b1e;
  font-size: 0.75rem;
  line-height: 2;
}

.article > * {
  margin: 1.5rem 0;
}

.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  font-weight: bold;
  line-height: 1.5;
}

.article h1 {
  font-size: 1rem;
}

.article h2 {
  font-size: 1rem;
}

.article h3 {
  padding-bottom: 0.5em;
  font-size: 0.9rem;
  border-bottom: 1px solid #2c1b1e;
}

.article h4 {
  padding: 0.25em 0 0.25em 0.5em;
  font-size: 0.9rem;
  border-left: 5px solid #2c1b1e;
}

.article h5 {
  padding: 0.5em 1em;
  font-size: 0.8rem;
  background-color: #f7f5f0;
  border-radius: 5px;
}

.article h6 {
  padding-bottom: 0.5em;
  font-size: 0.8rem;
  border-bottom: 1px solid #2c1b1e;
}

.article ul,
.article ol {
  margin-left: 1rem;
}

.article ul {
  list-style-type: disc;
}

.article ol {
  list-style-type: decimal;
}

.article a {
  color: #6b2800;
  font-weight: bold;
  text-decoration: underline;
}

.article a:hover {
  text-decoration: none;
}

.article img {
  max-width: 100%;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
}

.article blockquote {
  position: relative;
  padding: 1em 1em 1em 3em;
  font-style: italic;
  background: #f7f5f0 url(../img/info_detail/blockquote.svg) no-repeat 10px 10px/10% auto;
  border-radius: 5px;
}

.article table {
  width: 100%;
  border: 1px solid #2b2b2b;
  border-collapse: collapse;
}

.article table th,
.article table td {
  padding: 5px;
  font-size: 10px;
  line-height: 1.8;
  vertical-align: middle;
  border: 1px solid #2b2b2b;
}

.article table th {
  font-weight: bold;
  white-space: nowrap;
  background-color: #e7dfd5;
}

.article table td {
  background-color: #fff;
}

@media (min-width: 768px) {
  .article {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2;
  }
  .article h1 {
    font-size: 24px;
  }
  .article h2 {
    font-size: 22px;
  }
  .article h3 {
    font-size: 20px;
  }
  .article h4 {
    font-size: 18px;
  }
  .article h5 {
    font-size: 16px;
  }
  .article h6 {
    font-size: 15px;
  }
  .article img,
  .article blockquote {
    border-radius: 10px;
  }
  .article blockquote {
    padding: 20px 20px 20px 60px;
    background-position: 20px 20px;
    background-size: 30px auto;
  }
  .article table th br {
    display: none;
  }
  .article table th,
  .article table td {
    padding: 10px 25px;
    font-size: 14px;
  }
  .article table th {
    width: 25%;
  }
}
/* SNSリンク */
.nav_sns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 9.091%;
}

.nav_sns dt {
  display: flex;
  align-items: center;
  margin-right: 24px;
  color: #e0d9c8;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.nav_sns dt::after {
  display: block;
  width: 20px;
  height: 1px;
  margin-left: 8px;
  background-color: #e0d9c8;
  content: "";
}

.nav_sns dd {
  flex-basis: 18px;
}

.nav_sns dd:not(:last-child) {
  margin-right: 20px;
}

@media (min-width: 768px) {
  .nav_sns {
    margin-top: 80px;
  }
  .nav_sns dt {
    font-size: 14px;
  }
  .nav_sns dt::after {
    width: 40px;
    margin-left: 10px;
  }
  .nav_sns dd {
    flex-basis: 30px;
  }
  .nav_sns dd:not(:last-child) {
    margin-right: 20px;
  }
}
/* ページャ */
/* ページャ */
.pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 9.2308% 0 20%;
  line-height: 1;
}

.pager.pc {
  display: none;
}

.pager_prev,
.pager_next {
  flex-basis: 30.7693%;
  display: block;
  margin: auto;
  position: relative;
}

.pager_prev > a,
.pager_next > a {
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 36px;
  color: #2c1b1e;
  font-size: 10px;
  line-height: 1;
  background-color: #fff;
  border: 5px solid #fff;
  border-radius: 18px;
  transition: all 0.5s ease-in-out;
  justify-content: left;
}
@media only screen and (max-width: 769px) {
  .pager_prev > a,
  .pager_next > a {
    justify-content: center;
  }
}

.pager_prev > a > .pager_icon,
.pager_next > a > .pager_icon {
  flex-basis: 25px;
  height: 25px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 12.5px;
  content: "";
}

.pager_prev > a:hover,
.pager_next > a:hover {
  color: #fff;
  background-color: #2c1b1e;
  border-color: #2c1b1e;
  transition: all 0.3s ease-in-out;
}

.pager_prev .pager_icon {
  background-image: url(../img/front/small.png);
  /* width: 20px; */
  display: block;
  width: 20px;
  height: 20px;
  background-size: cover;
  position: absolute;
  top: 8px;
  left: 34px;
  z-index: 99;
  border-radius: 50%;
  margin-left: -22px;
}

.pager_next .pager_icon {
  background-image: url(../img/front/small.png);
  /* width: 20px; */
  display: block;
  width: 20px;
  height: 20px;
  background-size: cover;
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 99;
  border-radius: 50%;
  margin-left: -22px;
}

.pager_txt {
  flex: 1;
  text-align: center;
}

.pager_prev .pager_txt {
  padding-left: 5px;
}

.pager_next .pager_txt {
  padding-right: 5px;
}

.pager_back {
  text-align: center;
  list-style: none;
}

.pager_back > a {
  position: relative;
  display: inline-block;
  padding: 5px 0;
  color: #6b2800;
  font-weight: bold;
  font-size: 10px;
  line-height: 15px;
}

.pager_back > a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #6b2800;
  transform: scaleX(1);
  transform-origin: bottom left;
  transition: transform 0.3s ease-in-out;
  content: "";
}

.pager_back > a:hover::after {
  transform: scaleX(0);
  transform-origin: bottom right;
}

@media (min-width: 768px) {
  .pager {
    margin: 40px 0 100px;
  }
  .pager.sp {
    display: none;
  }
  .pager.pc {
    display: flex;
  }
  .pager_prev,
  .pager_next {
    flex-basis: 260px;
    position: relative;
  }
  .pager_prev .pager_icon {
    background-image: url(../img/front/small.png);
    /* width: 20px; */
    display: block;
    width: 50px;
    height: 50px;
    background-size: cover;
    position: absolute;
    top: 10px;
    left: 34px;
    z-index: 99;
    border-radius: 50%;
    margin-left: -22px;
  }
  .pager_next .pager_icon {
    background-image: url(../img/front/small.png);
    /* width: 20px; */
    display: block;
    width: 50px;
    height: 50px;
    background-size: cover;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99;
    border-radius: 50%;
    margin-left: -22px;
  }
  .pager_prev > a {
    padding-left: 60px;
  }
  .pager_prev > a,
  .pager_next > a {
    width: 100%;
    height: 70px;
    font-size: 14px;
    line-height: 1.5;
    border-width: 10px;
    border-radius: 35px;
  }
  .pager_next > a {
    padding-left: 20px;
  }
  .pager_prev > a > .pager_icon,
  .pager_next > a > .pager_icon {
    flex-basis: 50px;
    height: 50px;
    border-radius: 25px;
  }
  .pager_prev > a > .pager_icon {
    margin-right: 20px;
  }
  .pager_next > a > .pager_icon {
    margin-left: 20px;
  }
  .pager_prev .pager_txt {
    padding: 0 10px 0 0;
    text-align: left;
  }
  .pager_next .pager_txt {
    padding: 0 0 0 10px;
    text-align: right;
  }
  .pager_back > a {
    padding: 5px 15px;
    font-size: 14px;
    line-height: 20px;
  }
}
/* アイテム */
.info {
  margin-top: 6.1539%;
  border-bottom: 1px solid #cacac9;
}

.info_item {
  border-top: 1px solid #cacac9;
}

.info_item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4617%;
  transition: all 0.5s ease-in-out;
}

.info_item > a::after {
  position: relative;
  right: 0;
  width: 28px;
  height: 3px;
  background: url(../img/cm/info_item_bg.png) no-repeat center center/cover;
  transition: all 0.5s ease-in-out;
  content: "";
}

.info_item > a:hover {
  background-color: #fdfcfb;
  transition: all 0.3s ease-in-out;
}

.info_item > a:hover::after {
  right: -20px;
  transition: all 0.3s ease-in-out;
}

.info_img {
  flex-basis: 35px;
  margin-right: 10px;
  overflow: hidden;
  border-radius: 5px;
}
.info_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.info-box {
  display: flex;
  justify-content: center;
  padding: 10px;
  align-items: center;
}

.qa-yajiruhsi {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
.qa-yajiruhsi.active {
  transform: translateY(-25%) rotate(-45deg);
}

.info_item_inner {
  flex: 1;
  margin-right: 5px;
}

.info_item_inner {
  flex: 1;
  margin: auto;
}

.info_box_inner {
  padding: 10px;
  display: none;
}
.info_box_inner.active {
  display: block;
  margin: 20px 0px 10px;
}

.info_date,
.info_title {
  line-height: 1.5;
}

.info_date {
  color: #6b2800;
  font-size: 10px;
}

.info_title {
  color: #2c1b1e;
  font-weight: bold;
  font-size: 13px;
}

@media (min-width: 768px) {
  .info {
    margin-top: 50px;
  }
  .info_item > a {
    padding: 20px;
  }
  .info_item > a::after {
    width: 56px;
    height: 6px;
  }
  .info_item > a:hover::after {
    right: -40px;
  }
  .info_img {
    flex-basis: 100px;
    margin-right: 70px;
    height: 100px;
  }
  .info_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .info_item_inner {
    margin-right: 10px;
  }
  .info_date {
    font-size: 14px;
  }
  .info_title {
    margin-top: 0.6em;
    font-size: 20px;
  }
}
/* ======================================
お知らせ詳細
====================================== */
/* コンテナ */
.container-info {
  padding: 5.3333% 6.66667% 0;
  margin: 15% auto;
}
.container-info img {
  width: auto;
  height: auto;
}

@media (min-width: 768px) {
  .container-info {
    width: 1000px;
    margin: 100px auto;
    padding: 40px 0;
  }
}
/* パンくずリスト */
.breadcrumbs {
  display: flex;
  align-items: center;
  margin-bottom: 9.2308%;
  overflow-x: scroll;
  color: #6b2800;
  font-size: 10px;
  line-height: 1.6;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  /* IE・Edge スクロールバー非表示 */
  -ms-overflow-style: none;
  /* Firefox スクロールバー非表示 */
  scrollbar-width: none;
}

/* Chrome・Safari スクロールバー非表示 */
.breadcrumbs::-webkit-scrollbar {
  display: none;
}

.breadcrumbs li:not(:last-child) {
  margin-right: 0.25em;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.25em;
  content: "＞";
}

.breadcrumbs a,
.breadcrumbs span {
  display: inline-block;
  padding: 0 0.25em;
}

.breadcrumbs a {
  color: #6b2800;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .breadcrumbs {
    margin-bottom: 80px;
    color: #2e2121;
    font-size: 14px;
    line-height: 20px;
  }
  .breadcrumbs a {
    color: #2e2121;
  }
}
/* 大見出し */
.tl {
  color: #280d04;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .tl {
    font-size: 30px;
    line-height: 1;
  }
}
/* ボックス */
.box {
  margin-top: 6.1538%;
  padding: 7.6924%;
  background-color: #fff;
  border-radius: 5px;
  border-top-left-radius: 0;
}

.box-inner {
  width: 100%;
  margin: 50px auto;
}

@media (min-width: 768px) {
  .box {
    margin-top: 40px;
    padding: 50px 100px;
    border-radius: 10px;
  }
  .box-inner {
    width: 800px;
    margin: 10% auto;
  }
}
/* 日付 */
.date {
  color: #6b2800;
  font-size: 10px;
  line-height: 1;
}

@media (min-width: 768px) {
  .date {
    font-size: 14px;
    line-height: 20px;
  }
}
/* 中見出し */
.tm {
  margin-top: 2.9091%;
  color: #2b2b2b;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.3334;
}

@media (min-width: 768px) {
  .tm {
    margin-top: 14px;
    font-size: 24px;
    line-height: 30px;
  }
}
/* アイキャッチ画像 */
.eyecatch {
  margin-top: 2.9091%;
  overflow: hidden;
  border-radius: 5px;
}

@media (min-width: 768px) {
  .eyecatch {
    margin-top: 34px;
    border-radius: 10px;
  }
}
.all-title-waku {
  width: 100%;
  background: linear-gradient(to bottom, #D3E5EF, #F5E7E9, #FDF5EB);
  background: -moz-linear-gradient(top, #D3E5EF, #F5E7E9, #FDF5EB);
  margin: auto;
  padding: 100px 0px 100px;
}
@media only screen and (max-width: 769px) {
  .all-title-waku {
    padding: 15% 0px 15%;
  }
}
.all-title-waku .title-toku {
  margin: 0px auto 0px;
  font-size: 30px;
  letter-spacing: 4px;
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .all-title-waku .title-toku {
    font-size: 5vw;
    letter-spacing: 1vw;
  }
}

.company-section {
  width: 860px;
  margin: 100px auto;
}
@media only screen and (max-width: 769px) {
  .company-section {
    width: 86%;
    margin: 10% auto;
  }
}
.company-section .Table {
  max-width: 830px;
  width: 100%;
  margin: 0 auto 95px;
}
@media only screen and (max-width: 769px) {
  .company-section .Table {
    border: 1px solid #2b2b2b;
    margin: 0 0 19.21875vw;
    width: 100%;
  }
}
.company-section .TableRow__head {
  letter-spacing: 0.0375rem;
  font-size: 15px;
  line-height: 30px;
  width: 33.8%;
  text-align: center;
  font-weight: 400;
  vertical-align: middle;
}
@media only screen and (max-width: 769px) {
  .company-section .TableRow__head {
    font-size: 3.59375vw;
    letter-spacing: 0.21562vw;
    line-height: 2.04348;
    border-bottom: 1px solid #fff;
    width: 35.5%;
  }
}
.company-section .TableRow {
  width: 100%;
}
.company-section .TableRow__set {
  border-bottom: 1px solid #2b2b2b;
}
.company-section .TableRow__data {
  letter-spacing: 0.06875rem;
  font-size: 15px;
  line-height: 30px;
  width: 66.2%;
  border-bottom: 1px solid #818181;
  font-weight: 400;
  padding: 23px 32px 24px 38px;
  vertical-align: middle;
  text-align: justify;
}
@media only screen and (max-width: 769px) {
  .company-section .TableRow__data {
    font-size: 3.59375vw;
    letter-spacing: 0.21562vw;
    line-height: 2.04348;
    border-bottom: 1px solid #818181;
    padding: 5.3125vw 3.59375vw 5.3125vw 4.21875vw;
    width: 64.5%;
  }
}
.company-section .Pp__ttl {
  letter-spacing: 0.1rem;
  font-size: 1.625rem;
  line-height: 1.61538;
  text-align: center;
  margin: 0 0 41px;
  font-weight: 400;
}
@media only screen and (max-width: 769px) {
  .company-section .Pp__ttl {
    font-size: 5.15625vw;
    letter-spacing: 0.25781vw;
    line-height: 1.87879;
    margin: 0 0 5.9375vw;
  }
}
.company-section .Pp__text {
  margin: 0 0 38px;
}
@media only screen and (max-width: 769px) {
  .company-section .Pp__text {
    margin: 0 0 7.1875vw;
  }
}
.company-section .Pp__m {
  letter-spacing: 0.06875rem;
  font-size: 1.125rem;
  line-height: 2.05556;
  text-align: justify;
}
@media only screen and (max-width: 769px) {
  .company-section .Pp__m {
    font-size: 3.59375vw;
    letter-spacing: 0.21562vw;
    line-height: 2.04348;
  }
}
.company-section .PpData {
  margin: 0 0 38px;
}
@media only screen and (max-width: 769px) {
  .company-section .PpData {
    margin: 0 0 7.5vw;
  }
}
.company-section .Corpo__ttl {
  letter-spacing: 0.1rem;
  font-size: 1.625rem;
  line-height: 1.61538;
  text-align: center;
  margin: 0 0 50px;
}
@media only screen and (max-width: 769px) {
  .company-section .Corpo__ttl {
    font-size: 5.15625vw;
    letter-spacing: 0.25781vw;
    line-height: 1.87879;
    margin: 0 0 5.15625vw;
  }
}
.company-section .SpeCo {
  letter-spacing: 0.1rem;
  font-size: 1.625rem;
  line-height: 1.61538;
  margin: 0 0 50px;
  text-align: center;
  font-weight: 400;
}
@media only screen and (max-width: 769px) {
  .company-section .SpeCo {
    font-size: 5.15625vw;
    letter-spacing: 0.25781vw;
    line-height: 1.87879;
  }
}

.footer {
  background-color: #64c002;
  width: 100%;
  padding-bottom: 50px;
}
.footer-inner {
  width: 1000px;
  margin: 0px auto 0px;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 769px) {
  .footer-inner {
    width: 100%;
    margin: 0px auto 0px;
    padding: 20% 8%;
    display: block;
  }
}
.footer-inner-left {
  width: 231px;
}
@media only screen and (max-width: 769px) {
  .footer-inner-left {
    width: 100%;
  }
}
.footer-inner-left-logo {
  margin: 10px auto 10px 22px;
  width: 158px;
  display: block;
}
@media only screen and (max-width: 769px) {
  .footer-inner-left-logo {
    margin: 10px auto;
  }
}
.footer-inner-left-inner {
  display: flex;
  justify-content: center;
  margin: 10px auto;
}
@media only screen and (max-width: 769px) {
  .footer-inner-left-inner {
    margin: 50px auto;
  }
}
.footer-inner-left-inner-img {
  width: 200px;
  margin: 0px 15px;
}
@media only screen and (max-width: 769px) {
  .footer-inner-left-inner-img {
    width: 200px;
  }
}
.footer-inner-right {
  width: 652px;
}
.footer-inner-right-inner {
  display: flex;
  justify-content: flex-end;
  margin: 10px auto;
  font-size: 13px;
  letter-spacing: 3px;
  flex-wrap: wrap;
  line-height: 30px;
}
@media only screen and (max-width: 769px) {
  .footer-inner-right-inner {
    display: flex;
    flex-wrap: wrap;
  }
}
.footer-inner-right-inner-bun {
  margin: auto 0px 0px 10px;
  color: white;
  padding: 0px 10px 0px 0px;
}
@media only screen and (max-width: 769px) {
  .footer-inner-right-inner-bun {
    padding: 0px 10px 0px 0px;
    width: 50%;
    display: block;
    margin: 0px;
    text-align: center;
    border-right: none;
    font-size: 10px;
  }
}
.footer-inner-right-inner-bun2 {
  margin: auto 0px 0px 10px;
  color: white;
  padding: 0px 10px 0px 0px;
}
@media only screen and (max-width: 769px) {
  .footer-inner-right-inner-bun2 {
    padding: 0px 10px 0px 0px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
    text-align: center;
    border-right: none;
  }
}
.footer-inner-right .copy-right {
  font-size: 10px;
  text-align: right;
  margin: 35px 0px 0px 0px;
  color: white;
}

@media only screen and (max-width: 769px) {
  .copy-right {
    font-size: 10px;
    text-align: center;
    color: white;
  }
}

b {
  font-weight: bold;
}

body {
  background-color: white;
  padding-top: 0px;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  margin: 0px;
}
body.fixed {
  position: fixed;
}

.green {
  color: #0E963A;
}

html {
  margin-top: 0px !important;
}

.container {
  width: 100vw;
  overflow-x: hidden;
}

@media only screen and (min-width: 1026px) {
  .pc-only,
  #swiper-top-pc {
    display: block;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1025px) {
  .pc-only,
  #swiper-top-pc {
    display: block;
  }
}
@media only screen and (min-width: 481px) and (max-width: 769px) {
  .pc-only,
  #swiper-top-pc {
    display: none !important;
  }
}
@media only screen and (max-width: 481px) {
  .pc-only,
  #swiper-top-pc {
    display: none !important;
  }
}

@media only screen and (min-width: 481px) and (max-width: 769px) {
  .sm-br {
    display: block;
  }
}
@media only screen and (max-width: 481px) {
  .sm-br {
    display: block;
  }
}
@media only screen and (min-width: 1026px) {
  .sm-br {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1025px) {
  .sm-br {
    display: none !important;
  }
}

@media only screen and (min-width: 481px) and (max-width: 769px) {
  .pc-br {
    display: none !important;
  }
}
@media only screen and (max-width: 481px) {
  .pc-br {
    display: none !important;
  }
}
@media only screen and (min-width: 1026px) {
  .pc-br {
    display: block;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1025px) {
  .pc-br {
    display: block;
  }
}

@media only screen and (min-width: 1026px) {
  .sm-only,
  #swiper-top-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1025px) {
  .sm-only,
  #swiper-top-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 481px) and (max-width: 769px) {
  .sm-only,
  #swiper-top-sm {
    display: block;
  }
}
@media only screen and (max-width: 481px) {
  .sm-only,
  #swiper-top-sm {
    display: block;
  }
}

main {
  margin-top: 80px;
}

img {
  width: 100%;
  height: auto;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}

.fadeIn_up2 {
  opacity: 0;
  transform: translate(0, 30px);
  -webkit-transition: 1s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up2.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fade {
  opacity: 0;
  transition: opacity 3s;
}

.fade.view {
  opacity: 1;
}

@media only screen and (max-width: 769px) {
  .sm-margintop-40 {
    margin-top: 40%;
  }
}

@media only screen and (max-width: 769px) {
  .sm-marginbottom-40 {
    margin-bottom: 40%;
  }
}

.paddingtop-0 {
  padding-top: 0px;
}

.hero {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: auto;
}
.hero .slideshow {
  display: flex;
  animation: loop-slide 20s infinite linear 1s both;
}
.hero .content {
  width: 100px;
  height: auto;
}

/* content4つをまとめたスライドブロック */
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* ホバー時に動きを止める（パターン2・3）*/
.slide-paused:hover .slideshow {
  animation-play-state: paused;
}

/* ホバー時の装飾（パターン3） */
.content-hover {
  transition: all 0.2s;
  margin-right: 20px;
}

.content-hover:hover {
  transform: translateY(-20px);
  border-radius: 0 10%;
  box-shadow: 0 3px 10px 0 #333;
  opacity: 0.8;
  cursor: pointer;
}

.bg-none {
  background: none !important;
}

#page_top {
  position: fixed;
  bottom: 30px;
  right: 20px;
}

#page_top a {
  background-color: #f0ee71;
  color: #28626f;
  text-align: center;
  text-decoration: none;
  width: 60px;
  height: 60px;
  text-align: center;
  margin: auto;
  display: block;
  position: relative;
  display: block;
  border: 2px solid #28626f;
  border-radius: 50%;
  line-height: 60px;
}
#page_top a::after {
  content: "";
  position: absolute;
  top: 27%;
  left: 41%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border: 3px solid;
  border-color: transparent transparent #28626f #28626f;
  transform: rotate(135deg);
}
#page_top a:hover {
  background-color: #64c000;
  text-decoration: none;
}

.font-red {
  color: #FE1E0B;
}

.square_triangle_arrow {
  position: relative;
  padding-left: 35px;
  margin-left: 30px;
}
@media only screen and (max-width: 769px) {
  .square_triangle_arrow {
    margin-left: 5px;
  }
}
.square_triangle_arrow::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 14px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid white;
}
@media only screen and (max-width: 769px) {
  .square_triangle_arrow::after {
    left: 9px;
  }
}
.square_triangle_arrow::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 20px;
  height: 10px;
  background: white;
}
@media only screen and (max-width: 769px) {
  .square_triangle_arrow::before {
    width: 10px;
  }
}

.font-bg-yellow {
  background-color: #f0ee71;
  display: inline-block;
}

.font-blue {
  color: blue;
}

strong,
.strong {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.bg-skyblue {
  background-color: #f1f6ef !important;
}

.bg-blue {
  background-color: #28626f !important;
}

.font-small {
  font-size: 10px;
}

.text-right {
  text-align: right;
}

.block {
  display: block;
}

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

.font-white {
  color: white;
}/*# sourceMappingURL=style.css.map */