@charset "UTF-8";
/* CSS Document */

html {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  line-height: 1.7;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
}

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

a {
  transition: 0.1s;
}

a:hover {
  transition: 0.1s;
}


.row {
  padding: 40px 15px;
}

@media (min-width: 768px) {
  .row {
    padding: 70px 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}


.pc-only {
  display: none;
}

.tab-only {
  display: none;
}

@media (min-width: 450px) {
  .tab-only {
    display: block;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }

  .pc-only {
    display: block;
  }
}


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


/* ------- header ------- */

header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  height: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-sp {
  height: 50px;
  display: flex;
  align-items: center;
}

.header-logo {
  width: 95px;
  height: auto;
  margin-left: 10px;
}

.header-logo img {
  width: 100%;
  height: auto;
}

.header-logo-hato {
  width: 36px;
  height: 36px;
  margin-left: 10px;
  margin-right: auto;
}

.header-logo-hato img {
  width: 100%;
  height: auto;
}

.header-login-sp {
  margin-right: 7px;
  margin-left: 5px;
}

.header-login-sp a {
  display: flex;
  align-items: center;
  text-align: center;
  background-color: #c82828;
  color: #fff;
  border-radius: 5px;
  height: 36px;
  padding: 0 8px;
  line-height: 1;
  font-size: 1.2rem;
}

.header-login-sp a:hover {
  opacity: 0.8;
}

.header-join-sp {
  margin-right: 7px;
}

.header-join-sp a {
  display: flex;
  align-items: center;
  text-align: center;
  background-color: #009245;
  color: #fff;
  border-radius: 5px;
  height: 36px;
  padding: 0 7px;
  line-height: 1;
  font-size: 1.2rem;
}

.header-join-sp a:hover {
  opacity: 0.8;
}

.btn-toggle {
  width: 36px;
  height: 36px;
  z-index: 10;
  border: 1px solid #999;
  border-radius: 5px;
  margin-right: 10px;
}

.btn-line {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 22px;
  height: 2px;
  background-color: #666;
  transition: .2s;
}

.btn-line::before,
.btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
  transition: .5s;
}

.btn-line::before {
  transform: translateY(-7px);
}

.btn-line::after {
  transform: translateY(7px);
}

.btn-line.open {
  background-color: transparent;
  /* 真ん中の線を透明に */
}

.btn-line.open::before,
.btn-line.open::after {
  content: "";
  /* 上下の線の色を変える */
  transition: .2s;
}

.btn-line.open::before {
  transform: rotate(45deg);
  /* 上の線を傾ける */
}

.btn-line.open::after {
  transform: rotate(-45deg);
  /* 下の線を傾ける */
}

.gnav-item {
  overflow: auto;
  position: fixed;
  right: -100%;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transition: .3s;
  border-top: 1px dotted #aaa;
}

.gnav-item.open {
  right: 0;
}

.gnav-item li a {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 10px 15px;
  border-bottom: 1px dotted #aaa;
  line-height: 1.2;
}

.gnav-item li a:hover {
  background-color: #fbefef;
}

.gnav-item a::before {
  font-family: "Material Symbols Outlined";
  font-size: 2rem;
  margin-right: 5px;
}

.gnav-home a::before {
  content: "\e88a";
}

.gnav-his a::before {
  content: "\e889";
}

.gnav-fav a::before {
  content: "\e87d";
}

.gnav-login a::before {
  content: "\ea77";
}

.gnav-join a::before {
  content: "\e7f0";
}

.gnav-out a::before {
  content: "\e9ba";
}

@media screen and (min-width: 768px) {
  header {
    height: 72px;
  }

  .header-sp {
    flex: 1;
  }

  .header-logo {
    width: 130px;
    height: auto;
    margin-left: 15px;
  }

  .header-logo a {
    width: 100%;
  }

  .header-logo-hato {
    width: 50px;
    height: 50px;
    margin-left: 30px;
  }

  .header-login-sp {
    display: none;
  }
  
  .header-join-sp {
    display: none;
  }

  .btn-toggle {
    display: none;
  }

  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .gnav {
    display: block;
  }

  .gnav-item {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: row;
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 72px;
    border-top: none;
  }

  .gnav-item li a {
    height: 72px;
    border-bottom: none;
    display: block;
    text-align: center;
  }

  .gnav-item a::before {
    display: block;
  }
}


/* ------- main ------- */

main {
  margin-top: 40px;
}

main.sub-page {
  margin-top: 80px;
}

@media screen and (min-width: 768px) {
  main {
    margin-top: 70px;
  }
  
  main.sub-page {
    margin-top: 150px;
  }
}


/* ------- footer ------- */

footer {
  background-color: #efefef;
  font-size: 1.4rem;
}

footer .row {
  padding: 15px;
}

footer .row > div {
  margin-bottom: 20px;
}

footer .row > div:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  footer .row {
    padding: 30px;
    display: flex;
    justify-content: space-between;
  }

  footer .row > div {
    width: 23%;
    margin-bottom: 0;
    border-bottom: none;
  }

  footer .row > div:last-of-type {
    border-right: none;
    padding-right: 0;
  }
}


.footer-chara-cont {
  display: flex;
  justify-content: space-evenly;
  align-items: end;
}

.footer-chara01 {
  width: 160px;
}

.footer-chara02 {
  width: 100px;
}

@media screen and (min-width: 768px) {
  .footer-chara {
    width: 90%;
    margin-top: -50px;
  }
}


.footer-nav {
  background-color: #f5f5f5;
  padding: 10px 20px;
  border-radius: 5px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
}

.footer-nav-list li {
  margin-right: 10px;
}

.footer-nav-list a::before {
  content: "\e5df";
  font-family: "Material Symbols Outlined";
  vertical-align: middle;
}

.footer-nav a:hover {
  color: #999;
}

@media screen and (min-width: 768px) {
  .footer-nav-list {
    display: block;
  }
}


.footer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-info {
  text-align: center;
  font-weight: bold;
}

.footer-logo-chara {
  width: 25%;
  max-width: 120px;
  margin-right: 5%;
}

.footer-logo {
  width: 40%;
  max-width: 180px;
}

@media screen and (min-width: 768px) {
  .footer-logo-cont {
    text-align: center;
  }

  .footer-logo-chara {
    width: 35%;
    max-width: 120px;
  }

  .footer-logo {
    width: 50%;
  }
}


.copyright {
  text-align: center;
  background-color: #333;
  color: #fff;
  padding: 3px 3px 7px;
}




/*---------------------------------------*/
/*----------------- TOP -----------------*/
/*---------------------------------------*/

.top-contents {
  padding: 15px 10px 0;
}

@media screen and (min-width: 768px) {
  .top-contents {
    padding: 20px 20px 0;
  }
}


.top-h1-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/chara-tenpo.png),url(../images/chara-up.png);
  background-position: left center, right center;
  background-size: auto 80px;
  background-repeat: no-repeat;
  max-width: 400px;
  height: 120px;
  margin: 0 auto;
}

.top-h1-wrap h1 {
  text-align: center;
  font-size: 1.5rem;
}

.top-h1-wrap h1 span {
  font-size: 2rem;
}

.top-h1-sub {
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  font-feature-settings: "palt";
  background-color: #c82828;
  padding: 15px 10px;
  margin: 0 -10px;
}

@media screen and (min-width: 768px) {
  .top-h1-wrap {
    background-size: auto 140px;
    height: 160px;
    max-width: 600px;
  }

  .top-h1-wrap h1 {
    font-size: 2rem;
  }

  .top-h1-wrap h1 span {
    font-size: 3rem;
  }

  .top-h1-sub {
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    font-feature-settings: normal;
    background-color: #c82828;
    margin: 0 -20px;
  }
}


/* ---------- top-h1-wrap　アニメーション ---------- */

/* アニメーションの定義 */
@keyframes slideUpWithPause {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(0); /* アニメーションの終了状態を維持 */
  }
}

/* H2とPに異なる遅延を設定 */
.top-h1-wrap {
  animation: slideUpWithPause 4s ease-out infinite; /* 3秒のアニメーション（間隔込み） */
  opacity: 0;
}


/* ----- top-sale ----- */

.top-sale {
  background-color: #faf5ee;
  margin-top: 20px;
  margin-left: -10px;
  margin-right: -10px;
}

.top-sale .row {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 15px 75px;
  text-align: center;
}

.top .top-sale h2 {
  z-index: 100;
  font-size: 2.4rem;
  line-height: 1.5;
  border: 3px solid #c82828;
  color: #c82828;
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.top-sale-sub {
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.top-contact-sale {
  width: 100%;
  position: relative;
}

.top-contact-sale a {
  display: block;
  width: 100%;
  padding: 15px;
  margin: 0 auto;
  text-align: center;
  background-color: #c82828;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
}

.top-contact-sale a:hover {
  background-color: #de7e7e;
}

.top-contact-sale::after {
  content: '';
  display: block;
  background-image: url(../images/chara-restaurant.png);
  background-size: contain;
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: -50px;
  right: -10px;
}

.top-contact-sale::before {
  content: '';
  display: block;
  background-image: url(../images/top-content-sale-free.svg);
  background-size: contain;
  width: 80px;
  height: 56px;
  position: absolute;
  bottom: -40px;
  left: 0;
  transform: rotate(-10deg);
}

@media screen and (min-width: 768px) {
  .top-sale {
    margin-left: -20px;
    margin-right: -20px;
  }

  .top-sale .row {
    max-width: 850px;
    padding: 65px 15px 75px;
  }

  .top .top-sale h2 {
    font-size: 2.8rem;
    padding: 5px 20px;
    margin-bottom: 15px;
  }

  .top-sale-sub {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .top-contact-sale a {
    display: block;
    max-width: 400px;
    padding: 20px 15px;
    font-size: 1.8rem;
  }

  .top-contact-sale::after {
    width: 182px;
    height: 180px;
    position: absolute;
    bottom: -50px;
    right: 0;
  }

  .top-contact-sale::before {
    width: 130px;
    height: 91px;
    bottom: 5px;
    left: 50px;
    transform: rotate(-15deg);
  }
}


.top h2 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
  font-feature-settings: "palt";
  margin-bottom: 15px;
  text-align: center;
}

.top h2 .material-symbols-outlined {
  color: #c82828;
  vertical-align: middle;
  font-size: 3rem;
  font-weight: bold;
  margin-right: 3px;
}

@media screen and (min-width: 768px) {
  .top h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .top h2 .material-symbols-outlined {
    font-size: 4rem;
  }
}



/* ----- top-search ----- */

.top-search .row {
  max-width: 480px;
  margin: 0 auto;
}

.top-search-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top-search-item {
  width: 48%;
  max-width: 220px;
}

.top-search-btn {
  display: block;
  text-align: center;
  color: #c82828;
  line-height: 1;
  font-weight: bold;
  padding: 15px 5px;
  background-color: #fff;
  border: 5px solid #c82828;
  border-radius: 10px;
  position: relative;
}

.top-search-btn::after {
  content: "";
  background-image: url(../images/tap.svg);
  background-size: contain;
  width: 38.5px;
  height: 50px;
  position: absolute;
  bottom: -30px;
  right: -10px;
}

.top-search-btn img {
  width: 50%;
  max-width: 90px;
  height: auto;
  margin-bottom: 10px;
}

.top-search-btn:hover {
  background-color: #fbefef;
}

@media screen and (min-width: 768px) {

  .top-search .row {
    max-width: 850px;
  }

  .top-search-item {
    max-width: 350px;
  }

  .top-search-btn::after {
    content: "";
    background-image: url(../images/click.svg);
    background-size: contain;
    width: 53.9px;
    height: 70px;
    position: absolute;
    bottom: -40px;
    right: -10px;
  }
}


/*------------　top-img-loop　-----------*/

.top-img-loop {
  display: flex;
  overflow: hidden;
  margin-top: 30px;
}

.top-img-loop-box {
  display: flex;
  animation: loop-list 25s linear infinite;
}

.top-img-loop-box li {
  width: calc(100vw / 2);
}

.top-img-loop-box img {
  width: 100%;
}

@keyframes loop-list {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (min-width: 768px) {
  .top-img-loop-box li {
    width: calc(100vw / 4);
  }
}


/*------------　top-btn　-----------*/

.top-btn {
  padding: 50px 0;
  overflow: hidden;
}

.top-btn-inner {
  padding: 0 20px;
}

.top-btn-flex > div {
  margin-bottom: 30px;
}

.top-btn-flex > div:last-child {
  margin-bottom: 0;
}

.top-btn-img {
  overflow: hidden;
  border: 1px solid #bbb;
}

.top-btn-img img {
  transition: 0.3s;
  vertical-align: top;
  width: 100%;
  height: auto;
}

.top-btn-flex a:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}

.top-btn-img-wrap {
  position: relative;
}

.top-btn-name {
  background-color: rgba(255, 255, 255, 0.9);
  width: 180px;
  padding: 15px;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.top-btn-name span {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 7px;
}

.top-btn-flex a:hover .top-btn-name {
  color: #c82828;
  transition: 0.3s;
  font-size: 2rem;
}

@media (min-width: 450px) {
  .top-btn-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .top-btn-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .top-btn-flex > div {
    width: 47%;
  }
}

@media (min-width: 768px) {
  .top-btn {
    padding: 100px 0;
  }

  .top-btn-inner {
    padding: 0 30px;
  }

  .top-btn-flex > div {
    width: 29%;
    margin-bottom: 0;
  }

  .top-btn-name {
    font-size: 2rem;
  }

  .top-btn-name span {
    font-size: 1.5rem;
  }
}


.top-btn-flex [data-aos="slide-btn"] {
  opacity: 0;
  transition-property: transform, opacity;
}

.top-btn-flex [data-aos="slide-btn"].aos-animate {
  opacity: 1;
}

.top-btn-flex [data-aos="slide-btn"]:nth-of-type(odd) {
  transform: translateX(-150px);
}

.top-btn-flex [data-aos="slide-btn"]:nth-of-type(even) {
  transform: translateX(150px);
}

.top-btn-flex [data-aos="slide-btn"].aos-animate {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .top-btn-flex [data-aos="slide-btn"]:nth-of-type(odd) {
      transform: translateY(150px);
  }

  .top-btn-flex [data-aos="slide-btn"]:nth-of-type(even) {
    transform: translateY(150px);
}

  .top-btn-flex [data-aos="slide-btn"].aos-animate {
      transform: translateY(0);
  }
}


/*------------　top-group top-relation　-----------*/

.top-group .h2-center,
.top-relation .h2-center {
  text-align: center;
}

.top-group h2,
.top-relation h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: bold;
}

.top-group h2:before,
.top-relation h2:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #444;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .top-group h2,
  .top-relation h2 {
    margin-bottom: 90px;
    font-size: 4.5rem;
  }

  .top-group h2:before,
  .top-relation h2:before {
    bottom: -25px;
    width: 80px;
  }
}


/*------------　top-group　-----------*/

.top-group {
  overflow: hidden;
  background-color: #faf5ee;
}

.top-group-content {
  background-image: url(../images/group-bg.jpg);
  background-position: center center;
  background-size: cover;
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 20px 50px;
  width: 100%;
}

.top-group h2:before {
  background-color: rgba(255, 255, 255, 0.9);
}

.top-group-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-group-btn a {
  width: 100%;
  text-align: center;
  color: #333;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.9);
}

.top-group-btn a::after {
  content:"\e5c8";
  font-family:"Material Symbols Outlined";
  margin-left: 1rem;
}

.top-group-btn a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .top-group-content {
    padding: 80px 30px 90px;
  }

  .top-group-inner {
		max-width: 1200px;
		margin: 0	auto;
  }

  .top-group-btn a {
    max-width: 500px;
  }
}

.top-group [data-aos="slide-btn"] {
  opacity: 0;
  transition-property: transform, opacity;
}

.top-group [data-aos="slide-btn"].aos-animate {
  opacity: 1;
}


/*------------　top-relation　-----------*/

.top-relation {
  overflow: hidden;
  background-color: #faf5ee;
}

.top-relation-content {
  background-image: url(../images/relation-bg.jpg);
  background-position: center center;
  background-size: cover;
  padding: 40px 20px 50px;
  width: 100%;
}

.top-relation-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-relation-btn a {
  width: 100%;
  text-align: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.9);
}

.top-relation-btn a::after {
  content:"\e5c8";
  font-family:"Material Symbols Outlined";
  margin-left: 1rem;
}

.top-relation-btn a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid #fff;
  color: #fff;
}

@media (min-width: 768px) {
  .top-relation-content {
    padding: 80px 30px 90px;
  }

  .top-relation-inner {
		max-width: 1200px;
		margin: 0	auto;
  }

  .top-relation-btn a {
    max-width: 500px;
  }
}


.top-relation [data-aos="slide-btn"] {
  opacity: 0;
  transition-property: transform, opacity;
}

.top-relation [data-aos="slide-btn"].aos-animate {
  opacity: 1;
}


/*------------　top-btn-link　-----------*/

.top-btn-link {
  background-color: #fff;
  overflow: hidden;
}

.top-btn-link-inner {
	padding: 50px 20px 0;
}

.top-btn-link-flex a {
	display: flex;
	margin-bottom: 30px;
	border: 1px solid #ddd;
}

.top-btn-link-flex a:last-of-type {
	margin-bottom: 0;
}

.top-btn-link-img {
	overflow: hidden;
	width: 130px;
	height: 130px;
}

.top-btn-link-img img {
	transition: 0.3s;
	vertical-align: top;
	width: 100%;
	height: auto;
}

.top-btn-link-flex a:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}

.top-btn-link-text {
	color: #333;
  font-size: 1.4rem;
	line-height: 1.4;
	flex: 1;
	padding-right: 10px;
	padding-left: 10px;
	background-color: #fff;
}

.top-btn-link-flex a:hover .top-btn-link-text {
	background-color: #faf8ff;
}

.top-btn-link-text p:first-child {
	margin-top: 10px;
	margin-bottom: 10px;
	font-weight: bold;
  font-size: 1.6rem;
}

@media (min-width: 768px) {
	
	.top-btn-link-inner {
		padding: 90px 30px 0;
		max-width: 1260px;
		margin: 0	auto;
	}

	.top-btn-link-flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.top-btn-link-flex a {
		width: 48%;
	}

	.top-btn-link-text p:first-child {
		font-size: 1.6rem;
	}

	.top-btn-link-img {
		width: 140px;
		height: 140px;
	}
}

@media (min-width: 960px) {
  .top-btn-link-flex a {
		width: 32%;
		margin-bottom: 0;
	}
}


.top-btn-link-flex [data-aos="slide-btn"] {
  opacity: 0;
  transition-property: transform, opacity;
}

.top-btn-link-flex [data-aos="slide-btn"].aos-animate {
  opacity: 1;
}

.top-btn-link-flex [data-aos="slide-btn"]:nth-of-type(odd) {
  transform: translateX(150px);
}

.top-btn-link-flex [data-aos="slide-btn"]:nth-of-type(even) {
  transform: translateX(-150px);
}

.top-btn-link-flex [data-aos="slide-btn"].aos-animate {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .top-btn-link-flex [data-aos="slide-btn"]:nth-of-type(odd) {
      transform: translateY(150px);
  }

  .top-btn-link-flex [data-aos="slide-btn"]:nth-of-type(even) {
    transform: translateY(150px);
  }

  .top-btn-link-flex [data-aos="slide-btn"].aos-animate {
      transform: translateY(0);
  }
}


/*---------------　top-sns--------------*/

.top-sns {
  padding: 50px 20px 0;
  text-align: center;
  background-color: #fff;
  line-height: 1.4;
  overflow: hidden;
}

.top-sns a:hover {
  opacity: 0.8;
}

.top-sns-inner {
  margin: 0 auto;
  padding: 10px;
  border: 8px solid #c21500;
  border-image: linear-gradient(135deg, #427eff 0%, #f13f79 70%);
  border-image-slice: 1;
}

.top-sns p:first-child {
  margin-bottom: 10px;
}

.top-sns img {
  width: 60px;
  height: auto;
  vertical-align: middle;
}

@media (min-width: 768px) {

  .top-sns {
    padding: 90px 30px 0;
  }

  .top-sns-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    padding: 20px;
  }

  .top-sns a {
    display: inline-block;
    width: 500px;
  }

  .top-sns p:first-child {
    margin-right: 30px;
  }
}


.top-sns [data-aos="slide-btn"] {
  opacity: 0;
  transition-property: transform, opacity;
}

.top-sns [data-aos="slide-btn"].aos-animate {
  opacity: 1;
}

.top-sns [data-aos="slide-btn"] {
  transform: translateX(-150px);
}

.top-sns [data-aos="slide-btn"].aos-animate {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .top-sns [data-aos="slide-btn"] {
      transform: translateY(150px);
  }

  .top-sns [data-aos="slide-btn"].aos-animate {
      transform: translateY(0);
  }
}


/* ----- top-bottom ----- */

.top-bottom {
  background: url(../images/top-contents-bg.png) center bottom repeat-x;

}


/* ----- トップページ　追加部分 ----- */
/* ------ top-text-content ------- */

.top-text-content {
  font-size: 1.4rem;
  overflow: hidden;
}

.top-text-content .text-bold {
  font-weight: bold;
}

.top-text-content .text-attention {
  background-color: #ff5;
  color: #f00;
}

.top-text-content h2 {
  font-size: 2rem;
  color: #009245;
}

.top-text-content p.top-text-content-h2-sub {
  margin-bottom: 20px;
  font-weight: bold;
  background-color: #ecfae6;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 2px 2px 3px #CCC;
}

.top-text-content p {
  margin-bottom: 10px;
}

.top-text-content p.mb-0 {
  margin-bottom: 0;
}

.top-text-content section {
  margin-bottom: 25px;
}

.top-text-content h3 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #c82828;
  border-left: 5px solid #c82828;
  padding-left: 5px;
}

.top-text-content section:last-of-type {
  margin-bottom: 0;
}

.top-text-content ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .top-text-content {
    font-size: 1.6rem;
  }
  
  .top-text-content h2 {
    font-size: 3rem;
  }

  .top-text-content p.top-text-content-h2-sub {
    font-size: 1.7rem;
    margin-bottom: 40px;
    padding: 30px 40px;
  }

  .top-text-content p {
    margin-bottom: 20px;
  }
  
  .top-text-content section {
    margin-bottom: 40px;
  }

  .top-text-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    padding-left: 5px;
  }

  .top-text-content ul {
    margin-left: 25px;
    margin-bottom: 25px;
  }
}

/* -- top-text-content-reason -- */

.top-text-content-reason {
  background-color: #faf5ee;
}

.top-text-content-reason-text {
  background-color: #fff;
  border: 3px solid #ee9911;
  padding: 10px 15px;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .top-text-content-reason-text {
    padding: 25px 40px;
  }
}

/* -- top-text-content-area -- */

.top-text-content-area {
  background-color: #faf5ee;
}

.top-text-content-area-map-wrap {
  background-color: #fff;
  padding: 15px 15px 10px;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 3px solid #ee9911;
}

.top-text-content-area-map {
  margin-bottom: 10px;
}

@media (min-width: 960px) {
  .top-text-content-area-map-wrap {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    margin-bottom: 30px;
  }

  .top-text-content-area-map {
    width: 57%;
    margin-bottom: 0;
  }

  .top-text-content-area-map-text {
    width: 40%;
  }
}


/* -- top-text-content-flow -- */

.top-text-content-flow-list-wrap {
  background-color: #faf5ee;
  padding: 15px;
  border-radius: 10px;
  border: 3px solid #ee9911;
  margin-bottom: 15px;
}

.top-text-content-flow-list {
  margin-left: 30px;
}

.top-text-content-flow-list li {
  counter-increment: cnt;
	position: relative;
}

.top-text-content-flow-list li::before {
	content: "(" counter(cnt) ")";
	display: inline-block;
	margin-left: -3.5em; /* サイトに合せて調整 */
	width: 3em; /* サイトに合せて調整 */
	text-align: right;
	position: absolute;
	top: 0;
	left: 0;
}

@media (min-width: 768px) {
  .top-text-content-flow-list-wrap {
    padding: 30px;
    margin-bottom: 30px;
  }

  .top-text-content-flow-list {
    column-count: 2;
  }

  .top-text-content-flow-list li {
    margin-bottom: 5px;
    padding-right: 50px;
  }
}

/* -- top-text-content-fund -- */

.top-text-content-fund {
  background-color: #faf5ee;
}

.top-text-content-fund dl {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  border: 3px solid #ee9911;
  margin-bottom: 15px;
  margin-top: 20px;
}

.top-text-content-fund dt {
  width: 30%;
  border-bottom: 1px solid #ccc;
  padding: 5px;
}

.top-text-content-fund dd {
  width: 70%;
  border-bottom: 1px solid #ccc;
  padding: 5px;
}

@media (min-width: 768px) {
  .top-text-content-fund dl {
    width: 50%;
    padding: 30px;
    margin-bottom: 25px;
  }

  .top-text-content-fund dt {
    padding: 8px;
  }
  
  .top-text-content-fund dd {
    padding: 8px;
  }
}



.top-text-content [data-aos="slide-btn"] {
  opacity: 0;
  transition-property: transform, opacity;
}

.top-text-content [data-aos="slide-btn"].aos-animate {
  opacity: 1;
}

.top-text-content-anim-l[data-aos="slide-btn"] {
  transform: translateX(-150px);
}

.top-text-content-anim-r[data-aos="slide-btn"] {
  transform: translateX(150px);
}

.top-text-content [data-aos="slide-btn"].aos-animate {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .top-text-content-anim-l[data-aos="slide-btn"] {
      transform: translateY(150px);
  }

  .top-text-content-anim-r[data-aos="slide-btn"] {
    transform: translateY(150px);
}

  .top-text-content [data-aos="slide-btn"].aos-animate {
      transform: translateY(0);
  }
}




/*---------------------------------------*/
/*------------- sub-page 共通 ------------*/
/*---------------------------------------*/

.sub-h1-wrap {
  background-color: #c82828;
  padding: 7px;
  margin-bottom: 40px;
  text-align: center;
}
.sub-h1-wrap h1 {
  display: inline-block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.sub-h1-wrap h1::before {
  content: '';
  display: block;
  background-image: url(../images/chara-restaurant.png);
  background-size: contain;
  width: 76px;
  height: 76px;
  position: absolute;
  top: -25px;
  left: -90px;
}

.sub-h1-wrap h1::after {
  content: '';
  display: block;
  background-image: url(../images/chara-up.png);
  background-size: contain;
  width: 75px;
  height: 75px;
  position: absolute;
  top: -25px;
  right: -100px;
}

@media screen and (min-width: 768px) {
  .sub-h1-wrap {
    padding: 10px;
    margin-bottom: 70px;
  }
  
  .sub-h1-wrap h1 {
    font-size: 2.4rem;
  }

  .sub-h1-wrap h1::before {
    width: 130px;
    height: 130px;
    top: -65px;
    left: -220px;
  }
  
  .sub-h1-wrap h1::after {
    width: 125px;
    height: 125px;
    top: -60px;
    right: -230px;
  }
}




/*---------------------------------------*/
/*------------- search_list -------------*/
/*---------------------------------------*/


.search-list-inner {
  padding: 0 15px;
}

@media screen and (min-width: 768px) {
  .search-list-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
  }

  .search-item-wrap {
    flex: 1;
    margin-right: 50px;
  }

  .side-bar {
    width: 285px;
    background-color: #999;
  }
}


.search-item-head-nav {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  margin-bottom: 10px;
}

/* .search-item-head-map a {
  display: block;
  padding: 5px 10px;
  background-color: #c82828;
  font-size: 1.4rem;
  color: #fff;
  border-radius: 5px;
}

.search-item-head-map a:hover {
  opacity: 0.8;
}

.search-item-head-map .material-symbols-outlined {
  color: #fff;
  vertical-align: middle;
  font-size: 2rem;
  margin-right: 3px;
} */

.search-item-sort {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1;
}

.search-item-sort ul {
  display: flex;
  justify-content: space-evenly;
}

.search-item-sort li {
  border-right: 1px solid #ccc;
  padding: 0 7px;
}

.search-item-sort li:last-child {
  border-right: none;
  padding-right: 0;
}

@media screen and (min-width: 768px) {
  .search-item-head-nav {
    margin-bottom: 15px;
  }
  
  .search-item-head-map a {
    padding: 10px 50px;
    font-size: 1.5rem;
  }

  .search-item-head-map .material-symbols-outlined {
    font-size: 2.5rem;
  }
  
  .search-item-sort {
    font-size: 1.4rem;
  }

  .search-item-sort li {
    padding: 0 10px;
  }
}


.search-item {
  border-top: 4px solid #c82828;
  padding: 15px 15px 20px;
  margin: 0 -15px;
}

.search-item:last-of-type {
  border-bottom: 4px solid #c82828;
  margin-bottom: 20px;
}

.search-item h2 {
  font-weight: bold;
  border-bottom: 1px solid #aaa;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.search-item-cont {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.search-item-img {
  width: 35%;
}

.search-item-info {
  width: 62%;
}

.search-item-info dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 1.4;
}

.search-item-info dt {
  width: 30%;
  margin-bottom: 5px;
  border-bottom: 1px dotted #ccc;
}

.search-item-info dd {
  width: 70%;
  padding-left: 5px;
  margin-bottom: 5px;
  border-bottom: 1px dotted #ccc;
}

.search-item-info dt:last-of-type,
.search-item-info dd:last-of-type {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .search-item {
    padding: 30px 20px 40px;
    margin: 0;
  }

  .search-item:last-of-type {
    margin-bottom: 40px;
  }

  .search-item h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }

  .search-item-cont {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }

  .search-item-info dt {
    margin-bottom: 7px;
    padding-bottom: 7px;
  }
  
  .search-item-info dd {
    margin-bottom: 7px;
    padding-bottom: 7px;
  }
}


.search-item-btn {
  display: flex;
  justify-content: space-between;
}

.search-item-btn li {
  width: 48%;
}

.search-item-btn a {
  display: block;
  background-color: #ee9911;
  padding: 7px 5px;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
  border-radius: 5px;
}

.search-item-btn a:hover {
  opacity: 0.8;
}

.search-item-btn .material-symbols-outlined {
  color: #fff;
  vertical-align: middle;
  font-size: 2rem;
  margin-right: 3px;
}

a.search-item-btn-fav {
  background-color: #66bb33;
}

a:hover.search-item-btn-fav {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .search-item-btn a {
    padding: 10px;
    font-size: 1.5rem;
  }

  .search-item-btn .material-symbols-outlined {
    font-size: 2.5rem;
  }
}


.pager ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pager li {
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  border: 1px solid #333;
  margin-right: 10px;
}


.search-item-no-item {
  text-align: center;
  font-size: 1.4rem;
  margin: 60px 0;
}

@media screen and (min-width: 768px) {
  .search-item-no-item {
    font-size: 1.6rem;
    margin: 120px 0;
  }
}


/* ----- side-bar ----- */

.search-modal-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 10px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
}

.search-modal-btn button {
  background-color: #c82828;
  border-radius: 5px;
  padding: 7px 5px;
  width: 50%;
  color: #fff;
  font-size: 1.4rem;
}

.search-modal-btn button:hover {
  opacity: 0.8;
}

.close-box {
  display: inline-block;
  padding: 4px 5px 6px;
  background-color: #333;
  border-radius: 3px;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 75px;
  right: 20px;
}

.modal-box {
  padding: 70px 15px 15px;
  background: rgba(0,0,0,0.7);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
}

.modal-box.is-open {
  display: block;
}


@media screen and (min-width: 768px) {
  .search-modal-btn {
    display: none;
  }
  
  .close-box {
    display: none;
  }

  .modal-box {
    display: block;
    position: relative;
    background: none;
    padding: 0;
  }
}


.side-bar {
  background-color: #f4f4f4;
  padding: 30px 15px 30px;
  font-size: 1.4rem;
  border-radius: 5px;
  box-shadow: 0 2px 3px #ccc;
}

.side-bar dt {
  padding: 3px 10px;
}

.side-bar dd {
  padding: 10px;
  margin-bottom: 10px;
  background-color: #fff;
}

.side-bar-select select {
  width: 100%;
  padding: 3px 10px;
  border: 2px solid #66bb33;
  border-radius: 3px;
  cursor: pointer;
}

.side-bar-select-cost {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.side-bar-select-cost select {
  width: 42%;
}

.side-bar-select select:focus {
  outline: 1px solid #66bb33;
}


.side-bar-select select::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  right: 10px;
  top: 40%;
  border-bottom: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg) translateY(-30%);
}



/* ラジオボタンのチェックボックススタイルを変更 */
.side-bar-radio input[type="radio"] {
  -webkit-appearance: none; /* Safari/Chrome用 */
  -moz-appearance: none; /* Firefox用 */
  appearance: none;
  width: 16px; /* チェックボックスの幅 */
  height: 16px; /* チェックボックスの高さ */
  border: 1px solid #666; /* チェックボックスの外枠の色 */
  border-radius: 50%; /* チェックボックスの角を丸める */
  outline: none; /* フォーカス時の外側の枠線を非表示に */
  vertical-align: middle;
  margin-right: 3px;
  margin-top: -2px;
}

/* チェックされたラジオボタンのスタイル */
.side-bar-radio input[type="radio"]:checked {
  background-color: #66bb33; /* チェックボックスの背景色 */
  border-color: #66bb33; /* チェックボックスの外枠の色 */
}

.side-bar-radio label:first-of-type {
  margin-right: 15px;
}


.modal-box-btn {
  text-align: center;
  margin-top: 30px;
}

.modal-box-btn input {
  background-color: #66bb33;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  width: 50%;
}

.modal-box-btn input:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .side-bar {
    padding: 20px;
  }

  .side-bar dd {
    margin-bottom: 15px;
  }

  .modal-box-btn input {
    width: 100%;
  }
}




/*---------------------------------------*/
/*--------------- 閲覧履歴 ---------------*/
/*---------------------------------------*/

.history .search-item {
  padding:  15px 15px;
}

.history .search-item-btn li {
  width: 100%;
}

.history .search-item-btn-note {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .history .search-list-inner {
    display: block;
    max-width: 1100px;
  }

  .history .search-item-wrap {
    margin-right: 0;
  }

  .history .search-item {
    padding: 30px 30px;
  }

  .history .search-item-img {
    width: 30%;
  }

  .history .search-item-btn-note {
    text-align: center;
    font-size: 1.4rem;
    margin-top: 10px;
  }
}




/*---------------------------------------*/
/*--------------- お気に入り --------------*/
/*---------------------------------------*/

a.search-item-btn-del {
  background-color: #000;
}




/*---------------------------------------*/
/*---------------- detail ---------------*/
/*---------------------------------------*/

.detail-main {
  padding: 0 15px;
  margin-bottom: 30px;
}

.detail-main h2 {
  font-weight: bold;
  border-bottom: 4px solid #c82828;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .detail-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .detail-main {
    margin-bottom: 70px;
    padding: 0;
    border-radius: 5px;
  }

  .detail-main h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}


.detail-info-list {
  background-color: #fff;
  font-size: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  border-bottom: none;
}

.detail-info-list:nth-child(even) {
  border-top: none;
}

.detail-info-list dt {
  font-weight: normal;
  line-height: 1.4;
  background-color: #faf5ee;
  width: 30%;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 2px 5px;
}

.detail-info-list dd {
  width: 70%;
  line-height: 1.4;
  border-bottom: 1px solid #ccc;
  padding: 2px 5px;
}

@media screen and (min-width: 768px) {
  .detail-info {
    display: flex;
  }

  .detail-info-list:nth-child(even) {
    border-top: 1px solid #ccc;
    border-left: none;

  }

  .detail-info-list {
    font-size: 1.6rem;
    width: 50%;
  }

  .detail-info-list dt {
    padding: 10px;
  }
  
  .detail-info-list dd {
    padding: 10px;
  }
}


.login-contents-btn-wrap {
  background-color: #efefef;
  padding: 15px 15px 20px;
  margin-bottom: 30px;
  font-size: 1.4rem;
  text-align: center;
}

.login-contents-btn-wrap ul {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.login-contents-btn-wrap li {
  width: 48%;
}

.login-contents-btn-wrap li a {
  display: block;
  width: 100%;
  border-radius: 5px;
  padding: 5px;
  border: 3px solid #c82828;
}

.login-contents-btn-wrap li a:hover {
  opacity: 0.8;
}

.login-contents-btn-login {
  background-color: #c82828;
  color: #fff;
}

.login-contents-btn-Join {
  background-color: #fff;
  color: #c82828;
}

@media screen and (min-width: 768px) {
  .login-contents-btn-wrap {
    padding: 30px;
    margin-bottom: 70px;
    font-size: 1.6rem;
  }

  .login-contents-btn-wrap ul {
    margin-top: 20px;
    justify-content: center;
  }

  .login-contents-btn-wrap li:first-child {
    margin-right: 50px;
  }

  .login-contents-btn-wrap li {
    width: 30%;
  }

  .login-contents-btn-wrap li a {
    padding: 10px;
  }
}


.detail-more-info {
  padding: 0 15px;
  margin-bottom: 30px;
}

.detail-more-info h3 {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .detail-more-info {
    margin-bottom: 70px;
    padding: 0;
    border-radius: 5px;
  }

  .detail-more-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}


.detail-more-info-list {
  background-color: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #ccc;
  margin-bottom: 20px;
}

.detail-more-info-list dt:nth-of-type(-n+2),
.detail-more-info-list dd:nth-of-type(-n+2) {
  border-top: 1px solid #ccc;
}

.detail-more-info-list dt {
  font-weight: normal;
  background-color: #faf5ee;
  width: 30%;
  padding: 2px 5px;
  border-right:  1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.detail-more-info-list dd {
  width: 70%;
  border-right:  1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 2px 5px;
}

.detail-more-info-list dt:first-of-type,
.detail-more-info-list dd:first-of-type {
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .detail-more-info-list {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .detail-more-info-list dt {
    width: 15%;
    padding: 10px;
  }
  
  .detail-more-info-list dd {
    width: 35%;
    padding: 10px;
  }

  .detail-more-info-list dt:first-of-type,
  .detail-more-info-list dd:first-of-type {
    border-bottom: 1px solid #ccc;
  }
}


.detail-contact {
  padding: 0 15px;
}

.detail-contact ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.detail-contact li {
  width: calc(50% - 7.5px);
}

.detail-contact li a {
  display: block;
  width: 100%;
  border-radius: 5px;
  padding: 7px 3px;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
}

.detail-contact li a:hover {
  opacity: 0.8;
}

.detail-contact01 {
  background-color: #c82828;
}

.detail-contact02, .detail-contact03 {
  background-color: #ee9911;
}

.detail-contact04 {
  background-color: #66bb33;
}

.detail-contact .material-symbols-outlined {
  color: #fff;
  vertical-align: middle;
  font-size: 2rem;
  margin-right: 3px;
}

@media screen and (min-width: 768px) {
  .detail-contact {
    padding: 0;
  }

  .detail-contact ul {
    gap: 0;
  }

  .detail-contact li {
    width: 23.5%;
  }

  .detail-contact li a {
    padding: 14px;
    font-size: 1.6rem;
  }

  .detail-contact .material-symbols-outlined {
    font-size: 2.5rem;
  }
}


/*--- detail-slide ---*/

.detail-slide-wrap {
  margin-bottom: 10px;
}

.detail-slide-img-wrap {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.detail-slide-img-wrap img {
  width: 100%;
  max-height: 300px;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

/* .detail-slide-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 5px 10px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
}

.detail-slide-caption:empty {
  display: none;
} */

.detail-slide-thumb {
  display: none;
}

.slick-prev,.slick-next {
  z-index:2;
}

.slick-prev {
  left: 10px!important;
}

.slick-next {
  right: 10px!important;
}

.slick-arrow:before{
  content:""!important;
  width: 100%!important;
  height: 100%!important;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-next:before{
  background: url(../images/arrow-r.png)!important;
  background-size: contain!important;
}

.slick-prev:before{
  background: url(../images/arrow-l.png)!important;
  background-size: contain!important;
}

@media (min-width: 768px) {
  .detail-slide-wrap {
    margin-bottom: 40px;
  }
  
  .detail-slide-item {
    background-color: #faf5ee;
    padding: 20px;
    border-radius: 10px;
  }

  .detail-slide-img-wrap img {
    max-height: 350px;
  }

  /* .detail-slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 5px 10px;
  } */

  .detail-slide-thumb {
    display: block;
  }

  .detail-slide-thumb p {
    padding: 5px;
  }

  .detail-slide-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3/2;
    border: 6px solid #fff;
  }
}




/*---------------------------------------*/
/*--------------- form 共通 --------------*/
/*---------------------------------------*/

.user-form-wrap {
  margin-bottom: 40px;
}

.user-form  {
  font-size: 1.4rem;
  margin-bottom: 40px;
}

.user-form dt span {
  background-color: #c82828;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  font-weight: normal;
  padding: 2px 5px 3px;
  margin-left: 10px;
  border-radius: 3px;
}

.user-form dd {
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.user-form dd input[type=text] {
  padding: 5px;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  width: 100%;
}

.user-form dd.user-form-name input {
  width: 48%;
}

.user-form dd.user-form-name input:last-child {
  margin-left: 3%;;
}

.user-form dd.user-form-separate {
  display: flex;
  align-items: center;
}

.user-form dd.user-form-separate select {
  width: 48%;
  margin-right: 1%;
}

.user-form dd.user-form-separate select:last-child {
  margin-right: 0;
  margin-left: 1%;
}

.user-form dd input[type=password] {
  width: 100%;
  padding: 5px;
  margin: auto;
  border: solid 1px #ccc;
  border-radius: 3px;
}

.user-form dd select {
  width: 100%;
  padding: 5px;
  margin: auto;
  border: solid 1px #ccc;
  border-radius: 3px;
}

.user-form dd.user-form-floor {
  display: flex;
  align-items: center;
  justify-content: start;
}

.user-form dd.user-form-floor p {
  display: flex;
  align-items: center;
  justify-content: start;
  white-space: nowrap
}

.user-form dd.user-form-floor p span {
  margin-left: 5px;
}

.user-form dd.user-form-area p {
  display: flex;
  align-items: center;
}

.user-form dd.user-form-area p:first-child {
  margin-bottom: 5px;
}

.user-form dd.user-form-area p span {
  width: 150px;
}

.user-form dd.user-form-area p input {
  width: 150px;
  margin-left: 5px;
  margin-right: 5px;
}

/* ラジオボタンのチェックボックススタイルを変更 */
.user-form input[type="radio"] {
  -webkit-appearance: none; /* Safari/Chrome用 */
  -moz-appearance: none; /* Firefox用 */
  appearance: none;
  width: 17px; /* チェックボックスの幅 */
  height: 17px; /* チェックボックスの高さ */
  border: 1px solid #ccc; /* チェックボックスの外枠の色 */
  border-radius: 50%; /* チェックボックスの角を丸める */
  outline: none; /* フォーカス時の外側の枠線を非表示に */
  vertical-align: middle;
  margin-right: 5px;
}

/* チェックされたラジオボタンのスタイル */
.user-form input[type="radio"]:checked {
  background-color: #66bb33; /* チェックボックスの背景色 */
  border-color: #66bb33; /* チェックボックスの外枠の色 */
}

.user-form label {
  margin-right: 30px;
  vertical-align: top;
  display: inline-block;
  cursor: pointer;
}

.user-form input[type=checkbox] {
  outline: none;
  position: relative;
  text-align: center;
  cursor: pointer;
  width: 18px;
  height: 15px;
  margin: auto 8px auto auto;
  border: none;
}

.user-form input[type=checkbox]::before {
  display: block;
  position: absolute;
  content: "";
  top: -2px;
  left: 0px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: solid 1px #ccc;
  border-radius: 3px;
}

.user-form input[type=checkbox]::after {
  display: block;
  content: "";
  position: absolute;
  left: 6px;
  top: 0px;
  width: 6px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
}

.user-form input[type=checkbox]:checked::before {
  background-color: #66BB33;
  border: solid 1px #66BB33;
}

.user-form input[type=checkbox]:checked::after {
  opacity: 1;
}

.user-form dd textarea {
  padding: 5px;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  width: 100%;
}

.user-form .calendar {
  display: flex;
  align-items: center;
}

.user-form .calendar input[type=text] {
  margin-right: 10px;
}

.user-form .calendar img {
  width: 30px;
  height: 30px;
}

@media screen and (min-width: 768px) {
  .user-form-wrap {
    margin-bottom: 60px;
  }

  .user-form  {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 1.6rem;
  }

  .user-form dt {
    width: 35%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
    padding-left: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
  }

  .user-form dd {
    width: 65%;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 30px;
  }

  .user-form .calendar input[type=text] {
    width: 300px;
  }
  
  .user-form dd.user-form-area p input {
    width: 150px;
    margin-left: 5px;
  }
}


.message__error {
  color: #c82828;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .message__error {
    margin-bottom: 30px;
    padding: 0 30px;
  }
}




/*---------------------------------------*/
/*------------- user-regist -------------*/
/*---------------------------------------*/

.user-regist-content {
  padding: 0 15px;
  font-size: 1.4rem;
}

.user-regist-info {
  margin-bottom: 20px;
}

.user-regist-content h2 {
  font-weight: bold;
  font-size: 1.6rem;
  border-bottom: 5px solid #e3e3e3;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .user-regist-content {
    max-width: 1100px;
    padding: 0 30px;
    margin: 0 auto;
    font-size: 1.6rem;
  }

  .user-regist-info {
    margin-bottom: 40px;
    text-align: center;
  }

  .user-regist-content h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

/*---------------------------*/

.user-regist-confirm-info {
  margin-bottom: 5px;
}

.user-regist-confirm-link {
  margin-bottom: 20px;
  text-align: center;
}

.user-regist-confirm-link a {
  text-decoration: underline;
}

.user-regist-form-btn {
  margin-top: 30px;
}

.user-regist-form-btn input {
  display: block;
  width: 100%;
  padding: 7px 5px;
  background-color: #c82828;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  border: none;
}

.user-regist-form-btn input:hover {
  opacity: 0.8;
}


@media screen and (min-width: 768px) {
  .user-regist-confirm-info {
    margin-bottom: 10px;
    text-align: center;
  }

  .user-regist-confirm-link {
    margin-bottom: 40px;
  }

  .user-regist-form-btn {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .user-regist-form-btn input {
    padding: 10px;
  }
}




/*--------------------------------------*/
/*------------- contact関連 ------------*/
/*--------------------------------------*/

.contact-form {
  padding: 0 15px;
}

.contact-form-info {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.contact-form h2 {
  font-weight: bold;
  font-size: 1.6rem;
  border-bottom: 5px solid #e3e3e3;
  margin-bottom: 20px;
}

.contact-form-btn-wrap {
  margin-top: 30px;
}

.contact-form-btn {
  margin-top: 20px;
}

.contact-form-btn input {
  display: block;
  width: 100%;
  padding: 7px 5px;
  background-color: #c82828;
  border: 3px solid #c82828;
  border-radius: 5px;
  text-align: center;
  color: #fff;
}

.contact-form-btn input:hover {
  opacity: 0.8;
}

.contact-form-btn:nth-child(2n) input {
  background-color: #fff;
  border: 3px solid #c82828;
  color: #c82828;
}

.contact-form-btn:nth-child(2n) input:hover {
  background-color: #fbefef;
}


@media screen and (min-width: 768px) {
  .contact-form {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .contact-form-info {
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.6rem;
  }

  .contact-form h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .contact-form-btn-wrap {
    display: flex;
    justify-content: space-evenly;
  }

  .contact-form-btn {
    width: 400px;
    margin-top: 0;
  }
  .contact-form-btn:nth-child(2n) {
    margin-right: 20px;
  }

  .contact-form-btn input {
    padding: 10px;
    font-size: 1.6rem;
  }
}


.form-message-done-wrap {
  text-align: center;
  margin: 100px 0;
}

.form-to-top-btn {
  margin-top: 10px;
}

.form-to-top-btn a {
  text-decoration: underline;
  color: #c82828;
}

@media screen and (min-width: 768px) {
  .form-message-done-wrap {
    margin: 150px 0;
  }
}


/*--- inquiry ---*/

.contact-item {
  margin-bottom: 30px;
}

.contact-item h2 {
  font-weight: bold;
  margin-bottom: 5px;
  padding-left: 15px;
}

.contact-item-wrap {
  border-top: 4px solid #c82828;
  border-bottom: 4px solid #c82828;
  padding: 20px 15px 5px;
}

.contact-item-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.contact-item-img {
  width: 35%;
}

.contact-item-info {
  width: 62%;
  font-size: 1.2rem;
  line-height: 1.4;
}

.contact-item-info dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-item-info dt {
  width: 30%;
  margin-bottom: 5px;
  border-bottom: 1px dotted #ccc;
}

.contact-item-info dd {
  width: 70%;
  padding-left: 5px;
  margin-bottom: 5px;
  border-bottom: 1px dotted #ccc;
}

@media screen and (min-width: 768px) {
  .contact-item {
    padding: 0 30px;
    max-width: 1100px;
    margin: 0 auto 80px;
  }

  .contact-item h2 {
    margin-bottom: 5px;
    padding-left: 0;
    font-size: 2rem;
  }

  .contact-item-wrap {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .contact-item-box {
    margin-bottom: 0;
  }

  .contact-item-info {
    font-size: 1.6rem;
  }

  .contact-item-info dt {
    margin-bottom: 7px;
    padding-bottom: 7px;
  }

  .contact-item-info dd {
    margin-bottom: 7px;
    padding-bottom: 7px;
  }

  .contact-item-info dt:last-of-type,
  .contact-item-info dd:last-of-type {
    margin-bottom: 0;
  }
}




/*--------------------------------------*/
/*-------------- user-login ------------*/
/*--------------------------------------*/

.user-login-inner {
  padding: 0 15px;
  font-size: 1.4rem;
}

.user-login-inner h2 {
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .user-login-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    font-size: 1.6rem;
  }

  .user-login-inner h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

/*---------------------------*/

.user-login-info {
  margin-bottom: 20px;
}

.user-login-info li {
  margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .user-login-info {
    display: table;
    margin: 0 auto 40px;
  }
}

/*---------------------------*/

.user-login-box > div {
  border: 5px solid #e3e3e3;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .user-login-box {
    display: flex;
    justify-content: space-evenly;
  }

  .user-login-box > div {
    width: 45%;
    padding: 30px 50px;
  }
}

/*---------------------------*/

.user-login-login {
  margin-bottom: 20px;
}

.user-login-login dd {
  margin-bottom: 10px;
}

.user-login-login dd input {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 100%;
}

.user-login-btn {
  margin-top: 20px;
}

.user-login-btn input {
  display: block;
  width: 100%;
  padding: 7px 5px;
  background-color: #c82828;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  border: none;
}

.user-login-btn input:hover {
  opacity: 0.8;
}

.user-login-forgot {
  text-align: center;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .user-login-login {
    margin-bottom: 0;
  }

  .user-login-btn {
    margin-top: 30px;
  }

  .user-login-btn input {
    padding: 10px;
  }
}

/*---------------------------*/

.user-login-btn a {
  display: block;
  width: 100%;
  padding: 7px 5px;
  background-color: #c82828;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  border: none;
}

.user-login-btn a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .user-login-entry p {
    text-align: center;
  }

  .user-login-btn a {
    padding: 10px;
  }
}




/*--------------------------------------*/
/*---------------- mypage --------------*/
/*--------------------------------------*/

.mypage-id-wrap {
  padding: 0 15px;
  margin-bottom: 40px;
}

.mypage-id-wrap .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.mypage-id-wrap .menu__item {
  width: 32%;
  margin-bottom: 10px;
}

.mypage-id-wrap .menu__item a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #333;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.4;
  padding: 7px 2px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mypage-id-wrap .menu__item a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .mypage-id-wrap {
    padding: 0 30px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .mypage-id-wrap .menu {
    margin-bottom: 70px;
  }

  .mypage-id-wrap .menu__item {
    margin-bottom: 20px;
  }

  .mypage-id-wrap .menu__item a {
    font-size: 1.6rem;
    line-height: 1.7;
    padding: 14px;
  }
}


.mypage-info {
  padding: 0 15px;
} 

.mypage-info h2 {
  font-weight: bold;
  font-size: 1.6rem;
  border-bottom: 5px solid #e3e3e3;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .mypage-info {
    padding: 0 30px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .mypage-info h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}




/*---------------------------------------*/
/*--------------- privacy --------------*/
/*---------------------------------------*/

.privacy-contents {
  padding: 0 15px;
  font-size: 1.4rem;
}

.privacy h2 {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 15px;
  border-bottom: 1px solid #999;
}

@media screen and (min-width: 768px) {
  .privacy-contents {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    font-size: 1.6rem;
  }

  .privacy h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

/*---------------------------*/

.privacy-declaration {
  margin-bottom: 30px;
}

.privacy-declaration p span {
  display: block;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .privacy-declaration {
    margin-bottom: 60px;
  }
}

/*---------------------------*/

.privacy-policy {
  margin-bottom: 30px;
}

.privacy-policy h2+p {
  margin-bottom: 10px;
}

.privacy-policy dd {
  margin-bottom: 10px;
}

.privacy-policy dd a {
  text-decoration: underline;
}

.privacy-policy dd a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .privacy-policy {
    margin-bottom: 60px;
  }

  .privacy-policy h2+p {
    margin-bottom: 20px;
  }

  .privacy-policy dd {
    margin-bottom: 20px;
  }
}

/*---------------------------*/

.privacy-contact ul {
  margin-top: 10px;
  margin-left: 30px;
  list-style-type: disc;
}

@media screen and (min-width: 768px) {
  .privacy-policy {
    margin-bottom: 60px;
  }

  .privacy-contact ul {
    margin-top: 20px;
    
  }
}





/*--------------------------------------*/
/*------------- 居抜き物件販売 -----------*/
/*--------------------------------------*/

.inuki {
  font-size: 1.4rem;
}

.inuki-head {
  margin: 90px auto 30px;
  padding: 15px;
}

.inuki-h1-wrap {
  text-align: center;
}

.inuki-h1-wrap img {
  max-width: 250px;
}

.inuki-head-btn {
  margin-top: 30px;
}

.inuki-head-btn a {
  display: inline-flex;  /* アイコンとテキストを横並び */
  align-items: center; 
  justify-content: center;
  padding: 12px 5px;
  background-color: #009245;
  border-radius: 5px;
  font-size: 1.8rem;
  color: #ff0;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  width: 100%;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* 影 */
}

.inuki-head-btn a:hover {
  opacity: 0.8;
}

.inuki-head-hr {
  border: none; /* デフォルトの線を消す */
  border-top: 3px dashed #c82828; /* 太さ3px、点線、色#c82828 */
  margin-bottom: 45px;
}

@media screen and (min-width: 768px) {
  .inuki {
    font-size: 1.6rem;
  }

  .inuki-head {
    margin: 150px auto 70px;
  }

  .inuki-h1-wrap {
    max-width: 750px;
    margin: 0 auto;
  }

  .inuki-h1-wrap img {
    max-width: 100%;
  }

  .inuki-head-btn {
    margin-top: 50px;
  }

  .inuki-head-btn a {
    font-size: 2.5rem;
    padding: 15px;
  }

  .inuki-head-hr {
    border: none; /* デフォルトの線を消す */
    border-top: 3px dashed #c82828; /* 太さ3px、点線、色#c82828 */
    margin-bottom: 80px;
  }
}

/*--------- nuki-type-btn -------*/

.inuki-type-btn-wrap {
  padding: 0 15px 20px;
}

.inuki-type-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.inuki-type-btn li {
  width: calc(50% - 5px);
}

.inuki-type-btn a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #c82828;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 5px;
  border: 3px solid #c82828;
  border-radius: 5px;
  font-size: 1.4rem;
  line-height: 1.4;
}

.inuki-type-btn a:hover {
  background-color: #fff;
  color: #c82828;
}

@media screen and (min-width: 768px) {
  .inuki-type-btn-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px 50px;
  }

  .inuki-type-btn {
    justify-content: space-between;
    gap: 0;
  }

  .inuki-type-btn li {
    width: 23%;
  }

  .inuki-type-btn a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px 5px;
    font-size: 1.8rem;
  }
  .inuki-type-btn-wrap img {
    width: 80%;
    display: block;
    margin: 30px auto 0;
  }
}

/*---------- 背景 -----------*/

.inuki-type01, .inuki-type04 {
  background-color: #faf5ee;
}

.inuki-type02 {
  background-image: url(../images/inuki-type02.jpg);
  background-position: left center;
  background-size: cover;
}

/*---------------------*/

.inuki-type {
  padding: 30px 15px;
}

.inuki-type h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #c82828;
  margin-bottom: 10px;
  margin-top: -80px;
  padding-top: 80px;
}

.inuki-type h2::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/inuki-type-check.svg);
  background-size: contain;
  margin-top: -5px;
  vertical-align: middle;
}

.inuki-type-head-info {
  margin-bottom: 20px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .inuki-type {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 30px;
  }

  .inuki-type h2 {
    font-size: 4rem;
    margin-bottom: 40px;
    margin-top: -120px;
    padding-top: 120px;
  }
  
  .inuki-type h2::before {
    width: 45px;
    height: 45px;
  }

  .inuki-type-head-info {
    margin-bottom: 30px;
    font-size: 2rem;
  }
}

/*--------- inuki-box-item --------*/

.inuki-box-item {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.inuki-box-item li {
  width: 31%;
  border: 3px solid #999;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
  padding: 7px;
  border-radius: 5px;
  position: relative;
  box-shadow: 2px 2px 4px #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inuki-box-item li::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .inuki-box-item {
    width: 90%;
    margin: 90px auto 0;
    justify-content: space-evenly;
  }

  .inuki-box-item li {
    width: 28%;
    border: 5px solid #999;
    font-size: 2.8rem;
    padding: 15px 5px;
  }
}



/*--------- inuki-type01 --------*/

.inuki-type01-img {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.inuki-type01-img-text {
  background-color: #c82828;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
  padding: 5px 10px;
  display: inline-block;
}

.iinuki-box-item-type01 li {
  background: linear-gradient(45deg, #aaa 0%, #ccc 45%, #eee 70%, #ccc 85%, #bbb 90% 100%);
}

.iinuki-box-item-type01 li::after {
  width: 65px;
  height: 27.282px;
  top: -30px;
  left: -10px;
}

.iinuki-box-item-type01 li:nth-child(1):after {
  background-image: url(../images/inuki-type01-list-01.svg);
}

.iinuki-box-item-type01 li:nth-child(2):after {
  background-image: url(../images/inuki-type01-list-02.svg);
}

.iinuki-box-item-type01 li:nth-child(3):after {
  background-image: url(../images/inuki-type01-list-03.svg);
}

@media screen and (min-width: 768px) {
  .inuki-type01-img {
    width: 80%;
    margin: 0 auto;
  }

  .inuki-type01-img img {
    max-width: 650px;
    margin: 0 auto;
  }

  .inuki-type01-img-text {
    font-size: 3.3rem;
    padding: 10px 30px;
  }

  .iinuki-box-item-type01 {
    margin-top: 70px;
  }

  .iinuki-box-item-type01 li::after {
    width: 120px;
    height: 50.4px;
    top: -40px;
    left: -10px;
  }
}

/*------- inuki-type01-result -------*/

.inuki-type01-result {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 15px;
  position: relative;
}

.inuki-type01-result img {
  width: 50px;
  height: auto;
}

.inuki-type01-result::after {
  width: 120px;
  height: 70px;
  top: 20px;
  right: -10px;
  background-image: url(../images/inuki-type01-result.svg);
}

@media screen and (min-width: 768px) {
  .inuki-type01-result {
    font-size: 3rem;
    margin-top: 40px;
  }
  
  .inuki-type01-result img {
    width: 80px;
    height: auto;
  }
  
  .inuki-type01-result::after {
    width: 280px;
    height: 163.3px;
    top: 30px;
    right: 0;
  }
}

/*-------- inuki-type01-advice --------*/

.inuki-type01-advice {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 15px;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 2px 2px 4px #aaa;
  border: 3px solid #c82828;
}

.inuki-type01-advice p span {
  color: #c82828;
}

.inuki-type01-advice p:first-child {
  border-bottom: 5px solid #fcee21;
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 10px;
}

.inuki-type01-advice p img {
  width: 90px;
  height: auto;
  margin-right: 5px;
}

@media screen and (min-width: 768px) {
  .inuki-type01-advice {
    font-size: 3.5rem;
    margin-top: 40px;
    padding: 20px;
    border: 5px solid #c82828;
  }

  .inuki-type01-advice p img {
    width: 180px;
    height: auto;
    margin-right: 10px;
  }
}

/*------- inuki-box-item-type01-02 ------*/

.inuki-box-item-type01-02 li {
  background: linear-gradient(45deg, #cc9424 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #cc9424 90% 100%);
  border: 3px solid #cc9424;
}

.inuki-box-item-type01-02 li::after {
  width: 100px;
  height: 24px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.inuki-box-item-type01-02 li:nth-child(1):after {
  background-image: url(../images/inuki-type01-list-02-01.svg);
}

.inuki-box-item-type01-02 li:nth-child(2):after {
  background-image: url(../images/inuki-type01-list-02-02.svg);
}

.inuki-box-item-type01-02 li:nth-child(3):after {
  background-image: url(../images/inuki-type01-list-02-03.svg);
}

@media screen and (min-width: 768px) {
  .inuki-box-item-type01-02 {
    width: 90%;
    justify-content: space-evenly;
  }

  .inuki-box-item-type01-02 li {
    width: 28%;
    border: 5px solid #cc9424;
    font-size: 2.8rem;
    padding: 15px 5px;
  }

  .inuki-box-item-type01-02 li::after {
    width: 200px;
    height: 48px;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*------- inuki-type02 ------*/

.inuki-type02-info {
  margin-bottom: 15px
}

.inuki-type02-ttl {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  border-bottom: 5px solid #fcee21;
  display: table;
  line-height: 1.4;
  margin: 0 auto 10px;
}

.inuki-type02-terms > div {
  margin-bottom: 10px;
}

.inuki-type02-terms-box {
  background-color: #fff;
  padding: 15px;
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
  border-radius: 5px;
}

.inuki-type02-terms-box p:first-child {
  margin-bottom: 5px;
}

.inuki-type02-terms-box p:last-child {
  font-weight: normal;
  font-size: 1.4rem;
  margin-top: 5px;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .inuki-type02-info {
    display: table;
    margin: 0 auto;
    font-size: 1.8rem;
    margin-bottom: 40px
  }

  .inuki-type02-ttl {
    font-size: 3rem;
    margin-bottom: 40px;
  }

  .inuki-type02-terms {
    display: grid;
    grid-template-columns: repeat(3, 31%);
    column-gap: 3.5%;
  }

  .inuki-type02-terms-box {
    padding: 15px 20px;
    grid-row: span 3;
    display: grid;
    grid-template-rows: subgrid;
  }
}

/*-------- inuki-type02-advice --------*/

.inuki-type02-advice {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 15px;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 2px 2px 4px #aaa;
  border: 3px solid #c82828;
}

.inuki-type02-advice p span {
  color: #c82828;
}

.inuki-type02-advice p img {
  width: 90px;
  height: auto;
  margin-right: 5px;
}

@media screen and (min-width: 768px) {
  .inuki-type02-advice {
    font-size: 3.5rem;
    margin-top: 40px;
    padding: 20px;
    border: 5px solid #c82828;
  }

  .inuki-type02-advice p img {
    width: 180px;
    height: auto;
    margin-right: 10px;
  }
}

/*-------- inuki-box-item-type02 --------*/

.inuki-box-item-type02 li {
  background: linear-gradient(45deg, #cc9424 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #cc9424 90% 100%);
  border: 3px solid #cc9424;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inuki-box-item-type02 li::after {
  width: 100px;
  height: 25px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.inuki-box-item-type02 li:nth-child(1):after {
  background-image: url(../images/inuki-box-item-type02-01.svg);
}

.inuki-box-item-type02 li:nth-child(2):after {
  background-image: url(../images/inuki-box-item-type02-02.svg);
}

.inuki-box-item-type02 li:nth-child(3):after {
  background-image: url(../images/inuki-box-item-type02-03.svg);
}

@media screen and (min-width: 768px) {
  .inuki-box-item-type02 li::after {
    width: 200px;
    height: 50px;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*------- inuki-type03 ------*/

.inuki-type03 {
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #faf5ee;
}

.inuki-type03-ttl {
  text-align: center;
}

.inuki-type03-cause {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 15px;
}

.inuki-type03-cause > div {
  width: 45%;
  text-align: center;
}

.inuki-type03-cause span {
  display: inline-block;
  width: 30px;
  height: auto;
  margin-top: 10px;
}

.inuki-type03-cause-text {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.4;
}

.inuki-type03-cause-box {
  font-size: 1.5rem;
  line-height: 1.4;
  border: 3px solid #999;
  padding: 7px;
  border-radius: 5px;
  background: linear-gradient(45deg, #aaa 0%, #ccc 45%, #eee 70%, #ccc 85%, #bbb 90% 100%);
  position: relative;
}

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

.inuki-type03-text p {
  display: inline-block;
  text-align: center;
  color: #c82828;
  background-color: #fcee21;
  padding: 5px;
}

@media screen and (min-width: 768px) {
  .inuki-type03 {
    font-size: 1.6rem;
  }

  .inuki-type03-ttl {
    font-size: 3rem;
    margin-bottom: 40px;
  }

  .inuki-type03-cause > div {
    width: 43%;
    text-align: center;
  }

  .inuki-type03-cause {
    margin-top: 10px;
    margin-bottom: 40px;
  }
  
  .inuki-type03-cause span {
    width: 60px;
    height: auto;
    margin-top: 20px;
  }

  .inuki-type03-cause-text {
    font-size: 1.6rem;
  }
  
  .inuki-type03-cause-box {
    font-size: 3rem;
    padding: 15px;
  }

  .inuki-type03-text p {
    font-size: 3rem;
    padding: 10px 30px;
  }
}

/*------ inuki-type03-advice -------*/

.inuki-type03-advice {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 10px;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 2px 2px 4px #aaa;
  border: 3px solid #c82828;
}

.inuki-type03-advice p span {
  color: #c82828;
}

.inuki-type03-advice p img {
  width: 90px;
  height: auto;
  margin-right: 5px;
}

.inuki-type03-advice-sub span {
  color: #c82828;
}

@media screen and (min-width: 768px) {
  .inuki-type03-advice {
    font-size: 3.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 20px;
    border: 5px solid #c82828;
  }

  .inuki-type03-advice p img {
    width: 180px;
    height: auto;
    margin-right: 10px;
  }

  .inuki-type03-advice-sub {
    font-size: 2.4rem;
  }
}

/*------ inuki-type04 -------*/

.inuki-type04 {
  font-size: 1.5rem;
  font-weight: bold;
}

.inuki-type04-advice {
  margin-bottom: 10px;
  background-color: #c82828;
  padding: 5px;
  text-align: center;
  color: #fff;
}

.inuki-type04-advice span {
  color: #fcee21;
}

.inuki-type04-case {
  margin-bottom: 10px;
}

.inuki-type04-case-q {
  color: #c82828;
}

.inuki-type04-case-a {
  display: inline-block;
  background-color: #fcee21;
  padding: 5px;
  text-align: center;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .inuki-type04 {
    font-size: 2rem;
  }

  .inuki-type04-advice {
    margin-bottom: 30px;
    padding: 10px;
    font-size: 3rem;
  }

  .inuki-type04-case-wrap {
    display: flex;
    justify-content: space-evenly;
  }

  .inuki-type04-case {
    text-align: center;
    width: 45%;
  }

  .inuki-type04-case-a {
    padding: 15px 30px;
  }

  .inuki-type03-advice-sub {
    text-align: center;
    margin-bottom: 20px;
  }
}

/*---------------------*/

.inuki-contact-btn {
  width: 150px;
  margin: 15px auto;
  position: relative;
}

.inuki-contact-btn::after {
  content: '';
  background-image: url(../images/chara-salon.png);
  background-size: contain;
  display: inline-block;
  width: 85px;
  height: 68px;
  position: absolute;
  top: -10px;
  left: -95px;
}

.inuki-contact-btn::before {
  content: '';
  background-image: url(../images/chara-restaurant.png);
  background-size: contain;
  display: inline-block;
  width: 78px;
  height: 78px;
  position: absolute;
  top: -22px;
  right: -90px;
}

.inuki-contact-btn a {
  display: block;
  padding: 7px;
  background-color: #009245;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  line-height: 1.5;
}

.inuki-contact-btn a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .inuki-contact-btn {
    width: 400px;
    margin: 50px auto;
  }

  .inuki-contact-btn::after {
    width: 135px;
    height: 108px;
    position: absolute;
    top: -15px;
    left: -40%;
  }
  
  .inuki-contact-btn::before {
    width: 120px;
    height: 120px;
    top: -30px;
    right: -35%;
  }
  
  .inuki-contact-btn a {
    padding: 15px 10px;
    font-size: 2rem;
  }
}




/*---------------------------------------*/
/*--------------- 会社概要 ---------------*/
/*---------------------------------------*/

.company h2 {
  font-weight: bold;
  font-size: 1.6rem;
  border-bottom: 5px solid #e3e3e3;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .company h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

/*---------------------*/

.company-info {
  padding: 0 15px;
  margin-bottom: 40px;
}

.company-info-list {
  font-size: 1.4rem;
}

.company-info-list > dd {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.company-info-sublist {
  display: flex;
  flex-wrap: wrap;
}

.company-info-sublist dt {
  width: 3em;
}

.company-info-sublist dd {
  width: calc(100% - 3em);
  padding-bottom: 0;
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .company-info {
    max-width: 1100px;
    padding: 0 30px;
    margin: 0 auto 70px;
  }

  .company-info-list {
    font-size: 1.6rem;
    display: flex;
    flex-wrap: wrap;
  }

  .company-info-list > dt {
    width: 30%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
    padding-left: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
  }

  .company-info-list > dd {
    width: 70%;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 30px;
  }

  .company-info-sublist dt {
    width: 4em;
  }

  .company-info-sublist dd {
    width: calc(100% - 4em);
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }

  .company-info-sublist dd:first-of-type {
    margin-bottom: 10px;
  }
}

/*---------------------*/

.company-client {
  padding: 0 15px;
  margin-bottom: 40px;
}

.company-client-list {
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .company-client {
    max-width: 1100px;
    padding: 0 30px;
    margin: 0 auto 80px;
  }

  .company-client-list {
    font-size: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px;
  }

  .company-client-list li {
    width: 50%;
    margin-bottom: 10px;
  }
}

/*---------------------*/

.company-business {
  padding: 0 15px;
}

.company-business-list {
  font-size: 1.4rem;
}

.company-business-list dd {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .company-business {
    max-width: 1100px;
    padding: 0 30px;
    margin: 0 auto;
  }

  .company-business-list {
    font-size: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px;
  }

  .company-business-list dt {
    width: 30%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
    padding-left: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
  }

  .company-business-list dd {
    width: 70%;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 30px;
  }
  
}