@charset "UTF-8";
/* マップ型変数breakpointsを定義 */
/* メディアクエリ用のmixinを定義。デフォ値はmd */
/* ====================================================
// common - 共通
==================================================== */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  line-height: 1.7;
  color: #000;
  height: 100%;
  margin: 0 auto;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  body {
    /*     この中をカスタムできる */
    font-size: 4vw;
  }
}

a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  a:hover {
    /*     この中をカスタムできる */
    opacity: 1;
  }
}

.btn {
  position: relative;
  filter: drop-shadow(0 0.7rem 1rem rgba(0, 0, 0, 0.3));
}

.btn a {
  transition: filter 0.3s;
}

.btn a:hover {
  opacity: 1;
  filter: brightness(1.1);
}

.is-pc {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .is-pc {
    /*     この中をカスタムできる */
    display: none;
  }
}

.is-sp {
  display: none;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .is-sp {
    /*     この中をカスタムできる */
    display: block;
  }
}

.container {
  min-width: 120rem;
  overflow: hidden;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .container {
    /*     この中をカスタムできる */
    min-width: 320px;
  }
}

.inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .inner {
    /*     この中をカスタムできる */
    padding: 0 3vw;
  }
}

.section {
  padding: 8rem 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section {
    /*     この中をカスタムできる */
    padding: 12vw 0;
  }
}

.section__title {
  font-family: "Shippori Mincho", serif;
  font-size: 3.4rem;
  padding: 0.2rem 0;
  margin-bottom: 6rem;
  color: #134420;
  border-bottom: 0.1rem dashed #134420;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section__title {
    /*     この中をカスタムできる */
    font-size: 6vw;
    padding: 1vw 0;
    margin-bottom: 8vw;
  }
}

.section__title .large {
  font-size: 5rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section__title .large {
    /*     この中をカスタムできる */
    font-size: 9vw;
  }
}

.red {
  color: #a6272d;
}

.orange {
  color: #ff4500;
}

.bold {
  font-weight: bold;
}

.yellow {
  color: yellow;
}

.marker {
  background: linear-gradient(transparent 68%, #c4ddd7 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0 0 0;
}

.marker-or {
  background: linear-gradient(transparent 68%, rgba(232, 83, 49, 0.2509803922) 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0 0 0;
}

.grey {
  background-color: #efefef;
}

.shadow {
  box-shadow: 0 0 1rem rgba(117, 117, 117, 0.45);
}

.center {
  text-align: center;
}

.box {
  background-color: #fff;
  border: 0.3rem solid #000;
  border-radius: 2rem;
  padding: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .box {
    /*     この中をカスタムできる */
    padding: 6vw;
    border-radius: 5vw;
    border: 0.5vw solid #000;
  }
}

.cream {
  background-color: #fcf8d4;
}

.nomb {
  margin-bottom: 0 !important;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .nomb {
    /*     この中をカスタムできる */
    margin-bottom: 0 !important;
  }
}

.waves {
  position: relative;
  width: 100%;
  height: 10rem;
  margin-bottom: -11rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .waves {
    /*     この中をカスタムできる */
    height: 20vw;
    margin-bottom: -18vw;
  }
}

.center {
  text-align: center;
}

.yureru-s {
  animation: yureru-s 2s infinite;
}

@keyframes yureru-s {
  0% {
    transform: translate(2px, 0px);
  }
  5% {
    transform: translate(-2px, 0px);
  }
  10% {
    transform: translate(2px, 0px);
  }
  15% {
    transform: translate(-2px, 0px);
  }
  20% {
    transform: translate(2px, 0px);
  }
  25% {
    transform: translate(-2px, 0px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
/* ====================================================
// top - トップ
==================================================== */
.top {
  background-color: #fff;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .top {
    /*     この中をカスタムできる */
    box-shadow: 0 1vw 1rem rgba(0, 0, 0, 0.079);
  }
}

.top__inner {
  padding: 1rem 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .top__inner {
    /*     この中をカスタムできる */
    padding: 2vw 0;
  }
}

.top__text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .top__text {
    /*     この中をカスタムできる */
    font-size: 3vw;
    margin-bottom: 2vw;
  }
}

.top__img {
  width: 14rem;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .top__img {
    /*     この中をカスタムできる */
    width: 30%;
  }
}

/* ====================================================
// header - ヘッダー
==================================================== */
.header {
  width: 100%;
  position: fixed;
  z-index: 999;
  transition: all 0.3s;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .header {
    /*     この中をカスタムできる */
    min-width: 100%;
    height: 23.5vw;
  }
}

.header__inner {
  width: 100%;
  height: 100%;
  padding: 0 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fafafa;
  background-image: linear-gradient(#fafafa, #eee);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .header__inner {
    /*     この中をカスタムできる */
    background-image: none;
    background-color: transparent;
  }
}

.header__logo {
  flex-basis: 13rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .header__logo {
    /*     この中をカスタムできる */
    flex-basis: 30%;
    margin-top: 1vw;
  }
}

.header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1 0 0;
}

.headerNav {
  display: flex;
  align-items: center;
  flex: 1 0 0;
  margin-right: 2%;
  width: 100%;
  height: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .headerNav {
    /*     この中をカスタムできる */
    display: block;
    margin-right: 0;
    padding: 24vw 3vw 0vw;
  }
}

.headerNav__items {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .headerNav__items {
    /*     この中をカスタムできる */
    display: block;
    height: auto;
    margin-bottom: 20vw;
  }
}

.headerNav__item {
  height: 100%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .headerNav__item {
    /*     この中をカスタムできる */
    height: auto;
    margin-bottom: 10vw;
  }
}

.headerNav__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  padding: 0 2rem;
  border-left: 1px solid #fbfbfb;
  border-right: 1px solid #e1e1e1;
  transition: all 0.3s;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .headerNav__item a {
    /*     この中をカスタムできる */
    font-size: 4.25vw;
    border: none;
  }
}

.headerNav__item a:hover {
  background-color: #eee;
}

.headerNav__item:first-of-type a {
  border-left: none;
}

.headerNav__item:last-of-type a {
  border-right: none;
}

.header__btn {
  flex-basis: 23%;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.2));
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .header__btn {
    /*     この中をカスタムできる */
    width: 80%;
    margin: 0 auto;
    filter: drop-shadow(0 0.7rem 1rem rgba(0, 0, 0, 0.3));
  }
}

@media screen and (min-width: 1600px) {
  .header__btn {
    flex-basis: 17%;
    filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.2));
  }
}
.headerNav__desc {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .headerNav__desc {
    /*     この中をカスタムできる */
    margin-bottom: 3vw;
    text-align: center;
    font-weight: bold;
  }
}

.drawerBtn {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerBtn {
    /*     この中をカスタムできる */
    position: relative;
    width: 12vw;
    height: 12vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    z-index: 99;
    border-radius: 50%;
    top: -20vw;
  }
}

.drawerBtn i {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerBtn i {
    /*     この中をカスタムできる */
    width: 6vw;
    height: 0.6vw;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    background-color: #000;
    transition: all 0.3s;
  }
}

.drawerBtn__line-top {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerBtn__line-top {
    /*     この中をカスタムできる */
    transform: rotate(0) translateY(-2vw);
  }
}

.drawerBtn.is-checked .drawerBtn__line-top {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerBtn.is-checked .drawerBtn__line-top {
    /*     この中をカスタムできる */
    transform: rotate(-45deg) translateY(0);
  }
}

.drawerBtn.is-checked .drawerBtn__line-middle {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerBtn.is-checked .drawerBtn__line-middle {
    /*     この中をカスタムできる */
    background: transparent;
  }
}

.drawerBtn__line-bottom {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerBtn__line-bottom {
    /*     この中をカスタムできる */
    transform: rotate(0) translateY(2vw);
  }
}

.drawerBtn.is-checked .drawerBtn__line-bottom {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerBtn.is-checked .drawerBtn__line-bottom {
    /*     この中をカスタムできる */
    transform: rotate(45deg) translateY(0);
  }
}

.drawerBg {
  display: none;
  position: fixed;
  z-index: 39;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  transition: all 0.5s ease 0s;
}
.drawerBg.is-checked {
  display: block;
}

.drawerContent {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerContent {
    /*     この中をカスタムできる */
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translateY(-150%);
    z-index: 40;
    width: 100%;
    height: 100%;
    background: #e0e6e5;
    transition: all 0.5s ease 0s;
  }
  .drawerContent.is-checked {
    transform: translateY(0);
  }
}

/* ====================================================
// firstView - ファーストビュー
==================================================== */
.firstView {
  margin-top: 14.8rem;
  background-color: #f9fff6;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .firstView {
    /*     この中をカスタムできる */
    margin-top: 23.4vw;
    background: none;
  }
}

.firstView__inner {
  max-width: 110rem;
  margin: 0 auto;
  position: relative;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .firstView__inner {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

.firstView__btn {
  width: 44.2rem;
  position: absolute;
  left: 0;
  bottom: 3rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .firstView__btn {
    /*     この中をカスタムできる */
    width: 85%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6vw;
  }
}

/* ====================================================
// works - 作品紹介
==================================================== */
.works__content__title {
  margin-bottom: 4rem;
  font-size: 2rem;
  font-family: "Shippori Mincho", serif;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .works__content__title {
    /*     この中をカスタムできる */
    margin-bottom: 8vw;
    font-size: 4.5vw;
  }
}

.works__content__img {
  width: 60%;
  margin: 0 auto 4rem;
  box-shadow: 0 0 3rem #c8c8c8;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .works__content__img {
    /*     この中をカスタムできる */
    margin-bottom: 8vw;
    box-shadow: 0 0 5vw #c8c8c8;
  }
}

.works__content__text {
  text-align: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .works__content__text {
    /*     この中をカスタムできる */
    text-align: left;
  }
}

.works__content {
  margin-bottom: 10rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .works__content {
    /*     この中をカスタムできる */
    margin-bottom: 16vw;
  }
}

.works__contents__desc {
  text-align: right;
}

/* ====================================================
// about - リフランとは
==================================================== */
.about {
  background-image: url(../img/bg4.jpg);
  background-size: cover;
  background-position: center center;
}

.about__text {
  margin-bottom: 6rem;
}

.prof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .prof {
    /*     この中をカスタムできる */
    display: block;
  }
}

.prof__img {
  width: 30%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .prof__img {
    /*     この中をカスタムできる */
    width: 70%;
    margin: 0 auto 4vw;
  }
}

.prof__text {
  width: 68%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .prof__text {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

.prof .name {
  font-size: 2.4rem;
  font-family: "Shippori Mincho", serif;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .prof .name {
    /*     この中をカスタムできる */
    font-size: 6vw;
    text-align: center;
    margin-bottom: 1vw;
  }
}

/* ====================================================
// answer - クイズの答え
==================================================== */
.answer__inner {
  padding: 2.3rem 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .answer__inner {
    /*     この中をカスタムできる */
    padding: 4.5vw 0;
  }
}

.answer__text {
  text-align: center;
  font-size: 2.4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .answer__text {
    /*     この中をカスタムできる */
    font-size: 4.5vw;
  }
}

/* ====================================================
// worry - チラシやPOPを作りたいけど
==================================================== */
.worry {
  background-color: #5a645c;
  padding: 8rem 0;
  position: relative;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry {
    /*     この中をカスタムできる */
    padding: 14vw 0;
  }
}

.worry::after {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3rem 2.8rem 0;
  border-color: #5a645c transparent transparent transparent;
  z-index: 20;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry::after {
    /*     この中をカスタムできる */
    bottom: -4vw;
    border-width: 4vw 4vw 0;
  }
}

.worry__title {
  width: 90%;
  margin: 0 auto 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry__title {
    /*     この中をカスタムできる */
    width: 90%;
    margin-bottom: 8vw;
  }
}

.worry__img {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry__img {
    /*     この中をカスタムできる */
    margin: 0 auto;
    width: 90%;
  }
}

/* ====================================================
// ok - そんなあなたにおすすめなのは
==================================================== */
.ok {
  padding: 12rem 0 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .ok {
    /*     この中をカスタムできる */
    padding: 18vw 0 14vw;
  }
}

.ok__img {
  width: 70%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .ok__img {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

/* ====================================================
// feature - 3つの特徴
==================================================== */
.feature {
  background-image: url(../img/bg3.jpg);
  background-size: cover;
  background-position: center;
}

.feature__title {
  background-color: #6e8576;
}

.featureContent:not(:last-child) {
  margin-bottom: 10rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .featureContent:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 16vw;
  }
}

.featureContent__head {
  display: flex;
  justify-content: center;
  gap: 2%;
  align-items: center;
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .featureContent__head {
    /*     この中をカスタムできる */
    display: block;
    margin-bottom: 4vw;
  }
}

.featureNumber {
  flex-basis: 16%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .featureNumber {
    /*     この中をカスタムできる */
    width: 30%;
    margin: 0 auto 4vw;
  }
}

.featureContent__title {
  flex-basis: 53%;
  font-size: 3rem;
  font-family: "Shippori Mincho", serif;
  color: #134420;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .featureContent__title {
    /*     この中をカスタムできる */
    font-size: 5.5vw;
    text-align: center;
  }
}

.featureContent:nth-child(2) .featureContent__title {
  flex-basis: 46%;
}

.featureContent:nth-child(3) .featureContent__title {
  flex-basis: 40%;
}

.featureContent__wrap {
  display: flex;
  align-items: center;
  gap: 3%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .featureContent__wrap {
    /*     この中をカスタムできる */
    display: block;
  }
}

.featureContent__wrap.-re {
  flex-direction: row-reverse;
}

.featureContent__img {
  flex-basis: 38%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .featureContent__img {
    /*     この中をカスタムできる */
    margin-bottom: 4vw;
  }
}

.featureContent__text {
  flex: 1 0 0;
}

/* ====================================================
// work - 制作実例
==================================================== */
.work__title {
  background-color: #a99d8f;
}

.work__img {
  width: 90%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .work__img {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

.work__img:not(:last-child) {
  margin-bottom: 10rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .work__img:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 16vw;
  }
}

/* ====================================================
// price - 料金
==================================================== */
.campaign {
  background-image: url(../img/bg4.jpg);
  margin-bottom: 4rem;
  padding: 8rem 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .campaign {
    /*     この中をカスタムできる */
    margin-bottom: 8vw;
    padding: 12vw 3vw;
  }
}

.campaign__inner {
  padding: 6rem;
  border: 0.1rem solid #c78a03;
  position: relative;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .campaign__inner {
    /*     この中をカスタムできる */
    padding: 10vw 4vw;
    border: 0.2vw solid #c78a03;
  }
}

.campaign__title {
  width: 36%;
  margin: 0 auto 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .campaign__title {
    /*     この中をカスタムできる */
    width: 50%;
    margin-bottom: 6vw;
  }
}

.campaign__inner::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 0.1rem solid #c78a03;
  position: absolute;
  top: 1rem;
  left: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .campaign__inner::after {
    /*     この中をカスタムできる */
    top: 1vw;
    left: 1vw;
    border: 0.2vw solid #c78a03;
  }
}

.campaign__catch {
  font-size: 3rem;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .campaign__catch {
    /*     この中をカスタムできる */
    font-size: 5.5vw;
    margin-bottom: 8vw;
  }
}

.campaign__catch .large {
  font-size: 4.6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .campaign__catch .large {
    /*     この中をカスタムできる */
    font-size: 8vw;
  }
}

.campaign__text a {
  color: #006fbe;
  text-decoration: underline;
  position: relative;
  z-index: 2;
}

.price__title {
  background-color: #b0b4b7;
  margin-bottom: 0;
}

.price__content {
  margin-bottom: 6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .price__content {
    /*     この中をカスタムできる */
    margin-bottom: 10vw;
  }
}

.price__table {
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  border-collapse: collapse;
  color: #134420;
  margin: 0 auto;
  width: 90%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .price__table {
    /*     この中をカスタムできる */
    font-size: 5vw;
  }
}

.price__table .small {
  font-size: 1.6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .price__table .small {
    /*     この中をカスタムできる */
    font-size: 3.75vw;
  }
}

.price__table th,
.price__table td {
  border: 0.1rem solid rgb(151, 151, 151);
  padding: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .price__table th,
  .price__table td {
    /*     この中をカスタムできる */
    padding: 3vw;
    display: block;
    text-align: center;
  }
}

.price__table th {
  background-color: #6e8576;
  vertical-align: middle;
}

.price__subTitle {
  font-size: 2.4rem;
  color: #134420;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .price__subTitle {
    /*     この中をカスタムできる */
    font-size: 6vw;
    margin-bottom: 4vw;
  }
}

.price__desc {
  text-align: center;
  font-size: 1.6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .price__desc {
    /*     この中をカスタムできる */
    font-size: 3.75vw;
    text-align: left;
  }
}

/* ====================================================
// flow - 制作の流れ
==================================================== */
.flow {
  background-color: #f2f4f3;
}

.flow__title {
  background-color: #6e8576;
}

.flow__contents {
  margin-bottom: 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flow__contents {
    /*     この中をカスタムできる */
    margin-bottom: 16vw;
  }
}

.flowContent:not(:last-child) {
  margin-bottom: 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flowContent:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 14vw;
  }
}

.flowContent__step {
  width: 8%;
  margin: 0 auto 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flowContent__step {
    /*     この中をカスタムできる */
    margin-bottom: 4vw;
    width: 16%;
  }
}

.flowContent__title {
  color: #134420;
  font-family: "Shippori Mincho", serif;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flowContent__title {
    /*     この中をカスタムできる */
    font-size: 5.5vw;
    margin-bottom: 4vw;
  }
}

.flowContent__icon {
  width: 10%;
  margin: 0 auto 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flowContent__icon {
    /*     この中をカスタムできる */
    width: 20%;
    margin-bottom: 4vw;
  }
}

.flowContent__text {
  text-align: center;
}

.flowContent__text a {
  color: #006fbe;
  text-decoration: underline;
}

.flow__desc {
  font-size: 1.6rem;
  padding: 3rem;
  border: 0.1rem solid #a9a9a9;
  width: 90%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flow__desc {
    /*     この中をカスタムできる */
    font-size: 3.75vw;
    padding: 6vw;
    width: 100%;
  }
}

/* ====================================================
// cta
==================================================== */
.cta {
  background-image: url(../img/bg1.jpg);
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta {
    /*     この中をカスタムできる */
    padding: 14vw 0;
  }
}

.cta__inner {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8rem 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta__inner {
    /*     この中をカスタムできる */
    width: 95%;
    padding: 14vw 3vw;
  }
}

.cta__catch {
  width: 55%;
  margin: 0 auto 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta__catch {
    /*     この中をカスタムできる */
    width: 100%;
    margin-bottom: 8vw;
  }
}

.cta__btn {
  width: 44.2rem;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta__btn {
    /*     この中をカスタムできる */
    width: 90%;
  }
}

/* ====================================================
// contact - お問い合わせ
==================================================== */
.contact {
  background-color: #f9fff6;
  margin-top: 14.8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact {
    /*     この中をカスタムできる */
    margin-top: 23.4vw;
  }
}

h2.contact__title {
  margin-bottom: 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  h2.contact__title {
    /*     この中をカスタムできる */
    margin-bottom: 8vw;
  }
}

.contact__desc {
  margin-bottom: 6rem;
  color: #134420;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact__desc {
    /*     この中をカスタムできる */
    margin-bottom: 6vw;
  }
}

.contact__inner {
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 3rem #dddddd;
  border-radius: 2rem;
  padding: 6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact__inner {
    /*     この中をカスタムできる */
    padding: 6vw;
    margin: 0 3vw;
  }
}

.contact .small {
  font-size: 1.4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact .small {
    /*     この中をカスタムできる */
    font-size: 3.5vw;
  }
}

form {
  width: 80%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  form {
    /*     この中をカスタムできる */
    width: 100%;
    font-size: 1.6rem;
  }
}

input,
textarea {
  padding: 1rem 1.6rem;
  font-size: 1.6rem;
  border: 0.1rem solid rgb(193, 193, 193);
  border-radius: 0.4rem;
}

.mb1 {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .mb1 {
    /*     この中をカスタムできる */
    margin-bottom: 1rem;
  }
}

.contact__item {
  display: flex;
  gap: 3%;
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact__item {
    /*     この中をカスタムできる */
    display: block;
    margin-bottom: 4vw;
  }
}

.contact__title {
  flex-basis: 30%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact__title {
    /*     この中をカスタムできる */
    margin-bottom: 2vw;
  }
}

.contact__input {
  flex: 1 0 0;
}

.contact__input input {
  width: 100%;
}

textarea {
  width: 100%;
}

input[type=email] {
  width: 100%;
  margin-bottom: 1rem;
}

input[type=radio] {
  width: 2.2rem;
  height: 2.2rem;
  border: 0.1rem solid rgb(193, 193, 193);
  display: inline-block;
  margin-right: 1rem;
  margin-top: 0;
  cursor: pointer;
}

label {
  cursor: pointer;
  border: 0.1rem solid rgb(193, 193, 193);
  border-radius: 0.4rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.require {
  position: relative;
}

.require::after {
  content: "必須";
  display: inline-block;
  background-color: #a6272d;
  border-radius: 0.4rem;
  font-weight: 500;
  font-size: 1.4rem;
  padding: 0 0.4rem;
  color: #fff;
}

::-moz-placeholder {
  color: rgb(151, 151, 151);
}

::placeholder {
  color: rgb(151, 151, 151);
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: rgb(151, 151, 151);
}

/* IE対応 */
:-ms-input-placeholder {
  color: rgb(151, 151, 151);
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input[type=submit] {
  font-size: 1.8rem;
  display: block;
  cursor: pointer;
  border: none;
  background-color: #29b600;
  font-weight: bold;
  width: 90%;
  margin: 0 auto;
  padding: 2rem 0;
  transition: opacity 0.3s;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  input[type=submit] {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

input[type=submit]:hover {
  opacity: 0.7;
}

.contact__input.harf input {
  width: 50%;
}

.contact__input.tri input {
  width: 30%;
}

/* ====================================================
// float - フロートボタン
==================================================== */
.float {
  position: relative;
  z-index: 99;
  display: none;
}

/* ====================================================
// footer - フッター
==================================================== */
.footer {
  padding: 4rem 0;
  text-align: center;
  font-size: 1.4rem;
  background-color: #6e8576;
  color: #fff;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .footer {
    /*     この中をカスタムできる */
    font-size: 3vw;
    padding: 4vw 0;
  }
}

.footer__links {
  display: flex;
  gap: 1rem;
  margin: 0 auto 3rem;
  justify-content: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .footer__links {
    /*     この中をカスタムできる */
    flex-direction: column;
    row-gap: 1vw;
    margin-bottom: 4vw;
    font-size: 3.5vw;
  }
}

.footer__logo {
  width: 10%;
  margin: 0 auto 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .footer__logo {
    /*     この中をカスタムできる */
    width: 30%;
    margin-bottom: 2vw;
  }
}

.privacy {
  margin-top: 14.8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .privacy {
    /*     この中をカスタムできる */
    margin-top: 23.4vw;
  }
}

/* ====================================================
// 特商法
==================================================== */
.tokusyoho {
  margin-top: 14.8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .tokusyoho {
    /*     この中をカスタムできる */
    margin-top: 23.4vw;
  }
}

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

.tokusyoho__table th,
.tokusyoho__table td {
  border: 0.1rem solid #a9a9a9;
  padding: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .tokusyoho__table th,
  .tokusyoho__table td {
    /*     この中をカスタムできる */
  }
}

.tokusyoho__table th {
  background-color: #edeff0;
  width: 30%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .tokusyoho__table th {
    /*     この中をカスタムできる */
    width: 36%;
  }
}/*# sourceMappingURL=style.css.map */