@charset "UTF-8";
/* 共通 */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  padding: 0;
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

body {
  font-family: "Shippori Mincho B1", serif;
  color: #78715d;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  margin: 0;
  width: 100vw;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: #78715d;
}
a:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

.yoyaku_btn {
  position: fixed;
  width: 170px;
  right: 0;
  bottom: 30%;
  z-index: 99;
}
.yoyaku_btn a {
  display: block;
}

.inner800 {
  width: 80%;
  max-width: 800px;
  margin: auto;
}

.inner900 {
  width: 85%;
  max-width: 900px;
  margin: auto;
}

.inner1000 {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

.to_top {
  display: none;
  transition: all 0.6s;
}

.to_top.active {
  display: block;
  width: 113px;
  position: fixed;
  bottom: 50px;
  right: 50px;
  transition: all 0.8s;
  z-index: 100;
}
@media (max-width: 768px) {
  .to_top.active {
    width: 70px;
    position: fixed;
    bottom: 70px;
    right: 25px;
  }
}

@media (max-width: 768px) {
  .pc_display {
    display: none;
  }
}

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

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

.content_inner {
  width: 90%;
  max-width: 1040px;
  margin: auto;
}

.to_top {
  width: 76px;
  position: fixed;
  bottom: 50px;
  right: 50px;
}
@media (max-width: 768px) {
  .to_top {
    width: 42px;
    position: fixed;
    bottom: 25px;
    right: 25px;
  }
}

.text_center {
  text-align: center;
}

.mg_auto {
  margin: auto;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_20 {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .mb_20 {
    margin-bottom: 10px;
  }
}

.mb_30 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .mb_30 {
    margin-bottom: 15px;
  }
}

.mb_40 {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .mb_40 {
    margin-bottom: 20px;
  }
}

.mb_50 {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .mb_50 {
    margin-bottom: 25px;
  }
}

.mb_60 {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .mb_60 {
    margin-bottom: 30px;
  }
}

.mb_70 {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .mb_70 {
    margin-bottom: 35px;
  }
}

.mb_80 {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .mb_80 {
    margin-bottom: 40px;
  }
}

.mb_100 {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .mb_100 {
    margin-bottom: 50px;
  }
}

.mb_140 {
  margin-bottom: 140px;
}
@media (max-width: 768px) {
  .mb_140 {
    margin-bottom: 70px;
  }
}

/* ------- fade_ ----------- */
.fade_right {
  animation: slideright 2.5s ease forwards;
}

@keyframes slideright {
  0% {
    transform: translateX(230px);
    opacity: 0;
  }
  20% {
    transform: translateX(230px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade_left {
  animation: slideleft 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideleft {
  0% {
    transform: translateX(-230px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*------ archive -------*/
.archive_bg {
  background-image: url(../images/archive_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.news_archive,
.bonji_archive {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .news_archive,
  .bonji_archive {
    padding: 60px 0;
  }
}

.bonji_archive {
  width: 100%;
}
.bonji_archive .bonji_list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bonji_archive .bonji_list .bonji_item {
  padding: 10px 30px;
  border: #b19552 1px solid;
  width: 30%;
  margin-bottom: 40px;
}
.bonji_archive .bonji_list .bonji_item .bonji_img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.bonji_archive .bonji_list .bonji_item .bonji_archiveTitle {
  font-size: 18px;
  text-align: center;
  color: #b19552;
  font-weight: 800;
  margin-bottom: 10px;
}
.bonji_archive .bonji_list .bonji_item .bonji_p {
  font-size: 15px;
  margin-bottom: 20px;
}
.bonji_archive .bonji_list .bonji_item .bonji_a {
  font-weight: bold;
  font-size: 15px;
  display: block;
  width: fit-content;
  margin: auto;
  border-bottom: #cccccc 1px solid;
}
.bonji_archive .bonji_list .bonji_item .bonji_a img {
  width: 22px;
  height: 22px;
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .bonji_archive .bonji_list {
    display: block;
  }
  .bonji_archive .bonji_list .bonji_item {
    padding: 10px 30px;
    width: 90%;
    margin: auto;
    margin-bottom: 20px;
  }
  .bonji_archive .bonji_list .bonji_item .bonji_img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .bonji_archive .bonji_list .bonji_item .bonji_archiveTitle {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .bonji_archive .bonji_list .bonji_item .bonji_p {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

/*------ singlePage -------*/
.singlePage {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .singlePage {
    padding: 50px 0 60px;
  }
}

.singlePage_ttl time {
  font-family: "Cormorant", serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: #c9c9c9;
  font-weight: 600;
}
.singlePage_ttl h3 {
  color: #b19552;
  font-size: 24px;
  font-weight: 800;
  border-bottom: #b19552 1px solid;
  margin-bottom: 30px;
  margin-top: 20px;
  line-height: 2em;
}
@media (max-width: 768px) {
  .singlePage_ttl time {
    font-size: 18px;
  }
  .singlePage_ttl h3 {
    font-size: 18px;
    margin-top: 10px;
  }
}

.singlePage_content {
  min-height: 200px;
  border-bottom: #cccccc 1px solid;
  margin-bottom: 100px;
  padding-bottom: 50px;
}
.singlePage_content p,
.singlePage_content h2,
.singlePage_content h3,
.singlePage_content h4,
.singlePage_content h5,
.singlePage_content h6 {
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .singlePage_content {
    margin-bottom: 50px;
    padding-bottom: 30px;
  }
}

.singlePage_link {
  text-align: center;
}

.bonjiSinglePage_img {
  width: 300px;
  height: auto;
  margin: auto;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .bonjiSinglePage_img {
    width: 90%;
    max-width: 300px;
  }
}

.bonjiSinglePage_content {
  border-bottom: #cccccc 1px solid;
  color: #b19552;
  min-height: 300px;
  margin-bottom: 100px;
  padding-bottom: 50px;
}
.bonjiSinglePage_content h3 {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .bonjiSinglePage_content {
    margin-bottom: 60px;
    min-height: 100px;
  }
  .bonjiSinglePage_content h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

/* ------- news_list ----------- */
.news_list {
  list-style: none;
  margin-bottom: 50px;
}
.news_list .news_item {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: #f3ecd9 1px solid;
}
.news_list .news_item:nth-of-type(1) {
  border-top: #f3ecd9 1px solid;
}
.news_list .news_item .news_img {
  width: 30%;
}
.news_list .news_item .news_img img {
  aspect-ratio: 195/142;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.news_list .news_item .news_text {
  width: 68%;
}
.news_list .news_item .news_text .news_date {
  font-family: "Cormorant", serif;
  color: #c9c9c9;
  font-size: 22px;
  margin-bottom: 10px;
}
.news_list .news_item .news_text .news_title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}
.news_list .news_item .news_text .news_archiveTitle {
  font-size: 18px;
  font-weight: bold;
  color: #b19552;
  margin-bottom: 10px;
}
.news_list .news_item .news_text .news_p {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.8em;
}
@media (max-width: 768px) {
  .news_list .news_item {
    padding: 26px 0;
    display: block;
    border-bottom: #f3ecd9 1px solid;
  }
  .news_list .news_item:nth-of-type(1) {
    border-top: none;
  }
  .news_list .news_item .news_img {
    width: 100%;
  }
  .news_list .news_item .news_text {
    width: 100%;
  }
}

/* ------- pagenavi ----------- */
.wp-pagenavi {
  width: fit-content;
  margin: auto;
}

.wp-pagenavi a,
.wp-pagenavi span {
  border: none;
  margin: 10px;
  font-size: 18px;
}

.current {
  color: #b19552;
}

/* ------- btn ----------- */
.link_btn {
  position: relative;
  padding: 18px 44px 18px 22px;
  background-color: #719bed;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  border-radius: 99999px;
}
.link_btn::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(../images/arrowbtn.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.link_btn2 {
  position: relative;
  padding: 15px 44px 15px 22px;
  background-color: #fff;
  border: #719bed 1px solid;
  color: #719bed;
  font-size: 15px;
  font-weight: 900;
  border-radius: 99999px;
}
.link_btn2::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(../images/arrowbtn2.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.link_btn3 {
  position: relative;
  display: block;
  text-align: center;
  padding: 15px;
  border: #b19552 1px solid;
  color: #b19552;
  font-size: 15px;
  font-weight: 900;
  border-radius: 99999px;
}
.link_btn3::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(../images/arrowbtn3.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

/* ------- 404 ----------- */
.min_content {
  min-height: 500px;
}
.min_content p {
  margin-top: 50px;
  text-align: center;
}

/* header */
header {
  width: 100%;
  padding: 50px 0 30px;
  position: fixed;
  top: 0;
  z-index: 99;
}

header.is-show {
  background-color: rgba(255, 255, 255, 0.768627451);
}
@media (max-width: 768px) {
  header.is-show {
    background-color: inherit;
  }
}

.global_nav ul.global_ul {
  padding: 0;
  margin: auto;
  max-width: 800px;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.global_nav ul.global_ul li.global_li {
  position: relative;
}
.global_nav ul.global_ul li.global_li::after {
  position: absolute;
  display: block;
  font-family: "Cormorant", serif;
  font-size: 14px;
  color: #b4b3b3;
  white-space: nowrap;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.global_nav ul.global_ul li.global_li ul.dropdown_ul {
  position: absolute;
  list-style: none;
  border-radius: 5px;
  transform: scaleY(0);
  transform-origin: center top;
  transition: all 0.3s;
  width: 100%;
  top: 22px;
  left: 0;
}
.global_nav ul.global_ul li.global_li ul.dropdown_ul::before {
  position: absolute;
  width: 120px;
  height: 110px;
  content: "";
  display: block;
  border-radius: 5px;
  background-color: #b19552;
  top: 0;
  left: 0;
  z-index: -1;
}
.global_nav ul.global_ul li.global_li ul.dropdown_ul li.dropdown_list {
  padding: 5px 16px;
  white-space: nowrap;
}
.global_nav ul.global_ul li.global_li ul.dropdown_ul li.dropdown_list a {
  color: #fff;
}
.global_nav ul.global_ul li.global_li ul.dropdown_ul2 {
  position: absolute;
  list-style: none;
  border-radius: 5px;
  transform: scaleY(0);
  transform-origin: center top;
  transition: all 0.3s;
  width: 100%;
  top: 22px;
  left: 0;
}
.global_nav ul.global_ul li.global_li ul.dropdown_ul2::before {
  position: absolute;
  width: 180px;
  height: 140px;
  content: "";
  display: block;
  border-radius: 5px;
  background-color: #b19552;
  top: 0;
  left: 0;
  z-index: -1;
}
.global_nav ul.global_ul li.global_li ul.dropdown_ul2 li.dropdown_list {
  padding: 5px 16px;
  white-space: nowrap;
}
.global_nav ul.global_ul li.global_li ul.dropdown_ul2 li.dropdown_list a {
  color: #fff;
}
.global_nav ul.global_ul li.global_li a {
  color: #b19552;
  font-size: 15px;
  font-weight: bold;
}
.global_nav ul.global_ul .navTop::after {
  content: "TOP";
}
.global_nav ul.global_ul .navBeginners::after {
  content: "FOR BEGINNERS";
}
.global_nav ul.global_ul .navProfile::after {
  content: "PROFILE";
}
.global_nav ul.global_ul .navBonjicards::after {
  content: "BONJI CARDS";
}
.global_nav ul.global_ul .navNews:hover ul.dropdown_ul {
  display: block;
  transform: scaleY(1);
}
.global_nav ul.global_ul .navNews::after {
  content: "TOPICS";
}
.global_nav ul.global_ul .navVoice::after {
  content: "VOICE";
}
.global_nav ul.global_ul .navQanda::after {
  content: "Q&A";
}
.global_nav ul.global_ul .navContact::after {
  content: "CONTACT";
}
.global_nav ul.global_ul .navDivination:hover ul.dropdown_ul2 {
  display: block;
  transform: scaleY(1);
}
.global_nav ul.global_ul .navDivination::after {
  content: "DIVINATION";
}
@media (max-width: 768px) {
  .global_nav {
    display: none;
  }
}

.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: fixed;
    z-index: 999;
    right: 20px;
    top: 20px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 3px;
  left: 6px;
  background: #555;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sp_global_nav {
  display: none;
  height: 100vh;
  overflow: auto;
  position: fixed;
  background: #edede8;
  z-index: 555;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  padding: 60px 5%;
  font-size: 16px;
}
.sp_global_nav ul.sp_global_ul {
  list-style: none;
}
.sp_global_nav ul.sp_global_ul li.sp_global_li {
  padding: 15px 0;
  border-bottom: #b19552 dotted 3px;
}
.sp_global_nav ul.sp_global_ul li.sp_global_li:nth-child(1) {
  border-top: #b19552 dotted 3px;
}
.sp_global_nav ul.sp_global_ul li.sp_global_li a {
  color: #b19552;
}
.sp_global_nav ul.sp_global_ul li.sp_global_li ul.sp_dropdown_ul {
  list-style: none;
  padding-left: 20px;
}
.sp_global_nav ul.sp_global_ul li.sp_global_li ul.sp_dropdown_ul li.sp_dropdown_list {
  padding: 5px 0 5px 20px;
}
.sp_global_nav ul.sp_global_ul li.sp_global_li ul.sp_dropdown_ul li.sp_dropdown_list a {
  color: #78715d;
}
@media (max-width: 768px) {
  .sp_global_nav {
    display: block;
  }
}

.sp_global_nav.active {
  overflow: auto;
  z-index: 555;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

/* footer */
footer {
  position: relative;
  padding: 90px 0 45px;
  background-image: url(../images/footer_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
footer .footer_kumo1 {
  position: absolute;
  width: 21%;
  top: -20px;
  right: 0;
}
footer .footer_kumo2 {
  position: absolute;
  width: 21%;
  top: 110px;
  left: 0;
}
footer .footer_inner {
  width: 90%;
  max-width: 850px;
  margin: auto;
  position: relative;
}
footer .footer_inner .footer_taiyo {
  position: absolute;
  width: 14%;
  top: 0;
  right: 10px;
}
footer .footer_inner .footer_text {
  width: 222px;
  height: auto;
  margin: auto;
  margin-bottom: 20px;
}
footer .footer_inner p {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 20px;
}
footer .footer_nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  border-top: #aac5fd 1px solid;
  padding: 20px 0;
}
footer .footer_nav ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}
footer .footer_copy {
  color: #fff;
  text-align: center;
  font-size: 12px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  footer .footer_kumo1 {
    width: 30%;
    top: -20px;
  }
  footer .footer_kumo2 {
    width: 30%;
    top: 225px;
    left: 0;
  }
  footer .footer_inner p {
    margin-bottom: 60px;
  }
  footer .footer_nav ul {
    display: none;
  }
}

/*-------- mainView ----------- */
.mainView {
  background-image: url(../images/topmain_bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  position: relative;
}
.mainView .mainView_inner {
  padding: 80px 0;
  width: 90%;
  max-width: 900px;
  margin: auto;
  display: flex;
  justify-content: right;
  position: relative;
}
.mainView .mainView_inner h1 {
  position: absolute;
  width: 100%;
  top: 5%;
  left: -25%;
}
.mainView .mainView_inner .mainView_koyo {
  width: 48%;
}
.mainView .spMainView_inner {
  display: none;
}
.mainView .mainView_chikyu {
  position: absolute;
  width: 18%;
  top: 0;
  left: 0;
}
.mainView .mainView_taiyo {
  position: absolute;
  width: 16%;
  top: 1%;
  right: 0;
}
.mainView .mainView_kumo1 {
  position: absolute;
  width: 25%;
  bottom: 0;
  left: 0;
}
.mainView .mainView_kumo2 {
  position: absolute;
  width: 20%;
  right: 0;
  bottom: 100px;
}
.mainView .mainView_yoyaku {
  position: absolute;
  width: 170px;
  right: 0;
  bottom: 40px;
}
@media (max-width: 768px) {
  .mainView .mainView_inner {
    display: none;
  }
  .mainView .spMainView_inner {
    display: block;
    width: 100%;
  }
  .mainView .mainView_chikyu {
    position: absolute;
    width: 30%;
    top: 0;
    left: 0;
  }
  .mainView .mainView_taiyo {
    position: absolute;
    width: 32%;
    top: 17%;
    right: 0;
  }
  .mainView .mainView_kumo1 {
    position: absolute;
    width: 34%;
    bottom: 63%;
    left: 0;
  }
  .mainView .mainView_kumo2 {
    position: absolute;
    width: 34%;
    right: 0;
    bottom: 18%;
  }
}

/*-------- subMainView ----------- */
.subMainView {
  padding: 140px 0;
  background-image: url(../images/topmain_bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  position: relative;
}
.subMainView .subMainView_inner {
  padding: 60px 0;
  width: 90%;
  max-width: 556px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.subMainView .subMainView_inner h2 {
  text-align: center;
  font-size: 32px;
  color: #b19552;
  line-height: 1.2em;
}
.subMainView .subMainView_inner h2 span {
  font-family: "Cormorant", serif;
  color: #b4b3b3;
  font-size: 20px;
  font-weight: 400;
}
.subMainView .subMainView_inner .subMainView_hoshi1 {
  position: absolute;
  width: 120px;
  top: 0;
  left: 0;
}
.subMainView .subMainView_inner .subMainView_hoshi2 {
  position: absolute;
  width: 140px;
  bottom: -20%;
  right: 0;
}
.subMainView .subMainView_bokashi {
  width: 66%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.subMainView .subMainView_chikyu {
  position: absolute;
  width: 18%;
  top: 0;
  left: 0;
}
.subMainView .subMainView_taiyo {
  position: absolute;
  width: 16%;
  top: 1%;
  right: 0;
}
.subMainView .subMainView_kumo1 {
  position: absolute;
  width: 25%;
  bottom: 0;
  left: 0;
}
.subMainView .subMainView_kumo2 {
  position: absolute;
  width: 20%;
  right: 0;
  bottom: 0;
}
@media (max-width: 1024px) {
  .subMainView {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .subMainView {
    padding: 0;
  }
  .subMainView .subMainView_chikyu {
    position: absolute;
    width: 30%;
    top: 0;
    left: 0;
  }
  .subMainView .subMainView_taiyo {
    position: absolute;
    width: 32%;
    top: 17%;
    right: 0;
  }
  .subMainView .subMainView_kumo1 {
    position: absolute;
    width: 25%;
    bottom: 0;
    left: 0;
  }
  .subMainView .subMainView_kumo2 {
    position: absolute;
    width: 34%;
    right: 0;
    bottom: 0;
  }
}

/*------ topFortune -------*/
.topFortune {
  position: relative;
  background-image: url(../images/naiyo_bg.png);
  background-repeat: repeat-y;
  background-position: top;
  background-size: 100%;
  padding: 128px 0;
}
.topFortune h2 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.8em;
}
.topFortune p.topFortune_p {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 2em;
  margin-bottom: 70px;
  position: relative;
  z-index: 5;
}
.topFortune .topFortune_uzu {
  position: absolute;
  width: 98%;
  left: 1%;
  top: 20%;
  z-index: 0;
}
.topFortune .topFortune_kumo1 {
  position: absolute;
  width: 21%;
  left: 0;
  top: 15%;
  z-index: 0;
}
.topFortune .topFortune_kumo2 {
  position: absolute;
  width: 22%;
  right: 0;
  top: 28%;
  z-index: 5;
}
.topFortune .topFortune_mandara {
  position: absolute;
  width: 17%;
  left: 0;
  bottom: -9%;
  z-index: 1;
}
.topFortune .topFortune_rasin {
  position: absolute;
  width: 34%;
  top: 30px;
  right: 0;
}
@media (max-width: 768px) {
  .topFortune {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 64px 0;
  }
  .topFortune h2 {
    font-size: 22px;
    line-height: 1.8em;
  }
  .topFortune p.topFortune_p {
    width: 80%;
    margin: auto;
    margin-bottom: 70px;
  }
  .topFortune .topFortune_uzu {
    position: absolute;
    width: 98%;
    left: 1%;
    top: 20%;
    z-index: 0;
  }
  .topFortune .topFortune_kumo1 {
    position: absolute;
    width: 30%;
    left: 0;
    top: 20%;
  }
  .topFortune .topFortune_kumo2 {
    position: absolute;
    width: 30%;
    right: 0;
    top: 4%;
    z-index: 5;
  }
  .topFortune .topFortune_mandara {
    position: absolute;
    width: 22%;
    left: 0;
    bottom: -1%;
  }
  .topFortune .topFortune_rasin {
    position: absolute;
    width: 40%;
    top: 30px;
    right: 0;
  }
}

.topFortune_item {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  margin-bottom: 36px;
}
.topFortune_item .topFortune_text {
  width: 69%;
}
.topFortune_item .topFortune_text h3 {
  color: #b19552;
  font-size: 26px;
  font-weight: bold;
  line-height: normal;
  border-bottom: #cccccc 1px solid;
  margin-bottom: 20px;
  padding: 0 40px;
}
.topFortune_item .topFortune_text h3 span {
  font-size: 72px;
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 300;
}
.topFortune_item .topFortune_text .topFortune_textP {
  padding: 0 40px;
}
.topFortune_item .topFortune_text .topFortune_textP p {
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8em;
}
.topFortune_item .topFortune_text .topFortune_textP a {
  font-weight: bold;
  font-size: 15px;
  display: block;
  width: fit-content;
  margin-left: auto;
  border-bottom: #cccccc 1px solid;
}
.topFortune_item .topFortune_text .topFortune_textP a img {
  width: 22px;
  height: 22px;
  vertical-align: bottom;
}
.topFortune_item .topFortune_img {
  width: 31%;
}
@media (max-width: 768px) {
  .topFortune_item {
    width: 100%;
    margin-bottom: 36px;
    display: block;
  }
  .topFortune_item .topFortune_text {
    width: 100%;
  }
  .topFortune_item .topFortune_text h3 {
    color: #b19552;
    font-size: 22px;
    margin-bottom: 20px;
    padding: 0;
  }
  .topFortune_item .topFortune_text h3 span {
    font-size: 52px;
  }
  .topFortune_item .topFortune_text .topFortune_textP {
    padding: 0;
    margin-bottom: 20px;
  }
  .topFortune_item .topFortune_img {
    width: 100%;
  }
}

.topFortune_item0 {
  flex-direction: row-reverse;
}

/*------ topPrice -------*/
.topPrice {
  position: relative;
  background-color: #edede8;
  padding: 120px 0;
}
.topPrice .topPrice_mandara {
  position: absolute;
  width: 19%;
  right: 0;
  bottom: -8%;
}
.topPrice .topPrice_hoshi1 {
  position: absolute;
  width: 12%;
  top: 50%;
  transform: translateY(-50%);
  left: 2%;
}
.topPrice .topPrice_hoshi2 {
  position: absolute;
  width: 16%;
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
}
.topPrice .topPrice_box {
  position: relative;
  width: 100%;
  padding: 60px 60px 60px 90px;
  margin-bottom: 50px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.5), inset 1px -2px 2px -2px rgba(0, 0, 0, 0.3);
}
.topPrice .topPrice_box .topPrice_neko {
  position: absolute;
  width: 20%;
  top: 0;
  transform: translateY(-50%);
  right: 5%;
}
.topPrice .topPrice_box h2 {
  color: #78715d;
  font-size: 18px;
  font-weight: bold;
  line-height: 2em;
}
.topPrice .topPrice_box h2 span {
  color: #b19552;
  font-size: 48px;
  font-family: "Cormorant", serif;
  font-weight: 500;
}
.topPrice .topPrice_box .topPrice_item {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.topPrice .topPrice_box ul {
  list-style: none;
  padding: 0;
  width: 60%;
}
.topPrice .topPrice_box ul li {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: #f3ecd9 1px solid;
}
.topPrice .topPrice_box .topPrice_img {
  width: 29%;
}
.topPrice .topPrice_link {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .topPrice {
    padding: 60px 0;
  }
  .topPrice .topPrice_mandara {
    position: absolute;
    width: 30%;
    right: 0;
    bottom: -3%;
  }
  .topPrice .topPrice_hoshi1 {
    position: absolute;
    width: 30%;
    top: 10%;
    transform: translateY(-50%);
    left: 2%;
  }
  .topPrice .topPrice_hoshi2 {
    position: absolute;
    width: 30%;
    top: 90%;
    transform: translateY(-50%);
    right: 2%;
    z-index: 0;
  }
  .topPrice .topPrice_box {
    position: relative;
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 40px;
    background-color: #fff;
  }
  .topPrice .topPrice_box .topPrice_neko {
    position: absolute;
    width: 22%;
    top: 0;
    transform: translateY(-50%);
    right: 5%;
  }
  .topPrice .topPrice_box h2 {
    color: #78715d;
    font-size: 14px;
  }
  .topPrice .topPrice_box h2 span {
    font-size: 33px;
  }
  .topPrice .topPrice_box .topPrice_item {
    display: block;
  }
  .topPrice .topPrice_box ul {
    list-style: none;
    padding: 0;
    width: 100%;
    margin-bottom: 30px;
  }
  .topPrice .topPrice_box ul li {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
  }
  .topPrice .topPrice_box .topPrice_img {
    width: 70%;
    height: auto;
    margin: auto;
  }
  .topPrice .topPrice_link {
    display: block;
    gap: 30px;
    position: relative;
    z-index: 2;
  }
}

/*------ topBonji -------*/
.topBonji {
  background-image: url(../images/bonji_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 120px 0 60px;
}
.topBonji h2 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 2em;
}
.topBonji h2 span {
  font-family: "Cormorant", serif;
  font-size: 48px;
  font-weight: 500;
  color: #b19552;
}
.topBonji .topBonji_p {
  width: 38%;
  max-width: 540px;
  margin: auto;
  margin-bottom: 30px;
}
.topBonji .link_btn {
  display: inline-block;
  margin: auto;
}
@media (max-width: 768px) {
  .topBonji {
    background-image: url(../images/bonji_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 120px 0 60px;
  }
  .topBonji h2 {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 2em;
  }
  .topBonji h2 span {
    font-family: "Cormorant", serif;
    font-size: 48px;
    font-weight: 500;
    color: #b19552;
  }
  .topBonji .topBonji_p {
    width: 80%;
  }
  .topBonji .link_btn {
    display: inline-block;
    margin: auto;
  }
}

/*------ topNews -------*/
.topNews {
  padding: 100px 0 0px;
  position: relative;
}
.topNews .topNews_kumo1 {
  position: absolute;
  width: 33%;
  top: 0;
  transform: translateY(-50%);
  left: 0;
}
.topNews .topNews_kumo2 {
  position: absolute;
  width: 28%;
  top: 0;
  transform: translateY(-50%);
  right: 0;
}
.topNews .topNews_mandara {
  position: absolute;
  width: 17%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.topNews .inner1000 {
  display: flex;
  justify-content: space-between;
}
.topNews h2 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 2em;
}
.topNews h2 span {
  font-family: "Cormorant", serif;
  font-size: 48px;
  font-weight: 500;
  color: #b19552;
}
.topNews .topNews_content {
  width: 68%;
  margin-bottom: 60px;
}
.topNews .reserveArea_content {
  margin-bottom: 60px;
}
.topNews .inner900 a {
  display: block;
  margin-bottom: 60px;
}
.topNews .topNews_banner {
  width: 100%;
}
@media (max-width: 768px) {
  .topNews {
    padding: 60px 0 0px;
  }
  .topNews .topNews_kumo1 {
    width: 40%;
  }
  .topNews .topNews_kumo2 {
    width: 40%;
  }
  .topNews .topNews_mandara {
    position: absolute;
    width: 17%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
  .topNews .inner1000 {
    display: block;
  }
  .topNews h2 {
    font-size: 13px;
  }
  .topNews h2 span {
    font-size: 33px;
  }
  .topNews .topNews_content {
    width: 100%;
    margin-bottom: 20px;
  }
  .topNews .news_link {
    text-align: center;
  }
  .topNews .reserveArea_content {
    margin-bottom: 30px;
  }
  .topNews .inner900 a {
    display: block;
    margin-bottom: 40px;
  }
}

.topKouza {
  padding: 60px 0 120px;
}
@media (max-width: 768px) {
  .topKouza {
    padding: 30px 0 60px;
  }
}

/* ------- reserveArea ----------- */
.reserveArea {
  padding: 120px 0;
  background-color: #fff;
}

.reserveArea_content {
  width: 80%;
  max-width: 900px;
  border: #b19552 1px solid;
  padding: 25px 46px;
  display: flex;
  justify-content: space-between;
  margin: auto;
}
.reserveArea_content .reserveArea_text {
  width: 50%;
}
.reserveArea_content .reserveArea_text h2 {
  font-size: 18px;
  font-weight: bold;
  line-height: 2em;
  margin-bottom: 30px;
}
.reserveArea_content .reserveArea_text h2 span {
  font-family: "Cormorant", serif;
  font-size: 48px;
  font-weight: 500;
  color: #b19552;
}
.reserveArea_content .reserveArea_text p {
  text-align: center;
  font-size: 15px;
  margin-bottom: 16px;
  font-weight: bold;
}
.reserveArea_content .reserveArea_img {
  width: 45%;
}
@media (max-width: 768px) {
  .reserveArea_content {
    padding: 40px 20px;
    display: block;
  }
  .reserveArea_content .reserveArea_text {
    width: 100%;
    margin-bottom: 20px;
  }
  .reserveArea_content .reserveArea_text h2 {
    font-size: 13px;
    margin-bottom: 30px;
    text-align: center;
  }
  .reserveArea_content .reserveArea_text h2 span {
    font-size: 33px;
  }
  .reserveArea_content .reserveArea_img {
    width: 100%;
  }
}

/*------ contactArea -------*/
.contactArea {
  position: relative;
  padding: 100px 0;
  background-color: #edede8;
}
.contactArea .contactArea_kumo {
  position: absolute;
  width: 34%;
  top: 0;
  transform: translateY(-65%);
  left: 0;
}
.contactArea .contactArea_content {
  width: 90%;
  margin: auto;
  position: relative;
}
.contactArea .contactArea_content h2 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 2em;
}
.contactArea .contactArea_content h2 span {
  font-family: "Cormorant", serif;
  font-size: 48px;
  font-weight: 500;
  color: #7ba0ee;
}
.contactArea .contactArea_hoshi1 {
  position: absolute;
  width: 130px;
  left: 0;
  bottom: 0;
}
.contactArea .contactArea_hoshi2 {
  position: absolute;
  width: 90px;
  right: 0;
  top: 0;
}
.contactArea .contactArea_box {
  display: flex;
}
.contactArea .contactArea_box .contactArea_item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 128px;
}
.contactArea .contactArea_box .contactArea_item:nth-of-type(1) {
  border-right: #f3ecd9 1px solid;
}
.contactArea .contactArea_box .contactArea_item p {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 20px;
}
.contactArea .contactArea_box .contactArea_item ul {
  list-style: none;
  display: flex;
}
.contactArea .contactArea_box .contactArea_item ul li {
  line-height: 30px;
  padding: 0 12px;
}
.contactArea .contactArea_box .contactArea_item ul li img {
  width: 30px;
  height: auto;
}
@media (max-width: 768px) {
  .contactArea .contactArea_kumo {
    position: absolute;
    width: 40%;
  }
  .contactArea .contactArea_content h2 {
    font-size: 13px;
  }
  .contactArea .contactArea_content h2 span {
    font-size: 33px;
  }
  .contactArea .contactArea_hoshi1 {
    width: 130px;
    bottom: -10%;
  }
  .contactArea .contactArea_hoshi2 {
    width: 90px;
    top: -10%;
  }
  .contactArea .contactArea_box {
    display: block;
  }
  .contactArea .contactArea_box .contactArea_item {
    width: 100%;
    height: 128px;
  }
  .contactArea .contactArea_box .contactArea_item:nth-of-type(1) {
    border-right: none;
  }
  .contactArea .contactArea_box .contactArea_item p {
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .contactArea .contactArea_box .contactArea_item ul {
    list-style: none;
    display: flex;
  }
  .contactArea .contactArea_box .contactArea_item ul li {
    line-height: 30px;
    padding: 0 12px;
  }
  .contactArea .contactArea_box .contactArea_item ul li img {
    width: 30px;
    height: auto;
  }
  .contactArea .contactArea_box .contactArea_item ul li span {
    display: none;
  }
}

/*------ profile -------*/
.profile {
  padding: 10px 0 120px;
  background-color: #edede8;
}
.profile h3 {
  color: #b19552;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 70px;
  line-height: 1.2em;
  text-align: center;
}
.profile h3::before {
  content: "";
  width: 38px;
  height: 38px;
  display: inline-block;
  background-image: url(../images/ttlhoshi01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translateY(5px);
}
.profile h3::after {
  content: "";
  width: 40px;
  height: 40px;
  display: inline-block;
  background-image: url(../images/ttlhoshi02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(5px);
}
.profile .profile_item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.profile .profile_item:nth-of-type(1) {
  flex-direction: row-reverse;
}
.profile .profile_item .plofile_img {
  width: 30%;
  height: auto;
}
.profile .profile_item .profile_text {
  width: 60%;
}
.profile .profile_item .profile_text h4 {
  font-size: 18px;
  border-bottom: #cccccc 1px solid;
  line-height: 2.5em;
  margin-bottom: 24px;
}
.profile .profile_item .profile_text p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 2em;
}
.profile .profile_sikaku {
  width: 80%;
  max-width: 600px;
  margin: auto;
  margin-bottom: 60px;
  border-radius: 10px;
  padding: 30px 46px;
  border: #b19552 1px solid;
}
.profile .profile_sikaku h4 {
  font-size: 18px;
  border-bottom: #b19552 1px solid;
  line-height: 2.5em;
  margin-bottom: 24px;
  text-align: center;
}
.profile .profile_sikaku p {
  font-size: 15px;
  text-align: center;
  margin-bottom: 10px;
}
.profile .profile_sikaku .profile_sikakuBox {
  display: flex;
  justify-content: space-between;
}
.profile .profile_sikaku .profile_sikakuBox .profile_sikaku_item {
  width: 48%;
  padding: 20px;
}
.profile .profile_sikaku .profile_sikakuBox .profile_sikaku_item .profile_sikaku_item {
  width: 48%;
  padding: 20px;
}
.profile .profile_sikaku .profile_sikakuBox .profile_sikaku_item .profile_sikaku_item .profile_sikaku_img {
  width: 100%;
  margin-bottom: 10px;
}
.profile .profile_sikaku .profile_sikakuBox .profile_sikaku_item .profile_sikaku_item .profile_sikaku_img img {
  width: 100%;
  height: auto;
}
.profile .profile_sikaku .profile_sikakuBox .profile_sikaku_item .profile_sikaku_item p {
  font-size: 13px;
}
.profile .profile_sikaku .profile_sikakuBox .profile_sikaku_item .profile_sikaku_img {
  margin-bottom: 10px;
}
.profile .profile_sikaku .profile_sikakuBox .profile_sikaku_item .profile_sikaku_img img {
  width: 100%;
  height: auto;
}
.profile .profile_sikaku .profile_sikakuBox .profile_sikaku_item p {
  font-size: 13px;
}
.profile .profile_message {
  border-radius: 8px;
  background-color: #fff;
  padding: 12px;
}
.profile .profile_message .profile_message_inner {
  position: relative;
  border-radius: 8px;
  border: #b19552 1px solid;
  padding: 70px 44px 44px;
}
.profile .profile_message .profile_message_inner h4 {
  color: #b19552;
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.profile .profile_message .profile_message_inner p {
  font-size: 15px;
  line-height: 2em;
}
.profile .profile_message .profile_message_inner .profile_message_ttl {
  position: absolute;
  width: 268px;
  height: auto;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media (max-width: 768px) {
  .profile {
    padding: 60px 0;
  }
  .profile h3 {
    font-size: 22px;
    font-weight: 800;
  }
  .profile h3::before {
    content: "";
    width: 28px;
    height: 28px;
  }
  .profile h3::after {
    content: "";
    width: 28px;
    height: 28px;
  }
  .profile .profile_item {
    display: block;
    margin-bottom: 60px;
  }
  .profile .profile_item .plofile_img {
    width: 90%;
    height: auto;
    margin: auto;
  }
  .profile .profile_item .profile_text {
    width: 100%;
  }
  .profile .profile_sikaku .profile_sikakuBox {
    display: block;
    margin-top: 30px;
  }
  .profile .profile_sikaku .profile_sikakuBox .profile_sikaku_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 20px;
  }
  .profile .profile_sikaku .profile_sikakuBox .profile_sikaku_item .profile_sikaku_img {
    margin-bottom: 10px;
  }
  .profile .profile_sikaku .profile_sikakuBox .profile_sikaku_item p {
    font-size: 13px;
  }
  .profile .profile_message .profile_message_inner {
    padding: 60px 22px 22px;
  }
  .profile .profile_message .profile_message_inner h4 {
    color: #b19552;
    font-size: 22px;
  }
  .profile .profile_message .profile_message_inner .profile_message_ttl {
    position: absolute;
    width: 210px;
    height: auto;
    top: 34px;
  }
}

/*------ fortune -------*/
.fortune {
  padding: 100px 0 60px;
  background-image: url(../images/uranai_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.fortune .fortune_kumo1 {
  position: absolute;
  width: 21%;
  left: 0;
  top: 60%;
}
.fortune .fortune_kumo2 {
  position: absolute;
  width: 22%;
  right: 0;
  top: 0;
  transform: translateY(-50%);
  z-index: 5;
}
.fortune h3 {
  color: #b19552;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 70px;
  line-height: 1.2em;
  text-align: center;
}
.fortune h3::before {
  content: "";
  width: 38px;
  height: 38px;
  display: inline-block;
  background-image: url(../images/ttlhoshi01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translateY(5px);
}
.fortune h3::after {
  content: "";
  width: 40px;
  height: 40px;
  display: inline-block;
  background-image: url(../images/ttlhoshi02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(5px);
}
.fortune .fortuneItem {
  width: 100%;
  padding: 80px 10%;
  background-color: rgba(255, 255, 255, 0.6039215686);
  border-radius: 10px;
  margin-bottom: 60px;
}
.fortune .fortuneItem h4 {
  color: #b19552;
  font-size: 26px;
  line-height: 1.8em;
  border-bottom: #cccccc 1px solid;
  margin-bottom: 40px;
}
.fortune .fortuneItem h4 span {
  font-family: "Cormorant", serif;
  font-size: 72px;
  font-weight: 300;
  font-style: italic;
}
.fortune .fortuneItem .fortuneItem_top {
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
.fortune .fortuneItem .fortuneItem_top .fortuneItem_text {
  width: 60%;
}
.fortune .fortuneItem .fortuneItem_top .fortuneItem_text p {
  font-size: 15px;
  line-height: 2em;
}
.fortune .fortuneItem .fortuneItem_top .fortuneItem_img {
  width: 33%;
  height: auto;
}
.fortune .fortuneItem .fortuneItem_p {
  padding: 20px;
}
.fortune .fortuneItem .fortuneItem_p p {
  font-size: 15px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .fortune {
    padding: 50px 0 30px;
  }
  .fortune h3 {
    font-size: 24px;
  }
  .fortune h3::before {
    content: "";
    width: 28px;
    height: 28px;
    display: inline-block;
  }
  .fortune h3::after {
    content: "";
    width: 28px;
    height: 28px;
  }
  .fortune .fortuneItem {
    width: 100%;
    padding: 40px 6%;
    margin-bottom: 40px;
  }
  .fortune .fortuneItem h4 {
    color: #b19552;
    font-size: 24px;
    margin-bottom: 40px;
  }
  .fortune .fortuneItem h4 span {
    font-size: 68px;
  }
  .fortune .fortuneItem .fortuneItem_top {
    padding: 10px;
    display: block;
  }
  .fortune .fortuneItem .fortuneItem_top .fortuneItem_text {
    width: 100%;
  }
  .fortune .fortuneItem .fortuneItem_top .fortuneItem_text p {
    margin-bottom: 20px;
  }
  .fortune .fortuneItem .fortuneItem_top .fortuneItem_img {
    width: 100%;
    height: auto;
  }
  .fortune .fortuneItem .fortuneItem_p {
    padding: 20px;
  }
  .fortune .fortuneItem .fortuneItem_p p {
    font-size: 15px;
    margin-bottom: 30px;
  }
}

/*------ beginners,privacy,qanda,voice -------*/
.beginners,
.privacy,
.qanda,
.voice {
  background-color: #edede8;
  padding: 100px 0;
}
.beginners .centerText,
.privacy .centerText,
.qanda .centerText,
.voice .centerText {
  margin-bottom: 80px;
}
.beginners .centerText p,
.privacy .centerText p,
.qanda .centerText p,
.voice .centerText p {
  text-align: center;
  font-size: 15px;
  line-height: 2em;
}
.beginners .contentText,
.privacy .contentText,
.qanda .contentText,
.voice .contentText {
  margin-bottom: 40px;
}
.beginners .contentText h3,
.privacy .contentText h3,
.qanda .contentText h3,
.voice .contentText h3 {
  color: #b19552;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.8em;
  border-bottom: #b19552 1px solid;
  margin-bottom: 30px;
}
.beginners .contentText h3 span,
.privacy .contentText h3 span,
.qanda .contentText h3 span,
.voice .contentText h3 span {
  font-size: 18px;
}
.beginners .contentText p,
.privacy .contentText p,
.qanda .contentText p,
.voice .contentText p {
  font-size: 15px;
  margin-bottom: 30px;
}
.beginners .lastText,
.privacy .lastText,
.qanda .lastText,
.voice .lastText {
  margin: 80px 0;
}
.beginners .lastText p,
.privacy .lastText p,
.qanda .lastText p,
.voice .lastText p {
  text-align: center;
  font-size: 15px;
  line-height: 2em;
}
.beginners .linkBtn,
.privacy .linkBtn,
.qanda .linkBtn,
.voice .linkBtn {
  display: flex;
  justify-content: space-between;
}
.beginners .linkBtn .linkBtn_img,
.privacy .linkBtn .linkBtn_img,
.qanda .linkBtn .linkBtn_img,
.voice .linkBtn .linkBtn_img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .beginners,
  .privacy,
  .qanda,
  .voice {
    padding: 60px 0;
  }
  .beginners .linkBtn,
  .privacy .linkBtn,
  .qanda .linkBtn,
  .voice .linkBtn {
    display: block;
    margin-bottom: 30px;
  }
}

.voice_contentText {
  background-color: #fff;
  padding: 10px 40px 40px;
  margin-bottom: 40px;
}
.voice_contentText h3 {
  color: #78715d;
  font-size: 17px;
  font-weight: 800;
  line-height: 4em;
  border-bottom: #f3ecd9 1px solid;
  margin-bottom: 30px;
}
.voice_contentText h3 span {
  font-size: 13px;
  padding: 8px;
  border-radius: 9999px;
  border: #b19552 1px solid;
  color: #b19552;
  margin-left: 10px;
}
.voice_contentText p {
  font-size: 15px;
}
@media (max-width: 768px) {
  .voice_contentText {
    background-color: #fff;
    padding: 10px 20px 20px;
  }
  .voice_contentText h3 {
    font-size: 16px;
    line-height: 2em;
    margin-bottom: 16px;
    padding: 10px 0;
  }
  .voice_contentText h3 span {
    font-size: 12px;
    padding: 6px;
    margin-left: 0px;
  }
  .voice_contentText p {
    font-size: 14px;
  }
}

/*------ Q&A -------*/
.qandaAccordion_content {
  display: none;
}

.qandaAccordion_inner {
  display: flex;
  border-top: #f3ecd9 1px solid;
  padding-top: 20px;
}

.qandaAccordion_no {
  font-size: 18px;
  font-weight: 800;
  color: #b19552;
}

.qandaAccordion_header {
  background-color: #fff;
  padding: 20px 45px 20px 20px;
  margin: 10px 0 0;
  transition: background 0.3s ease;
  cursor: pointer;
  position: relative;
}

.qandaAccordion_header::before,
.qandaAccordion_header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #b19552;
}

.qandaAccordion_header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}

.qandaAccordion_header.active::after {
  transform: rotate(0deg);
}

.qandaAccordion_content {
  background-color: #fff;
  padding: 0 20px 20px;
}

/* hover */
.qandaAccordion_header:hover {
  opacity: 0.6;
}

/*------ privacy -------*/
.privacy_guide {
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 999px;
  background-color: #fff;
  font-size: 26px;
  text-align: center;
  color: #b19552;
}
.privacy_guide span {
  font-size: 20px;
}

/*------ bonjicards -------*/
.contact {
  padding: 100px 0;
  background-image: url(../images/contact_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact .linkBtn {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.contact .linkBtn .linkBtn_img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
  .contact .linkBtn {
    display: block;
    margin-bottom: 30px;
  }
}

.contact_content {
  width: 90%;
  margin: auto;
  margin-bottom: 60px;
}
.contact_content table {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 30px;
  border-top: #cccccc 1px solid;
}
.contact_content table tr th,
.contact_content table tr td {
  padding: 30px 0;
  border-bottom: #cccccc 1px solid;
}
.contact_content table tr th {
  vertical-align: top;
  text-align: left;
  width: 32%;
}
.contact_content table tr th span {
  color: #fff;
  background-color: #ea2828;
  font-size: 11px;
  padding: 2px 6px 3px;
  border-radius: 999px;
  margin-left: 10px;
}
.contact_content table tr td {
  width: 68%;
}
.contact_content table tr td input[type=text],
.contact_content table tr td textarea {
  width: 100%;
  padding: 10px 5px;
  font-size: 16px;
  margin: 2px;
}
.contact_content table tr td.datePicker input[type=text],
.contact_content table tr td.datePicker select {
  width: 30%;
  padding: 10px 5px;
  font-size: 16px;
  margin: 2px;
}
.contact_content .js-mw-checkbox {
  text-align: center;
  margin-bottom: 60px;
}
.contact_content .js-mw-checkbox a {
  border-bottom: #78715d 1px solid;
}
.contact_content .submit_btn {
  text-align: center;
}
.contact_content input[type=submit] {
  font-size: 15px;
  color: #fff;
  background-color: #719bed;
  padding: 10px 70px;
  border-radius: 999px;
  cursor: pointer;
}
.contact_content input[type=submit]:hover {
  transition: all 0.3s;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .contact_content {
    width: 100%;
  }
  .contact_content table tr th,
  .contact_content table tr td {
    width: 100%;
    display: block;
    padding: 8px 0;
    border-bottom: none;
  }
  .contact_content table tr td {
    border-bottom: #cccccc 1px solid;
  }
  .contact_content table tr td.datePicker input[type=text] {
    width: 50%;
  }
  .contact_content table tr td.datePicker select {
    padding: 10px 5px;
    font-size: 15px;
    margin: 2px;
  }
}

.mwform-checkbox-field-text {
  font-size: 14px;
}

/*------ swiper -------*/
.swiper {
  width: 100%;
  margin-bottom: 50px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  /* 弧の中心に回転させるための原点を下側に */
  transform-origin: center bottom;
}

.swiper-slide > img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 215/305;
}

.topics_pagenav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.topics_pagenav .swiper_link_nav {
  position: relative;
  display: flex;
  align-items: center;
  width: 100px;
  justify-content: center;
}
.topics_pagenav .swiper-button-prev {
  display: block;
}
.topics_pagenav .swiper-button-prev::after {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  background-image: url(../images/arrowL.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.topics_pagenav .swiper-button-next {
  display: block;
}
.topics_pagenav .swiper-button-next::after {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  background-image: url(../images/arrowR.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*------ luminous -------*/
.luminous_item {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  margin-top: 100px;
  margin-bottom: 36px;
  padding: 60px 60px 60px 90px;
  margin-bottom: 50px;
  background-color: rgba(255, 255, 255, 0.6039215686);
  border-radius: 10px;
}
.luminous_item .luminous_text {
  width: 69%;
}
.luminous_item .luminous_text h3 {
  color: #b19552;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}
.luminous_item .luminous_text h3 span {
  font-size: 72px;
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 300;
}
.luminous_item .luminous_text .luminous_textP {
  padding-right: 20px;
}
.luminous_item .luminous_text .luminous_textP p {
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8em;
  margin-bottom: 10px;
}
.luminous_item .luminous_text .luminous_textP a {
  font-weight: bold;
  font-size: 15px;
  display: block;
  width: fit-content;
  margin-left: auto;
  border-bottom: #cccccc 1px solid;
}
.luminous_item .luminous_text .luminous_textP a img {
  width: 22px;
  height: 22px;
  vertical-align: bottom;
}
.luminous_item .luminous_img {
  width: 31%;
}
.luminous_item .luminous_img img {
  border-radius: 20px;
  border: 1px solid #cccccc;
}
@media (max-width: 768px) {
  .luminous_item {
    width: 100%;
    padding: 10px;
    margin-top: 50px;
    margin-bottom: 36px;
    display: block;
  }
  .luminous_item .luminous_text {
    width: 100%;
  }
  .luminous_item .luminous_text h3 {
    color: #b19552;
    font-size: 22px;
    margin-bottom: 20px;
    padding: 0;
  }
  .luminous_item .luminous_text h3 span {
    font-size: 52px;
  }
  .luminous_item .luminous_text .luminous_textP {
    padding: 0;
    margin-bottom: 20px;
  }
  .luminous_item .luminous_img {
    width: 100%;
  }
}

.fortune .divination h4 span {
  font-size: 40px;
}

.luminous_img {
  width: 31%;
}
.luminous_img img {
  border-radius: 20px;
  border: 1px solid #cccccc;
}