/* 240801 */

@charset "utf-8";

html { overflow: auto; }
body { overflow: hidden; }

html {
  overflow-y: scroll;
}

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

body {
  font-family: sans-serif;
  line-height: 1.618;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

h1,h2,h3,h4,h5,h6,p,ul,ol {
  margin: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: bold;
  line-height: 1.41;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

p:not(:last-child),ul,ol {
  margin-bottom: 1em;
}

@media(max-width: 768px) {
  p br {
    display: none;
  }
}

img {
  max-width: 100%;              /* 1 */
  height: auto;                 /* 1 */
  vertical-align: middle;       /* 2 */
  font-style: italic;           /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover;       /* 4 */
  shape-margin: 0.75rem;        /* 5 */
}

img{
    /* PCの右クリック禁止 */
    pointer-events: none;

    /* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

@media print {
    body { display: none }
}

strong {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* Safariで文字が太らないようにする */

_::-webkit-full-page-media, _:future, :root body {
  -webkit-font-smoothing: antialiased;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
    -webkit-font-smoothing: antialiased;
  }
}

/* 文字色
======================================================================= */

body {
  color: #514d49;
}

/* リンク */

a,
a:hover {
  color: #7d7a75;
  text-decoration: underline;
}

a:hover, 
a:focus {
  text-decoration: none;
}

a:active {
  color: #7d7a75;
  text-decoration: none;
}

a:hover > img {
  opacity: .9;
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */

.pc { display: block; }
.sp { display: none; }

@media(max-width: 768px) {
  .pc { display: none; }
  .sp { display: block; }
}

/* =======================================================================
  レイアウト
======================================================================= */

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
}

/* バック横幅いっぱい */

body .l-wide {
  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

/* 間隔 */

.l-margin {
  margin: 40px auto;
}

.l-padding {
  padding: 40px;
}

.l-padding-s {
  padding: 1.5em;
}

.l-padding > .l-margin:first-child {
  margin-top: 0;
}
.l-padding > .l-margin:last-child {
  margin-bottom: 0;
}

/* 二段組 */

.l-columns-2 {
  columns: 2;
  column-gap: 20px;
}

.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* 三段組 */

.l-columns-3 {
  columns: 3;
  column-gap: 20px;
}

.l-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 画像の大きさ */

.l-max-width-90 { max-width: 90%; }
.l-max-width-80 { max-width: 80%; }
.l-max-width-70 { max-width: 70%; }
.l-max-width-60 { max-width: 60%; }
.l-max-width-50 { max-width: 50%; }
.l-max-width-40 { max-width: 40%; }
.l-max-width-30 { max-width: 30%; }
.l-max-width-20 { max-width: 20%; }
.l-max-width-10 { max-width: 10%; }

/* 文字揃え */

.l-txt-center,
p.l-txt-center {
  text-align: center;
}

.l-txt-right,
p.l-txt-right {
  text-align: right;
}

.l-txt-left,
p.l-txt-left {
  text-align: left;
}

@media(max-width: 599px) {
  .l-width {
    padding: 0 20px;
  }
  .l-margin {
    margin: 20px auto;
  }
  .l-padding {
    padding: 20px;
  }
  .l-columns-2,
  .l-columns-3 {
    margin: 2em 0;
    columns: 1;
    column-gap: 0;
  }
  .l-grid-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    justify-items: center;
  }
  .l-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-items: center;
  }

  /* 画像の大きさ */

  .l-sp-max-width-90 { max-width: 90%; }
  .l-sp-max-width-80 { max-width: 80%; }
  .l-sp-max-width-70 { max-width: 70%; }
  .l-sp-max-width-60 { max-width: 60%; }
  .l-sp-max-width-50 { max-width: 50%; }
  .l-sp-max-width-40 { max-width: 40%; }
  .l-sp-max-width-30 { max-width: 30%; }
  .l-sp-max-width-20 { max-width: 20%; }
  .l-sp-max-width-10 { max-width: 10%; }
}

/* =======================================================================
  ヘッダー(共通)
======================================================================= */

.header {
  background: #e5e3e4 url("img/header-bg.jpg") no-repeat center top;
  background-size: cover;
  padding-top: 140px;
  margin-bottom: 20px;
  position: relative;
}

.header__inner {
  display: flex;
  margin: 0 auto;
  padding: 15px;
}

.header__logo {
  position: absolute;
  top: 20%;
  left: 52%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.header__logo img {
  width: 90%;
}

/*ボタン*/

.header__button {
  position: fixed;
  top: 0;
  right: 0;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  width: 80px;
  height: 80px;

  border: none;
  background-color: transparent;
  z-index: 2;
}


/*ハンバーガーアイコン*/

.header__button span {
  display: block;
  position: relative;
  top: 0;
  margin: 0 auto;

  width: 30px;
  height: 3px;

  background-color: #514d49;
  transition: .3s ease;
}

.header__button span::before,
.header__button span::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  transition: all .3s;
  background-color: inherit;
}

.header__button span::before {
  top: -9px;
}

.header__button span::after {
  top: 9px;
}


/*ナビゲーション*/

.header__ul {
  list-style-type: none;
  margin: 0;
  padding: 0;

  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(000, 000, 000, .8);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  font-size: 1.33em;
  transition: .3s ease;

  transform: translateX(100%);
  z-index: 1;
}

body.open .header__ul {
  transform: translateX(0);
}

.header__ul a {
  color: #fff;
  text-decoration: none;
}

.header__li:nth-child(n+2) {
  margin-top: 2em;
}


/*open*/

body.open .header__button {
  z-index: 2;
}

body.open .header__button span,
body.open .header__button span {
  width: 30px;
  background-color: transparent;
}

body.open .header__button span::before,
body.open .header__button span::after {
  top: 0;
  background-color: #fff;
}

body.open .header__button span::before {
  transform: rotate(45deg);
}

body.open .header__button span::after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .header {
  }

  .header__inner {
    background-color: rgba(81, 77, 73, .8);
  }

  .header__logo {
  }

  .header__logo img {
    width: 100%;
  }

  .header__button {
    display: none;
  }

  .header__ul {
    position: static;
    flex-direction: row;

    width: auto;
    height: auto;
    background-color: transparent;

    transform: none;
  }

  .header__ul a {
    color: #fff;
    font-size: 16px;
    display: flex;
  }

  .header__li:nth-child(n+2) {
    margin-top: 0;
    margin-left: 3em;
  }
}

@media screen and (min-width: 599px) {
  .header {
    margin-bottom: 40px;
    padding-top: 280px;
  }

  .header__logo {
    top: 25%;
    left: 50%;
  }

  .header__logo img {
    width: 100%;
  }
}

/* --------------------------------------------------
  Home
-------------------------------------------------- */

.title__h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  border-left: 4px solid #cf93a5;
  padding-left: .6em;
}

@media(max-width: 599px) {
  .title__h2 {
    font-size: 21px;
    margin-bottom: 20px;
  }
}

/* --------------------------------------------------
  Introduction
-------------------------------------------------- */

.introduction__h3 {
  font-size: 21px;
  font-weight: 700;
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid #7d7a75;
}

@media(max-width: 599px) {
  .introduction__h3 {
    font-size: 18px;
 }
}

/* --------------------------------------------------
  Works
-------------------------------------------------- */

.works__item {
  background-color: #f7f5f0;
  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

.works__ul {
  margin: 0 auto;
  padding: 0;
  list-style-type: none;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px;
}

.works__ul li img {
  display: block;
  width: 100%;
}

.works__cat {
  background-color: #7d7a75;
  color: #fff;
  display: inline-block;
  margin: 0;
  padding: .75em;
  line-height: 1;
  font-size: .75em;
  font-weight: 500;
  border-radius: 3px;
}

@media(max-width: 768px) {
  .works__ul {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1em;
    justify-content: center;
  }
}

/* --------------------------------------------------
  Customer Voice
-------------------------------------------------- */

.voc .voc__txt {
  text-align: right;
  padding-right: 40px;
  margin-bottom: 15px;
  position: relative;
}

.voc__txt::after {
  animation: scroll 2s infinite;
  border-bottom: 1px solid #666;
  border-left: 1px solid #666;
  content: "";
  height: 15px;
  margin: auto;
  position: absolute;
  right: 10px;
  top: -10px;
  width: 15px;
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 20px);
  }
  100% {
    opacity: 0;
  }
}

.voc__item {
  background-color: #f2eee6;
  border-radius: 3px;
}

.voc__item:first-of-type {
  margin-top: 0;
}

.voc__item:last-child {
  margin-bottom: 0;
}

.voc__img {
  float: right;
  margin: 0 0 2em 2em;
  width: 130px;
}

p.voc__name-j {
  margin-bottom: 20px;
  letter-spacing: .2em;
  font-size: 18px;
  line-height: 1;
  font-feature-settings: "palt";
  color: ##514d49;
  font-weight: bold;
}

/*スクロール*/

.voc__scroll {
  height: 820px;
  overflow-y: scroll;
}

/* スクロールバーの幅と高さを設定する */
.scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
/* スクロールバーの形を設定する */
.scrollbar-thumb-rounded::-webkit-scrollbar-thumb {
  border-radius: 0.4rem;
}
/* スクロールバーの色を設定する */
.scrollbar-thumb-black::-webkit-scrollbar-thumb {
  --bg-opacity: 1;
  background-color: #ccc;
}

@media(max-width: 768px) {
  .voc__img {
    display: block;
    float: none;
    margin: 0 auto 1em;
    width: 90px;
  }

  p.voc__name-j {
    text-align: center;
    font-size: 16px;
  }

  .voc__scroll {
    height: 460px;
  }
}


/* --------------------------------------------------
  Service
-------------------------------------------------- */

.service {
}

.service__h3 {
  font-size: 21px;
  color: #cd7e9a;
  margin-top: 40px;
  margin-bottom: 20px;
}

/*料金プラン*/

.price {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.price__item {
  background-color: #f2eee6;
  border-radius: 3px;
  margin-bottom: 40px;
}

.price__head-1 {
  font-size: 21px;
  font-weight: bold;
  padding: 20px 40px;
  background-color: #cc708c;
  color: #fff;
  border-radius: 3px 3px 0 0;
}

.price__head-2 {
  font-size: 21px;
  font-weight: bold;
  padding: 20px 40px;
  background-color: #cf93a5;
  color: #fff;
  border-radius: 3px 3px 0 0;
}

.price__inner {
  display: flex;
  padding: 40px;
}

.price__inner
p:not(:last-child), ul, ol {
  margin-bottom: 0;
}

.price__txt {
  text-align: center;
}

.price__txt img {
  width: 100%;
}

.price__inner ul {
  list-style-type: none;
  padding-inline-start: 20px;
}

.price__inner ul li {
  background-color: #8c8984;
  border-radius: 3px;
  padding: 3px 10px;
  color: #fff;
  margin-bottom: 5px;
  text-align: center;
}

.price__inner ul li:last-child {
  margin-bottom: 0;
}

.price__ul {
  margin-top: 10px;
  padding-inline-start: 50px;
}

.price__ul li {
  list-style-type: none;
  position: relative;
  font-size: 18px;
}

.price__ul li:last-child {
  margin-bottom: 0;
}

.price__ul li::before {
  position: absolute;
  top: .25em;
  left: -30px;

  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(img/check-mark-1.png);
  background-size: contain;
  vertical-align: middle;
}

.price__note {
  margin-top: 20px;
  font-size: 14px;
}

@media(max-width: 768px) {
  .service__h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .price {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-items: center;
  }

  .price__item {
    margin-bottom: 20px;
  }

  .price__head-1 {
    font-size: 18px;
    padding: 10px 20px;
  }

  .price__head-2 {
    font-size: 18px;
    padding: 10px 20px;
  }

  .price__inner {
    align-items: center;
    padding: 20px 20px;
  }

  .price__item ul {
  }

  .price__item ul li {
    display: inline-block;
    margin-bottom: 0;
  }

  .price__ul li {
    font-size: 16px;
  }

  .price__note {
    margin-top: 20px;
    font-size: 14px;
  }
}

@media(max-width: 599px) {
  .price__inner {
    justify-content: center;
  }

  .price__item ul {
    padding-inline-start: 20px;
  }

  .price__item ul li {
    display: block;
    margin-bottom: 5px;
  }
}

/*ご依頼から納品までの流れ*/

.flow {
}

.flow__ul {
  padding-left: 20px;
}

.flow__ul li {
  list-style-type: none;
  position: relative;
  padding-left: 60px;
}

.flow__ul li:not(:last-child) {
}

.flow__ul li .flow__num {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #cd7e9a;
  color: #fff;
  position: absolute;
  top: 25px;
  left: 0;
}

.flow__ul li:not(:last-child)::before {
  content: '';
  background: #c3c3c3;
  width: 4px;
  height: 100%;
  position: absolute;
  top: calc(60% - -30px);
  left: 19px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow__ul li dl dt {
  font-size: 21px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.flow__ul li dl dd {
  margin-left: 0;
}

.flow__ul li dl dt img {
  width: 50px;
  margin-right: 10px;
}

.flow__ul li dl {
  background-color: #f7f5f0;
  padding: 20px;
  border-radius: 3px;
}

@media(max-width: 599px) {
  .flow__ul li dl dt {
    font-size: 18px;
  }
}

/*納期*/

.deadline__txt{
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 40px;
}


/*ご用意いただくもの*/

.prepare__ul {
  padding-inline-start: 50px;
}

.prepare__ul li {
  position: relative;
  list-style-type: none;
  font-size: 18px;
  margin-left: -10px;
  margin-bottom: 20px;
}

.prepare__ul li::before {
  position: absolute;
  top: .35em;
  left: -30px;

  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("img/check-mark-1.png");
  background-size: contain;
  vertical-align: middle;
}

.prepare__ul p:not(:last-child) {
  margin-bottom: 5px;
}

@media(max-width: 768px) {
  .deadline__txt{
    font-size: 16px;
    padding-bottom: 20px;
  }

  .prepare__ul li {
    font-size: 16px;
  margin-left: -20px;
    margin-bottom: 10px;
  }

  .prepare__ul li::before {
    left: -20px;

    width: 16px;
    height: 16px;
  }
}

/* --------------------------------------------------
  Profile
-------------------------------------------------- */

.profile {
  background-color: #f7f5f0;
  font-size: 1rem;
  border-radius: 3px;
}

.profile__photo {
  float: right;
  margin: 0 0 2em 2em;
  width: 150px;
}

.profile__photo img {
  border-radius: 50%;
}

.profile__name-j {
  margin-bottom: .5em;
  letter-spacing: .2em;
  font-size: 1.618em;
  line-height: 1;
  font-feature-settings: "palt";

  color: ##514d49;
  font-weight: bold;
}

@media(max-width: 768px) {
  .profile {
    margin: 20px auto;
    padding: 20px;
  }
  .profile__photo {
    display: block;
    float: none;
    margin: 0 auto 1em;
  }
  .profile__name-j {
    text-align: center;
    font-size: 20px;
  }
  .main 
  .profile p {
    font-size: .9em;
  }
}

/* --------------------------------------------------
  Contact
-------------------------------------------------- */
.contact {
  background-color: #f7f5f0;
  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

.form__inner {
  margin-bottom: 1.1em;
}

.main .form__inner p {
  font-size: 16px;
  margin-bottom: 3px;
}

.contact input[type="text"] {
  display: block;
  padding: 1em;
  width: 50%;
  border-width: 1px;
  border-style: solid;
  border-color: #aaa;
  border-radius: 2px;
  background-color: #fff;
  color: #666;
  font-size: 16px;
  font-family: FontAwesome;
}

.contact input[type="email"] {
  display: block;
  padding: 1em;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: #aaa;
  border-radius: 2px;
  background-color: #fff;
  color: #666;
  font-size: 16px;
  font-family: FontAwesome;
}

.contact textarea {
  display: block;
  padding: 1em;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: #aaa;
  border-radius: 2px;
  background-color: #fff;
  color: #666;
  font-size: 16px;
  font-family: FontAwesome;
}

.form__btn {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.form__btn button {
  width: 70%;
  margin: 0 auto;
  border-radius : 3px;
  font-size: 16pt;
  text-align: center;
  cursor: pointer;
  padding-top: 18px;
  padding-bottom: 18px;
  background: #cf93a5;
  color: #fff;
  line-height: 1em;
  transition: .3s;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
  border: 2px solid #cf93a5;
}

.form__btn button:hover {
  box-shadow: none;
  color: #cf93a5;
  background: #fff;
}

.require {
  font-size: 13px;
  font-weight: 400;
  color: #b3122d;
}

.error {
  font-size: 16px;
  font-weight: 400;
  color: #b3122d;
}

@media(max-width: 768px) {
  .main .form__inner p {
    font-size: 15px;
    margin-bottom: 3px;
  }

  .contact input[type="text"] {
    width: 100%;
    margin: 0 auto 1.3em;
    font-size: 13px;
  }

  .contact input[type="email"] {
    margin: 0 auto 1.3em;
    font-size: 13px;
  }

  .contact textarea {
    margin: 0 auto 1em;
    font-size: 12px;
  }

  .require {
    font-size: 12px;
  }

  .form__btn {
    margin-top: 20px;
  }

  .form__btn button {
    font-size: 15pt;
    width: 100%;
  }
}


/*Thanks*/

.thanks {
  padding-top: 100px;
  padding-bottom: 100px;
}

.thanks__h1 {
  margin: 60px auto 0;
  width: 50%;
}

.thanks__h2 {
  font-size: 27px;
  text-align: center;
}

.thanks p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

.thanks a {
  text-decoration: none;
}

.thanks__btn {
  background-color:#cf93a5;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  margin-top: 100px;
  font-size: 21px;
  width: 60%;
  margin: 100px auto;
  padding-top: 18px;
  padding-bottom: 18px;
}

@media(max-width: 768px) {
  .thanks {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .thanks__h1 {
    margin: 30px auto 0;
    width: 80%;
  }

  .thanks__h2 {
    font-size: 21px;
  }

  .thanks p {
    font-size: 18px;
    margin-top: 10px;
  }

  .thanks__btn {
    margin-top: 50px;
    font-size: 16px;
    width: 100%;
  }
}

/* --------------------------------------------------
  フッター
-------------------------------------------------- */

.footer {
  margin: 0;
  text-align: center;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
}

.footer__logo {
  width: 15%;
}

.footer__body {
  text-align: right;
}

.footer__nav {
  margin: 1em 0;
}

.footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display:flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.footer__nav ul:last-child {
  margin-bottom: 0;
}

.footer__nav ul li {
  display: inline-block;
  font-size: 15px;
}

.footer__nav ul li:not(:last-child) {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #ccc;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer__copy {
  margin-bottom: 20px;
}

.footer small {
  font-size: 14px;
}

@media(max-width: 768px) {
  .footer {
    padding-bottom: 20px;
  }
  .footer__inner {
    display: block;
  }
  .footer__logo {
    margin: 0 auto;
  }
  .footer__body {
    text-align: center;
  }
  .footer__nav {
    margin: 0 0 1em;
  }
  .footer__nav ul {
    justify-content: center;
    margin-bottom: 10px;
  }
  .footer__copy {
    margin-bottom: 0;
  }
  .footer small {
    font-size: 12px;
  }
}

@media(max-width: 599px) {
  .footer__nav ul li {
    font-size: 10px;
  }
}

/* --------------------------------------------------
  プライバシーポリシー
-------------------------------------------------- */

.privacy__body {
  line-height: 1.618;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.privacy__h1 {
  margin-top: 80px;
  margin-bottom: 40px;
  font-size: 27px;
  display: inline-block;
  border-left: 4px solid #cf93a5;
  padding-left: .6em;
}

.privacy__h2 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 20px;
}

.privacy__ol {
  font-size: 21px;
  font-weight: bold;
  padding-inline-start: 25px;
}

.privacy__ol:last-child {
  margin-bottom: 0;
}

.privacy__ol p {
  font-size: 18px;
  font-weight: normal;
}

.privacy__ul {
  margin-bottom: 20px;
}

.privacy__ul li {
  font-size: 18px;
  font-weight: normal;
}

.privacy__note {
  font-size: 15px;
}

.privacy__footer {
  background-color: #cf93a5;
  padding: 40px 0;
  color: #fff;
}

@media(max-width: 768px) {
  .privacy__h1 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 21px;
  }

  .privacy__h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .privacy__ol {
    font-size: 18px;
    padding-inline-start: 25px;
  }

  .privacy__ol p {
    font-size: 16px;
  }

  .privacy__ul {
    margin-bottom: 10px;
  }

  .privacy__ul li {
    font-size: 16px;
  }

  .privacy__note {
    font-size: 13px;
  }

  .privacy__footer {
    padding: 20px 0;
  }
}

/* =======================================================================
  特定商取引法に基づく表記
======================================================================= */

.law__body {
  line-height: 1.618;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.law__h1 {
  margin-top: 80px;
  font-size: 27px;
  display: inline-block;
  border-left: 4px solid #cf93a5;
  padding-left: .6em;
}

.table {
  table-layout: fixed;
  width: 100%;
}

.table th,
.table td {
  padding: .75em 1em;
  vertical-align: top;
  text-align: left;
}

.table th,
.table td {
  line-height: 1.5;
  border-bottom: 1px solid #ddd;
  word-wrap: break-word;
}

.table tr:first-child {
  line-height: 1.5;
  border-top: 1px solid #ddd;
}

.table tbody th {
  background: #f7f5f0;
  width: 30%;
}

.table ul {
  padding-inline-start: 0;
  list-style-type: none;
}

.wrap {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

.law__footer {
  background-color: #cf93a5;
  padding: 40px 0;
  color: #fff;
}

@media(max-width: 599px) {
  .law__h1 {
    margin-top: 40px;
    font-size: 21px;
  }
  .law__footer {
    padding: 20px 0;
  }
}

/* =======================================================================
  メイン
======================================================================= */

.main {
  padding-bottom: 40px;
}

.main > *:first-child {
  margin-top: 0;
}
.main > *:last-child {
  margin-bottom: 0;
}

.main__img {
  object-fit: cover;
}


@media(max-width: 599px) {
  .main {
    padding-bottom: 20px;
  }
}


/* =======================================================================
  アクセント
======================================================================= */

.a-bold,
p.a-bold {
  font-weight: bold;
}

.a-big,
p.a-big {
  font-size: 21px;
}

.a-big1,
p.a-big1 {
  font-size: 24px;
}

.a-big2,
p.a-big2 {
  font-size: 27px;
}

.a-big3,
p.a-big3 {
  font-size: 30px;
}

@media(max-width: 599px) {
  .a-big,
  p.a-big {
    font-size: 17px;
  }

  .a-big1,
  p.a-big1 {
    font-size: 19px;
  }

  .a-big2,
  p.a-big2 {
    font-size: 21px;
  }

  .a-big3,
  p.a-big3 {
    font-size: 23px;
  }
}

.a-center,
p.a-center {
  text-align: center;
}

.a-marker,
p.a-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #ffea00;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

.a-red,
p.a-red {
  color: #cc2200;
}

.a-underline,
p.a-underline {
  text-decoration: underline;
}

/* 点滅 */

.a-blink {
	animation: blink .8s ease-in-out infinite alternate;
}

@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/* フワフワ */

.a-fuwafuwa {
  animation: 2s fuwafuwa infinite;
}

@keyframes fuwafuwa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

/* 形状 */

.is-shadow {
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.15));
}
.is-shadow:hover {
  filter: none;
}

.is-round {
  border-radius: 9px;
}


/* 

vwの値 = (目標のサイズ(px) / ビューポート幅(px)) × 100
（例）5.6vw = (21px ÷ 375px) × 100

ビューポート375pxの場合

18px = 4.80vw
19px = 5.07vw
20px = 5.33vw
21px = 5.60vw
22px = 5.87vw
23px = 6.13vw
24px = 6.40vw
25px = 6.67vw
26px = 6.93vw
27px = 7.20vw
28px = 7.47vw
29px = 7.73vw
30px = 8.00vw
31px = 8.27vw
32px = 8.53vw
33px = 8.80vw
34px = 9.07vw
35px = 9.33vw
36px = 9.60vw
37px = 9.87vw
38px = 10.13vw
39px = 10.40vw
40px = 10.67vw

*/

/* 
 * LP Template
 * © Motokazu Yoshida Design
 */