@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Murecho:wght@100;200;300;400;500;600;700;800;900&display=swap");
html {
  scroll-behavior: smooth;
  background-color: #f4eff0;
}

body {
  border-left: 3px solid #000;
  border-right: 3px solid #000;
  font-family: "Murecho", sans-serif;
  max-width: 714px;
  width: 714px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
  }
}

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

main {
  padding: 0 !important;
  color: #291e1e;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
a {
  transition: all 0.3s;
}

a:hover {
  opacity: 0.8;
}

.grecaptcha-badge {
  display: none;
}

.grecaptcha-logo {
  display: none;
}

.lp_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 32px;
  border: 3px solid #291e1e;
  background: #b94047;
  text-align: center;
  color: #f4eff0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lp_btn {
    width: 320px;
    height: 56px;
    font-size: 14px;
  }
}
.lp_btn span {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.lp_btn-long {
  width: 100%;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .lp_btn-mat {
    width: 100%;
    font-size: 12px;
    padding-right: 36px;
  }
}
.lp_btn__img {
  width: 104px;
  height: 92px;
  flex-shrink: 0;
  position: absolute;
  filter: drop-shadow(4px 4px 4px 0px rgba(0, 0, 0, 0.25));
  right: 40px;
  bottom: -6px;
}
@media screen and (max-width: 768px) {
  .lp_btn__img {
    width: 80px;
    height: auto;
    right: 20px;
  }
}
.lp_btn-line {
  background-color: #f4eff0;
  color: #291e1e;
  margin-bottom: 20px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .lp_btn-doc {
    width: 320px;
  }
}

.header-wrapper #nav {
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .header-wrapper #nav {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.header-wrapper #nav > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  width: 689px;
  height: 100px;
  background-color: #b94047;
  color: #F4EFF0;
  border-radius: 68px;
  border: 3px solid #000;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .header-wrapper #nav > ul {
    width: 100%;
    height: 80px;
  }
}
.header-wrapper #nav > ul li {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
  border-left: 1px solid #F4EFF0;
}
.header-wrapper #nav > ul li:first-of-type {
  border-left: 0px;
}
@media screen and (max-width: 768px) {
  .header-wrapper #nav > ul li {
    font-size: 12px;
    width: 100%;
  }
}
.header-wrapper #nav > ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 22px 27px;
}
@media screen and (max-width: 768px) {
  .header-wrapper #nav > ul li a {
    padding: 18px 4%;
  }
}

/*固定用css*/
.fixed {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10000;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1240px;
  height: 101px;
  padding: 0 4%;
  margin: 0 auto 5px auto;
  background-color: #b94047;
  border-bottom: 3px solid #000;
}
header .logo {
  height: 66px;
  width: 100%;
}
header .logo img {
  display: block;
  margin: 0 auto;
}
header .toggle-button {
  display: none;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  header .toggle-button {
    display: block;
  }
}
header .toggle-button__hamburger {
  position: relative;
  width: 50px;
  height: 50px;
}
header .toggle-button__hamburger span {
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  right: 0;
}
header .toggle-button__hamburger span:first-child {
  top: 20%;
}
header .toggle-button__hamburger span:nth-child(2) {
  top: calc(50% - 1px);
}
header .toggle-button__hamburger span:last-child {
  bottom: 20%;
}
header .toggle-button.open span:first-child {
  top: calc(50% - 1px);
  transform: rotateZ(45deg);
}
header .toggle-button.open span:nth-child(2) {
  display: none;
}
header .toggle-button.open span:last-child {
  top: calc(50% - 1px);
  transform: rotateZ(-45deg);
}

.header-menu {
  display: none;
  z-index: 20;
  position: fixed;
  top: 0;
  height: 100vh;
  background-color: lightblue;
}
.header-menu.open {
  display: block;
}

.to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.to-top__box {
  width: 100px;
  height: 100px;
  background-color: lightcoral;
}

.footer-wrapper {
  background-color: #b94047;
  border-top: 3px solid #291e1e;
  border-bottom: 3px solid #291e1e;
  width: 100%;
}

footer {
  width: 100%;
  padding: 30px 50px;
  margin: 0 auto;
}
footer .footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  footer .footer__wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
footer .footer__wrap__company {
  display: flex;
  align-items: center;
  width: auto;
}
@media screen and (max-width: 768px) {
  footer .footer__wrap__company {
    flex-direction: column;
    justify-content: center;
  }
}
footer .footer__wrap img {
  width: 83px;
  height: 83px;
}
@media screen and (max-width: 768px) {
  footer .footer__wrap img {
    width: 120px;
    height: 120px;
  }
}
footer .footer__wrap__text {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  footer .footer__wrap__text {
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
footer .footer__wrap__text h2 {
  color: #f4eff0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.56px;
}
footer .footer__wrap__text p {
  color: #f4eff0;
  font-size: 10px;
  font-weight: 500;
  line-height: 155%; /* 15.5px */
  letter-spacing: 0.4px;
}
footer .footer__wrap .copyright {
  color: #f4eff0;
  font-size: 10px;
  font-weight: 200;
}

.mv .splide__pagination {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .mv .splide__track {
    padding-left: 3em !important;
    padding-right: 3em !important;
  }
}
.mv .splide__slide {
  padding-top: 15px;
}
.mv .splide__slide img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.mv .splide__text {
  width: 100%;
  background-color: #f4eff0;
  padding: 28px 0;
}
.mv .splide__text h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #291e1e;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mv .splide__text h2 span {
  color: #291e1e;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.mv .splide__text h2 p {
  color: #291e1e;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  margin: 0 142px;
}
.mv .splide__arrow {
  -ms-flex-align: center !important;
  align-items: center !important;
  background: #b94047 !important;
  /* color: #fff; */
  border-radius: 50% !important;
  cursor: pointer !important;
  display: -ms-flexbox !important;
  display: flex !important;
  height: 75px !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  padding: 0 !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 75px !important;
  z-index: 1 !important;
  border: 3px solid #291e1e !important;
}
@media screen and (max-width: 768px) {
  .mv .splide__arrow {
    width: 40px !important;
    height: 40px !important;
  }
}
.mv .splide__arrow svg {
  fill: #fff !important;
  height: 24px !important;
  width: 24px !important;
}
.mv .is-prev img {
  display: block;
  transform: scale(0.8);
  margin-left: auto;
  margin-right: 0;
}
.mv .is-next img {
  display: block;
  transform: scale(0.8);
  margin-left: 0;
  margin-right: auto;
}

/* 見出し */
.h2_title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #291e1e;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.h2_title span {
  color: #291e1e;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* 貼り箱オンライン */
.online {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .online {
    padding-top: 50px;
  }
}
.online__title {
  background-color: #d8af47;
  border-top: 3px solid #291e1e;
  padding: 50px 0;
  margin-bottom: 48px;
  position: relative;
  overflow: visible;
}
.online__title p {
  width: 380px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 155%; /* 24.8px */
  letter-spacing: 0.64px;
}
@media screen and (max-width: 768px) {
  .online__title p {
    width: 100%;
  }
}
.online__title__img1 {
  position: absolute;
  width: 188px;
  height: auto;
  bottom: 87px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .online__title__img1 {
    width: 100px;
    bottom: auto;
    top: -30px;
  }
}
.online__title__img2 {
  position: absolute;
  width: 134px;
  height: auto;
  transform: rotate(-5deg);
  top: 80px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .online__title__img2 {
    width: 80px;
    top: auto;
    bottom: -46px;
    right: 20px;
  }
}
.online__shape {
  padding-bottom: 48px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .online__shape {
    padding-bottom: 80px;
  }
}
.online__shape h3 {
  text-align: center;
  color: #291e1e;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  margin-bottom: 24px;
}
.online__shape .shape__splide__content {
  width: 182px;
  padding: 10px 15px;
  border-radius: 10px;
  border: 3px solid #291e1e;
  background: #d8af47;
}
.online__shape .shape__splide__content img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  background: #f4eff0;
}
.online__shape .shape__splide__content .shape__splide__text p {
  color: #291e1e;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.48px;
  margin-top: 10px;
  margin-bottom: 0;
}
.online__shape .splide {
  margin-bottom: 48px;
}
.online__custum {
  border-bottom: 3px solid #291e1e;
  background: #d8af47;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .online__custum {
    padding: 50px 4%;
  }
}
.online__custum__subtitle {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px;
  margin-bottom: 10px;
}
.online__custum__title {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.online__custum__img {
  width: 85%;
  margin: 48px auto 40px auto;
}
@media screen and (max-width: 768px) {
  .online__custum__img {
    width: 100%;
  }
}
.online__custum__p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 220%;
  letter-spacing: 0.64px;
  margin-bottom: 28px;
}
.online__document {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 25px;
  padding: 48px 20px 0 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .online__document {
    flex-direction: column;
    align-items: center;
  }
}
.online__document::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("../image/document_img3.png");
  background-size: cover;
  position: absolute;
  top: 50px;
  left: -16px;
}
@media screen and (max-width: 768px) {
  .online__document::before {
    left: 0;
  }
}
.online__document__img {
  width: 40%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .online__document__img {
    width: 85%;
    margin: 0 auto 40px auto;
  }
}
.online__document__right {
  width: 60%;
  position: relative;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .online__document__right {
    width: 85%;
    padding-left: 0;
  }
}
.online__document__right h2 {
  text-align: left;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.online__document__right h2 span {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px;
  margin-top: 5px;
}
.online__document__right p {
  font-size: 16px;
  text-align: left;
  font-weight: 500;
  line-height: 155%; /* 24.8px */
  letter-spacing: 0.64px;
  margin-bottom: 16px;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .online__document__right p {
    margin-bottom: 10px;
  }
}
.online__document__right img {
  position: absolute;
  top: -20px;
  right: 48px;
  width: 86px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .online__document__right img {
    right: 0px;
    top: -20px;
  }
}

/* オーダーメイド */
.ordermade {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .ordermade {
    padding-top: 50px;
  }
}
.ordermade__title {
  background-color: #56ad73;
  border-top: 3px solid #291e1e;
  padding: 50px 0;
  margin-bottom: 48px;
  position: relative;
  overflow: visible;
}
.ordermade__title p {
  width: 380px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 155%; /* 24.8px */
  letter-spacing: 0.64px;
}
@media screen and (max-width: 768px) {
  .ordermade__title p {
    width: 100%;
  }
}
.ordermade__title__img1 {
  position: absolute;
  width: 188px;
  height: auto;
  bottom: 52px;
  right: 10px;
}
@media screen and (max-width: 768px) {
  .ordermade__title__img1 {
    width: 100px;
    bottom: auto;
    top: -40px;
  }
}
.ordermade__title__img2 {
  position: absolute;
  width: 134px;
  height: auto;
  transform: rotate(-5deg);
  top: 84px;
  left: 30px;
}
@media screen and (max-width: 768px) {
  .ordermade__title__img2 {
    width: 80px;
    top: auto;
    bottom: -60px;
    right: 20px;
  }
}
.ordermade__example {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ordermade__example {
    padding-bottom: 80px;
  }
}
.ordermade__example h3 {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  margin-bottom: 24px;
}
.ordermade__example .example__splide__content {
  width: auto;
  padding: 20px;
  border-radius: 10px;
  border: 3px solid #291e1e;
  background: #56ad73;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .ordermade__example .example__splide__content {
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
  }
}
.ordermade__example .example__splide__content img {
  border-radius: 10px;
  width: 40%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .ordermade__example .example__splide__content img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.ordermade__example .example__splide__content .example__splide__text {
  width: 60%;
  padding-left: 22px;
}
@media screen and (max-width: 768px) {
  .ordermade__example .example__splide__content .example__splide__text {
    width: 100%;
  }
}
.ordermade__example .example__splide__content .example__splide__text h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  margin-bottom: 16px;
  text-align: left;
}
.ordermade__example .example__splide__content .example__splide__text p {
  font-size: 11px;
  font-weight: 500;
  line-height: 155%; /* 17.05px */
  letter-spacing: 0.44px;
  text-align: left;
}
.ordermade__example .splide {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .ordermade__example .splide .splide__slide {
    width: 300px !important;
    min-height: 460px;
    height: auto !important;
  }
}
.ordermade__example .splide .splide__arrow {
  top: 40%;
}
@media screen and (max-width: 768px) {
  .ordermade__example .splide .splide__arrow {
    top: 50%;
  }
}
.ordermade__example .splide .splide__pagination {
  bottom: 0.4em;
}
.ordermade__flow {
  border-bottom: 3px solid #291e1e;
  background: #56ad73;
  padding: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ordermade__flow {
    padding: 50px 4%;
  }
}
.ordermade__flow__title {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.ordermade__flow__subtitle {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px;
  margin-top: 4px;
  margin-bottom: 60px;
}
.ordermade__flow__img0 {
  position: absolute;
  width: 186px;
  height: 186px;
  top: 48px;
  right: 36px;
}
@media screen and (max-width: 768px) {
  .ordermade__flow__img0 {
    width: 100px;
    height: auto;
    top: 82px;
    right: 20px;
  }
}
.ordermade__flow dl {
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.ordermade__flow dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #291e1e;
  border-radius: 50%;
  color: #f4eff0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 155%; /* 18.6px */
  letter-spacing: 0.96px;
  width: 54px;
  height: 54px;
  position: relative;
  z-index: 10;
}
.ordermade__flow dl dt::before {
  content: "";
  display: block;
  width: 3px;
  height: 220%;
  background-color: #291e1e;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .ordermade__flow dl dt::before {
    height: 330%;
  }
}
.ordermade__flow dl .dt_last::before {
  display: none;
}
.ordermade__flow dl dd {
  width: calc(100% - 54px);
  margin-top: 16px;
  padding-left: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 155%; /* 24.8px */
  letter-spacing: 0.64px;
}
.ordermade__flow dl dd span {
  margin-top: 10px;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 155%; /* 18.6px */
  letter-spacing: 0.48px;
}
.ordermade__flow__btntext {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.48px;
  margin-bottom: 4px;
}
.ordermade__flow__img {
  position: absolute;
  width: 100px;
  height: auto;
  bottom: 60px;
  left: 60px;
}
@media screen and (max-width: 768px) {
  .ordermade__flow__img {
    width: 60px;
    left: 10px;
    bottom: 124px;
  }
}
.ordermade__flow__img2 {
  position: absolute;
  width: 74px;
  height: auto;
  bottom: 26px;
  right: 80px;
}
@media screen and (max-width: 768px) {
  .ordermade__flow__img2 {
    width: 42px;
    right: 20px;
    bottom: -15px;
  }
}

/* ラッピング */
.wrapping {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .wrapping {
    padding-top: 50px;
  }
}
.wrapping__title {
  background-color: #4e7ec7;
  border-top: 3px solid #291e1e;
  padding: 50px 0;
  margin-bottom: 48px;
  position: relative;
  overflow: visible;
}
.wrapping__title p {
  width: 380px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 155%; /* 24.8px */
  letter-spacing: 0.64px;
}
@media screen and (max-width: 768px) {
  .wrapping__title p {
    width: 100%;
  }
}
.wrapping__title__img1 {
  position: absolute;
  width: 188px;
  height: auto;
  bottom: 28px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .wrapping__title__img1 {
    width: 100px;
    bottom: auto;
    top: -30px;
  }
}
.wrapping__title__img2 {
  position: absolute;
  width: 134px;
  height: auto;
  top: 82px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .wrapping__title__img2 {
    width: 80px;
    top: auto;
    bottom: -65px;
    right: 20px;
  }
}
.wrapping__original {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .wrapping__original {
    padding-bottom: 80px;
  }
}
.wrapping__original h3 {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  margin-bottom: 32px;
}
.wrapping__original .wrapping__splide {
  margin-bottom: 24px;
}
.wrapping__original .wrapping-r__splide {
  margin-bottom: 32px;
}
.wrapping__original .wrapping__splide__content {
  height: 150px;
  width: 150px;
}
.wrapping__original .wrapping__splide__content img {
  width: 100%;
  height: auto;
}
.wrapping__box {
  background-color: #4e7ec7;
  border-bottom: 3px solid #291e1e;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .wrapping__box {
    padding: 36px 30px 36px 30px;
  }
}
.wrapping__box__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .wrapping__box__wrap {
    display: none;
  }
}
.wrapping__box__wrap-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .wrapping__box__wrap-sp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
  }
  .wrapping__box__wrap-sp .wrapping__box__flex__img {
    width: 34%;
  }
  .wrapping__box__wrap-sp .wrapping__box__flex__img2 {
    width: 34%;
  }
  .wrapping__box__wrap-sp .wrapping__box__flex__center {
    width: 100%;
  }
}
.wrapping__box__flex {
  border: 3px solid #291e1e;
  border-radius: 10px;
  background-color: #f4eff0;
  padding: 6px 30px 24px 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .wrapping__box__flex {
    padding: 24px 4% 24px 4%;
  }
}
.wrapping__box__flex::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("../image/wow.png");
  background-size: cover;
  position: absolute;
  top: 120px;
  left: -26px;
}
.wrapping__box__flex::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("../image/look.png");
  background-size: cover;
  position: absolute;
  top: 10px;
  right: -26px;
}
.wrapping__box__flex__img {
  width: 100px;
}
.wrapping__box__flex__center {
  width: calc(100% - 186px);
}
@media screen and (max-width: 768px) {
  .wrapping__box__flex__center {
    width: calc(100% - 140px);
  }
}
.wrapping__box__flex__center h2 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.64px;
  text-align: center;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .wrapping__box__flex__center h2 {
    margin-bottom: 10px;
  }
}
.wrapping__box__flex__center h2 span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-left: 16px;
}
@media screen and (max-width: 768px) {
  .wrapping__box__flex__center h2 span {
    display: block;
    margin-top: 6px;
    margin-left: 0;
  }
}
.wrapping__box__flex__center p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  text-align: center;
}
.wrapping__box__flex__img2 {
  width: 86px;
}
@media screen and (max-width: 768px) {
  .wrapping__box__flex__img2 {
    width: 70px;
  }
}

.slidetext {
  margin-top: 16px;
  overflow-x: hidden;
  display: flex;
  width: 100%;
  white-space: nowrap;
  z-index: 1;
}
.slidetext ul {
  animation: flowing 20s linear infinite;
  transform: translateX(100%);
  margin: 0;
  padding: 0;
}
@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.slidetext ul li {
  white-space: nowrap;
  color: #b94047;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.8px;
  display: inline-block;
  padding-right: 10px;
}

.greeting {
  padding: 58px 50px 60px 50px;
}
@media screen and (max-width: 768px) {
  .greeting {
    padding: 50px 4% 50px 4%;
  }
}
.greeting__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .greeting__flex {
    flex-direction: column;
  }
}
.greeting__flex img {
  width: 40%;
  height: auto;
  border: 3px solid #291e1e;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .greeting__flex img {
    width: 85%;
    margin-bottom: 20px;
  }
}
.greeting__flex__text {
  width: 60%;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .greeting__flex__text {
    width: 85%;
    padding-left: 0;
  }
}
.greeting__flex__text h2 {
  font-size: 20px;
  font-weight: 800;
  line-height: 198%; /* 39.6px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .greeting__flex__text h2 {
    font-size: 18px;
  }
}
.greeting__flex__text p {
  font-size: 12px;
  font-weight: 500;
  line-height: 185%; /* 22.2px */
  letter-spacing: 0.48px;
  margin-top: 8px;
}
.greeting__line {
  width: 500px;
  border-radius: 10px;
  border: 5px solid #000;
  background: #619f76;
  display: flex;
  align-items: flex-end;
  padding: 30px 30px 0 15px;
  margin: 70px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .greeting__line {
    display: none;
  }
}
.greeting__line-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .greeting__line-sp {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 30px 15px 0 15px;
    align-items: center;
  }
}
.greeting__line img {
  width: 30%;
  height: auto;
  object-fit: contain;
}
.greeting__line__text {
  width: 70%;
  color: #f4eff0;
  padding-left: 28px;
}
@media screen and (max-width: 768px) {
  .greeting__line__text {
    padding-left: 12px;
  }
}
.greeting__line__text h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1.28px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .greeting__line__text h2 {
    font-size: 24px;
  }
}
.greeting__line__text h2 span {
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-top: 8px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .greeting__line__text h2 span {
    font-size: 18px;
  }
}
.greeting__line__text p {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.48px;
  margin-bottom: 24px;
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .greeting__line__text p {
    margin-bottom: 16px;
  }
}/*# sourceMappingURL=style.css.map */