@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanjp.css");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanmp.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  -webkit-font-smoothing: antialiased;
  --base-size: 62.5%;
  --clr-text: #1e1e1e;
  --clr-placeholder: #a7a7a7;
  --clr-line: #ccc;
  --clr-main: #ff7124;
  --clr-bg: #fff5f0;
  --clr-strong: #e8070b;
  --clr-green: #00b900;
  --ff-sans: YakuHanJP, "Noto Sans JP", serif;
  --fz: 1.4rem;
  --ls: normal;
  --lh: 2;
  --ani: 250ms ease-out;
  --ani-fast: 200ms ease-out;
  --ani-slow: 300ms ease-out;
  --spSize: 375;
}

@supports (-webkit-touch-callout: none) {
  body {
    /* The hack for Safari */
    height: -webkit-fill-available;
  }
}
body {
  background-color: #fff;
}

.ui-widget,
body {
  font: inherit;
  font-family: var(--ff-sans);
  font-weight: normal;
  -webkit-text-size-adjust: 100%;
  letter-spacing: var(--ls);
  font-feature-settings: "pkna" 1;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

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

input:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]),
textarea,
select,
button {
  font-size: 1.6rem;
  font-family: var(--ff-sans);
  color: var(--clr-text);
  line-height: var(--lh);
  letter-spacing: var(--ls);
  font-feature-settings: "palt" 1;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}
input:focus,
textarea:focus {
  outline: 2px solid #125fc4;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--clr-placeholder);
  display: inline;
  vertical-align: middle;
}
input::placeholder,
textarea::placeholder {
  color: var(--clr-placeholder);
  display: inline;
  vertical-align: middle;
}

input[type=reset],
input[type=submit] {
  background: none;
  border: none;
  outline: none;
}

select {
  border-radius: 0;
}
select:focus {
  outline: 0;
}
select::-ms-expand {
  display: none;
}

button {
  font-size: var(--fz);
  font-family: var(--ff-sans);
  padding: 0;
  margin: 0;
  border: none;
  background: none;
}
button:focus {
  outline: 0;
}
@media (768px <= width) {
  button {
    cursor: pointer;
  }
}

b,
strong,
.bold {
  font-weight: 700;
}

sup {
  vertical-align: super;
  font-size: 1rem;
}

sub {
  vertical-align: baseline;
  font-size: 1rem;
}

img {
  vertical-align: middle;
  font-size: 0;
  line-height: 0;
  max-width: 100%;
  height: auto;
  image-rendering: auto;
}

html {
  line-height: 1;
  font-size: 62.5%;
  font-size: var(--base-size);
}

body.is-menuopen {
  overflow: hidden;
}

#stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  min-width: 320px;
  font-size: var(--fz);
  font-family: var(--ff-sans);
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 2;
  color: var(--clr-text);
}
@media (width < 768px) {
  .pc {
    display: none;
  }
  .pc.important {
    display: none !important;
  }
}
@media (768px <= width) {
  .sp {
    display: none;
  }
  .sp.important {
    display: none !important;
  }
}
ul.dot li {
  position: relative;
  padding-left: 1em;
}
ul.dot li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--clr-blue);
  position: absolute;
  left: 0;
  top: 0.8em;
  border-radius: 100px;
}
ul.dot.gray li::before {
  background-color: var(--clr-lightYellow4);
}

ol.number > li {
  padding-left: 1.7em;
  position: relative;
  counter-increment: number;
}
ol.number > li::before {
  content: counter(number);
  position: absolute;
  left: 0.3em;
}

ol.numberdot > li {
  padding-left: 2em;
  position: relative;
  counter-increment: numberdot;
}
ol.numberdot > li::before {
  content: counter(numberdot) ". ";
  position: absolute;
  left: 0.3em;
  color: var(--clr-gray1);
  font-weight: 500;
}

em {
  font-style: italic;
}

a,
.btn {
  color: var(--clr-text);
  text-decoration: none;
}

@media (hover: hover) and (width >= 768px) {
  a[href^="tel:"]:hover {
    opacity: 1;
    cursor: context-menu;
  }
}
svg {
  -webkit-backface-visibility: hidden;
}

p + p {
  margin-top: 1.5em;
}

#header {
  height: calc(63 / var(--spSize) * 100vw);
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 26, 99, 0.2);
}
@media (768px <= width) {
  #header {
    width: 100%;
    height: 8.8rem;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(8 / var(--spSize) * 100vw) calc(16 / var(--spSize) * 100vw);
  position: relative;
}
@media (768px <= width) {
  .header__inner {
    padding: 0;
    width: 123.4rem;
    margin: 0 auto;
    display: block;
  }
}
.header__inner .logoarea {
  display: grid;
  gap: calc(4 / var(--spSize) * 100vw) 0;
}
@media (768px <= width) {
  .header__inner .logoarea {
    gap: 0.4rem 0;
    display: inline-grid;
  }
}
.header__inner .logoarea .text {
  font-size: 0.9rem;
  line-height: 1.2;
  color: #888;
}
@media (768px <= width) {
  .header__inner .logoarea .text {
    font-size: 1rem;
  }
}
.header__inner .logoarea h1 {
  height: calc(32 / var(--spSize) * 100vw);
  font-size: 1rem;
}
@media (768px <= width) {
  .header__inner .logoarea h1 {
    height: 4.8rem;
  }
}
.header__inner .logoarea img {
  width: calc(143 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .header__inner .logoarea img {
    width: 21.3rem;
  }
}
.header__inner button {
  text-align: center;
  display: grid;
  gap: calc(8 / var(--spSize) * 100vw) 0;
  justify-content: center;
}
@media (768px <= width) {
  .header__inner button {
    display: none;
  }
}
.header__inner button .text {
  font-size: 1.1rem;
  line-height: 1.2;
}
.header__inner button .bar {
  position: relative;
  width: calc(34 / var(--spSize) * 100vw);
  height: calc(23 / var(--spSize) * 100vw);
  margin: 0 auto;
}
.header__inner button .bar span {
  width: calc(34 / var(--spSize) * 100vw);
  height: calc(4 / var(--spSize) * 100vw);
  background-color: #000;
  display: block;
  position: absolute;
}
.header__inner button .bar span:nth-child(2) {
  top: calc(10 / var(--spSize) * 100vw);
}
.header__inner button .bar span:nth-child(3) {
  top: calc(20 / var(--spSize) * 100vw);
}
.header .navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
@media (768px <= width) {
  .header .navigation {
    width: 123.4rem;
    left: calc(50% - 61.7rem);
  }
}
.header .navigation .closemenuBtn {
  width: calc(30 / var(--spSize) * 100vw);
  height: calc(30 / var(--spSize) * 100vw);
  background-color: #1e1e1e;
  position: absolute;
  top: calc(16 / var(--spSize) * 100vw);
  right: calc(24 / var(--spSize) * 100vw);
  z-index: 99;
}
@media (768px <= width) {
  .header .navigation .closemenuBtn {
    display: none;
  }
}
.header .navigation .closemenuBtn .bar {
  position: relative;
  width: 100%;
  height: 100%;
}
.header .navigation .closemenuBtn .bar span {
  background-color: #fff;
  width: calc(26 / var(--spSize) * 100vw);
  height: calc(4 / var(--spSize) * 100vw);
  position: absolute;
  top: calc(50% - 2 / var(--spSize) * 100vw);
  left: calc(50% - 13 / var(--spSize) * 100vw);
}
.header .navigation .closemenuBtn .bar span:nth-child(1) {
  transform: rotate(45deg);
}
.header .navigation .closemenuBtn .bar span:nth-child(2) {
  transform: rotate(-45deg);
}
.header .navigation__inner {
  height: 100svh;
  padding-top: calc(62 / var(--spSize) * 100vw);
  padding-left: calc(32 / var(--spSize) * 100vw);
  padding-right: calc(32 / var(--spSize) * 100vw);
  padding-bottom: calc(120 / var(--spSize) * 100vw);
  pointer-events: auto;
  display: grid;
}
@media (width < 768px) {
  .header .navigation__inner {
    opacity: 0;
    transition: opacity var(--ani);
    pointer-events: none;
    background-color: #fff;
    overflow-y: scroll;
  }
  body.is-menuopen .header .navigation__inner {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (768px <= width) {
  .header .navigation__inner {
    width: 69rem;
    margin-left: 22rem;
    height: auto;
    padding: 1.85rem 0 0;
    gap: 1rem 0;
  }
}
.header .navigation .main a,
.header .navigation .sub a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: calc(47 / var(--spSize) * 100vw);
  display: block;
  border-bottom: 1px solid var(--clr-line);
  position: relative;
}
@media (768px <= width) {
  .header .navigation .main a,
  .header .navigation .sub a {
    line-height: normal;
    font-size: 1.5rem;
    border-bottom: none;
  }
}
.header .navigation .main a::after,
.header .navigation .sub a::after {
  content: "";
  width: calc(15 / var(--spSize) * 100vw);
  height: calc(15 / var(--spSize) * 100vw);
  background: url(../images/common/icon-navlink.svg) center/contain no-repeat;
  position: absolute;
  top: calc(50% - 7.5 / var(--spSize) * 100vw);
  right: 0;
}
@media (768px <= width) {
  .header .navigation .main a::after,
  .header .navigation .sub a::after {
    content: none;
  }
}
.header .navigation .main a.parent::after,
.header .navigation .sub a.parent::after {
  background-image: url(../images/common/icon-naviplus.svg);
}
.header .navigation .main a.parent.open::after,
.header .navigation .sub a.parent.open::after {
  background-image: url(../images/common/icon-naviminus.svg);
}
@media (width < 768px) {
  .header .navigation .main .linkblock:first-child a {
    border-top: 1px solid var(--clr-line);
  }
}
@media (768px <= width) {
  .header .navigation .main {
    display: flex;
    grid-area: 2/1/3/2;
  }
  .header .navigation .main .linkblock:nth-child(n+3) {
    border-left: 1px solid var(--clr-line);
  }
  .header .navigation .main a {
    padding: 0 2.4rem;
  }
}
@media (hover: hover) and (width >= 768px) {
  .header .navigation .main a {
    transition: color var(--ani);
  }
  .header .navigation .main a:hover {
    color: var(--clr-main);
  }
}
.header .navigation .main .linkblock__childlen {
  display: none;
}
.header .navigation .main .linkblock__childlen a {
  font-weight: 400;
  padding-left: 2em;
}
@media (768px <= width) {
  .header .navigation .sub {
    grid-area: 1/1/2/2;
    display: flex;
    justify-content: flex-end;
  }
}
@media (width < 768px) {
  .header .navigation .sub a:first-child a {
    border-top: 1px solid var(--clr-line);
  }
}
@media (768px <= width) {
  .header .navigation .sub a {
    padding: 0 0.8rem;
    font-size: 1.4rem;
    font-weight: 400;
    color: #888;
    text-decoration: underline;
  }
  .header .navigation .sub a.sp {
    display: none;
  }
}
@media (hover: hover) and (width >= 768px) {
  .header .navigation .sub a:hover {
    text-decoration: none;
  }
}
.header .navigation .contact {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(60 / var(--spSize) * 100vw);
  padding: calc(12 / var(--spSize) * 100vw) 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  pointer-events: auto;
}
.header .navigation .contact__text {
  display: none;
}
@media (768px <= width) {
  .header .navigation .contact {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    background: none;
    width: 32.4rem;
    padding: 0.9rem 0 0;
    height: 8.8rem;
    grid-template-rows: auto 5.7rem;
    gap: 0 0.8rem;
  }
  .header .navigation .contact__text {
    display: block;
    grid-column: 1/3;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.24rem;
  }
}
.header .navigation .contact a {
  color: #fff;
  height: calc(40 / var(--spSize) * 100vw);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 calc(8 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .header .navigation .contact a {
    height: auto;
    gap: 0 0.5rem;
    border-radius: 0.4rem 0.4rem 0 0;
    padding: 0.95rem 0;
    font-size: 1.5rem;
  }
  .header .navigation .contact a.telcontact {
    background-color: var(--clr-main);
  }
  .header .navigation .contact a.mailcontact {
    background-color: var(--clr-strong);
  }
}
@media (hover: hover) and (width >= 768px) {
  .header .navigation .contact a {
    transition: opacity var(--ani);
  }
  .header .navigation .contact a:hover {
    opacity: 0.7;
  }
}
.header .navigation .contact a span {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.32;
}
.header .navigation .contact a + a {
  border-left: 1px solid #fff;
}

#telcontact {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.4);
  display: grid;
  place-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ani);
}
body.is-telmodal #telcontact {
  opacity: 1;
  pointer-events: auto;
}
#telcontact .telcontact {
  background-color: #fff;
  border: 6px solid var(--clr-main);
  width: calc(311 / var(--spSize) * 100vw);
  padding: calc(28 / var(--spSize) * 100vw) calc(21 / var(--spSize) * 100vw);
  position: relative;
}
@media (768px <= width) {
  #telcontact .telcontact {
    width: 100rem;
    padding: 6.8rem;
  }
}
#telcontact .telcontact__close {
  background-color: #1e1e1e;
  position: absolute;
  right: 0;
  top: 0;
  width: calc(30 / var(--spSize) * 100vw);
  height: calc(30 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  #telcontact .telcontact__close {
    width: 5rem;
    height: 5rem;
  }
}
#telcontact .telcontact__close span {
  background-color: #fff;
  width: calc(26 / var(--spSize) * 100vw);
  height: calc(4 / var(--spSize) * 100vw);
  position: absolute;
  top: calc(50% - 2 / var(--spSize) * 100vw);
  left: calc(50% - 13 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  #telcontact .telcontact__close span {
    width: 4.4rem;
    height: 0.6rem;
    top: calc(50% - 0.3rem);
    left: calc(50% - 2.2rem);
  }
}
#telcontact .telcontact__close span:nth-child(1) {
  transform: rotate(45deg);
}
#telcontact .telcontact__close span:nth-child(2) {
  transform: rotate(-45deg);
}
#telcontact .telcontact__content {
  margin-top: calc(24 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  #telcontact .telcontact__content {
    margin-top: 6rem;
  }
}
#telcontact .telcontact__text {
  text-align: center;
  line-height: 1.44;
}
@media (768px <= width) {
  #telcontact .telcontact__text {
    display: none;
  }
}
#telcontact .telcontact__lists {
  margin-top: calc(32 / var(--spSize) * 100vw);
  display: grid;
  gap: calc(16 / var(--spSize) * 100vw) 0;
}
@media (768px <= width) {
  #telcontact .telcontact__lists {
    margin-top: 0;
    grid-template-columns: repeat(2, 28.7rem);
    justify-content: center;
    gap: 4.8rem 6.2rem;
  }
}
#telcontact .telcontact__item a {
  background-color: var(--clr-bg);
  border: 2px solid var(--clr-main);
  text-align: center;
  display: block;
  border-radius: 100px;
  padding: calc(10 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  #telcontact .telcontact__item .syncer-tel {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 1.2rem 0;
  }
}
#telcontact .telcontact__item-label {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.44;
}
@media (768px <= width) {
  #telcontact .telcontact__item-label {
    grid-area: 1/1/2/2;
    font-size: 2rem;
  }
}
#telcontact .telcontact__item-tel {
  display: none;
}
@media (768px <= width) {
  #telcontact .telcontact__item-tel {
    display: block;
    grid-area: 1/2/2/3;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.44;
    color: var(--clr-main);
  }
}
#telcontact .telcontact__item-data {
  font-size: 1rem;
}
@media (768px <= width) {
  #telcontact .telcontact__item-data {
    grid-area: 2/1/3/3;
    font-size: 1.2rem;
    text-align: center;
    border: 1px solid var(--clr-main);
    border-radius: 100px;
    background-color: var(--clr-bg);
  }
}

#serviceLink {
  background-color: var(--clr-bg);
  padding: calc(32 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  #serviceLink {
    padding: 8rem;
  }
}

.serviceLink__contents {
  margin-top: calc(24 / var(--spSize) * 100vw);
  display: grid;
  gap: calc(16 / var(--spSize) * 100vw) 0;
}
@media (768px <= width) {
  .serviceLink__contents {
    margin-top: 3.2rem;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.6rem;
    width: 100rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.serviceLink__item {
  padding: calc(16 / var(--spSize) * 100vw);
  background-color: #fff;
  display: grid;
  grid-template-columns: 96fr 167fr;
  gap: 0 calc(16 / var(--spSize) * 100vw);
  border-radius: 4px;
  border: 1px solid var(--clr-line);
}
@media (768px <= width) {
  .serviceLink__item {
    padding: 2.4rem;
    grid-template-columns: 9.6rem auto;
    gap: 0 1.6rem;
  }
  .serviceLink__item:nth-child(1) {
    grid-area: 1/1/2/4;
  }
  .serviceLink__item:nth-child(2) {
    grid-area: 1/4/2/7;
  }
  .serviceLink__item:nth-child(3) {
    grid-area: 2/1/3/3;
  }
  .serviceLink__item:nth-child(4) {
    grid-area: 2/3/3/5;
  }
  .serviceLink__item:nth-child(5) {
    grid-area: 2/5/3/7;
  }
}
@media (hover: hover) and (width >= 768px) {
  .serviceLink__item {
    transition: opacity var(--ani);
  }
  .serviceLink__item:hover {
    opacity: 0.7;
  }
}
.serviceLink__item-icon {
  align-self: center;
}
.serviceLink__item-wrap {
  align-self: center;
}
.serviceLink__item-label {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
  color: var(--clr-main);
}
@media (768px <= width) {
  .serviceLink__item-label {
    font-size: 2.4rem;
  }
}
.serviceLink__item-text {
  line-height: 1.44;
  margin-top: calc(8 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .serviceLink__item-text {
    margin-top: 0.8rem;
  }
}
.serviceLink__item-link {
  grid-column: 1/3;
  text-align: right;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.44;
}

#movieGallery {
  padding: calc(32 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  #movieGallery {
    padding: 8rem;
  }
}

.movieGallery__contents {
  margin-top: calc(24 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .movieGallery__contents {
    margin-top: 3.2em;
  }
}
.movieGallery__movie {
  aspect-ratio: 560/315;
  position: relative;
}
@media (768px <= width) {
  .movieGallery__movie {
    width: 100rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.movieGallery__movie iframe {
  width: 100%;
  height: 100%;
}
.movieGallery .button {
  width: calc(265 / var(--spSize) * 100vw);
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(24 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .movieGallery .button {
    width: 25rem;
    margin-top: 3.2rem;
  }
}

.footer {
  background-color: #333;
}
@media (768px <= width) {
  .footer {
    display: grid;
    grid-template-columns: 34.8rem 60rem;
    gap: 6rem;
    padding: 6.2rem calc(50% - 50rem);
  }
}
.footer__inner {
  padding: calc(32 / var(--spSize) * 100vw) calc(27.5 / var(--spSize) * 100vw) 0;
}
@media (768px <= width) {
  .footer__inner {
    padding: 0;
  }
}
.footer .logoarea {
  text-align: center;
}
@media (768px <= width) {
  .footer .logoarea {
    text-align: left;
  }
}
.footer .logoarea .text {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}
@media (768px <= width) {
  .footer .logoarea .text {
    font-size: 1.4rem;
    text-align: left;
  }
}
.footer .logoarea h1 {
  margin-top: calc(8 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .footer .logoarea h1 {
    margin-top: 0.8rem;
  }
}
.footer .logoarea img {
  width: calc(210 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .footer .logoarea img {
    width: 25.3rem;
  }
}
.footer .contact {
  margin-top: calc(16 / var(--spSize) * 100vw);
  display: grid;
  gap: calc(12 / var(--spSize) * 100vw) 0;
}
@media (768px <= width) {
  .footer .contact {
    margin-top: 2.4rem;
    gap: 1.2rem;
  }
}
.footer .contact__text {
  display: none;
}
.footer .contact a {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 3.2222222222;
  color: #fff;
  border-radius: 4px;
}
@media (768px <= width) {
  .footer .contact a {
    font-size: 1.8rem;
    line-height: 7.4rem;
  }
}
@media (hover: hover) and (width >= 768px) {
  .footer .contact a {
    transition: opacity var(--ani);
  }
  .footer .contact a:hover {
    opacity: 0.7;
  }
}
.footer .contact a br {
  display: none;
}
.footer .contact a.telcontact {
  background-color: var(--clr-main);
}
.footer .contact a.mailcontact {
  background-color: var(--clr-strong);
}
.footer .navigation {
  padding: calc(24 / var(--spSize) * 100vw) calc(55.5 / var(--spSize) * 100vw) calc(84 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .footer .navigation {
    padding: 0;
  }
  .footer .navigation__inner {
    display: grid;
    grid-template-columns: auto auto;
    align-items: start;
  }
}
.footer .navigation a {
  color: #fff;
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: calc(32 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .footer .navigation a {
    font-size: 1.8rem;
    line-height: 4.2rem;
  }
}
@media (hover: hover) and (width >= 768px) {
  .footer .navigation a {
    transition: all var(--ani);
  }
  .footer .navigation a:hover {
    text-decoration: underline;
  }
}
.footer .navigation .main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
  gap: calc(6 / var(--spSize) * 100vw) 2em;
}
@media (768px <= width) {
  .footer .navigation .main {
    grid-template-columns: repeat(2, 20rem);
    gap: 0;
  }
}
.footer .navigation .sub {
  display: grid;
  gap: calc(6 / var(--spSize) * 100vw) 2em;
}
@media (768px <= width) {
  .footer .navigation .sub {
    gap: 0;
  }
}
.footer .navigation .rows {
  grid-row: span 6;
}
.footer .navigation .linkblock__childlen a {
  font-weight: 400;
  margin-top: calc(6 / var(--spSize) * 100vw);
}
.footer .navigation .linkblock__childlen a::before {
  content: "ー";
  width: 2em;
  display: inline-block;
}
@media (768px <= width) {
  .footer .navigation .linkblock__childlen a {
    font-size: 1.8rem;
    line-height: 4.2rem;
    margin-top: 0;
  }
}

@media (768px <= width) {
  #stage {
    padding-top: 8.8rem;
  }
}

@media (768px <= width) {
  .w_1000 {
    margin-left: max(50% - 500px, 5rem);
    margin-right: max(50% - 500px, 5rem);
    max-width: 1000px;
    width: calc(100% - 10rem);
  }
  .w_1100 {
    margin-left: max(50% - 550px, 5rem);
    margin-right: max(50% - 550px, 5rem);
    max-width: 1100px;
    width: calc(100% - 10rem);
  }
  .w_1200 {
    margin-left: max(50% - 600px, 5rem);
    margin-right: max(50% - 600px, 5rem);
    max-width: 1200px;
    width: calc(100% - 10rem);
  }
  .w_1300 {
    margin-left: max(50% - 650px, 5rem);
    margin-right: max(50% - 650px, 5rem);
    max-width: 1300px;
    width: calc(100% - 10rem);
  }
  .w_1400 {
    margin-left: max(50% - 700px, 5rem);
    margin-right: max(50% - 700px, 5rem);
    max-width: 1400px;
    width: calc(100% - 10rem);
  }
  .w_1500 {
    margin-left: max(50% - 750px, 5rem);
    margin-right: max(50% - 750px, 5rem);
    max-width: 1500px;
    width: calc(100% - 10rem);
  }
  .w_1600 {
    margin-left: max(50% - 800px, 5rem);
    margin-right: max(50% - 800px, 5rem);
    max-width: 1600px;
    width: calc(100% - 10rem);
  }
}
.wrapper {
  padding: calc(32 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .wrapper {
    padding: 8rem 0;
  }
}

.breadcrumbs {
  font-size: 1.2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.8rem 0;
  width: 34.3rem;
}
.breadcrumbs a {
  text-decoration: underline;
}
@media (768px <= width) {
  .breadcrumbs {
    font-size: 1.4rem;
    width: 100rem;
  }
}

.pagetitle {
  display: grid;
  place-content: center;
  background: var(--clr-bg);
  color: var(--clr-main);
  font-size: 3.2rem;
  font-weight: 700;
  height: calc(102 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .pagetitle {
    font-size: 4rem;
    height: 14.4rem;
  }
}

.links {
  display: grid;
  gap: 1.4rem;
}
@media (768px <= width) {
  .links {
    width: 100rem;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
}
.links a {
  border-radius: 0.4rem;
  border: 2px solid var(--clr-main);
  font-size: 2rem;
  font-weight: 700;
  line-height: calc(60 / var(--spSize) * 100vw);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (768px <= width) {
  .links a {
    font-size: 2.4rem;
    line-height: 7.8rem;
  }
}
@media (hover: hover) and (width >= 768px) {
  .links a {
    transition: all var(--ani);
  }
  .links a:hover {
    opacity: 0.7;
  }
}
.links a i {
  margin-left: 1rem;
}
.links a:nth-child(1) {
  color: var(--clr-main);
}
.links a:nth-child(1) i {
  width: 2rem;
  height: 2rem;
}
.links a:nth-child(2) {
  background-color: var(--clr-main);
  color: #fff;
}
.links a:nth-child(2) i {
  width: 2rem;
  height: 2rem;
}
@media (768px <= width) {
  .links a:nth-child(2) i {
    width: 2.8rem;
    height: 2.8rem;
  }
}

.fadeinUp {
  opacity: 0;
  transform: translateY(30px);
  transition: transform var(--speed) ease-in-out, opacity var(--speed) ease-in-out;
  transition-delay: var(--delay);
}
.fadeinUp.is-animeted {
  opacity: 1;
  transform: translateY(0);
}

.delay1 {
  transition-delay: 0.3s;
}

.delay2 {
  transition-delay: 0.6s;
}

.delay3 {
  transition-delay: 0.9s;
}

.delay4 {
  transition-delay: 1.2s;
}

.delay5 {
  transition-delay: 1.5s;
}

.delay6 {
  transition-delay: 1.8s;
}

.delay7 {
  transition-delay: 2.1s;
}

.delay8 {
  transition-delay: 2.4s;
}

.delay9 {
  transition-delay: 2.7s;
}

.delay10 {
  transition-delay: 3s;
}

@keyframes anim--first {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
a.button,
button.button,
button[type=button].button,
input[type=submit].button,
input[type=reset].button,
input[type=button].button {
  display: block;
}
@media (hover: hover) and (width >= 768px) {
  a.button,
  button.button,
  button[type=button].button,
  input[type=submit].button,
  input[type=reset].button,
  input[type=button].button {
    transition: opacity var(--ani);
  }
  a.button:hover,
  button.button:hover,
  button[type=button].button:hover,
  input[type=submit].button:hover,
  input[type=reset].button:hover,
  input[type=button].button:hover {
    opacity: 0.7;
  }
}
a.base,
button.base,
button[type=button].base,
input[type=submit].base,
input[type=reset].base,
input[type=button].base {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-main);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  height: calc(47 / var(--spSize) * 100vw);
  border-radius: 4px;
  gap: calc(10 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  a.base,
  button.base,
  button[type=button].base,
  input[type=submit].base,
  input[type=reset].base,
  input[type=button].base {
    font-size: 2.4rem;
    height: 8.2rem;
    gap: 1rem;
  }
}
a.back,
button.back,
button[type=button].back,
input[type=submit].back,
input[type=reset].back,
input[type=button].back {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-line);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  height: calc(47 / var(--spSize) * 100vw);
  border-radius: 4px;
  gap: calc(10 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  a.back,
  button.back,
  button[type=button].back,
  input[type=submit].back,
  input[type=reset].back,
  input[type=button].back {
    font-size: 2.4rem;
    height: 8.2rem;
    gap: 1rem;
  }
}
a.line,
button.line,
button[type=button].line,
input[type=submit].line,
input[type=reset].line,
input[type=button].line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(10 / var(--spSize) * 100vw);
  background-color: #fff;
  border: 2px solid var(--clr-main);
  color: var(--clr-main);
  border-radius: 100px;
  line-height: calc(51 / var(--spSize) * 100vw);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (768px <= width) {
  a.line,
  button.line,
  button[type=button].line,
  input[type=submit].line,
  input[type=reset].line,
  input[type=button].line {
    gap: 1rem;
    line-height: 5.1rem;
    font-size: 1.6rem;
  }
}
a.line.green,
button.line.green,
button[type=button].line.green,
input[type=submit].line.green,
input[type=reset].line.green,
input[type=button].line.green {
  border-color: var(--clr-green);
  color: var(--clr-green);
}

.select {
  position: relative;
}
.select::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 8px 4px;
  border-style: solid;
  border-color: #333 transparent transparent;
  display: block;
  position: absolute;
  right: calc(20 / var(--spSize) * 100vw);
  top: calc(50% - 4px);
  pointer-events: none;
}
@media (768px <= width) {
  .select::after {
    right: 20px;
  }
}
.select:has(select[disabled])::after {
  border-top-color: #777;
}

select {
  padding: 10px 30px 10px 10px;
  border: none;
  width: 100%;
}
@media (768px <= width) {
  select {
    padding: 0 50px 0 15px;
    height: 60px;
  }
}
select[disabled] {
  color: #999;
  background-color: var(--clr-lightYellow3);
}

.incheckbox {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 30px;
}
.incheckbox label:has(input[type=checkbox]) {
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
}
.incheckbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  position: relative;
  background-color: #fff;
  outline: none;
}
.incheckbox input[type=checkbox]:checked {
  background-color: var(--clr-blue);
}
.incheckbox input[type=checkbox]:checked::before {
  content: "";
  background: url(../images/common/icon_check.webp) center/contain no-repeat;
  background-image: -webkit-image-set(url(../images/common/icon_check.webp) 1x, url(../images/common/icon_check@2x.webp) 2x);
  background-image: image-set(url(../images/common/icon_check.webp) 1x, url(../images/common/icon_check@2x.webp) 2x);
  width: 12px;
  height: 7px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1;
}

h1 {
  font-size: 3.2rem;
}
@media (768px <= width) {
  h1 {
    font-size: 5.4rem;
  }
}

h2 {
  font-size: 2.4rem;
}
@media (768px <= width) {
  h2 {
    font-size: 3.2rem;
  }
}

h3 {
  font-size: 1.8rem;
}
@media (768px <= width) {
  h3 {
    font-size: 2.4rem;
  }
}

h4 {
  font-size: 1.6rem;
}
@media (768px <= width) {
  h4 {
    font-size: 1.8rem;
  }
}

.heading {
  position: relative;
  text-align: center;
  padding-bottom: calc(12 / var(--spSize) * 100vw);
  line-height: 1.44;
  margin-bottom: calc(24 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .heading {
    padding-bottom: 1.7rem;
    margin-bottom: 3.2rem;
  }
}
.heading::after {
  content: "";
  width: calc(65 / var(--spSize) * 100vw);
  height: calc(3 / var(--spSize) * 100vw);
  background-color: var(--clr-main);
  position: absolute;
  left: calc(50% - 32.5 / var(--spSize) * 100vw);
  bottom: 0;
  border-radius: 100px;
}
@media (768px <= width) {
  .heading::after {
    width: 6.7rem;
    height: 0.5rem;
    left: calc(50% - 3.35rem);
  }
}
.heading.green::after {
  background-color: var(--clr-green);
}

.subhead {
  margin-bottom: calc(18 / var(--spSize) * 100vw);
  text-align: center;
}
@media (768px <= width) {
  .subhead {
    margin-bottom: 2.4rem;
  }
}

[class^=icon] {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.icon-tel {
  background: url(../images/common/icon-tel.svg) center/contain no-repeat;
  width: calc(34 / var(--spSize) * 100vw);
  height: calc(26 / var(--spSize) * 100vw);
}
.icon-tel.orange {
  background-image: url(../images/common/icon-tel-orange.svg);
}
@media (768px <= width) {
  .icon-tel {
    width: 3.4rem;
    height: 2.6rem;
  }
}

.icon-mail {
  background: url(../images/common/icon-mail.svg) center/contain no-repeat;
  width: calc(34 / var(--spSize) * 100vw);
  height: calc(26 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .icon-mail {
    width: 3.4rem;
    height: 2.6rem;
  }
}

.icon-link {
  background: url(../images/common/icon-link.svg) center/contain no-repeat;
  width: calc(17 / var(--spSize) * 100vw);
  height: calc(17 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .icon-link {
    width: 1.7rem;
    height: 1.7rem;
  }
}

.icon-next {
  background: url(../images/common/icon-navlink.svg) center/contain no-repeat;
  width: calc(15 / var(--spSize) * 100vw);
  height: calc(15 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .icon-next {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.icon-next.green {
  background-image: url(../images/common/icon-navlink-green.svg);
}

.icon-prev {
  background: url(../images/common/icon-prev.svg) center/contain no-repeat;
  width: calc(15 / var(--spSize) * 100vw);
  height: calc(15 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .icon-prev {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.icon-down {
  background: url() center/contain no-repeat;
  width: calc(15 / var(--spSize) * 100vw);
  height: calc(15 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .icon-down {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.icon-down.orange {
  background-image: url(../images/common/icon-down-orange.svg);
}

.icon-search {
  background: url(../images/common/icon-search.svg) center/contain no-repeat;
  width: calc(17.58 / var(--spSize) * 100vw);
  height: calc(17.58 / var(--spSize) * 100vw);
}
.icon-search.white {
  background-image: url(../images/common/icon-search-white.svg);
}
@media (768px <= width) {
  .icon-search {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.icon-search.white {
  background-image: url(../images/common/icon-search-white.svg);
}

.icon-firstLink,
.icon-prevLink,
.icon-nextLink,
.icon-lastLink {
  width: calc(27 / var(--spSize) * 100vw);
  height: calc(27 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .icon-firstLink,
  .icon-prevLink,
  .icon-nextLink,
  .icon-lastLink {
    width: 2.7rem;
    height: 2.7rem;
  }
}

.icon-firstLink {
  background: url(../images/common/icon_firstLink.svg) center/contain no-repeat;
}

.icon-prevLink {
  background: url(../images/common/icon_prevLink.svg) center/contain no-repeat;
}

.icon-nextLink {
  background: url(../images/common/icon_nextLink.svg) center/contain no-repeat;
}

.icon-lastLink {
  background: url(../images/common/icon_lastLink.svg) center/contain no-repeat;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: calc(24 / var(--spSize) * 100vw);
  gap: 1.6rem;
}
@media (768px <= width) {
  .wp-pagenavi {
    margin-top: 4.8rem;
  }
}
.wp-pagenavi span.current,
.wp-pagenavi .page {
  width: 3.4rem;
  height: 3.2rem;
  border: 1px solid var(--clr-main);
  border-radius: 100%;
  color: var(--clr-main);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-content: center;
}
@media (hover: hover) and (width >= 768px) {
  .wp-pagenavi .page {
    transition: all var(--ani);
  }
  .wp-pagenavi .page:hover {
    background-color: var(--clr-lightYellow2);
  }
}
.wp-pagenavi span.current {
  background-color: var(--clr-main);
  color: #fff;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-content: center;
}
.wp-pagenavi .previouspostslink i,
.wp-pagenavi .nextpostslink i {
  width: 2.7rem;
  height: 2.7rem;
}
.wp-pagenavi .previouspostslink {
  margin-right: 1rem;
}
.wp-pagenavi .nextpostslink {
  margin-left: 1rem;
}

.carlist {
  margin-top: calc(24 / var(--spSize) * 100vw);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 calc(8 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .carlist {
    width: 100%;
    margin-top: 1.6rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 1.6rem;
  }
}
.carlist:not(.current) {
  display: none;
}
.carlist__item {
  display: block;
  border: 1px solid var(--clr-line);
  background-color: #fff;
  padding: calc(8 / var(--spSize) * 100vw);
  font-size: 1rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 10;
}
.carlist__item:nth-child(n+3) {
  margin-top: calc(8 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .carlist__item:nth-child(n+3) {
    margin-top: 0;
  }
}
@media (768px <= width) {
  .carlist__item {
    padding: 1.2rem;
    font-size: 1.2rem;
    position: relative;
  }
  .carlist__item:nth-child(n+5) {
    margin-top: 1.6rem;
  }
}
@media (hover: hover) and (width >= 768px) {
  .carlist__item::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 2px solid var(--clr-main);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--ani);
  }
  .carlist__item:hover::after {
    opacity: 1;
  }
}
.carlist__item .item__tenpo {
  background-color: var(--clr-main);
  color: #fff;
  font-weight: 700;
  padding: calc(2.5 / var(--spSize) * 100vw) calc(3 / var(--spSize) * 100vw);
  border-radius: calc(1.4 / var(--spSize) * 100vw);
  display: inline-block;
}
@media (768px <= width) {
  .carlist__item .item__tenpo {
    padding: 0.4rem 0.5rem;
    border-radius: 0.4rem;
    font-size: 1.2rem;
  }
}
.carlist__item .item__img {
  margin-top: calc(5.63 / var(--spSize) * 100vw);
  background-color: #f0f0f0;
}
@media (768px <= width) {
  .carlist__item .item__img {
    margin-top: 0.8rem;
  }
}
.carlist__item .item__img img {
  width: 100%;
  aspect-ratio: 150/112;
  -o-object-fit: cover;
     object-fit: cover;
}
.carlist__item .item__name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 144%;
  text-align: center;
  padding: 1rem 0;
  align-self: center;
}
.carlist__item .item__name span {
  display: inline-block;
}
@media (768px <= width) {
  .carlist__item .item__name {
    font-size: 2rem;
    padding: 1rem 0;
  }
}
.carlist__item .item__sougaku {
  text-align: center;
}
.carlist__item .item__sougaku .strong {
  font-size: 2.532rem;
  font-weight: 700;
  line-height: 1;
  color: var(--clr-strong);
}
@media (768px <= width) {
  .carlist__item .item__sougaku .strong {
    font-size: 3.6rem;
  }
}
.carlist__item .item__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(2.81 / var(--spSize) * 100vw);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: calc(5 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .carlist__item .item__more {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
}

.pagenavi {
  margin-top: calc(24 / var(--spSize) * 100vw);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}
@media (768px <= width) {
  .pagenavi {
    margin-top: 3.2rem;
  }
}
.pagenavi .page {
  width: calc(34 / var(--spSize) * 100vw);
  height: calc(34 / var(--spSize) * 100vw);
  border-radius: 100%;
  display: grid;
  place-content: center;
  border: 1px solid var(--clr-main);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 144%;
  color: var(--clr-main);
}
@media (768px <= width) {
  .pagenavi .page {
    width: 3.4rem;
    height: 3.4rem;
  }
}
.pagenavi .page.current {
  background: var(--clr-main);
  color: #fff;
}

body#privacypolicy .contents {
  padding: 0 calc(30 / var(--spSize) * 100vw) calc(200 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  body#privacypolicy .contents {
    padding: 0 0 200px;
  }
  body#privacypolicy .contents > * {
    max-width: 1100px;
  }
}
body#privacypolicy .headline {
  background-color: var(--clr-blue);
  color: #fff;
  font-size: 2.8rem;
  font-family: var(--ff-shippori);
  line-height: 1.8;
  padding-left: calc(45 / var(--spSize) * 100vw);
  position: relative;
}
@media (768px <= width) {
  body#privacypolicy .headline {
    font-size: 3.2rem;
    padding-left: 45px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
body#privacypolicy .headline::before {
  content: "";
  position: absolute;
  left: calc(20 / var(--spSize) * 100vw);
  top: calc(15 / var(--spSize) * 100vw);
  bottom: calc(15 / var(--spSize) * 100vw);
  width: calc(5 / var(--spSize) * 100vw);
  background-color: #fff;
}
@media (768px <= width) {
  body#privacypolicy .headline::before {
    left: 20px;
    top: 15px;
    bottom: 15px;
    width: 5px;
  }
}
@media (768px <= width) {
  body#privacypolicy .headline + * {
    margin-top: 40px;
  }
}
body#privacypolicy .heading {
  border: 1px dotted var(--clr-lightYellow3);
  border-width: 1px 0;
  padding: calc(14 / var(--spSize) * 100vw) 0;
  font-size: 2rem;
  font-family: var(--ff-shippori);
  line-height: 1.8;
}
@media (768px <= width) {
  body#privacypolicy .heading {
    padding: 14px 0;
    font-size: 2.4rem;
  }
}
* + body#privacypolicy .heading {
  margin-top: calc(80 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  * + body#privacypolicy .heading {
    margin-top: 80px;
  }
}
body#privacypolicy .text p {
  color: #666;
  line-height: 1.8;
}
@media (768px <= width) {
  body#privacypolicy .text p {
    font-size: 2rem;
  }
}
.headline + body#privacypolicy .text {
  margin-top: calc(40 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .headline + body#privacypolicy .text {
    margin-top: 40px;
  }
}
* + body#privacypolicy .text {
  margin-top: calc(30 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  * + body#privacypolicy .text {
    margin-top: 30px;
  }
}
body#privacypolicy ol.numberdot li,
body#privacypolicy ul.dot li {
  color: #666;
  line-height: 1.8;
}
@media (768px <= width) {
  body#privacypolicy ol.numberdot li,
  body#privacypolicy ul.dot li {
    font-size: 2rem;
  }
}
* + body#privacypolicy ol.numberdot,
* + body#privacypolicy ul.dot {
  margin-top: calc(30 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  * + body#privacypolicy ol.numberdot,
  * + body#privacypolicy ul.dot {
    margin-top: 30px;
  }
}