:root {
  --main-color: #f17a22;
  --sab-color: #f7b52c;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #323333;
  line-height: 1.6;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

img {
  width: 100%;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin: 20px 0 60px;
}
h2 span {
  font-size: 24px;
}

span {
  font-size: 18px;
}

.inner {
  width: 1200px;
  margin: 0 auto;
}

.shop-btn {
  display: block;
  width: 320px;
  height: 80px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  border-radius: 40px;
  color: #fff;
  background-color: var(--main-color);
  line-height: 80px;
}

.banner-area,
.news,
.features,
.contents,
.voice,
.staff,
.about,
.faq,
.flow,
.recruit {
  padding: 120px 0;
  color: #5f5f5f;
}

.features,
.staff,
.faq {
  background-color: #f4f4f5;
}

.section-text {
  text-align: center;
  line-height: 1.8;
  margin: 30px 0 0;
}

/* 固定式の問い合わせボタン */
.header-toi {
  width: 120px;
  height: 120px;
  background-color: #f19833;
  color: #fff;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  text-align: center;
  position: fixed;
  top: 0;
  right: 0;
  transition: 0.6s ease;
  z-index: 1000;
}

.box {
  width: 100%;
  height: 100%;
}

.header-toi a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transition: 0.6s ease;
}

.header-toi a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.header-toi img {
  width: 50%;
}

.header-toi p {
  line-height: 2;
  text-align: justify;
}

/* 固定ボタンここまで */

.kv-top {
  position: relative;
}

.kv-open {
  position: absolute;
  left: 6%;
  top: 10%;
  max-width: 640px;
}

h1 {
  max-width: 750px;
  position: absolute;
  left: 8%;
  bottom: 10%;
}

.headding-gray {
  background-color: #323333;
  padding: 5px 15px;
  color: #fff;
}
.headding-pink {
  font-size: 64px;
  color: var(--main-color);
}

.kv {
  height: calc(100vh - 80px);
  min-height: 600px;
}
.kv img {
  height: 100%;
  object-fit: cover;
}

.kv .kv-sp {
  display: none;
}

.kv-bottom {
  background-color: var(--main-color);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kv-logo {
  width: 300px;
}

.banner-area li {
  margin: 60px 0;
}

.news-item a {
  display: flex;
  align-items: center;
  margin: 40px 0;
}

.news-img {
  width: 352px;
  min-width: 280px;
}
.news-img img {
  height: 100%;
  object-fit: cover;
}

.news-text {
  width: calc(100% - 352px);
  margin-left: 60px;
}
.news-text h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}

.news-time {
  font-size: 20px;
  margin-bottom: 15px;
}

.features-items {
  display: flex;
  max-width: 1500px;
  margin: 80px auto;
}

.features-item {
  width: calc((100% - 80px) / 3);
  margin-right: 40px;
}

.features-item:last-of-type {
  margin-right: 0;
}

.features-item-num {
  width: 100%;
  font-size: 60px;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
  line-height: 1;
}
.features-item-num span {
  font-size: 18px;
  font-weight: 700;
  display: block;
}
.features-item-num::after {
  content: "";
  width: 40px;
  height: 3px;
  background-color: #323333;
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
}

.features-item h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.4;
}

.features-item-img {
  margin: 15px 0 30px;
}

.features-item-text {
  line-height: 1.8;
}

.flow-items {
  padding: 40px 0;
}

.flow-item {
  position: relative;
  width: 40%;
  /* min-width: 300px; */
  margin: 0 auto 80px;
  padding: 30px 15px;
  border: 3px solid var(--main-color);
  border-radius: 15px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}
.flow-item::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 25px solid transparent;
  border-left: 25px solid transparent;
  border-top: 30px solid #323333;
  border-bottom: 0;
  bottom: -55px;
  left: 50%;
  transform: translate(-50%, 0);
}
.flow-item:last-of-type::after {
  display: none;
}

.flow-item h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.flow-item h3 > span {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  display: block;
  line-height: 1.6;
  color: var(--main-color);
}

.flow-item-img {
  width: 60%;
  margin: 30px auto;
}

.flow-item-bottom > p {
  padding: 0 5%;
  line-height: 1.8;
}

.flow-item-bottom-text {
  font-size: 18px;
}

.contents-items {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 80px auto;
}

.contents-item {
  width: calc((100% - 80px) / 3);
  margin-right: 40px;
  margin-bottom: 60px;
  padding: 40px;
  border: 3px solid var(--main-color);
  border-radius: 15px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.contents-item:nth-of-type(3n) {
  margin-right: 0;
}

.contents-item-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 30px 0 15px;
}
.contents-item-text {
  line-height: 2;
}

.voice-items {
  padding: 80px 0;
}
.voice-item {
  margin-bottom: 80px;
  padding: 40px;
  border: 3px solid var(--main-color);
  border-radius: 15px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}
.voice-item:last-of-type {
  margin-bottom: 0;
}

.voice-item-header {
  display: flex;
}
.voice-item-header-img {
  width: 280px;
}

.voice-item-header-name {
  padding: 30px 0;
  margin-left: 40px;
}
.voice-item-header-name h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.voice-content {
  margin: 40px 0;
}
.voice-content:last-of-type {
  margin-bottom: 0px;
}
.voice-content h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--main-color);
  margin-bottom: 20px;
}
.voice-content p {
  line-height: 1.6;
}

.voise-work {
  margin: 60px 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.voise-work-img {
  max-width: 400px;
  height: auto;
}

.voise-work-text {
  margin-left: 40px;
  max-width: 400px;
}
.voise-work-text h3 {
  font-size: 20px;
}
/* .voise-work-text p {
  font-size: 18px;
} */

.staff-items {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.staff-item {
  width: calc((100% - 60px) / 2);
  padding: 40px;
  border: 3px solid var(--main-color);
  border-radius: 15px;
  background-color: #fff;
}
.staff-img {
  margin: 0 auto;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  overflow: hidden;
}
.staff-item h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin: 30px 0;
}
.staff-item h3 span {
  font-size: 16px;
  font-weight: 300;
}
.staff-item p {
  line-height: 1.6;
}

.faq-item {
  margin: 40px 0;
  padding: 20px;
  background-color: #fff;
  position: relative;
}

.faq-q {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
}
.faq-q::before {
  background-color: var(--main-color);
  text-align: center;
  color: #fff;
  content: "Q";
  font-size: 20px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.faq-a-box {
  display: none;
}

.faq-a {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 15px;
  padding: 15px;
  /* padding-left: 65px; */
  background-color: #ebebeb;
  min-height: 70px;
}
/* .faq-a::before {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--main-color);
  text-align: center;
  color: #fff;
  content: "A";
  font-size: 20px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  margin-right: 10px;
} */

.about-contents {
  display: flex;
  justify-content: space-between;
  padding: 0 0 30px;
}
.about-left,
.about-right {
  width: 49%;
}

.about-right dl {
  display: flex;
  flex-wrap: wrap;
}
.about-right dt {
  width: 25%;
  font-weight: 700;
  padding: 10px;
}
.about-right dd {
  width: 75%;
  padding: 10px;
  border-left: 1px solid #333;
}

.about-right dt:nth-of-type(odd),
.about-right dd:nth-of-type(odd) {
  background-color: #e9e9e9;
}
.about-right dd:nth-of-type(odd) {
  border-left: 1px solid #999;
}

.about .shop-btn {
  margin-top: 40px;
}

footer {
  height: 40px;
  background-color: #5f5f5f;
  color: #fff;
  font-size: 12px;
  line-height: 40px;
  text-align: center;
}

@media screen and (max-width: 1201px) {
  .news,
  .features,
  .contents,
  .voice,
  .staff,
  .about,
  .faq,
  .flow,
  .recruit {
    padding: 120px 5%;
  }
  .inner {
    width: 100%;
  }
}
@media screen and (max-width: 901px) {
  .news,
  .features,
  .contents,
  .voice,
  .staff,
  .about,
  .faq,
  .flow,
  .recruit {
    padding: 60px 5%;
  }

  .contents-items,
  .staff-items,
  .features-items,
  .about-contents {
    flex-direction: column;
  }
  .contents-item {
    margin-right: 0;
    width: 100%;
  }
  .features-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .staff-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .about-left {
    margin-bottom: 40px;
  }
  .voice-item-header-name {
    margin-left: 0;
    text-align: center;
  }
  .about-left,
  .about-right {
    width: 100%;
  }
  .features-items {
    margin-bottom: 0;
  }
  .contents-items,
  .staff-items {
    margin: 30px 0;
  }
  .voice-items {
    padding: 40px 0;
  }
  h2 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 801px) {
  .shop-btn {
    width: 90%;
    margin: 0 auto;
  }
  h2 {
    font-size: 28px;
  }
  .voice-item-header {
    flex-direction: column;
  }
  .voice-item-header-img {
    width: 100%;
    max-width: 600px;
  }
  .voice-content {
    margin: 0;
    margin-bottom: 40px;
  }

  .staff-img {
    width: 80%;
  }

  .news-time {
    margin-bottom: 10px;
  }

  .flow-item {
    width: 60%;
  }

  .banner-area {
    padding: 0;
  }
  .banner-area li {
    margin: 30px;
  }
}
@media screen and (max-width: 501px) {
  .header-toi .sp {
    display: inline-block;
  }

  .header-toi {
    width: 80px;
    height: 80px;
  }

  .header-toi a {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .header-toi img {
    width: 40%;
  }

  .header-toi p {
    font-size: 12px;
    padding-top: 3px;
  }
  h1 {
    padding: 0 10px;
    left: 0;
    bottom: 5%;
  }
  .pc {
    display: none;
    padding: 0 10px;
  }
  .sp {
    display: block;
  }
  span {
    font-size: 14px;
  }
  h2 {
    font-size: 24px;
  }
  h2 span {
    font-size: 16px;
  }
  .news-text h3 {
    font-size: 20px;
    line-height: 1.6;
  }
  .staff-img {
    width: 200px;
    height: 200px;
  }
  .news-item a {
    flex-direction: column;
  }
  .news-text {
    margin-left: 0;
    text-align: center;
    margin-top: 20px;
    width: 100%;
  }

  .staff-item h3 {
    font-size: 28px;
  }
  .voice-item {
    padding: 30px;
  }
  .voice-item-header-name p,
  .voise-work-text p {
    text-align: left;
  }
  .voise-work {
    margin: 20px 0;
    flex-direction: column;
  }
  .voise-work-text {
    margin-left: 0;
  }
  .voise-work-text h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
  }
  .faq-q {
    font-size: 18px;
  }

  .faq-q::before {
    min-width: 40px;
  }
  .faq-a {
    font-size: 14px;
    line-height: 1.8;
  }
  .flow-item {
    width: 100%;
  }
  .flow-item-img {
    width: 80%;
  }
  .flow-item h3 {
    font-size: 20px;
  }
  .flow-item-bottom-text {
    font-size: 16px;
  }

  .kv img {
    display: none;
  }

  .kv .kv-sp {
    display: block;
  }
}
@media screen and (max-width: 430px) {
  .kv-logo {
    width: 100%;
    padding: 0 5%;
  }
  .news-img {
    width: 100%;
  }
  .faq-q {
    align-items: flex-start;
  }
  .contents-item-title {
    font-size: 20px;
    margin: 20px 0 10px;
  }
}
