@charset "UTF-8";
header {
  width: 100%;
  height: 90px;
  z-index: 999;
  /* ヘッダーに上下左右それぞれ余白を指定 */
  box-sizing: border-box; /* padding分を含んで幅を100%にするため */
  position: fixed; /* ウィンドウを基準に画面に固定 */
  top: 0; /* 上下の固定位置を上から0pxにする */
  left: 0; /* 左右の固定位置を左から0pxにする */
  display: flex; /* 中の要素を横並びにする */
  align-items: center; /* 中の要素を上下中央に並べる */
  background: white;
}
@media only screen and (max-width: 769px) {
  header {
    height: 70px;
  }
}

.header-section {
  width: 100%;
  margin: auto;
  align-items: center;
  background: #ec1a30;
  margin-top: 0px;
}
@media only screen and (max-width: 769px) {
  .header-section {
    margin: 0px auto;
    top: 0;
    position: fixed;
    height: 70px;
  }
}
.header-section-inner {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  margin: 20px auto;
  position: relative;
  height: 50px;
}
@media only screen and (max-width: 769px) {
  .header-section-inner {
    width: 90%;
    height: 28px;
    justify-content: flex-end;
  }
}
.header-section-inner .header-cart-new {
  width: 173px;
  background: white;
  height: 50px;
  position: absolute;
  right: 91px;
  top: 0px;
  color: black;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  display: block;
}
@media only screen and (max-width: 769px) {
  .header-section-inner .header-cart-new {
    display: none;
  }
}
.header-section-inner-2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-section-inner-3 {
  display: flex;
  align-items: center;
}
.header-section-inner-3 .menu-1 {
  font-size: 16px;
  line-height: 16px;
  margin-right: 20px;
}
.header-section .login-btn {
  border-radius: 50px;
  font-size: 16px;
  background-color: white;
  border: 2px solid black;
  width: 112px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  margin-right: 20px;
  font-size: 14px;
}
@media only screen and (max-width: 769px) {
  .header-section .login-btn {
    width: 98px;
    font-size: 13px;
    position: fixed;
    right: -1%;
    top: 12px;
  }
}
.header-section .kaiin-btn {
  border: 2px solid black;
  width: 112px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  background-color: #F01B2C;
  color: white;
  border-radius: 50px;
  font-size: 14px;
}
.header-section-logo-waku {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  .header-section-logo-waku {
    position: fixed;
    top: 35px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
.header-section-logo {
  width: 240px;
  height: auto;
  margin-left: 20px;
}
@media only screen and (max-width: 769px) {
  .header-section-logo {
    width: 125px;
    left: 2px;
    position: absolute;
    top: 10px;
  }
}
.header-section-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.header-section-logomoji {
  font-size: 20px;
  height: auto;
  margin-right: 50px;
  color: #03032D;
}
@media only screen and (max-width: 769px) {
  .header-section-logomoji {
    font-size: 13px;
    margin: auto;
  }
}

.toiawase {
  width: 400px;
  height: 70px;
  background-color: #D15F19;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-content: flex-start;
  align-items: center;
  color: white;
  padding: 10px 40px;
  font-size: 18px;
  letter-spacing: 2px;
  position: relative;
}
@media only screen and (max-width: 769px) {
  .toiawase {
    width: 200px;
    height: 40px;
    padding: 10px;
  }
}
.toiawase-img {
  width: 40px;
  height: 30px;
  margin-right: 30px;
}
.toiawase-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.toiawase::after {
  right: 24px;
  width: 13px;
  height: 13px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  transform: rotate(45deg);
  content: "";
  position: absolute;
}

#global-nav {
  background: none;
  display: none;
}
@media only screen and (max-width: 769px) {
  #global-nav {
    background: none;
    display: none;
  }
}
#global-nav .sm-btn {
  width: 200px;
  height: 46px;
  background-color: #F01B2C;
  color: white;
  line-height: 46px;
  display: block;
  text-align: center;
  margin-left: 20px;
}
#global-nav ul {
  width: 1000px;
  margin: auto;
  display: flex;
  justify-content: center;
  display: flex;
  height: 50px;
  padding-top: 20px;
}
@media only screen and (max-width: 769px) {
  #global-nav ul {
    width: 100%;
    display: unset;
  }
}
#global-nav ul li {
  padding: 0px 30px;
  border-right: 1px solid;
}
@media only screen and (max-width: 769px) {
  #global-nav ul li {
    border: none;
    padding: 20px;
    border-bottom: 1px solid;
    width: 90%;
    margin: auto;
  }
}
#global-nav ul .hidari {
  border-left: 1px solid;
}
#global-nav.active {
  top: 0px;
  right: 0px;
  width: 500px;
  height: 100vh;
  background-color: white;
  margin: 0px 0px 0px 0px;
  padding-top: 85px;
  position: fixed;
  display: block;
}
@media only screen and (max-width: 769px) {
  #global-nav.active {
    display: block;
    width: 100%;
    height: 100vh;
    background-color: white;
    margin-top: 0px;
    padding-top: 100px;
    overflow-y: scroll;
    padding-bottom: 20%;
  }
}
#global-nav .menu-waku .title {
  color: #F5F5F5;
  font-size: 40px;
  z-index: 1;
  margin: 46px 0px -42px 30px;
  text-align: left;
}
@media only screen and (max-width: 769px) {
  #global-nav .menu-waku .title {
    color: rgba(240, 26, 44, 0.2705882353);
    font-size: 40px;
    z-index: 1;
    margin: 46px 0px -42px 30px;
    text-align: left;
    font-weight: 900;
  }
}
#global-nav .menu-waku .sm-menu {
  position: relative;
  font-size: 15px;
  display: block;
  padding-left: 30px;
  margin: 20px 0px 20px 20px;
  line-height: 30px;
}
#global-nav .menu-waku .sm-menu::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  top: 12px;
  left: 1px;
  background: black;
}

.header__hamburger {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0px;
  right: 19px;
}
@media only screen and (max-width: 769px) {
  .header__hamburger {
    top: -3px;
  }
}

.hamburger {
  display: block;
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
@media only screen and (max-width: 769px) {
  .hamburger {
    display: block;
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
  }
}
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: white;
  position: relative;
  transition: ease 0.4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0px;
}
.hamburger span:nth-child(2) {
  margin: 12px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
.hamburger .header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
  background-color: red;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -23px;
  transform: rotate(-45deg);
  background-color: red;
}

.hover-3 {
  position: relative;
  z-index: 1;
}
.hover-3::before {
  content: attr(data);
  display: block;
  position: relative;
  transition: color 300ms;
  z-index: 1;
}
.hover-3::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -6px;
  right: 0;
  left: 0;
  margin: auto;
  height: 100%;
  border-bottom: 4px solid #bdbdbd;
  transition: width 300ms;
  width: 0;
  z-index: -1;
}
.hover-3:hover {
  color: black !important;
}
.hover-3:hover::before {
  color: black;
}
.hover-3:hover::after {
  width: 100%;
}

.search_container {
  box-sizing: border-box;
  position: relative;
  border: 2px solid #222222;
  padding: 3px 10px;
  border-radius: 20px;
  height: 2.3em;
  width: 260px;
  overflow: hidden;
  margin-left: 20px;
}
@media only screen and (max-width: 769px) {
  .search_container {
    width: 86%;
    border: none;
    border-bottom: 2px solid #222222;
    border-radius: 0px;
    height: 50px;
  }
}

.search_container input[type=text] {
  border: none;
  height: 27px;
  padding-left: 29px;
}
@media only screen and (max-width: 769px) {
  .search_container input[type=text] {
    height: 50px;
    padding-left: 0px;
  }
}
.search_container input[type=text]::-moz-placeholder {
  color: #A8A8A8; /* 色を赤に設定 */
  font-size: 12px;
}
.search_container input[type=text]::placeholder {
  color: #A8A8A8; /* 色を赤に設定 */
  font-size: 12px;
}

.search_container input[type=text]:focus {
  outline: 0;
}

.search_container input[type=submit] {
  cursor: pointer;
  content: "";
  font-size: none;
  border: none;
  background-image: url(../img/search.svg);
  position: absolute;
  width: 16px;
  height: 16px;
  left: 10px;
  top: 9px;
  outline: none;
  background-size: cover;
}
@media only screen and (max-width: 769px) {
  .search_container input[type=submit] {
    background-image: url(../img/black-search.svg);
    left: unset;
    right: 0px;
    width: 40px;
    height: 40px;
  }
}

/*========= 検索窓を開くためのボタン設定 ===========*/
.open-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: url("../img/icon_search.svg") no-repeat 15px center; /*虫眼鏡アイコンを背景に表示*/
  background-size: 20px 20px;
  width: 50px;
  height: 50px;
  cursor: pointer; /*カーソルを指マークに*/
}

/*クリック後、JSでボタンに btnactive クラスが付与された後の見た目*/
.open-btn.btnactive {
  background: url("../img/icon_close.svg") no-repeat 15px center; /*閉じるアイコンを背景に表示*/
  background-size: 18px 18px;
}

/*========= 検索窓のためのCSS ===============*/
/*検索窓のエリア*/
#search-wrap {
  position: absolute; /*絶対配置にして*/
  z-index: 2; /*最前面に設定。数字は変更可*/
  top: 10px;
  left: 10px;
}

/*テキスト入力input設定*/
#search-text {
  -webkit-appearance: none; /*SafariやChromeのデフォルトの設定を無効*/
  width: 60px; /*テキスト入力エリアが伸びる前の横幅*/
  height: 60px;
  padding: 20px;
  border: none;
  background: url("../img/search.svg") no-repeat 17px center; /*虫眼鏡アイコンを背景に表示*/
  background-size: 25px 25px;
  transition: all 0.5s; /*transitionを使ってスムースに伸ばす*/
  outline: none;
  cursor: pointer; /*カーソルを指マークに*/
}

/*テキスト入力inputにフォーカスした時の形状*/
#search-text:focus {
  width: 200px; /*テキスト入力エリアが伸びる後の横幅*/
  padding: 5px 0 5px 50px;
  box-shadow: 0 2px rgba(6, 0, 1, 0.26);
  background-color: #fff;
  border: 2px solid #222222;
  border-radius: 50px;
}

.header-search {
  display: none;
}
.header-search.active {
  display: block;
  background: white;
}
.header-search .search_container {
  width: 100%;
  border: none;
  border-bottom: 2px solid #222222;
  border-radius: 0px;
  height: 40px;
  margin-top: 0px;
}
.header-search .search_container input[type=text] {
  height: 40px;
  padding-left: 0px;
}
.header-search .search_container input[type=submit] {
  background-image: url(../img/black-search.svg);
  left: unset;
  right: 0px;
  width: 40px;
  height: 40px;
  top: 0px;
}

.company-anounce {
  background-color: #ec1a2f;
  width: 100%;
  margin: 0px auto;
  padding: 100px 0px;
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .company-anounce {
    padding: 5% 0px;
  }
}
.company-anounce .company-logo {
  width: 600px;
  height: 223px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .company-anounce .company-logo {
    width: 60%;
    height: auto;
  }
}
.company-anounce .company-logo img {
  width: 100%;
  height: 100%;
}
.company-anounce .companu-setumei {
  font-size: 16px;
  line-height: 23px;
  color: #111;
  width: 750px;
  margin: auto;
  text-align: left;
  margin: 50px auto;
}
@media only screen and (max-width: 769px) {
  .company-anounce .companu-setumei {
    font-size: 2.5vw;
    line-height: 4vw;
    width: 86%;
    margin: 10% auto;
  }
}
.company-anounce .btn-black {
  width: 260px;
  height: 60px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 10px 40px;
  font-size: 20px;
  letter-spacing: 2px;
  position: relative;
  background-color: #040404;
  border-radius: 50px;
  letter-spacing: 1px;
  font-weight: lighter;
  cursor: pointer;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .company-anounce .btn-black {
    width: 80%;
    height: 40px;
    padding: 10px;
    max-width: 550px;
    text-align: center;
    line-height: 42px;
    font-size: 16px;
    height: 64px;
    margin: auto;
  }
}
.company-anounce .btn-black:hover {
  opacity: 0.5;
}

.login-waku {
  width: 100%;
  display: flex;
}
@media only screen and (max-width: 769px) {
  .login-waku {
    display: block;
  }
}
.login-waku-inner {
  width: 50%;
}
.login-waku-inner .content-section {
  width: 100%;
  margin: 0px auto;
}
.login-waku-inner .content-section .title-waku {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #222222;
  padding-bottom: 30px;
  border-top: 2px solid #222222;
  width: 100%;
  margin: auto;
  padding: 10px 50px;
  border-right: 2px solid;
  height: 200px;
}
@media only screen and (max-width: 769px) {
  .login-waku-inner .content-section .title-waku {
    height: 113px;
    border-right: none;
    border-left: none;
    border-bottom: none;
  }
}
@media only screen and (max-width: 769px) {
  .login-waku-inner .content-section .title-waku .title-left {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
  }
}
.login-waku-inner .content-section .title-waku .title-left .title {
  font-size: 64px;
  line-height: 64px;
}
@media only screen and (max-width: 769px) {
  .login-waku-inner .content-section .title-waku .title-left .title {
    font-size: 38px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 769px) {
  .login-waku-inner .content-section .title-waku .title-left .title {
    font-size: 7vw;
  }
}
.login-waku-inner .content-section .title-waku .title-left .img {
  width: 100%;
}
.login-waku-inner .content-section .title-waku .title-left .title-bun {
  font-size: 20px;
  color: #5C5C5C;
  margin-top: 10px;
  color: #5C5C5C;
  margin-top: 10px;
}
@media only screen and (max-width: 769px) {
  .login-waku-inner .content-section .title-waku .title-left .title-bun {
    font-size: 12px;
    line-height: 12px;
  }
}
@media only screen and (max-width: 769px) {
  .login-waku-inner .content-section .title-waku .title-left .title-bun {
    font-size: 3vw;
    margin-left: 10px;
  }
}
.login-waku-inner .content-section .title-waku .login-right {
  width: 40px;
  height: auto;
}

footer {
  padding-top: 1px !important;
  background: #ec1a30;
  padding: 100px 0px;
  margin: auto;
  bottom: 0;
  height: auto;
  width: 100%;
}
@media only screen and (max-width: 769px) {
  footer {
    width: 100%;
    padding: 10% 5%;
    height: auto;
    margin-bottom: 0px;
    padding-bottom: 10%;
  }
}
footer .footer-inner {
  width: 700px;
  margin: 100px auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 769px) {
  footer .footer-inner {
    width: 100%;
    display: block;
    margin: 10% auto 0px;
  }
}
footer .footer-inner .right-inner {
  width: 297px;
  color: #333333;
}
@media only screen and (max-width: 769px) {
  footer .footer-inner .right-inner {
    margin: auto;
    width: 86%;
    display: flex;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 769px) {
  footer .footer-inner .right-inner .sm-right {
    width: 50%;
    margin-left: 10%;
  }
}
footer .footer-inner .right-inner .title {
  font-size: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333333;
  color: #c2c1c1;
}
@media only screen and (max-width: 769px) {
  footer .footer-inner .right-inner .title {
    font-size: 5vw;
    border-bottom: none;
    width: 25%;
    letter-spacing: 1px;
    text-align: left;
  }
}
footer .footer-inner .right-inner .inner-bun {
  font-size: 16px;
  color: #333333;
  margin: 20px auto;
  display: block;
}
@media only screen and (max-width: 769px) {
  footer .footer-inner .right-inner .inner-bun {
    font-size: 3vw;
    position: relative;
  }
  footer .footer-inner .right-inner .inner-bun::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 1px;
    background-color: #e4e4e4;
    top: 43%;
    left: -11%;
  }
}
footer .left-inner {
  width: 700px;
  color: black;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  footer .left-inner {
    border-bottom: 1px solid #333333;
    width: 86%;
    margin: 0% auto 10%;
    /* border-top: 1px solid #333333; */
    padding-top: 10%;
    padding-bottom: 10%;
  }
}
footer .left-inner .footer-logo {
  width: 60%;
  display: block;
  margin: auto;
}
footer .left-inner .sns-waku {
  display: flex;
  justify-content: flex-start;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  footer .left-inner .sns-waku {
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
    width: 80%;
  }
}
footer .left-inner .sns-waku .sns {
  margin: 0px 20px 0px 0px;
}
footer .left-inner .footer-content-setumei {
  color: #5F5F5F;
  font-size: 12px;
  line-height: 22px;
}
footer .left-inner .kaisha-waku {
  display: flex;
  justify-content: center;
  margin: 30px auto 0px;
}
@media only screen and (max-width: 769px) {
  footer .left-inner .kaisha-waku {
    justify-content: center;
  }
}
footer .left-inner .kaisha-waku-inner {
  font-size: 12px;
  color: white;
  margin-right: 20px;
}
@media only screen and (max-width: 769px) {
  footer .left-inner .kaisha-waku-inner {
    font-size: 11px;
    color: white;
    margin: 0px 10px;
  }
}
footer .sm-footer-bottom {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: none;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  footer .sm-footer-bottom {
    margin-top: 10%;
    padding-top: 5%;
  }
}
footer .copy-right {
  text-align: center;
  color: white;
  font-size: 12px;
  margin: 30px auto 0px;
  width: 700px;
  letter-spacing: 1px;
}
@media only screen and (max-width: 769px) {
  footer .copy-right {
    margin: 10px auto;
    width: 100%;
    text-align: center;
    font-size: 10px;
    letter-spacing: normal;
  }
}

html {
  width: 100vw;
  overflow-x: hidden;
}

.container {
  margin-top: 90px;
  position: relative;
  min-height: 100vh;
}
@media only screen and (max-width: 769px) {
  .container {
    margin-top: 0%;
    overflow-x: hidden;
    padding-top: 0%;
  }
}

.wrapper {
  width: 100%;
  margin-top: 0px;
  margin-bottom: 50px;
  padding-bottom: 10%;
  position: relative;
}
@media only screen and (max-width: 769px) {
  .wrapper {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}
.wrapper .swiper-container {
  margin: 0px auto;
  padding: 45px 0;
}
@media only screen and (max-width: 769px) {
  .wrapper .swiper-container {
    margin: 50px auto;
    padding: 0px;
    width: 100%;
  }
}
.wrapper .swiper-container .swiper-wrapper {
  width: 100%;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .wrapper .swiper-container .swiper-wrapper {
    width: 100%;
  }
}
.wrapper .swiper-container .swiper-wrapper .swiper-slide {
  width: 1000px !important;
}
@media only screen and (max-width: 769px) {
  .wrapper .swiper-container .swiper-wrapper .swiper-slide {
    width: 100% !important;
  }
}
.wrapper .swiper-container .swiper-wrapper .top-img {
  position: relative;
}
.wrapper .swiper-container .swiper-wrapper .top-img img {
  aspect-ratio: 1000/650;
}
@media only screen and (max-width: 769px) {
  .wrapper .swiper-container .swiper-wrapper .top-img img {
    aspect-ratio: 1000/500;
  }
}
.wrapper .swiper-container .swiper-wrapper .top-img .top-img-moji-waku {
  width: 734px; /* 上辺(上の幅) */
  border-bottom: 650px solid rgba(221, 217, 217, 0.5098039216);
  border-right: 50px solid transparent; /* 下辺を短くするための斜め部分 */
  -webkit-clip-path: polygon(0 0, 80% 0%, 20% 100%, 0% 100%);
          clip-path: polygon(0 0, 80% 0%, 20% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 769px) {
  .wrapper .swiper-container .swiper-wrapper .top-img .top-img-moji-waku {
    width: 100%;
  }
}
.wrapper .swiper-container .swiper-wrapper .top-img .top-img-moji-waku-inner {
  position: absolute;
  top: 21%;
  left: 6%;
  padding-top: 20%;
  font-size: 21px;
  line-height: 48px;
  font-weight: 600;
}
@media only screen and (max-width: 769px) {
  .wrapper .swiper-container .swiper-wrapper .top-img .top-img-moji-waku-inner {
    position: absolute;
    top: 21%;
    left: 6%;
    padding-top: 20%;
    font-size: 15px;
    line-height: 30px;
    font-weight: 600;
  }
}
.wrapper .concept-waku {
  margin: 50px auto 0px;
  padding: 50px 0 30px;
  width: 1000px;
}
@media only screen and (max-width: 769px) {
  .wrapper .concept-waku {
    width: 100%;
    padding: 5% 0 5%;
    margin: 5% auto 0px;
  }
}
.wrapper .concept-waku .inner-concept-waku {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 70px auto 50px;
}
@media only screen and (max-width: 769px) {
  .wrapper .concept-waku .inner-concept-waku {
    margin: 10% auto;
    display: block;
  }
}
.wrapper .concept-waku .inner-concept-waku .inner-concept-waku-left {
  width: 48%;
}
@media only screen and (max-width: 769px) {
  .wrapper .concept-waku .inner-concept-waku .inner-concept-waku-left {
    width: 86%;
    margin: 10% auto 0px;
  }
}
.wrapper .concept-waku .inner-concept-waku .inner-concept-waku-left-img {
  margin: 0px 0px 0px;
  width: 439px;
}
@media only screen and (max-width: 769px) {
  .wrapper .concept-waku .inner-concept-waku .inner-concept-waku-left-img {
    width: 100%;
  }
}
.wrapper .concept-waku .inner-concept-waku .inner-concept-waku-left-txt {
  margin: 50px 0px 0px;
  width: 200px;
}
@media only screen and (max-width: 769px) {
  .wrapper .concept-waku .inner-concept-waku .inner-concept-waku-left-txt {
    margin: 20px 0px 0px;
  }
}

.ttl-txt01 {
  font-size: 27px !important;
  letter-spacing: 3px !important;
  text-align: center !important;
  font-family: "Noto Sans JP", sans-serif !important;
  margin: 70px auto 50px !important;
  background: none !important;
  border: none !important;
}
@media only screen and (max-width: 769px) {
  .ttl-txt01 {
    margin: 10% auto !important;
  }
}

.top-items {
  width: 1000px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .top-items {
    width: 86%;
  }
}
.top-items .products-tag {
  font-size: 15px;
  border: 1px solid;
  display: inline-block;
  padding: 0px 30px;
  margin-bottom: 5px;
  border-radius: 5px;
}
@media only screen and (max-width: 769px) {
  .top-items .products-tag {
    font-size: 13px;
    border: 1px solid;
    display: inline-block;
    padding: 0px 20px;
    margin-bottom: 5px;
    border-radius: 5px;
  }
}
.top-items .items-archive__list, .top-items .communityMain .communityItems {
  display: flex;
  flex-wrap: wrap;
  margin: 70px auto 30px;
}
.top-items .items-archive__list .items-archive__item, .top-items .communityMain .communityItems .items-archive__item {
  width: 33.333%;
  margin-bottom: 40px;
  padding: 0px 20px;
}
@media only screen and (max-width: 769px) {
  .top-items .items-archive__list .items-archive__item, .top-items .communityMain .communityItems .items-archive__item {
    width: 48%;
    padding: 0px;
    margin: 1%;
  }
}
.top-items .items-archive__list .items-archive__txtBox, .top-items .communityMain .communityItems .items-archive__txtBox {
  padding: 5px 0px 15px;
}
.top-items .items-archive__list .items-archive__txt-ttl, .top-items .communityMain .communityItems .items-archive__txt-ttl {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 5px;
  text-align: center;
  transition: 0.3s;
  background: none;
}
.top-items .btn-field01 {
  margin: 30px auto;
}
.top-items .btn-field01 .btn01 {
  width: 250px;
  height: 50px;
  border: 2px solid #e6031f;
  text-align: center;
  line-height: 50px;
  margin: auto;
  border-radius: 50px;
  color: #e6031f;
  font-weight: 600;
  display: block;
}

.category-waku {
  margin: 100px auto 50px;
}
.category-waku .top-bana {
  width: 100%;
  max-width: 1000px;
  margin: 70px auto 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 769px) {
  .category-waku .top-bana {
    margin: 0px auto 50px;
    width: 86%;
  }
}
.category-waku .top-bana-inner {
  width: 14%;
  margin: 1%;
}
@media only screen and (max-width: 769px) {
  .category-waku .top-bana-inner {
    width: 34%;
    margin: 2%;
  }
}

.category-waku-2 {
  margin: 10px auto 0px;
  display: flex;
  width: 100%;
  max-width: 1000px;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  .category-waku-2 {
    display: block;
  }
}
.category-waku-2 .title-ca {
  margin: auto !important;
}
.category-waku-2 .ttl-txt01 {
  margin: 0px !important;
}
.category-waku-2 .top-bana {
  width: 52%;
  margin-left: 20px;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 769px) {
  .category-waku-2 .top-bana {
    width: 86%;
    margin: auto;
    justify-content: center;
    margin-top: 20px;
  }
}
.category-waku-2 .top-bana-inner {
  width: 100px;
  margin: 1%;
}
@media only screen and (max-width: 769px) {
  .category-waku-2 .top-bana-inner {
    width: 34%;
    margin: 2%;
  }
}

.top-faq {
  padding: 80px 0px;
}
@media only screen and (max-width: 769px) {
  .top-faq {
    padding: 1% 0px;
  }
}
.top-faq .top-faq__list {
  width: 1000px;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .top-faq .top-faq__list {
    width: 86%;
    margin: 10% auto;
  }
}
.top-faq .top-faq__item {
  margin-bottom: 10px;
  background-color: rgb(255, 255, 255);
  text-align: left;
  cursor: pointer;
  color: rgb(62, 62, 62);
  padding: 15px 20px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(62, 62, 62, 0.1);
  -o-border-image: initial;
     border-image: initial;
  border-radius: 15px;
}
.top-faq .top-faq__item .faq-click__a {
  display: none;
}
.top-faq .top-faq__item .faq-click__a.is_active {
  display: block;
  padding: 20px;
}
.top-faq .top-faq__item .top-faq__q {
  font-weight: 700;
}
.top-faq .top-faq__item .top-faq__q::before {
  content: "Q.";
  font-size: 120%;
  margin-right: 3px;
  opacity: 0.5;
  font-weight: bold;
  font-family: Lato, "Noto Sans JP", sans-serif;
}

.bg-base {
  background-color: rgba(62, 62, 62, 0.05);
}

.front-news-waku {
  margin: auto;
  padding: 100px 7% 100px;
  color: #4f4f4f;
  background-color: #ffffff;
}
@media only screen and (max-width: 769px) {
  .front-news-waku {
    padding: 10% 0px;
    width: 86%;
  }
}
.front-news-waku .news-container {
  width: 700px;
  margin: 0 auto;
}
@media only screen and (max-width: 769px) {
  .front-news-waku .news-container {
    width: 100%;
  }
}
.front-news-waku h1 {
  font-size: 24px;
  margin-bottom: 50px;
  color: #4f4f4f;
  letter-spacing: 1.8px;
}
.front-news-waku .news-flex {
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .front-news-waku .news-flex {
    flex-direction: column;
    gap: 0px;
    border: none;
  }
}
.front-news-waku .news-flex :last-child {
  display: block;
}
.front-news-waku .news-flex .news-box {
  margin: 0px 20px;
  padding-bottom: 10px;
  margin: 0px 20px;
  border-bottom: 1px solid #4f4f4f;
  padding-top: 30px;
  display: block;
  padding-bottom: 30px;
}
@media only screen and (max-width: 769px) {
  .front-news-waku .news-flex .news-box {
    position: relative;
    justify-content: center;
    border-bottom: none;
    border-top: 1px solid #4f4f4f;
    padding: 30px 30px 30px 0;
    margin: 0px;
  }
}
.front-news-waku .news-flex .news-box:last-child {
  display: none;
}
@media only screen and (max-width: 769px) {
  .front-news-waku .news-flex .news-box:last-child {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 0;
  }
}
.front-news-waku .news-flex .news-box img {
  background-color: #000;
  width: 150px;
  height: 150px;
}
@media only screen and (max-width: 769px) {
  .front-news-waku .news-flex .news-box img {
    display: none;
  }
}
.front-news-waku .news-flex .news-box p {
  font-size: 15px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 1.7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 769px) {
  .front-news-waku .news-flex .news-box p {
    margin: 0;
    width: 98%;
    height: auto;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
  }
}
.front-news-waku .news-flex .news-box .news-date {
  font-size: 13px;
}
.front-news-waku .news-flex .news-box .looking-all {
  color: #4f4f4f;
  font-size: 15px;
  width: 236px;
  letter-spacing: 2px;
  display: none;
}
@media only screen and (max-width: 769px) {
  .front-news-waku .news-flex .news-box .looking-all {
    right: 5%;
  }
}
.front-news-waku .news-flex .news-box .looking-all p {
  padding: 0;
}
.front-news-waku .news-flex .news-box .looking-all p:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 1px #000000;
  border-right: solid 1px #000000;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 18%;
  margin-top: -4px;
}
@media only screen and (max-width: 769px) {
  .front-news-waku .news-flex .news-box .news-date {
    text-overflow: clip;
    width: 100%;
    text-align: left;
  }
}
@media only screen and (max-width: 769px) {
  .front-news-waku .news-flex .news-box p::after {
    content: none;
    width: 8px;
    height: 8px;
    border: 0px;
    border-top: solid 1px #000000;
    border-right: solid 1px #000000;
    transform: rotate(45deg);
    position: absolute;
    right: 7%;
    margin: 7px;
  }
}
@media only screen and (max-width: 769px) {
  .front-news-waku .news-flex .news-sm-box {
    position: relative;
    justify-content: center;
    border-bottom: none;
    border-top: 1px solid #4f4f4f;
    padding: 30px 30px 30px 0;
    margin: 0px;
  }
  .front-news-waku .news-flex .news-sm-box::after {
    content: "";
    width: 8px;
    height: 8px;
    border: 0px;
    border-top: solid 1px #000000;
    border-right: solid 1px #000000;
    transform: rotate(45deg);
    position: absolute;
    right: 1%;
    margin: 7px;
    top: 47%;
  }
}
.front-news-waku .news-inner-waku {
  width: 589px;
  border-top: 1px solid #000;
  margin: 20px auto;
  display: block;
  font-size: 13.2px;
}
@media only screen and (max-width: 769px) {
  .front-news-waku .news-inner-waku {
    width: 100%;
  }
}
.front-news-waku .news-inner-waku-inner {
  margin-top: 20px;
}
.front-news-waku .news-inner-waku-inner2 {
  margin-top: 10px;
}
@media only screen and (max-width: 769px) {
  .front-news-waku .news-inner-waku-inner2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.front-news-waku .news-inner-waku-last {
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
}
.front-news-waku .gray-btn {
  margin: 60px 0;
  color: #4f4f4f;
  font-size: 15px;
  width: 100px;
  line-height: 30px;
  letter-spacing: 2px;
  position: relative;
  float: right;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 769px) {
  .front-news-waku .gray-btn {
    margin-top: 0;
  }
}
.front-news-waku .gray-btn:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 1px #000000;
  border-right: solid 1px #000000;
  transform: rotate(45deg);
  position: absolute;
  right: 5%;
  bottom: 11.5px;
}
.front-news-waku .gray-btn .pc-looking-all {
  padding: 0;
  margin-right: 30px;
  display: inline-block;
}
.front-news-waku .btn-field01 {
  margin: 70px auto 0px !important;
}
.front-news-waku .btn-field01 .btn01 {
  width: 250px;
  height: 50px;
  border: 2px solid #e6031f;
  text-align: center;
  line-height: 50px;
  margin: auto;
  border-radius: 50px;
  color: #e6031f;
  font-weight: 600;
  display: block;
}

.section-yamawake-bana {
  padding: 100px 0px;
  background: #f5f5f5;
}
@media only screen and (max-width: 769px) {
  .section-yamawake-bana {
    padding: 10% 0px;
  }
}
.section-yamawake-bana .yamawake-bana {
  margin: 0px auto;
  display: block;
  width: 100%;
  max-width: 1000px;
}
.section-yamawake-bana .yamawake-bana-flex {
  display: flex;
  width: 1000px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .section-yamawake-bana .yamawake-bana-flex {
    width: 100%;
  }
}
.section-yamawake-bana .yamawake-bana-flex-inner {
  width: 48%;
  margin: 2%;
}
@media only screen and (min-width: 481px) and (max-width: 769px) {
  .section-yamawake-bana .font-sm {
    font-size: 13px;
  }
}
@media only screen and (max-width: 481px) {
  .section-yamawake-bana .font-sm {
    font-size: 10px;
  }
}

.sns-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 100px;
  margin: 100px auto;
}
@media only screen and (max-width: 769px) {
  .sns-area {
    gap: 40px;
    padding: 10%;
    margin: 5% auto;
  }
}
.sns-area .sns-text {
  font-size: 24px;
  font-weight: bold;
}
.sns-area .snsbtn-box {
  display: flex;
  gap: 50px;
}
@media only screen and (max-width: 769px) {
  .sns-area .snsbtn-box {
    gap: 20px;
  }
}

.content-section {
  width: 1230px;
  margin: 150px auto;
}
@media only screen and (max-width: 769px) {
  .content-section {
    width: 86%;
    margin: 15% auto;
  }
}
.content-section .title-waku {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #222222;
  padding-bottom: 30px;
  width: 1180px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .content-section .title-waku {
    width: 100%;
    display: block;
    margin-top: 30px;
  }
}
.content-section .title-waku .title-left .title {
  font-size: 64px;
  line-height: 64px;
}
@media only screen and (max-width: 769px) {
  .content-section .title-waku .title-left .title {
    font-size: 38px;
    line-height: 38px;
  }
}
.content-section .title-waku .title-left .img {
  width: 100%;
}
.content-section .title-waku .title-left .title-bun {
  font-size: 20px;
  color: #5C5C5C;
  margin-top: 10px;
}
@media only screen and (max-width: 769px) {
  .content-section .title-waku .title-left .title-bun {
    font-size: 12px;
    line-height: 12px;
  }
}
.content-section .title-waku .content-btn {
  width: 260px;
  height: 60px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 10px 40px;
  font-size: 20px;
  letter-spacing: 2px;
  position: relative;
  background-color: #040404;
  border-radius: 50px;
  letter-spacing: 1px;
  font-weight: lighter;
  cursor: pointer;
}
@media only screen and (max-width: 769px) {
  .content-section .title-waku .content-btn {
    width: 80%;
    height: 40px;
    padding: 10px;
    max-width: 550px;
    text-align: center;
    line-height: 42px;
    font-size: 16px;
    height: 64px;
    margin: auto;
  }
}
.content-section .title-waku .content-btn:hover {
  opacity: 0.5;
}
.content-section .archive-inner {
  margin: 30px 12px !important;
}
.content-section .content-innner-wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.content-section .content-innner-wrap .inner-content {
  width: 360px;
  margin: 30px 25px;
}
@media only screen and (max-width: 769px) {
  .content-section .content-innner-wrap .inner-content {
    width: 100%;
    margin: 5% auto;
  }
}
.content-section .content-innner-wrap .inner-content .thubnail-img {
  width: 360px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 769px) {
  .content-section .content-innner-wrap .inner-content .thubnail-img {
    width: 100%;
    height: auto;
  }
}
.content-section .content-innner-wrap .inner-content .thubnail-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 769px) {
  .content-section .content-innner-wrap .inner-content .thubnail-img img {
    width: 100%;
    height: auto;
  }
}
.content-section .content-innner-wrap .inner-content .tag-waku {
  margin: 10px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.content-section .content-innner-wrap .inner-content .tag-waku .tag {
  font-size: 15px;
  background-color: #F01B2C;
  color: white;
  padding: 3px;
  display: inline-block;
  margin-right: 10px;
}
@media only screen and (max-width: 769px) {
  .content-section .content-innner-wrap .inner-content .tag-waku .tag {
    font-size: 13px;
  }
}
.content-section .content-innner-wrap .inner-content .tag-waku .date {
  font-size: 15px;
}
@media only screen and (max-width: 769px) {
  .content-section .content-innner-wrap .inner-content .tag-waku .date {
    font-size: 14px;
  }
}
.content-section .content-innner-wrap .inner-content .contet-topic-bun {
  font-size: 18px;
}
@media only screen and (max-width: 769px) {
  .content-section .content-innner-wrap .inner-content .contet-topic-bun {
    font-size: 17px;
  }
}
.content-section .content-innner-wrap .inner-content .content-tag-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
  flex-wrap: wrap;
}
.content-section .content-innner-wrap .inner-content .content-tag-wrap .content-tag {
  color: #5C5C5C;
  font-size: 15px;
  margin-right: 10px;
}
@media only screen and (max-width: 769px) {
  .content-section .content-innner-wrap .inner-content .content-tag-wrap .content-tag {
    font-size: 14px;
  }
}
.content-section .first-post .inner-content {
  width: 770px;
  margin: 30px 0px;
  height: auto;
}
@media only screen and (max-width: 769px) {
  .content-section .first-post .inner-content {
    width: 100%;
    margin: 5% auto;
  }
}
.content-section .first-post .inner-content .thubnail-img {
  width: 770px;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  display: block;
}
@media only screen and (max-width: 769px) {
  .content-section .first-post .inner-content .thubnail-img {
    width: 100%;
    height: auto;
  }
}
.content-section .first-post .inner-content .thubnail-img img {
  width: 100%;
  height: 100%;
}
.content-section .first-post .inner-content .tag-waku {
  margin: 10px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.content-section .first-post .inner-content .tag-waku .tag {
  font-size: 15px;
  background-color: #F01B2C;
  color: white;
  padding: 3px;
  display: inline-block;
  margin-right: 10px;
}
@media only screen and (max-width: 769px) {
  .content-section .first-post .inner-content .tag-waku .tag {
    font-size: 13px;
  }
}
.content-section .first-post .inner-content .tag-waku .date {
  font-size: 15px;
}
@media only screen and (max-width: 769px) {
  .content-section .first-post .inner-content .tag-waku .date {
    font-size: 14px;
  }
}
.content-section .first-post .inner-content .contet-topic-bun {
  font-size: 18px;
}
@media only screen and (max-width: 769px) {
  .content-section .first-post .inner-content .contet-topic-bun {
    font-size: 17px;
  }
}
.content-section .first-post .inner-content .content-tag-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}
.content-section .first-post .inner-content .content-tag-wrap .content-tag {
  color: #5C5C5C;
  font-size: 15px;
  margin-right: 10px;
}
@media only screen and (max-width: 769px) {
  .content-section .first-post .inner-content .content-tag-wrap .content-tag {
    font-size: 14px;
  }
}
.content-section .first-post .inner-content .content-inner-bun {
  font-size: 16px;
  line-height: 26px;
  margin: 10px auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.content-section .swiper.ranking-swiper {
  margin-top: 30px;
  height: 500px;
  position: relative;
  width: 1180px;
}
@media only screen and (max-width: 769px) {
  .content-section .swiper.ranking-swiper {
    width: 100%;
    height: auto;
    padding-top: 0px;
  }
}
.content-section .swiper.ranking-swiper .ranking-waku {
  display: flex;
  justify-content: space-between;
}
.content-section .swiper.ranking-swiper .ranking-waku.swiper-slide::before {
  content: none;
}
.content-section .swiper.ranking-swiper .ranking-waku.swiper-slide-active {
  opacity: 1;
  z-index: 1;
  transform: scale(1) !important;
}
@media only screen and (max-width: 769px) {
  .content-section .swiper.ranking-swiper .ranking-waku {
    width: 100%;
    display: block;
  }
}
.content-section .swiper.ranking-swiper .ranking-waku::before {
  content: none;
}
.content-section .swiper.ranking-swiper .ranking-waku-left-content {
  width: 720px;
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 769px) {
  .content-section .swiper.ranking-swiper .ranking-waku-left-content {
    width: 100%;
    height: auto;
    aspect-ratio: 1/0.55;
  }
}
.content-section .swiper.ranking-swiper .ranking-waku-left-content img {
  width: 100%;
  height: 100%;
}
.content-section .swiper.ranking-swiper .ranking-waku-right-content {
  width: 410px;
}
@media only screen and (max-width: 769px) {
  .content-section .swiper.ranking-swiper .ranking-waku-right-content {
    width: 100%;
  }
}
.content-section .swiper.ranking-swiper .ranking-waku-right-content .page-nation {
  width: 100%;
}
.content-section .swiper.ranking-swiper .ranking-waku-right-content .content-bun {
  margin-top: 77px;
}
@media only screen and (max-width: 769px) {
  .content-section .swiper.ranking-swiper .ranking-waku-right-content .content-bun {
    margin-top: 77px;
  }
}
.content-section .swiper.ranking-swiper .ranking-waku-right-content .content-bun .tag-waku {
  margin: 10px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.content-section .swiper.ranking-swiper .ranking-waku-right-content .content-bun .tag-waku .tag {
  font-size: 15px;
  background-color: #F01B2C;
  color: white;
  padding: 3px;
  display: inline-block;
  margin-right: 10px;
  position: unset;
}
@media only screen and (max-width: 769px) {
  .content-section .swiper.ranking-swiper .ranking-waku-right-content .content-bun .tag-waku .tag {
    font-size: 13px;
  }
}
.content-section .swiper.ranking-swiper .ranking-waku-right-content .content-bun .tag-waku .date {
  font-size: 15px;
}
@media only screen and (max-width: 769px) {
  .content-section .swiper.ranking-swiper .ranking-waku-right-content .content-bun .tag-waku .date {
    font-size: 14px;
  }
}
.content-section .swiper.ranking-swiper .ranking-waku-right-content .content-bun .contet-topic-bun {
  font-size: 18px;
}
@media only screen and (max-width: 769px) {
  .content-section .swiper.ranking-swiper .ranking-waku-right-content .content-bun .contet-topic-bun {
    font-size: 17px;
  }
}
.content-section .swiper.ranking-swiper .ranking-waku-right-content .content-bun .content-tag-wrap {
  display: flex;
  margin-top: 10px;
  flex-wrap: wrap;
}
.content-section .swiper.ranking-swiper .ranking-waku-right-content .content-bun .content-tag-wrap .content-tag {
  color: #5C5C5C;
  font-size: 15px;
  margin-right: 10px;
}
@media only screen and (max-width: 769px) {
  .content-section .swiper.ranking-swiper .ranking-waku-right-content .content-bun .content-tag-wrap .content-tag {
    font-size: 14px;
  }
}
.content-section .swiper.ranking-swiper .swiper-ranking-pagination {
  position: absolute;
  width: 400px;
  height: 100px;
  top: 10px;
  right: 20px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 769px) {
  .content-section .swiper.ranking-swiper .swiper-ranking-pagination {
    width: 99%;
    top: 43%;
    left: 0%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 769px) {
  .content-section .swiper.ranking-swiper .swiper-ranking-pagination {
    width: 99%;
    top: 56%;
    left: 0%;
  }
}
@media screen and (min-width: 375px) and (max-width: 389px) {
  .content-section .swiper.ranking-swiper .swiper-ranking-pagination {
    top: 45%;
  }
}
@media screen and (min-width: 390px) and (max-width: 413px) {
  .content-section .swiper.ranking-swiper .swiper-ranking-pagination {
    top: 46%;
  }
}
@media screen and (min-width: 414px) and (max-width: 428px) {
  .content-section .swiper.ranking-swiper .swiper-ranking-pagination {
    top: 47%;
  }
}
@media screen and (min-width: 429px) and (max-width: 480px) {
  .content-section .swiper.ranking-swiper .swiper-ranking-pagination {
    top: 58%;
  }
}
@media screen and (min-width: 481px) and (max-width: 527px) {
  .content-section .swiper.ranking-swiper .swiper-ranking-pagination {
    top: 66%;
  }
}
.content-section .swiper.ranking-swiper .swiper-ranking-pagination-inner {
  display: flex;
  justify-content: flex-end;
}
.content-section .swiper.ranking-swiper .swiper-ranking-pagination #swiper-top-pc {
  display: flex;
  justify-content: center;
  font-size: 24px;
  width: 100px;
}
.content-section .swiper.ranking-swiper .swiper-ranking-pagination #swiper-top-pc .bunsu-waku .bunsu {
  display: flex;
}
.content-section .swiper.ranking-swiper .swiper-ranking-pagination #swiper-top-pc .bunsu-waku .bunsu .bar {
  color: #222222;
}
.content-section .swiper.ranking-swiper .swiper-ranking-pagination .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background: black;
  opacity: 1 !important;
  margin: 10px 10px !important;
}
.content-section .swiper.ranking-swiper .swiper-ranking-pagination .swiper-pagination-bullet-active {
  background: black;
  position: relative;
}
.content-section .swiper.ranking-swiper .swiper-ranking-pagination .swiper-pagination-bullet-active::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  border: solid 3px #F01B2C;
  display: inline-block;
  content: "";
}

.content-section_flex {
  display: flex;
  justify-content: space-between;
  margin: auto;
  width: 1180px;
}
@media only screen and (max-width: 769px) {
  .content-section_flex {
    display: block;
    width: 100%;
  }
}
.content-section_flex-left {
  width: 770px;
}
@media only screen and (max-width: 769px) {
  .content-section_flex-left {
    width: 86%;
    margin: auto;
  }
}
.content-section_flex-left .content-section {
  width: 100%;
  margin: 100px auto;
}
.content-section_flex-left .content-section .title-waku {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #222222;
  padding-bottom: 30px;
  width: 100%;
  margin: auto;
}
.content-section_flex-left .content-section .title-waku .title-left {
  width: 100%;
}
.content-section_flex-left .content-section .title-waku .title-left .title {
  font-size: 64px;
  line-height: 64px;
}
@media only screen and (max-width: 769px) {
  .content-section_flex-left .content-section .title-waku .title-left .title {
    font-size: 38px;
    line-height: 38px;
  }
}
.content-section_flex-left .content-section .title-waku .title-left .img {
  width: 100%;
}
.content-section_flex-left .content-section .title-waku .title-left .title-bun {
  font-size: 20px;
  color: #5C5C5C;
  margin-top: 10px;
}
.content-section_flex-left .content-section .title-waku .content-btn {
  width: 260px;
  height: 60px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 10px 40px;
  font-size: 20px;
  letter-spacing: 2px;
  position: relative;
  background-color: #040404;
  border-radius: 50px;
  letter-spacing: 1px;
  font-weight: lighter;
  cursor: pointer;
}
@media only screen and (max-width: 769px) {
  .content-section_flex-left .content-section .title-waku .content-btn {
    width: 80%;
    height: 40px;
    padding: 10px;
    max-width: 550px;
    text-align: center;
    line-height: 42px;
    font-size: 16px;
    height: 64px;
    margin: auto;
  }
}
.content-section_flex-left .content-section .title-waku .content-btn:hover {
  opacity: 0.5;
}
.content-section_flex-left .content-section .content-innner-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.content-section_flex-left .content-section .content-innner-wrap .inner-content {
  width: 360px;
  margin: 30px 0px;
}
@media only screen and (max-width: 769px) {
  .content-section_flex-left .content-section .content-innner-wrap .inner-content {
    width: 100%;
    margin: 10px 0px;
  }
}
.content-section_flex-left .content-section .content-innner-wrap .inner-content .thubnail-img {
  width: 360px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 769px) {
  .content-section_flex-left .content-section .content-innner-wrap .inner-content .thubnail-img {
    width: 100%;
    height: auto;
  }
}
.content-section_flex-left .content-section .content-innner-wrap .inner-content .thubnail-img img {
  width: 100%;
}
.content-section_flex-left .content-section .content-innner-wrap .inner-content .tag-waku {
  margin: 10px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.content-section_flex-left .content-section .content-innner-wrap .inner-content .tag-waku .tag {
  font-size: 15px;
  background-color: #F01B2C;
  color: white;
  padding: 3px;
  margin-right: 10px;
}
.content-section_flex-left .content-section .content-innner-wrap .inner-content .tag-waku .date {
  font-size: 15px;
}
.content-section_flex-left .content-section .content-innner-wrap .inner-content .contet-topic-bun {
  font-size: 18px;
}
.content-section_flex-left .content-section .content-innner-wrap .inner-content .content-tag-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
  flex-wrap: wrap;
}
.content-section_flex-left .content-section .content-innner-wrap .inner-content .content-tag-wrap .content-tag {
  color: #5C5C5C;
  font-size: 15px;
  margin-right: 10px;
}
.content-section_flex-left .content-section-2 {
  width: 100%;
  margin: 10px auto !important;
}
.content-section_flex-left .content-section-2 .title-waku {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #222222;
  padding-bottom: 30px;
  width: 100%;
  margin: auto;
  background-color: #F5F5F5;
}
.content-section_flex-left .content-section-2 .title-waku .title-left {
  width: 100%;
}
.content-section_flex-left .content-section-2 .title-waku .title-left .title {
  font-size: 64px;
  line-height: 64px;
}
@media only screen and (max-width: 769px) {
  .content-section_flex-left .content-section-2 .title-waku .title-left .title {
    font-size: 38px;
    line-height: 38px;
  }
}
.content-section_flex-left .content-section-2 .title-waku .title-left .img {
  width: 100%;
}
.content-section_flex-left .content-section-2 .title-waku .title-left .title-bun {
  font-size: 20px;
  color: #5C5C5C;
  margin-top: 10px;
}
.content-section_flex-left .content-section-2 .title-waku .content-btn {
  width: 260px;
  height: 60px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 10px 40px;
  font-size: 20px;
  letter-spacing: 2px;
  position: relative;
  background-color: #040404;
  border-radius: 50px;
  letter-spacing: 1px;
  font-weight: lighter;
  cursor: pointer;
}
@media only screen and (max-width: 769px) {
  .content-section_flex-left .content-section-2 .title-waku .content-btn {
    width: 80%;
    height: 40px;
    padding: 10px;
    max-width: 550px;
    text-align: center;
    line-height: 42px;
    font-size: 16px;
    height: 64px;
    margin: auto;
  }
}
.content-section_flex-left .content-section-2 .title-waku .content-btn:hover {
  opacity: 0.5;
}
.content-section_flex-left .content-section-3 {
  width: 100%;
  margin-bottom: 50px !important;
}
.content-section_flex-right {
  width: 310px;
}
@media only screen and (max-width: 769px) {
  .content-section_flex-right {
    width: 100%;
    padding: 10% 0px;
  }
}
.content-section_flex-right .content-section {
  width: 100%;
  margin: 100px auto;
}
@media only screen and (max-width: 769px) {
  .content-section_flex-right .content-section {
    margin: 0px auto;
  }
}
.content-section_flex-right .content-section .title-waku {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #222222;
  padding-bottom: 30px;
  width: 100%;
  margin: auto;
}
.content-section_flex-right .content-section .title-waku .title-left .title {
  font-size: 64px;
}
.content-section_flex-right .content-section .title-waku .title-left .img {
  width: 100%;
}
.content-section_flex-right .content-section .title-waku .title-left .title-bun {
  font-size: 20px;
  color: #5C5C5C;
  margin-top: 10px;
}
.content-section_flex-right .content-section .search_container {
  box-sizing: border-box;
  position: relative;
  border: 2px solid #222222;
  padding: 3px 10px;
  border-radius: 20px;
  height: 2.3em;
  width: 100%;
  overflow: hidden;
  margin: 20px auto;
}
@media only screen and (max-width: 769px) {
  .content-section_flex-right .content-section .search_container {
    width: 86%;
    border: none;
    border-bottom: 2px solid #222222;
    border-radius: 0px;
    height: 50px;
  }
}
.content-section_flex-right .content-section .search_container input[type=text] {
  border: none;
  height: 27px;
  padding-left: 29px;
}
@media only screen and (max-width: 769px) {
  .content-section_flex-right .content-section .search_container input[type=text] {
    height: 50px;
    padding-left: 0px;
    width: 100%;
  }
}
.content-section_flex-right .content-section .search_container input[type=text]::-moz-placeholder {
  color: #A8A8A8; /* 色を赤に設定 */
  font-size: 12px;
}
.content-section_flex-right .content-section .search_container input[type=text]::placeholder {
  color: #A8A8A8; /* 色を赤に設定 */
  font-size: 12px;
}
.content-section_flex-right .content-section .search_container input[type=text]:focus {
  outline: 0;
}
.content-section_flex-right .content-section .search_container input[type=submit] {
  cursor: pointer;
  content: "";
  border: none;
  background-image: url(../img/search.svg);
  position: absolute;
  width: 22px;
  height: 22px;
  left: 10px;
  top: 7px;
  outline: none;
  background-size: cover;
}
@media only screen and (max-width: 769px) {
  .content-section_flex-right .content-section .search_container input[type=submit] {
    background-image: url(../img/black-search.svg);
    left: unset;
    right: 0px;
    top: 8px;
    width: 40px;
    height: 40px;
  }
}
.content-section_flex-right .content-tag-waku {
  margin: 10px auto;
  display: flex;
  flex-wrap: wrap;
  width: 86%;
}
.content-section_flex-right .content-tag-waku .tag {
  font-size: 12px;
  color: #979797;
  border: 1px solid #979797;
  border-radius: 50px;
  line-height: 24px;
  padding: 0px 10px;
  margin: 3px 3px;
  display: inline-block;
}

.about-back {
  background-image: url(../img/about/top-back.png);
  width: 100%;
  padding-top: 1%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 769px) {
  .about-back {
    background: none;
  }
}

.about-back-fixed {
  background-image: url(../img/about/top-back.png);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  height: 79vh;
  z-index: -99;
}
@media only screen and (max-width: 769px) {
  .about-back-fixed {
    background-image: url(../img/about/sm-back.png);
    position: fixed;
    height: 79vh;
    display: block;
  }
}

.about-contet-wrap {
  width: 700px;
  margin-left: auto;
  margin: 50px 0px 60px auto;
}
@media only screen and (max-width: 769px) {
  .about-contet-wrap {
    width: 100%;
    margin: 10% auto;
  }
}
.about-contet-wrap-inner-title {
  font-size: 36px;
  line-height: 50px;
  margin: 50px auto 30px;
}
@media only screen and (max-width: 769px) {
  .about-contet-wrap-inner-title {
    font-size: 23px;
    margin: 10% auto;
    line-height: 32px;
  }
}
@media only screen and (max-width: 769px) {
  .about-contet-wrap-inner-title {
    margin: 40% auto 10%;
  }
}
.about-contet-wrap .top-img {
  width: 700px;
  height: 334px;
}
.about-contet-wrap .top-img-2 {
  width: 700px;
  height: auto;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .about-contet-wrap .top-img-2 {
    width: 100%;
    margin: 10% auto;
  }
}
.about-contet-wrap .top-bun {
  font-size: 16px;
  line-height: 26px;
}
.about-contet-wrap .top-bun-2 {
  font-size: 16px;
  line-height: 26px;
  margin: 10px auto 100px;
}
.about-contet-wrap .top-bun-under-bar {
  font-size: 18px;
  line-height: 28px;
  border-bottom: 2px solid #222222;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 769px) {
  .about-contet-wrap .top-bun-under-bar {
    border-bottom: 1px solid #D9D9D9;
  }
}
.about-contet-wrap .content-bun {
  font-size: 16px;
  line-height: 26px;
}
.about-contet-wrap .about-contet-wrap-inner {
  margin: 80px auto;
}
@media only screen and (max-width: 769px) {
  .about-contet-wrap .about-contet-wrap-inner {
    margin: 10% auto;
  }
}
.about-contet-wrap .about-contet-wrap-inner-inner-flex {
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .about-contet-wrap .about-contet-wrap-inner-inner-flex {
    margin: 5% auto 0px;
    border-bottom: 1px solid white;
    padding-bottom: 5%;
  }
}
.about-contet-wrap .about-contet-wrap-inner-inner-flex .left {
  width: 126px;
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 769px) {
  .about-contet-wrap .about-contet-wrap-inner-inner-flex .left {
    font-size: 14px;
    line-height: 26px;
    width: 45%;
  }
}
.about-contet-wrap .about-contet-wrap-inner-inner-flex .right {
  width: 510px;
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 769px) {
  .about-contet-wrap .about-contet-wrap-inner-inner-flex .right {
    width: 55%;
    font-size: 14px;
    line-height: 24px;
  }
}
.about-contet-wrap .about-contet-wrap-inner .small-bun {
  font-size: 12px;
  color: #111111;
  line-height: 22px;
  margin: 30px auto;
}

.about-contet-wrap-flexbox {
  width: 1180px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 30px auto;
}
.about-contet-wrap-flexbox-left {
  font-size: 32px;
  margin: 50px 0px 0px;
}
.about-contet-wrap-flexbox-right {
  width: 700px;
}
.about-contet-wrap-flexbox-right .inner-title {
  font-size: 36px;
  line-height: 45px;
  margin: 50px auto 30px;
}
.about-contet-wrap-flexbox-right .top-img {
  width: 700px;
  height: 334px;
}
.about-contet-wrap-flexbox-right .top-bun {
  font-size: 18px;
  line-height: 28px;
}
.about-contet-wrap-flexbox-right .top-bun-2 {
  font-size: 16px;
  line-height: 26px;
  margin: 10px auto 100px;
}
.about-contet-wrap-flexbox-right .about-contet-wrap-inner {
  margin: 80px auto;
}
.about-contet-wrap-flexbox-right .about-contet-wrap-inner-inner-flex {
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
}
.about-contet-wrap-flexbox-right .about-contet-wrap-inner-inner-flex .left {
  width: 126px;
  font-size: 16px;
  line-height: 26px;
}
.about-contet-wrap-flexbox-right .about-contet-wrap-inner-inner-flex .right {
  width: 510px;
  font-size: 16px;
  line-height: 26px;
}
.about-contet-wrap-flexbox-right .about-contet-wrap-inner .small-bun {
  font-size: 12px;
  color: #111111;
  line-height: 22px;
  margin: 30px auto;
}

.about-contnet-gray-back {
  background-color: #F5F5F5;
  padding: 10px 0px;
}

.aboutus_flexwrap {
  width: 1180px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 84px auto;
}
@media only screen and (max-width: 769px) {
  .aboutus_flexwrap {
    width: 100%;
    display: block;
    position: relative;
  }
}
.aboutus_flexwrap-left {
  font-size: 32px;
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .aboutus_flexwrap-left {
    position: absolute;
    font-size: 51px;
    width: 100%;
    z-index: 1;
    color: white;
    top: -48px;
    right: 10px;
    text-align: right;
  }
}
.aboutus_flexwrap-rignt {
  width: 700px;
}
@media only screen and (max-width: 769px) {
  .aboutus_flexwrap-rignt {
    width: 100%;
  }
}
.aboutus_flexwrap-rignt .title {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 769px) {
  .aboutus_flexwrap-rignt .title {
    z-index: 2;
    position: relative;
    padding-bottom: 2%;
    border-bottom: 1px solid white;
  }
}
.aboutus_flexwrap-rignt .content-bun {
  font-size: 16px;
  line-height: 26px;
}

.about-tag-wrap {
  width: 1180px;
  display: flex;
  justify-content: space-between;
  margin: 80px auto;
}
@media only screen and (max-width: 769px) {
  .about-tag-wrap {
    width: 86%;
    margin: 10% auto;
  }
}
.about-tag-wrap-left .title-left .title {
  font-size: 64px;
}
.about-tag-wrap-left .title-left .img {
  width: 100%;
}
.about-tag-wrap-left .title-left .title-bun {
  font-size: 20px;
  color: #5C5C5C;
  margin-top: 10px;
}
.about-tag-wrap-right {
  width: 700px;
}
.about-tag-wrap-right .content-tag-waku {
  margin: 10px auto;
  display: flex;
  flex-wrap: wrap;
}
.about-tag-wrap-right .content-tag-waku .tag {
  font-size: 12px;
  color: #979797;
  border: 1px solid #979797;
  border-radius: 50px;
  line-height: 24px;
  padding: 0px 10px;
  margin: 3px 3px;
  display: inline-block;
}

.single-wrap {
  display: flex;
  justify-content: space-between;
  width: 1180px;
  margin: 100px auto;
}
@media only screen and (max-width: 769px) {
  .single-wrap {
    width: 86%;
    margin: 10% auto;
    display: block;
  }
}
.single-wrap-left {
  width: 770px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left {
    width: 100%;
  }
}
.single-wrap-left .pagenation {
  text-align: center;
}
.single-wrap-left .pagenation .page-numbers {
  font-size: 18px;
  width: 40px;
  height: 40px;
  /* display: block; */
  background-color: white;
  border: 1px solid black;
  display: inline-block;
  line-height: 40px;
  border-radius: 50%;
}
.single-wrap-left .pagenation .prev {
  border: none !important;
}
.single-wrap-left .pagenation .next {
  border: none !important;
}
.single-wrap-left .pagenation .current {
  color: white;
  background-color: black;
}
.single-wrap-left .red-tag-wrap {
  display: flex;
  justify-content: flex-start;
}
.single-wrap-left .red-tag-wrap .red-tag {
  font-size: 15px;
  background-color: #F01B2C;
  color: white;
  padding: 3px;
  display: inline-block;
  margin-right: 10px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .red-tag-wrap .red-tag {
    font-size: 13px;
  }
}
.single-wrap-left .red-tag-wrap .date {
  font-size: 15px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .red-tag-wrap .date {
    font-size: 14px;
  }
}
.single-wrap-left .content-title {
  font-size: 36px;
  line-height: 50px;
  margin: 50px auto 30px;
  margin: 30px auto 30px;
  border-bottom: 2px solid #222222;
  padding-bottom: 20px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-title {
    font-size: 23px;
    margin: 10% auto;
    line-height: 32px;
  }
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-title {
    margin: 5% auto 5%;
  }
}
.single-wrap-left .content-img {
  width: 100%;
  margin: 10px auto;
}
.single-wrap-left .content-img img {
  width: 100%;
}
.single-wrap-left .gray-tag-wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.single-wrap-left .gray-tag-wrap .tag {
  color: #5C5C5C;
  color: #5C5C5C;
  font-size: 15px;
  margin-right: 10px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .gray-tag-wrap .tag {
    font-size: 14px;
  }
}
.single-wrap-left .content-bun {
  font-size: 16px;
  line-height: 26px;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-bun {
    margin: 5% auto 10%;
  }
}
.single-wrap-left .content-sub-title {
  font-size: 24px;
  color: white;
  line-height: 40px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-sub-title {
    font-size: 20px;
    line-height: 38px;
  }
}
.single-wrap-left .content-sub-title span {
  background-color: black;
  padding: 5px;
}
.single-wrap-left .content-sub-title-3 {
  font-size: 24px;
  color: black;
  line-height: 40px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-sub-title-3 {
    font-size: 20px;
    line-height: 32px;
  }
}
.single-wrap-left .content-sub-title-3 span {
  border-bottom: 3px solid #D7D7D7;
}
.single-wrap-left .content-section {
  width: 100%;
  margin: 100px auto;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-section {
    margin: 30% auto;
  }
}
.single-wrap-left .content-section .title-waku {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #222222;
  padding-bottom: 30px;
  width: 100%;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-section .title-waku {
    padding-bottom: 5%;
  }
}
.single-wrap-left .content-section .title-waku .title-left .title {
  font-size: 64px;
  line-height: 64px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-section .title-waku .title-left .title {
    font-size: 38px;
    line-height: 38px;
  }
}
.single-wrap-left .content-section .title-waku .title-left .img {
  width: 100%;
}
.single-wrap-left .content-section .title-waku .title-left .title-bun {
  font-size: 20px;
  color: #5C5C5C;
  margin-top: 10px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-section .title-waku .title-left .title-bun {
    font-size: 12px;
    line-height: 12px;
  }
}
.single-wrap-left .content-section .content-inner-flex {
  display: flex;
  margin: 30px auto;
  justify-content: space-between;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-section .content-inner-flex {
    display: block;
    margin: 5% auto 10%;
  }
}
.single-wrap-left .content-section .content-inner-flex-left {
  width: 211px;
  height: 211px;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-section .content-inner-flex-left {
    width: 100%;
    height: auto;
  }
}
.single-wrap-left .content-section .content-inner-flex-left img {
  width: 100%;
  height: 100%;
}
.single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap {
    display: block;
  }
}
.single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap .inner-content {
  width: 360px;
  margin: 30px 25px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap .inner-content {
    width: 100%;
    margin: 5% auto;
  }
}
.single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap .inner-content .thubnail-img {
  width: 360px;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap .inner-content .thubnail-img {
    width: 100%;
    height: auto;
  }
}
.single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap .inner-content .thubnail-img img {
  width: 100%;
}
.single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap .inner-content .tag-waku {
  margin: 10px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap .inner-content .tag-waku .tag {
  font-size: 15px;
  background-color: #F01B2C;
  color: white;
  padding: 3px;
  display: inline-block;
  margin-right: 10px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap .inner-content .tag-waku .tag {
    font-size: 13px;
  }
}
.single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap .inner-content .tag-waku .date {
  font-size: 15px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap .inner-content .tag-waku .date {
    font-size: 14px;
  }
}
.single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap .inner-content .contet-topic-bun {
  font-size: 18px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap .inner-content .contet-topic-bun {
    font-size: 17px;
  }
}
.single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap .inner-content .content-tag-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}
.single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap .inner-content .content-tag-wrap .content-tag {
  color: #5C5C5C;
  font-size: 15px;
  margin-right: 10px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-section .content-inner-flex-left .content-innner-wrap .inner-content .content-tag-wrap .content-tag {
    font-size: 14px;
  }
}
.single-wrap-left .content-section .content-inner-flex-right {
  width: 509px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-section .content-inner-flex-right {
    width: 100%;
  }
}
.single-wrap-left .content-section .content-inner-flex-right .name-waku {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
.single-wrap-left .content-section .content-inner-flex-right .name-waku .name {
  font-size: 24px;
  color: white;
  line-height: 40px;
  margin-right: 10px;
  color: black;
}
@media only screen and (max-width: 769px) {
  .single-wrap-left .content-section .content-inner-flex-right .name-waku .name {
    font-size: 20px;
    line-height: 38px;
  }
}
.single-wrap-left .content-section .content-inner-flex-right .name-waku .name span {
  background-color: black;
  padding: 5px;
}
.single-wrap-left .content-section .content-inner-flex-right .name-waku .name-eng {
  font-size: 15px;
}
.single-wrap-right {
  width: 310px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right {
    width: 100%;
  }
}
.single-wrap-right .content-section {
  width: 100%;
  margin: 50px auto;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .content-section {
    margin: 0px auto;
  }
}
.single-wrap-right .content-section .title-waku {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #222222;
  padding-bottom: 30px;
  width: 100%;
  margin: auto;
}
.single-wrap-right .content-section .title-waku .title-left .title {
  font-size: 64px;
  line-height: 64px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .content-section .title-waku .title-left .title {
    font-size: 38px;
    line-height: 38px;
  }
}
.single-wrap-right .content-section .title-waku .title-left .img {
  width: 100%;
}
.single-wrap-right .content-section .title-waku .title-left .title-bun {
  font-size: 20px;
  color: #5C5C5C;
  margin-top: 10px;
  color: #5C5C5C;
  margin-top: 10px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .content-section .title-waku .title-left .title-bun {
    font-size: 12px;
    line-height: 12px;
  }
}
.single-wrap-right .content-section .search_container {
  box-sizing: border-box;
  position: relative;
  border: 2px solid #222222;
  padding: 3px 10px;
  border-radius: 20px;
  height: 2.3em;
  width: 100%;
  overflow: hidden;
  margin: 20px auto;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .content-section .search_container {
    width: 86%;
    border: none;
    border-bottom: 2px solid #222222;
    border-radius: 0px;
    height: 50px;
  }
}
.single-wrap-right .content-section .search_container input[type=text] {
  border: none;
  height: 27px;
  padding-left: 29px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .content-section .search_container input[type=text] {
    height: 50px;
    padding-left: 0px;
  }
}
.single-wrap-right .content-section .search_container input[type=text]::-moz-placeholder {
  color: #A8A8A8; /* 色を赤に設定 */
  font-size: 12px;
}
.single-wrap-right .content-section .search_container input[type=text]::placeholder {
  color: #A8A8A8; /* 色を赤に設定 */
  font-size: 12px;
}
.single-wrap-right .content-section .search_container input[type=text]:focus {
  outline: 0;
}
.single-wrap-right .content-section .search_container input[type=submit] {
  cursor: pointer;
  content: "";
  border: none;
  background-image: url(../img/search.svg);
  position: absolute;
  width: 22px;
  height: 22px;
  left: 10px;
  top: 7px;
  outline: none;
  background-size: cover;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .content-section .search_container input[type=submit] {
    background-image: url(../img/black-search.svg);
    left: unset;
    right: 0px;
    width: 40px;
    height: 40px;
  }
}
.single-wrap-right .content-tag-waku {
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.single-wrap-right .content-tag-waku .tag {
  font-size: 12px;
  color: #979797;
  border: 1px solid #979797;
  border-radius: 50px;
  line-height: 24px;
  padding: 0px 10px;
  margin: 3px 3px;
  display: inline-block;
}
.single-wrap-right .inner-content {
  width: 310px;
  margin: 30px 0px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .inner-content {
    width: 100%;
    margin: 10px 0px;
    display: flex;
    justify-content: space-between;
  }
}
.single-wrap-right .inner-content .inner-content-right {
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .inner-content .inner-content-right {
    width: 48%;
  }
}
.single-wrap-right .inner-content .thubnail-img {
  width: 310px;
  height: 188px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .inner-content .thubnail-img {
    width: 50%;
    height: auto;
    aspect-ratio: 1/0.8;
  }
}
.single-wrap-right .inner-content .thubnail-img img {
  width: 100%;
  height: auto;
}
.single-wrap-right .inner-content .tag-waku {
  margin: 10px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .inner-content .tag-waku {
    margin: 0px auto;
  }
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .inner-content .tag-waku .tag-inner-flex {
    display: unset;
    justify-content: flex-start;
    align-items: baseline;
    margin: 3px auto;
  }
}
.single-wrap-right .inner-content .tag-waku .tag {
  font-size: 15px;
  background-color: #F01B2C;
  color: white;
  padding: 3px;
  display: inline-block;
  margin-right: 10px;
  margin-right: 10px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .inner-content .tag-waku .tag {
    font-size: 13px;
  }
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .inner-content .tag-waku .tag {
    display: inline-block;
  }
}
.single-wrap-right .inner-content .tag-waku .date {
  font-size: 15px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .inner-content .tag-waku .date {
    font-size: 13px;
  }
}
.single-wrap-right .inner-content .contet-topic-bun {
  font-size: 18px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .inner-content .contet-topic-bun {
    font-size: 12px;
    line-height: 16px;
  }
}
.single-wrap-right .inner-content .content-tag-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .inner-content .content-tag-wrap {
    margin: auto;
    flex-wrap: wrap;
  }
}
.single-wrap-right .inner-content .content-tag-wrap .content-tag {
  color: #5C5C5C;
  font-size: 15px;
  margin-right: 10px;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .inner-content .content-tag-wrap .content-tag {
    font-size: 12px;
  }
}
@media screen and (max-width: 320px) {
  .single-wrap-right .inner-content .content-tag-wrap .content-tag {
    font-size: 11px;
    letter-spacing: -1px;
  }
}
.single-wrap-right .content-btn {
  width: 260px;
  height: 60px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 10px 40px;
  font-size: 20px;
  letter-spacing: 2px;
  position: relative;
  background-color: #040404;
  border-radius: 50px;
  letter-spacing: 1px;
  font-weight: lighter;
  cursor: pointer;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .content-btn {
    width: 80%;
    height: 40px;
    padding: 10px;
    max-width: 550px;
    text-align: center;
    line-height: 42px;
    font-size: 16px;
    height: 64px;
    margin: auto;
  }
}
.single-wrap-right .content-btn:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 769px) {
  .single-wrap-right .content-btn {
    margin: 10% auto;
  }
}

.single_detail_inner-content {
  width: 360px;
  margin: 30px 12px !important;
}

.sinle-content p {
  font-size: 16px;
  line-height: 30px;
}
.sinle-content p a {
  border-bottom: 1px solid #2001ff;
  color: blue;
}
.sinle-content img {
  width: 100%;
  height: auto;
  margin: 10px auto;
}
.sinle-content h1 {
  font-size: 36px;
  line-height: 50px;
  margin: 50px auto 30px;
  margin: 30px auto 30px;
  border-bottom: 2px solid #222222;
  padding-bottom: 20px;
  color: black !important;
}
@media only screen and (max-width: 769px) {
  .sinle-content h1 {
    font-size: 23px;
    margin: 10% auto;
    line-height: 32px;
  }
}
@media only screen and (max-width: 769px) {
  .sinle-content h1 {
    margin: 5% auto 5%;
  }
}
.sinle-content h2 {
  font-size: 24px;
  color: white;
  line-height: 40px;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .sinle-content h2 {
    font-size: 20px;
    line-height: 38px;
  }
}
.sinle-content h2 span {
  background-color: black;
  padding: 5px;
}
.sinle-content h3 {
  font-size: 24px;
  color: black;
  line-height: 40px;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .sinle-content h3 {
    font-size: 20px;
    line-height: 32px;
  }
}
.sinle-content h3 span {
  border-bottom: 3px solid #D7D7D7;
}

.hide-login-waku {
  width: 100%;
  height: 500px;
  background-color: #9a8d8d;
  margin-top: -248px;
  background: linear-gradient(0deg, rgb(255, 255, 255), rgba(253, 253, 253, 0.89));
  display: block;
  /* Z-INDEX: 5; */
  z-index: 2;
  position: relative;
}
.hide-login-waku .login-oowaku {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 40px;
  text-align: center;
  line-height: 60px;
}
.hide-login-waku .login-oowaku .login-btn-waku {
  margin-top: 40px;
  display: flex;
}
.hide-login-waku .login-oowaku .login-btn-waku .login-btn {
  width: 260px;
  height: 60px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 10px 40px;
  font-size: 20px;
  letter-spacing: 2px;
  position: relative;
  background-color: #040404;
  border-radius: 50px;
  letter-spacing: 1px;
  font-weight: lighter;
  cursor: pointer;
  text-align: center;
  line-height: 40px;
  margin: 0px 5px;
}
@media only screen and (max-width: 769px) {
  .hide-login-waku .login-oowaku .login-btn-waku .login-btn {
    width: 80%;
    height: 40px;
    padding: 10px;
    max-width: 550px;
    text-align: center;
    line-height: 42px;
    font-size: 16px;
    height: 64px;
    margin: auto;
  }
}
.hide-login-waku .login-oowaku .login-btn-waku .login-btn:hover {
  opacity: 0.5;
}
.hide-login-waku .login-oowaku .login-btn-waku .login-btn-2 {
  width: 260px;
  height: 60px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-content: center;
  align-items: center;
  color: black;
  padding: 10px 40px;
  font-size: 20px;
  letter-spacing: 2px;
  position: relative;
  background-color: white;
  border-radius: 50px;
  letter-spacing: 1px;
  font-weight: lighter;
  border: 1px solid black;
  cursor: pointer;
  text-align: center;
  line-height: 40px;
  margin: 0px 5px;
  border: 2px solid black;
}
@media only screen and (max-width: 769px) {
  .hide-login-waku .login-oowaku .login-btn-waku .login-btn-2 {
    width: 80%;
    height: 40px;
    padding: 10px;
    max-width: 550px;
    text-align: center;
    line-height: 42px;
    font-size: 16px;
    height: 64px;
    margin: auto;
  }
}
.hide-login-waku .login-oowaku .login-btn-waku .login-btn-2:hover {
  opacity: 0.5;
}

.title {
  margin: 0px auto 0px;
  font-size: 30px;
  letter-spacing: 4px;
  text-align: center;
  letter-spacing: 6px;
  color: gray;
}
@media only screen and (max-width: 769px) {
  .title {
    font-size: 20px;
  }
}

.inner-title {
  margin: 50px auto 0px;
}
@media only screen and (max-width: 769px) {
  .inner-title {
    margin: 10% auto 0px;
  }
}

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

.ichiran-top-items {
  width: 1000px;
  margin: auto;
  margin-bottom: 50px;
}
@media only screen and (max-width: 769px) {
  .ichiran-top-items {
    width: 100%;
  }
}

.shouhin-waku {
  margin: auto;
  padding: 81px 0px 80px;
}
@media only screen and (max-width: 769px) {
  .shouhin-waku {
    padding: 15% 0px 5%;
  }
}
.shouhin-waku .title {
  margin: 0px auto 0px;
  font-size: 30px;
  letter-spacing: 4px;
  text-align: center;
  letter-spacing: 6px;
}
@media only screen and (max-width: 769px) {
  .shouhin-waku .title {
    font-size: 20px;
    letter-spacing: 1vw;
  }
}
.shouhin-waku .sub-title {
  font-size: 17px;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 16px;
}
@media only screen and (max-width: 769px) {
  .shouhin-waku .sub-title {
    margin-top: 10px;
    font-size: 13px;
  }
}
.shouhin-waku-inner {
  width: 800px;
  display: flex;
  justify-content: space-between;
  margin: 56px auto 10px;
}
@media only screen and (max-width: 769px) {
  .shouhin-waku-inner {
    width: 86%;
    margin: 10% auto;
  }
}
.shouhin-waku-inner .inner-btn-waku {
  width: 180px;
  margin: 0px;
  height: 50px;
  line-height: 50px;
  background-color: white;
  border: 2px solid #e6031f;
  border-radius: 50px;
  color: #e6031f;
}
@media only screen and (max-width: 769px) {
  .shouhin-waku-inner .inner-btn-waku {
    width: 31%;
    max-width: 160px;
    margin: 0.2%;
  }
}
.shouhin-waku-inner .inner-btn-waku-btn {
  width: 100%;
}
.shouhin-waku-inner .inner-btn-waku-bun {
  font-size: 14px;
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .shouhin-waku-inner .inner-btn-waku-bun {
    font-size: 11px;
    letter-spacing: 0.1vw;
  }
}
.shouhin-waku-inner .inner-btn-waku.active {
  background-color: #e6031f;
  color: #fff;
}

.shouhin-wrap {
  width: 100%;
  padding: 88px 0px 8.8px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap {
    padding: 10% 0px 10px;
  }
}
.shouhin-wrap-inner {
  width: 880px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap-inner {
    width: 88%;
  }
}
.shouhin-wrap-inner .title {
  margin: 0px auto 0px;
  font-size: 30px;
  letter-spacing: 4px;
  text-align: center;
  letter-spacing: 6px;
  width: 174px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap-inner .title {
    font-size: 20px;
    letter-spacing: 1vw;
  }
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap-inner .title {
    width: 35%;
  }
}
.shouhin-wrap-inner .title-ichiran {
  font-size: 30px;
  letter-spacing: 4px;
  text-align: center;
  letter-spacing: 6px;
  margin: 0px auto 60px;
  display: block;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap-inner .title-ichiran {
    font-size: 20px;
    letter-spacing: 1vw;
  }
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap-inner .title-ichiran {
    margin: 10% auto 0px;
  }
}
.shouhin-wrap-inner .title-2 {
  margin: 0px auto 0px;
  font-size: 30px;
  letter-spacing: 4px;
  text-align: center;
  letter-spacing: 6px;
  width: 284px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap-inner .title-2 {
    font-size: 20px;
    letter-spacing: 1vw;
  }
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap-inner .title-2 {
    width: 54%;
  }
}
.shouhin-wrap-inner .title-3 {
  margin: 0px auto 0px;
  font-size: 30px;
  letter-spacing: 4px;
  text-align: center;
  letter-spacing: 6px;
  width: 211px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap-inner .title-3 {
    font-size: 20px;
    letter-spacing: 1vw;
  }
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap-inner .title-3 {
    width: 45%;
  }
}
.shouhin-wrap-inner .sub-title {
  font-size: 17px;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 0px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap-inner .sub-title {
    margin-top: 10px;
    font-size: 13px;
  }
}
.shouhin-wrap .inner-rank-waku {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 26.4px auto;
  flex-wrap: wrap;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap .inner-rank-waku {
    display: flex;
    margin: 10% auto;
    justify-content: unset;
    align-items: unset;
  }
}
.shouhin-wrap .inner-rank-waku .inner-waku {
  width: 204px;
  height: auto;
  margin: 0px 7.92px 26.4px 7.92px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap .inner-rank-waku .inner-waku {
    width: 48%;
    height: auto;
    display: table-cell;
    margin: 0px 1% 5%;
    background-color: white;
    border-radius: 7px;
  }
}
.shouhin-wrap .inner-rank-waku .inner-waku .img {
  width: 204px;
  height: 176px;
  aspect-ratio: 1/0.86;
  position: relative;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap .inner-rank-waku .inner-waku .img {
    width: 100%;
    height: auto;
  }
}
.shouhin-wrap .inner-rank-waku .inner-waku .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7px 7px 0px 0px;
}
.shouhin-wrap .inner-rank-waku .inner-waku .img .rank-mark {
  position: absolute;
  top: -11px;
  left: 10px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap .inner-rank-waku .inner-waku .img .rank-mark {
    position: absolute;
    top: -3px;
    left: 8px;
    width: 27%;
  }
}
.shouhin-wrap .inner-rank-waku .inner-waku .img .rank-mark-ichiran {
  position: absolute;
  top: 8.8px;
  left: 8.8px;
}
.shouhin-wrap .inner-rank-waku .inner-waku .bun-waku {
  background-color: white;
  border-radius: 0px 0px 7px 7px;
  text-align: left;
  padding: 10px;
  position: relative;
  height: 157px;
}
.shouhin-wrap .inner-rank-waku .inner-waku .bun-waku .bun1 {
  font-size: 11.4px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap .inner-rank-waku .inner-waku .bun-waku .bun1 {
    letter-spacing: -0.5px;
    font-size: 10px;
  }
}
.shouhin-wrap .inner-rank-waku .inner-waku .bun-waku .bun-title {
  font-weight: bolder;
  font-size: 13.2px;
  margin-top: 7px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap .inner-rank-waku .inner-waku .bun-waku .bun-title {
    font-size: 13px;
  }
}
.shouhin-wrap .inner-rank-waku .inner-waku .bun-waku .bun-price {
  position: absolute;
  top: 93.2px;
  left: 10px;
  font-size: 11px;
  margin-top: 10px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap .inner-rank-waku .inner-waku .bun-waku .bun-price {
    font-size: 12px;
  }
}
.shouhin-wrap .inner-rank-waku .inner-waku .bun-waku .bun-price-2 {
  position: absolute;
  top: 120px;
  left: 10px;
  font-size: 12px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap .inner-rank-waku .inner-waku .bun-waku .bun-price-2 {
    font-size: 12px;
  }
}
.shouhin-wrap .inner-rank-waku .inner-waku .bun-waku2 {
  background-color: white;
  border-radius: 0px 0px 7px 7px;
  text-align: left;
  padding: 10px;
  position: relative;
  height: 144px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap .inner-rank-waku .inner-waku .bun-waku2 {
    padding: 5px 7px;
  }
}
.shouhin-wrap .inner-rank-waku .inner-waku .bun-waku2 .bun1 {
  font-size: 13px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap .inner-rank-waku .inner-waku .bun-waku2 .bun1 {
    letter-spacing: -0.5px;
    font-size: 10px;
  }
}
.shouhin-wrap .inner-rank-waku .inner-waku .bun-waku2 .bun-title {
  font-weight: bolder;
  font-size: 15px;
  margin-top: 8px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap .inner-rank-waku .inner-waku .bun-waku2 .bun-title {
    font-size: 13px;
  }
}
.shouhin-wrap .inner-rank-waku .inner-waku .bun-waku2 .bun-price {
  position: absolute;
  top: 83px;
  left: 10px;
  font-size: 12px;
  margin-top: 10px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap .inner-rank-waku .inner-waku .bun-waku2 .bun-price {
    font-size: 12px;
  }
}
.shouhin-wrap .inner-rank-waku .inner-waku .bun-waku2 .bun-price-2 {
  position: absolute;
  top: 110px;
  left: 10px;
  font-size: 12px;
}
@media only screen and (max-width: 769px) {
  .shouhin-wrap .inner-rank-waku .inner-waku .bun-waku2 .bun-price-2 {
    font-size: 12px;
  }
}

@media only screen and (max-width: 769px) {
  .bland-cocone-back {
    background-image: url(../img/bland/sm/cocone-top.jpg);
    padding-top: 97%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .bland-cocone-back .bland-name-title {
    width: 45%;
    margin-left: 8%;
  }
  .bland-cocone-back .bland-name-2 {
    font-size: 30.8px;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-left: 8%;
  }
}
@media only screen and (max-width: 769px) and (max-width: 769px) {
  .bland-cocone-back .bland-name-2 {
    font-size: 6vw;
    letter-spacing: 1.2vw;
    font-weight: 900;
  }
}
@media only screen and (max-width: 769px) {
  .bland-cocone-back .bland-bun {
    margin-top: 30px;
    letter-spacing: 3px;
    font-size: 4vw;
    margin-left: 8%;
    padding-bottom: 10%;
  }
}

@media only screen and (max-width: 769px) {
  .bland-coconehair-back {
    background-image: url(../img/bland/sm/coconehair-top.jpg);
    padding-top: 97%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .bland-coconehair-back .bland-name-title {
    width: 45%;
    margin-left: 50%;
  }
  .bland-coconehair-back .bland-name-2 {
    font-size: 30.8px;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-left: 50%;
  }
}
@media only screen and (max-width: 769px) and (max-width: 769px) {
  .bland-coconehair-back .bland-name-2 {
    font-size: 6vw;
    letter-spacing: 1.2vw;
    font-weight: 900;
  }
}
@media only screen and (max-width: 769px) {
  .bland-coconehair-back .bland-bun {
    margin-top: 30px;
    letter-spacing: 3px;
    font-size: 4vw;
    margin-left: 50%;
    padding-bottom: 10%;
  }
}

@media only screen and (max-width: 769px) {
  .bland-anone-back {
    background-image: url(../img/bland/sm/anone-top.jpg);
    padding-top: 97%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .bland-anone-back .bland-name-title {
    width: 43%;
    margin-left: 50%;
  }
  .bland-anone-back .bland-name-2 {
    font-size: 30.8px;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-left: 50%;
  }
}
@media only screen and (max-width: 769px) and (max-width: 769px) {
  .bland-anone-back .bland-name-2 {
    font-size: 6vw;
    letter-spacing: 1.2vw;
    font-weight: 900;
  }
}
@media only screen and (max-width: 769px) {
  .bland-anone-back .bland-bun {
    margin-top: 30px;
    letter-spacing: 3px;
    font-size: 4vw;
    margin-left: 50%;
    padding-bottom: 10%;
  }
}

@media only screen and (max-width: 769px) {
  .bland-konone-back {
    background-image: url(../img/bland/sm/konone-top.png);
    padding-top: 20%;
    padding-bottom: 80%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .bland-konone-back .bland-name-title {
    width: 53%;
    margin-left: 8%;
  }
  .bland-konone-back .bland-name-2 {
    font-size: 30.8px;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-left: 8%;
  }
}
@media only screen and (max-width: 769px) and (max-width: 769px) {
  .bland-konone-back .bland-name-2 {
    font-size: 6vw;
    letter-spacing: 1.2vw;
    font-weight: 900;
  }
}
@media only screen and (max-width: 769px) {
  .bland-konone-back .bland-bun {
    margin-top: 30px;
    letter-spacing: 3px;
    font-size: 4vw;
    margin-left: 8%;
    padding-bottom: 10%;
    line-height: 9vw;
  }
}

.bland-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 100px;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  .bland-wrap {
    display: block;
    margin-bottom: 10%;
  }
}
.bland-wrap .anone-top-1 {
  position: relative;
}
.bland-wrap .anone-top-2 {
  position: absolute;
  top: -54px;
  right: -63px;
  width: 117%;
}
.bland-wrap-img {
  width: 50%;
}
.bland-wrap-text-wrap {
  width: 440px;
  padding-top: 76px;
}
@media only screen and (max-width: 769px) {
  .bland-wrap-text-wrap {
    width: 86%;
    padding: 0px;
    margin: auto;
  }
}
.bland-wrap-text-wrap .bland-name-title {
  width: 215px;
}
.bland-wrap-text-wrap .bland-name-2 {
  font-size: 30.8px;
  letter-spacing: 2px;
  margin-top: 8px;
}
@media only screen and (max-width: 769px) {
  .bland-wrap-text-wrap .bland-name-2 {
    font-size: 6vw;
    letter-spacing: 1.2vw;
    font-weight: 900;
  }
}
.bland-wrap-text-wrap .bland-bun {
  font-size: 21px;
  margin-top: 30px;
  letter-spacing: 3px;
  line-height: 40px;
}
.bland-wrap-text-wrap .bland-messege {
  width: 377px;
  height: 240px;
  margin: 8.8% auto;
  position: relative;
}
@media only screen and (max-width: 769px) {
  .bland-wrap-text-wrap .bland-messege {
    width: 100%;
    aspect-ratio: 5/3;
    height: auto;
  }
}
.bland-wrap-text-wrap .bland-messege .ue {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 67px;
}
@media only screen and (max-width: 769px) {
  .bland-wrap-text-wrap .bland-messege .ue {
    top: 0px;
    left: 0;
    width: 14%;
  }
}
.bland-wrap-text-wrap .bland-messege .shita {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 67px;
}
@media only screen and (max-width: 769px) {
  .bland-wrap-text-wrap .bland-messege .shita {
    bottom: -10px;
    right: 0;
    width: 14%;
  }
}
.bland-wrap-text-wrap .bland-messege .bun {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  font-size: 13.2px;
  width: 429px;
  line-height: 34px;
}
@media only screen and (max-width: 769px) {
  .bland-wrap-text-wrap .bland-messege .bun {
    font-size: 3.2vw;
    line-height: 8vw;
    width: 86%;
  }
}
@media only screen and (max-width: 769px) {
  .bland-wrap-text-wrap .bland-messege-2 {
    width: 100%;
    aspect-ratio: 6.7/4.5;
    height: auto;
  }
}
@media only screen and (max-width: 769px) {
  .bland-wrap-text-wrap .bland-messege-3 {
    width: 100%;
    aspect-ratio: 6.7/4.5;
    height: auto;
  }
}

.shouhin-detail-wrap {
  width: 880px;
  margin: 88px auto;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap {
    width: 100%;
    margin: 5% auto;
    display: block;
  }
}
.shouhin-detail-wrap-left {
  width: 462px;
  height: auto;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-left {
    width: 100%;
  }
}
.shouhin-detail-wrap-left .img {
  width: 462px;
  aspect-ratio: 1/1;
}
.shouhin-detail-wrap-left .img img {
  width: 100%;
  height: 100%;
}
.shouhin-detail-wrap-left .swiper-button-next:after, .shouhin-detail-wrap-left .swiper-button-prev:after {
  color: black;
  font-size: 25px !important;
  -webkit-font-smoothing: none;
}
.shouhin-detail-wrap-left #product-detail-bar.under-bar {
  background-color: #CBCBCB;
  width: 88px;
  height: 1px;
  margin: 17.6px 8% 17.6px auto;
  opacity: 1;
  position: relative;
}
.shouhin-detail-wrap-left #product-detail-bar.under-bar .under-bar-inner {
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: #DE3333;
  height: 1px;
}
.shouhin-detail-wrap-right {
  width: 364px;
  margin-top: 8px;
  margin-left: 53.6px;
  /*モーダル本体の指定 + モーダル外側の背景の指定*/
  /*モーダル枠の指定*/
  /*モーダルを閉じるボタンの指定*/
  /*モーダル内のコンテンツの指定*/
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right {
    margin: auto;
    width: 84%;
  }
}
.shouhin-detail-wrap-right .title-1 {
  font-size: 14.9px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .title-1 {
    font-size: 3.1vw;
  }
}
.shouhin-detail-wrap-right .title-2 {
  font-size: 25.52px;
  font-weight: 800;
  margin: 8px 0px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .title-2 {
    font-size: 4.5vw;
  }
}
.shouhin-detail-wrap-right .title-3 {
  font-size: 14px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .title-3 {
    font-size: 3vw;
  }
}
.shouhin-detail-wrap-right .price-1 {
  font-size: 16.72px;
  text-align: right;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .price-1 {
    font-size: 3.2vw;
  }
}
.shouhin-detail-wrap-right .price-2 {
  font-size: 24.64px;
  margin-left: 10.6px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .price-2 {
    font-size: 6vw;
    margin-left: 10px;
  }
}
.shouhin-detail-wrap-right .price-3 {
  font-size: 12.32px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .price-3 {
    font-size: 3.5vw;
  }
}
.shouhin-detail-wrap-right .flex-box1 {
  display: flex;
  justify-content: right;
  align-items: baseline;
  margin-top: 71px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .flex-box1 {
    margin-top: 20px;
  }
}
.shouhin-detail-wrap-right .flex-box2 {
  display: flex;
  justify-content: right;
  align-items: baseline;
  margin-top: 0px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .flex-box2 {
    justify-content: space-between;
    width: 100%;
  }
}
.shouhin-detail-wrap-right .flex-box3 {
  display: flex;
  justify-content: right;
  align-items: baseline;
  margin-top: 0px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .flex-box3 {
    justify-content: space-between;
    width: 100%;
  }
}
.shouhin-detail-wrap-right .price-box-inner {
  display: flex;
  justify-content: space-between;
  width: 190px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .price-box-inner {
    width: 50%;
  }
}
.shouhin-detail-wrap-right .off-box {
  font-size: 15.84px;
  border: 1.5px solid #DE3333;
  padding: 0px 10px;
  margin-right: 5px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .off-box {
    font-size: 3.2vw;
  }
}
.shouhin-detail-wrap-right .red-btn {
  cursor: pointer;
}
.shouhin-detail-wrap-right #targetElement4 {
  display: none;
}
.shouhin-detail-wrap-right .sen-btn-inner {
  font-size: 14px;
}
.shouhin-detail-wrap-right .sen-btn-inner-bun {
  margin-top: 26.4px;
  line-height: 31.68px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .sen-btn-inner-bun {
    margin-top: 8%;
    font-size: 3.5vw;
    line-height: 5.6vw;
  }
}
.shouhin-detail-wrap-right .sen-btn-inner-bun2 {
  margin-top: 0px;
  line-height: 31.68px;
}
.shouhin-detail-wrap-right .modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #707070;
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
}
.shouhin-detail-wrap-right .modal-container::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.shouhin-detail-wrap-right .modal-container.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.shouhin-detail-wrap-right .modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 880px;
  width: 90%;
}
.shouhin-detail-wrap-right .modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  padding-bottom: 5px;
  color: black;
  background-color: white;
  cursor: pointer;
  border-radius: 50%;
}
.shouhin-detail-wrap-right .modal-content {
  margin: auto;
  width: 880px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .modal-content {
    width: 100%;
  }
}
.shouhin-detail-wrap-right .modal-content .title-1 {
  font-size: 27.26px;
  font-weight: 800;
  color: white;
  margin-bottom: 17.6px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .modal-content .title-1 {
    font-size: 4vw;
  }
}
.shouhin-detail-wrap-right .modal-content .modal-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .modal-content .modal-inner {
    display: block;
  }
}
.shouhin-detail-wrap-right .modal-content .modal-inner .inner {
  width: 430px;
  height: 265px;
  background-color: white;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 35.2px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .modal-content .modal-inner .inner {
    width: 100%;
    height: auto;
    padding: 5%;
    margin-bottom: 10px;
  }
}
.shouhin-detail-wrap-right .modal-content .modal-inner .shouhin-waku {
  display: flex;
  justify-content: flex-start;
  padding: 0px;
}
.shouhin-detail-wrap-right .modal-content .modal-inner .shouhin-waku-img {
  width: 87.1px;
  height: 66.8px;
  aspect-ratio: 99/76;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .modal-content .modal-inner .shouhin-waku-img {
    width: 30%;
    height: auto;
  }
}
.shouhin-detail-wrap-right .modal-content .modal-inner .shouhin-waku-img img {
  width: 100%;
  height: 100%;
}
.shouhin-detail-wrap-right .modal-content .modal-inner .shouhin-waku-right {
  margin-left: 19.3px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .modal-content .modal-inner .shouhin-waku-right {
    margin-left: 10px;
  }
}
.shouhin-detail-wrap-right .modal-content .modal-inner .shouhin-waku-right .title {
  font-size: 22px;
  text-align: left;
  letter-spacing: 0px;
  margin-bottom: 0px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .modal-content .modal-inner .shouhin-waku-right .title {
    font-size: 4vw;
  }
}
.shouhin-detail-wrap-right .modal-content .modal-inner .shouhin-waku-right .price {
  font-size: 34.32px;
  text-align: left;
  letter-spacing: 0px;
  line-height: 34.32px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .modal-content .modal-inner .shouhin-waku-right .price {
    font-size: 22px;
  }
}
.shouhin-detail-wrap-right .modal-content .modal-inner .shouhin-waku-right .price .font-33 {
  font-size: 29px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .modal-content .modal-inner .shouhin-waku-right .price .font-33 {
    font-size: 20px;
  }
}
.shouhin-detail-wrap-right .modal-content .modal-inner .shouhin-waku-right .price .title {
  font-size: 22px;
  text-align: left;
  letter-spacing: 0px;
  margin-bottom: 0px;
}
@media only screen and (max-width: 769px) {
  .shouhin-detail-wrap-right .modal-content .modal-inner .shouhin-waku-right .price .title {
    font-size: 4vw;
  }
}
.shouhin-detail-wrap-right .modal-content .modal-inner .teiki-chui {
  font-size: 13px;
  margin: 10px auto 20px;
}

.shouhin-tokucho-waku {
  width: 880px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .shouhin-tokucho-waku {
    width: 86%;
  }
}
.shouhin-tokucho-waku .btn-waku {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.shouhin-tokucho-waku .btn-waku .tab {
  width: 289.5px;
  height: 69.5px;
  text-align: center;
  background-color: #F2F2F2;
  line-height: 61.5px;
  position: relative;
  font-size: 15.8px;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 769px) {
  .shouhin-tokucho-waku .btn-waku .tab {
    width: 33%;
    font-size: 3vw;
  }
}
.shouhin-tokucho-waku .btn-waku .tab::before {
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-top: 2px solid rgb(0, 0, 0);
  border-right: 2px solid rgb(0, 0, 0);
  transform: rotate(133deg);
  top: 66%;
  left: 130px;
  content: "";
}
@media only screen and (max-width: 769px) {
  .shouhin-tokucho-waku .btn-waku .tab::before {
    border-top: 1px solid rgb(0, 0, 0);
    border-right: 1px solid rgb(0, 0, 0);
    left: 38%;
    width: 8px;
    height: 8px;
  }
}
.shouhin-tokucho-waku .btn-waku .tab.active {
  background-color: #707070;
  color: white;
}
.shouhin-tokucho-waku .btn-waku .tab.active::before {
  border-top: 2px solid #fff !important;
  border-right: 2px solid #fff !important;
}
@media only screen and (max-width: 769px) {
  .shouhin-tokucho-waku .btn-waku .tab.active::before {
    border-top: 1px solid #fff !important;
    border-right: 1px solid #fff !important;
    width: 8px;
    height: 8px;
  }
}
.shouhin-tokucho-waku .panel {
  display: none;
  text-align: center;
  width: 880px;
  margin: 5px auto;
  background-color: #F2F2F2;
  padding: 70px;
  text-align: left;
  font-size: 15px;
  line-height: 28px;
}
@media only screen and (max-width: 769px) {
  .shouhin-tokucho-waku .panel {
    width: 100%;
    padding: 5%;
    font-size: 3.5vw;
    line-height: 6vw;
  }
}
.shouhin-tokucho-waku .panel-inner {
  margin-bottom: 10px;
}
@media only screen and (max-width: 769px) {
  .shouhin-tokucho-waku .panel-inner {
    margin-bottom: 30px;
  }
}
.shouhin-tokucho-waku .panel-inner .panel-title {
  width: 100%;
  background-color: white;
  font-size: 16.72px;
  text-align: center;
  line-height: 48px;
  height: 48px;
}
@media only screen and (max-width: 769px) {
  .shouhin-tokucho-waku .panel-inner .panel-title {
    font-size: 17px;
  }
}
.shouhin-tokucho-waku .panel-inner .panel-bun {
  font-size: 15px;
  line-height: 30px;
  margin-top: 30px;
}
@media only screen and (max-width: 769px) {
  .shouhin-tokucho-waku .panel-inner .panel-bun {
    margin-top: 10px;
    font-size: 3.5vw;
    line-height: 6vw;
  }
}
.shouhin-tokucho-waku .panel-inner .panel-bun-flexbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0px;
  margin-top: 40px;
}
@media only screen and (max-width: 769px) {
  .shouhin-tokucho-waku .panel-inner .panel-bun-flexbox {
    margin-bottom: 10px;
    margin-top: 20px;
  }
}
.shouhin-tokucho-waku .panel-inner .panel-bun-flexbox .qmark {
  font-size: 29px;
}
@media only screen and (max-width: 769px) {
  .shouhin-tokucho-waku .panel-inner .panel-bun-flexbox .qmark {
    font-size: 25px;
  }
}
.shouhin-tokucho-waku .panel-inner .panel-bun-flexbox-right {
  margin-left: 10px;
}
.shouhin-tokucho-waku .panel-inner .panel-bun-flexbox-right .qa-title {
  font-weight: 600;
}
.shouhin-tokucho-waku .panel-inner .panel-bun-flexbox-right .qa-bun-2 {
  font-size: 16px;
}
.shouhin-tokucho-waku .panel.active {
  display: block;
}

.review-section {
  width: 1000px;
  margin: auto;
  padding: 100px 0px 80px;
}
@media only screen and (max-width: 769px) {
  .review-section {
    padding: 15% 0px 5%;
    width: 100%;
  }
}
.review-section .title {
  margin: 0px auto 0px;
  font-size: 30px;
  letter-spacing: 4px;
  text-align: center;
  letter-spacing: 6px;
}
@media only screen and (max-width: 769px) {
  .review-section .title {
    font-size: 20px;
    letter-spacing: 1vw;
  }
}
.review-section .sub-title {
  font-size: 17px;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 16px;
}
@media only screen and (max-width: 769px) {
  .review-section .sub-title {
    margin-top: 10px;
    font-size: 13px;
  }
}
@media (min-width: 769px) {
  .review-section .glsr .glsr-reviews, .review-section .glsr .glsr-reviews-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 1000px;
    margin: 50px auto 10px;
  }
  .review-section .glsr-default .glsr-review {
    flex-wrap: wrap;
    width: 30%;
  }
  .review-section .post_content h2 {
    font-size: 28px;
  }
}
.review-section .review-okoe-waku {
  width: 1000px;
}
.review-section .kuro-shikaku-btn {
  margin: auto;
}

.recommed-section {
  width: 100%;
  margin: auto;
  padding: 100px 0px 80px;
}
@media only screen and (max-width: 769px) {
  .recommed-section {
    padding: 15% 0px 15%;
  }
}
.recommed-section .title {
  margin: 0px auto 0px;
  font-size: 30px;
  letter-spacing: 4px;
  text-align: center;
  letter-spacing: 6px;
}
@media only screen and (max-width: 769px) {
  .recommed-section .title {
    font-size: 20px;
    letter-spacing: 1vw;
  }
}
.recommed-section .sub-title {
  font-size: 17px;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 16px;
}
@media only screen and (max-width: 769px) {
  .recommed-section .sub-title {
    margin-top: 10px;
    font-size: 13px;
  }
}
.recommed-section .inner-rank-waku {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  flex-wrap: wrap;
  width: 880px;
}
@media only screen and (max-width: 769px) {
  .recommed-section .inner-rank-waku {
    display: flex;
    margin: 10% auto;
    justify-content: unset;
    align-items: unset;
    width: 86%;
  }
}
.recommed-section .inner-rank-waku .inner-waku {
  width: 210px;
  height: auto;
  margin: 0px 5px 30px 5px;
}
@media only screen and (max-width: 769px) {
  .recommed-section .inner-rank-waku .inner-waku {
    width: 48%;
    height: auto;
    display: table-cell;
    margin: 0px 1% 5%;
    background-color: white;
    border-radius: 7px;
  }
}
.recommed-section .inner-rank-waku .inner-waku .img {
  width: 210px;
  height: 180px;
  aspect-ratio: 1/0.86;
  position: relative;
}
@media only screen and (max-width: 769px) {
  .recommed-section .inner-rank-waku .inner-waku .img {
    width: 100%;
    height: auto;
  }
}
.recommed-section .inner-rank-waku .inner-waku .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7px 7px 0px 0px;
}
.recommed-section .inner-rank-waku .inner-waku .img .rank-mark {
  position: absolute;
  top: -11px;
  left: 10px;
}
.recommed-section .inner-rank-waku .inner-waku .img .rank-mark-ichiran {
  position: absolute;
  top: 10px;
  left: 10px;
}
.recommed-section .inner-rank-waku .inner-waku .bun-waku {
  background-color: white;
  border-radius: 0px 0px 7px 7px;
  text-align: left;
  padding: 10px;
  position: relative;
  height: 166px;
}
.recommed-section .inner-rank-waku .inner-waku .bun-waku .bun1 {
  font-size: 11px;
}
.recommed-section .inner-rank-waku .inner-waku .bun-waku .bun-title {
  font-size: 13.2px;
  margin-top: 8px;
}
.recommed-section .inner-rank-waku .inner-waku .bun-waku .bun-price {
  position: absolute;
  top: 106px;
  left: 10px;
  font-size: 11px;
  margin-top: 10px;
}
.recommed-section .inner-rank-waku .inner-waku .bun-waku .bun-price-2 {
  position: absolute;
  top: 135px;
  left: 10px;
  font-size: 11px;
}

.news-archive-waku {
  width: 600px;
  margin: 100px auto 0px;
}
@media only screen and (max-width: 769px) {
  .news-archive-waku {
    width: 84%;
    margin: 10% auto;
  }
}

/* 共通 */
.pnavi {
  align-items: baseline;
  display: flex;
  justify-content: center;
  margin: 20px auto 100px;
}

.pagination {
  margin: 40px 0 0;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  margin: auto;
  justify-content: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin-right: 20px;
  padding: 5px 15px;
  color: #999;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #999;
}

.pagination .current {
  padding: 5px 15px;
  background: #fff;
  color: white !important;
  border: 1px solid #999 !important;
  background-color: #999;
}

.pagination .prev,
.pagination .next {
  background: transparent;
  box-shadow: none;
  color: #999;
  border: none;
  position: relative;
}

.pagination .next {
  padding-right: 30px;
}

.pagination .prev {
  padding-left: 30px;
}

.pagination .next::after {
  position: absolute;
  content: "";
  top: 4px;
  right: -1px;
  width: 19px;
  height: 29px;
  background-size: auto;
}

.pagination .prev::before {
  position: absolute;
  content: "";
  top: 4px;
  left: -1px;
  width: 19px;
  height: 29px;
  background-size: auto;
}

.pagination .dots {
  background: transparent;
  box-shadow: none;
}

.news-single-waku {
  width: 525px;
  margin: 200px auto;
}
@media only screen and (max-width: 769px) {
  .news-single-waku {
    width: 84%;
  }
}
.news-single-waku .date {
  font-size: 15px;
  margin-bottom: 20px;
}
.news-single-waku .title {
  font-size: 26.25px;
  line-height: 35px;
  border-bottom: 1px solid #B5B5B5;
  margin-bottom: 50px;
  padding-bottom: 30px;
  text-align: left;
}
@media only screen and (max-width: 769px) {
  .news-single-waku .title {
    font-size: 30px;
    line-height: 43px;
    font-weight: 200;
  }
}

.news-conent-inner p {
  font-size: 16.5px;
  line-height: 35px;
}

.front-product-waku {
  width: 100%;
  margin: 200px auto 0px;
  padding-bottom: 221px;
}
@media only screen and (max-width: 769px) {
  .front-product-waku {
    padding-bottom: 28%;
    margin: 15% auto 0px;
  }
}
.front-product-waku-inner {
  width: 960px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .front-product-waku-inner {
    width: 100%;
  }
}
.front-product-waku-inner .product-flex {
  width: 960px;
}
@media only screen and (max-width: 769px) {
  .front-product-waku-inner .product-flex {
    width: 100%;
  }
}
.front-product-waku-inner .product-flex-inner .bun {
  width: 235px;
  line-height: 25px;
  height: 81px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .front-product-waku-inner .product-flex-inner .bun {
    width: 100%;
    line-height: 25px;
    height: auto;
    margin: auto;
  }
}
.front-product-waku-inner-title {
  text-align: center;
  margin: 10px auto 30px;
  font-size: 28px;
}
@media only screen and (max-width: 769px) {
  .front-product-waku-inner-title {
    font-size: 22px;
  }
}

.product-flex-inner {
  margin: 100px 16px 0px;
  width: 300px !important;
  margin: 0px 10px 70px !important;
}
@media only screen and (max-width: 769px) {
  .product-flex-inner {
    margin: 10% 2% !important;
    width: 46% !important;
  }
}
.product-flex-inner .img {
  width: 300px;
  height: 300px;
}
@media only screen and (max-width: 769px) {
  .product-flex-inner .img {
    width: 100%;
    height: auto;
  }
}
.product-flex-inner .img img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 769px) {
  .product-flex-inner .img img {
    width: 100%;
    height: 43%;
  }
}

.p-top__news {
  width: 525px;
  margin: 150px auto;
}
@media only screen and (max-width: 769px) {
  .p-top__news {
    width: 84%;
    margin: 10% auto;
  }
}
.p-top__news-title {
  font-size: 30px;
  margin-top: 50px;
  text-align: center;
  margin-bottom: 100px;
}
@media only screen and (max-width: 769px) {
  .p-top__news-title {
    font-size: 22px;
    margin-top: 10%;
    margin-bottom: 10%;
  }
}
.p-top__news-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid rgba(85, 85, 85, 0.2901960784);
  padding-bottom: 45px;
  margin-top: 45px;
}
@media only screen and (max-width: 769px) {
  .p-top__news-inner {
    display: block;
    padding-bottom: 10%;
    margin-top: 10%;
  }
}
.p-top__news-inner .date {
  font-size: 15px;
  margin-right: 50px;
}
@media only screen and (max-width: 769px) {
  .p-top__news-inner .date {
    font-size: 11px;
    margin: auto 0px 10px;
  }
}
.p-top__news-inner .title {
  font-size: 22.5px;
  margin: 0px;
}
@media only screen and (max-width: 769px) {
  .p-top__news-inner .title {
    font-size: 17px;
  }
}
.p-top__news-inner:last-child {
  border-bottom: none;
}
.p-top__news .shousai-btn {
  margin: 50px auto;
  background-color: none;
  margin-bottom: 0px;
}

body {
  font-family: "Noto Sans", sans-serif;
}

.font-osa {
  font-family: "Oswald", sans-serif;
}

.under-line {
  border-bottom: 1px solid;
  display: inline;
}

hr {
  width: 100%;
  border-bottom: 2px solid;
  margin-bottom: 30px;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 700;
}

.font-bold {
  font-weight: 700;
}

.font-red {
  color: #F01B2C;
}

.font-bg-yellow {
  background-color: yellow;
}

.font-blue {
  color: blue;
}

.bg-gray {
  background-color: #F5F5F5;
}

.bg-gray-padding {
  padding: 10px 0px;
}

.border-none {
  border: none !important;
}

.br-sm {
  display: none;
}
@media only screen and (max-width: 769px) {
  .br-sm {
    display: block;
  }
}

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

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

.margin-top100px {
  margin-top: 100px !important;
}
@media only screen and (max-width: 769px) {
  .margin-top100px {
    margin-top: 30% !important;
  }
}

.kiro-mark {
  background-color: yellow;
}

.margin50 {
  margin-top: 50px !important;
}
@media only screen and (max-width: 769px) {
  .margin50 {
    margin-top: 10% !important;
  }
}

.p-account {
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.zoom-btn {
  width: 1000px;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .zoom-btn {
    width: 95%;
    margin: 5% auto;
  }
}

.toiawase {
  width: 400px;
  height: 70px;
  background-color: #D15F19;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-content: flex-start;
  align-items: center;
  color: white;
  padding: 10px 40px;
  font-size: 18px;
  letter-spacing: 2px;
  position: relative;
}
.toiawase::before {
  content: attr(data);
  display: block;
  position: relative;
  transition: color 300ms;
  z-index: 1;
}
.toiawase::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  background-color: white;
  transition: width 300ms;
  width: 0;
  z-index: 0;
}
.toiawase:hover::after {
  width: 100%;
}

@media only screen and (max-width: 769px) {
  .toiawase {
    width: 200px;
    height: 40px;
    padding: 10px;
  }
}
.toiawase-img {
  width: 40px;
  height: 30px;
  margin-right: 30px;
}
.toiawase-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-img {
  width: 100%;
}

.index-conetent {
  width: 1000px;
  margin: 100px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 769px) {
  .index-conetent {
    width: 95%;
    margin: 5% auto;
    justify-content: center;
  }
}

.index-conetent-inner-waku {
  width: 490px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 769px) {
  .index-conetent-inner-waku {
    width: 98%;
    margin: 0px auto 10%;
  }
}

.index-conetent-inner {
  width: 490px;
  height: 321px;
}
@media only screen and (max-width: 769px) {
  .index-conetent-inner {
    width: 98%;
    height: auto;
    margin: 0px auto -5px auto;
  }
}

.index-conetent-moji {
  background-color: #f9ba02;
  width: 490px;
  line-height: 60px;
  font-size: 13px;
  text-align: center;
  margin: 0px 0px auto;
  letter-spacing: 2px;
}
@media only screen and (max-width: 769px) {
  .index-conetent-moji {
    width: 98%;
    height: auto;
    margin: 0px auto 0px auto;
  }
}

.news-section {
  background-color: #E5E5E5;
  margin: 50px 0px 0px;
  padding: 100px 0px;
}
@media only screen and (max-width: 769px) {
  .news-section {
    width: 100%;
    margin: auto;
    padding: 10% 0px;
  }
}
.news-section .news-title {
  font-size: 18px;
  position: relative;
  font-size: 18px;
  text-align: center;
  margin: auto;
}
.news-section .news-title::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  background: black;
  top: 40px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.news-section-inner {
  width: 1000px;
  background-color: white;
  padding: 70px;
  margin: 70px auto;
}
@media only screen and (max-width: 769px) {
  .news-section-inner {
    width: 95%;
    padding: 11% 5%;
    margin: 10% auto;
  }
}

.news-section .topics-item {
  display: flex;
  line-height: 50px;
  border-bottom: 1px dotted;
}
@media only screen and (max-width: 769px) {
  .news-section .topics-item {
    display: block;
  }
}
.news-section .topics-date {
  font-size: 13px;
}
.news-section .topics-title {
  font-size: 15px;
  margin-left: 30px;
}
@media only screen and (max-width: 769px) {
  .news-section .topics-title {
    font-size: 15px;
    margin-left: 0px;
    line-height: 20px;
    display: block;
    margin-bottom: 10px;
  }
}
.news-section .btn-waku {
  width: 1000px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .news-section .btn-waku {
    width: 100%;
    margin: auto;
  }
}

.btn {
  width: 300px;
  height: 70px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-content: center;
  align-items: center;
  color: black;
  padding: 10px 40px;
  font-size: 15px;
  letter-spacing: 2px;
  position: relative;
  border: 1px solid black;
  color: black;
  margin-left: auto;
}
.btn::after {
  right: 24px;
  width: 13px;
  height: 13px;
  border-top: 1px solid black;
  border-right: 1px solid black;
  transform: rotate(45deg);
  content: "";
  position: absolute;
}
@media only screen and (max-width: 769px) {
  .btn {
    width: 283px;
    height: 75px;
    padding: 7px;
    margin: auto;
  }
}

.jiseki-section {
  background-image: url(../img/back-jiseki.jpg);
  min-height: 100vh;
  background-size: cover;
  padding: 70px 0px;
}
@media only screen and (max-width: 769px) {
  .jiseki-section {
    width: 100%;
    padding: 30px 0px;
  }
}
.jiseki-section .jiseki-title {
  position: relative;
  font-size: 18px;
  text-align: center;
  margin: auto;
  color: white;
}
.jiseki-section .jiseki-title::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  background: white;
  top: 40px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.jiseki-section-inner {
  width: 1000px;
  display: flex;
  justify-content: space-between;
  margin: 100px auto;
  flex-wrap: wrap;
}
@media only screen and (max-width: 769px) {
  .jiseki-section-inner {
    width: 90%;
    margin: auto;
    display: unset;
  }
}

.jiseki-section .jiseki-single {
  width: 480px;
  height: auto;
  padding: 42px 18px;
  background-color: white;
  margin-bottom: 45px;
}
@media only screen and (max-width: 769px) {
  .jiseki-section .jiseki-single {
    width: 90%;
    padding: 5%;
    margin: 10% auto 0px;
  }
}
.jiseki-section .jiseki-single-img {
  width: 446px;
  height: 276px;
}
@media only screen and (max-width: 769px) {
  .jiseki-section .jiseki-single-img {
    width: 100%;
    height: auto;
  }
}
.jiseki-section .jiseki-single-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.jiseki-section .jiseki-single-title-waku {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}
.jiseki-section .jiseki-single-title {
  background-color: #03032D;
  font-size: 14px;
  color: white;
  padding: 5px 10px;
  width: 120px;
  text-align: center;
}
.jiseki-section .jiseki-single-title2 {
  font-size: 14px;
  color: black;
  margin-left: 30px;
  line-height: 30px;
}
.jiseki-section .jiseki-waku {
  width: 1000px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .jiseki-section .jiseki-waku {
    width: 100%;
    margin: 10% auto;
  }
}
.jiseki-section .jiseki-waku-btn {
  width: 300px;
  height: 70px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 10px 40px;
  font-size: 18px;
  letter-spacing: 9px;
  position: relative;
  border: 1px solid white;
  margin-left: auto;
}
.jiseki-section .jiseki-waku-btn::after {
  right: 24px;
  width: 13px;
  height: 13px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  transform: rotate(45deg);
  content: "";
  position: absolute;
}
@media only screen and (max-width: 769px) {
  .jiseki-section .jiseki-waku-btn {
    width: 283px;
    height: 75px;
    padding: 7px;
    margin: auto;
  }
}

.toiawase-waku {
  margin: 50px auto;
  width: 326px;
}
@media only screen and (max-width: 769px) {
  .toiawase-waku {
    margin: 5% auto;
  }
}

.toiawase-waku-toiawase {
  width: 400px;
  height: 70px;
  background-color: #D15F19;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-content: flex-start;
  align-items: center;
  color: white;
  padding: 10px 40px;
  font-size: 18px;
  letter-spacing: 2px;
  position: relative;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .toiawase-waku-toiawase {
    width: 95%;
    height: 75px;
    padding: 7px;
    margin: auto;
    max-width: 400px;
  }
}

.toiawase-waku-toiawase-img {
  width: 40px;
  height: 30px;
  margin-right: 50px;
}
.toiawase-waku-toiawase-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.toiawase-waku-toiawase::after {
  right: 24px;
  width: 13px;
  height: 13px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  transform: rotate(45deg);
  content: "";
  position: absolute;
}

.taiyoukou-waku {
  background-image: url(../img/kaitori-top.png);
  width: 100vw;
  height: 700px;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 481px) {
  .taiyoukou-waku {
    height: 265px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 769px) {
  .taiyoukou-waku {
    height: 500px;
  }
}

.taiyoukou-waku-inner {
  position: absolute;
  width: 1100px;
  margin: auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: 500px;
}
@media only screen and (max-width: 769px) {
  .taiyoukou-waku-inner {
    width: 110%;
    top: 76%;
    left: 44%;
  }
}

.taiyoukou-waku2 {
  background-color: #E5E5E5;
  width: 100%;
  margin: 0px auto;
  padding: 100px 0;
}
@media only screen and (max-width: 769px) {
  .taiyoukou-waku2 {
    padding: 10% 5%;
  }
}

.taiyoukou-waku2-inner {
  width: 1000px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .taiyoukou-waku2-inner {
    width: 100%;
  }
}

.taiyoukou-waku3 {
  background-image: url(../img/taiyoukou3-back.png);
  width: 100vw;
  height: 1000px;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 769px) {
  .taiyoukou-waku3 {
    width: 100%;
    padding-top: 118%;
    height: auto;
  }
}

.taiyoukou-waku3-inner {
  position: absolute;
  width: 300px;
  margin: auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: 33px;
}

.taiyoukou-waku3-inner2 {
  width: 1000px;
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: 178px;
}
@media only screen and (max-width: 769px) {
  .taiyoukou-waku3-inner2 {
    width: 90%;
    top: 77px;
    left: 50%;
  }
}

.taiyoukou-waku3-inner3 {
  width: 1000px;
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: 659px;
}
@media only screen and (max-width: 769px) {
  .taiyoukou-waku3-inner3 {
    width: 90%;
    margin: auto;
    top: 62%;
  }
}

.fudousan-waku {
  width: 1000px;
  margin: 100px auto;
}
@media only screen and (max-width: 769px) {
  .fudousan-waku {
    width: 84%;
    margin: 10% auto;
  }
}
.fudousan-waku-inner {
  font-size: 22px;
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .fudousan-waku-inner {
    font-size: 15px;
    line-height: 25px;
  }
}
.fudousan-waku-title {
  font-size: 30px;
  text-align: center;
  color: white;
}

.bg-waku {
  margin: 100px auto;
  background-color: rgba(62, 182, 206, 0.1803921569);
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .bg-waku {
    margin: 10% auto;
  }
}
.bg-waku-inner {
  width: 1000px;
  margin: auto;
  margin: 50px auto;
  padding: 100px 0px 50px;
}
@media only screen and (max-width: 769px) {
  .bg-waku-inner {
    width: 84%;
    padding: 10% 0px 0px;
    margin: 10% auto 5%;
  }
}
.bg-waku .bun {
  margin: auto;
  display: block;
  text-align: center;
  margin: 50px auto;
}
@media only screen and (max-width: 769px) {
  .bg-waku .bun {
    margin: auto;
  }
}

.fudousan-img {
  margin: auto;
  text-align: center;
}

.bg-skyblue {
  background-color: #3EB6CE;
  width: 100%;
  padding: 100px 0px;
}
@media only screen and (max-width: 769px) {
  .bg-skyblue {
    padding: 10% 0px;
  }
}

.fudousan-waku2 {
  width: 1000px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .fudousan-waku2 {
    width: 100%;
    margin: 0% auto;
  }
}
.fudousan-waku2-inner {
  font-size: 22px;
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .fudousan-waku2-inner {
    font-size: 18px;
  }
}
.fudousan-waku2-title {
  font-size: 30px;
  text-align: center;
  color: white;
}

.taiyoukou-waku4 {
  background-color: #E5E5E5;
  padding: 70px 0;
  position: relative;
}
@media only screen and (max-width: 769px) {
  .taiyoukou-waku4 {
    padding: 10% 0px;
    width: 100%;
  }
}

.taiyoukou-waku4-inner {
  font-size: 22px;
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .taiyoukou-waku4-inner {
    font-size: 18px;
  }
}

.triangle3 {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-top: 50px solid #3EB6CE;
  margin: auto;
}

.taiyoukou-waku4-inner2 {
  position: absolute;
  bottom: 0px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.taiyoukou-waku5 {
  background: linear-gradient(to right, #b6ddeb 50%, #3878BA);
  background: linear-gradient(#b6ddeb, #3878BA);
  padding: 0px 0 70px;
}

.taiyoukou-waku5-inner {
  font-size: 30px;
  text-align: center;
  margin: 50px auto;
  position: relative;
}
.taiyoukou-waku5-inner::after {
  position: absolute;
  top: 114px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  content: "";
  width: 100px;
  height: 1px;
  background-color: black;
}
@media only screen and (max-width: 769px) {
  .taiyoukou-waku5-inner {
    margin: 10% auto;
    font-size: 25px;
  }
}

.taiyoukou-waku5-inner2 {
  width: 300px;
  margin: auto;
}

.taiyoukou-waku5-inner3 {
  width: 800px;
  margin: 30px auto 0px;
}
@media only screen and (max-width: 769px) {
  .taiyoukou-waku5-inner3 {
    width: 95%;
    margin: 10% auto 0px;
  }
}

.company-waku {
  width: 100%;
}
.company-waku img {
  width: 100%;
}

.company-waku-top-img {
  background-image: url(../img/conpa-1.jpg);
  height: 400px;
  position: relative;
  margin: 0px auto;
  padding: 100px 0;
  background-size: cover;
}
@media only screen and (max-width: 769px) {
  .company-waku-top-img {
    height: auto;
  }
}

.saisei-waku-top-img {
  background-image: url(../img/saisei/top.jpg);
  height: 400px;
  position: relative;
  margin: 0px auto;
  padding: 100px 0;
  background-size: cover;
}
@media only screen and (max-width: 769px) {
  .saisei-waku-top-img {
    padding-top: 10%;
    height: auto;
    width: 100%;
  }
}

.nwqa-waku-top-img {
  background-image: url(../img/news-back.jpg);
  height: 400px;
  position: relative;
  margin: 0px auto;
  padding: 100px 0;
  background-size: cover;
}
@media only screen and (max-width: 769px) {
  .nwqa-waku-top-img {
    height: auto;
  }
}

.company-waku-title {
  font-size: 22px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: 50%;
  color: white;
}
@media only screen and (max-width: 769px) {
  .company-waku-title {
    width: 100%;
    text-align: center;
    font-size: 20px;
  }
}

.company-waku2 {
  width: 1000px;
  margin: 100px auto;
}
@media only screen and (max-width: 769px) {
  .company-waku2 {
    width: 95%;
    margin: 10% auto;
  }
}

.company-waku2-inner {
  margin-bottom: 18px;
  line-height: 40px;
  font-size: 15px;
  background-color: rgba(229, 229, 229, 0.2509803922);
  border-bottom: 1px solid #9c9898;
}
.company-waku2-inner-2 {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 50px;
}

.company-waku2-inner-title {
  width: 300px;
  padding-left: 30px;
  background-color: rgba(93, 145, 184, 0.1882352941);
}
@media only screen and (max-width: 769px) {
  .company-waku2-inner-title {
    padding-left: 2%;
  }
}

.company-waku2-inner-bun {
  width: 700px;
  padding-left: 10px;
}

.company-waku3 {
  background-color: #f2f2f2;
  padding: 100px 0;
}
@media only screen and (max-width: 769px) {
  .company-waku3 {
    padding: 10% 0px;
  }
}

.company-waku3-inner {
  width: 1000px;
  margin: auto;
}

.company-waku3-inner2 {
  width: 1000px;
  margin: 50px auto;
}

.company-waku4 {
  width: 100%;
}

.company-waku4-top-img {
  background-image: url(../img/toi-back.jpg);
  height: auto;
  position: relative;
  margin: 0px auto;
  padding-top: 30%;
  background-size: cover;
  background-repeat: no-repeat;
}

.company-waku4-title {
  font-size: 22px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: 50%;
  color: white;
}

.contact-waku {
  width: 800px;
  margin: 100px auto;
}
@media only screen and (max-width: 769px) {
  .contact-waku {
    width: 90%;
    margin: 10% auto;
  }
}

.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  height: 100vh;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 2;
  padding: 5em 0;
}

.jiseki-waku {
  width: 100%;
}

.jiseki-waku-top-img {
  background: url(../img/_jiseki-1.jpg);
  height: 400px;
  position: relative;
  margin: 0px auto;
  padding: 100px 0;
  background-size: cover;
}
@media only screen and (max-width: 769px) {
  .jiseki-waku-top-img {
    height: auto;
  }
}

.jiseki-waku-title {
  font-size: 22px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: 50%;
  color: white;
  letter-spacing: 5px;
}

.cd-fixed-bg.cd-bg-1 {
  background: url(../img/_jiseki-1.jpg);
}

.jiseki-title2 {
  position: relative;
  font-size: 18px;
  text-align: center;
  margin: auto;
  color: white;
  font-size: 24px;
}
.jiseki-title2::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  background: white;
  top: 40px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.area {
  width: 1000px;
  margin: 100px auto;
  text-align: center;
  background-color: #ffffff;
}
@media only screen and (max-width: 769px) {
  .area {
    width: 100%;
  }
}

.area-img {
  width: 500px;
  height: 548px;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 769px) {
  .area-img {
    width: 80%;
    height: auto;
  }
}

.area-btn {
  width: 200px;
  border-radius: 7px;
  position: absolute;
  background-color: #03032D;
  color: white;
  line-height: 34px;
}
@media only screen and (max-width: 769px) {
  .area-btn {
    position: unset;
    width: 100%;
    margin: 5% auto;
  }
}

.area .btn-1 {
  top: 471px;
  left: -181px;
}
.area .btn-2 {
  top: 338px;
  left: -82px;
}
.area .btn-3 {
  top: 267px;
  left: 67px;
}
@media only screen and (max-width: 769px) {
  .area .btn-3 {
    top: 20%;
    left: -2%;
  }
}
.area .btn-4 {
  top: 471px;
  left: 131px;
}
.area .btn-5 {
  top: 83px;
  left: 131px;
}
@media only screen and (max-width: 769px) {
  .area .btn-5 {
    top: -8%;
    left: 31%;
  }
}
.area .btn-6 {
  top: 414px;
  left: 265px;
}
.area .btn-7 {
  top: 350px;
  left: 348px;
}
.area .btn-8 {
  top: 231px;
  left: 373px;
}
@media only screen and (max-width: 769px) {
  .area {
    width: 100%;
    margin: 10% auto;
    height: auto;
  }
}

.md-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  z-index: 9999;
}

.md-contents {
  display: none;
  position: fixed;
  top: 10px;
  left: 50%;
  width: 95%;
  height: auto;
  overflow: hidden;
  transform: translateX(-50%);
  z-index: 10000;
}

.md-inner {
  padding: 30px 40px;
  background: #fff;
  height: auto;
  margin: 100px auto;
  width: 1000px;
}
@media only screen and (max-width: 769px) {
  .md-inner {
    width: 100%;
    padding: 0px;
  }
}

.md-xmark {
  position: absolute;
  top: 34px;
  right: 20px;
  width: 25px;
  height: 22px;
  z-index: 9999;
  cursor: pointer;
}
.md-xmark span {
  height: auto;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff9f9;
  border-radius: 4px;
}
.md-xmark span:nth-of-type(1) {
  top: 0;
  transform: translateY(10px) rotate(-45deg);
}
.md-xmark span:nth-of-type(2) {
  bottom: 0;
  transform: translateY(-10px) rotate(45deg);
}

.news-single-waku {
  width: 700px;
  margin: 200px auto;
}
@media only screen and (max-width: 769px) {
  .news-single-waku {
    width: 90%;
    margin: 10% auto;
  }
}
.news-single-waku .news-title {
  margin: 30px auto;
  font-size: 20px;
}
@media only screen and (max-width: 769px) {
  .news-single-waku .news-title {
    margin: 5% auto;
  }
}
.news-single-waku .news-time {
  font-size: 15px;
}
.news-single-waku .news-title2 {
  margin: auto;
  font-size: 15px;
}

.news-single-waku2 {
  width: 1000px;
  margin: 100px auto;
}
@media only screen and (max-width: 769px) {
  .news-single-waku2 {
    width: 90%;
    margin: 10% auto;
  }
}
.news-single-waku2 .news-title {
  font-size: 15px;
  margin: 10px auto 30px;
}
.news-single-waku2 .news-title2 {
  font-size: 22px;
  margin: 100px auto 50px;
}

.single-waku {
  width: 1000px;
  display: flex;
  margin: 100px auto;
}
.single-waku .sidebar-waku {
  width: 200px;
  margin-left: 50px;
  border-left: 1px solid;
  padding-left: 30px;
}
.single-waku .single-inner1 {
  width: 700px;
}
.single-waku .single-title {
  font-size: 15px;
  margin: 10px auto 30px;
}
.single-waku .single-title2 {
  font-size: 22px;
  margin: 100px auto 50px;
}
.single-waku .nextback {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.saisei-waku {
  width: 1000px;
  margin: 50px auto;
}
@media only screen and (max-width: 769px) {
  .saisei-waku {
    width: 100%;
    margin: 10% auto;
  }
}
.saisei-waku-inner {
  font-size: 25px;
  text-align: center;
  margin: 75px auto;
}
@media only screen and (max-width: 769px) {
  .saisei-waku-inner {
    font-size: 20px;
    width: 90%;
    margin: 10% auto;
  }
}
.saisei-waku-inner-bun {
  font-size: 20px;
  text-align: left;
  margin: 75px auto;
  line-height: 40px;
}
@media only screen and (max-width: 769px) {
  .saisei-waku-inner-bun {
    width: 90%;
    font-size: 16px;
    line-height: 25px;
    margin: 0% auto;
  }
}
.saisei-waku-inner-bun2 {
  font-size: 20px;
  text-align: left;
  margin: 75px auto;
  line-height: 40px;
  width: 600px;
  border: 1px solid #63adb1;
  padding: 20px;
}
@media only screen and (max-width: 769px) {
  .saisei-waku-inner-bun2 {
    width: 90%;
    padding: 5%;
    margin: 5% auto;
    font-size: 15px;
  }
}
.saisei-waku-inner-bun2-title {
  color: #63adb1;
}

.tbl-r02 {
  margin: 20px auto;
}

.tbl-r02 th {
  background: #e9edf0;
  color: #787c81;
  width: 300px;
  padding-left: 20px;
}

.tbl-r02 td {
  padding: 10px;
  width: 700px;
  background: #f9f9f9;
  line-height: 32px;
}

@media screen and (max-width: 640px) {
  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .tbl-r02 {
    width: 85%;
    margin: 5% auto;
  }
  .tbl-r02 th,
  .tbl-r02 td {
    border-bottom: none;
    display: block;
    width: 100%;
    padding: 10px;
    line-height: 32px;
  }
}
.c-btn.slip {
  background: transparent;
  border: none;
  position: relative;
  border-radius: 0;
  z-index: 1;
  padding: 20px 40px;
  color: aliceblue;
  display: flex;
  align-items: center;
}

.c-btn.slip::before,
.c-btn.slip::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.c-btn.slip::before {
  background: #ffb509;
  border: 2px solid #ffb509;
  z-index: -1;
}

.c-btn.slip::after {
  background: #fff6dc;
  z-index: -2;
}

.c-btn.slip:hover {
  color: #ffb509;
}

.c-btn.slip:hover::before {
  background: transparent;
}

.c-btn.slip:hover::after {
  top: 6px;
  left: 6px;
}

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

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

.fade {
  animation: fadeIn 3s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.searc-title-waku {
  border: 1px solid #b5b4b4;
  background-color: white;
  width: 500px;
}
@media only screen and (max-width: 769px) {
  .searc-title-waku {
    width: 100%;
  }
}

.searc-title {
  background-color: #f0f0f0;
  padding: 10px;
  font-weight: 600;
  border-top: 1px solid #b5b4b4;
}

.searc-bun {
  padding: 10px 10px 10px 20px;
  border-top: 1px solid #b5b4b4 !important;
  width: 100%;
  display: block;
  position: relative;
  border-bottom: none !important;
}
.searc-bun:after {
  content: "・";
  position: absolute;
  top: 10px;
  left: 7px;
}

.mokuji-title {
  padding: 10px;
  text-align: left;
  font-size: 13px;
}

.wp-caption, .alignnone {
  width: 100% !important;
  margin-bottom: 10px;
}

.wp-caption.alignnone img {
  margin-bottom: 0px !important;
}

.green-btn {
  width: 300px;
  height: 60px;
  background-color: green;
  color: white;
  border-radius: 40px;
  text-align: center;
  line-height: 60px;
  font-size: 18px;
  font-weight: 800;
  margin: 10px auto;
  position: relative;
  display: block;
}
.green-btn::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  position: absolute;
  content: "";
  right: 23px;
  top: 42%;
}

.red-btn {
  width: 300px;
  height: 60px;
  background-color: #F01B2C;
  color: white;
  border-radius: 40px;
  text-align: center;
  line-height: 60px;
  font-size: 18px;
  font-weight: 800;
  margin: 10px auto;
  position: relative;
  display: block;
}
.red-btn::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  position: absolute;
  content: "";
  right: 23px;
  top: 42%;
}

.gray-btn {
  width: 300px;
  height: 60px;
  background-color: gray;
  color: white;
  border-radius: 40px;
  text-align: center;
  line-height: 60px;
  font-size: 18px;
  font-weight: 800;
  margin: 10px auto;
  position: relative;
  display: block;
}
.gray-btn::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  position: absolute;
  content: "";
  right: 23px;
  top: 42%;
}

.orange-btn {
  width: 300px;
  height: 60px;
  background-color: orange;
  color: white;
  border-radius: 40px;
  text-align: center;
  line-height: 60px;
  font-size: 18px;
  font-weight: 800;
  margin: 10px auto;
  position: relative;
  display: block;
}
.orange-btn::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  position: absolute;
  content: "";
  right: 23px;
  top: 42%;
}

.kon-btn {
  width: 300px;
  height: 60px;
  background-color: #000951;
  color: white;
  border-radius: 40px;
  text-align: center;
  line-height: 60px;
  font-size: 18px;
  font-weight: 800;
  margin: 10px auto;
  position: relative;
  display: block;
}
.kon-btn::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  position: absolute;
  content: "";
  right: 23px;
  top: 42%;
}

.black-btn {
  width: 300px;
  height: 60px;
  background-color: #03032d;
  color: white;
  border-radius: 40px;
  text-align: center;
  line-height: 60px;
  font-size: 18px;
  font-weight: 800;
  margin: 10px auto;
  position: relative;
  display: block;
}
.black-btn::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  position: absolute;
  content: "";
  right: 23px;
  top: 42%;
}

.bana-center-bun {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.bana-shita-bun {
  margin-top: 20px;
  font-size: 13px;
}

sup {
  font-size: 75%; /* フォントサイズを小さくします */
  line-height: 0; /* 行の高さを調整して、テキストの流れに合わせます */
  vertical-align: baseline; /* 上付き文字の基準線の位置を調整します */
  position: relative; /* 相対位置に設定 */
  bottom: 1em; /* テキストからの距離を調整 */
}

.new-menu-oowaku {
  background-color: #daeaf8;
  width: 100%;
  margin: auto;
  padding: 10px 30px 30px;
  font-size: 12px;
  line-height: 15px;
}
@media only screen and (max-width: 769px) {
  .new-menu-oowaku {
    padding: 10px 10px 30px;
  }
}
.new-menu-oowaku .new-menu-title {
  font-weight: 700;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 30px;
}
.new-menu-oowaku .new-menu-inner {
  text-decoration: none;
  font-size: 15px;
  line-height: 30px;
  border: none;
  color: #191919;
  display: block;
  font-weight: 700;
}
.new-menu-oowaku .new-menu-inner-2 {
  text-decoration: none;
  font-size: 15px;
  line-height: 30px;
  border: none;
  color: #191919;
  display: block;
  margin-left: 30px;
}
.new-menu-oowaku #btn-oritatami {
  display: inline-block;
  font-size: 10px;
  background: aliceblue;
  line-height: 15px;
  padding: 8px;
  border-radius: 36px;
  cursor: pointer;
}
.new-menu-oowaku .new-menu-inner-oowaku {
  display: block;
}
.new-menu-oowaku .new-menu-inner-oowaku.open {
  display: none;
}

.load-more-tags {
  display: inline-block;
  margin: 10px 0;
  padding: 10px 20px;
  background-color: #181a1e;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 42px;
  font-size: 12px;
}

/*リセット*/
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

/*デザイン*/
h1 {
  font-size: 30px;
  font-weight: bold;
  padding: 10px !important;
  margin-bottom: 1em !important;
  border-top: 5px solid #c18d8d !important;
  background: #ffffe9 !important;
}
@media only screen and (max-width: 769px) {
  h1 {
    font-size: 20px;
  }
}

h2 {
  font-size: 25px;
  font-weight: bold;
  padding: 10px !important;
  margin-bottom: 1em !important;
  border-top: 3px dotted #c18d8d !important;
  border-bottom: 3px dotted #c18d8d !important;
  background: #ffffe9 !important;
}
@media only screen and (max-width: 769px) {
  h2 {
    font-size: 17px;
    padding: 2% !important;
  }
}

h3 {
  font-size: 22px;
  font-weight: bold;
  padding: 10px !important;
  margin-bottom: 1em !important;
  border-radius: 10px !important;
  background: #ffffe9;
}
@media only screen and (max-width: 769px) {
  h3 {
    font-size: 15px;
    padding: 2% !important;
  }
}

h4 {
  font-size: 20px;
  font-weight: bold;
  padding: 10px !important;
  margin-bottom: 1em !important;
  border-left: 5px solid #ffffe9 !important;
}
@media only screen and (max-width: 769px) {
  h4 {
    font-size: 13px;
    padding: 2% !important;
  }
}

h5 {
  font-size: 18px;
  font-weight: bold !important;
  padding: 10px !important;
  margin-bottom: 1em !important;
  border-bottom: 3px solid #ffffe9 !important;
}
@media only screen and (max-width: 769px) {
  h5 {
    font-size: 10px;
    padding: 2% !important;
  }
}

h6 {
  font-size: 15px;
  font-weight: bold !important;
  padding: 10px !important;
  margin-bottom: 1em !important;
  border-bottom: 3px dotted #ffffe9 !important;
}
@media only screen and (max-width: 769px) {
  h6 {
    font-size: 10px;
    padding: 2% !important;
  }
}

button {
  border: none !important;
}

/*# sourceMappingURL=style.css.map */