@charset "UTF-8";
:root {
  /*===================== Color =====================*/
  --color-toyopet: #005952;
  --color-hac-base: #005952;
  --color-chubase-red: #F40013;
  --color-hac-base: #0F5E75;
  --color-kinto: #20A5C0;
  --color-main: #1F1F1F;
  --color-light-blue: #44A0BE;
  --color-blue: #178BD2;
  --color-red: #DB0011;
  --color-red02: #E54956;
  --color-pink: #EB6B76;
  --color-orange: #F28212;
  --color-gold: #B18B31;
  --color-light-gray: #C8C8C8;
  --color-white-blue: #E1ECEF;
  --color-gray: #DEE4E8;
  --color-blue-gray-light: rgba(235, 241, 245, 0.9);
  --color-blue-gray: #8E9FA4;
  --color-used: #EC1223;
  --color-light-green: #46B41E;
  --color-dark-green: #3A4246;
  --color-green: #00A941;
  --color-green02: #46B196;
  --color-green03: #00CDA4;
  --color-02: #556168;
  --color-03: #2970C0;
  --color-navy: #38405C;
  --color-sub-txt: #818181;
  --color-sub-txt-v02: #6F6F6F;
  --color-sub: #9D9D9D;
  --color-sub-line05: #d6d6d6;
  /*表*/
  --color-table: #494949;
  /*Table*/
  --color-table-bg: #F2F2F2;
  --color-table-menu: #79888D;
  /*===================== Gradient =====================*/
  --gradient-green-blue: linear-gradient(90deg,#78B50F 1%,#69D04D 35%,#38B5CE 72%,#3C64A1 100%);
  --gradient-red-yellow: linear-gradient(90deg,#F05353,#E7B500);
  /*===================== Font =====================*/
  --font-montserrat: "Montserrat", sans-serif;
  --font-manrope: "Manrope", sans-serif;
  --font-bungee: "Bungee", sans-serif;
  /*===================== CONT radius =====================*/
  --ease-bounce-s:linear(0, 0.271 8.8%, 0.542 19.9%, 0.837 34.2%, 1 44.7%, 0.943 51.1%, 0.925 57.5%, 0.937 63.1%, 1 77.4%, 0.991 84.2%, 1);
  --ease-bounce:linear(0, 0.247 13.2%, 0.415 20.5%, 0.624 27.4%, 1 37.8%, 0.794 44.9%, 0.747 47.9%, 0.731 50.8%, 0.744 53.5%, 0.785 56.4%, 0.999 65.5%, 0.927 69.6%, 0.904 73.4%, 0.921 77%, 1 84.5%, 0.981 89.4%, 1);
}

/*================================= 見出し =================================*/
/*======================= SP-VW =======================*/
/*======================= PC-VW =======================*/
/*------ 使用例 ------
.text {
	font-size: spvw(16);
}
*/
/*======================= PCLG-VW =======================*/
/*================================= マウスオーバー =================================*/
/*================================= コンテンツ 角丸 =================================*/
/*================================= アニメーション =================================*/
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes big {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes flipcard01 {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@keyframes flipcard02 {
  0% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/*================================= メニュー左寄せ =================================*/
.l-lower-title-area h1 .large .wrap .img.w01 {
  width: 70%;
  transform: translate(-50%, -45%);
}
.l-lower-title-area h1 .large .wrap .img.w02 {
  width: 75%;
  transform: translate(-50%, -45%);
}
.l-lower-title-area h1 .large .wrap .img.w03 {
  width: 70%;
  transform: translate(-55%, -45%);
}
.l-lower-title-area h1 .large .wrap .img.w04 {
  width: 90%;
  transform: translate(-40%, -45%);
}

.l-lower-cont-area {
  padding-bottom: calc(110 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-lower-cont-area {
    padding-bottom: calc(120 / 1366 * 100vw);
  }
}

.bodycort-cont-title {
  font-size: calc(40 / 750 * 100vw);
  line-height: 1em;
  border-bottom: solid 1px var(--color-sub);
  padding: 0 calc(32 / 750 * 100vw) 1.5em calc(32 / 750 * 100vw);
  box-sizing: border-box;
  margin-bottom: calc(50 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .bodycort-cont-title {
    font-size: clamp(10px, 35 / 1366 * 100vw, 1000px);
    padding: 0 0 1.8em 0;
    margin-bottom: 1.66em;
  }
}
.bodycort-cont-title .small {
  font-weight: 400;
  font-size: 0.5em;
  line-height: 1.2em;
}
@media screen and (min-width: 768px) {
  .bodycort-cont-title .small {
    font-size: 0.55em;
  }
}

/*================================================ フレッシュ・アニュー ================================================*/
section.sec-fresh {
  border-radius: calc(10 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-fresh {
    border-radius: 10px;
  }
}
section.sec-fresh {
  background-color: rgba(255, 255, 255, 0.7);
  padding: calc(100 / 750 * 100vw) calc(33 / 750 * 100vw);
  margin-top: calc(93 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-fresh {
    padding: calc(110 / 1366 * 100vw) 56px;
    margin-top: calc(59 / 1366 * 100vw);
  }
}
section.sec-fresh div.fresh-lead-box {
  margin-bottom: calc(50 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-fresh div.fresh-lead-box {
    margin-bottom: calc(75 / 1366 * 100vw);
  }
}
section.sec-fresh div.fresh-lead-box div.fresh-img {
  border-radius: calc(5 / 750 * 100vw);
  isolation: isolate;
  overflow: hidden;
}
section.sec-fresh div.fresh-lead-box div.fresh-lead-txt {
  padding: 0 calc(32 / 750 * 100vw);
  margin-top: calc(45 / 750 * 100vw);
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  section.sec-fresh div.fresh-lead-box div.fresh-lead-txt {
    padding: 0;
    margin-top: calc(45 / 1366 * 100vw);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section.sec-fresh div.fresh-lead-box div.fresh-lead-txt h4 {
  font-size: calc(80 / 750 * 100vw);
  line-height: 1.2em;
}
@media screen and (min-width: 768px) {
  section.sec-fresh div.fresh-lead-box div.fresh-lead-txt h4 {
    font-size: calc(60 / 1366 * 100vw);
  }
}
section.sec-fresh div.fresh-lead-box div.fresh-lead-txt h4 span {
  display: block;
  line-height: 1.2em;
}
section.sec-fresh div.fresh-lead-box div.fresh-lead-txt h4 .en {
  color: var(--color-used);
  font-weight: bold;
  font-family: var(--font-montserrat);
}
section.sec-fresh div.fresh-lead-box div.fresh-lead-txt h4 .ja {
  font-size: calc(22 / 750 * 100vw);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  section.sec-fresh div.fresh-lead-box div.fresh-lead-txt h4 .ja {
    font-size: 0.26em;
  }
}
section.sec-fresh div.fresh-lead-box div.fresh-lead-txt p {
  font-weight: 400;
  font-size: calc(24 / 750 * 100vw);
  line-height: 1.75em;
  letter-spacing: 0.02em;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  section.sec-fresh div.fresh-lead-box div.fresh-lead-txt p {
    font-weight: 400;
    font-size: clamp(10px, 16 / 1366 * 100vw, 20px);
    line-height: 1.8em;
    letter-spacing: 0.02em;
    width: 41.4%;
    margin-top: 4em;
  }
}
section.sec-fresh .fresh-step-box {
  padding: 0 calc(32 / 750 * 100vw);
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-step-box {
    padding: 0;
    display: flex;
    justify-content: space-between;
  }
}
section.sec-fresh .fresh-step-box li {
  padding: calc(50 / 750 * 100vw) 0;
  border-bottom: dotted calc(2 / 750 * 100vw) var(--color-sub-txt);
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-step-box li {
    padding: 0;
    border: none;
    border-right: dashed 1px var(--color-sub-txt);
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-step-box li:nth-of-type(1) {
    padding-right: 29px;
  }
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-step-box li:nth-of-type(2) {
    padding: 0 29px;
  }
}
section.sec-fresh .fresh-step-box li:last-child {
  border: none;
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-step-box li:last-child {
    padding-left: 29px;
  }
}
section.sec-fresh .fresh-step-box li .step-number-txt {
  color: var(--color-used);
  font-family: var(--font-montserrat);
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 0.6em;
  font-size: calc(24 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-step-box li .step-number-txt {
    font-size: clamp(10px, 16 / 1366 * 100vw, 1000px);
  }
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-step-box li .fresh-step-txt-wrap {
    flex: 1;
  }
}
section.sec-fresh .fresh-step-box li h5 {
  font-weight: 700;
  font-size: calc(40 / 750 * 100vw);
  line-height: 1.32em;
  letter-spacing: 0.04em;
  margin-bottom: 0.4em;
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-step-box li h5 {
    font-weight: 700;
    font-size: clamp(17px, 26 / 1366 * 100vw, 35px);
    line-height: 1.46em;
    letter-spacing: 0.02em;
  }
}
section.sec-fresh .fresh-step-box li .step-txt {
  font-size: calc(24 / 750 * 100vw);
  color: var(--color-sub-txt-v02);
  margin-top: 0.4em;
  line-height: 1.58em;
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-step-box li .step-txt {
    font-size: clamp(10px, 16 / 1366 * 100vw, 1000px);
  }
}
section.sec-fresh .fresh-step-box li .step-note {
  margin-top: 1em;
  font-weight: 400;
  font-size: calc(18 / 750 * 100vw);
  line-height: 1.5em;
  letter-spacing: 0.04em;
  color: var(--color-sub-txt-v02);
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-step-box li .step-note {
    font-weight: 400;
    font-size: clamp(10px, 10 / 1366 * 100vw, 100px);
    line-height: 1.4em;
    letter-spacing: 0.02em;
  }
}
section.sec-fresh .fresh-step-box li div.fresh-step-img {
  margin-top: calc(35 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-step-box li div.fresh-step-img {
    margin-top: calc(29 / 1366 * 100vw);
  }
}
section.sec-fresh .fresh-point {
  background-color: #E54956;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: calc(40 / 750 * 100vw) calc(34 / 750 * 100vw);
  border-radius: calc(35 / 750 * 100vw);
  margin-top: calc(20 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-point {
    padding: calc(6 / 1366 * 100vw);
    border-radius: 50vw;
    margin: calc(70 / 1366 * 100vw) auto 0;
    width: 68.8%;
    align-items: center;
  }
}
section.sec-fresh .fresh-point span {
  display: block;
}
section.sec-fresh .fresh-point .point {
  display: block;
  width: calc(116 / 750 * 100vw);
  height: calc(116 / 750 * 100vw);
  border-radius: 50em;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: var(--font-montserrat);
  font-size: calc(22 / 750 * 100vw);
  line-height: 1em;
  color: var(--color-red02);
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-point .point {
    width: calc(100 / 1366 * 100vw);
    height: calc(100 / 1366 * 100vw);
    font-size: calc(17 / 1366 * 100vw);
  }
}
section.sec-fresh .fresh-point .txt {
  width: calc(100% - 140 / 750 * 100vw);
  color: #fff;
  font-size: calc(24 / 750 * 100vw);
  font-weight: 500;
  line-height: 1.58em;
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-point .txt {
    font-size: calc(20 / 1366 * 100vw);
    width: calc(100% - 140 / 1366 * 100vw);
  }
}
section.sec-fresh .fresh-table-box {
  border-top: solid 1px var(--color-sub);
  padding: calc(90 / 750 * 100vw) 0 0;
  margin: calc(90 / 750 * 100vw) 0 0;
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-table-box {
    padding: calc(90 / 1366 * 100vw) 0 0;
    margin: calc(90 / 1366 * 100vw) 0 0;
  }
}
section.sec-fresh .fresh-table-box h5 {
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 1.2em;
  font-size: calc(30 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-table-box h5 {
    font-size: calc(22 / 1366 * 100vw);
  }
}
section.sec-fresh .fresh-table-box h5 .small {
  font-size: 0.72em;
}
section.sec-fresh .fresh-table-box div.table-wrap {
  overflow-x: scroll;
  width: calc(100% + 33 / 750 * 100vw);
  margin-bottom: calc(20 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-table-box div.table-wrap {
    overflow: revert;
    margin-bottom: calc(22 / 1366 * 100vw);
    width: 100%;
  }
}
section.sec-fresh .fresh-table-box table {
  width: 220%;
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-table-box table {
    width: 100%;
  }
}
section.sec-fresh .fresh-table-box table th, section.sec-fresh .fresh-table-box table td {
  vertical-align: top;
  box-sizing: border-box;
  vertical-align: middle;
  position: relative;
  line-height: 1.2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1em 0;
}
section.sec-fresh .fresh-table-box table tr {
  display: flex;
  justify-content: space-between;
  gap: calc(3 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-table-box table tr {
    gap: 3px;
  }
}
section.sec-fresh .fresh-table-box table tr:nth-of-type(1) th {
  background-color: var(--color-dark-green);
  color: #fff;
  font-weight: bold;
  border-radius: calc(5 / 750 * 100vw) calc(5 / 750 * 100vw) 0 0;
  font-size: calc(28 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-table-box table tr:nth-of-type(1) th {
    font-size: clamp(10px, 18 / 1366 * 100vw, 1000px);
    border-radius: 5px 5px 0 0;
  }
}
section.sec-fresh .fresh-table-box table tr:nth-of-type(1) th .small {
  display: block;
  text-align: center;
  color: var(--color-light-gray);
  line-height: 1.6em;
  margin-top: 0.8em;
  font-size: 0.6em;
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-table-box table tr:nth-of-type(1) th .small {
    font-size: 0.6em;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-fresh .fresh-table-box table tr:nth-of-type(1) th .small {
    font-size: 0.55em;
  }
}
section.sec-fresh .fresh-table-box table tr th {
  background-color: var(--color-table-menu);
  color: #fff;
  width: 18.5%;
  font-weight: 500;
  padding: 1.5em 0;
  margin-bottom: calc(3 / 750 * 100vw);
  font-size: calc(24 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-table-box table tr th {
    margin-bottom: 3px;
    font-size: clamp(10px, 15 / 1366 * 100vw, 1000px);
  }
}
section.sec-fresh .fresh-table-box table tr th:nth-of-type(1) {
  width: 26%;
}
section.sec-fresh .fresh-table-box table tr td {
  width: 18.5%;
  background-color: #fff;
  font-family: var(--font-manrope);
  margin-bottom: calc(3 / 750 * 100vw);
  font-size: calc(24 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-table-box table tr td {
    margin-bottom: 3px;
    font-size: clamp(10px, 16 / 1366 * 100vw, 1000px);
  }
}
section.sec-fresh .fresh-table-box p.fresh-note {
  color: var(--color-sub-txt-v02);
  font-weight: 400;
  font-size: calc(18 / 750 * 100vw);
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  section.sec-fresh .fresh-table-box p.fresh-note {
    font-weight: 400;
    font-size: clamp(10px, 10 / 1366 * 100vw, 100px);
    line-height: 1.4em;
    letter-spacing: 0.02em;
  }
}

/*================================================ おすすめメニュー ================================================*/
section.sec-recommend {
  border-radius: calc(10 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-recommend {
    border-radius: 10px;
  }
}
section.sec-recommend {
  background-color: rgba(255, 255, 255, 0.7);
  padding: calc(100 / 750 * 100vw) calc(33 / 750 * 100vw);
  margin-top: calc(20 / 750 * 100vw);
  margin-bottom: calc(70 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-recommend {
    padding: calc(100 / 1366 * 100vw) 56px;
    margin-top: calc(18 / 1366 * 100vw);
    margin-bottom: calc(70 / 1366 * 100vw);
  }
}
section.sec-recommend div.recommend-cont {
  box-sizing: border-box;
  padding: calc(70 / 750 * 100vw) 0;
  border-bottom: solid 1px var(--color-main);
}
@media screen and (min-width: 768px) {
  section.sec-recommend div.recommend-cont {
    padding: calc(90 / 1366 * 100vw) 0;
    margin: 0 30px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-recommend div.recommend-cont {
    margin: 0 56px;
  }
}
section.sec-recommend div.recommend-cont:nth-of-type(1) {
  padding-top: 0;
}
section.sec-recommend div.recommend-cont:nth-last-of-type(1) {
  border-bottom: none;
  padding-bottom: 0;
}
section.sec-recommend div.recommend-cont > :first-child {
  margin-top: 0 !important;
}
section.sec-recommend div.recommend-cont h4 {
  box-sizing: border-box;
  padding: 0 calc(32 / 750 * 100vw);
  font-size: calc(40 / 750 * 100vw);
  line-height: 1.3em;
  font-weight: bold;
  margin-top: 1.6em;
}
@media screen and (min-width: 768px) {
  section.sec-recommend div.recommend-cont h4 {
    font-size: clamp(10px, 30 / 1366 * 100vw, 1000px);
    padding: 0;
  }
}
section.sec-recommend div.recommend-cont h4 .small {
  display: block;
  color: var(--color-used);
  font-weight: 500;
  font-size: calc(24 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-recommend div.recommend-cont h4 .small {
    font-size: 0.6em;
  }
}
section.sec-recommend div.recommend-cont div.recommend-img01 {
  margin-top: calc(45 / 750 * 100vw);
  border-radius: calc(5 / 750 * 100vw);
  overflow: hidden;
  isolation: isolate;
}
@media screen and (min-width: 768px) {
  section.sec-recommend div.recommend-cont div.recommend-img01 {
    margin-top: calc(43 / 1366 * 100vw);
    border-radius: calc(5 / 1366 * 100vw);
  }
}
section.sec-recommend div.recommend-cont p {
  font-size: calc(26 / 750 * 100vw);
  line-height: 1.5em;
  box-sizing: border-box;
  padding: 0 calc(32 / 750 * 100vw);
  margin-top: 1.5em;
}
@media screen and (min-width: 768px) {
  section.sec-recommend div.recommend-cont p {
    padding: 0;
    margin-top: 1.5em;
    font-size: clamp(12px, 18 / 1366 * 100vw, 1000px);
  }
}
section.sec-recommend div.recommend-cont .recommend-img02-wrap {
  margin-top: calc(70 / 750 * 100vw);
  box-sizing: border-box;
  padding: 0 calc(32 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-recommend div.recommend-cont .recommend-img02-wrap {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: calc(65 / 1366 * 100vw);
  }
}
section.sec-recommend div.recommend-cont .recommend-img02-wrap .recommend-img02 {
  margin-bottom: calc(40 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-recommend div.recommend-cont .recommend-img02-wrap .recommend-img02 {
    margin-bottom: 6%;
    width: 46%;
  }
}
section.sec-recommend div.recommend-cont .recommend-img02-wrap .recommend-img02:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  section.sec-recommend div.recommend-cont .recommend-img02-wrap .recommend-img02:nth-last-of-type(2) {
    margin-bottom: 0;
  }
}

div.bk-bg-wrap {
  background-color: var(--color-main);
  box-sizing: border-box;
  padding: calc(90 / 750 * 100vw) calc(20 / 750 * 100vw) 0;
}
@media screen and (min-width: 768px) {
  div.bk-bg-wrap {
    padding: calc(120 / 1366 * 100vw) 56px 0;
  }
}
div.bk-bg-wrap a {
  margin-bottom: 0;
}/*# sourceMappingURL=bodycort.css.map */