@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');

:root {
  --black: #000000;
  --white: #ffffff;
  --yellow: #fff100;
  --blue: #00a1e4;
  --red: #e60037;
  --red2: #da002f;
  --red3: #bb1c24;
  --l-gray: #f6f6f6;
  --l-beige: #fcf1e6;
  --brown: #7b5425;
  --l-brown: #c8793c;
}

/* ====================================================================================

  Kushikatsu Tanaka LP Styles

==================================================================================== */
html {
  font-size: 62.5%;
  font-size: 10px;
}
body {
  font-family: "Noto Sans jp", sans-serif;
  min-width: 1060px;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.l-container {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.inner {
  max-width: 1000px;
  width: calc(920 / 1000 * 100%);
  margin: auto;
}
section { position: relative; }

.l-main {
  position: relative;
  padding: 0 0 100px;
}

.yl {
  display: inline !important;
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.sp { display: none; }

@media screen and (max-width:640px) {
  body {
    min-width: initial;
    min-height: initial;
    display: block;
  }
  .inner {
    max-width: initial;
    width: calc(690 / 750 * 100%);
  }
  .l-main { padding: 0 0 20%; }
  .pc { display: none; }
  .sp { display: inherit; }
}

/*
  Footer
==================================================================================== */
.l-footer {
  position: relative;
  width: 100%;
  height: 150px;
  text-align: center;
  display: grid;
  place-items: center;
  background-color: var(--black);
}
.copy {
  font-size: 13px;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: .05em;
}

@media screen and (max-width:640px) {
  .l-footer { height: calc(200 / 750 * 100vw); }
  .copy { font-size: max(calc(13 / 750 * 100vw), 12px); }
}

/*
  Contact
==================================================================================== */
.contact-unit { padding: 40px 0; }
.contact-unit .inner {
  display: grid;
  grid-template-columns: 52.5% 45.3%;
  justify-content: space-between;
}
.contact-unit .inner > div h3 { margin: 0 0 10px; }
.contact-unit picture img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.contact-unit ul li:first-of-type { margin: 0 0 10px; }
.default-btn {
  width: 100%;
  line-height: 58px;
  border-radius: 10px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--white);
  text-align: center;
  display: block;
  transition: opacity .3s ease;
}
.default-btn:hover { opacity: .7; }
.bg-blue { background-color: var(--blue); }
.bg-red2 { background-color: var(--red2); }

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

  .contact-unit { padding: calc(30 / 750 * 100vw) 0; }
  .contact-unit .inner { display: block; }
  .contact-unit .inner > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    margin: 0 0 calc(25 / 750 * 100vw);
  }
  .contact-unit .inner > div h3 { padding: 0 calc(20 / 750 * 100vw); }
  .contact-unit ul li:first-of-type { margin: 0 0 15px; }
  .default-btn {
    line-height: calc(83 / 750 * 100vw);
    font-size: calc(34 / 750 * 100vw);
    border-radius: calc(14 / 750 * 100vw);
  }

}

/*
  Header
==================================================================================== */
.l-header {
  width: 100%;
  text-align: center;
}
.l-header h2 {
  padding: 25px 0;
  background-color: var(--yellow);
}
.l-header h2 img {
  width: 560px;
  height: auto;
}
.l-header h3 {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  padding: 23px 0;
  background-color: var(--red);
}
.l-header h3 span { font-size: calc(20 / 25 * 1em); }

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

  .l-header h2 { padding: calc(25 / 750 * 100vw) 0; }
  .l-header h2 img { width: calc(560 / 750 * 100vw); }
  .l-header h3 {
    font-size: calc(30 / 750 * 100vw);
    padding: calc(23 / 750 * 100vw) 0;
  }

}

/*
  Main Visual
==================================================================================== */
.mv {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
}
.mv h1 {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
}
.mv figure {
  grid-area: 1 / 1;
  overflow: hidden;
}
.mv figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (min-width:641px) and (max-width:1060px) {
  .mv figure img { aspect-ratio: 16 / 9; }
}

@media screen and (max-width:750px) {
  .mv h1 {
    width: calc(576 / 750 * 100vw);
    overflow: hidden;
  }
  .mv h1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/*
  Section01
==================================================================================== */
.sec01 { margin: 0 0 50px; }

@media screen and (max-width:640px) {
  .sec01 { margin: 0 0 calc(50 / 640 * 100vw); }
}

.sec01 .sec-heading {
  position: relative;
  line-height: 64px;
  background-color: var(--black);
  text-align: center;
  margin: 0 0 55px;
}
.sec01 .sec-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: var(--black) transparent transparent transparent;
}
.sec01 .sec-heading h3 {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--yellow);
}

@media screen and (max-width:640px) {
  .sec01 .sec-heading {
    line-height: initial;
    padding: 1.5em 0;
    margin: 0 0 calc(55 / 750 * 100vw);
  }
  .sec01 .sec-heading::after {
    bottom: calc(25 / 750 * 100vw * -1);
    border-width: calc(25 / 750 * 100vw) calc(25 / 750 * 100vw) 0 calc(25 / 750 * 100vw);
  }
  .sec01 .sec-heading h3 {
    font-size: calc(30 / 750 * 100vw);
    line-height: calc(44 / 30)
  }
}

.achievements {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0 35px;
}
.achievements > div {
  width: 298px;
  background-color: var(--red3);
  padding: 3px;
}
.achievements img {
  width: 100%;
  height: auto;
}
.achievements > div dl dd { padding: 20px; }

@media screen and (max-width:640px) {
  .achievements { gap: 0 4%; }
  .achievements > div { width: 48%; }
}

@media screen and (max-width:375px) {
  .achievements {
    flex-direction: column;
    gap: calc(40 / 750 * 100vw) 0;
  }
  .achievements > div { width: 100%; }
  .achievements > div dl dd {
    text-align: center;
    padding: 15px 0;
  }
  .achievements > div dl dd img {
    width: 60%;
    height: auto;
  }
}

/*
  Section02
==================================================================================== */
.sec02 .sec-heading {
  position: relative;
  line-height: 82px;
  background-color: var(--red3);
  text-align: center;
}
.sec02 .sec-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 0;
  height: 0;
  border-style:solid;
  border-width: 15px 15px 0 15px;
  border-color: var(--red3) transparent transparent transparent;
}
.sec02 .sec-heading h3 {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
}
.sec02 .sec-heading h3 span {
  font-size: calc(28 / 25 * 1em);
  color: var(--red3);
  background-color: var(--white);
  display: inline-block;
  line-height: 1.0;
  padding: 5px 10px;
  margin: 0 0 0 .5em;
}
.sec02 .sec-heading h3 span small { font-size: calc(22 / 25 * 1em); }

@media screen and (max-width:640px) {
  .sec02 .sec-heading {
    line-height: initial;
    padding: 1.5em 0;
  }
  .sec02 .sec-heading::after {
    bottom: calc(25 / 750 * 100vw * -1);
    border-width: calc(25 / 750 * 100vw) calc(25 / 750 * 100vw) 0 calc(25 / 750 * 100vw);
  }
  .sec02 .sec-heading h3 {
    font-size: calc(30 / 750 * 100vw);
    line-height: 1.6;
  }
}

.speech-bubble .inner {
  position: relative;
  height: 170px;
  padding: 35px 0 0;
}
.speech-bubble .inner i {
  position: absolute;
  right: 70px;
  bottom: -126px;
  width: 166px;
  height: auto;
  overflow: hidden;
}
.speech-bubble .inner i img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.speech-bubble .inner > div {
  position: relative;
  width: fit-content;
  margin: auto;
  border: solid 3px var(--red3);
  border-radius: 6px;
  padding: 1em 3em;
}
.speech-bubble .inner > div::after {
  content: "";
  position: absolute;
  bottom: 40px;
  right: -24.5px;
  width: 27px;
  height: 18px;
  display: inline-block;
  background: url(../images/sb_arrow.svg) no-repeat 50% 50% / cover;
}
.speech-bubble .inner > div p {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--red3);
  line-height: 1.8;
}
.speech-bubble .inner > div p small { font-size: calc(18 / 22 * 1em); }
.speech-bubble .inner > div p span {
  font-weight: 800;
  display: inline-block;
}

.speech-bubble + h4 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: .1em;
  background-color: var(--yellow);
  text-align: center;
  padding: 1em 0;
}
.speech-bubble + h4 span {
  position: relative;
  width: fit-content;
  font-size: calc(25 / 24 * 1em);
  display: block;
  margin: 0 auto .75em;
  padding: 0 1em;
}
.speech-bubble + h4 span::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 5px;
  height: 40px;
  background-color: var(--red);
  display: inline-block;
  transform: rotate(-10deg);
}
.speech-bubble + h4 span::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  width: 5px;
  height: 40px;
  background-color: var(--red);
  display: inline-block;
  transform: rotate(10deg);
}

@media screen and (max-width:640px) {
  .speech-bubble .inner {
    position: relative;
    height: auto;
    padding: calc(40 / 750 * 100vw) 0;
  }
  .speech-bubble .inner i {
    right: calc(30 / 750 * 100% * -1);
    bottom: 0;
    width: calc(156 / 750 * 100vw);
  }
  .speech-bubble .inner > div {
    position: relative;
    width: calc(535 / 750 * 100vw);
    margin: 0;
    border: solid 4px var(--red3);
    border-radius: 8px;
    padding: 1.5em 2em;
  }
  .speech-bubble .inner > div::after {
    content: "";
    position: absolute;
    top: 30px;
    bottom: initial;
    right: -24.5px;
    width: 27px;
    height: 18px;
  }
  .speech-bubble .inner > div p {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: .05em;
    line-height: 1.5;
  }
  .speech-bubble .inner > div p small { font-size: calc(28 / 32 * 1em); }
  .speech-bubble + h4 { font-size: calc(33 / 750 * 100vw); }
  .speech-bubble + h4 span { padding: 0 .75em; }
  .speech-bubble + h4 span::before, .speech-bubble + h4 span::after {
    top: calc(5 / 640 * 100vw * -1);
    width: calc(5 / 640 * 100vw);
    height: calc(40 / 640 * 100vw);
  }
}

.graph-area01 {
  padding: 45px 0 25px;
  background-color: var(--l-gray);
}
.graph-area01 h5 {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
}
.graph-area01 .graph-comp {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0 5px;
  margin: 40px 0 0;
}
.graph-area01 .graph-comp + span {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  display: block;
  margin: 50px 0 30px;
}

@media screen and (max-width:640px) {
  .graph-area01 { padding: calc(45 / 750 * 100vw) 0 calc(15 / 750 * 100vw); }
  .graph-area01 h5 {
    font-size: calc(25 / 750 * 100vw);
    line-height: calc(40 / 25);
  }
  .graph-area01 .graph-comp {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    margin: calc(40 / 750 * 100vw) 0 0;
  }
  .graph-area01 .graph-comp figure {
    width: 100%;
    overflow: hidden;
  }
  .graph-area01 .graph-comp figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .graph-area01 .graph-comp + span {
    font-size: calc(22 / 750 * 100vw);
    line-height: calc(33 / 22);
    text-align: left;
    margin: calc(40 / 750 * 100vw) 0;
  }
}

.beige-comp {
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: calc(31 / 18);
  background-color: #ede6cb;
  padding: 25px 40px;
}
.beige-comp span { font-weight: 800; }
.beige-comp::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 0;
  height: 0;
  border-style:solid;
  border-width: 15px 15px 0 15px;
  border-color: #ede6cb transparent transparent transparent;
}
.beige-comp + i {
  width: fit-content;
  display: block;
  margin: 40px auto 0;
}
.beige-comp + i img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width:640px) {
  .beige-comp {
    font-size: calc(30 / 750 * 100vw);
    line-height: 1.8;
    padding: calc(40 / 750 * 100vw);
  }
  .beige-comp::after {
    bottom: calc(25 / 750 * 100vw * -1);
    border-width: calc(25 / 750 * 100vw) calc(25 / 750 * 100vw) 0 calc(25 / 750 * 100vw);
  }
  .beige-comp + i {
    width: calc(185 / 750 * 100vw);
    margin: calc(40 / 750 * 100vw) auto 0;
  }
}

.graph-area02 {
  padding: 45px 0 80px;
  background-color: var(--l-beige);
  text-align: center;
  letter-spacing: .1em;
}
.graph-catch p {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
}
.graph-catch p span { font-size: calc(18 / 16 * 1em); }
.graph-catch h4 {
  width: fit-content;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 800;
  margin: .5em auto;
}
.graph-catch h4 span {
  font-weight: 800;
  color: #b0272d;
}
.graph-catch h4 i {
  font-size: 1.2em;
  font-style: normal;
}
.graph-catch small {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  margin: .5em 0 0;
}
.graph-area02 .graph-comp {
  position: relative;
  margin: 40px 0 0;
}
.graph-area02 .graph-comp i {
  position: absolute;
  top: -244px;
  left: 70px;
  width: 131px;
  height: auto;
  display: inline-block;
}
.graph-area02 .graph-comp img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width:640px) {
  .graph-area02 {
    text-align: left;
    padding: calc(60 / 750 * 100vw) 0;
  }
  .graph-catch { padding: 0 0 0 calc(200 / 750 * 100vw); }
  .graph-catch p { font-size: calc(27 / 750 * 100vw); }
  .graph-catch h4 {
    font-size: calc(35 / 750 * 100vw);
    line-height: calc(54 / 35);
  }
  .graph-catch small { font-size: calc(23 / 750 * 100vw); }
  .graph-area02 .graph-comp { margin: calc(60 / 750 * 100vw) 0 0; }
  .graph-area02 .graph-comp i {
    top: calc(340 / 750 * 100vw * -1);
    left: 0;
    width: calc(180 / 750 * 100vw);
  }
  .graph-area02 .graph-comp figure {
    position: relative;
    z-index: 1;
  }

}

.why {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  background-color: var(--red3);
  padding: 30px 0 55px;
}
.why-catch p {
  position: relative;
  width: fit-content;
  color: var(--yellow);
  margin: 0 auto 1.25em;
  padding: 0 1em;
}
.why-catch p::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 5px;
  height: 40px;
  background-color: var(--yellow);
  display: inline-block;
  transform: rotate(-10deg);
}
.why-catch p::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  width: 5px;
  height: 40px;
  background-color: var(--yellow);
  display: inline-block;
  transform: rotate(10deg);
}
.why-catch h4 { color: var(--white); }
.why-catch h4 span { color: var(--yellow); }
.why-catch h4 span span { font-size: calc(32 / 25 * 1em); }
.why .image-comp {
  display: grid;
  grid-template-columns: 372px 190px 372px;
  justify-content: space-between;
  margin: 25px 0 0;
}
.why .image-comp img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width:640px) {
  .why {
    font-size: calc(32 / 750 * 100vw);
    padding: calc(40 / 750 * 100vw) 0 0;
  }
  .why .inner { width: 100%; }
  .why-catch p::before, .why-catch p::after {
    top: 0;
    height: calc(40 / 750 * 100vw);
  }
  .why .image-comp {
    padding: 0 0 0 calc(30 / 750 * 100vw);
    margin: 0 0 calc(50 / 750 * 100vw);
    grid-template-columns: calc(190 / 750 * 100vw) calc(500 / 750 * 100vw);
  }
  .why .image-comp h4.sp {
    font-size: calc(34 / 750 * 100vw);
    line-height: calc(37 / 34);
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--red3);
    background-color: var(--yellow);
    text-align: left;
    padding: 0 .75em;
  }
  .why .image-comp h4.sp span span { font-size: calc(46 / 34 * 1em); }
  .why figure.sp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
  .why figure.sp img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/*
  Section03
==================================================================================== */
.experience {
  padding: 15px 0 60px;
  background-color: var(--l-beige);
}
.experience figure {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.experience figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


@media screen and (max-width:640px) {
  .experience { padding: calc(15 / 750 * 100vw) 0 calc(70 / 750 * 100vw); }
}

.noted {
  display: grid;
  padding: 0 40px;
  margin: -70px 0 0;
}
.noted > div {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  padding: 120px 65px 0;
}
.noted > div dl dt {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red2);
  margin: 0 0 1.2em;
}
.noted > div dl dd p {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: calc(35 / 19);
}
.noted > div dl dd p:nth-of-type(2) { margin: .75em 0 0; }
.noted > div dl dd p span { font-weight: 800; }
.noted > i { grid-area: 1 / 1; }
.noted > i img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width:640px) {
  .noted {
    padding: 0;
    margin: calc(25 / 750 * 100vw * -1) 0 0;
  }
  .noted > div { padding: calc(60 / 750 * 100vw) calc(30 / 750 * 100vw) 0; }
  .noted > div dl dt {
    font-size: calc(30 / 750 * 100vw);
    margin: 0 0 1em;
  }
  .noted > div dl dd p {
    font-size: calc(27 / 750 * 100vw);
    line-height: calc(46 / 27);
  }
  .noted > div dl dd p:last-of-type { margin: 1em 0 0; }
}

.graph-area {
  padding: 50px 0 100px;
  background-color: var(--l-gray);
}
.graph-area figure { overflow: hidden; }
.graph-area figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width:640px) {
  .graph-area { padding: calc(50 / 750 * 100vw) 0 calc(100 / 750 * 100vw); }
}

/*
  Section04
==================================================================================== */

/* Beige
------------------------------------------------------------------------------------ */
.beige {
  padding: 15px 0 60px;
  background-color: var(--l-beige);
}

@media screen and (max-width:640px) {
  .beige { padding: calc(35 / 750 * 100vw) 0 calc(40 / 750 * 100vw); }
}

.reason-catch { display: grid; }
.reason-catch > div {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  text-align: center;
}
.reason-catch > div dl { margin: 25px 0 0; }
.reason-catch > div dl dt h3 {
  width: fit-content;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--red);
  border-bottom: solid 5px var(--red);
  margin: auto;
  padding: 0 0 .25em;
}
.reason-catch > div dl dd { font-weight: 800; }
.reason-catch > div dl dd span {
  position: relative;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: .1em;
  display: inline-block;
  padding: 0 1em;
  margin: 1em 0 1.5em;
}
.reason-catch > div dl dd span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 28px;
  display: inline-block;
  background-color: var(--black);
}
.reason-catch > div dl dd span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 7px;
  height: 28px;
  display: inline-block;
  background-color: var(--black);
}
.reason-catch > div dl dd p {
  position: relative;
  width: fit-content;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: .1em;
  color: var(--white);
  background-color: var(--red);
  margin: auto;
  padding: .5em 1.25em;
}
.reason-catch > div dl dd p::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
  width: 0;
  height: 0;
  border-style:solid;
  border-width: 0 15px 15px 15px;
  border-color: transparent transparent var(--red) transparent;
}
.reason-catch figure {
  position: relative;
  z-index: 1;
  overflow: hidden;
  grid-area: 1 / 1;
}
.reason-catch figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width:640px) {
  .reason-catch > div dl { margin: calc(25 / 750 * 100vw) 0 0; }
  .reason-catch > div dl dt h3 {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: .05em;
  }
  .reason-catch > div dl dd span {
    font-size: calc(35 / 750 * 100vw);
    margin: 1em 0;
  }
  .reason-catch > div dl dd span::before, .reason-catch > div dl dd span::after {
    width: calc(8 / 750 * 100vw);
    height: calc(40 / 750 * 100vw);
  }
  .reason-catch > div dl dd p {
    width: 100%;
    font-size: calc(28 / 750 * 100vw);
    letter-spacing: .025em;
    padding: .5em;
  }
  .reason-catch > div dl dd p::before {
    top: calc(20 / 750 * 100vw * -1);
    border-width: 0 calc(20 / 750 * 100vw) calc(20 / 750 * 100vw) calc(20 / 750 * 100vw);
  }
}

.reason-comp {
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 35px;
  margin: -10px 0 0;
}
.reason-item {
  border-radius: 15px;
  background-color: var(--yellow);
  padding: 20px;
}
.reason-item dl dt {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: center;
  border-bottom: solid 1px var(--black);
  padding: 0 0 .5em;
  margin: 0 0 .75em;
}
.reason-item dl dd {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: calc(29 / 19);
}

@media screen and (max-width:640px) {
  .reason-comp {
    display: flex;
    flex-direction: column;
    gap: calc(20 / 750 * 100vw) 0;
    padding: 0;
    margin: calc(30 / 750 * 100vw) 0 0;
  }
  .reason-item dl dt {
    font-size: calc(27 / 750 * 100vw);
  }
  .reason-item dl dd {
    font-size: calc(24 / 750 * 100vw);
    line-height: calc(34 / 24);
  }
}

/* Gray
------------------------------------------------------------------------------------ */

/* Comparison */
.gray {
  padding: 55px 0 120px;
  background-color: var(--l-gray);
}

@media screen and (max-width:640px) {
  .gray { padding: calc(50 / 750 * 100vw) 0 calc(80 / 750 * 100vw); }
}

.comparison h3 {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--red);
  text-align: center;
  margin: 0 0 35px;
}
.comparison h4 {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: center;
  color: #00a9eb;
  margin: 0 0 40px;
}
.comparison-comp { position: relative; }
.comparison-comp table {
  width: 100%;
  border: solid 1px var(--black);
  text-align: center;
}
.comparison-comp table th { text-align: center; }
.comparison-comp table thead th {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 800;
  padding: .75em 0;
}
.comparison-comp table tbody tr { border-top: solid 2px var(--black); }
.comparison-comp table thead th:not(:first-of-type) { border-left: solid 2px var(--black); }
.comparison-comp table tbody tr td { border-left: solid 2px var(--black); }
.comparison-comp table tbody th,
.comparison-comp table tbody td {
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.5;
  padding: .75em 0;
}
.comparison-comp i {
  position: absolute;
  top: -179px;
  left: 40px;
  display: inline-block;
}
.points {
  padding: 40px;
  margin: 30px 0 0;
  background-color: var(--white);
}
.points ul {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 600;
}
.points ul li:not(:last-of-type) { margin: 0 0 .75em; }

@media screen and (max-width:640px) {
  .comparison h3 {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: .05em;
    margin: 0 0 1em;
  }
  .comparison h4 {
    font-size: calc(28 / 750 * 100vw);
    line-height: 1.4;
    margin: 0 0 calc(40 / 750 * 100vw);
  }
  .scroll {
    width: 100%;
    overflow-x: scroll;
    padding: 0 0 10px;
  }
  .comparison-comp table { width: 1000px; }
  .comparison-comp table thead th { font-size: calc(28 / 750 * 100vw); }
  .comparison-comp table tbody th,
  .comparison-comp table tbody td {
    font-size: calc(26 / 750 * 100vw);
    padding: .75em 0;
  }
  .comparison-comp i {
    top: calc(140 / 750 * 100vw * -1);
    left: calc(10 / 750 * 100vw);
    width: calc(129 / 750 * 100vw * .85);
    height: calc(194 / 750 * 100vw * .85);
    overflow: hidden;
    display: none;
  }
  .comparison-comp i img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .points {
    padding: calc(35 / 750 * 100vw) calc(40 / 750 * 100vw);
    margin: calc(30 / 750 * 100vw) 0 0;
  }
  .points ul { font-size: calc(25 / 750 * 100vw); }
  .points ul li { line-height: calc(38 / 28); }
}

/* Laws of Success */
.laws-of-success {
  position: relative;
  background-color: var(--l-beige);
  padding: 25px 0 60px;
  margin: 40px 0 0;
  display: grid;
  place-items: center;
}
.laws-of-success h3 {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--red);
  line-height: calc(40 / 25);
  text-align: center;
  margin: 0 0 1.25em;
}
.laws-of-success ul { transform: translateX(-50px); }
.laws-of-success ul li {
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: .1em;
  font-weight: 600;
  text-indent: -1em;
  line-height: 1.5;
  padding: 0 0 0 1em;
}
.laws-of-success ul li:not(:last-of-type) { margin: 0 0 .5em; }
.laws-of-success ul li::before { content: "●"; }
.laws-of-success ul li span { font-weight: 800; }
.laws-of-success > div i {
  position: absolute;
  top: 25px;
  right: 15px;
  display: inline-block;
}

@media screen and (max-width:640px) {
  .laws-of-success {
    padding: calc(25 / 750 * 100vw) calc(25 / 750 * 100vw) calc(50 / 750 * 100vw);
    margin: calc(30 / 750 * 100vw) 0 0;
    display: block;
  }
  .laws-of-success h3 { font-size: calc(32 / 750 * 100vw); }
  .laws-of-success ul li { font-size: calc(28 / 750 * 100vw); }
  .laws-of-success > div {
    display: flex;
    flex-direction: column-reverse;
  }
  .laws-of-success > div i {
    float: none;
    position: static;
    width: calc(251 / 750 * 100vw);
    height: calc(233 / 750 * 100vw);
    display: block;
    margin: 15px auto 0;
  }
  .laws-of-success > div i img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .laws-of-success dl.sp { display: block; }
  .laws-of-success dl {
    font-size: calc(28 / 750 * 100vw);
    text-align: center;
  }
  .laws-of-success dl dt {
    padding: .25em 0;
    color: var(--white);
    background-color: var(--red3);
  }
  .laws-of-success dl dd { padding: .5em 0 .75em; }
  .laws-of-success dl dd span { font-weight: 800; }
}

/*
  Section05
==================================================================================== */
.sec05 h3 {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: center;
  line-height: calc(40 / 25);
  color: var(--white);
  background-color: var(--red3);
  padding: .75em 0;
}

@media screen and (max-width:640px) {
  .sec05 h3 {
    font-size: calc(32 / 750 * 100vw);
    line-height: calc(40 / 25);
    padding: .75em 0;
  }
}

.operation { padding: 65px 0 45px; }
.operation-comp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 25px;
  margin: 0 0 35px;
}
.operation-item {
  position: relative;
  border-radius: 13px;
  background-color: var(--yellow);
  padding: 20px;
}
.operation-item:nth-of-type(2)::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: var(--yellow) transparent transparent transparent;
}
.operation-item h5 {
  position: relative;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: center;
  margin: 0 0 .75em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}
.operation-item h5 i {
  width: 28px;
  height: 28px;
  display: inline-block;
}
.operation-item h5 i img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.operation-item p {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: calc(26 / 18);
}
.operation h4 {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.8;
  text-align: center;
  margin: 0 0 40px;
}
.operation-images { padding: 0 40px; }
.operation-images figure { overflow: hidden; }
.operation-images figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.operation-images figure figcaption {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 .5em;
}
.operation-images figure figcaption span { color: var(--red3); }

@media screen and (max-width:640px) {
  .operation { padding: calc(50 / 750 * 100vw) 0; }
  .operation-comp {
    grid-template-columns: initial;
    grid-template-rows: repeat(3, 1fr);
    gap: calc(25 / 750 * 100vw) 0;
    margin: 0 0 calc(35 / 750 * 100vw);
  }
  .operation-item { width: 100%; }
  .operation-item:nth-of-type(2)::after { content: none; }
  .operation-item:nth-of-type(3)::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(25 / 750 * 100vw * -1);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: calc(25 / 750 * 100vw) calc(25 / 750 * 100vw) 0 calc(25 / 750 * 100vw);
    border-color: var(--yellow) transparent transparent transparent;
  }
  .operation-item h5 {
    font-size: calc(28 / 750 * 100vw);
    gap: 0 7.5px;
  }
  .operation-item h5 i {
    width: calc(32 / 750 * 100vw);
    height: calc(32 / 750 * 100vw);
  }
  .operation-item p { font-size: calc(23 / 750 * 100vw); }
  .operation h4 { font-size: calc(28 / 750 * 100vw); }
  .operation-images {
    padding: 0;
    gap: 0 calc(25 / 750 * 100vw);
  }
  .operation-images figure img { border-radius: calc(14 / 750 * 100vw); }
  .operation-images figure figcaption { font-size: calc(23 / 750 * 100vw); }
  .operation-images figure figcaption span { display: block; }
}


@media screen and (max-width:375px) {
  .operation-images figure figcaption { font-size: max(calc(14 / 375 * 100vw), 13px); }
  .operation-images {
    grid-template-columns: initial;
    grid-template-rows: repeat(2, 1fr);
    gap: calc(40 / 750 * 100vw) 0;
  }
}

/*
  Section06
==================================================================================== */
.sec06 > h3 {
  position: relative;
  font-size: 39px;
  font-size: 3.9rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: .1em;
  line-height: 1.4;
  color: var(--white);
  background-color: var(--red3);
  padding: .75em 0;
  margin: 0 0 55px;
}
.sec06 > h3::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: var(--red3) transparent transparent transparent;
}
.sec06 > h3 span {
  font-size: calc(25 / 39 * 1em);
  display: block;
}

@media screen and (max-width:640px) {
  .sec06 > h3 {
    font-size: calc(45 / 750 * 100vw);
    margin: 0 0 calc(55 / 750 * 100vw);
  }
  .sec06 > h3::after {
    bottom: calc(20 / 750 * 100vw * -1);
    border-width: calc(20 / 750 * 100vw) calc(20 / 750 * 100vw) 0 calc(20 / 750 * 100vw);
  }
}

.revenue-model { margin: 75px 0 80px; }
.revenue-model h4 {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: .1em;
  color: var(--white);
  background-color: var(--red);
  padding: 1em 0;
}
.revenue-model figure {
  margin: 30px 0;
  padding: 0 40px;
  overflow: hidden;
}
.revenue-model figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width:640px) {
  .revenue-model { margin: calc(75 / 750 * 100vw) 0 calc(80 / 750 * 100vw); }
  .revenue-model h4 {
    font-size: calc(32 / 750 * 100vw);
    padding: 1em 0;
  }
  .revenue-model figure {
    margin: calc(35 / 750 * 100vw) 0;
    padding: 0 calc(35 / 750 * 100vw);
  }
}

.link-btn {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: calc(26 / 18);
  text-align: center;
  color: var(--white);
  background-color: var(--red);
  border-radius: 40px;
  width: fit-content;
  display: block;
  margin: auto;
  padding: 1.5em 6em;
  transition: opacity .3s ease;
}
.link-btn:hover { opacity: .7; }

@media screen and (max-width:640px) {
  .link-btn {
    font-size: calc(23 / 750 * 100vw);
    border-radius: calc(40 / 750 * 100vw);
    padding: 1.25em 4em;
  }
}

.info-session {
  padding: 45px 0 95px;
  background-color: var(--l-beige);
}
.info-session h4 {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: calc(45 / 25);
  text-align: center;
  margin: 0 0 50px;
}
.info-session figure {
  padding: 0 40px;
  overflow: hidden;
}
.info-session figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width:640px) {
  .info-session { padding: calc(40 / 750 * 100vw) 0 calc(80 / 750 * 100vw); }
  .info-session h4 {
    font-size: calc(32 / 750 * 100vw);
    margin: 0 0 calc(40 / 750 * 100vw);
  }
  .info-session figure { padding: 0; }
}

.info-check {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 45px 0 65px;
}
.info-check > ul li {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  margin: 0 0 .5em;
}
.info-check > ul li i {
  display: inline-block;
  margin: 0 .75em 0 0;
}

.info-check + ul {
  width: 568px;
  margin: auto;
}
.info-check + ul li:first-of-type { margin: 0 0 15px; }
.info-check + ul li .default-btn { line-height: 68px; }

@media screen and (max-width:640px) {
  .info-check { margin: calc(45 / 750 * 100vw) 0 calc(35 / 750 * 100vw); }
  .info-check > ul li { font-size: calc(28 / 750 * 100vw); }
  .info-check > ul li i {
    width: calc(44 / 750 * 100vw);
    height: calc(38 / 750 * 100vw);
    margin: 0 .35em 0 0;
  }
  .info-check > ul li i img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .info-check + ul {
    width: 100%;
    padding: 0 calc(30 / 750 * 100vw);
  }
  .info-check + ul li:first-of-type { margin: 0 0 15px; }
  .info-check + ul li .default-btn { line-height: calc(83 / 750 * 100vw); }
}

/*
  Opening Process
------------------------------------------------------------------------------------ */
.opening-process {
  color: var(--white);
  text-align: center;
}

.op-ttl {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: calc(45 / 26);
  background-color: var(--black);
  padding: 2em 0;
  margin: 0 0 20px;
}
.op-ttl span {
  font-weight: 600;
  display: block;
}

@media screen and (max-width:640px) {
  .op-ttl {
    font-size: calc(32 / 750 * 100vw);
    padding: 1.5em 0;
    margin: 0 0 calc(20 / 750 * 100vw);
  }
}

.step01 {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 600;
  background-color: var(--red3);
  padding: .75em 0;
  margin: 0 0 20px;
}
.steps-comp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}
.step {
  width: 100%;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.5;
  display: grid;
  place-items: center;
}
.step02, .step03, .step04, .step05 { margin: 0 0 15px; }
.pcs01 .step06 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
#step06_01 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
#step06_02 {
  height: 100px;
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}
#step06_03 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.pcs02 .step03 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 10px;
}

@media screen and (max-width:640px) {
  .step01 {
    font-size: calc(26 / 750 * 100vw);
    margin: 0 0 calc(20 / 750 * 100vw);
  }
  .steps-comp { gap: 0 calc(20 / 750 * 100vw); }
  .step {
    font-size: calc(24 / 750 * 100vw);
    white-space: nowrap;
  }
  .step02, .step03, .step04, .step05 { margin: 0 0 calc(15 / 750 * 100vw); }
  .pcs01 .step06 { gap: calc(10 / 750 * 100vw); }
  .pcs02 .step03 { gap: 0 calc(10 / 750 * 100vw); }
  .step#step06_01 span { transform: scaleX(.85); }
}

/* Opening Flow
------------------------------------------------------------------------------------ */
.flow {
  height: 60px;
  color: var(--white);
  display: grid;
  grid-template-columns: 26% 74%;
  margin: 25px 0 0;
}
.flow01 { background-color: var(--red3); }

.flow dt {
  position: relative;
  font-size: 22px;
  font-size: 2.2rem;
  text-align: left;
  display: flex;
  align-items: center;
  padding: 0 0 0 15px;
}
.flow dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 2px;
  height: 47px;
  background-color: var(--white);
}
.flow dt span {
  font-size: calc(12 / 22 * 1em);
  line-height: calc(21 / 12);
  display: inline-block;
  background-color: var(--white);
  padding: 0 .5em;
  margin: 0 .75em 0 0;
}
.flow01 dt span { color: var(--red3); }
.flow dd {
  height: 100%;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: calc(21 / 15);
  text-align: left;
  padding: 0 65px 0 25px;
  display: flex;
  align-items: center;
}

@media screen and (max-width:640px) {
  .flow {
    height: auto;
    display: block;
  }
  .flow dt {
    font-size: calc(28 / 750 * 100vw);
    padding: .75em;
  }
  .flow dt::after {
    top: initial;
    bottom: 0;
    width: 100%;
    height: 2px;
  }
  .flow dd {
    font-size: calc(24 / 750 * 100vw);
    padding: 1em;
  }
}

.h45 { height: 45px; }
.h105 { height: 105px; }
.brown { color: var(--brown); }
.brown2 { color: var(--l-brown); }
.bg-brown { background-color: var(--brown); }
.bg-brown2 { background-color: var(--l-brown); }

/*
  Interval
==================================================================================== */
.interval figure { overflow: hidden; }
.interval figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*
  Section07
==================================================================================== */
.sec07 { padding: 100px 0 0; }
.sec07 h3 {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  height: 100px;
  line-height: 100px;
  color: var(--white);
  background-color: var(--red3);
}