@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/


* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
　-webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}
html {
    scroll-behavior: smooth;
}

@font-face {
  font-family: "Hiragino Kaku Gothis Pro";
  src: url("fonts/hiragino-kaku-gothic-pro-w3.otf");
  font-style: normal;
}
html {
  font-family: "Noto Sans", sans-serif;
  font-size: 10px;
  color: #000;
  scroll-behavior: smooth;
}
.pc{
	display:flex!important;
	background-color:transparent!important;
}
@media screen and (max-width: 767px) {
	.pc{
		display:none!important;
	}
}
.image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
	width:100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.-frame-on .p-breadcrumb {
    padding-bottom: 12px;
    margin-top: 70px;
}
.ranking-label{
	position: absolute;
    width: 8%;
    height: auto;
    left: 0;
    top: -20px;
}
@media screen and (max-width: 767px) {
.ranking-label{
	width:18%;
}
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 999;
  width: 100%;
}
.header__container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 17px;
  position: relative;
  height: 68px;
}
@media screen and (max-width: 767px) {
  .header__container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 11px;
  }
}
.header__search-container {
  max-width: 364px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header__search-container {
    margin-top: 14px;
    padding-bottom: 16px;
    display: none;
  }
}
.header__search-box {
  font-size: 16px;
  width: 100%;
  height: 39px;
  border: 1px solid #bcbcbc;
  border-radius: 20px 0 0 20px;
  border-right: 0;
  padding: 11px 10px;
}
.header__search-box input {
  font: 500 1.4rem "Hiragino Kaku Gothis Pro", sans-serif;
}
.header__search-box::-webkit-input-placeholder {
  font-size: 1.4rem;
}
.header__search-box::-moz-placeholder {
  font-size: 1.4rem;
}
.header__search-box:-ms-input-placeholder {
  font-size: 1.4rem;
}
.header__search-box::-ms-input-placeholder {
  font-size: 1.4rem;
}
.header__search-box::placeholder {
  font-size: 1.4rem;
}
.header__finder-button {
  background-color: #ff8a00;
  padding: 0 24px;
  color: #fff;
  height: 39px;
  border: 0;
  border-radius: 0 20px 20px 0;
}
.header__container-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__container-sp {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
}
.header__sp-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
}
.header__page-top-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    background:url("img/icons/pachinko.webp") no-repeat; /* PNG画像を背景に追加 */
    background-size: cover;
    background-position: center;
    border: 0;
    width: 52px;
    height: 52px;
    right: 50px;
    bottom: 100px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    z-index: 999;
    cursor: pointer; /* カーソルをポインターに変更 */
}
/* 検索フォームのポップアップ初期状態を非表示 */
.header__search-popup {
    display: none; /* 初期状態で非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* 背景の暗さ */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* フォームのスタイル */
.header__search-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
	display:flex;
}
@media screen and (max-width: 767px) {
  .header__page-top-button {
    right: 25px;
    bottom: 50px;
    border-radius: 50%;
  }
}
.header__page-top-button::before {
  position: absolute;
  content: "";
  background: url("img/icons/arrow-top.svg") no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header__page-top-button.show {
  opacity: 1;
  visibility: visible;
}
.header__burger {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__burger {
    display: block;
    cursor: pointer;
  }
  .header__burger.active .header__bar:nth-child(2) {
    opacity: 0;
  }
  .header__burger.active .header__bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .header__burger.active .header__bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}
.header__bar {
  display: block;
  width: 22px;
  height: 3px;
  margin: 5px auto;
  border-radius: 39px;
  background-color: #2d2f30;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header__logo {
  width: 350px;
  height: 53px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 266px;
    height: 37px;
  }
}
.header__logo:hover {
  opacity: 0.7;
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .header__nav-list {
    display: none;
  }
}
.header__nav-list--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__nav-list--sp {
    display: block !important;
    position: fixed;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    left: -100%;
    top: 69px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 999;
  }
  .header__nav-list--sp.active {
    left: 0;
    padding: 0 3%;
  }
}
.header__nav-list-title {
  font: 600 1.4rem "Poppins", sans-serif;
  color: #2d2f30;
  padding: 16px 10px;
  margin: 56px 0 43px;
  letter-spacing: 0.11em;
}
.header__link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__link-item--sp {
  padding: 16px 10px;
  position: relative;
}
.header__link-item--sp:nth-child(4) {
  padding-right: 0;
}
.header__nav-link {
  font: 400 1.6rem "Hiragino Kaku Gothis Pro", sans-serif;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.header__nav-link--text {
  font-size: 1.2rem;
}
.header__nav-link--secondary {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  background-color: #2d2f30;
  color: #fff;
  width: 108px;
  min-height: 36px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  border-radius: 10px;
}
.header__nav-link--secondary:hover {
  background-color: #fff;
  border: 1px solid #128061;
}
.header__nav-link--sp {
  font: 700 1.6rem "Poppins", sans-serif;
  color: #2d2f30;
}
.header__nav-link:hover {
  color: #128061;
}
.header__menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
  color: #fff;
  width:80%;
  background:#000;
  max-width: 1440px;
  padding: 1rem;
  margin: 1rem auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border: 1px solid #c1c1c1;
    border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .header__menu-container {
    display: none;
  }
}
.header__menu-container--green {
  background-color: #2e5c51;
  color: #fff;
}
.header__menu-wrapper {
  width: 100%;
  border-top: 1px solid #ededed;
}
.header__icon {
  width: 18px;
  height: 20px;
}
.header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width:100%;
  justify-content:space-around;
}
.header__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}
.header__social-list--sp {
  padding: 0 10px;
}
.header__menu-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 5px;
}
.header__menu-item::after {
  position: absolute;
  content: "";
  background-color: #2c846b;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
}
.header__menu-item--white::after {
  background-color: #fff;
    height: 16px;
    top: 50%;
    right: -10px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    rotate: 45deg;
}
.header__menu-item:last-child {
  border-right: 0;
}
.header__menu-item:last-child::after {
  display: none;
}
.header__menu-link {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1em;
  width: 100%;
  text-align: center;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .header__menu-link {
    font-size: 10px;
    width: 85px;
  }
}
.header__menu-link:hover {
  opacity: 0.7;
}

.footer__content {
  background-color: #2d2f30;
}
.footer__section-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 38px 10px 61px;
}
@media screen and (max-width: 1262px) {
  .footer__section-container {
    max-width: 100%;
    padding: 4px 10px 72px;
  }
}
.footer__section-title {
  font-size: 1.6rem;
  color: #fafbff;
  letter-spacing: 0.08em;
  text-align: center;
  padding-bottom: 20px;
}
.footer__section-link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.footer__link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__link-text {
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #d0d4d6;
  border-radius: 50px;
  padding: 10px;
}
.footer__list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .footer__list-wrapper {
    margin-top: 36px;
  }
}
.footer__menu-link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 100%;
  text-align: center;
}
.footer__menu-link-container--right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.footer__menu-link {
  font-size: 1.4rem;
  font-weight: 400;
  color: #ededed;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .footer__menu-link {
    font-size: 16px;
  }
}
.footer__logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .footer__logo-container {
    display: none;
  }
}
.footer__logo-container--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer__logo-container--sp {
    display: block;
    margin-top: 58px;
  }
}
.footer__logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .footer__logo-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 22px;
  }
}
.footer__logo {
  width: 375px;
  height: 57px;
}
.footer__logo-title {
  font-size: 2.8rem;
  line-height: 1.4285714286em;
  color: #fafbff;
}
.footer__copyright-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ededed;
  text-align: center;
}

.top-slider-item{
  background:rgba(0,0,0,0.7);
  padding:1em 2em;
  border-radius:15px;
}
@media screen and (max-width: 767px) {
.top-slider-item{
  padding:1em 0;
  border-radius:15px;
}
}

.common {
  padding-top: 165px;
}
.common__section{
	max-width:952px;
	margin:0 auto;
}
.common__section__pop{
	max-width:100%;
	margin:0 auto;
}
.common__section--pb30 {
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .common__section--pb30 {
    padding-bottom: 0;
  }
}
.common__section-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px 1rem;
}
@media screen and (max-width: 952px) {
  .common__section-container {
    max-width: 100%;
    padding: 8px 15px 15px !important;
  }
}
.common__section-container--grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .common__section-container--owl {
    padding-bottom: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .common__section-container--topic {
    padding-top: 0 !important;
  }
}
.common__section-container--unset {
  padding: 0;
}
.common__section-container--pt31 {
  padding: 30px 0 62px;
}
@media screen and (max-width: 950px) {
  .common__section-container--pt31 {
    padding: 30px 0 62px !important;
  }
}
@media screen and (max-width: 767px) {
  .common__section-container--pt31 {
    padding: 16px 8px 60px !important;
  }
}
.common__section-container--pt30 {
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .common__section-container--pt30 {
    padding: 16px 15px !important;
  }
}
@media screen and (max-width: 767px) {
  .common__section-container--sp {
    padding: 16px 8px !important;
  }
}
.common__section-container--pb40 {
  padding: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .common__section-container--pb40 {
    padding: 13px 15px !important;
  }
}
.common__section-container--p43 {
  padding: 43px 0;
}
@media screen and (max-width: 767px) {
  .common__section-container--p43 {
    padding: 16px 8px !important;
  }
}
.common__section-container--p40 {
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .common__section-container--p40 {
    padding: 15px !important;
  }
}
.common__section-container--pt60 {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .common__section-container--pt60 {
    padding: 15px !important;
  }
}
.common__section-container--p25 {
  padding: 25px 0 26px;
}
@media screen and (max-width: 767px) {
  .common__section-container--p25 {
    padding: 16px 8px !important;
  }
}
.common__section-column1 {
  width: 100%;
}
.common__section-column2 {
  max-width: 362px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .common__section-column2 {
    display: none;
  }
}
.common__desctiption {
  margin-bottom: 16px;
}
.common__casino-container {
  position: relative;
  padding-top: 106px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.common__casino-item-index {
  background-color: #ff8a00;
  width: 74px;
  height: 63px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 700 2.4rem "Noto Sans", sans-serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .common__casino-item-index {
    position: absolute;
    right: 0;
    top: 71px;
    width: 41px;
    height: 35px;
  }
}
.common__casino-left-wrap {
  position: relative;
}
.common__casino-left-wrap::after {
  content: "";
  position: absolute;
  right: -20px;
  width: 1px;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 100%;
  background-color: #bcbcbc;
}
@media screen and (max-width: 767px) {
  .common__casino-left-wrap::after {
    right: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: unset;
    bottom: -25px;
    height: 1px;
    width: 50%;
  }
}
.common__casino-item {
  position: relative;
  padding: 18px 32px 38px 50px;
  background-color: #fff5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .common__casino-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px 13px 0;
  }
}
.common__casino-logo {
  display: inline-block;
  position: absolute;
  top: -65px;
  left: 50px;
  height: 187px;
  width: 187px;
}
@media screen and (max-width: 767px) {
  .common__casino-logo {
    top: -50px;
    width: 137px;
    height: 137px;
    left: 13px;
  }
}
.common__casino-text-wrap {
  padding-left: 220px;
}
@media screen and (max-width: 767px) {
  .common__casino-text-wrap {
    padding-left: 0;
    margin-top: 35px;
  }
}
.common__casino-description-text {
  margin-top: 8px;
  font-weight: 700;
  width: 100%;
}
.common__casino-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 177px;
  min-height: 44px;
  padding: 2px;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.5px solid #2d2f30;
}
@media screen and (max-width: 767px) {
  .common__casino-button {
    max-width: 133px;
    margin: -20px 0 20px 150px;
  }
  .common__casino-button--ranking {
    margin: unset;
    max-width: unset;
  }
}
.common__casino-button::before {
  position: absolute;
  content: "";
  background: url("img/icons/button-vetor.svg") no-repeat;
  width: 14px;
  height: 13px;
  top: 0;
  right: 0;
}
.common__casino-button::after {
  position: absolute;
  content: "";
  background: url("img/icons/button-vetor.svg") no-repeat;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 14px;
  height: 13px;
  bottom: 0;
  left: 0;
}
.common__casino-button-text {
  font: 700 1.4rem "Noto Sans", sans-serif;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.common__casino-tag-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 5px;
  margin-top: 30px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .common__casino-tag-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.common__casino-tag-item:nth-child(1) {
  padding: 10px;
  background-color: #2d2f30;
  width: 100%;
}
.common__casino-tag-item:nth-child(2) {
  padding: 10px;
  background-color: #042c51;
  width: 100%;
}
.common__casino-tag-title {
  color: #ff8a00;
  font: 700 2rem "Noto Sans", sans-serif;
}
.common__casino-tag-subtitle {
  color: #fff;
  font: 700 1.6rem "Noto Sans", sans-serif;
}
.common__casino-link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .common__casino-link-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    gap: 15px;
  }
}
.common__casino-link-icon {
  width: 24px;
  height: 24px;
}
.common__casino-link {
  white-space: nowrap;
  font: 700 2rem "Noto Sans", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .common__casino-link {
    font: 700 1.2rem "Noto Sans", sans-serif;
  }
  .common__casino-link:nth-child(2) {
    margin-left: auto;
  }
}
.common__casino-link:last-child {
  grid-column: span 2/span 2;
  margin-left: auto;
}
.common__casino-link:nth-child(1) {
  color: #00a3ff;
}
.common__casino-link:nth-child(2) {
  color: #00a3ff;
}
.common__casino-link:nth-child(3) {
  margin-top: auto;
}
.common__title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.common__title-container--column2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.common__title-container--second {
  padding-top: 30px;
}
.common__bulleted-title {
  padding-left: 18px;
  position: relative;
  font: 700 1.5rem "Noto Sans", sans-serif;
}
.common__bulleted-title::before {
  content: url("img/icons/bullet-icon.svg");
  width: 19px;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
}
.common__bulleted-description {
  font: 400 1.4rem "Noto Sans", sans-serif;
  margin: 10px 0 20px;
}
.common__orange-line {
  background: url("img/orange-line.svg") no-repeat;
  width: 100%;
  height: 1.6rem;
}
.common__casino-article-container {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.common__casino-article-container::after {
  content: "";
  background: url("img/icons/stroke-lines.svg") no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
}
.common__casino-article-thumbnail {
  width: 100%;
}
.common__see-more-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 36px 0 90px;
}
.common__see-more-wrapper--sp {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding: 0 10px;
}
.common__see-more-casino {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  gap: 10px;
  font: 400 2rem "Noto Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .common__see-more-casino {
    font: 400 1.2rem "Noto Sans", sans-serif;
  }
}
.common__see-more-casino--sp {
  margin: 0;
}
.common__casino-article-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  gap: 10px;
  font: 400 2.8rem "Noto Sans", sans-serif;
}
.common__casino-latest-update {
  background-color: #2d2f30;
  border-radius: 20px;
  padding: 2px 10px;
  color: #fff;
  font: 400 1.6rem "Noto Sans", sans-serif;
}
.common__casino-article-description {
  font: 700 1.4rem "Noto Sans", sans-serif;
  margin-top: 7px;
}
.common__casino-release-date-label {
  font: 400 1.4rem "Noto Sans", sans-serif;
  margin-top: 7px;
}
.common__casino-ranking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 90px;
}
.common__casino-latest-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.common__latest-casino-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .common__latest-casino-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.common__latest-casino-item::after {
  content: "";
  background: url("img/icons/stroke-lines.svg") no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
}
.common__latest-casino-item:last-child {
  margin-bottom: 0;
}
.common__latest-casino-thumbnail-wrap{
	max-width:330px;
	width:100%;
}

.common__latest-casino-thumbnail {
  max-width: 330px;
  width:100%;
  height: auto;
}
@media screen and (max-width: 767px) {
.common__latest-casino-thumbnail-wrap{
	max-width:430px;
}

.common__latest-casino-thumbnail {
  max-width: 430px;
}
}
.common__casino-update-date {
  padding: 0 10px;
  color: #fff;
  background-color: #2d2f30;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 10px;
}
.common__casino-latest-description {
  font: 700 2rem "Noto Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .common__casino-latest-description {
    font: 700 1.7rem "Noto Sans", sans-serif;
  }
}
.common__latest-casino-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.common__casino-latest-link {
  padding: 0 14px;
  background-color: #ff8a00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  border-radius: 10px;
  height: 40px;
}
@media (max-width: 420px) {
	.common__casino-latest-link {
		font-size:14px;
	}
}
.common__ranking-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.common__ranking-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 7px;
  gap: 40px;
}
.common__ranking-link {
  font: 400 1.4rem "Noto Sans", sans-serif;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ac0007;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 8px;
  padding: 2px 5px;
  margin-top: 13px;
}
.common__ranking-casino-logo {
  height: 148px;
  width: 148px;
}
.common__casino-guide-block {
  margin-bottom: 100px;
}
.common__casino-guide-title {
  padding: 10px;
  color: #fff;
  font: 400 3.2rem "Noto Sans", sans-serif;
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .common__casino-guide-title {
    font: 400 1.4rem "Noto Sans", sans-serif;
    margin-top: 26px;
  }
}
.common__casino-guide-title--blue {
  background-color: #00557f;
}
.common__casino-guide-title--black {
  background-color: #2d2f30;
}
.common__casino-guide-image {
  max-width: 358px;
  width: 100%;
  height: auto;
}
.common__casino-guide-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .common__casino-guide-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.common__casino-chips-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(244px, 1fr));
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .common__casino-chips-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.common__casino-chip-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  border-radius: 10px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: 100%;
  max-width: 244px;
  padding: 10px 4px;
}
.common__casino-chip-link--orange {
  background-color: #ff8a00;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.common__casino-chip-link--red {
  background-color: #ac0007;
}
.common__casino-link-text {
  color: white;
  white-space: nowrap;
  font: 400 1.8rem "Noto Sans", sans-serif;
}
.common__casino-arrow-right {
  width: 22px;
  height: 22px;
}
.common__casino-game-icon {
  height: 35px;
  width: auto;
  margin-left: auto;
}
.common__rich-text-wrapper {
  font: 400 1.4rem "Noto Sans", sans-serif;
  margin-bottom: 20px;
}
.common__trending-item {
  background-color: #fff5f5;
  padding: 15px;
  min-width: 362px;
  width: 100%;
  margin-bottom: 30px;
}
.common__trending-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
}
.common__casino-trending-title {
  font: 700 1.6rem "Noto Sans", sans-serif;
}
.common__casino-trending-bullet {
  position: relative;
  padding-left: 14px;
  margin-top: 12px;
  font: 400 1.4rem "Noto Sans", sans-serif;
}
.common__casino-trending-bullet::before {
  content: url("https://pachislot-info.com/wp-content/img/icons/bullet-icon.svg");
  position: absolute;
  left: 0;
}
.common__casino-trending-link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background-color: #ac0007;
  color: #fff;
  border-radius: 10px;
  padding: 5px;
  margin-top: 12px;
  font: 700 1.4rem "Noto Sans", sans-serif;
}
.common__trending-link-icon {
  width: 24px;
  height: 24px;
}
.common__title {
  position: relative;
  font: 600 2.4rem "Hiragino Kaku Gothis Pro", sans-serif;
  color: #333;
  line-height: 1em;
  white-space: nowrap;
  margin-bottom:1rem;
}
.title_wh{
	margin:0 auto 2rem;
	color:white;
	text-align: center;
}
@media screen and (max-width: 767px) {
  .common__title {
    font-size: 20px;
    margin-bottom: 10px;
	font-weight:bold;
  }
}
.common__title--white-centered {
  text-align: center;
  color: #f8fdfb;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .common__title--white-centered {
    margin-bottom: 16px;
  }
}
.common__title--mb20 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .common__title--mb20 {
    margin-bottom: 16px;
    text-align: center;
  }
}
.common__title--sm {
  font: 700 2rem "Noto Sans", sans-serif;
}
.common__title--new {
  background-color: #222;
  color: #f8fdfb;
  text-align: center;
  padding: 8px 0;
  line-height: normal;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .common__title--new {
    font-size: 20px;
  }
}
.common__title--black {
  color: #000;
  font-weight: 600;
  text-align: center;
}
.common__title--light {
  font-weight: 300;
  color: #2e5c51;
  padding-left: 8px;
}
.common__title--about {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .common__title--about {
    margin-bottom: 13px;
  }
}
.common__title--en {
  margin-bottom: 0;
  line-height: normal;
}
.common__title--jp {
  font-size: 1rem;
  font-weight: 600;
  color: #61c0a5;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .common__title--jp {
    margin-bottom: 6px;
  }
}

.top {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .top {
    padding-top: 20px;
  }
}
.top__content {
  line-height: 1em;
}
.top__mv-container {
  position: relative;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 1rem 0;
  width: 100%;
}
.top__mv-container::before {
  position: absolute;
  content: "";
  background: url("img/media-site-banner.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__mv-container::before {
    background-position: top center;
	background: url("img/media-site-banner-sp.jpg") no-repeat top center;
	background-size:cover;
  }
}
.top__mv-wrapper {
  display: block;
  margin: 72px 12px;
  max-width: 1025px;
  width: 100%;
  padding: 20px 0 ６0px;
  padding: 20px 0 80px;
}
@media screen and (max-width: 767px) {
  .top__mv-wrapper {
    margin: 36px 1rem;
  }
}
.top__mv-container-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .top__mv-container-sp {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
  }
}
.top__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top__badge {
  color: #fff;
  background-color: #ff8a00;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 20px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
.top__badge {
  padding: 5px 20px;
  border-radius: 15px;
}
}
.top__image {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 4px;
}
.top__image-description {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.2;
  padding:0.3em;
  letter-spacing:-0.03em;
  height:46px;
}
.top__text-container {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .top__text-container {
    padding-top: 38px;
  }
	.top__image-description {
		font-size: 1.2rem!important;
		display: -webkit-box;           /* Flexboxベースのレイアウト */
  -webkit-box-orient: vertical;   /* 縦方向に設定 */
  overflow: hidden;               /* オーバーフローを隠す */
  text-overflow: ellipsis;        /* 省略記号を表示する */
  -webkit-line-clamp: 2;  
}
}
.top__pointer-text {
  font: 700 1.6rem "Hiragino Kaku Gothis Pro", sans-serif;
  line-height: 1em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top__pointer-text {
    font-size: 12px;
    text-shadow: 0 0 28px #000;
  }
}
.top__location-container {
  padding-top: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top__location-container {
    display: none;
  }
}
.top__search-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .top__search-container {
    margin-top: 14px;
    padding-bottom: 16px;
  }
}
.top__search-box {
  font-size: 1.4rem;
  width: 406px;
  height: 39px;
  border: 1px solid #bcbcbc;
  border-radius: 6px 0 0 6px;
  border-right: 0;
  padding: 11px 10px;
}
@media screen and (max-width: 767px) {
  .top__search-box {
    width: 281px;
  }
}
.top__search-box input {
  font: 500 1.4rem "Hiragino Kaku Gothis Pro", sans-serif;
}
.top__search-box::-webkit-input-placeholder {
  font-size: 1.4rem;
}
.top__search-box::-moz-placeholder {
  font-size: 1.4rem;
}
.top__search-box:-ms-input-placeholder {
  font-size: 1.4rem;
}
.top__search-box::-ms-input-placeholder {
  font-size: 1.4rem;
}
.top__search-box::placeholder {
  font-size: 1.4rem;
}
.top__finder-icon {
  background-color: #2e5c51;
  width: 55px;
  height: 39px;
  border: 0;
  border-radius: 0 6px 6px 0;
}
.top__location-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background-color: #efefef;
  padding: 10px 0 15px;
  border-radius: 14px 14px 0 0;
}
.top__search-icon {
  width: 16px;
  height: 16px;
  margin-left: 14px;
}
.top__location-title {
  font: 500 1.6rem "ABeeZee", sans-serif;
  color: #575757;
}
.top__content-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  padding: 25px 0;
}
.top__content-wrapper::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.6;
  z-index: -1;
}
.top__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-color: #fff;
  width: 69%;
  border-radius: 2px;
  border: 1px solid #d3d3d3;
  position: relative;
}
.top__button-container::after {
  position: absolute;
  content: "";
  background: url("img/icons/button-next.svg") no-repeat;
  background-size: cover;
  width: 5px;
  height: 9px;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top__button-container--green {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 51px;
  background-color: #2e5c51;
}
.top__button-container--green::after {
  display: none;
}
.top__icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #2e5c51;
  max-width: 53px;
  width: 100%;
  padding-top: 7px;
}
.top__pin-icon {
  width: 19px;
  height: 19px;
}
.top__pin-text {
  color: #fffafb;
  line-height: 2.3em;
}
.top__button-text {
  font: 500 1.2rem "ABeeZee", sans-serif;
  color: #aaa;
  padding-left: 63px;
}
.top__button-text--highlighted {
  font-size: 1.3rem;
  letter-spacing: 1.17px;
  padding-left: 0;
  color: #f8ffa8;
}
.top__button-text--small {
  font-size: 1rem;
}
.top__button-text--white {
  color: #fff;
  padding-left: 0;
}
.top__section-container {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.top__section-container--news {
  padding-top: 19px;
  margin-bottom: 10px;
}
.top__section-container--new {
  padding: 0;
  background-color: #128061;
}
.top__section-container--faq {
  padding: 0;
}
.top__section-container--white {
  background-color: #fff;
}
.top__section-container--featured {
  padding: 16px 15px;
}
.top__section-popular {
  position: relative;
}
.top__section-popular::before {
  position: absolute;
  content: "";
  background: url("img/article-bg.webp") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
.top__section-area {
  position: relative;
  margin-bottom: 30px;
}
.top__section-area::before {
  position: absolute;
  content: "";
  background: url("https://pachislot-info.com/wp-content/themes/swell_child/img/shining-bg.png") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
.top__section-info {
  position: relative;
}
.top__section-info::before {
  position: absolute;
  content: "";
  background: url("img/info-bg.png") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
.top__section-faq {
  position: relative;
}
.top__section-special {
  position: relative;
}
.top__section-special::before {
  position: absolute;
  content: "";
  background: url("img/bg-special.png") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
.top__section-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
.top__section-title-wrap--centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
}
.top__section-title {
  font: 700 1.6rem "Hiragino Kaku Gothis Pro", sans-serif;
  line-height: 1.6rem;
}
.top__section-title--white {
  color: #fff;
}
.top__section-title--faq {
  padding-bottom: 7px;
}
.top__section-title--new {
  color: #f8fdfb;
}
.top__section-title--featured {
  text-align: center;
  margin-bottom: 16px;
}
.top__section-title--special {
  margin-bottom: 16px;
}
.top__category-list-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top__category-list-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px 6px;
    margin-bottom: 4px;
  }
}
.top__list-container {
  font: 500 1.6rem "Hiragino Kaku Gothis Pro", sans-serif;
  background-color: #a1a1a1;
  border-radius: 24px;
  color: #fff;
  padding: 5px 14px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .top__list-container {
    font-size: 16px;
    padding: 4px 12px;
  }
}
.top__list-container--active {
  background-color: #ff8a00;
}
.top__list-container:hover {
  background-color: #ff8a00;
}
.top__banner-image {
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .top__banner-image--owl {
    display: none;
  }
}
.top__banner-image--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .top__banner-image--sp {
    display: block;
    width: 100%;
    height: 79px;
  }
}
.top__banner-image:hover {
  opacity: 0.7;
}
.top__ads-wrapper {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .top__ads-wrapper {
    margin-top: 0;
  }
}
.top__ads-link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .top__ads-link-wrap {
    padding-top: 8px;
  }
}
.top__question-icon {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .top__question-icon {
    width: 17px;
    height: 17px;
  }
}
.top__question-text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2em;
  text-decoration-line: underline;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .top__question-text {
    font-size: 12px;
  }
}
.top__question-text:hover {
  color: #83bca0;
}
.top__section-list {
  display: -webkit-box;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .top__section-list {
    gap: 10px;
    padding-bottom: 17px;
  }
}
.top__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 207px;
  min-height: 46px;
  background-color: #f8fdfb;
  border: 1px solid #61c0a5;
  border-radius: 2px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__list-item {
    width: 80px;
    min-height: 35px;
  }
}
.top__list-item::after {
  position: absolute;
  content: "";
  background-color: #61c0a5;
  border-radius: 2px;
  width: 207px;
  height: 46px;
  z-index: -1;
  top: 5px;
  left: 5px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .top__list-item::after {
    width: 80px;
    height: 35px;
    left: 3px;
  }
}
.top__list-item:hover::after {
  top: 0;
  left: 0;
}
.top__item-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 11px;
}
@media screen and (max-width: 767px) {
  .top__item-text-wrapper {
    padding: 4px 8px;
  }
}
.top__item-title {
  font: 400 1.4rem "Hiragino Kaku Gothis Pro", sans-serif;
  line-height: 1.2em;
  color: #2e5c51;
}
@media screen and (max-width: 767px) {
  .top__item-title {
    font-size: 11px;
  }
}
.top__item-text {
  font: 600 1.6rem "Hiragino Kaku Gothis Pro", sans-serif;
  line-height: 1.2em;
  color: #61c0a5;
}
@media screen and (max-width: 767px) {
  .top__item-text {
    font-size: 12px;
  }
}
.top__new-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 18px;
  max-width: 952px;
    margin: 0 auto;
}
@media screen and (max-width: 952px) {
  .top__new-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.top__news-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .top__news-item-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 8px;
  }
}
.top__news-item-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 468px;
  min-height: 77px;
  border: 1px solid #61c0a5;
  background-color: #f8fdfb;
  border-radius: 2px;
  padding: 5px 5px 7px;
  position: relative;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .top__news-item-container {
    width: 100%;
    min-height: 58px;
    padding: 4px;
  }
  .top__news-item-container:last-child {
    display: none;
  }
}
.top__news-item-container::after {
  content: "";
  position: absolute;
  background: url("img/icons/news-button.svg") no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top__news-item-container:hover {
  opacity: 0.7;
}
.top__news-date-wrapper {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  background: -webkit-gradient(linear, left top, right top, from(#128061), color-stop(23.5%, #327364), color-stop(49.5%, #2e5c51), color-stop(79%, #327364), color-stop(99%, #128061));
  background: linear-gradient(90deg, #128061 0%, #327364 23.5%, #2e5c51 49.5%, #327364 79%, #128061 99%);
  border-radius: 3px;
  top: 0;
  right: -65px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top__news-date-wrapper {
    right: -54px;
    padding: 0 8px;
  }
}
.top__news-date {
  font: italic 1.4rem "ABeeZee", sans-serif;
  color: #fff;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top__news-date {
    font-size: 11px;
    font-style: unset;
  }
}
.top__news-link-text {
  font-size: 1.6rem;
  font-weight: 300;
  text-align: right;
  line-height: 1em;
  text-decoration-line: underline;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .top__news-link-text {
    font-size: 12px;
  }
}
.top__news-link-text:hover {
  color: #128061;
}
.top__news-link-contain {
  text-align: right;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top__news-link-contain {
    margin-bottom: 0;
  }
}
.top__news-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.top__news-image {
  width: 64px;
  height: 66px;
}
@media screen and (max-width: 767px) {
  .top__news-image {
    width: 49px;
    height: 50px;
  }
}
.top__news-text {
  font: 400 1.6rem "Hiragino Kaku Gothis Pro", sans-serif;
  line-height: 1.5em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .top__news-text {
    font-size: 12px;
  }
}
.top__content-container {
  text-align: center;
  padding: 16px 9px;
}
.top__content-container--finder {
  margin-bottom: 20px;
}
.top__content-container--new {
  padding: 8px 15px;
}
.top__content-container--popular {
  padding-bottom: 40px;
}
.top__popular-list {
  padding-top: 0 !important;
}
.top__popular-list .splide__arrow {
  display: none;
}
.top__popular-list .splide__pagination__page {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top__popular-list .splide__pagination__page {
    width: 8px;
    height: 8px;
  }
}
.top__popular-list .splide__pagination {
  gap: 4px;
  bottom: -30px;
}
@media screen and (max-width: 767px) {
  .top__popular-list .splide__pagination {
    bottom: -22px;
  }
}
.top__featured-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 22px 20px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top__featured-list {
    gap: 14px 6px;
  }
}
.top__featured-item {
  width: 31.5%;
}
.top__featured-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.top__featured-image img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.top__featured-image:hover img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.top__featured-ads-image {
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.top__featured-ads-image:hover {
  opacity: 0.7;
}
.top__special-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 952px) {
  .top__special-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.top__special-wrapper:hover {
  opacity: 0.7;
}
.top__special-text-wrapper {
  max-width: 223px;
  width: 100%;
	position:relative;
	height:65px;
}
@media screen and (max-width: 950px) {
  .top__special-container--new {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__special-container--new {
    padding-bottom: 6px;
  }
}
.top__special-image {
  width: 224px;
  height: 138px;
}
@media screen and (max-width: 767px) {
  .top__special-image {
    width: 130px;
    height: 80px;
  }
}
.top__special-text {
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
    line-height: 2em;
    text-align: start;
    max-width: 222px;
    letter-spacing: 0.14em;

    /* 文字を複数行で省略 */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 表示する行数を指定 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .top__special-text {
    font-size: 12px;
    letter-spacing: 0;
    max-width: 100%;
  }
}
.top__special-text--new {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #000;
  line-height: 1.5em;
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .top__special-text--new {
    min-height: unset;
  }
}
.top__special-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
@media screen and (max-width: 952px) {
  .top__special-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__special-date-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  color: #fff;
  padding: 4px 0;
}
.top__special-date-wrap--new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #333;
  text-align:center;
  width: 35%;
  padding: 4px 2px;
  border-radius:8px;
  bottom:0;
  position:absolute;
}
.top__special-date-icon {
  width: 10px;
  height: 10px;
}
.top__special-date-text {
 font-size: 10px;
    text-align: center;
    display: block;
    width: 100%;
}
.top__finder-content-wrapper {
  max-width: 460px;
  width: 100%;
  margin-left: auto;
}
.top__finder-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #128061;
  width: 301px;
  padding: 15px 8px;
  border-radius: 4px 4px 0 0;
}
@media screen and (max-width: 767px) {
  .top__finder-title-wrap {
    width: 193px;
  }
}
.top__finder-title {
  font-size: 2.4rem;
  line-height: 1em;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top__finder-title {
    font-size: 14px;
  }
}
.top__finder-image {
  width: 23px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .top__finder-image {
    width: 15px;
    height: 16px;
  }
}
.top__finder-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 27px 26px;
  gap: 8px;
  border: 1px solid #128061;
  background-color: #fff;
  border-radius: 0 4px 4px;
}
@media screen and (max-width: 767px) {
  .top__finder-content {
    padding: 8px;
  }
}
.top__finder-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 199px;
  min-height: 47px;
  padding: 16px 13px;
  background-color: #f8fdfb;
  border: 1px solid #61c0a5;
  border-radius: 2px;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top__finder-item {
    width: 48%;
    min-height: 43px;
    padding: 14px 14px 14px 12px;
  }
}
.top__finder-item::after {
  position: absolute;
  content: "";
  background: url("img/icons/button-next-green.svg") no-repeat;
  background-size: cover;
  width: 21px;
  height: 21px;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top__finder-item::after {
    width: 20px;
    height: 20px;
  }
}
.top__finder-item:hover::after {
  right: -8px;
}
.top__finder-text {
  font-size: 1.6rem;
  font-weight: 300;
  color: #575757;
}
@media screen and (max-width: 767px) {
  .top__finder-text {
    font-size: 14px;
    line-height: 1em;
  }
}
.top__faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.top__faq-accordion-item.active .top__faq-container {
  border: 0;
  background-color: #f6f6f6;
  color: #2d2f30;
  border-radius: 2px 2px 0 0;
}
.top__faq-accordion-item.active .top__faq-container::after {
  content: url("img/icons/accordion-down.svg");
}
.top__faq-accordion-item.active .top__faq-container--answer {
  display: block;
  color: #000;
  background-color: #f6f6f6;
  border-radius: 0 0 2px 2px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  font: 400 1.4rem "Noto Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .top__faq-accordion-item.active .top__faq-container--answer {
    padding: 8px;
  }
}
.top__faq-accordion-item.active .top__faq-container--answer::after {
  display: none;
}
.top__faq-accordion-item.active .top__faq-container--answer::before {
  display: none;
}
.top__faq-container {
  background-color: #fff;
  border-radius: 2px;
  width: 100%;
  padding: 16px 29px 16px 8px;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  overflow: hidden;
}
.top__faq-container::before {
  content: "";
  background: url("img/icons/stroke-lines.svg");
  position: absolute;
  top: 0;
  width: 100%;
  height: 1px;
}
.top__faq-container::after {
  position: absolute;
  content: url("img/icons/bullet-icon.svg");
  width: 22px;
  height: 22px;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top__faq-container--answer {
  display: none;
}
.top__faq-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.top__faq-q-text {
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25px;
  height: 26px;
  background-color: #2e5c51;
  border-radius: 2px;
}
.top__faq-accordion-text {
  font: 700 1.4rem "Noto Sans", sans-serif;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .top__faq-accordion-text {
    font-size: 12px;
  }
}
.top__faq-accordion-text--answer {
  font: 400 1.4rem "Noto Sans", sans-serif;
  line-height: 2rem;
}
.top__model-list {
  padding-top: 0 !important;
  max-width: 610px;
  width: 100%;
  margin: 0 auto;
}
.top__model-list .swiper {
  width: 100%;
  height: 266px;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .top__model-list .swiper {
    height: 170px;
  }
}
.top__model-list .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top__model-list .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top__model-list .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  bottom: 0;
}
.top__model-list .swiper-pagination-bullet {
  margin: unset !important;
  background: #2e5c51;
  opacity: 0.5;
}
.top__model-list .swiper-pagination-bullet-active {
  background: #2e5c51;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .top__model-list .swiper-slide-active .top__model-container {
    padding: 9px;
    gap: 7px;
  }
}
.top__model-list .swiper-slide-active .top__model-image {
  width: 194px;
  height: 168px;
}
@media screen and (max-width: 767px) {
  .top__model-list .swiper-slide-active .top__model-image {
    width: 124px;
    height: 108px;
  }
}
.top__model-list .swiper-slide-active .top__model-name--jp {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .top__model-list .swiper-slide-active .top__model-name--jp {
    font-size: 14px;
  }
}
.top__model-list .swiper-slide-active .top__model-name--en {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .top__model-list .swiper-slide-active .top__model-name--en {
    font-size: 8px;
  }
}
.top__model-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
  background-color: #fbfbfb;
  padding: 12px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top__model-container {
    padding: 8px;
    gap: 6px;
  }
}
.top__model-image {
  width: 161px;
  height: 140px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top__model-image {
    width: 103px;
    height: 89px;
  }
}
.top__model-name-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  padding: 0 8px;
  text-align: center;
}
.top__model-name {
  color: #2e5c51;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top__model-name--jp {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .top__model-name--jp {
    font-size: 11px;
  }
}
.top__model-name--en {
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .top__model-name--en {
    font-size: 8px;
  }
}
.top__info-title-wrap {
  width: 222px;
  min-height: 55px;
  background-color: #128061;
  padding: 10px 18px;
  border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 767px) {
  .top__info-title-wrap {
    width: 119px;
    min-height: 33px;
    padding: 8px 15px;
  }
}
.top__info-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .top__info-title {
    font-size: 14px;
  }
}
.top__info-link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  background-color: #128061;
  border-radius: 0 4px 4px;
  padding: 20px;
  margin-top: -1px;
}
@media screen and (max-width: 952px) {
  .top__info-link-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .top__info-link-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 4px;
    gap: 2px;
  }
}
.top__info-link {
  width: 32%;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f8fdfb;
  border: 1px solid #61c0a5;
  border-radius: 2px;
  padding: 18px 24px 18px 4px;
  position: relative;
}
@media screen and (max-width: 440px) {
  .top__info-link {
    width: 49% !important;
  }
}
@media screen and (max-width: 767px) {
  .top__info-link {
    width: 33%;
    min-height: 43px;
    padding: 8px 4px;
  }
}
.top__info-link::after {
  position: absolute;
  content: "";
  background: url("img/icons/arrow-green-next.svg") no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 50%;
  right: -4px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.top__info-link:hover::after {
  right: -8px;
}
.top__info-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1em;
  color: #575757;
}
@media screen and (max-width: 767px) {
  .top__info-text {
    font-size: 10px;
  }
}
.top__image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

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

.splide {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .splide {
    padding-top: 14px;
  }
}
.splide__arrow {
  width: 52px;
  height: 52px;
  border: 3.5px solid #fff;
  background-color: #ff8a00;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .splide__arrow {
    width: 44px;
    height: 44px;
  }
}
.splide__arrow svg {
  display: none;
}
.splide__arrow--prev {
  left: -25px;
}
@media screen and (max-width: 767px) {
  .splide__arrow--prev {
    left: 40px;
  }
}
.splide__arrow--prev::after {
  position: absolute;
  content: "";
  background: url("img/icons/arrow-left.svg") no-repeat;
  width: 12px;
  height: 30px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.splide__arrow--next {
  right: -25px;
}
@media screen and (max-width: 767px) {
  .splide__arrow--next {
    right: 40px;
  }
}
.splide__arrow--next::after {
  position: absolute;
  content: "";
  background: url("img/icons/arrow-right.svg") no-repeat;
  width: 22px;
  height: 30px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.splide__pagination {
  bottom: -55px;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .splide__pagination {
    bottom: -35px;
  }
}
.splide__pagination__page {
  background: transparent;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 2px solid #ff8a00;
}
.splide__pagination__page.is-active {
  background: #ff8a00;
  -webkit-transform: none;
          transform: none;
  opacity: 1;
  width: 21px;
  border-radius: 4px;
}
/* フォーム全体のスタイル */
.wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 10px 30px; 
    border: none;
    border-radius: 5px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1), -5px -5px 15px rgba(255, 255, 255, 0.5);
}
.wpcf7-spinner{
	display:none!important
}
/* ラベルのスタイル */
.wpcf7-form label {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* テキスト入力・メール入力のスタイル */
.form__input, .form__textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    background-color: #f3f4f6;
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form__input:focus, .form__textarea:focus {
    background-color: #e8eaf0;
    outline: none;
    box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.2), inset -2px -2px 6px rgba(255, 255, 255, 0.5);
}

/* テキストエリアの高さ固定 */
.form__textarea {
    height: 140px;
    resize: vertical;
}

/* 送信ボタンのスタイル */
.form__submit-wrapper {
    text-align: center;
}

.form__submit {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    width: 45%;
    background-color: orange;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2), -5px -5px 15px rgba(255, 255, 255, 0.3);
}

.form__submit:hover {
    background-color: #0088cc;
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.3), -3px -3px 12px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.faq__list {
  margin-top: 20px;
}

.faq__item {
  margin-bottom: 20px;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.4rem;
  line-height: 1.5;
}

.faq__question, .faq__answer {
  display: flex;
  align-items: flex-start;
  margin: 0;
}

.faq__label {
  font-weight: bold;
  color: #f39c12; /* オレンジ色 */
  margin-right: 10px;
  font-size: 18px;
}

.faq__question {
  font-weight: bold;
}

.faq__answer {
  color: #333;
  margin-top: 10px;
}

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