@charset "UTF-8";

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

	mainvisual

-----------------------------------*/
#mainvisual {
  margin-bottom: 50px;
}
#mainvisual .contents_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#mainvisual .textArea {
  width: 47%;
}
#mainvisual .textArea .rifu_start {
  margin-bottom: 20px;
}
#mainvisual .textArea .copy {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
#mainvisual .textArea .copy span {
  color: var(--mClr1);
}
#mainvisual .textArea p {
  margin-bottom: 20px;
}
#mainvisual .textArea ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
#mainvisual .textArea ul li {
  width: max(250px, calc(50% - 5px));
}
#mainvisual .imageArea {
  width: 41%;
}
@media screen and (max-width: 1090px) {
  #mainvisual .textArea .copy {
    font-size: 3.7vw;
  }
}
@media screen and (max-width: 640px) {
  #mainvisual .contents_inner {
    flex-direction: column-reverse;
    gap: 20px;
    max-width: 420px;
    width: 95%;
  }
  #mainvisual .textArea {
    width: 100%;
    text-align: center;
  }
  #mainvisual .textArea .copy {
    font-size: 26px;
  }
  #mainvisual .imageArea {
    width: 90%;
  }
}
/*-----------------------------------

	news_block

-----------------------------------*/
#news_block {
  background-color: #fff;
  background-image: var(--bgDotY-i);
  background-position: var(--bgDotY-p);
  background-size: var(--bgDotY-s);
  padding: 50px 0;
}
#news_block #bnr_slide {
  margin-bottom: 50px;
}
#news_block .bnr_slider li {
  margin: 0 10px;
}
.slick-dots li {
  margin: 0 5px !important;
}
.slick-dots li button {
  position: relative;
}
.slick-dots li button:before {
  content: "" !important;
  width: 10px !important;
  height: 10px !important;
  background-color: #fff;
  border: 1px solid var(--mClr1);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: var(--mClr1);
}
#news_block #news_list {
  background: #fff;
  padding: 25px 60px 25px 25px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}
#news_block #news_list::after {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--bgArwB);
  position: absolute;
  top: calc(50% - 8px);
  right: 20px;
}
#news_block #news_list h2 {
  white-space: nowrap;
  line-height: 1;
  font-size: 20px;
}
#news_block #news_list ul a {
  display: block;
  overflow: hidden;
  width: 100%;
  line-height: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  height: 16px;
}
#news_block #news_list ul a .date {
  margin-right: 20px;
}
@media screen and (max-width: 640px) {
  #news_block {
    padding: 40px 0;
  }
  #news_block .bnr_slider li {
    margin: 0;
  }
  #news_block #news_list {
    padding: 20px 40px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  #news_block #news_list::after {
    top: 20px;
  }
  #news_block #news_list h2 {
    font-size: 18px;
  }
  #news_block #news_list ul a {
    line-height: 1.5;
    -webkit-line-clamp: 3;
    height: 54px;
  }
  #news_block #news_list ul a .date {
    margin-right: 0;
    display: block;
  }
}
/*-----------------------------------

	step_block

-----------------------------------*/
#step_block {
  padding: 60px 0;
}
#step_block .contents_inner {
  background: var(--mClr2);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
}
#step_block h2 {
  margin-bottom: 20px;
  font-size: 40px;
}
#step_block h2 span {
  background: #fff;
  display: inline-block;
  color: var(--mClr1);
  padding: 0 20px;
  margin: 0 20px;
}
#step_block p {
  font-weight: 700;
  font-size: 20px;
}
#step_block ul.step {
  width: min(720px, 100%);
  margin: 50px auto 35px;
  display: flex;
  gap: 20px;
}
#step_block ul.step li {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 60px 30px 30px 30px;
  counter-increment: number;
  position: relative;
}
#step_block ul.step li::before {
  content: counter(number);
  width: 77px;
  height: 77px;
  background: var(--mClr1);
  border-radius: 50%;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 77px;
  text-align: center;
  position: absolute;
  top: -38px;
  left: calc(50% - 38.5px);
}
#step_block ul.step li img {
  width: 195px;
  height: 165px;
  object-fit: contain;
  margin: 0 auto 20px;
}
#step_block ul.step li p {
  font-size: 22px;
}
#step_block ul.btnArea {
  width: min(720px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}
#step_block ul.btnArea li {
  width: max(250px, calc(50% - 10px));
}
#step_block ul.btnArea li a {
  font-size: 16px;
}
@media screen and (max-width: 1090px) {
  #step_block p {
    font-size: 18px;
  }
}
@media screen and (max-width: 840px) {
  #step_block p .sp {
    display: inline-block;
  }
}
@media screen and (max-width: 640px) {
  #step_block {
    padding: 30px 0;
  }
  #step_block .contents_inner {
    padding: 30px 20px;
  }
  #step_block h2 {
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
  }
  #step_block p {
    font-size: 14px;
  }
  #step_block ul.step {
    margin: 40px auto 20px;
    flex-direction: column;
    gap: 40px;
  }
  #step_block ul.step li {
    padding: 40px 20px 20px 20px;
  }
  #step_block ul.step li::before {
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 60px;
    top: -30px;
  }
  #step_block ul.step li img {
    width: 160px;
    height: 135px;
  }
  #step_block ul.step li p {
    font-size: 20px;
  }
}
/*-----------------------------------

	omakase_block

-----------------------------------*/
#omakase_block {
  padding: 0 0 100px 0;
  text-align: center;
}
#omakase_block h2 {
  font-size: 40px;
}
#omakase_block span {
  color: var(--mClr1);
}
#omakase_block ul.example {
  width: 100%;
  margin: 50px auto;
  display: flex;
  gap: 15px;
}
#omakase_block ul.example li {
  width: 100%;
  border-radius: 20px;
  padding: 40px 20px;
  border: 2px solid var(--mClr1);
}
#omakase_block ul.example li h3 {
  font-size: 30px;
  margin-bottom: 10px;
}
#omakase_block ul.example li p {
  margin-bottom: 20px;
  line-height: 1.875;
}
#omakase_block ul.example li img {
  width: 266px;
  height: 227px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
#omakase_block a.btn {
  width: 328px;
  margin: 0 auto;
}
@media screen and (max-width: 1090px) {
  #omakase_block ul.example li h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 840px) {
  #omakase_block ul.example {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 15px;
  }
  #omakase_block ul.example li {
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (max-width: 640px) {
  #omakase_block {
    padding: 0 0 60px 0;
    text-align: center;
  }
  #omakase_block h2 {
    font-size: 24px;
  }
  #omakase_block ul.example {
    gap: 10px;
    margin: 20px auto;
  }
  #omakase_block ul.example li {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
  }
  #omakase_block ul.example li h3 {
    font-size: 24px;
  }
  #omakase_block ul.example li img {
    width: 180px;
    height: 153px;
  }
  #omakase_block a.btn {
    width: 250px;
    font-size: 14px;
  }
}
/*-----------------------------------

	faq_block

-----------------------------------*/
#faq_block {
  padding: 0 0 80px 0;
}
#faq_block h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
}
#faq_block dl {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 40px;
  border-bottom: 1px solid #d9d9d9;
}
#faq_block dl dt {
  border-top: 1px solid #d9d9d9;
  padding: 20px 50px 20px 60px;
  font-weight: 700;
  position: relative;
  font-size: 18px;
}
#faq_block dl dt::before {
  content: "Q";
  font-size: 40px;
  line-height: 1;
  font-weight: 500;
  color: var(--mClr1);
  position: absolute;
  top: 10px;
  left: 0;
}
#faq_block dl dt::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--mClr1);
  border-bottom: 2px solid var(--mClr1);
  position: absolute;
  top: 30px;
  right: 20px;
  transform: rotate(45deg);
  transition: all 0.5s;
}
#faq_block dl dt.active::after {
  transform: rotate(-135deg);
}
#faq_block dl dd {
  display: none;
  padding: 0 20px 30px 60px;
}
#faq_block .btn {
  width: 350px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #faq_block {
    padding: 0 0 40px 0;
  }
  #faq_block h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  #faq_block dl {
    margin: 0 auto 30px;
  }
  #faq_block dl dt {
    padding: 15px 40px 15px 30px;
    font-size: 12px;
  }
  #faq_block dl dt::before {
    font-size: 20px;
    top: 12px;
  }
  #faq_block dl dt::after {
    width: 8px;
    height: 8px;
    top: 20px;
    right: 10px;
  }
  #faq_block dl dd {
    padding: 0 20px 15px 30px;
  }
  #faq_block .btn {
    width: 250px;
    font-size: 14px;
  }
}
