@charset "utf-8";
html {
  scroll-behavior: smooth;
}
section, #dessert, #food, #drink {
  scroll-margin-top: 85px;
}
a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}
img {
  max-width: 100%;
  object-fit: cover;
}
body {
  color: #333;
  font-size: 20px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9;
  letter-spacing: 0.1em;
  overflow-x: hidden;
}

.wrapper {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}
.ff-en {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.tac {
  text-align: center;
}
.animation {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s;
}
.show.animation {
  opacity: 1;
  transform: none;
}

.page__title {
  font-size: 45px;
  text-align: center;
  margin-bottom: 15px;
}
.page__text {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width:768px) {
  body {
    font-size: 16px;
  }
  section, #dessert, #food, #drink {
    scroll-margin-top: 48px;
  }
  .page__title {
    font-size: 24px;
  }

}
@media screen and (min-width:768.001px) {
  .sp_only {
    display: none !important;
  }
}
@media screen and (max-width:768px) {
  .pc_only {
    display: none !important;
  }
}


/* =============================================
ヘッダー
============================================= */
.header__top {
  display: grid;
  align-items: center;
  grid-template-columns: auto max-content max-content;
  column-gap: 20px;
  padding-inline: 20px;
  height: 85px;
  width: 100%;
  background: #fff;
  /* position: fixed; */
  top: 0;
  left: 0;
  z-index: 50;
}
.logo a {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.logo img {
  width: 63px;
  object-fit: contain;
}
.logo p {
  font-weight: 500;
  font-size: clamp(24px, 3.7vw, 40px);
  line-height: 1.2;
  letter-spacing: 0.34em;
}
.logo span {
  font-size: clamp(10px, 1vw, 12px);
  display: block;
  letter-spacing: 1em;
}
.header__contact {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  column-gap: 20px;
  justify-self: end;
}
.header__tel {
  display: grid;
  grid-template-rows: repeat(2, auto);
  line-height: 1;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
}
.header__tel p {
  font-size: clamp(10px, 1.1vw, 14px);
  font-weight: 700;
}
.header__tel a {
  font-size: clamp(20px, 3.2vw, 35px);
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.header__tel a::before {
  content: "";
  width: 1em;
  height: 80%;
  background: url(../img/phone-icon.svg) no-repeat center/contain;
}
.header__contact img {
  width: clamp(30px, 3.7vw, 40px);
  height: clamp(30px, 3.7vw, 40px);
  object-fit: contain;
}
.header__menu {
  cursor: pointer;
  width: 45px;
  height: 45px;
  position: relative;
  justify-self: end;
}
.header__menu span {
  position: absolute;
  width: 70%;
  height: 1px;
  background: #4C1015;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.header__menu span:nth-of-type(1) {
  top: 30%;
}
.header__menu span:nth-of-type(3) {
  top: 70%;
}
.header__menu.show span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__menu.show span:nth-of-type(2) {
  opacity: 0;
}
.header__menu.show span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header__menu p {
  font-size: 40px;
  color: #4C1015;
}
.header__menu img {
  max-width: 90px;
}
.hamburger {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 85px);
  padding: 50px 20px 20px;
  background: #FFF;
  z-index: 40;
  transform: translateY(-100%);
  transition: .3s;
  display: none;
}
.hamburger.show {
  transform: none;
}
.hamburger ul {
  color: #4C1015;
  display: grid;
  justify-content: center;
  font-size: 14px;
  grid-template-rows: repeat(5, 1fr);
  grid-auto-flow: column;
  gap: 30px 60px;
  line-height: 1;
}
.hamburger ul .ff-en {
  display: block;
  font-size: 30px;
}

.hamburger ul img {
  max-width: 300px;
}
.fixed__menu {
  display: none !important;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  z-index: 10;
}
.fix-insta, .fix-mail {
  width: 75px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  border-radius: 20px 0 0 20px;
  padding-block: 20px;
}
.fix-insta {
  background: #96CD00;
}
.fix-mail {
  background: #4C1015;
  font-size: 24px;
}
.fix-mail p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

main {
  padding-top: 85px;
}
@media screen and (max-width:768px) {
  .header__top {
    height: auto;
    padding-block: 5px;
    grid-template-columns: auto max-content;
  }
  .logo img {
    width: 30px;
  }
  .logo span {
    letter-spacing: 0.3em;
  }
  .header__menu p {
    font-size: 20px;
  }
  .header__menu img {
    width: 50px;
  }
  .hamburger {
    height: calc(100% - 48px);
  }
  .hamburger ul {
    font-size: 14px;
    grid-auto-flow: row;
    row-gap: 25px;
  }
  .hamburger ul .ff-en {
    font-size: 20px;
  }
  main {
    padding-top: 62px;
  }
}


/* =============================================
トップページ
============================================= */
.fv {
  width: 100%;
  position: relative;
  margin-top: 100px;
  margin-bottom: 200px;
}
.fv__img {
  width: calc(100% - 120px);
  border-radius: 70px;
  display: block;
  margin-inline: auto;
}
.fv__catch {
  color: #4C1015;
  position: absolute;
  top: 50px;
  width: 100%;
  text-align: center;
  font-size: 45px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.34em;
}
.fv__scroll {
  font-family: "Cabin", sans-serif;
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  column-gap: 15px;
  align-items: center;
}
.fv__scroll span {
  width: 1px;
  height: 100px;
  position: relative;
  overflow: hidden;
}
.fv__scroll span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  width: 100%;
  height: 100%;
  background: #4C1015;
  animation: scroll 2s ease-in infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(-100%);
  }
}

.top-concept {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(4, max-content);
  column-gap: 100px;
  margin-bottom: 120px;
}
.heading {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 60px;
}
.heading span {
  font-size: 60px;
  font-weight: 600;
  display: block;
  letter-spacing: 0.13em;
}
.top__title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}
.top__text {
  font-size: 20px;
  font-weight: 500;
}
.top-concept__img {
  grid-column: 2;
  grid-row: 1 / 5;
  width: 400px;
}
.btn {
  margin-top: 80px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  background: #96CD00;
  border: 1px solid #96CD00;
  padding: 1.2em 5em;
  border-radius: 40px;
  justify-self: start;
  line-height: 1;
  align-self: self-start;
  display: inline-block;
  text-align: center;
}
.btn:hover {
  opacity: 1;
  color: #96CD00;
  background: #fff;
}

.top-voice {
  display: grid;
  /* grid-template-columns: repeat(2, auto); */
  /* grid-template-rows: repeat(4, max-content); */
  column-gap: 100px;
  margin-bottom: 120px;
}
.top-voice h2 {
  text-align: center;
}
.top-voice__img {
  grid-column: 1;
  grid-row: 1 / 5;
  width: 600px;
}
.ti-widget.ti-goog .ti-widget-container, .ti-widget.ti-goog .ti-widget-container * {
  font-family: "Noto Sans JP", sans-serif !important;
}
.ti-rating-text > span:nth-of-type(2) {
  width: 100%;
  font-size: 20px !important;
  color: #f6bb06 !important;
}
.ti-rating-text > span:nth-of-type(2) strong {
  font-size: 30px !important;
  color: #f6bb06 !important;
}
.top-works {
  width: 100%;
  background: #F5F8E8;
  text-align: center;
  padding-block: 120px;
}
.top-works h2 {
  margin-bottom: 40px;
}
.top-works__items {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  font-weight: 700;
}
.top-works__items img {
  border-radius: 20px;
  margin-bottom: 30px;
  object-fit: cover;
  height: auto;
  aspect-ratio: 16/9;
}
.top-works__items p {
  font-size: 20px;
}


.top-support {
  background: #F5F8E8;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: repeat(4, max-content);
  column-gap: 100px;
  padding-block: 120px;
  padding-left: max(calc(50% - 620px), 20px);
  margin-bottom: 120px;
}
.top-support__img {
  grid-column: 2;
  grid-row: 1 / 5;
  width: 100%;
  border-radius: 30px 0 0 30px;
}

.top-qa {
  background: #4C1015;
  border-radius: 30px;
  max-width: 1280px;
  margin-inline: auto;
  padding: 80px 20px;
  color: #fff;
  margin-block: 100px;
}
.top-qa .wrapper {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(4, max-content);
  column-gap: 100px;
}
.top-qa__img {
  grid-column: 1;
  grid-row: 1 / 5;
  width: 600px;
  border-radius: 30px;
}

.top-news {
  width: 100%;
  text-align: center;
  margin-bottom: 240px;
}
.top-news h2 {
  margin-bottom: 40px;
}
.top-news__items {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; 
}
.top-news__items img {
  border-radius: 20px;
  margin-bottom: 30px;
  object-fit: contain;
  height: auto;
}
.top-news__items p {
  font-size: 18px;
  padding-right: 76px;
  position: relative;
}
.top-news__items p::after {
  content: "";
  width: 36px;
  height: 36px;
  background: url(../img/right-arrow.svg) no-repeat center/contain;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.top-news__items a:hover p::after {
  right: 0;
}

.top-sns {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 240px;
}

.top-contact {
  background: #C8E26B;
  width: 100%;
  padding: 80px 20px;
}
.top-contact .wrapper{
  display: grid;
  grid-template-rows: repeat(2, min-content);
  column-gap: 80px;
}
.top-contact .btn {
  grid-column: 2;
  grid-row: 1 / 3;
  background: #4C1015;
  border: 1px solid #4C1015;
  font-size: 20px;
  align-self: end;
  margin-bottom: 0;
}
.top-contact .btn:hover {
  color: #4C1015;
  background: #fff;
}
@media screen and (max-width:768px) {
  .fv {
    margin-top: 0;
    margin-bottom: 100px;
  }
  .fv__img {
    width: 100%;
    border-radius: 0;
    height: 60vh;
  }
  .fv__catch {
    font-size: 20px;
    top: 10px;
  }
  .fv__scroll {
    margin-top: 30px;
  }
  .fv__scroll span {
    height: 50px;
  }
  .heading span {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .top__title {
    font-size: 20px;
  }
  .top__text {
    font-size: 16px;
  }
  .btn {
    width: 80%;
    padding: 1.2em 10px;
    margin: 30px auto;
    font-size: 14px;
  }
  .top-concept {
    grid-template-columns: auto;
  }
  .top-concept__img {
    grid-area: auto;
  }
  .top-voice {
    grid-template-columns: auto;
  }
  .top-voice__img {
    grid-area: auto;
  }
  .top-works {
    padding-bottom: 0;
  }
  .top-works__items {
    grid-template-columns: auto;
  }
  .top-works__items p {
    font-size: 16px;
  }
  .top-works__items img {
    margin-bottom: 10px;
  }
  .top-support {
    grid-template-columns: auto;
    padding-inline: 20px;
  }
  .top-support__img {
    grid-area: auto;
    border-radius: 30px;
  }
  .top-news {
    margin-bottom: 40px;
  }
  .top-news__items {
    grid-template-columns: auto;
  }
  .top-news__items img {
    margin-bottom: 10px;
  }
  .top-news__items p {
    font-size: 16px;
  }
  .top-qa {
    margin-block: 50px;
  }
  .top-qa .wrapper {
    grid-template-columns: auto;
  }
  .top-qa__img {
    grid-area: auto;
  }
  .top-contact .wrapper {
    grid-template-columns: auto;
  }
  .top-contact .heading span {
    margin-bottom: 0;
  }
  .top-contact .btn {
    grid-area: auto;
    font-size: 14px;
  }
  .top-sns {
    margin-bottom: 50px;
  }
}


/* =============================================
フッター
============================================= */
footer {
  background: #58393C;
  padding: 80px 0 20px;
  color: #fff;
}
.footer__block {
  display: grid;
  grid-template-columns: repeat(2, auto);
}
.footer__copy {
  text-align: center;
  font-size: 20px;
}
.footer__address {
  font-size: 15px;
  margin-top: 12px;
  margin-bottom: 14px;
}
.footer__tel {
  margin-bottom: 30px;
}
.footer__tel span {
  font-size: 32px;
}
.footer__sns {
  display: flex;
  column-gap: 20px;
  align-items: center;
}
.footer__nav {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
.footer__nav::before {
  content: "";
  width: 2px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 45%;
}
.footer__nav li {
  padding-bottom: 40px;
  line-height: 1;
}
.footer__nav li:nth-of-type(5), .footer__nav li:nth-of-type(6), .footer__nav li:nth-of-type(7), .footer__nav li:nth-of-type(8) {
  padding-left: 5%;
}
.footer__nav span {
  display: block;
  font-size: 36px;
  font-weight: 400;
}
@media screen and (max-width:1000px) {
  footer {
    padding-top: 40px;
  }
  .footer__block {
    grid-template-columns: 100%;
  }
  .footer__left {
    margin-bottom: 50px;
  }
  .footer__address {
    margin-block: 10px;
  }
  .footer__tel {
    margin-bottom: 10px;
  }
  .footer__nav {
    margin-bottom: 30px;
  }
  .footer__nav li {
    font-size: 14px;
    padding-bottom: 20px;
  }
  .footer__nav span {
    font-size: 24px;
  }
}
@media screen and (max-width:768px) {
  .footer__copy {
    font-size: 10px;
    padding: 18px 0;
  }
}

/* =============================================
CONCEPTページ
============================================= */

.page__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 60px;
  text-align: center;
}
:not(.single) h1.page__title, .single p.page__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page__title span {
  font-size: 85px;
  font-weight: 600;
  display: block;
  letter-spacing: 0.13em;
  line-height: 1.2;
}
.concept__about {
  background: #F5F8E8;
  padding-block: 100px;
}
.concept__about .wrapper {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: max-content repeat(2, auto);
  column-gap: 100px;
}
.concept__about h2 {
  grid-row: 1;
  grid-column: 1 / 3;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
}
.about__text {
  grid-row: 2 / 4;
  grid-column: 1;
}
.about__text span {
  font-size: 30px;
  font-weight: 500;
  display: block;
  line-height: 1.2;
}
.about__img {
  grid-row: 2;
  grid-column: 2;
  border-radius: 30px;
  margin-bottom: 50px;
  width: 400px;
  align-self: end;
}
.about__name {
  grid-row: 3;
  grid-column: 2;
  text-align: right;
  font-family: "Zen Kurenaido", sans-serif;
  margin-top: 50px;
}
.concept__point {
  padding-block: 120px;
}
.concept__point h2 {
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 100px;
}
.concept__point li {
  display: grid;
  grid-template-rows: repeat(2, max-content);
  column-gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}
.concept__point li:last-of-type {
  margin-bottom: 0;
}
.concept__point h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}
.concept__point h3 span {
  font-size: 40px;
}
.concept__point img {
  grid-column: 2;
  grid-row: 1 / 3;
  border-radius: 30px;
}
.link-block {
  margin-block: 100px;
}
.link-block a {
  width: 990px;
  max-width: 100%;
  margin: 0 auto 65px;
  padding: 1.2em 0.4em;
  text-align: center;
  font-size: clamp(12px, 3vw, 24px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4em 1.5em;
  line-height: 1;
  border-radius: 105px;
  position: relative; 
}
.link-block a span {
  font-size: clamp(16px, 4vw, 40px);
}
.link-block a::after {
  content: "";
  width: clamp(30px, 4vw, 40px);
  height: clamp(30px, 4vw, 40px);
  background: url(../img/right-arrow.svg) no-repeat center/contain;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.link-block a:hover::after {
  right: 20px;
}
.link-block .link__works {
  background: #E3EEB3;
}
.link-block .link__voice {
  background: #DBED8C;
}
.link-block .link__news {
  background: #B5C571;
}
@media screen and (max-width:768px) {
  .page__title {
    font-size: 18px;
  }
  .page__title span {
    font-size: 40px;
  }
  .concept__about .wrapper {
    grid-template-columns: auto;
  }
  .concept__about h2 {
    grid-column: auto;
    font-size: 24px;
    margin-bottom: 30px;
  }
  .about__text {
    margin-bottom: 30px;
  }
  .about__text span {
    font-size: 24px;
  }
  .about__img {
    grid-area: auto;
    justify-self: center;
    margin-bottom: 30px;
  }
  .about__name {
    grid-area: auto;
    margin-top: 0;
  }
  .concept__point {
    padding-bottom: 0;
  }
  .concept__point h2 {
    font-size: 30px;
    margin-bottom: 50px;
  }
  .concept__point h3 {
    font-size: 26px;
  }
  .concept__point h3 span {
    font-size: 34px;
  }
  .concept__point li {
    margin-bottom: 60px;
  }
  .concept__point p {
    margin-bottom: 30px;
  }
  .concept__point img {
    grid-area: auto;
  }
  .link-block {
    margin-block: 50px;
  }
  .link-block a {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .link-block a::after {
    right: 15px;
  }
  .link-block a:hover::after {
    right: 10px;
  }
}

/* =============================================
FLOWページ
============================================= */
.flow__items ol {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 200px;
}
.flow__items ol::before {
  content: "";
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #4C1015;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.flow__items ol::after {
  content: "";
  height: 100%;
  width: 2px;
  background: #4C1015;
  position: absolute;
  top: 0;
  left: 50%;
}
.flow__items li {
  position: relative;
  padding-bottom: 20px;
  align-self: start;
}
.flow__items li::before {
  content: "";
  width: 80%;
  height: 1px;
  background: #4C1015;
  position: absolute;
  bottom: 0px;
  right: 0;
}
.flow__items li::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #A6A1A1;
  position: absolute;
  bottom: -5px;
  right: 80%;
}
.flow__items li:nth-last-of-type(2n+1):before {
  bottom: 0px;
  right: auto;
  left: 0;
}
.flow__items li:nth-last-of-type(2n+1)::after {
  right: auto;
  left: 80%;
}
.flow__items li:nth-of-type(2n) {
  padding-left: 50px;
  margin-top: 300px;
}
.flow__items li:nth-of-type(2n+1) {
  padding-right: 50px;
}
.flow__items h3 {
  display: grid;
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 28px;
}
.flow__items li:nth-of-type(2n) h3 {
  text-align: right;
}
.flow__items .step {
  font-size: 24px;
}
.flow__items .no {
  font-size: 60px;
}
.flow__items .add {
  font-size: 24px;
  margin-top: 10px;
}
.flow__img {
  border-radius: 30px;
  margin-bottom: 20px;
}
.flow__items ol .circle {
  content: "";
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #4C1015;
  position: absolute;
  bottom: -60px;
  left: 0;
  transform: translate(-50%, 50%);
}
.flow__items ol .circle:nth-last-of-type(2) {
  bottom: -104px;
}
.flow__items ol .circle:nth-last-of-type(3) {
  bottom: -148px;
}
.flow__items ol .circle:nth-last-of-type(4) {
  bottom: -192px;
}
.flow__text2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 150px;
}
.flow__text2 span {
  font-size: 32px;
}
@media screen and (max-width:768px) {
  .flow__items ol {
    grid-template-columns: 100%;
  }
  .flow__items ol::before {
    left: 0;
  }
  .flow__items ol::after {
    left: 0;
  }
  .flow__items li {
    margin-bottom: 50px;
  }
  .flow__items li:nth-last-of-type(2n):before {
    left: 0;
    right: auto;
  }
  .flow__items li:nth-last-of-type(2n)::after {
    left: 80%;
    right: auto%;
  }
  .flow__items li:nth-of-type(2n) {
    padding-left: 20px;
    margin-top: 0;
  }
  .flow__items li:nth-of-type(2n+1) {
    padding-right: 0;
    padding-left: 20px;
  }
  .flow__items li:last-of-type {
    margin-bottom: 0;
  }
  .flow__items li:nth-of-type(2n) h3 {
    text-align: left;
  }
  .flow__items h3 {
    font-size: 26px;
  }
  .flow__items .step {
    font-size: 18px;
  }
  .flow__items .no {
    font-size: 40px;
  }
  .flow__items .add {
    font-size: 16px;
  }
  .flow__text2 {
    font-size: 30px;
    margin-bottom: 50px;
  }
  .flow__text2 span {
    font-size: 24px;
  }
}




/* =============================================
ページ
============================================= */


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

  
}

/* =============================================
ページ
============================================= */


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

  
}

/* =============================================
CONTACTページ
============================================= */
.contact {
  background: #F5F8E8;
  padding: 50px 0 90px;
}
.contact h2 {
  font-size: 46px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 14px;
}
.contact__lead {
  text-align: center;
  font-size: 20px;
  margin-bottom: 60px;
}
.contact__lead span {
  color: #5C8934;
  font-weight: 700;
}
.contact__table {
	border: none;
	max-width: 1100px;
  width: 100%;
	margin-inline: auto;
}
.contact__table th > p {
	margin-bottom: 0;
	font-size: 28px;
  width: 240px;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact__table th.wide p {
  width: 370px;
}
.contact__table tr {
	display: flex;
	margin-bottom: 60px;
  column-gap: 30px;
  align-items: flex-start;
}
.contact__table tr.textarea {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 40px;
}
.contact__table tr.textarea th > p {
  margin-bottom: 30px;
}
.contact__table :is(td, th) {
	border: none;
}
.contact__table th {
	padding: 0;
	display: flex;
}
.contact__table td {
	padding: 0;
}
.contact__table .required {
	font-size: 20px;
  font-weight: 700;
	background: #BC1616;
	padding: 5px 13px;
	color: #fff;
	margin-left: 20px;
}
.contact__table :is(input, select, textarea) {
	border: 1px solid #58585880;
  border-radius: 7px;;
  background: #fff;
	padding: 7px 10px;
	margin-bottom: 0;
	font-size: 16px;
}
.contact__table .ajaxzip3 {
  background: #A0AD66;
  color: #fff;
  font-weight: 700;
  padding: 0px 30px;
  position: relative;
}
.contact__table .ajaxzip3::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 38%;
  right: 10px;
}


.contact__table input::placeholder {
	color: #D9D7D7;
	font-size: 16px;
}
.contact__table .wpcf7-list-item {
	display: block;
	margin-bottom: 15px;
	margin-left: 0;
}
.contact__table textarea {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
  width: 100%;
}
input {
	font-family: "Noto Sans JP", sans-serif;
}
.send-btn {
	text-align: center;
}
.send-btn p {
	display: inline-flex;
  justify-content: center;
  flex-direction: column;
	align-items: center;
	position: relative;
}
.send-btn p:after {
	content: "";
	width: 40px;
	height: 40px;
  background: url(../img/contact-arrow.svg) no-repeat center/contain;
	position: absolute;
  top: 25px;
  right: 40px;
	transition: 0.3s;
}
.send-btn input {
  font-size: 32px;
  color: #fff;
  line-height: 1;
	background: #849247;
	padding: 0.8em 4em;
	border-radius: 50px;
	border: 1px solid #849247;
	transition: 0.3s;
}

.send-btn p:hover input {
	background: #fff;
	color: #849247;
}
.send-btn p:hover::after {
	border-color: #849247;
}
.back-btn {
	text-align: center;
}
.back-btn input {
	background: none;
	border: none;
	cursor: pointer;
	text-decoration: underline;
	color: #13415A;
  font-size: 16px;
}
.post-name-thanks .entry-body {
	text-align: center;
}
.thanks__text {
	display: inline-block;
	width: min(100%, 800px);
}


@media screen and (max-width:768px) {
  .contact h2 {
    font-size: 24px;
  }
  .contact__lead {
    font-size: 16px;
  }
  .contact__table tr {
    flex-direction: column;
  }
  .contact__table th > p {
    width: 100%;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .contact__table th.wide p {
    width: 100%;
  }
  .contact__table th > p {
    justify-content: flex-start;
  }
  .contact__table :is(th, td) {
    width: 100%;
  }
  .send-btn input {
    font-size: 14px;
  }
  .contact__table :is(input, select, textarea) {
    width: 100%;
  }
  .contact__table .checkbox input {
    width: auto;
  }
  .send-btn p:after {
    width: 20px;
    height: 20px;
    top: 10px;
    right: 20px;
  }
  .back-btn input {
    font-size: 12px;
  }
}

/* =============================================
PRIVACY POLICYページ
============================================= */
p.page__title {
  font-size: 20px;
  margin-bottom: 100px;
}
p.page__title span {
  font-size: 40px;
}
.privacy__content dt {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
}

.privacy__content dd {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 50px;
}
.privacy__content ol {
  margin-block: 1em;
}
.privacy__content li:not(:last-of-type) {
  margin-bottom: 1em;
}
.privacy__company {
  margin-top: 150px;
}
.privacy__company span {
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .privacy__content dt {
    font-size: 24px;
  }
  .privacy__content dd {
    font-size: 16px;
  }
  
}

/* =============================================
WORKSページ
============================================= */
.page__category {
  height: 55px;
  line-height: 55px;
  max-width:700px;
  width: 90%;
  margin: 0 auto;
  background: #B5C571;
  text-align: center;
  border-radius: 30.5px;
  -webkit-border-radius: 30.5px;
  -moz-border-radius: 30.5px;
  -ms-border-radius: 30.5px;
  -o-border-radius: 30.5px;
}

.works-cat__list {
  display: grid;
  grid-template-columns: repeat(3,max-content);
  justify-content: center;
  column-gap:50px;
  row-gap:50px;
  width: 80%;
  max-width: 700px;
  margin: 57px auto 0;
  font-weight: 700;
  text-decoration:underline;
}

.works-cat__list .cat-item a::before {
  content: "＃";
}

.works-cat__list .cat-item a {
  display: block;
}

.page_archive {
  font-size: 40px;
  font-weight: 600;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  letter-spacing: 0.3em;
  margin: 130px auto 60px;
  position: relative;
}

.page_archive::after {
  content: "";
  width:240px;
  height: 2px;
  background: #4C1015;
  display: block;
  position: absolute;
  left:50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.page_archive + p {
  text-align: center;
}

@media screen and (max-width:768px) {
  .page__category {
    font-size: 14px;
    width:95%;
  }

  .works-cat__list {
    display: block;
  }

  .works-cat__list .cat-item {
    padding-top: 20px;
  }
}

/* 投稿サムネイル */
.works__item {
  column-gap: 30px;
  row-gap: 0;
}

.works_list {
  margin-bottom: 100px;
}

.works_thumnail {
  position: relative;
}

.works_thumnail > p {
  position: absolute;
  top: 10px;
  left:20px;
  font-size: 14px;
  font-weight: 400;
  width:180px;
  height: 30px;
  text-align: center;
  background: #4C1015;
  color:#fff;
  border-radius:11px;
  -webkit-border-radius:11px;
  -moz-border-radius:11px;
  -ms-border-radius:11px;
  -o-border-radius:11px;
}

.works_list > h3,
.works_list > a {
  font-weight: 700;
}


/* ページネーション */
.nav-links {
  text-align: center;
  margin-top: 50px;
}

span.page-numbers.current {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #4C1015;
  color:#fff;
}

a.page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border:1px solid #4C1015;
}

a.next.page-numbers,
a.prev.page-numbers {
  border: none;
  width: auto;
}

.taxonomy_text {
  text-align: center;
}

@media screen and (max-width:768px) {
  h3.page_archive {
    font-size: 24px;
    margin-top: 60px;
  }

  .works_list {
    margin-bottom: 50px;
  }
}

/* =============================================
WORKS詳細ページ
============================================= */
.wrap{
  max-width: 1200px;
  width:95%;
  background: #FBF9F6;
  padding-bottom: 80px;
}

.works_wrap {
  max-width: 1000px;
  width:95%;
  margin: 0 auto;
  padding-top: 70px 
}

.works_title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 4px double #4C1015;
}

.works_description {
  margin-top: 16px;
  margin-bottom: 30px;
}


/* スライダー */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  margin: auto;
  position: absolute;
  bottom: 0;
  top:auto;
  
}
/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  width:26px;
  height: 44px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  background: #4C1015;
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  width:26px;
  height: 44px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #4C1015;
}

.swiper-button-prev,
.swiper-button-next {
  height: auto;
}

.mySwiper2 {
  width: 100%;
}

.mySwiper {
  box-sizing: border-box;
  padding: 0 0;
  margin-bottom: 30px;
}

.mySwiper .swiper-slide {
  width: 22%;
  height: 100%;
  opacity: 0.4;
  line-height: 80px;
  margin-top: 20px;
  padding-inline: 10px;
  cursor: pointer;
  width: 25% !important;
}

.mySwiper .swiper-wrapper {
  flex-wrap: wrap;
  margin-top: 40px;
}


.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.slide_img {
  text-align: center;
  margin-bottom: 0;
}

.slide_img img {
  width:100%;
  object-fit: contain;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-color: #FBF9F6;
}

.slide_text {
  margin: 16px auto 0;
  width:100%;
  padding-top: 0;
  opacity: 0;
}

li.swiper-slide.swiper-slide-visible.swiper-slide-active .slide_text {
  opacity: 1;
}

.slide_top img {
  width:100%;
  object-fit: cover;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

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

  .mySwiper .swiper-slide {
    padding-inline: 5px;
    margin-top: 10px;
    width:33% !important;
  }

  .mySwiper .swiper-wrapper {
    margin-top: 20px
    ;
  }
}

.works_btn {
  height: 55px;
  line-height: 55px;
  max-width:423px;
  margin-top: 40px;
  margin-left: auto;
}

.works_btn a {
  display: block;
  position: relative;
  font-size: 20px;
  background: #B5C571;
  text-align: center;
  border-radius: 30.5px;
}

.works_btn a::after {
  content: "";
  display: inline-block;
  border-style: solid;
  width:0.865em;
  height: 1em;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #4C1015;
  position: absolute;
  top:50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 5px;
}


/* other works */
.other_title {
  margin-top: 120px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.3em;
}

.other_subtitle {
  display: block;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 40px;
  font-weight: 700;
}

@media screen and (max-width:768px) {
  .works_title {
    font-size:20px;
    padding-bottom: 0.5em;
  }

  .works_btn {
    margin-right: auto;
  }

  .works_btn a {
    font-size: 16px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    width:13px;
    height: 22px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    top: 43%;
  }
}



/* =============================================
Q&Aページ
============================================= */
.faq__bold {
  font-size: 22px;
  font-weight: 700;
}

.faq__warp {
  max-width: 1000px;
  width: 95%;
  margin:0 auto;
}

.faq__box {
  margin-top: 86px;
}

.faq__title {
  font-size: 32px;
  font-weight: 500;
}

.faq__text {
  margin-top: 16px;
}

.faq__contener {
  margin-bottom: 188px;
}

@media screen and (max-width:768px) {
  .faq__title {
    font-size: 20px;
  }
}


/* =============================================
会社概要ページ
============================================= */
.company__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 930px;
  margin: 0 auto 310px;
}

.company__list > dt {
  max-width: 230px;
  width:35%;
  padding: 40px 10px;
  border-left:1px solid #4C1015;
  border-bottom:1px solid #4C1015;
  display: flex;
  align-items: center;
  justify-content: center;

}

.company__list > dt:first-child{
  border-top:1px solid #4C1015;
}

.company__list > dd {
  max-width: 700px;
  width:65%;
  padding: 40px 30px 40px 60px;
  border-left:1px solid #4C1015;
  border-bottom:1px solid #4C1015;
  border-right:1px solid #4C1015;
}

.company__list > dd:first-of-type {
  border-top:1px solid #4C1015;
}

.company__list > dd  > ul {
  list-style-type: decimal;
  padding-left: 28px;
}

.company__list > dd > a {
  display: block;
}

@media screen and (max-width:768px) {
  .company__list > dd {
    padding-left: 30px;
  }

  .company__list > dd > a:hover {
    text-decoration: underline;
  }

  .company__list {
    margin-bottom: 150px;
  }
}


/* =============================================
BLOG一覧ページ
============================================= */
.blog__list {
  max-width: 750px;
  width:100%;
}

.blog__item a {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 25px;
}

.blog__item .left_box img {
  width:100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.blog__item .left_box {
  width:100%;
  max-width: 375px;
}

.blog__item .right_box h2 {
  font-weight: 700;
}

.blog__item .right_box p {
  font-size: 16px;
}

.blog__item {
  padding-top: 45px;
  padding-bottom: 45px;
  border-bottom: 1px solid #4C1015;
}

.blog__item:first-child {
  padding-top: 0;
}

.blog__item:nth-child(5n),
.blog__item:last-child {
  border-bottom: none;
}

.blog__right_date {
  margin-top:10px;
}

.blog__right_date {
  font-size: 14px;
}

.right_box p {
  margin-top:10px;
}

.blog__box {
  display: grid;
  grid-template-columns: auto minmax(335px, 1fr);
  column-gap:100px;
}

.side h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.side .side-cat {
  font-size: 16px;
  list-style-type: disclosure-closed;
  padding-left: 15px;
  padding-bottom: 45px;
  border-bottom: 1px solid #4C1015;
  margin-bottom: 30px;
}

.side .cat-item {
  margin-top: 10px;
  margin-bottom: 10px;
}

.side .blog-post {
  margin-top: 45px;
}

.side .side-post {
  margin-top: 20px;
  padding-bottom: 45px;
  border-bottom: 1px solid #4C1015;
  margin-bottom: 30px;
}

.side .post-item {
  margin-top: 20px;
}

.side .post-item a {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 20px;
}

.side .post-item_img {
  width:100px;
}

.side .post-item_img img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.side .post-item_cont {
  font-size: 14.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side .post-item_cont .post-item_time {
  font-weight: 600;
  position: relative;
  word-break: keep-all;
  padding-left: 15px;
}

.side .post-item_cont .post-item_time::before {
  content: "";
  display: block;
  position: absolute;
  left:0;
  height: 5px;
  width: 5px;
  border-top: 1px solid #4C1015;
  border-right: 1px solid #4C1015;
  transform: rotate(45deg);
  top: calc(50% - 3px);
}

.side .post-item_cont .post-item_title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side .blog-tag {
  margin-top: 45px;
}

.side .wp-block-tag-cloud {
  padding-bottom: 45px;
  border-bottom: 1px solid #4C1015;
  margin-bottom: 60px;
}

.side a.tag-cloud-link {
  font-size: 11px;
  background: rgba(96, 83, 55, 0.3);
  border: 1px solid #444;
  display: inline-block;
  padding: 5px 7px;
  margin-top: 5px;
}

.side .tag-item {
  display: inline-block;
}

@media screen and (max-width:850px) {
  .blog .page__text {
    margin-bottom: 50px;
  }

  .blog__box {
    grid-template-columns: 1fr;
  }

  .blog__container {
    margin: 0 auto;
  }

  .blog__item a .left_box {
    order:2;
  }

  .blog__item a .right_box {
    order: 1;
  }

  .side {
    margin-top: 50px;
    margin-bottom: 60px;
    border: 5px solid rgba(96, 83, 55, 0.3);
    padding: 15px;
  }

  .side .blog-category {
    margin-top: 30px;
  }

  .side .wp-block-tag-cloud {
    margin-bottom: 30px;
  }
}

@media screen and (max-width:768px){
  .blog__item a .right_box p {
    display: none;
  }
}

/* =============================================
BLOG記事一覧ページ
============================================= */
.page__title .single__title {
  font-size: 40px;
}

.single-blog__box .single-blog .page__title,
.single-blog__box .single-blog__inner .page__title {
  position: static;
  text-align: left;
  margin-bottom: 10px;
  transform: translate(0, 0);
  line-height: 1.5;
} 


.single-blog__time {
  font-size: 14px;
}

.single-blog__inner {
  margin-top: 100px;
}

.single h1.page__title {
  font-size: 38px;
  text-align: left;
}
.blog__thumbnail {
  width: 100%;
  margin-bottom: 30px;
}
.blog__thumbnail img {
  width: 100%;
  object-fit: contain;
}

.single-blog__container p,
.single-blog__container ul,
.single-blog__container ol {
  font-size: 16.5px;
  margin-top: 1em;
  margin-bottom: 1em;
}

.single-blog__container h2 {
  font-size: 32px;
  font-weight: 700;
}

.single-blog__container h3 {
  font-size: 28px;
  font-weight: 700;
}

.single-blog__container h4 {
  font-size: 24px;
  font-weight: 700;
}

.single-blog__container h5 {
  font-size: 20px;
  font-weight: 700;
}

.single-blog__container ul li {
  list-style: disc;
  margin-left: 1em;
}

.single-blog__container ol li {
  list-style: decimal;
  margin-left: 1.5em;
}

.single-blog__item {
  margin-top: 60px;
}

.single-blog__list a {
  font-size: 13px;
}

.single-blog__nav {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, auto) ;
  column-gap: 30px;
}

.blog_btn a{
  border: 1px solid #B5C571;
  color:#B5C571;
  line-height: 45px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  display: block;
}

.single-blog__tag {
  margin-top: 40px;
  text-align: center;
}

h3.single-blog__relation {
  font-weight: 600;
  font-size: 38px;
  line-height: 1.4;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 18px;
  padding-top: 0;
}

h3.single-blog__relation::after {
  display: block;
  content: "";
  border-top: 3px double #4C1015;
  width: 70px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 35px);
}

.single-blog__tag_name {
  margin-top: 30px;
  margin-bottom: 60px;
}

.single-blog__tag_name a{
    font-size: 16px;
    border: 1px solid #444;
    display: inline-block;
    padding: 5px 7px;
    border-radius: 0.1px;
    -webkit-border-radius: 0.1px;
    -moz-border-radius: 0.1px;
    -ms-border-radius: 0.1px;
    -o-border-radius: 0.1px;
}


@media screen and (max-width:800px){
  .single h1.page__title {
    font-size: 22px;
  }

  .single-blog .page__title {
    order:2;
  }

  .single-blog__inner {
    margin-top: 60px;
  }

  .single-blog__inner .page__title {
    font-size: 28px;
  }

  .single-blog__container h2 {
    font-size: 24px;
  }

  .single-blog__container h3 {
    font-size: 18px;
  }

  .single-blog__container h4,
  .single-blog__container h5 {
    font-size: 16px;
  }

  .single-blog__container p ,
  .single-blog__container ul,
  .single-blog__container ol {
    font-size: 16px;
  }
  
  h3.single-blog__relation {
    font-size: 25px;
  }
}



@media screen and (max-width:768px){
  .single-blog__nav {
    column-gap: 10px;
  }

  .blog_btn {
    font-size: 12px;
  }
}


/* コンタクトサンプル */
.contact2 {
  padding-top: 100px;
  padding-bottom: 500px;
}
.contact__table .row p {
	margin-bottom: 0;
	font-size: 16px;
  line-height: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  white-space: nowrap;
}
.contact__table .row .contact-title {
  font-size: 20px;
}
.contact__table .row {
	display: flex;
	margin-bottom: 30px;
  row-gap: 16px;
  flex-direction: column;
}
.contact__table .textarea {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 40px;
}
.contact__table .textarea  p {
  width: 100%;
}
.contact__table .textarea  span {
  width: 100%;
  display: block;
}
.contact__table :is(td, th) {
	border: none;
}
.contact__table th {
	padding: 0;
	display: flex;
}
.contact__table td {
	padding: 0;
}

.contact__table input::placeholder {
	color: #D9D7D7;
	font-size: 16px;
}
.contact__table .wpcf7-list-item {
	display: block;
	margin-bottom: 15px;
	margin-left: 0;
}
.contact__table textarea {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
  width: 100%;
}
.contact2 .contact__table .required {
	font-size: 12px;
  font-weight: 700;
	padding: 5px 13px;
	color: #BC1616;
  background: none;
	margin-left: 3px;
}
.contact2 .send-btn input {
  background: none;
  color: #333;
  border: 1px solid #333;
  font-size: 20px;
  border-radius: 5px;
  margin-top: 50px;
}
.contact2 .send-btn input:hover {
  color: #fff;
  background: #333;
}
.contact2 .send-btn p:after {
  content: none;
}
.contact2 .contact__table .ajaxzip3 {
  background: #fff;
  border: 1px solid #333;
  color: #333;
  font-weight: 400;
  padding: 10px;
  border-radius: 3px;
  transition: 0.3s;
}
.contact2 .contact__table .ajaxzip3:hover {
  background: #333;
  color: #fff;
}
.contact2 .contact__table .ajaxzip3::after {
  content: none;
}
.contact2 input[type=radio] + span::before {
	content: "";
    width: 1em;
    height: 1em;
    border: 1px solid #333;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: inline-block;
}
.wpcf7-radio input, .wpcf7-checkbox input {
	display: none;
}
.wpcf7-list-item {
	padding-left: 25px;
	position: relative;
}
.contact2 input[type=radio]:checked + span::after {
	content: "";
    width: 0.5em;
    height: 0.5em;
    background: #333;
		border-radius: 50%;
		position: absolute;
    top: 50%;
    left: 0.28em;
    transform: translateY(-50%);
    display: inline-block;
}
form input[type=checkbox] + span::before {
	content: "";
    width: 1em;
    height: 1em;
    border: 1px solid #333;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: inline-block;
}
form input[type=checkbox]:checked + span::before {
	background: #333;
}
form input[type=checkbox]:checked + span::after {
	content: "";
    width: 0.6em;
    height: 0.6em;
    background: url(https://yuiwedding.keiko-web.site/wp-content/uploads/2024/04/check.png) no-repeat center/contain;
		position: absolute;
    top: 45%;
    left: 0.25em;
    transform: translateY(-50%);
    display: inline-block;
}