@charset "utf-8";
/* CSS Document */
.header {
  position: relative;
  height: 60px;
  width: 100%;
  background: #FFF;
  border-top: solid 4px #51A5DC;
}
.section-header__logo {
  display: block;
  padding: 8px 24px 0 24px;
  height: 50px;
  width: auto;
}
.header nav {
  display: none;
}
/*PCサイズここから*/
@media(min-width: 1160px) {
  .header {
    height: 150px;
  }
  .header-conternt-wrapper {
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
  }
  .section-header__logo {
    height: 120px;
    padding-top: 20px;
    position: absolute;
    left: 0;
  }
  .header nav {
    display: block;
    text-align: right;
  }
  .header nav ul {
    display: flex;
    justify-content: flex-end;
  }
  .header nav li a {
    display: block;
    padding: 20px 30px 0;
    color: #333;
    text-decoration: none;
    height: 50px;
  }
  .site-map__desctiption {
    font-size: 1.4rem;
  }
  .site-map__main {
    font-size: 2.4rem;
    font-weight: 600;
  }
}
/*PCサイズここまで*/
/*ハンバーガーボタン*/
@media (max-width:1160px) {
  .open-button {
    display: block;
    position: absolute;
    right: 10px;
    top: 20px;
    width: 40px;
    height: 40px;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    background: #333;
    display: block;
    content: "";
  }
  .open-button span:before {
    bottom: -8px;
  }
  .open-button span:after {
    bottom: -16px;
  }
}
/*ハンバーガーボタンここまで*/
.main {
  background-color: #FFF;
}
/*TOP*/
.section-top {
  position: relative;
}
/*スマホサイズ背景画像の削除*/
@media(max-width: 800px) {
  .section-top__picture-list-mother {
    object-fit: cover;
    object-position: center;
    width: 100%;
  }
  .section-top__picture-list-mother {
    filter: brightness(0.7);
    width: 100%;
  }
  .section-top__picture-list-shopping {
    display: none;
  }
}
.section-top__image-massage h1 {
  position: absolute;
  top: 10%;
  left: 0;
  z-index: 10;
  height: 50px;
  background-color: #FFF;
  color: #333;
  line-height: 2.6rem;
  padding: 0px 10px 5px 24px;
}
.section-top__main-image {
  position: absolute;
  top: 150px;
  left: 0;
  width: 100%;
  height: auto;
}
.section-top__lead {
  position: relative;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  padding: 100px 24px 40px 24px;
  text-align: left;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 3.2rem;
}
/*PCサイズここから*/
@media (min-width:800px) {
  .section-top {
    position: relative;
  }
  .section-top h1 {
    position: absolute;
    top: 50%;
    left: 0;
    height: 60px;
    font-size: 2.4rem;
    font-weight: 600;
    padding-left: 30px;
  }
  .section-top__picture-list {
    display: flex;
    margin: 0 auto;
    filter: brightness(0.6);
    width: 100%;
  }
  .section-top__picture-list li {
    list-style: none;
  }
  .section-top__picture-list-mother, .section-top__picture-list-shopping {
    width: 50vw;
  }
  .section-top__main-image {
    position: absolute;
    top: -40px;
    left: calc(50% - 25%);
    width: 50%;
    height: auto;
  }
  .section-top__lead {
    position: relative;
    margin: 0 auto;
    max-width: 1160px;
    font-size: 2.4rem;
    top: 40px;
    padding: 20px 10px 40px 10px;
  }
}
/*PCサイズここまで*/
/*ABOUT*/
.section-about {
  margin-bottom: 40px;
  padding: 0 24px;
}
.section-about h2 {
  margin: 0 auto;
  color: #FFF;
  font-size: 2.2rem;
  font-weight: 400;
  background: #261f87;
  box-shadow: 0px 0px 0px 5px #261f87;
  border-radius: 0.5rem;
  border: dashed 2px #51a5dc;
  padding: 5px 0px 8px 0px;
}
.section-about ul {
  list-style: none;
  padding-top: 40px;
}
.section-about li {
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: left;
}
.section-about__picture {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px 6px 0 0;
}
.section-about h3 {
  padding: 10px 0;
  font-size: 2.0rem;
}
.section-about p {
  padding: 0 5px;
}
/*ボタンここから*/
.button_01 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 2rem 2rem;
  width: 300px;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #ee7700;
  border-radius: 50vh;
  text-decoration: none;
}
.button_01 a::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(45deg);
}
.button_01 a:hover {
  text-decoration: none;
  background-color: #f4b095;
}
/*ボタンここまで*/
/*PCサイズここから*/
@media (min-width:800px) {
  .section-about {
    padding-top: 40px;
  }
  .section-about h2 {
    max-width: 700px;
    margin: 0 auto;
    font-size: 3.0rem;
    padding: 10px 0px 20px 0px;
  }
  .section-about_content-wrapper {
    max-width: 1160px;
    margin: 0 auto;
  }
  .section-about ul {
    margin: 0 auto 80px auto;
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
  }
  .section-about ul li {
    margin: 0;
  }
  .section-about ul li:first-child {
    margin-right: 40px;
  }
  .section-about ul li:last-child {
    margin-left: 40px;
  }
  /*ボタンここから*/
  .button_01 a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 20px 30px;
    width: 300px;
    color: #FFF;
    font-size: 2.0rem;
    font-weight: 700;
    background-color: #ee7700;
    border-radius: 50vh;
  }
  .button_01 a::after {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg);
  }
  .button_01 a:hover {
    text-decoration: none;
    background-color: #f4b095;
  }
}
/*ボタンここまで*/
/*PCサイズここまで*/
.section-service {
  background-color: #cce8f1;
  padding-top: 40px
}
.section-service h2 {
  font-family: "はれのそら明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 4.0rem;
  margin-bottom: 20px;
}
.under-line {
  background: linear-gradient(transparent 70%, #ffdc00 70%);
}
.section-service ul {
  margin: 0 24px;
  list-style-type: none;
}
.section-service__title ul li {
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
}
.section-service__picture {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-fit: center;
  border: solid 4px #FFF;
}
.section-service h3 {
  font-size: 2.0rem;
  padding: 20px 0;
}
.section-service p {
  font-size: 1.8rem;
  padding-bottom: 40px;
}
/*ボタンここから*/
.button_02 {
  padding-bottom: 40px;
}
.button_02 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 2rem 2rem;
  width: 200px;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #261f87;
  border-radius: 50vh;
  text-decoration: none;
}
.button_02 a::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(45deg);
}
.button_02 a:hover {
  text-decoration: none;
  background-color: #51a5dc;
}
/*ボタンここまで*/
/*PCサイズここから*/
@media (min-width:960px) {
  .section-service {
    padding-top: 40px;
  }
  .section-service h2 {
    max-width: 700px;
    margin: 0 auto;
    font-size: 3.0rem;
    padding: 10px;
  }
  .sp {
    display: none;
  }
  .section-service_content-wrapper {
    max-width: 1160px;
    margin: 0 auto;
  }
  .section-service ul {
    margin: 0 auto 80px auto;
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
  }
  .section-service ul li {
    width: 500px;
  }
  .section-service ul li:first-child {
    margin-left: 110px;
  }
  .section-service ul li:last-child {
    margin-right: 110px;
    padding-left: 40px;
  }
  .sp {
    display: none;
  }
  /*ボタンここから*/
  .boutton_02 {
    margin-bottom: 40px;
  }
  .button_02 a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 20px 30px;
    width: 300px;
    color: #FFF;
    font-size: 2.6rem;
    font-weight: 700;
    background-color: #261f87;
    border-radius: 50vh;
  }
  .button_02 a::after {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg);
  }
  .button_02 a:hover {
    text-decoration: none;
    background-color: #51a5dc;
  }
}
/*ボタンここまで*/
/*PCサイズここまで*/
/*QUALITY*/
.section-quality {
  width: 100%;
  background: url("../img/hinshitu/bg_hinshitu.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-quality__wrapper {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 40px;
}
.section-quality h2 {
  min-width: 280px;
  font-size: 3.0rem;
  display: block;
  background-color: #FFF;
  padding: 5px 5px 10px 5px;
  margin: 0 60px;
}
.section-quality__lead {
  font-size: 2.0rem;
  color: #FFF;
  line-height: 3.0rem;
  padding: 40px 0px 40px 0px;
}
.section-quality__massage {
  color: #FFF;
  font-size: 1.4rem;
  line-height: 4.0rem;
  text-align: left;
  padding: 40px 24px 60px 24px;
}
.section-quality__image-filter {
  background-color: rgba(0, 0, 0, 0.30);
  height: 100%;
  width: 100%;
}
@media (min-width:1160px) {
  .section-quality h2 {
    margin-top: 0px;
    font-size: 3.6rem;
    display: block;
    background-color: #FFF;
    padding: 10px 10px 15px 10px;
    margin: 0 200px;
  }
  .section-quality__lead {
    font-size: 3.0rem;
    font-weight: 500;
    color: #FFF;
    line-height: 4.0rem;
    padding: 40px 0px 40px 0px;
  }
  .section-quality__massage {
    color: #FFF;
    font-size: 2.4rem;
    line-height: 4.0rem;
    text-align: left;
    padding: 40px 24px 60px 24px;
  }
}
/*TRIAL*/
.section-trial {
  background-color: #cce8f1;
  padding-top: 40px;
}
.section-trial h2 {
  font-size: 3.2rem;
  line-height: 4.6rem;
}
.under-line {
  background: linear-gradient(transparent 70%, #ffdc00 70%);
}
.section-trial__title {
  font-family: "はれのそら明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 2.0rem;
  margin-bottom: 20px;
}
.under-line {
  background: linear-gradient(transparent 70%, #ffdc00 70%);
}
.section-trial ul {
  margin: 0 24px;
  list-style-type: none;
}
.section-trial__title ul li {
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
}
.section-trial__picture {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-fit: center;
  border: solid 4px #FFF;
}
.section-trial h3 {
  font-size: 2.0rem;
  padding: 20px 0 30px 0;
}
.font-red {
  color: #d7003a;
}
.section-trial p {
  font-size: 1.8rem;
  padding-bottom: 40px;
}
/*ボタンここから*/
.button_01 {
  padding-bottom: 40px;
}
.button_01 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 2rem 2rem;
  width: 300px;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #ee7700;
  border-radius: 50vh;
  text-decoration: none;
}
.button_01 a::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(45deg);
}
.button_01 a:hover {
  text-decoration: none;
  background-color: #f4b095;
}
/*ボタンここまで*/
/*PCサイズここから*/
@media (min-width:960px) {
  .section-trial {
    height: 600px;
    padding: 40px 0 40px 0;
  }
  .section-trial h2 {
    max-width: 700px;
    margin: 0 auto;
    font-size: 3.0rem;
    padding: 10px;
  }
  .font-red {
    color: #d7003a;
  }
  .sp {
    display: none;
  }
  .section-trial_content-wrapper {
    max-width: 1160px;
    margin: 0 auto;
  }
  .section-trial ul {
    margin: 0 auto 80px auto;
    display: flex;
    justify-content: space-between;
  }
  .section-trial ul li {
    width: 500px;
    height: 300px;
  }
  .section-trial ul li:first-child {
    margin-left: 110px;
  }
  .section-trial ul li:last-child {
    margin-right: 110px;
    padding-left: 40px;
  }
  .section-trial p {
    font-size: 2.0rem;
  }
  .sp {
    display: none;
  }
  /*ボタンここから*/
  .button_01 a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 20px 30px;
    width: 300px;
    color: #FFF;
    font-size: 2.0rem;
    font-weight: 700;
    background-color: #ee7700;
    border-radius: 50vh;
  }
  .button_01 a::after {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg);
  }
  .button_01 a:hover {
    text-decoration: none;
    background-color: #f4b095;
  }
}
/*ボタンここまで*/
/*PCサイズここまで*/
/*RECIPE*/
.section-recipe {
  margin: 60px 0;
  padding: 0 24px;
}
.section-recipe h2 {
  margin-bottom: 20px;
  color: #FFF;
  font-size: 2.2rem;
  font-weight: 400;
  background: #261f87;
  box-shadow: 0px 0px 0px 5px #261f87;
  border-radius: 0.5rem;
  border: dashed 2px #51a5dc;
  padding: 5px 0px 8px 0px;
}
.section-recipe ul {
  list-style: none;
}
.section-recipe li {
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: left;
}
.section-recipe__picture {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px 6px 0 0;
}
.section-recipe h3 {
  padding: 10px 0;
  font-size: 2.0rem;
}
/*PCサイズここから*/
@media (min-width:960px) {
  .section-recipe h2 {
    max-width: 700px;
    margin: 0 auto;
    font-size: 3.0rem;
    padding: 10px 0px 20px 0px;
  }
  .sp {
    display: none;
  }
  .section-recipe h3 {
    margin-top: 30px;
  }
  .section-recipe p {
    padding: 0 5px;
  }
  .section-recipe_content-wrapper {
    max-width: 1160px;
    margin: 0 auto;
  }
  .section-recipe ul {
    margin: 0 auto 80px auto;
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
  }
  .section-recipe ul li {
    margin: 0;
  }
  .section-recipe ul li:first-child {
    margin-right: 40px;
  }
  .section-recipe ul li:last-child {
    margin-left: 40px;
  }
}
/*PCサイズここまで*/
/*VOICE_FARMER*/
.section-voice__farmer {
  margin-bottom: 40px;
  padding: 0 24px;
}
.section-voice__farmer h3 {
  font-family: "はれのそら明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 2.4rem;
  padding-bottom: 40px;
  line-height: 3.2rem;
}
.section-voice__farmer ul {
  list-style: none;
}
.section-voice__farmer li {
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: left;
}
.section-voice__farmer-picture {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}
.section-voice__farmer h4, h5 {
  padding: 10px 0;
  font-size: 1.8rem;
  text-align: left;
}
.section-voice__farmer p {
  text-align: left;
  padding: 0 5px 20px 5px;
}
/*PCサイズここから*/
@media (min-width:960px) {
  .section-voice__farmer {
    padding-top: 40px;
  }
  .section-voice__farmer h2 {
    max-width: 700px;
    margin: 20px 0 40px 370px;
    font-size: 3.0rem;
    padding: 10px;
  }
  .section-voice__farmer h3 {
    font-size: 3.0rem;
    font-weight: 600;
  }
  .sp {
    display: none;
  }
  .section-voice__farmer_content-wrapper {
    max-width: 1160px;
    margin: 0 auto;
  }
  .section-voice__farmer ul {
    margin: 0 auto 80px auto;
    display: flex;
    justify-content: space-between;
  }
  .section-voice__farmer ul li {
    width: 500px;
    height: 300px;
  }
  .section-voice__farmer ul li:first-child {
    margin-left: 110px;
  }
  .section-voice__farmer ul li:last-child {
    margin-right: 110px;
    padding-left: 40px;
  }
}
/*PCサイズここまで*/
/*VOICE_CONSUMER*/
.section-voice__consumer {
  margin-bottom: 40px;
  padding: 0 24px;
}
.section-voice__consumer h3 {
  font-family: "はれのそら明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 3.0rem;
  padding-bottom: 40px;
  line-height: 3.2rem;
}
.section-voice__consumer ul {
  list-style: none;
}
.section-voice__consumer li {
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
  background: #cce8f1;
  box-shadow: 0px 0px 0px 10px #cce8f1;
  border-radius: 0.5rem;
  border: dashed 2px #261f87;
  padding: 0.5rem 0.5rem;
}
.section-voice__consumer-picture {
  margin: 30px auto;
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}
.section-voice__consumer h4, h5 {
  top: 80px;
  padding: 10px 5px 10px 5px;
  font-size: 1.8rem;
  text-align: left;
}
.section-voice__consumer p {
  text-align: left;
  padding: 10px 5px 20px 5px;
}
/*PCサイズここから*/
@media (min-width:960px) {
  .section-voice__consumer {
    padding-top: 40px;
  }
  .section-voice__consumer h2 {
    max-width: 700px;
    margin: 20px 0 40px 370px;
    font-size: 3.0rem;
    padding: 10px;
  }
  .section-voice__consumer h3 {
    font-size: 3.4rem;
    font-weight: 600;
  }
  .section-voice__consumer p {
    text-align: left;
    padding: 10px 10px 10px 10px;
  }
  .sp {
    display: none;
  }
  .section-voice__consumer-content-wrapper {
    max-width: 960px;
    margin: 0 auto;
  }
  .section-voice__consumer ul {
    margin: 0 auto 80px auto;
    display: flex;
    justify-content: space-between;
  }
  .section-voice__consumer ul li {
    margin: 0 30px;
  }
}
/*PCサイズここまで*/
/*QUESTION*/
.section-question {
  margin: 40px 24px;
}
.section-question h2 {
  margin-bottom: 20px;
  color: #FFF;
  font-size: 2.2rem;
  font-weight: 400;
  border-radius: 0.5rem;
  background: #261f87;
  box-shadow: 0px 0px 0px 5px #261f87;
  border: dashed 2px #51a5dc;
  padding: 5px 0px 8px 5px;
}
.section-question h3, h4 {
  text-align: left;
  padding: 20px 0;
}
.section-question h3 {
  font-size: 2.0rem;
}
.section-question p {
  text-align: left;
}
/*PCサイズここから*/
@media (min-width:960px) {
  .sectipn-question {
    max-width: 1160px;
  }
  .section-question h2 {
    margin: 0 auto;
    max-width: 300px;
    font-size: 3.0rem;
    padding: 10px 0px 20px 0;
  }
  .section-question h3 {
    border-bottom: dotted #95a8ad;
  }
  .section-question__service {
    margin: 40px 150px;
    padding: 20px;
    border: solid 0.5px #95a8ad;
  }
  .section-question__farmer {
    margin: 40px 150px;
    padding: 20px;
    border: solid 0.5px #95a8ad;
  }
}
/*PCサイズここまで*/
/*FAINAL TRAIAL*/
.section-final__trial {
  background-color: #cce8f1;
  padding: 0 24px;
}
.section-final__trial-wrapper {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}
.section-final__trial h2 {
  font-family: "はれのそら明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 3.0rem;
  padding-bottom: 40px;
  line-height: 3.2rem;
}
.under-line {
  background: linear-gradient(transparent 70%, #ffdc00 70%);
}
.section-final__trial-point {
  width: 100%;
  height: auto;
}
.section-final__trial ul {
  list-style-type: none;
}
.section-final__trial ul li {
  text-align: center;
}
.section-final__trial-omake-hukidashi {
  width: 100%;
  max-width: 600px;
  height: auto;
}
.section-final__trial-omake-picture {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  border: solid 4px #FFF;
}
.section-final__trial-omake-text {
  font-size: 2.0rem;
  color: #FFF;
  margin: -80px 0 0 0;
}
.section-final__trial-omake-botton {
  margin-top: 160px;
  padding-bottom: 60px;
}
/*ボタンここから*/
.section-final__trial-omake-botton a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 2rem 2rem;
  width: 300px;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #ee7700;
  border-radius: 50vh;
  text-decoration: none;
}
.section-final__trial-omake-botton a::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(45deg);
}
.section-final__trial-omake-botton a:hover {
  text-decoration: none;
  background-color: #f4b095;
}
/*ボタンここまで*/
/*PCサイズここから*/
@media (min-width:1160px) {
  .section-final__trial-point {
    max-width: 800px;
  }
  .section-final__trial-wrapper ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    justify-content: space-between;
    padding-left: 40px;
  }
  /*ボタンここから*/
  .section-final__trial-omake-botton a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 20px 30px;
    width: 700px;
    color: #FFF;
    font-size: 2.0rem;
    font-weight: 600;
    background-color: #ee7700;
    border-radius: 50vh;
  }
  .section-final__trial-omake-botton a::after {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg);
  }
  .section-final__trial-omake-botton a:hover {
    text-decoration: none;
    background-color: #f4b095;
  }
  .sp {
    display: none;
  }
}
/*ボタンここまで*/
/*PCサイズここまで*/
/*footer*/
.section-footer {
  height: 100px;
  padding: 0;
  background-color: #e8e7e7;
  font-size: 1.2rem;
  position: relative;
}
.footer__copyright {
  display: block;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}