@charset "UTF-8";

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

*,
::before,
::after {
  box-sizing: border-box;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

:where(:root) {
  cursor: default;
  line-height: 1.5;
  overflow-wrap: break-word;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

:where(body) {
  margin: 0;
}

:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

:where(hr) {
  color: inherit;
  height: 0;
}

:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

:where(nav li)::before {
  content: "\200B";
  float: left;
}

:where(pre) {
  font-family: monospace, monospace;
  font-size: 1em;
  overflow: auto;
}

:where(abbr[title]) {
  text-decoration: underline dotted;
}

:where(b, strong) {
  font-weight: bolder;
}

:where(code, kbd, samp) {
  font-family: monospace, monospace;
  font-size: 1em;
}

:where(small) {
  font-size: 80%;
}

:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

:where(iframe) {
  border-style: none;
}

:where(svg:not([fill])) {
  fill: currentColor;
}

:where(table) {
  border-collapse: collapse;
  border-color: inherit;
  text-indent: 0;
}

:where(button, input, select) {
  margin: 0;
}

:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

:where(fieldset) {
  border: 1px solid #a0a0a0;
}

:where(progress) {
  vertical-align: baseline;
}

:where(textarea) {
  margin: 0;
  resize: vertical;
}

:where([type="search" i]) {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

:where(details > summary:first-of-type) {
  display: list-item;
}

:where([aria-busy="true" i]) {
  cursor: progress;
}

:where([aria-controls]) {
  cursor: pointer;
}

:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed;
}

:where([aria-hidden="false" i][hidden]) {
  display: initial;
}

:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
}

:where(iframe, img, input, video, select, textarea) {
  height: auto;
  max-width: 100%;
}

:where(button, input, select, textarea) {
  background-color: transparent;
  border: 1px solid WindowFrame;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  padding: 0.25em 0.375em;
}

:where(select) {
  appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right center/1em;
  border-radius: 0;
  padding-right: 1em;
}

:where(select[multiple]) {
  background-image: none;
}

:where([type="color" i], [type="range" i]) {
  border-width: 0;
  padding: 0;
}

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
  --main: #ff0;
  --accent: #46e678;
  --sub1: #f00;
  --sub2: #00f;
  --sub3: #0ff;
  --black: #000;
  --darkgray: #999;
  --gray: #ccc;
  --lightgray: #e0e0e0;
  --smoke: #f5f5f5;
  --white: #fff;
  --primary: #fe2c55;
  --text: #333334;
}

/* ==========================================================================
   Base Typography
   ========================================================================== */

html {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.5;
  min-height: 100%;
  -webkit-text-size-adjust: none;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

.l-fixed {
  position: fixed;
  right: 30px;
  bottom: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 4;
}

.l-fixed.is-fixed {
  opacity: 1;
}

.l-fixed.is-close {
  opacity: 0;
  pointer-events: none;
}

.l-fixed__inner {
  border: 3px solid var(--primary);
  border-radius: 20px;
  box-shadow: 6px 4px 14px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  width: 170px;
  height: 122px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.l-fixed__cta {
  margin-bottom: 6px;
}

.l-fixed__link {
  text-decoration: none;
  color: #fff;
  background-color: var(--primary);
  display: block;
  padding: 10px 36px 10px 20px;
  font-size: 0.8125rem;
  line-height: 1;
  font-weight: 600;
  border-radius: 15px;
  position: relative;
  transition: background-color 0.3s ease;
}

.l-fixed__link:hover {
  background-color: var(--text);
}

.l-fixed__link::before,
.l-fixed__link::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}

.l-fixed__link::after {
  background-image: url(../img/icon_file.svg);
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
}

.l-fixed__link::before {
  background-image: url(../img/cta_img.png);
  width: 137px;
  height: 78px;
  top: -70px;
  left: 0;
  pointer-events: none;
}

.l-fixed__close {
  padding: 0;
  border: none;
  background-color: transparent;
  position: absolute;
  top: -6px;
  right: -6px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.l-fixed__close:hover {
  opacity: 0.6;
}

.l-body {
  display: flex;
}

.l-main {
  flex: 1 1;
}

.js-fadein {
  opacity: 0;
}

.l-side {
  width: 140px;
  border-left: 1px solid #b9b9b9;
}

.l-side__inner {
  position: sticky;
  top: 0;
  height: 800px;
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: scroll;
}

.l-side__logo {
  width: 32px;
  padding-top: 40px;
}

.l-side__button {
  margin-top: 80px;
  writing-mode: vertical-rl;
  white-space: nowrap;
  padding-bottom: 60px;
}

.l-side__button .c-button__text {
  min-height: 200px;
  text-align: center;
}

/* ==========================================================================
   Common Components
   ========================================================================== */

.c-button__link {
  color: var(--primary);
  display: inline-flex;
  text-decoration: none;
  border: 1px solid transparent;
}

.c-button__text {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: bold;
  display: block;
  background-color: #000;
  padding: 10px;
}

.c-button__arrow {
  width: 60px;
  height: 60px;
  background-image: url(../img/arrow_black.svg);
  background-size: 10px 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--primary);
}

/* Footer */
.c-footer {
  background-color: var(--text);
  padding-top: 32px;
}

.c-footer__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.c-footer__logo {
  width: 160px;
}

.c-footer__nav {
  margin-top: 16px;
}

.c-footer__navList {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-footer__navItem {
  margin: 0;
}

.c-footer__navLink {
  font-size: 0.875rem;
  line-height: 1.43;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.c-footer__navLink:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.c-footer__copyright {
  font-size: 0.75rem;
  line-height: 1.67;
  margin-top: 16px;
  color: #fff;
}

/* Title */
.c-title {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 1;
}

.c-title.-white .c-title__main {
  color: #fff;
}

.c-title.-white .c-title__sub {
  color: #fff;
}

.c-title__main {
  padding: 2px 4px;
  display: inline-block;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.625rem;
  line-height: 1.54;
}

.c-title__sub {
  color: var(--primary);
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  line-height: 1.43;
  font-weight: 700;
  margin-top: 3px;
}

.c-title__bg {
  color: #fceef1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 4.375rem;
  line-height: 1;
  text-transform: uppercase;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}

.c-title__bg.-white {
  color: #fff;
}

/* ==========================================================================
   Global Navigation
   ========================================================================== */

.l-gnav {
  height: 100%;
  overflow: scroll;
}

.l-gnav__inner {
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 52px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 80px;
}

.l-gnav__list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 0;
}

.l-gnav__item {
  border-bottom: 1px solid #bdbdbd;
}

.l-gnav__link {
  text-decoration: none;
  position: relative;
  display: block;
  padding: 22px 0 22px 50px;
}

.l-gnav__link::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  left: 33px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--primary);
}

.l-gnav__text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  display: block;
}

.l-gnav__contact {
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.l-gnav__contact a {
  background-color: var(--primary);
  color: #fff;
  width: 315px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1;
  font-weight: 700;
  position: relative;
  padding-right: 28px;
}

.l-gnav__contact a::before {
  position: absolute;
  content: "";
  background-image: url(../img/icon_file.svg);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  right: calc(50% - 60px);
  top: 0;
  bottom: 0;
  margin: auto;
}

/* ==========================================================================
   Header
   ========================================================================== */

.l-header {
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  z-index: 3;
  transition: background-color 0.3s ease;
}

.l-header.is-open .l-header__main {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.l-header__wrapper {
  display: flex;
  align-items: center;
}

.l-header__contact {
  white-space: nowrap;
  margin-left: 15px;
}

.l-header__contactLink {
  color: #fff;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1;
  padding: 10px 42px 10px 26px;
  border-radius: 30px;
  background-color: var(--primary);
  text-decoration: none;
  position: relative;
}

.l-header__contactLink::before {
  position: absolute;
  content: "";
  background-image: url(../img/icon_file.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 17px;
  height: 18px;
  right: 22px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.l-header__logo a {
  display: block;
  width: 110px;
}

.l-header__list {
  list-style-type: none;
  padding-left: 0;
  display: none;
}

.l-header__link::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -2px;
  background-color: var(--primary);
}

.l-header__nav {
  display: block;
  position: absolute;
  top: -3px;
  right: 9px;
}

.l-header__button {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  transition: background-color 0.3s ease;
  background-color: #fff;
}

.l-header__button.is-open .l-header__buttonLine {
  transition: transform 0.3s ease, top 0.3s ease;
}

.l-header__button.is-open .l-header__buttonLine:nth-last-of-type(1) {
  transform: rotate(45deg);
  top: 24px;
}

.l-header__button.is-open .l-header__buttonLine:nth-last-of-type(2) {
  transform: rotate(45deg);
  top: 24px;
}

.l-header__button.is-open .l-header__buttonLine:nth-last-of-type(3) {
  transform: rotate(-45deg);
  top: 24px;
}

.l-header__buttonLine {
  width: 24px;
  height: 2px;
  display: block;
  position: absolute;
  border-radius: 50px;
  background-color: var(--text);
  transition: transform 0.3s ease, top 0.3s ease;
  right: 14px;
}

.l-header__buttonLine:nth-last-of-type(1) {
  top: 14px;
}

.l-header__buttonLine:nth-last-of-type(2) {
  top: 22px;
}

.l-header__buttonLine:nth-last-of-type(3) {
  top: 30px;
}

.l-header__gnav {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding-top: 40px;
  padding-bottom: 60px;
  overflow-y: auto;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 2;
  height: 100%;
}

.l-header__gnav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* ==========================================================================
   Page Sections
   ========================================================================== */

/* About Section */
.p-about {
  padding-top: 90px;
  padding-bottom: 34px;
}

.p-about__inner {
  width: 93.6%;
  margin-left: auto;
  margin-right: auto;
}

.p-about__title {
  position: relative;
  text-align: center;
}

.p-about__title .baloon {
  position: absolute;
  top: -62px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.p-about__title .baloon span {
  background-color: var(--text);
  border-radius: 30px;
  padding: 10px 40px;
  display: inline-block;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1;
}

.p-about__title .baloon span::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 10px solid var(--text);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

.p-about__title .main {
  font-size: 1.625rem;
  line-height: 1.69;
  font-weight: 700;
}

.p-about__title .main b {
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
}

.p-about__list {
  padding-left: 20px;
  list-style-type: none;
  display: inline-block;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}

.p-about__item {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}

.p-about__item + .p-about__item {
  margin-top: 11px;
}

.p-about__item::before {
  position: absolute;
  content: "";
  background-image: url(../img/icon_check.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 20px;
  height: 20px;
  left: -8px;
  top: 5px;
}

.p-about__movie {
  background-color: var(--primary);
  border-radius: 36px;
  background-image: url(../img/about_moviebg_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 58px;
  padding-bottom: 58px;
  position: relative;
  margin-top: 184px;
}

.p-about__movie::before {
  position: absolute;
  content: "";
  background-image: url(../img/illust_movie.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 210px;
  height: 167px;
  z-index: -1;
  top: -167px;
  left: 0;
  right: 0;
  margin: auto;
}

.p-about__movieTitle {
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

.p-about__movieList {
  padding-left: 0;
  list-style-type: none;
  margin: 0 auto;
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.p-about__movieInner {
  width: 324px;
  margin-left: auto;
  margin-right: auto;
}

/* Case Section */
.p-case {
  padding-top: 80px;
  padding-bottom: 60px;
  border-top: 6px solid var(--primary);
  border-bottom: 6px solid var(--primary);
  background-image: url(../img/case_bg_sp.png);
  background-size: contain;
  background-position: center center;
}

.p-case__inner {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.p-case__article {
  background: linear-gradient(134deg, #faefef 0%, #e9edf9 100%);
  box-shadow: 6px 4px 14px 0 rgba(0, 0, 0, 0.1);
  padding: 20px 20px 38px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
}

.p-case__box {
  padding-top: 13px;
}

.p-case__name {
  font-size: 0.875rem;
  line-height: 1.57;
  font-weight: 700;
  color: #fff;
  background-color: var(--text);
  border-radius: 8px;
  display: inline-block;
  padding: 3px 8px;
}

.p-case__title {
  font-size: 1.125rem;
  line-height: 1.44;
  font-weight: 700;
  padding-top: 8px;
}

.p-case__articleList {
  margin-top: 32px;
}

.p-case__articleRow {
  border-radius: 30px;
  border: 5px solid var(--primary);
  background-color: #fff;
  padding: 15px 30px;
}

.p-case__articleRow + .p-case__articleRow {
  margin-top: 10px;
}

.p-case__articleTitle {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding-bottom: 10px;
}

.p-case__articleTitle span {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
}

.p-case__articleDesc {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  position: relative;
  padding-top: 14px;
}

.p-case__articleDesc::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
  background-color: var(--primary);
  border-radius: 10px;
}

.p-case__articleDesc .before {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
}

.p-case__articleDesc .before span {
  font-size: 1rem;
  line-height: 1;
}

.p-case__articleDesc .after {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--primary);
  padding-left: 36px;
  position: relative;
}

.p-case__articleDesc .after span {
  font-size: 1.125rem;
  line-height: 1;
}

.p-case__articleDesc .after::before {
  position: absolute;
  content: "";
  background-image: url(../img/arrow-icon_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  top: 0;
  bottom: 0;
  left: 7px;
  margin: auto;
}

.p-case__movieInner {
  width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.p-case__slide {
  padding-top: 32px;
  width: 93.6%;
  margin-left: auto;
  margin-right: auto;
}

.p-case__button {
  width: 32px;
  height: 32px;
  font-size: 0;
}

.p-case__button::after {
  display: none;
}

.p-case__button.swiper-button-prev {
  left: 0;
}

.p-case__button.swiper-button-next {
  right: 0;
}

/* Company Section */
.p-company {
  padding-top: 52px;
  padding-bottom: 50px;
}

.p-company__inner {
  position: relative;
  overflow: hidden;
}

.p-company__title {
  text-align: center;
}

.p-company__title span {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  position: relative;
}

.p-company__title span::before,
.p-company__title span::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--primary);
  top: 0;
  bottom: 0;
  margin: auto;
}

.p-company__title span::before {
  left: -20px;
}

.p-company__title span::after {
  right: -20px;
}

.p-company__slider {
  display: flex;
  padding-top: 36px;
}

.p-company__scroll {
  animation: scroll 20s linear infinite;
}

.p-company__list {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  list-style-type: none;
  align-items: center;
}

.p-company__logo {
  width: 140px;
}

.p-company__logo img {
  width: 124px;
}

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

/* Contact Section */
.p-contact {
  padding-top: 46px;
  padding-bottom: 60px;
  background-color: var(--primary);
  background-image: url(../img/contact_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.p-contact__inner {
  margin-left: auto;
  margin-right: auto;
  width: 92%;
}

.p-contact__desc {
  font-size: 0.875rem;
  line-height: 1.71;
  font-weight: 500;
  margin-top: 17px;
  color: #fff;
}

.p-contact__form {
  padding-top: 30px;
  margin-top: 24px;
}

/* Campaign Section */
.p-cpn {
  padding-top: 60px;
  padding-bottom: 80px;
  background: linear-gradient(134deg, #faefef 0%, #e9edf9 100%);
}

.p-cpn__inner {
  width: 90.77%;
  margin-left: auto;
  margin-right: auto;
}

.p-cpn__banner {
  padding-top: 32px;
  display: flex;
  justify-content: center;
}

.p-cpn__cont {
  padding-top: 32px;
}

.p-cpn__text {
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 1.43;
}

.p-cpn__list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 37px;
  margin-bottom: 0;
}

.p-cpn__item {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 8px;
  padding-bottom: 8px;
}

.p-cpn__item + .p-cpn__item {
  margin-top: 6px;
}

.p-cpn__item::before {
  position: absolute;
  content: "";
  background-color: var(--primary);
  width: 12px;
  height: 100%;
  left: 0;
  top: 0;
}

.p-cpn__icon {
  width: 102px;
  margin-left: 20px;
}

.p-cpn__example {
  flex: 1 1;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
}

.p-cpn__example span {
  font-size: 1.25rem;
  line-height: 1;
  color: var(--primary);
}

/* FAQ Section */
.p-faq {
  padding-top: 60px;
  padding-bottom: 60px;
}

.p-faq__inner {
  width: 89.82%;
  margin-left: auto;
  margin-right: auto;
}

.p-faq__desc {
  margin-top: 26px;
}

.p-faq__row {
  background-color: #fff;
  margin-top: 0;
  margin-bottom: 10px;
}

.p-faq__row button {
  position: relative;
  text-align: left;
}

.p-faq__row button.action::after {
  transform: rotate(0);
}

.p-faq__row button::before,
.p-faq__row button::after {
  position: absolute;
  content: "";
  background-color: var(--text);
  width: 30px;
  height: 2px;
  top: 20px;
  right: 20px;
}

.p-faq__row button::after {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.p-faq__row > dt span,
.p-faq__row dd span {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  border-radius: 50%;
}

.p-faq__row > dt span::before,
.p-faq__row dd span::before {
  position: absolute;
  font-weight: 600;
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-items: flex-start;
  z-index: 1;
  font-family: "Poppins", sans-serif;
}

.p-faq__row > dt::before,
.p-faq__row > dt::after,
.p-faq__row dd::before,
.p-faq__row dd::after {
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  left: 21px;
  align-items: center;
  font-weight: bold;
  color: #000;
}

.p-faq__row > dt::before,
.p-faq__row dd::before {
  position: absolute;
  font-weight: 600;
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-items: flex-start;
  z-index: 1;
}

.p-faq__row > dt span {
  background-color: var(--text);
  margin-right: 15px;
}

.p-faq__row > dt span::before {
  content: "q";
  left: 8px;
}

.p-faq__row > dt p {
  flex: 1 1;
}

.p-faq__row > dd .wrap {
  align-items: flex-start;
  display: flex;
}

.p-faq__row > dd p {
  flex: 1 1;
}

.p-faq__row > dd span {
  background-color: var(--primary);
  margin-right: 15px;
}

.p-faq__row > dd span::before {
  content: "a";
  left: 9px;
  top: 7px;
}

.p-faq__question button {
  font-size: 0.875rem;
  line-height: 1.57;
  font-weight: bold;
  border-radius: 1cap;
  padding: 13px 50px 15px 16px;
  width: 100%;
  border: none;
  background-color: #fceef1;
  color: #000;
  display: flex;
  align-items: center;
}

.p-faq__question button::before,
.p-faq__question button::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  right: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.p-faq__question button::after {
  transform: rotate(90deg);
}

.p-faq__question button.action::after {
  transform: rotate(0);
}

.p-faq__text {
  font-size: 0.8125rem;
  line-height: 1.69;
  font-weight: 500;
  margin-left: 0;
  padding: 0 30px 16px 10px;
  display: none;
  margin-top: 20px;
}

.p-faq__text a {
  display: inline-block;
  text-decoration: underline;
}

/* Flow Section */
.p-flow {
  padding-top: 78px;
  padding-bottom: 40px;
}

.p-flow__inner {
  width: 90.77%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
}

.p-flow__list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  counter-reset: item;
}

.p-flow__item {
  padding-top: 42px;
  padding-bottom: 20px;
  border: 1px solid #bdbdbd;
  border-radius: 20px;
  text-align: center;
  width: 166px;
  position: relative;
}

.p-flow__item::after {
  position: absolute;
  content: "0" counters(item, ".");
  counter-increment: item;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  top: 10px;
  left: 0;
  right: 0;
  margin: auto;
}

.p-flow__item:nth-of-type(even) {
  margin-left: 6px;
}

.p-flow__item:nth-of-type(n+3) {
  margin-top: 10px;
}

.p-flow__item + .p-flow__item {
  position: relative;
}

.p-flow__image {
  width: 80px;
  margin-left: auto;
  margin-right: auto;
}

.p-flow__title {
  font-weight: 700;
}

.p-flow__text {
  font-size: 0.75rem;
  line-height: 1.67;
}

/* Form */
.p-form {
  padding-top: 61px;
  padding-bottom: 60px;
  background-color: #fbfafa;
  border-radius: 40px;
}

.p-form__inner {
  margin-left: auto;
  margin-right: auto;
  width: 89.82%;
}

.p-form__desc {
  font-size: 0.875rem;
  line-height: 1.71;
  font-weight: 500;
  margin-top: 17px;
}

.p-form__row + .p-form__row {
  margin-top: 24px;
}

.p-form__label {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
  padding-bottom: 10px;
}

.p-form__required {
  background-color: var(--primary);
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: 2px;
  margin-left: 12px;
  padding: 2px 6px;
}

.p-form__input {
  border: 1px solid #bdbdbd;
  padding: 10px 16px;
  border-radius: 4px;
  width: 100%;
}

.p-form__select {
  border: 1px solid #bdbdbd;
  padding: 10px 16px;
  border-radius: 4px;
  width: 100%;
}

.p-form__textarea {
  border: 1px solid #bdbdbd;
  padding: 10px 16px;
  border-radius: 4px;
  width: 100%;
}

.p-form__button {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  position: relative;
}

.p-form__button input {
  border: none;
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: 25px;
  width: 236px;
  height: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.p-form__button::before {
  position: absolute;
  content: "";
  background-image: url(../img/arrow_white_small.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  right: calc(50% - 94px);
  width: 20px;
  height: 20px;
}

.p-form__submit {
  border: none;
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: 25px;
  width: 236px;
  height: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.p-form__submit:hover {
  background-color: var(--text);
}

.p-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: var(--primary);
}

.p-form__message {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}

.p-form__message--success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.p-form__message--error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Main Visual */
.p-mv__inner {
  height: 197.87vw;
  position: relative;
  overflow: hidden;
}

.p-mv__title {
  position: absolute;
  width: 89.33vw;
  top: 24.53vw;
  left: 5.33vw;
  opacity: 0;
}

.p-mv__image {
  position: absolute;
  width: 100vw;
  top: 99.47vw;
  left: 0;
  opacity: 0;
}

.p-mv__image img {
  width: 100%;
}

/* Plan Section */
.p-plan {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
  position: relative;
  background-color: var(--primary);
  background-image: url(../img/plan_bg_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.p-plan__inner {
  width: 89.82%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 40px;
  padding-top: 60px;
  padding-bottom: 40px;
}

.p-plan__detail {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  padding-top: 32px;
}

.p-plan__detail b {
  color: var(--primary);
}

.p-plan__text {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 15px;
}

.p-plan__image {
  max-width: 780px;
  width: 94.64%;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
}

/* Reason Section */
.p-reason {
  padding-top: 28px;
  padding-bottom: 60px;
  overflow: hidden;
  position: relative;
}

.p-reason__inner {
  width: 89.33%;
  margin-left: auto;
  margin-right: auto;
}

.p-reason__desc {
  font-size: 0.875rem;
  line-height: 1.57;
  font-weight: 500;
  margin-top: 20px;
}

.p-reason__list {
  list-style-type: none;
  padding-top: 32px;
  padding-left: 0;
  width: 77.61%;
  margin: 0 auto;
}

.p-reason__item {
  background-color: #fbfafa;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding-top: 24px;
  padding-bottom: 24px;
}

.p-reason__item::before {
  position: absolute;
  content: "";
  height: 12px;
  width: 100%;
  background-color: var(--primary);
  left: 0;
  bottom: 0;
}

.p-reason__item + .p-reason__item {
  margin-top: 16px;
}

.p-reason__image {
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
}

.p-reason__text {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
}

.p-reason__text b {
  color: var(--primary);
  font-size: 1.375rem;
  line-height: 1.36;
}

/* Service Section */
.p-service {
  padding-top: 66px;
  padding-bottom: 60px;
  background-color: #fbfafa;
}

.p-service__inner {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  width: 89.33%;
}

.p-service__cont {
  padding-top: 32px;
}

.p-service__image {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.p-service__title {
  margin-top: 34px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-service__title .sup {
  font-size: 2rem;
  line-height: 1;
  padding: 10px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
}

.p-service__title .main {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--primary);
  margin-top: 10px;
}

.p-service__text {
  font-size: 0.875rem;
  line-height: 1.57;
  margin-top: 16px;
  font-weight: 500;
}

.p-service__point {
  padding-top: 40px;
}

.p-service__pointList {
  padding-left: 0;
  list-style-type: none;
  margin-top: 0;
}

.p-service__pointItem {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 6px 4px 14px 0 rgba(0, 0, 0, 0.1);
  align-items: center;
}

.p-service__pointItem + .p-service__pointItem {
  margin-top: 12px;
}

.p-service__pointImage {
  width: 154px;
}

.p-service__pointInfo {
  flex: 1 1;
  padding-right: 16px;
  padding-left: 16px;
}

.p-service__pointTag {
  background-color: var(--primary);
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 600;
  border-radius: 30px;
  display: inline-block;
  padding: 3px 7px;
}

.p-service__pointText {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  padding-top: 8px;
}

/* Media Section */
.p-media {
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
  position: relative;
}

.p-media__inner {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  width: 89.33%;
}

.p-media__cont {
  margin-top: 72px;
  padding: 60px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(#fdf7f7, #f7f7fb);
}

.p-media__thumb {
  width: 480px;
}

/* Voices Section */
.p-voices {
  padding-top: 60px;
  padding-bottom: 56px;
  border-top: 1px solid #b9b9b9;
}

.p-voices__inner {
  width: 89.82%;
  margin-left: auto;
  margin-right: auto;
}

.p-voices__cont {
  padding-top: 28px;
}

.p-voices__list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 0;
}

.p-voices__item {
  box-shadow: 6px 4px 14px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 32px;
}

.p-voices__item + .p-voices__item {
  margin-top: 16px;
}

.p-voices__info {
  display: flex;
  align-items: center;
}

.p-voices__image {
  width: 60px;
}

.p-voices__name {
  flex: 1 1;
  color: var(--primary);
  padding-left: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

.p-voices__title {
  font-weight: 700;
}

.p-voices__text {
  font-size: 0.875rem;
  line-height: 1.43;
}

/* CTA */
.l-cta {
  width: 100%;
  position: fixed;
  z-index: 10;
  bottom: 0;
  padding-top: 16px;
  background: rgba(0, 0, 0, 0.1);
}

.l-cta__cont {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Media Queries - Tablet and Desktop
   ========================================================================== */

@media screen and (min-width: 768px) {
  .c-button__link {
    transition: border 0.3s ease;
  }

  .c-button__link:hover {
    border: 1px solid var(--primary);
  }

  .c-button__link:hover .c-button__arrow {
    background-color: #bdbdbd;
  }

  .c-button__link:hover .c-button__text {
    color: #fff;
    background-color: var(--primary);
  }

  .c-button__text {
    font-size: 1.75rem;
    line-height: 1.43;
    transition: color 0.3s ease, background-color 0.3s ease;
  }

  .c-button__arrow {
    transition: background-color 0.3s ease;
  }

  .c-footer {
    padding-top: 32px;
    padding-bottom: 160px;
  }

  .c-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .c-footer__logo {
    order: 1;
    margin-right: auto;
  }

  .c-footer__nav {
    margin-top: 0;
    order: 2;
    display: flex;
    align-items: center;
  }

  .c-footer__navList {
    gap: 32px;
  }

  .c-footer__copyright {
    margin-top: 0;
    order: 3;
    margin-left: 32px;
  }

  .c-title__main {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .c-title__sub {
    font-size: 1rem;
    line-height: 1.25;
    margin-top: 18px;
  }

  .c-title__bg {
    font-size: 5rem;
    line-height: 1;
    top: 1px;
  }

  .l-header {
    top: 24px;
  }

  .l-header.is-fixed .l-header__wrapper {
    background-color: #fff6eb;
  }

  .l-header__wrapper {
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
  }

  .l-header__contactLink {
    font-size: 0.9375rem;
    line-height: 1;
    padding: 16px 56px 16px 30px;
    transition: background-color 0.3s ease, border 0.3s ease;
  }

  .l-header__contactLink:hover {
    background-color: var(--text);
  }

  .l-header__contactLink::before {
    width: 20px;
    height: 20px;
    right: 30px;
  }

  .l-header__logo {
    width: 168px;
    margin-left: 41px;
  }

  .l-header__logo a {
    width: 168px;
    transition: opacity 0.3s ease;
  }

  .l-header__logo a:hover {
    opacity: 0.6;
  }

  .l-header__main {
    background-color: #fff;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: 150px 0 0 150px;
    padding: 10px 20px 10px 50px;
  }

  .l-header__list {
    display: flex;
  }

  .l-header__link {
    text-decoration: none;
    color: var(--text);
    font-size: 0.75rem;
    line-height: 1.67;
    font-weight: 700;
    padding: 10px;
    position: relative;
    transition: color 0.3s ease;
  }

  .l-header__link:hover {
    color: var(--primary);
  }

  .p-about {
    padding-top: 143px;
    padding-bottom: 0;
  }

  .p-about__inner {
    width: 88.89%;
  }

  .p-about__title .baloon {
    top: -72px;
  }

  .p-about__title .baloon span {
    font-size: 1.5rem;
    line-height: 1;
  }

  .p-about__title .main {
    font-size: 2.5rem;
    line-height: 1;
  }

  .p-about__title .main b {
    font-size: 3rem;
    line-height: 1;
  }

  .p-about__cont {
    text-align: center;
    margin-left: 500px;
  }

  .p-about__list {
    margin-left: auto;
    margin-top: 28px;
    width: 600px;
  }

  .p-about__item {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-about__item + .p-about__item {
    margin-top: 8px;
  }

  .p-about__movie {
    margin-top: 80px;
    border-radius: 200px;
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url(../img/about_moviebg.png);
  }

  .p-about__movie::before {
    width: 303px;
    height: 343px;
    top: -200px;
    left: calc(50% - 400px);
    right: inherit;
  }

  .p-case {
    padding-top: 150px;
    padding-bottom: 100px;
    background-image: url(../img/case_bg.png);
  }

  .p-case__article {
    flex-direction: row;
    justify-content: center;
    padding: 40px;
  }

  .p-case__box {
    padding-top: 0;
    padding-right: 60px;
  }

  .p-case__name {
    font-size: 1rem;
    line-height: 1.375;
  }

  .p-case__title {
    padding-top: 16px;
    font-size: 1.375rem;
    line-height: 1.45;
  }

  .p-case__articleRow + .p-case__articleRow {
    margin-top: 16px;
  }

  .p-case__slide {
    padding-top: 70px;
  }

  .p-case__button {
    width: 60px;
    height: 60px;
    bottom: 10px;
    transition: opacity 0.3s ease;
  }

  .p-case__button:hover {
    opacity: 0.6;
  }

  .p-company {
    padding-top: 0;
  }

  .p-company__title span {
    font-size: 1.5rem;
    line-height: 1;
  }

  .p-company__logo {
    width: 200px;
  }

  .p-company__logo img {
    width: 180px;
  }

  .p-contact {
    padding-top: 66px;
    padding-bottom: 100px;
  }

  .p-contact__inner {
    max-width: 920px;
    width: 95%;
  }

  .p-contact__desc {
    font-size: 1rem;
    line-height: 1.625;
    margin-top: 40px;
  }

  .p-contact__form {
    margin-top: 32px;
  }

  .p-cpn {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .p-cpn__image img {
    border-radius: 16px;
  }

  .p-cpn__inner {
    max-width: 1080px;
  }

  .p-cpn__banner {
    padding-top: 90px;
  }

  .p-cpn__cont {
    padding-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 48px 48px;
  }

  .p-cpn__text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-cpn__list {
    margin-top: 0;
  }

  .p-cpn__item {
    border-radius: 20px;
  }

  .p-cpn__item + .p-cpn__item {
    margin-top: 16px;
  }

  .p-cpn__example {
    font-size: 1.375rem;
    line-height: 0.91;
  }

  .p-cpn__example span {
    font-size: 1.75rem;
    line-height: 1.14;
  }

  .p-faq {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .p-faq__inner {
    width: 90.77%;
    padding-left: 60px;
    max-width: 880px;
  }

  .p-faq__desc {
    margin-top: 44px;
    margin-bottom: 0;
  }

  .p-faq__row {
    margin-bottom: 16px;
  }

  .p-faq__row > dt span,
  .p-faq__row dd span {
    width: 40px;
    height: 40px;
  }

  .p-faq__row > dt span::before,
  .p-faq__row dd span::before {
    font-size: 1.5rem;
    line-height: 0.83;
  }

  .p-faq__row > dt::before,
  .p-faq__row > dt::after,
  .p-faq__row dd::before,
  .p-faq__row dd::after {
    left: 17px;
    top: 4px;
  }

  .p-faq__row > dt::before,
  .p-faq__row dd::before {
    font-size: 1.5rem;
    line-height: 0.83;
  }

  .p-faq__row > dt span::before {
    left: 11px;
  }

  .p-faq__row > dd span::before {
    left: 11px;
    top: 9px;
  }

  .p-faq__question button {
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    padding: 20px 34px 30px 25px;
  }

  .p-faq__question button:hover {
    color: var(--primary);
  }

  .p-faq__question button::before,
  .p-faq__question button::after {
    right: 18px;
    width: 24px;
    height: 3px;
  }

  .p-faq__text {
    padding: 0 30px 16px 25px;
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .p-faq__text a:hover {
    text-decoration: none;
  }

  .p-flow {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .p-flow__list {
    margin-top: 54px;
  }

  .p-flow__item {
    width: 226px;
    margin-top: 20px !important;
  }

  .p-flow__item:nth-of-type(even) {
    margin-left: 50px;
  }

  .p-flow__item:nth-of-type(n+3) {
    margin-top: 0;
  }

  .p-flow__item + .p-flow__item {
    margin-left: 50px;
  }

  .p-flow__item + .p-flow__item::before {
    position: absolute;
    content: "";
    background-image: url(../img/arrow-icon_right.svg);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    left: -40px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .p-flow__image {
    width: 100px;
  }

  .p-form {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .p-form__inner {
    max-width: 640px;
    width: 95%;
  }

  .p-form__desc {
    font-size: 1rem;
    line-height: 1.625;
    margin-top: 50px;
  }

  .p-form__required {
    border-radius: 10px;
    margin-left: 20px;
  }

  .p-form__button input:hover,
  .p-form__submit:hover {
    background-color: var(--text);
  }

  .p-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: var(--primary);
  }

  .p-mv__inner {
    height: 54.1vw;
  }

  .p-mv__title {
    width: 39.51vw;
    top: 15.63vw;
    left: 7.08vw;
  }

  .p-mv__image {
    width: 51.6vw;
    top: 11.53vw;
    right: 0;
    left: inherit;
  }

  .p-plan {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../img/plan_bg.png);
  }

  .p-plan__inner {
    padding-top: 60px;
    padding-bottom: 60px;
    width: 90.77%;
    max-width: 1180px;
  }

  .p-plan__detail {
    font-size: 1.5rem;
    line-height: 1.33;
  }

  .p-reason {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .p-reason__inner {
    padding-left: 60px;
    width: 90.77%;
    max-width: 1080px;
  }

  .p-reason__desc {
    margin-top: 40px;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .p-reason__list {
    display: grid;
    grid-template-columns: repeat(3, 31.67%);
    gap: 30px 2.5%;
    width: auto;
  }

  .p-reason__item + .p-reason__item {
    margin-top: 0;
  }

  .p-reason__image {
    max-width: 190px;
  }

  .p-reason__text {
    font-size: 1.375rem;
    line-height: 1.36;
  }

  .p-reason__text b {
    font-size: 1.5rem;
    line-height: 1.42;
  }

  .p-service {
    padding-top: 144px;
    padding-bottom: 100px;
  }

  .p-service__cont {
    padding-top: 90px;
    display: flex;
  }

  .p-service__image {
    width: 398px;
  }

  .p-service__info {
    flex: 1 1;
    margin-left: 60px;
    padding-top: 24px;
  }

  .p-service__title {
    align-items: flex-start;
    margin-top: 0;
  }

  .p-service__title .sup {
    font-size: 2.5rem;
    line-height: 1;
  }

  .p-service__title .main {
    font-size: 3rem;
    line-height: 1.25;
  }

  .p-service__text {
    font-size: 1rem;
    line-height: 2;
    margin-top: 24px;
  }

  .p-service__point {
    padding-top: 100px;
  }

  .p-service__pointList {
    display: grid;
    grid-template-columns: repeat(2, 48.89%);
    gap: 24px 24px;
  }

  .p-service__pointItem + .p-service__pointItem {
    margin-top: 0;
  }

  .p-service__pointImage {
    width: 236px;
  }

  .p-service__pointInfo {
    padding-right: 32px;
    padding-left: 32px;
  }

  .p-service__pointTag {
    font-size: 0.9375rem;
    line-height: 1;
    padding: 5px 10px;
  }

  .p-service__pointText {
    font-size: 1.5rem;
    line-height: 1.33;
    padding-top: 14px;
  }

  .p-voices {
    padding-top: 115px;
    padding-bottom: 120px;
  }

  .p-voices__inner {
    padding-left: 60px;
    width: 90.77%;
    max-width: 1180px;
  }

  .p-voices__cont {
    padding-top: 40px;
  }

  .p-voices__list {
    display: grid;
    grid-template-columns: repeat(3, 31.67%);
    gap: 32px 2.5%;
  }

  .p-voices__item + .p-voices__item {
    margin-top: 0;
  }

  .p-voices__image {
    width: 80px;
  }

  .p-voices__title {
    font-size: 1.125rem;
    line-height: 1.56;
  }

  .p-voices__text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .u-sp {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .l-header__link {
    font-size: 0.875rem;
    line-height: 1.43;
    padding: 15px;
  }
}

@media screen and (min-width: 1281px) {
  .c-title__bg {
    font-size: 11.75rem;
    line-height: 1;
    top: -36px;
  }
}

/* ==========================================================================
   Media Queries - Mobile
   ========================================================================== */

@media screen and (max-width: 767px) {
  .l-header {
    border-radius: 30px;
    width: 94%;
    margin: auto;
    right: 0;
    padding: 8px 10px;
  }

  .l-header.is-fixed {
    background-color: #fff6eb;
  }

  .l-header.is-open {
    background-color: transparent;
  }

  .p-cpn__inner .c-title__bg {
    font-size: 3.5625rem;
    line-height: 1;
  }

  .u-pc {
    display: none !important;
  }

  .p-about__movieList {
    flex-direction: column;
  }

  .l-cta {
    display: none;
  }
}
