@charset "UTF-8";
/*!
Author: kiki verb
Author URI: https://www.kiki-verb.com/
Version: 1.0
*/
:root {
  --vw-ratio: 1;
}

@media screen and (min-width: 768px) {
  :root {
    --vw-ratio: 0.5;
  }
}
/*======================================
	■Animation
======================================*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-duration: 0.7s;
  animation-name: fadeIn;
  animation-fill-mode: both;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-duration: 0.7s;
  animation-name: fadeOut;
  animation-fill-mode: both;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-duration: 1.5s;
  animation-name: fadeInLeft;
  animation-fill-mode: both;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-duration: 1.5s;
  animation-name: fadeInRight;
  animation-fill-mode: both;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translatey(-50px);
  }
  100% {
    opacity: 1;
    transform: translatey(0);
  }
}
.fadeInDown {
  animation-duration: 1.5s;
  animation-name: fadeInDown;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translatey(50px);
  }
  100% {
    opacity: 1;
    transform: translatey(0);
  }
}
.fadeInUp {
  animation-duration: 1.5s;
  animation-name: fadeInUp;
  animation-fill-mode: both;
}

@keyframes reflection {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  30% {
    transform: scale(0) rotate(45deg);
    opacity: 0.3;
  }
  31% {
    transform: scale(4) rotate(45deg);
    opacity: 0.7;
  }
  45% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.reflection {
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.reflection::before {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  z-index: 1;
  animation-duration: 3s;
  animation-name: reflection;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes marquee {
  0% {
    transform: translate(100%);
  }
  100% {
    transform: translate(-100%);
  }
}
.marquee {
  white-space: nowrap;
  animation-name: marquee;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  40% {
    opacity: 1;
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
  animation-duration: 0.5s;
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.zoomIn {
  animation-name: zoomIn;
  animation-duration: 0.75s;
}

@keyframes slideY {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes slideYR {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
body {
  background-color: #f9f9f9;
  color: #3f302e;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 3.4vw;
  line-height: 1.7;
  letter-spacing: calc(0.1 * var(--vw-ratio) * 1vw);
  background: url("../images/bg_body.gif") repeat left center;
  position: relative;
}
@media screen and (min-width: 835px) {
  body {
    font-size: min(3.4 / 3.2 * 1vw, 3.4 * 4.8px);
  }
}

a {
  color: #686656;
  text-decoration: none;
  transition: all 0.5s ease;
}
a:hover {
  text-decoration: underline;
}

img, iframe {
  max-width: 100%;
  height: auto;
}

.emphasis {
  font-weight: bold;
  color: #fd8002;
}

.affiliate {
  display: block;
  background-color: #fff;
  text-align: center;
  font-size: 5.4vw;
  line-height: 1.7;
  color: #3f302e;
  letter-spacing: calc(0.1 * var(--vw-ratio) * 1vw);
  padding: calc(3 * var(--vw-ratio) * 1vw) 0;
  margin-bottom: calc(2.5 * var(--vw-ratio) * 1vw);
}
@media screen and (min-width: 835px) {
  .affiliate {
    font-size: min(5.4 / 3.2 * 1vw, 5.4 * 4.8px);
  }
}
.affiliate .affiliate_share {
  padding: calc(2.5 * var(--vw-ratio) * 1vw) 0;
  margin: 0 calc(5 * var(--vw-ratio) * 1vw);
}
.affiliate .affiliate_share h3 {
  margin-bottom: calc(5 * var(--vw-ratio) * 1vw);
}
.affiliate .affiliate_share ul {
  display: flex;
  flex-wrap: wrap;
  gap: calc(3 * var(--vw-ratio) * 1vw);
}
.affiliate .affiliate_share ul li {
  flex: 0 0 calc(40 * var(--vw-ratio) * 1vw - 1.5 * var(--vw-ratio) * 1vw - 1px);
  background-color: #fff;
  border-radius: calc(2.5 * var(--vw-ratio) * 1vw);
}
.affiliate .affiliate_share ul li a {
  display: flex;
  align-items: center;
  padding: calc(2.5 * var(--vw-ratio) * 1vw);
  background-color: #fff;
  border-radius: calc(2.5 * var(--vw-ratio) * 1vw);
  font-size: 3.4vw;
}
@media screen and (min-width: 835px) {
  .affiliate .affiliate_share ul li a {
    font-size: min(3.4 / 3.2 * 1vw, 3.4 * 4.8px);
  }
}
.affiliate .affiliate_share ul li a svg {
  width: calc(5 * var(--vw-ratio) * 1vw);
  height: calc(5 * var(--vw-ratio) * 1vw);
}
.affiliate .affiliate_share ul li a span {
  padding-left: calc(1 * var(--vw-ratio) * 1vw);
}
.affiliate .affiliate_share ul li a:hover {
  text-decoration: none;
}
.affiliate .affiliate_share ul li a.cat_cards_card_share--x {
  border: 2px solid #000;
}
.affiliate .affiliate_share ul li a.cat_cards_card_share--x:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.affiliate .affiliate_share ul li a.cat_cards_card_share--facebook {
  border: 2px solid #0866ff;
}
.affiliate .affiliate_share ul li a.cat_cards_card_share--facebook:hover {
  background-color: rgba(8, 102, 255, 0.1);
}
.affiliate .affiliate_share ul li a.cat_cards_card_share--line {
  border: 2px solid #06c755;
}
.affiliate .affiliate_share ul li a.cat_cards_card_share--line:hover {
  background-color: rgba(6, 199, 85, 0.1);
}
.affiliate .affiliate_share ul li a.cat_cards_card_share--mail {
  border: 2px solid #4C2E30;
}
.affiliate .affiliate_share ul li a.cat_cards_card_share--mail:hover {
  background-color: rgba(76, 46, 48, 0.1);
}

.headline {
  font-family: "Zen Maru Gothic", serif;
  margin-bottom: calc(5 * var(--vw-ratio) * 1vw);
  color: #3f302e;
  position: relative;
  padding-top: 0.5rem;
  font-size: 5.4vw;
}
@media screen and (min-width: 835px) {
  .headline {
    font-size: min(5.4 / 3.2 * 1vw, 5.4 * 4.8px);
  }
}
.headline::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1.2rem;
  background-color: #3f302e;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170 190"><g><path d="M46.26,39.92c8.36-.76,14.32-10.3,13.32-21.29C58.57,7.63,50.98-.67,42.62.09c-8.36.77-14.32,10.3-13.32,21.3,1.01,11,8.6,19.29,16.96,18.53Z"/><path d="M26.26,67.68c7.15-4.17,8.49-15.18,3.01-24.59-5.49-9.4-15.73-13.64-22.88-9.47-7.15,4.18-8.49,15.18-3,24.59,5.49,9.4,15.73,13.65,22.88,9.47Z"/><path d="M84.15,39.88c8.36.75,15.94-7.56,16.92-18.56.98-11-5-20.52-13.36-21.27-8.36-.75-15.93,7.57-16.92,18.56-.98,11,5,20.52,13.36,21.27Z"/><path d="M124.02,33.5c-7.16-4.16-17.39.1-22.86,9.52-5.47,9.42-4.1,20.42,3.06,24.58,7.16,4.16,17.39-.1,22.86-9.52,5.47-9.42,4.1-20.42-3.06-24.58Z"/><path d="M81.02,55.27c-3.46-5.22-9.31-8.7-16.02-8.69-6.71,0-12.55,3.5-16,8.72-3.81,5.77-5.22,11.62-8.95,15.65-3.73,4.03-19.22,4.61-20.35,22.98-.8,12.97,10.56,23.52,23.56,23.51,9.88-.01,16.07-3.46,21.81-3.47,5.74,0,11.94,3.43,21.82,3.42,13-.01,24.34-10.59,23.51-23.56-1.17-18.37-16.67-18.92-20.4-22.94-3.73-4.02-5.16-9.87-8.98-15.63Z"/></g></svg>');
  mask-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}

.headlineSecond {
  font-family: "Zen Maru Gothic", serif;
  margin-bottom: calc(2.5 * var(--vw-ratio) * 1vw);
  color: #3f302e;
  font-size: 5.4vw;
  text-align: center;
}
@media screen and (min-width: 835px) {
  .headlineSecond {
    font-size: min(5.4 / 3.2 * 1vw, 5.4 * 4.8px);
  }
}

form label {
  display: block;
}
form > div {
  margin-bottom: calc(5 * var(--vw-ratio) * 1vw);
}
form > div > div label {
  font-size: 2.7vw;
}
@media screen and (min-width: 835px) {
  form > div > div label {
    font-size: min(2.7 / 3.2 * 1vw, 2.7 * 4.8px);
  }
}
form .attention {
  font-size: 2.5vw;
  color: #818181;
}
@media screen and (min-width: 835px) {
  form .attention {
    font-size: min(2.5 / 3.2 * 1vw, 2.5 * 4.8px);
  }
}
form .requiredMark {
  font-size: 2.5vw;
  color: #fd8002;
  padding-left: calc(1 * var(--vw-ratio) * 1vw);
}
@media screen and (min-width: 835px) {
  form .requiredMark {
    font-size: min(2.5 / 3.2 * 1vw, 2.5 * 4.8px);
  }
}
form .noticeBox {
  padding: calc(2.5 * var(--vw-ratio) * 1vw);
  margin-bottom: calc(2.5 * var(--vw-ratio) * 1vw);
  border: 1px solid #dbdbdb;
  background-color: #f0f0f0;
  font-size: 2.5vw;
  color: #818181;
}
@media screen and (min-width: 835px) {
  form .noticeBox {
    font-size: min(2.5 / 3.2 * 1vw, 2.5 * 4.8px);
  }
}
form .noticeBox span {
  display: block;
  font-size: 3.4vw;
}
@media screen and (min-width: 835px) {
  form .noticeBox span {
    font-size: min(3.4 / 3.2 * 1vw, 3.4 * 4.8px);
  }
}
form .form_thumbnail {
  max-width: 40%;
  height: auto;
}
form [type=text], form [type=password], form [type=email], form [type=number], form [type=submit], form [type=file], form [type=date], form select, form textarea, form button, form a.submitBtn {
  padding: calc(1 * var(--vw-ratio) * 1vw);
  margin-bottom: calc(1 * var(--vw-ratio) * 1vw);
  border: 1px solid #dbdbdb;
  border-radius: calc(1 * var(--vw-ratio) * 1vw);
  width: 100%;
  background-color: #fff;
}
form [type=submit], form button, form a.submitBtn {
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  font-size: 4vw;
  padding: calc(1.5 * var(--vw-ratio) * 1vw) calc(10 * var(--vw-ratio) * 1vw);
  margin: 0 auto calc(1 * var(--vw-ratio) * 1vw);
  transition: all 0.5s ease;
}
@media screen and (min-width: 835px) {
  form [type=submit], form button, form a.submitBtn {
    font-size: min(4 / 3.2 * 1vw, 4 * 4.8px);
  }
}
.formWrapper {
  padding: calc(5 * var(--vw-ratio) * 1vw);
  background-color: rgba(253, 128, 2, 0.1);
}
.formWrapper [type=submit]:hover {
  border: 1px solid #fd8002;
  background-color: rgba(253, 128, 2, 0.75);
  color: #fff;
}

.form_pagenate {
  display: flex;
  justify-content: space-between;
  margin-bottom: calc(5 * var(--vw-ratio) * 1vw);
}
.form_pagenate li {
  flex: 0 0 32%;
  padding: calc(1.5 * var(--vw-ratio) * 1vw);
  border: 1px solid #9c9981;
  background-color: #fff;
  border-radius: calc(2.5 * var(--vw-ratio) * 1vw);
  font-size: 2.8vw;
  background-color: rgba(156, 153, 129, 0.1);
  line-height: 1.4;
  opacity: 0.4;
}
@media screen and (min-width: 835px) {
  .form_pagenate li {
    font-size: min(2.8 / 3.2 * 1vw, 2.8 * 4.8px);
  }
}
.form_pagenate li.current {
  opacity: 1;
}
.form_pagenate li span {
  display: block;
  margin-bottom: calc(0.5 * var(--vw-ratio) * 1vw);
}

.tippy-box[data-theme~=my_tippy] {
  text-align: left;
  padding: calc(1 * var(--vw-ratio) * 1vw);
  background-color: #fff;
  color: #77b91b;
  background-color: rgb(248.2, 251.5, 243.6);
  border: 1px solid #77b91b;
}
.tippy-box[data-theme~=my_tippy] .tippy-arrow {
  color: #77b91b;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(5 * var(--vw-ratio) * 1vw);
  gap: calc(1 * var(--vw-ratio) * 1vw);
}
.pagination_item_link {
  width: calc(5 * var(--vw-ratio) * 1vw);
  height: calc(5 * var(--vw-ratio) * 1vw);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  background: #fff;
  border: solid 2px #3f302e;
  font-size: 2.5vw;
  font-weight: bold;
  color: #3f302e;
}
@media screen and (min-width: 835px) {
  .pagination_item_link {
    font-size: min(2.5 / 3.2 * 1vw, 2.5 * 4.8px);
  }
}
.pagination_item_link.isActive, .pagination_item_link-current {
  background: #3f302e;
  color: #fff;
  pointer-events: none;
}
.pagination_item_link_icon {
  width: calc(2.5 * var(--vw-ratio) * 1vw);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: calc(1 * var(--vw-ratio) * 1vw) calc(5 * var(--vw-ratio) * 1vw);
  font-size: 2.2vw;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 835px) {
  .breadcrumb {
    font-size: min(2.2 / 3.2 * 1vw, 2.2 * 4.8px);
  }
}
.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 calc(1 * var(--vw-ratio) * 1vw);
  color: #3f302e;
}
.breadcrumb a {
  color: #fd8002;
}

.flashAlert {
  position: absolute;
  top: 9%;
  left: 0;
  right: 0;
  padding: 3vw 0;
  margin: 0 10vw;
  text-align: center;
  font-size: 18px;
  z-index: 99;
}
.flashAlert.flashAlert-success {
  color: #fff;
  background-color: rgba(253, 128, 2, 0.75);
}
.flashAlert.flashAlert-error {
  color: #fff;
  background-color: rgba(156, 153, 129, 0.75);
}

#wrap {
  display: flex;
  flex-direction: row-reverse;
  overflow: hidden;
}
#wrap main {
  flex: 0 0 50%;
  position: relative;
  z-index: 1;
}
#wrap aside {
  flex: 0 0 50%;
  position: fixed;
  z-index: 2;
  height: 100dvh;
  width: 50%;
  left: 0;
  top: 0;
  overflow: hidden;
  background-color: #000;
}
#wrap aside #aside_slides {
  display: none;
}
#wrap aside #aside_slides .aside_slides_slide {
  flex: 0 0 33.3333333333%;
}
#wrap aside #aside_slides .aside_slides_slide img {
  width: 100%;
  opacity: 0.15;
}
#wrap aside #aside_slides .aside_slides_slide.aside_slides_slide--01 {
  animation: slideY 240s infinite linear;
}
#wrap aside #aside_slides .aside_slides_slide.aside_slides_slide--02 {
  animation: slideYR 240s infinite linear;
}
#wrap aside #aside_slides .aside_slides_slide.aside_slides_slide--03 {
  animation: slideY 240s infinite linear;
}
#wrap aside #aside_info {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
}
#wrap aside #aside_info p {
  flex: 0 0 50%;
}
#wrap aside #aside_qr {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
}
#wrap aside #aside_qr p {
  position: absolute;
  right: calc(2.5 * var(--vw-ratio) * 1vw);
  bottom: calc(2.5 * var(--vw-ratio) * 1vw);
}
#wrap aside #aside_qr p img {
  width: calc(15 * var(--vw-ratio) * 1vw);
}
#wrap aside #aside_spell {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
}
#wrap aside #aside_spell p {
  position: absolute;
  left: 0;
  bottom: 0;
  color: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 835px) {
  #wrap main {
    flex: 0 0 100%;
    width: 100%;
  }
  #wrap aside {
    display: none;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #EBE6C3;
}
header #header_logo {
  flex: 0 0 calc(50 * var(--vw-ratio) * 1vw);
}
header #header_logo img {
  vertical-align: middle;
  padding: 0 calc(6 * var(--vw-ratio) * 1vw) 0 calc(5 * var(--vw-ratio) * 1vw);
}
header #navs {
  flex: 0 0 calc(50 * var(--vw-ratio) * 1vw);
  display: flex;
  justify-content: flex-end;
}
header #navs .nav_items {
  flex: 0 0 calc(50 * var(--vw-ratio) * 1vw / 3);
}
header #navs .nav_items a {
  display: block;
  text-align: center;
  padding: calc(4 * var(--vw-ratio) * 1vw) 0;
  line-height: 2;
}
header #navs .nav_items a svg {
  width: calc(5.5 * var(--vw-ratio) * 1vw);
  stroke: #fff;
}
header #navs .nav_items a span {
  font-size: 2.5vw;
  display: block;
  color: #fff;
}
@media screen and (min-width: 835px) {
  header #navs .nav_items a span {
    font-size: min(2.5 / 3.2 * 1vw, 2.5 * 4.8px);
  }
}
header #navs .nav_items a:hover {
  opacity: 0.75;
  text-decoration: none;
}
header #navs .nav_items#nav_search a {
  background-color: #fd8002;
}
header #navs .nav_items#nav_post a {
  background-color: #77b91b;
}
header #navs .nav_items#nav_menu a {
  background-color: #9c9981;
}
header #navs #nav_menuLists {
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}
header #navs #nav_menuLists.active {
  display: block;
  opacity: 1;
  background-color: #EBE6C3;
  position: fixed;
  right: 0;
  top: 0;
  width: calc(100 * var(--vw-ratio) * 1vw);
  height: 100vh;
}
header #navs #nav_menuLists div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header #navs #nav_menuLists div a {
  flex: 0 0 calc(50 * var(--vw-ratio) * 1vw);
}
header #navs #nav_menuLists div a img {
  vertical-align: middle;
  padding: 0 calc(6 * var(--vw-ratio) * 1vw) 0 calc(5 * var(--vw-ratio) * 1vw);
  margin-top: calc(2.5 * var(--vw-ratio) * 1vw);
}
@media screen and (max-width: 835px) {
  header #navs #nav_menuLists div a img {
    margin-top: calc(4 * var(--vw-ratio) * 1vw);
  }
}
header #navs #nav_menuLists div button {
  background-color: transparent;
  border: none;
  display: block;
  flex: 0 0 calc(100 * var(--vw-ratio) * 1vw / 2 / 3);
}
header #navs #nav_menuLists div button svg {
  width: calc(5.5 * var(--vw-ratio) * 1vw);
  stroke: #9c9981;
}
header #navs #nav_menuLists ul {
  height: calc(100vh - 15vw);
  width: calc(80 * var(--vw-ratio) * 1vw);
  margin: calc(10 * var(--vw-ratio) * 1vw) auto 0;
  overflow-y: auto;
  padding-bottom: calc(0 * var(--vw-ratio) * 1vw);
}
@media screen and (max-width: 835px) {
  header #navs #nav_menuLists ul {
    height: 75vh;
  }
}
header #navs #nav_menuLists ul li {
  border-bottom: 1px solid #9c9981;
}
header #navs #nav_menuLists ul li a {
  display: block;
  padding: calc(2.5 * var(--vw-ratio) * 1vw) 0;
  position: relative;
  font-size: 4vw;
}
@media screen and (min-width: 835px) {
  header #navs #nav_menuLists ul li a {
    font-size: min(4 / 3.2 * 1vw, 4 * 4.8px);
  }
}
header #navs #nav_menuLists ul li a::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #686656;
  mask: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 12H20" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M13 5L20 12L13 19" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  mask-size: cover;
  position: absolute;
  right: 0;
  top: calc(3.5 * var(--vw-ratio) * 1vw);
}

footer {
  padding: 0 calc(5 * var(--vw-ratio) * 1vw);
}
footer #footer_sponsor {
  background-color: rgba(255, 255, 255, 0.75);
  padding: calc(5 * var(--vw-ratio) * 1vw);
}
footer #footer_sponsor div {
  padding-bottom: calc(5 * var(--vw-ratio) * 1vw);
  margin-bottom: calc(5 * var(--vw-ratio) * 1vw);
  border-bottom: 1px solid #dbdbdb;
}
footer #footer_sponsor ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc(5 * var(--vw-ratio) * 1vw);
  align-items: center;
}
footer #footer_sponsor ul li img {
  height: calc(10 * var(--vw-ratio) * 1vw);
}
footer #footer_socials {
  padding-top: calc(10 * var(--vw-ratio) * 1vw);
}
footer #footer_socials ul {
  display: flex;
  justify-content: flex-end;
  gap: calc(1.5 * var(--vw-ratio) * 1vw);
}
footer #footer_socials ul li img {
  width: calc(3.5 * var(--vw-ratio) * 1vw);
}
@media screen and (max-width: 835px) {
  footer #footer_socials ul li img {
    width: calc(7 * var(--vw-ratio) * 1vw);
  }
}
footer small {
  padding: calc(2.5 * var(--vw-ratio) * 1vw) 0;
  display: block;
  line-height: 1.4;
  text-align: right;
}

article, section {
  margin-top: calc(10 * var(--vw-ratio) * 1vw);
  padding: 0 calc(5 * var(--vw-ratio) * 1vw) calc(5 * var(--vw-ratio) * 1vw);
  gap: calc(10 * var(--vw-ratio) * 1vw);
}

.cat_cards {
  display: flex;
  flex-wrap: wrap;
  gap: calc(2.5 * var(--vw-ratio) * 1vw) calc(2 * var(--vw-ratio) * 1vw);
}
.cat_cards .cat_cards_card.cat_cards_card--one {
  flex: 0 0 calc(90 * var(--vw-ratio) * 1vw);
}
.cat_cards .cat_cards_card.cat_cards_card--two {
  flex: 0 0 calc(90 * var(--vw-ratio) * 1vw / 2 - 2 * var(--vw-ratio) * 1vw / 2 - 4px);
}
.cat_cards .cat_cards_card a.cat_cards_card--inner:hover {
  box-shadow: 0 0 calc(3 * var(--vw-ratio) * 1vw) rgba(0, 0, 0, 0.4);
  opacity: 0.9;
  text-decoration: none;
}
.cat_cards .cat_cards_card .cat_cards_card--inner {
  display: block;
  box-shadow: 0 0 calc(5 * var(--vw-ratio) * 1vw) rgba(0, 0, 0, 0.15);
  border-radius: calc(2.5 * var(--vw-ratio) * 1vw);
  background: url("../images/bg_cat_card.gif") repeat left center;
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_category {
  padding: calc(2.5 * var(--vw-ratio) * 1vw);
  color: #fff;
  border-radius: calc(2.5 * var(--vw-ratio) * 1vw) calc(2.5 * var(--vw-ratio) * 1vw) 0 0;
  line-height: 1.2;
  font-size: 4.2vw;
}
@media screen and (min-width: 835px) {
  .cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_category {
    font-size: min(4.2 / 3.2 * 1vw, 4.2 * 4.8px);
  }
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_category time {
  display: block;
  text-align: right;
  color: rgba(255, 255, 255, 0.8);
  font-size: 3.2vw;
}
@media screen and (min-width: 835px) {
  .cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_category time {
    font-size: min(3.2 / 3.2 * 1vw, 3.2 * 4.8px);
  }
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_pict figure img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_pict.cat_cards_card_pict--hasSub {
  display: flex;
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_pict.cat_cards_card_pict--hasSub figure {
  flex: 0 0 80%;
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_pict.cat_cards_card_pict--hasSub figure img {
  width: 100%;
  aspect-ratio: inherit;
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_pict.cat_cards_card_pict--hasSub ul {
  padding: calc(1.5 * var(--vw-ratio) * 1vw);
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_pict.cat_cards_card_pict--hasSub ul li {
  margin-bottom: calc(1.5 * var(--vw-ratio) * 1vw);
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_pict.cat_cards_card_pict--hasSub ul li img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: pointer;
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_pict.cat_cards_card_pict--hasSub ul li img:hover {
  opacity: 0.9;
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_summary {
  padding: calc(5 * var(--vw-ratio) * 1vw);
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_summary div {
  margin-bottom: calc(7.5 * var(--vw-ratio) * 1vw);
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_summary div dt {
  margin: calc(2 * var(--vw-ratio) * 1vw) auto;
  font-weight: bold;
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_summary div dd {
  color: #3f302e;
  line-height: 1.4;
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share {
  padding: calc(5 * var(--vw-ratio) * 1vw) 0;
  margin: calc(-2.5 * var(--vw-ratio) * 1vw) calc(5 * var(--vw-ratio) * 1vw) calc(5 * var(--vw-ratio) * 1vw);
  border-top: 1px solid;
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share h3 {
  margin-bottom: calc(5 * var(--vw-ratio) * 1vw);
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share ul {
  display: flex;
  flex-wrap: wrap;
  gap: calc(3 * var(--vw-ratio) * 1vw);
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share ul li {
  flex: 0 0 calc(40 * var(--vw-ratio) * 1vw - 1.5 * var(--vw-ratio) * 1vw - 1px);
  background-color: #fff;
  border-radius: calc(2.5 * var(--vw-ratio) * 1vw);
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share ul li a {
  display: flex;
  align-items: center;
  padding: calc(2.5 * var(--vw-ratio) * 1vw);
  background-color: #fff;
  border-radius: calc(2.5 * var(--vw-ratio) * 1vw);
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share ul li a svg {
  width: calc(5 * var(--vw-ratio) * 1vw);
  height: calc(5 * var(--vw-ratio) * 1vw);
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share ul li a span {
  padding-left: calc(1 * var(--vw-ratio) * 1vw);
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share ul li a:hover {
  text-decoration: none;
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share ul li a.cat_cards_card_share--x {
  border: 2px solid #000;
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share ul li a.cat_cards_card_share--x:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share ul li a.cat_cards_card_share--facebook {
  border: 2px solid #0866ff;
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share ul li a.cat_cards_card_share--facebook:hover {
  background-color: rgba(8, 102, 255, 0.1);
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share ul li a.cat_cards_card_share--line {
  border: 2px solid #06c755;
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share ul li a.cat_cards_card_share--line:hover {
  background-color: rgba(6, 199, 85, 0.1);
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share ul li a.cat_cards_card_share--mail {
  border: 2px solid #4C2E30;
}
.cat_cards .cat_cards_card .cat_cards_card--inner .cat_cards_card_share ul li a.cat_cards_card_share--mail:hover {
  background-color: rgba(76, 46, 48, 0.1);
}
.cat_cards .cat_cards_card.cat_cards_card--stray .cat_cards_card_category {
  background-color: #fd8002;
}
.cat_cards .cat_cards_card.cat_cards_card--stray dt {
  color: #fd8002;
}
.cat_cards .cat_cards_card.cat_cards_card--rescue .cat_cards_card_category {
  background-color: #77b91b;
}
.cat_cards .cat_cards_card.cat_cards_card--rescue dt {
  color: #77b91b;
}
.cat_cards .cat_cards_card.cat_cards_card--solved .cat_cards_card_category {
  background-color: #f0B000;
}
.cat_cards .cat_cards_card.cat_cards_card--solved dt {
  color: #f0B000;
}

.cat_comment {
  background-color: #fff;
  border-radius: calc(2.5 * var(--vw-ratio) * 1vw);
  padding: calc(5 * var(--vw-ratio) * 1vw);
}
.cat_comment .cat_comment_lists ul {
  margin-bottom: calc(5 * var(--vw-ratio) * 1vw);
}
.cat_comment .cat_comment_lists ul li {
  margin-bottom: calc(5 * var(--vw-ratio) * 1vw);
  padding-bottom: calc(5 * var(--vw-ratio) * 1vw);
  border-bottom: 1px solid #e6e6e6;
}
.cat_comment .cat_comment_lists ul li h4 {
  font-weight: bold;
}
.cat_comment .cat_comment_lists ul li .cat_comment_posttime {
  font-size: 2.5vw;
  color: #818181;
}
@media screen and (min-width: 835px) {
  .cat_comment .cat_comment_lists ul li .cat_comment_posttime {
    font-size: min(2.5 / 3.2 * 1vw, 2.5 * 4.8px);
  }
}
.cat_comment .cat_comment_lists ul li .cat_comment_posttime time {
  padding-right: calc(2.5 * var(--vw-ratio) * 1vw);
}
.cat_comment .cat_comment_lists ul li .cat_comment_mailaddress a {
  font-size: 2.5vw;
  color: #818181;
  text-decoration: underline;
}
@media screen and (min-width: 835px) {
  .cat_comment .cat_comment_lists ul li .cat_comment_mailaddress a {
    font-size: min(2.5 / 3.2 * 1vw, 2.5 * 4.8px);
  }
}
.cat_comment .cat_comment_lists ul li .cat_comment_message {
  margin-top: calc(2.5 * var(--vw-ratio) * 1vw);
}
.cat_comment .cat_comment_lists ul li .cat_comment_pict {
  margin-top: calc(1 * var(--vw-ratio) * 1vw);
}
.cat_comment .cat_comment_lists ul li .cat_comment_pict a img {
  width: calc(30 * var(--vw-ratio) * 1vw);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.cat_comment .cat_comment_subscribe {
  text-align: right;
  font-size: 2.8vw;
}
@media screen and (min-width: 835px) {
  .cat_comment .cat_comment_subscribe {
    font-size: min(2.8 / 3.2 * 1vw, 2.8 * 4.8px);
  }
}
.cat_comment .cat_comment_subscribe .cat_comment_subscribe_text {
  margin-bottom: calc(1.5 * var(--vw-ratio) * 1vw);
}
.cat_comment .cat_comment_subscribe .cat_comment_subscribe_text svg {
  vertical-align: text-bottom;
  stroke: rgba(119, 185, 27, 0.75);
  cursor: pointer;
  width: 18.24px;
  height: 18.24px;
}
@media screen and (max-width: 835px) {
  .cat_comment .cat_comment_subscribe .cat_comment_subscribe_text svg {
    width: calc(4.4 * var(--vw-ratio) * 1vw);
    height: calc(4.4 * var(--vw-ratio) * 1vw);
  }
}
.cat_comment .cat_comment_subscribe [type=text] {
  display: inline;
  margin-left: calc(2.5 * var(--vw-ratio) * 1vw);
  padding: calc(1 * var(--vw-ratio) * 1vw) calc(2.5 * var(--vw-ratio) * 1vw);
  border-radius: calc(1 * var(--vw-ratio) * 1vw) 0 0 calc(1 * var(--vw-ratio) * 1vw);
  width: calc(50 * var(--vw-ratio) * 1vw);
  font-size: 2.8vw;
}
@media screen and (min-width: 835px) {
  .cat_comment .cat_comment_subscribe [type=text] {
    font-size: min(2.8 / 3.2 * 1vw, 2.8 * 4.8px);
  }
}
.cat_comment .cat_comment_subscribe [type=text]:focus {
  outline: none; /* フォーカス時の枠線を削除 */
}
.cat_comment .cat_comment_subscribe [type=submit] {
  display: inline;
  padding: calc(1 * var(--vw-ratio) * 1vw) calc(2.5 * var(--vw-ratio) * 1vw);
  width: fit-content;
  border-radius: 0 calc(1 * var(--vw-ratio) * 1vw) calc(1 * var(--vw-ratio) * 1vw) 0;
  border-left: none;
  background-color: #f9f9f9;
  font-size: 2.8vw;
}
@media screen and (min-width: 835px) {
  .cat_comment .cat_comment_subscribe [type=submit] {
    font-size: min(2.8 / 3.2 * 1vw, 2.8 * 4.8px);
  }
}
.cat_comment .cat_comment_form {
  padding: calc(5 * var(--vw-ratio) * 1vw);
}
.cat_comment .cat_comment_form .comment_submit {
  margin-top: calc(7.5 * var(--vw-ratio) * 1vw);
}
.type--stray .cat_comment_form {
  background-color: rgba(253, 128, 2, 0.1);
}
.type--stray .cat_comment_form [type=submit]:hover {
  border: 1px solid #fd8002;
  background-color: rgba(253, 128, 2, 0.75);
  color: #fff;
}

.type--rescue .cat_comment_form {
  background-color: rgba(119, 185, 27, 0.1);
}
.type--rescue .cat_comment_form [type=submit]:hover {
  border: 1px solid #77b91b;
  background-color: rgba(119, 185, 27, 0.75);
  color: #fff;
}

.type--solved .cat_comment_form {
  background-color: rgba(240, 176, 0, 0.1);
}
.type--solved .cat_comment_form [type=submit]:hover {
  border: 1px solid #f0B000;
  background-color: rgba(240, 176, 0, 0.75);
  color: #fff;
}

.formSection {
  background-color: #fff;
  border-radius: calc(2.5 * var(--vw-ratio) * 1vw);
  padding: calc(5 * var(--vw-ratio) * 1vw);
  margin-bottom: calc(5 * var(--vw-ratio) * 1vw);
}
.formSection .formSection_form {
  padding: calc(5 * var(--vw-ratio) * 1vw);
}
.formSection .formSection_form .formSection_submit {
  margin-top: calc(7.5 * var(--vw-ratio) * 1vw);
  text-align: center;
}
.formSection .formSection_paragraph {
  margin-bottom: calc(7.5 * var(--vw-ratio) * 1vw);
}

.mypage_menulists {
  margin-top: calc(5 * var(--vw-ratio) * 1vw);
}
.mypage_menulists li {
  border-bottom: 1px solid rgba(156, 153, 129, 0.4);
}
.mypage_menulists li a {
  display: block;
  padding: calc(2.5 * var(--vw-ratio) * 1vw) 0;
  position: relative;
  font-size: 4vw;
}
@media screen and (min-width: 835px) {
  .mypage_menulists li a {
    font-size: min(4 / 3.2 * 1vw, 4 * 4.8px);
  }
}
.mypage_menulists li a::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #686656;
  mask: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 12H20" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M13 5L20 12L13 19" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  mask-size: cover;
  position: absolute;
  right: 0;
  top: calc(3.5 * var(--vw-ratio) * 1vw);
}

.staticBox h2:not(.headlineSecond) {
  font-size: 4.2vw;
  font-weight: bold;
  margin: calc(5 * var(--vw-ratio) * 1vw) 0 calc(2.5 * var(--vw-ratio) * 1vw);
}
@media screen and (min-width: 835px) {
  .staticBox h2:not(.headlineSecond) {
    font-size: min(4.2 / 3.2 * 1vw, 4.2 * 4.8px);
  }
}
.staticBox h3 {
  font-weight: bold;
  margin: calc(3 * var(--vw-ratio) * 1vw) 0 calc(1.5 * var(--vw-ratio) * 1vw);
}
.staticBox p {
  margin-bottom: calc(1.5 * var(--vw-ratio) * 1vw);
}
.staticBox ul {
  list-style: none disc inside;
  margin-bottom: calc(1.5 * var(--vw-ratio) * 1vw);
}
.staticBox dl dt {
  font-weight: bold;
  margin-bottom: calc(1 * var(--vw-ratio) * 1vw);
}
.staticBox dl dd {
  margin: 0 0 calc(2.5 * var(--vw-ratio) * 1vw) 1rem;
}
.staticBox a {
  color: #fd8002;
  text-decoration: underline;
}
.staticBox a:hover {
  text-decoration: none;
}
.staticBox hr {
  border-top: 2px dashed #8c8b8b;
  display: block;
  padding-top: calc(5 * var(--vw-ratio) * 1vw);
  margin-top: calc(5 * var(--vw-ratio) * 1vw);
}

#top_kv {
  position: relative;
  margin: 0;
  padding: 0;
}
#top_kv #top_kv_inner {
  background: url("../images/eyecatch.png") no-repeat left center/cover;
  height: calc(50vh - 16.5 * var(--vw-ratio) * 1vw);
}
#top_kv h1 {
  writing-mode: vertical-rl;
  position: absolute;
  right: calc(5 * var(--vw-ratio) * 1vw);
  top: 5vh;
}
#top_kv h1 span {
  display: inline-block;
  background-color: #fff;
  font-size: calc((50vh - 16.5 * var(--vw-ratio) * 1vw) / 100 * 10);
  padding: 1.5vh 1vh;
  margin: 0 1vh;
}
#top_kv h1 span:last-child {
  padding-bottom: 0;
  margin-top: 7.5vh;
}
#top_kv p {
  padding: 0 calc(5 * var(--vw-ratio) * 1vw);
  margin-top: calc(15 * var(--vw-ratio) * 1vw);
}

.error {
  color: #c00040;
  font-size: 2.8vw;
}
@media screen and (min-width: 835px) {
  .error {
    font-size: min(2.8 / 3.2 * 1vw, 2.8 * 4.8px);
  }
}

.opa:hover {
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */