@charset "UTF-8";

:root {
  --bk: #000000;
  --ff-noto-serif: "Noto Serif JP", serif;
  --ff-noto-sans: "Noto Sans JP", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

a {
  display: block;
}

img {
  display: block;
  width: 100%;
  object-fit: contain;
}

body {
  width: 100vw;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--bk);
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
}

.container {
  /* max-width: 360px; */
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.sans {
  font-family: var(--ff-inter);
  font-weight: 400;
}

.serif {
  font-family: var(--ff-noto-serif);
  font-weight: 900;
}

.serif-7 {
  font-family: var(--ff-noto-serif);
  font-weight: 700;
}

.fude {
  font-family: var(--ff-fuga);
  font-family: var(--ff-noto-serif);
  font-weight: 400;
  font-weight: 900;
}

.vertical {
  writing-mode: vertical-lr;
}

.shine-button {
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 300px;
  width: fit-content;
  color: #FFF;
  transition: 0.3s ease-in-out;
  border-radius: 6px;
  overflow: hidden;
}

.shine-button:active {
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}

.shine-button:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
  animation: shine 3s infinite;
}

@keyframes shine {
  33% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.sp {
  display: block;
}

.pc {
  display: none;
}

/* header */
.header {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .container {
  padding: 0;
}

.header img {
  width: 80px;
}

/* floating button */
.floating-btn {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 4px 4px;
  width: 100%;
  max-width: 400px;
  z-index: 8000;
}

/* splash */
#splash-wrap{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fff;
  z-index: 9999;
  animation: fadeOutAnimation 1s ease 0.5s forwards;
}

#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9000;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeOutAnimation 1s ease 3.4s forwards;
}
@keyframes fadeOutAnimation {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

#splash #block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

#splash.opacity #block{
  opacity: 1;
}

#splash .main-logo img{
  width: 60vw;
  height: auto;
  display: block;
  margin-top: 80px;
}

#splash .catch-text{
	display: flex;
	flex-direction: row;
  align-items: flex-start;
	justify-content: center;
	z-index: 10;
}

#splash .text-1 img{
  width: 9vw;
  height: auto;
  display: block;
  margin: 0 3vw;
}

#splash .text-2{
  display: flex;
  flex-direction: column;
  align-items: center;
	justify-content: flex-start;
  gap: 8px;
  gap: 4px;
  margin-top: -3px;
}

#splash .text-2 img{
  width: 9vw;
  height: auto;
  display: block;
  margin: 0 3vw;
}

#splash .catch-img img{
	width: 23px;
	height: 182.4667px;
	display: block;
}


/* fv */
.fv {
  position: relative;
  overflow: hidden;
  z-index: 100;
}

.fv__main {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

video.fv__bg-video {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

video.fv__bg-video.sp{
  display: block;
}

video.fv__bg-video.pc{
  display: none;
}

.fv .container {
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* catch */
.catch .container {
  padding: 20px 0;
}

.catch .container img{
  width: 90vw;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* seminar */
.seminar {
  background-image: url("../img/seminar-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.seminar .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seminar__heading {
  padding: 30px 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.seminar__heading .announce {
  display: block;
  background: url(../img/announce2.jpg) no-repeat top center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 8px 20px 6px 20px;
  width: 100px;
  font-size: 18px;
  margin-bottom: 0px;
}

.seminar__title img{
  width: 86vw;
  height: auto;
  margin: 0 auto;
}

.seminar__title span {
  display: inline-block;
  color: #B40000;
}

.seminar__text img{
  width: 40vw;
  display: block;
  margin: -20px auto 0;
}

.seminar__detail img{
  width: 68vw;
  display: block;
  margin: 10px auto 0;
}

.seminar__detail p{
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  margin: 10px auto 0;
}

.seminar__koushi-img img{
  width: 60vw;
  margin: 5px auto 0;
}

.seminar__koushi img{
  width: 80vw;
  margin: 5px auto 0;
}

.seminar__text span {
  color: #B40000;
  display: block;
}

.seminar__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 15px auto 0;
}

.seminar-item {
  border: 1px solid #B40001;
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  gap: 16px;
}

.seminar-item .number{
  color: #b40001;
  font-size: 30px;
  line-height: 1;
}

.seminar-item h3{
  font-size: 18px;
  text-align: center;	
}

.seminar-item .article{
  font-size: 15px;
  margin-top: 12px;
}

.seminar h4{
  font-size: 22px;
  text-align: center;
  margin-top: 15px;
}

.seminar ol{
  margin: -10px 5px 0 5px;
}

.seminar ol li{
  font-size: 16px;
  list-style-type: decimal!important;
  margin-top: 10px;
  margin-left: 1em;
}

.seminar ol li strong{
  font-size: 20px;
  color: #b40001;
  padding: 0 5px;
}

.seminar .note{
  font-size: 19px;
  margin: 10px 0 10px 0;
  text-align: center;
}

.seminar__button {
  width: 100%;
  height: 54px;
  box-sizing: border-box;
  background: #D10604;
  padding: 6px 0;
  font-size: 19px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #D10604, 6px 6px 0 #AA0301;
}

.seminar__button._voice {
  margin-top: 20px;
  background: #222;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #222, 6px 6px 0 #000;
  cursor: pointer;
}

/* store */
.store {
  background: url(../img/store-bg.jpg) no-repeat center/cover;
}

.store__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.store__heading {
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.store__subtitle {
  font-size: 12px;
}

.store__title {
  width: 280px;
  width: 80vw;
  font-size: 42px;
}

.store__description {
  width: 280px;
  font-size: 20px;
  transform: scale(1.45);
  margin: 20px 0 0 -15px;
}

.store__description-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 32px;
}

.store__description strong {
  font-size: 64px;
  color: #C40000;
}

.store__description-flex img {
  width: 14.5vw;
}

.store__map {
  width: 100%;
  padding: 0;
  padding: 40px 0 0 8px;
  position: relative;
}

.store__map .map-arrow{
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}

.store__map .map-arrow .map-arrow-img{
  width: 1px;
  height: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 63.5vw;
  left: 53vw;
}

.store__map .map-arrow .map-arrow-img img{
  width: 79vw;
  height: 79vw;
}

.store__map-hokkaido {
  position: absolute;
  top: 70px;
  right: 30px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.2;
}

.store__bottom {
  width: 78vw;
  text-align: right;
  font-size: 18px;
  line-height: 1.2;
  padding: 0;
  margin: 26px 0 0 0;
}

.store__bottom img {
  width: 100%;
  display: block;
}

.store__area{
  width: 86vw;
  border: 1px solid #AA0000;
  border-radius: 10px;
  box-sizing: border-box;
  margin: 50px auto 0;
  padding: 0 22px 18px;
}

.store__area .head {
  color: #FFF;
  width: 76%;
  text-align: center;
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0.2em;
  border-radius: 100px;
  background: #AA0000;
  box-sizing: border-box;
  padding: 8px 10px 10px;
  margin: -20px auto 0;
}

.store__area p.area {
  color: #000;
  width: 100%;
  text-align: center;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin: 16px auto 0;
}

/* lemon */
.lemon {
  background: #FFEB03;
}

.lemon .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lemon__inner {
  position: relative;
}

.lemon__heading {
  text-align: center;
}

.lemon__heading-main {
  margin-bottom: 2%;
  font-size: 32px;
}

.lemon__heading-main span {
  color: #C40000;
}

.lemon__heading-sub {
  font-size: 14px;
}

.lemon__cc {
  display: flex;
  gap: 16px;
}

.lemon__img-ganso {
  width: 50px;
}

.lemon__title {
  font-size: 35px;
  color: #C70200;
  line-height: 1.2;
}

.lemon__title span {
  display: block;
  font-size: 32px;
  padding-bottom: 6px;
}

.lemon__text {
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  padding-top: 4px;
  z-index: 1;
}

.lemon__text span {
  color: #C70200;
  font-size: 16px;
  transform: rotate(8deg);
  display: inline-block;
  letter-spacing: -0.3em;
  padding-right: 4px;
}

.lemon__img-sour {
  position: absolute;
  bottom: -66px;
  right: -15px;
  width: 100px;
  z-index: 2;
}

/* merit */
.merit {
  background: url(../img/acquired-bg.jpg) no-repeat center/cover;
}

.merit .container {
  padding: 50px 16px 40px;
}

.merit-acquired__heading {
  color: #C70200;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.merit-acquired__heading span {
  font-size: 16px;
}

.merit-acquired__heading strong {
  font-size: 43px;
}

.merit-acquired__heading strong span {
  writing-mode: vertical-lr;
  letter-spacing: -0.02em;
  font-size: 12px;
}

.merit-acquired__circle {
  position: relative;
  padding: 20px 0 20px;
  margin-bottom: 8px;
}

.merit-acquired__circle-izakaya {
  background: #C70200;
  border: 1px solid #707070;
  border-radius: 50%;
  width: 150px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.2;
}

.merit-acquired__circle-izakaya strong {
  font-size: 22px;
}

.merit-acquired__circle-yakiniku {
  position: absolute;
  top: 0;
  left: 130px;
  background: #3E3E3E;
  border: 1px solid #707070;
  border-radius: 50%;
  width: 130px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.2;
}

.merit-acquired__circle-yakiniku strong {
  font-size: 22px;
}

.merit-acquired__circle-arrow {
  position: absolute;
  top: 100px;
  width: 50px;
  right: 40px;
}

.merit-acquired__circle-text {
  position: absolute;
  right: 0;
  top: 148px;
  color: #C70200;
  font-size: 14px;
  line-height: 1.2;
}

.merit-acquired__circle-text strong {
  font-size: 26px;
}

.merit__text {
  background: var(--bk);
  color: #FFFFFF;
  font-size: 22px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 12px 0;
  margin-bottom: 28px;
}

.merit-stores {
  position: relative;
}

.merit-stores__heading {
  line-height: 1.1;
  font-size: 18px;
}

.merit-stores__heading img{
  width: 80vw;
  height: auto;
  display: block;
  margin: 0 auto;
}

.merit-stores__heading strong {
  font-size: 50px;
  color: #C70200;
  letter-spacing: 0.02em;
}

.merit-stores__heading p {
  padding-top: 8px;
}

.merit-stores__numbers {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.merit-stores__numbers span {
  font-size: 26px;
  color: #C70200;
  margin-top: 30px;
}

.merit-stores__numbers span strong {
  color: #C40000;
  /*font-family: var(--ff-inter);*/
  font-size: 60px;
  padding: 0 4px;
}

.merit-stores__numbers .arrow {
  position: absolute;
  top: 55px;
  right: 100px;
  width: 60px;
}

.merit-stores__numbers .graph {
  width: 80%;
  margin: 0 auto 0;

}

.merit-stores .bg {
  position: absolute;
  bottom: 205px;
  left: -75px;
  width: 200px;
  z-index: 2;
}

/* point */
.point .container {
  padding: 0 16px;
}

.point__title {
  background: #C70200;
  margin: 0 -30px;
  padding: 22px 0;
  color: #FFFFFF;
  font-size: 28px;
  text-align: center;
}

.point__heading {
  background: url(../img/point-bg.jpg) no-repeat center/cover;
  margin: 0 -30px;
  padding: 30px 0 30px 120px;
  position: relative;
  font-size: 20px;
  line-height: 1.2;
}

.point__heading p {
  width: 66.0vw;
}

.point__heading strong {
  font-size: 40px;
  font-weight: 400;
  color: #C70200;
}

.point__heading span {
  font-size: 25px;
}

.point__heading .bg {
  position: absolute;
  width: 80px;
  top: -20px;
  left: 38px;
  z-index: 2;
}

.point-item__heading {
  padding: 30px 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.point-item__heading .announce {
  display: block;
  background: url(../img/announce2.jpg) no-repeat top center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 8px 20px 6px 20px;
  width: 100px;
  font-size: 18px;
  margin-bottom: 0px;
}

.point-item__title {
  font-size: 30px;
  line-height: 1.2;
}

.point-item__title img{
    width: auto;
    height: 7vw;
    display: block;
    margin-top: 6px;
}

.point-item__body {
  margin: 0 -30px;
}

.point-item__body-inner {
  padding: 0 14px;
}

.point .item1 .point-item__body {
  margin: 0 -30px;
}

.point .item1 .point-item__body-heading {
  padding: 30px 16px 80px;
  background: #B60A0A;
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;
  position: relative;
}

.point .item1 .point-item__body-heading strong {
  font-size: 24px;
  font-weight: 400;
}

.point .item1 .point-item__body-heading ._img {
  position: absolute;
  width: 110%;
  left: 50%;
  transform: translateX(-50%);
}

.point .item1 .point-item__body-content {
  background: url(../img/point-bg2.jpg) no-repeat center/cover;
}

.point .item1 .point-item__body-content .em {
  position: relative;
  padding: 130px 18px 30px;
}

.point .item1 .point-item__body-content .em p {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 56px;
  white-space: nowrap;
  text-shadow: 1px 1px 0 #FFFFFF, -1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, 1px 0 0 #FFFFFF, -1px 0 0 #FFFFFF, 0 1px 0 #FFFFFF, 0 -1px 0 #FFFFFF;
}

.point .item1 .point-item__body-content .em div {
  display: flex;
  justify-content: space-between;
}

.point .item1 .point-item__body-content .em div span {
  display: inline-block;
  background: #B60A0A;
  color: #FFFFFF;
  font-size: 30px;
  transform: rotate(-10deg);
  padding: 0;
}
.point .item1 .point-item__body-content .em div span img{
  width: auto;
  height: 42px;
}

.point .item1 .point-item__body-text {
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  padding-bottom: 20px;
  padding: 0 5% 30px;
}

.point .item1 .point-item__body-text strong {
  font-size: 30px;
  font-weight: 400;
  color: #B60A0A;
}

.point .item1 .point-item__body-list {
  display: flex;
  flex-direction: column;
}

.point .item1 .point-item__body-item {
  flex: 1;
  flex-direction: column;
  border-bottom: 1px solid #AA0000;
  border-left: none;
  padding: 24px 16px;
  display: flex;
}

.point .item1 .point-item__body-item:first-child {
  border-top: 1px solid #AA0000;
}

.point .item1 .point-item__body-item:nth-child(2) {
  flex-direction: column;
}

.point .item1 .point-item__body-item>img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.point .item1 .point-item__body-item img {
  width: 100%;
}

.point .item1 .point-item__body-item div {
  display: flex;
  flex-direction: column;
}

.point .item1 .point-item__body-item div img {
  width: 100%;
}

.point .item1 .point-item__body-item h4 {
  font-size: 16px;
  color: #C70200;
  text-align: center;
}

.point .item1 .point-item__body-item h4 img {
  height: 66px;
  width: auto;
  margin: 25px auto 15px;
}

.point .item1 .point-item__body-item p {
  font-size: 16px;
  line-height: 1.7;
}

.point .item2 .point-item__intro {
  margin: 0 -10px;
  padding: 40px 10px;
}

.point .item2 .point-item__intro .question {
  text-align: center;
}

.point .item2 .point-item__intro .question img {
  width: 80vw;
  padding: 6px 10px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  display: inline;
}

.point .item2 .point-item__intro-text {
  width: 90%;
  margin: 0 auto;
  font-size: 16px;
  text-align: center;
  margin: 10px auto 30px;
}

.point .item2 .img{
  width: 95%;
  height: auto;
  padding-right: 6px;
  margin: 0 auto;
}

.point .item2 .point-item__heading {
  padding: 12px 0;
}

.point .item2 .point-item__heading .announce {
  display: inline-block;
  background: url(../img/announce2.jpg) no-repeat center center/cover;
  padding: 8px 20px 6px 20px;
  width: 100px;
  writing-mode: horizontal-tb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 5px;
}

.point .item2 .point-item__title {
  font-size: 24px;
}

.point .item2 .point-item__title img{
  width: auto;
  height: 69px;
  display: block;
  margin: 0 auto;
}

.point .item2 .point-item__title span {
  font-size: 28px;
}

.point .item2 .point-item__title strong {
  font-weight: 400;
  color: #B70000;
}

.point .item2 .point-item__body-heading {
  background: url(../img/point-bg.jpg) no-repeat center/cover;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.point .item2 .point-item__body-heading span {
  width: 100%;
  background: #B70100;
  color: #FFFFFF;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.4;
  padding: 10px 5px;
}

.point .item2 .point-item__body-heading .award {
  width: 83%;
  margin: 25px auto 25px;
}

.point .item2 .point-item__body-heading p {
  width: 100%;
  font-size: 16px;
  position: relative;
  z-index: 1;
  margin: 0 0 25px;
}

.point .item2 .point-item__body-heading .bg {
  position: absolute;
  top: 195px;
  right: -7px;
  width: 90px;
  z-index: 2;
}

.point .item3 .point-item__intro {
  margin: 0 -16px;
  padding: 40px 16px 20px 16px;
  background: #B70100;
}

.point .item3 .point-item__intro .question {
  text-align: center;
}

.point .item3 .point-item__intro .question p {
  display: inline;
  color: #FFFFFF;
}

.point .item3 .point-item__intro .question img {
  width: 240px;
  width: 90vw;
  margin: 0 auto;
  padding: 4px 12px;
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  margin-bottom: 5px;
}

.point .item3 .point-item__intro-list {
  margin: 0 -16px;
  display: flex;
  flex-direction: column;
}

.point .item3 .point-item__intro-item {
  flex: 1;
  border-bottom: 1px solid #FFFFFF;
  border-left: none;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #FFFFFF;
}

.point .item3 .point-item__intro-item:first-child {
  border-top: 1px solid #FFFFFF;
}

.point .item3 .point-item__intro-item:nth-child(2) {
  flex-direction: column;
}

.point .item3 .point-item__intro-item div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.point .item3 .point-item__intro-item h4 {
  height: 26px;
  font-size: 22px;
  text-align: center;
}

.point .item3 .point-item__intro-item h4 img {
  width: auto;
  height: 100%;
}

.point .item3 .point-item__intro-item div>img {
  aspect-ratio: 328 / 168;
  object-fit: cover;
  display: block;
  margin: 5px 0 2px 0;
}

.point .item3 .point-item__intro-item:nth-child(2) div>img {
  object-position: center top;
}

.point .item3 .point-item__intro-item:nth-child(3) div>img {
  aspect-ratio: auto;
}

.point .item3 .point-item__intro-item span {
  font-size: 16px;
  text-align: left;
}

.point .item3 .point-item__intro-item span img {
  width: auto;
  height: 60px;
  display: block;
  margin-bottom: 5px;
}

.point .item3 .point-item__intro-item span.first img {
  height: 23.5px;
}

.point .item3 .point-item__intro-item p {
  font-size: 16px;
  line-height: 1.2;
}

.point .item3 .point-item__intro-bottom {
  background: #B70100;
  padding-top: 16px;
  color: #FFFFFF;
  font-size: 22px;
  text-align: center;
  padding: 25px 0 5px 0;
}

.point .item3 .point-item__intro-bottom p{
  padding: 6px 0 6px 0;
}

.point .item3 .point-item__heading {
  flex-direction: column;
  padding: 12px 0;
  margin-bottom: 16px;
}

.point .item3 .point-item__heading .announce {
  display: inline-block;
  background: url(../img/announce2.jpg) no-repeat top center/cover;
  padding: 8px 20px 6px 20px;
  width: 100px;
  writing-mode: horizontal-tb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 5px;
}

.point .item3 .point-item__title {
  font-size: 20px;
  color: #FFFFFF;
}

.point .item3 .point-item__title img{
  width: auto;
  height: 69px;
  display: block;
  margin: 0 auto;
}

.point .item3 .point-item__title span {
  font-size: 28px;
}

.point .item3 .point-item__support {
  margin: 0 -16px;
  position: relative;
}

.point .item3 .point-item__support-content {
  padding: 36px 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.border{
  width: 100%;
  height: 1px;
  background-color: #BA0000;
}

.point .item3 .point-item__support-content h4 {
  width: 100%;
  font-size: 30px;
  letter-spacing: 0.1em;
}

.point .item3 .point-item__support-content h4 img {
  width: auto;
  height: 25px;
  display: block;
  margin: 0 auto;
}

.point .item3 .point-item__support-content ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 17px;
}

.point .item3 .point-item__support-content li {
  position: relative;
  padding-left: 1em;
}

.point .item3 .point-item__support-content li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.point .item3 .point-item__support .bg-lemon {
  position: absolute;
  z-index: -1;
}

.point .item3 .point-item__support .bg-lemon:nth-of-type(1) {
  top: 60px;
  left: 70%;
  width: 50px;
}

.point .item3 .point-item__support .bg-lemon:nth-of-type(2) {
  top: 455px;
  left: 7px;
  width: 40px;
}

.point .item3 .point-item__support .bg-lemon:nth-of-type(3) {
  top: 770px;
  left: 80%;
  width: 50px;
}

.point .item3 .point-item__support .bg-lemon:nth-of-type(4) {
  top: 280px;
  right: 20px;
  width: 30px;
}

.point .item3 .point-item__bottom {
  background: #B70100;
  margin: 0 -16px;
  padding: 30px 16px;
  color: #FFFFFF;
  font-size: 26px;
  text-align: center;
}

.point .item3 .point-item__bottom span {
  -webkit-text-emphasis: filled;
  text-emphasis: filled;
}

.point .marquee {
  margin: 0 -16px;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.point .marquee-text {
  display: inline-block;
  padding-right: 0.5em;
  font-size: 28px;
  color: #FFFFFF;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* line-cta */
.line-cta .container {
  padding: 0;
  margin: 0;
  max-width: 400px;
}

.line-cta__inner {

}

.line-cta__heading {
  background: url(../img/cta-bg.jpg);
  padding: 40px 16px 30px;
  margin: 0;
  text-align: center;
}

.line-cta__title {
  font-size: 22px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 25px;
}

.line-cta__title strong {
  display: block;
  font-size: 50px;
  color: #C40000;
  margin-top: 8px;
}

.line-cta__title span {
  font-size: 18px;
  margin-top: 5px;
  line-height: 1.4;
  display: inline-block;
}

.line-cta__body {
  background: url(../img/cta-bg.jpg);
  padding: 30px 16px;
  margin: 0;
  text-align: center;
  font-size: 18px;
}

.line-cta__body strong {
  font-weight: 400;
  color: #C40000;
}

.line-cta__bottom {
  background: url(../img/cta-bg.jpg);
  padding: 30px 10px 40px;
  margin: 0;
}

.line-cta__slide {
  margin: 0 -20px 16px;
  display: flex;
  gap: 3px;
  z-index: 1001;
  position: relative;
}

.line-cta__slide-inner {
  animation: slide 20s infinite linear 0.5s both;
}

.line-cta__slide li {
  width: 800px;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.line-cta__button {
  background: #38CD01;
  padding: 12px;
  font-size: 18px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #38CD01, 6px 6px 0 #229B68;
  gap: 8px;
}

.line-cta__button .line-ico {
  width: 30px;
}

/* sns */
.sns .container {
  background: url(../img/sns-bg.jpg) repeat center/contain;
}

.sns__heading {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.sns__heading .left {
  width: 1px;
  height: 60px;
  background: #B40000;
  transform: rotate(-30deg);
}

.sns__heading .right {
  width: 1px;
  height: 60px;
  background: #B40000;
  transform: rotate(30deg);
}

.sns__title {
  color: #C40000;
  line-height: 1.2;
  text-align: center;
  font-size: 1.6em;
}

.sns__title strong {
  display: block;
  font-size: 38px;
}

.sns__slide {
  margin: 0 -20px 16px;
  display: flex;
  z-index: 1001;
  position: relative;
}

.sns__slide-inner {
  animation: slide 20s infinite linear 0.5s both;
}

.sns__slide li {
  width: 600px;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* voice */
.voice {
  color: #1D1D1D;
  border-top: 1px solid #AA0000;
}

.voice .container {
  padding: 0 10px;
}

.voice__title {
  margin: 0 -10px;
  padding: 22px 0;
  background: #C40000;
  color: #FFFFFF;
  font-size: 24px;
  text-align: center;
}

.voice__title img {
  width: auto;
  height: 23px;
  margin: 0 auto;
}

.voice-item {
  background-image: url("../img/owner-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 0 -24px;
  border-top: 1px solid #AC0A09;
}

.voice-item__inner {
  padding: 0 30px;
  padding: 34px 30px 2px;
  border-bottom: 0px solid #AC0A09;
}

.voice-item__inner.first{
  padding: 0 30px 2px;
}

.voice-item__title {
  padding: 10px 0 44px;
  font-size: 22px;
  text-align: center;
}

.voice-item__title img{
  width: auto;
  height: 54px;
  display: block;
  margin: 0 auto;
}

.voice-item__heading-image {
  position: relative;
  margin-bottom: 16px;
}

.voice-item__heading-image span {
  position: absolute;
  top: -5.0vw;
  right: 5px;
  width: 54vw;
  font-size: 48px;
  color: transparent;
  font-family: var(--ff-ddt);
  -webkit-text-stroke: 1px #000000;
}

.voice-item__heading-image span img{
  width: 100%;
  height: auto;
  display: block;
}

.voice-item__heading-text {
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-align: justify;
}

.voice-item__body {
  display: none;
}

.voice-item__body.open {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.voice-item__body-item {
  padding: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.voice-item__body-item p strong{
    color: #CB0000;
    font-weight: 700;
}

.voice-item__body-item .question {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: justify;
  text-indent: -1.4em;
  padding-left: 1.4em;
}

.voice-item__body-item .answer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.voice-item__body-item .answer p{
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-align: justify;
}

.voice-item__body-item .answer img {
  aspect-ratio: 328 / 171;
  object-fit: cover;
  object-position: center 25%;
}

.voice-item__body-item:nth-child(3) .answer img {
  object-position: center 45%;
}

.voice-item__body-item .answer p img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.voice-item__body-item:last-child .answer img {
  height: auto;
}

.voice-item__body-item .answer span {
  color: #AA0100;
}

.voice-item__body-item .answer.wide {
  flex-direction: column;
  width: 100%;
}

.voice-item__body-item .answer.wide img {
  width: 100%;
}

/* mission */
.mission{
  border-top: 1px solid #AA0000;
}

.mission .container {
  border-bottom: 0px solid #AA0000;
}

.mission__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.mission__title {
  font-size: 28px;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  margin-bottom: -2px;
}

.mission__title strong {
  color: #CB0000;
}

.mission .logo {
  width: 280px;
  width: 290px;
}

.mission__body {
  padding-top: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.mission__body span {
  color: #D70C18;
  opacity: 0.1;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.mission__subtitle {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.5;
}

.mission__text {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.mission__text strong {
  display: block;
  padding-top: 12px;
  color: #D70C18;
  font-size: 32px;
  letter-spacing: 0.05em;
}

/* contact-cta */
.contact-cta {
}

.contact-cta .container {
  padding: 0;
}

.contact-cta__heading {
  background: url(../img/contact-cta-bg.jpg) no-repeat center/cover;
  padding: 16px 10px;
  padding: 30px 10px;
}

.contact-cta__title {
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  margin: 0 auto;
}

.contact-cta__title img{
  width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.contact-cta__title strong {
  font-weight: 400;
  color: #D70C18;
}

.contact-cta__body {
  padding: 40px 0 10px;
  position: relative;
  border-bottom: 1px solid #C70200;
}

.contact-cta__body h3 {
  color: #C70200;
  font-size: 24px;
  font-weight: 900;
  padding-left: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #C70200;
}

.contact-cta__body ul {
  width: auto;
  padding: 26px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.contact-cta__body li {
  width: auto;
  display: inline-block;
  position: relative;
  padding-left: 1em;
  margin-left: 0em;
}

.contact-cta__body li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.contact-cta__body .bg {
  position: absolute;
  z-index: 1001;
}

.contact-cta__body .bg.hormone {
  top: 8px;
  width: 160px;
  right: -60px;
  z-index: 2;
}

.contact-cta__body .bg.tongue {
  bottom: -140px;
  left: -55px;
  width: 166px;
  transform: rotate(10deg);
  z-index: 2;
}

.contact-cta__bottom {
  padding: 30px 16px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.contact-cta__bottom h3 {
  width: 100%;
  color: #C70200;
  font-size: 21.5px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: right;
}

.contact-cta__bottom p {
  text-align: center;
  line-height: 1.4;
  font-size: 26px;
}

.contact-cta__bottom p img{
  width: 330px;
  height: auto;
  display: block;
}

.contact-cta__bottom p span {
  font-size: 24px;
}

.contact-cta__button {
  max-width: none;
  width: 320px;
  background: linear-gradient(#FFE243, #EAC60C);
  padding: 16px 0;
  font-size: 17px;
  margin-top: 10px;
  color: #000000;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #FFE243, 6px 6px 0 #C7B000;
}

.contact-cta__button img{
  width: 250px;
  height: auto;
  display: block;
}

/* join */
.join .container {
  padding: 0;
}

.join__heading {
  background: #B70100;
  padding: 15px 10px;
}

.join__title {
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  border-spacing: 0.06em;
  text-align: center;
}

.join__body {
  background: url(../img/join-bg.jpg) no-repeat center/cover;
  padding: 20px 10px 32px;
}

.join__body table {
  /* width: 320px; */
  margin: 0 auto 20px;
  border-spacing: 4px;
  border-collapse: separate;
}

.join__body table th {
  background: #B70100;
  color: #FFFFFF;
  font-size: 16px;
  border: 1px solid #B70100;
  width: 30%;
}

.join__body table td {
  background: #FFFFFF;
  color: #B70100;
  border: 1px solid #B70100;
  width: 70%;
  padding: 4px 4px 4px 12px;
  line-height: 1.2;
}

.join__body table td span {
  font-size: 14px;
  display: inline-block;
}

.join__body table td ul {
  padding: 8px 0;
}

.join__body table :nth-of-type(8) td {
  font-size: 14px;
}

.join__body-result {
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}

.join__body-result span {
  color: #B70100;
}

.join__body-result strong {
  font-size: 52px;
}

.join__body-result .note {
  color: #B70100;
  font-size: 16px;
  text-align: right;
  padding-right: 45px;
}

/* flow */
.flow .container {
  background: #B70100;
}

.flow__heading {
  position: relative;
  margin-bottom: 30px;
}

.flow__heading span {
  color: #FFFFFF;
  opacity: 0.4;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  z-index: 0;
}

.flow__title {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  padding-top: 36px;
}

.flow__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px 0;
}

.flow-item {
  background: #FFFFFF;
  position: relative;
  padding: 20px 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.flow-item span {
  position: absolute;
  top: 0;
  left: 15px;
  transform: translateY(-50%);
  background: #FFD443;
  border-radius: 1px 1px 1px 3px;
  padding: 2px 10px 2px;
  font-size: 18px;
}

.flow-item__title {
  font-size: 26px;
}

.flow-item__text {
  font-family: var(--ff-noto-sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: justify;
  margin-top: 10px;
}

.flow-item__button {
  width: 100%;
  background: linear-gradient(#F86A9C, #EA4071);
  border-radius: 2px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #FFFFFF;
  font-family: var(--ff-noto-sans);
  font-size: 20px;
  margin-top: 20px;
  font-weight: 500;
  line-height: 1;
}

.flow-item__button .ico1 {
  width: 24px;
}

.flow-item__button .ico2 {
  width: 20px;
}

/* faq */
.faq__title {
  color: #D70C18;
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.faq__content {
  /* width: 320px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item__question {
  background: #B70100;
  padding: 8px 27px 8px 12px;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: 0.2s;
}

.faq-item__question:not(.open):hover {
  background-color: #d11c1c;
}

.faq-item__question::after {
  border-right: solid 1px #FFFFFF;
  border-top: solid 1px #FFFFFF;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 12px;
  top: 30%;
  transform: rotate(135deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.faq-item__question.open::after {
  top: 45%;
  transform: rotate(-45deg);
}

.faq-item__question-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item__question-icon {
  width: 24px;
}

.faq-item__question-text {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.5;
}

.faq-item__answer {
  display: none;
  padding: 4px 12px 4px 34px;
}

.faq-item__answer-inner {
  display: flex;
  align-items: center;
}

.faq-item__answer-text {
  font-weight: 400;
  line-height: 1.7;
  font-size: 16px;
}

/* contact */
.contact .container {
  background: #B70100;
}

.contact__heading {
  position: relative;
  margin-bottom: 20px;
}

.contact__heading span {
  color: #FFFFFF;
  opacity: 0.4;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  z-index: 0;
}

.contact__title {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  padding-top: 24px;
}

.contact .contact-form {
  /* max-width: 320px; */
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.contact .form-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: start;
  gap: 8px;
}

.contact .form-label {
  color: #FFFFFF;
  font-size: 14px;
  padding-top: 10px;
}

.contact .req {
  color: #FFFFFF;
  margin-left: 0.2em;
  font-size: 12px;
  vertical-align: top;
}

.contact .contact-form input[type=text],
.contact .contact-form input[type=email],
.contact .contact-form input[type=tel],
.contact .contact-form textarea {
  width: 100%;
  background: #FFFFFF;
  color: #222;
  border: none;
  padding: 12px 8px;
  border-radius: 3px;
  font-family: var(--ff-caption);
  font-size: 14px;
  line-height: 1.4;
}

.contact .wpcf7-form-control.wpcf7-radio {
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px 0 0 0;
}

.contact .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  margin: 0;
  margin: 0 0 0 1em;
}

.contact .wpcf7-form-control.wpcf7-radio .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #FFFFFF;
}

.contact .contact-form textarea {
  resize: vertical;
}

.contact .radio input {
  width: 10px;
  height: 10px;
}

.contact .form-actions {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact .btn-primary {
  background: #FFFFFF;
  width: 100%;
  font-size: 18px !important;
  color: #AA0301;
  letter-spacing: 0.2em;
  font-weight: 600;
  padding: 12px 36px;
  margin-bottom: 10px;
  border-radius: 3px;
  border: 2px solid #fff;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s;
  cursor: pointer;
}

.contact .btn-primary:hover {
  transform: translateY(2px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.contact .btn-primary:active {
  transform: translateY(3px);
}

.contact .wpcf7-not-valid-tip {
  color: #ffe3e3;
  font-size: 13px;
  margin-top: 6px;
  display: block;
}

.contact .form-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  margin-top: 6px;
}

/* footer */
.footer .container {
  padding: 20px 10px 90px;
  background: #B70100;
  color: #FFFFFF;
  font-size: 10px;
  text-align: center;
}


@media (min-width: 1080px) {
  html {
    font-size: 16px;
    position: relative;
  }

  html:after{
    content: "";
    width: 1px;
    height: 100vh;
    background: #AA0000;
    z-index: 10;
    position: absolute;
    height: 100%;
    top: 0;
  }

  html::after {
    right: 56px;
  }

  body {
    max-width: none;
    width: 100%;
  }

  body:before{
    content: "";
    width: 1px;
    height: 100vh;
    background: #AA0000;
    z-index: 10;
    position: absolute;
    height: 100%;
    top: 0;
  }

  body::before {
    left: 56px;
  }

  .sp {
    display: none;
  }

  .pc {
    display: block;
  }

  a:hover {
    opacity: 0.6;
  }

  /* 共通コンテナをPC幅に */
  .container {
    margin: 0 auto;
    padding: 40px 20px;
  }

  .header {
    height: auto;
  }

  .header .container {
    padding-top: 20px;
  }

  .header img {
    width: 174px;
  }


  /* splash */
  #splash .main-logo img{
    width: 26vw;
    margin-top: 3.8vw;
  }

  #splash .catch-text{
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  #splash .text-1{
    order: 2;
  }

  #splash .text-2{
    display: flex;
  	flex-direction: row;
    align-items: center;
  	justify-content: center;
    order: 1;
    gap: 18px;
    gap: 10px;
    margin-top: 0;
  }

  #splash .text-2 span{

  }

  #splash .text-1 img{
    width: auto;
    height: 5.6vw;
    order: 2;
    margin: 1.2vw 0;
  }

  #splash .text-2 img{
    width: auto;
    height: 5.0vw;
    order: 1;
    margin: 1.2vw 0;
  }


  #splash .catch-img img{
    flex-direction: column;
    justify-content: center;
  }

/* fv */
  .fv__main {
    width: 100%;
    height: 100vh;
    display: flex;
  	flex-direction: row;
    align-items: center;
  	justify-content: center;
  }

  video.fv__bg-video {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  video.fv__bg-video.sp{
    display: none;
  }

  video.fv__bg-video.pc{
    display: block;
  }

  /* catch */
  .catch .container {
    margin: 0 auto;
    padding: 50px 0;
  }

  .catch .container img{
    width: 72vw;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* seminar */
  .seminar .container {
    width: 72vw;
    max-width: 1200px;
    padding: 120px 0;
    gap: 0;
  }

  .seminar__heading {
    padding: 41px 0;
    flex-direction: row;
    justify-content: center;
    gap: 35px;
  }

  .seminar__heading .announce {
    background: url(../img/announce.jpg) no-repeat top center/cover;
    padding: 45px 7px;
    writing-mode: vertical-lr;
    margin-bottom: 0;
    font-size: 36px;
    width: auto;
  }

  .seminar__title img{
    width: auto;
    height: 12.2vw;
    max-height: 200px;
    display: block;
  }

  .seminar__text img{
    width: 22vw;
    margin: 10px auto 0;
  }

  .seminar__detail img{
    width: 38vw;
    margin: 40px auto 0;
  }
	
  .seminar__detail p{
    font-size: 40px;
    letter-spacing: 0.12em;
	 line-height: 1.5;
    margin: 40px auto 0;
  }

  .seminar__koushi-img img{
    width: 22vw;
    margin: 40px auto 0;
  }

  .seminar__koushi img{
    width: 40vw;
    margin: 30px auto 0;
  }

  .seminar__list {
    width: 86%;
    gap: 12px;
    margin: 60px auto 0;
  }

  .seminar-item {
    width: 100%;
    padding: 25px 50px 22px;
    gap: 30px;
  }

  .seminar-item .text_block{
  }

  .seminar-item .number{
    color: #b40001;
    font-size: 40px;
    line-height: 1;
  }

  .seminar-item h3{
    font-size: 24px;
  }

  .seminar-item .article{
    font-size: 17px;
    margin-top: 10px;
  }

  .seminar h4{
    color: #b40001;
    font-size: 30px;
    text-align: center;
    margin-top: 50px;
  }

  .seminar ol{
    margin: 10px auto 0;
  }

  .seminar ol li{
    font-size: 20px;
    margin-top: 10px;
    line-height: 1.4;
    list-style-type: decimal!important;
    margin-left: 1em;
  }

  .seminar ol li strong{
    font-size: 25px;
    color: #b40001;
    padding: 0 5px;
  }

  .seminar .note{
    font-size: 25px;
    margin: 20px 0 60px 0;
    text-align: center;
  }

  .seminar__button {
    width: 600px;
    height: 95px;
    font-size: 32px;
    max-width: none;
    border-radius: 16px;
    box-shadow: 0 0 0 3px #fff, 0 0 0 10px #D10604, 16px 16px 0 #AA0301;
  }

  .seminar__button._voice {
    margin-top: 43px;
  }

  /* store */
  .store .container {
    width: 72vw;
    max-width: 1200px;
    padding: 70px 0 80px;
  }

  .store__inner {
    position: relative;
  }

  .store__heading {
    align-items: flex-start;
    position: absolute;
    line-height: 1.2;
    left: 0;
  }

  .store__subtitle {
    font-size: 26px;
  }

  .store__title {
    width: 31.0vw;
    max-width: 580px;
    height: auto;
    font-size: 86px;
  }

  .store__description {
    width: 100%;
    font-size: 43px;
    transform: scale(1);
    margin: 0 0 0 0;
  }

  .store__description-flex {
    font-size: 53px;
  }

  .store__description strong {
    font-size: 132px;
  }

  .store__description-flex img {
    width: 105px;
  }

  .store__map {
    width: 66vw;
    padding: 150px 0 0 8vw;
  }

  .store__map .map-arrow .map-arrow-img{
    top: 72%;
    left: 62.7%;
  }

  .store__map .map-arrow .map-arrow-img img{
    width: 51vw;
    height: 51vw;
  }

  .store__map img{
    width: 100%;
    height: auto;
    display: block;
  }

  .store__map-hokkaido {
    top: 171px;
    right: 67px;
    font-size: 33px;
    padding: 6px;
  }

  .store__bottom {
    width: 33vw;
    max-width: 460px;
    font-size: 46px;
    margin: -60px 0 0 auto;
  }

  .store__bottom img {
    width: 100%;
  }

  .store__area{
    width: 100%;
    border: 2px solid #AA0000;
    margin: 90px auto 0;
    padding: 0 50px 48px;
  }

  .store__area .head {
    color: #FFF;
    width: 36%;
    text-align: center;
    font-size: 30px;
    background: #AA0000;
    padding: 12px 10px 15px;
    margin: -30px auto 0;
  }

  .store__area p.area {
    color: #000;
    width: 100%;
    text-align: center;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0.08em;
    margin: 36px auto 0;
  }

  /* lemon */
  .lemon .container {
    width: 72vw;
    max-width: 1200px;
    padding: 80px 28px;
    gap: 72px;
  }

  .lemon__heading-main {
    font-size: 84px;
  }

  .lemon__heading-sub {
    font-size: 26px;
  }

  .lemon__cc {
    gap: 29px;
    margin-bottom: 29px;
  }

  .lemon__img-ganso {
    width: 105px;
    margin-top: 14px;
  }

  .lemon__title {
    font-size: 88px;
    margin-top: -7px;
  }

  .lemon__title span {
    font-size: 79px;
    padding-bottom: 0;
  }

  .lemon__text {
    font-size: 26px;
    line-height: 48px;
    padding-top: 0;
  }

  .lemon__text span {
    font-size: 42px;
  }

  .lemon__img-sour {
    width: 280px;
    bottom: -46px;
    right: -10px;
  }

  /* merit */
  .merit .container {
    width: 72vw;
    max-width: 1200px;
    padding: 70px 24px;
  }

  .merit-acquired__heading {
    font-size: 60px;
  }

  .merit-acquired__heading span {
    font-size: 41px;
  }

  .merit-acquired__heading strong {
    font-size: 110px;
  }

  .merit-acquired__heading strong span {
    font-size: 31px;
  }

  .merit-acquired__circle {
    padding: 50px 0 40px;
  }

  .merit-acquired__circle-izakaya {
    width: 324px;
    font-size: 34px;
  }

  .merit-acquired__circle-izakaya strong {
    font-size: 51px;
  }

  .merit-acquired__circle-yakiniku {
    width: 263px;
    font-size: 28px;
    left: 301px;
    top: 19px;
  }

  .merit-acquired__circle-yakiniku strong {
    font-size: 43px;
  }

  .merit-acquired__circle-arrow {
    width: 134px;
    top: 201px;
    right: 122px;
  }

  .merit-acquired__circle-text {
    font-size: 31px;
    top: 316px;
  }

  .merit-acquired__circle-text strong {
    font-size: 70px;
  }

  .merit__text {
    font-size: 42px;
    margin-bottom: 48px;
    padding: 12px 0;
  }

  .merit-stores__heading {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 19px;
  }

  .merit-stores__heading img{
    width: 32.5vw;
    max-width: 510px;
    height: auto;
    display: block;
    margin: 0;
  }

  .merit-stores__heading strong {
    font-size: 118px;
    margin-bottom: 10px;
  }

  .merit-stores__heading p {
    padding-top: 0;
    margin-top: 14px;
  }

  .merit-stores__numbers span {
    font-size: 50px;
    margin-top: 0;
  }

  .merit-stores__numbers span strong {
    font-size: 110px;
  }

  .merit-stores__numbers .arrow {
    width: 157px;
    top: 100px;
    right: 230px;
  }

  .merit-stores__numbers .graph {
    width: 46vw;
    max-width: 820px;
    margin: 0;
  }

  .merit-stores .bg {
    width: 500px;
    bottom: -20px;
    left: -270px;
    z-index: 100;
  }

  /* point */
  .point .container {
    padding: 0 calc(50% - 50vw);
    max-width: none;
  }

  .point__title {
    font-size: 70px;
    line-height: 1.3;
    padding: 30px 0 32px;
  }

  .point__heading {
    width: 100%;
    padding: 70px 23px;
    margin: 0;
    font-size: 57px;
    line-height: 1.1;
  }

  .point__inner {
    width: 1000px;
    margin: 0 auto;
    position: relative;
  }

  .point__heading .bg {
    width: 270px;
    top: -200px;
    left: -70px;
    z-index: 0;
  }

  .point__heading p {
    padding-left: 190px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
  }

  .point__heading p img{
    width: 790px;
    width: 54vw;
    max-width: 870px;
    height: auto;
  }

  .point__heading strong {
    font-size: 109px;
  }

  .point__heading span {
    font-size: 69px;
  }

  .point-item {
    max-width: none;
    width: 100%;
    padding: 0 56px;
    margin: 0 auto;
  }

  .point-item__heading {
    padding: 50px 0 42px;
  }

  .point-item__heading .announce {
    width: auto;
    font-size: 37px;
    padding: 7px 30px;
    margin-bottom: 5px;
  }

  .point-item__title {
    width: auto;
    font-size: 83px;
  }

  .point-item__title img{
    width: auto;
    height: 170px;
    height: 12.6vw;
    height: 5.2vw;
    display: block;
  }

  .point-item__body-inner {
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
  }

  .point .item1 .point-item__body {
    margin: 0;
  }

  .point .item1 .point-item__body-heading {
    font-size: 44px;
    padding: 70px 39px 190px;
    line-height: 1.2;
  }

  .point .item1 .point-item__body-heading p {
    width: 900px;
    margin: 0 auto 20px;
  }

  .point .item1 .point-item__body-heading strong {
    font-size: 61px;
  }

  .point .item1 .point-item__body-heading ._img {
    width: 800px;
    width: 65vw;
    max-width: 1100px;
  }

  .point .item1 .point-item__body-content .em {
    width: 868px;
    margin: 0 auto;
    padding: 284px 24px 64px;
  }

  .point .item1 .point-item__body-content .em p {
    font-size: 110px;
    top: 145px;
    line-height: 1;
  }

  .point .item1 .point-item__body-content .em div span {
    font-size: 71px;
    line-height: 1.4;
    padding-left: 0;
  }
  .point .item1 .point-item__body-content .em div span img{
    width: auto;
    height: 98px;
  }

  .point .item1 .point-item__body-text {
    font-size: 66px;
    padding-bottom: 70px;
    padding: 0 18% 70px;
  }

  .point .item1 .point-item__body-text strong {
    font-size: 66px;
  }

  .point .item1 .point-item__body-list {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    border-top: 1px solid #AA0000;
    border-bottom: 1px solid #AA0000;
  }

  .point .item1 .point-item__body-item {
    width: 33.3333%;
    padding: 40px 40px;
    flex-direction: column;
    flex: 0 auto;
    border: 1px solid #AA0000;
    border-left: none;
    border-top: none !important;
    border-bottom: none;
  }

  .point .item1 .point-item__body-item:nth-child(2) {
    flex-direction: column;
  }

  .point .item1 .point-item__body-item:last-child {
    border-right: none;
  }

  .point .item1 .point-item__body-item>img {
    height: auto;
    object-fit: contain;
  }

  .point .item1 .point-item__body-item img.point-img {
    width: 100%;
    aspect-ratio: 446 / 639;
  }

  .point .item1 .point-item__body-item h4 {
    font-size: 25px;
    line-height: 1.3;
    margin-top: 35px;
  }

  .point .item1 .point-item__body-item h4 img {
    width: auto;
    height: 86px;
    margin: 0 auto 24px;
  }

  .point .item1 .point-item__body-item p {
    font-size: 25px;
    line-height: 1.6;
    text-align: justify;
    letter-spacing: 0.04em;
  }

  .point .item2 {
    padding: 0;
  }

  .point .item2 .point-item__intro {
    padding: 65px 0 70px 0;
    width: 72vw;
    max-width: 1200px;
    margin: 0 auto;
  }

  .point .item2 .point-item__intro .question img {
    width: 600px;
    padding: 14px 20px;
    margin-top: 20px;
  }

  .point .item2 .point-item__heading {
    padding: 41px 0;
    flex-direction: row;
    justify-content: center;
    gap: 35px;
  }

  .point .item2 .point-item__heading .announce {
    background: url(../img/announce.jpg) no-repeat top center/cover;
    padding: 30px 7px;
    width: auto;
    writing-mode: vertical-lr;
    font-size: 36px;
  }

  .point .item2 .point-item__title {
    font-size: 61px;
  }

  .point .item2 .point-item__title img{
    width: auto;
    height: 12.2vw;
    max-height: 200px;
    display: block;
  }

  .point .item2 .point-item__title span {
    font-size: 69px;
  }

  .point .item2 .point-item__intro-text {
    width: 100%;
    font-size: 50px;
    margin: 30px 0 60px 0;
  }

  .point .item2 .point-item__intro-text img{
    width: 760px;
    height: auto;
    margin: 0 auto;
  }

  .point .item2 .img{
    width: 100%;
    max-width: 1100px;
    height: auto;
    padding-right: 0;
    margin: 0 auto;
  }

  .point-item__body {
    margin: 0;
  }

  .point .item2 .point-item__body-heading {
    padding: 70px 50px;
    margin: 0 56px;
    border-top: 1px solid #AA0000;

  }

  .point .item2 .point-item__body-heading span {
    width: 70vw;
    max-width: 1100px;
    font-size: 35px;
    line-height: 1;
    padding: 24px 23px;
  }

  .point .item2 .point-item__body-heading p {
    width: 55vw;
    font-size: 25px;
    letter-spacing: 0.06em;
    margin: 0 auto 50px;
  }

  .point .item2 .point-item__body-heading .bg {
    width: 34vw;
    max-width: 600px;
    right: -7vw;
    top: 490px;
    z-index: 100;
  }

  .point .item2 .point-item__body-heading .award {
    width: 71vw;
    max-width: 1200px;
    height: auto;
    margin: 55px 0 60px 0;
  }

  .point .item2 .point-item__body-heading .award img{
    width: 100%;
    height: auto;
    display: block;
  }

  .point .item3 .point-item__intro {
    margin: 0;
    padding: 70px 47px 47px;
  }

  .point .item3 .point-item__intro .question p {
    font-size: 41px;
  }

  .point .item3 .point-item__intro .question img {
    width: 565px;
    padding: 13px 20px;
  }


  .point .item3 .point-item__heading {
    flex-direction: row;
    padding: 42px 0 79px;
    margin: 0;
    gap: 35px;
  }

  .point .item3 .point-item__heading .announce {
    background: url(../img/announce.jpg) no-repeat top center/cover;
    padding: 30px 7px;
    writing-mode: vertical-lr;
    margin-bottom: 0;
    font-size: 36px;
    width: auto;
  }

  .point .item3 .point-item__title {
    font-size: 61px;
  }

  .point .item3 .point-item__title img{
    width: auto;
    height: 12.2vw;
    max-height: 200px;
    display: block;
  }

  .point .item3 .point-item__title span {
    font-size: 69px;
  }

  .point .marquee {
    margin: 0 -47px;
  }

  .point .marquee-text {
    font-size: 65px;
  }

  .point .item3 .point-item__intro-list {
    margin: 0 -47px;
    flex-direction: row;
    justify-content: center;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }

  .point .item3 .point-item__intro-item {
    padding: 27px 30px 36px;
    border: 1px solid #FFFFFF;
    border-left: none;
    flex-direction: column;
    gap: 25px;
    flex: 0 auto;
    width: calc(1000px / 3);
    border-top: none !important;
    border-bottom: none;
  }

  .point .item3 .point-item__intro-item:nth-child(2) {
    flex-direction: column;
  }

  .point .item3 .point-item__intro-item:last-child {
    border-right: none;
  }

  .point .item3 .point-item__intro-item div {
    width: 100%;
    align-items: center;
  }

  .point .item3 .point-item__intro-item h4 {
    height: 28px;
    font-size: 31px;
    line-height: 1;
  }

  .point .item3 .point-item__intro-item div>img {
    height: auto;
    object-fit: contain;
    aspect-ratio: auto;
  }

  .point .item3 .point-item__intro-item span {
    font-size: 25px;
    text-align: center;
  }

  .point .item3 .point-item__intro-item span img {
    width: 100%;
  }

  .point .item3 .point-item__intro-item p {
    font-size: 15px;
    line-height: 1.8;
  }

  .point .item3 .point-item__intro-bottom {
    padding-top: 40px;
    font-size: 46px;
    line-height: 1.6;
  }

  .point .item3 .point-item__intro-bottom p {
    padding: 4px 0 9px 0;
  }

  .point .item3 .point-item__support {
    margin: 0;
  }

  .point .item3 .point-item__support-content {
    width: 72vw;
    max-width: 1200px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0 44px;
    margin: 0 auto;
    gap: 0;
  }

  .point .item3 .point-item__support-content h4 {
    width: 46px;
    font-size: 48px;
  }

  .point .item3 .point-item__support-content h4 img {
    width: 100%;
    height: auto;
  }

  .point .item3 .point-item__support-content ul {
    width: 84%;
    font-size: 26px;
    gap: 10px;
  }

  .point .item3 .point-item__support .bg-lemon:nth-of-type(1) {
    width: 88px;
    top: 60px;
    left: 80%;
  }

  .point .item3 .point-item__support .bg-lemon:nth-of-type(2) {
    width: 57px;
    top: 354px;
    left: 26%;
  }

  .point .item3 .point-item__support .bg-lemon:nth-of-type(3) {
    width: 116px;
    top: 532px;
    left: 27%;
  }

  .point .item3 .point-item__support .bg-lemon:nth-of-type(4) {
    width: 83px;
    top: 659px;
    right: 28%;
  }

  .point .item3 .point-item__bottom {
    margin: 0;
    padding: 49px 20px 54px;
    font-size: 69px;
  }

  .point-item__bottom p {
    width: 68vw;
    max-width: 1000px;
    margin: 0 auto;
  }

  /* ランニングスライド */
  .line-cta .container {
    max-width: none;
    background: url(../img/cta-bg.jpg) no-repeat center / cover;
    margin: 0 56px;
  }

  .line-cta__inner {
    width: 72vw;
    max-width: 1200px;
    margin: 0 auto;

  }

  .line-cta__heading {
    margin: 0;
    padding: 70px 0 60px;

  }

  .line-cta__heading img {
    margin: 0 auto;
  }

  .line-cta__title {
    font-size: 46px;
    margin-bottom: 50px;
    letter-spacing: 0.06em;
  }

  .line-cta__title strong {
    font-size: 130px;
  }

  .line-cta__title span {
    font-size: 34px;
    letter-spacing: 0;
    margin-top: 25px;
    display: inline-block;
    line-height: 1;
  }

  .line-cta__body {
    margin: 0;
    padding: 60px 0 60px;
    font-size: 51px;
    line-height: 1.4;
    background: url(../img/cta-bg.jpg) no-repeat center / cover;
  }

  .line-cta__body p {
    width: 100%;
    margin: 0 auto;
  }

  .line-cta__bottom {
    margin: 0;
    padding: 42px 20px 81px;
    background: url(../img/cta-bg.jpg) no-repeat center / cover;
  }

  .line-cta__slide {
    margin: 0 -56px 46px;
    gap: 7px;
  }

  .line-cta__slide li,
  .sns__slide li {
    width: 1043px;
  }

  .line-cta__button {
    max-width: none;
    width: 637px;
    height: 113px;
    font-size: 46px;
    gap: 16px;
    border-radius: 15px;
    box-shadow: 0 0 0 3px #fff, 0 0 0 10px #38CD01, 16px 16px 0 #229B68;
  }

  .line-cta__button .line-ico {
    width: 63px;
  }

  /* sns */
  .sns .container {
    padding: 52px 20px 66px;
    max-width: none;
    width: calc(100% - 112px);
  }

  .sns__heading {
    margin-bottom: 32px;
    align-items: flex-end;
    gap: 70px;
  }

  .sns__heading .left,
  .sns__heading .right {
    height: 130px;
    width: 3px;
  }

  .sns__title {
    font-size: 58px;
  }

  .sns__title strong {
    font-size: 81px;
  }

  /* voice */
  .voice .container {
    padding: 0 26px;
    max-width: none;
    width: calc(100% - 112px);
  }

  .voice__title {
    margin: 0 -26px;
    padding: 30px 0;
    font-size: 61px;
    line-height: 1;
  }

  .voice__title img {
    width: auto;
    height: 60px;
    display: block;
  }

  .voice-item {
    margin: 0 -25px;
  }

  .voice-item__inner {
    width: 1000px;
    width: 72vw;
    max-width: 1200px;
    padding: 0 90px;
    padding: 60px 90px 0;
    padding: 60px 0 15px;
    margin: 0 auto;
  }

  .voice-item__inner.first{
    padding: 0 0 15px;
  }

  .voice-item__title {
    margin: 0 auto;
    padding: 78px 0;
    padding: 15px 0 90px;
    font-size: 57px;
    line-height: 1.3;
  }

  .voice-item__title img{
    width: auto;
    height: 150px;
  }

  .voice-item__heading-image {
    width: 980px;
    width: 100%;
    margin: 0 auto 49px;
  }

  .voice-item__heading-image span {
    width: 520px;
    font-size: 112px;
    top: -46px;
    right: 20px;
  }

  .voice-item__heading-image span img{
    width: 100%;
    height: auto;
    display: block;
  }

  .voice-item__heading-text {
    width: 980px;
    width: 1000px;
    width: 72vw;
    max-width: 1200px;
    font-size: 29px;
    letter-spacing: 0.02em;
    text-align: center;
    margin: 0 auto 70px;
  }

  .voice-item__body-item {
    width: 980px;
    width: 72vw;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 70px;
    gap: 40px;
  }

  .voice-item__body-item:last-child {
    gap: 31px;
    padding-bottom: 105px;
  }

  .voice-item__body-item:last-child .answer {
    gap: 56px;
  }

  .voice-item__body-item .question {
    font-size: 38px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .voice-item__body-item .answer {
    font-size: 22px;
    flex-direction: row;
    gap: 30px;
    gap: 50px;
  }

  .voice-item__body-item .answer p{
    font-size: 23px;
    letter-spacing: 0.02em;
    line-height: 1.7;
  }

  .voice-item__body-item .answer.reverse {
    flex-direction: row-reverse;
  }

  .voice-item__body-item .answer img {
    width: 40%;
    height: auto;
  }

  .voice-item__body-item .answer p img {
    width: 100%;
  }

  /* mission */
  .mission .container {
    width: 72vw;
    max-width: 1200px;
    padding: 70px 0 65px;
  }

  .mission__heading {
    gap: 60px;
  }

  .mission__title {
    font-size: 64px;
    font-size: 68px;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
    margin-bottom: 10px;
  }

  .mission .logo {
    width: 508px;
    width: 780px;
  }

  .mission__body {
    padding-top: 147px;
    padding-top: 200px;
    gap: 35px;
  }

  .mission__body span {
    font-size: 168px;
    font-size: 236px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }

  .mission__subtitle {
    font-size: 46px;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.5;
  }

  .mission__text {
    font-size: 23px;
    font-size: 26px;
  }

  .mission__text strong {
    font-size: 66px;
    font-size: 72px;
    letter-spacing: 0.05em;
    padding-top: 20px;
  }

  /* contact-cta */
  .contact-cta .container {
    width: 100%;
    max-width: none;
  }

  .contact-cta__heading {
    padding: 48px 20px;
    padding: 60px 20px;
  }

  .contact-cta__title {
    font-size: 87px;
  }

  .contact-cta__title img{
    width: 800px;
    height: auto;
  }

  .contact-cta__body {
    margin: 0 56px;
    padding: 70px 0 80px;
  }

  .contact-cta__body h3 {
    font-size: 51px;
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .contact-cta__body h3 span {
    width: 1100px;
    margin: 0 auto;
    padding-left: 0;
    display: block;
  }

  .contact-cta__inner {
    width: 1100px;
    margin: 0 auto;
    position: relative;
  }

  .contact-cta__body ul {
    padding: 48px 20px 0 22px;
    font-size: 31px;
    line-height: 1.4;
    gap: 18px;
  }

  .contact-cta__body li {
    padding-left: 1em;
    margin-left: -0.3em;
  }

  .contact-cta__body .bg.hormone {
    width: 500px;
    width: 630px;
    top: -200px;
    right: -360px;
  }

  .contact-cta__body .bg.tongue {
    width: 580px;
    bottom: -430px;
    left: -210px;
  }

  .contact-cta__bottom {
    width: 1100px;
    margin: 0 auto;
    padding: 60px 32px 100px;
    gap: 70px;
  }

  .contact-cta__bottom h3 {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .contact-cta__bottom p {
    font-size: 66px;
    margin: 0 -32px 14px;
  }

  .contact-cta__bottom p img{
    width: 860px;
  }

  .contact-cta__bottom p span {
    font-size: 59px;
  }

  .contact-cta__button {
    max-width: none;
    width: 600px;
    height: 126px;
    box-sizing: border-box;
    border-radius: 15px;
    font-size: 48px;
    box-shadow: 0 0 0 3px #fff, 0 0 0 10px #FFE243, 16px 16px 0 #C7B000;
  }

  .contact-cta__button img{
    width: 500px;
    height: auto;
    display: block;
  }

  /* join */
  .join .container {
    max-width: none;
    width: calc(100% - 112px);
    margin: 0 auto;
  }

  .join__heading {
    padding: 28px 10px;
  }

  .join__title {
    font-size: 58px;
  }

  .join__body {
    padding: 70px 20px 70px;
  }

  .join__body table {
    width: 668px;
    width: 1000px;
    width: 72vw;
    max-width: 1200px;
    border-spacing: 8px;
  }

  .join__body table th {
    width: 32%;
    font-size: 26px;
    padding: 5px 0;
  }

  .join__body table td {
    width: 68%;
    font-size: 31px;
    line-height: 1.5;
    padding-left: 35px;
  }

  .join__body table td span {
    font-size: 20px;
  }

  .join__body table :nth-of-type(8) td {
    font-size: 23px;
  }

  .join__body table td ul {
    padding: 21px 0 33px;
  }

  .join__body-result {
    width: 868px;
    margin: 0 auto;
    font-size: 61px;
  }

  .join__body-result span {
    font-size: 79px;
  }

  .join__body-result strong {
    font-size: 139px;
  }

  .join__body-result .note {
    font-size: 41px;
    padding-right: 103px;
    margin-top: 10px;
  }


  /* flow */
  .flow .container {
    padding: 60px 0 80px;
    width: calc(100% - 112px);
    max-width: none;
  }

  .flow__heading {
    margin-bottom: 50px;
  }

  .flow__heading span {
    font-size: 152px;
    font-weight: 600;
  }

  .flow__title {
    font-size: 58px;
    padding-top: 84px;
    font-weight: 800;
  }

  .flow__body {
    grid-template-columns: repeat(3, 1fr);
    gap: 44px 28px;
    width: 1000px;
    width: 72vw;
    max-width: 1200px;
    margin: 0 auto;
  }

  .flow-item {
    padding: 32px 25px 25px;
    height: 270px;
  }

  .flow-item span {
    left: 9px;
    font-size: 18px;
    width: 114px;
    height: 35px;
  }

  .flow-item__title {
    font-size: 30px;
  }

  .flow-item__text {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: justify;
    margin-top: 16px;
  }

  .flow-item__button {
    width: 100%;
    height: 58px;
    margin-top: auto;
    font-size: 17px;
    gap: 13px;
  }

  .flow-item__button .ico1 {
    width: 16px;
  }

  .flow-item__button .ico2 {
    width: 17px;
    margin-left: 9px;
  }

  /* faq */
  .faq .container {
    padding: 56px 0 78px;
  }

  .faq__title {
    font-size: 58px;
    margin-bottom: 47px;
  }

  .faq__content {
    width: 72vw;
    max-width: 1200px;
    gap: 12px;
  }

  .faq-item__question {
    height: 72px;
    padding: 14px 20px;
    border-radius: 6px;
  }

  .faq-item__question::after {
    width: 12px;
    height: 12px;
    top: 36%;
    right: 22px;
  }

  .faq-item__question-inner {
    height: 100%;
    gap: 12px;
  }

  .faq-item__question-icon {
    width: 36px;
  }

  .faq-item__question-text {
    font-size: 22px;
  }

  .faq-item__answer {
    padding: 15px 40px 12px 70px;
  }

  .faq-item__answer-text {
    font-size: 19px;
  }

  /* contact */
  .contact .container {
    max-width: none;
    width: calc(100% - 112px);
  }

  .contact__heading {
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .contact__heading span {
    font-size: 110px;
    line-height: 134px;
  }

  .contact__title {
    font-size: 58px;
    padding-top: 64px;
  }

  .contact .contact-form {
    width: 800px;
    width: 68vw;
    max-width: 1000px;
    margin: 0 auto;
    gap: 14px;
  }

  .contact .form-row {
    grid-template-columns: 140px 1fr;
  }

  .contact .form-label,
  .contact .wpcf7-form-control.wpcf7-radio .wpcf7-list-item label {
    font-size: 20px;
    letter-spacing: 0.04em;
    padding-top: 5px;
  }

  .contact .wpcf7-form-control.wpcf7-radio {
    padding: 0;
  }

  .contact .wpcf7-form-control,
  .contact .contact-form input[type=text],
  .contact .contact-form input[type=email],
  .contact .contact-form input[type=tel],
  .contact .contact-form textarea {
    font-size: 14px;
    padding: 12px 10px;
  }

  .contact .form-actions {
    text-align: center;
    margin-top: 20px;
  }

  .contact .form-label:first-child {
    padding-top: 5px;
  }

  .contact .req {
    font-size: 13px;
  }

  .contact .btn-primary {
    width: 500px;
    font-size: 32px!important;
    padding: 12px 36px;
    margin-bottom: 10px;
  }

  /* footer */
  .footer .container {
    max-width: none;
    width: calc(100% - 112px);
    padding: 26px 10px;
    margin: 0 auto;
    font-size: 10px;
  }
}
