@charset "UTF-8";
/* --------
color
-------- */
/* --------
レイアウト幅
---------- */
/* --------
フォント
---------- */
/*1番最初に読み込む */
/* ------------
ボタン
------------- */
/* メインボタン 丸ボタン */
.btn-circle {
  text-align: center;
  display: flex;
  justify-content: flex-end;
  margin-top: 100px;
  padding-right: 14px;
}
@media screen and (max-width: 767px) {
  .btn-circle {
    margin-top: 40px;
  }
}
.btn-circle a {
  display: inline-block;
  position: relative;
  padding: 1em 80px 1em 0em;
  color: #5E2F2A;
  font-size: 16px;
  font-weight: normal;
  transition: 0.3s;
  text-decoration: none;
  /* before:丸 */
  /* after:矢印 */
}
@media screen and (max-width: 870px) {
  .btn-circle a {
    padding: 1em 65px 1em 0em;
    font-size: 14px;
  }
}
.btn-circle a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border: 3px solid #aaaaaa;
  border-radius: 50vh;
  background: #FFFDFA;
  border: 1px solid #FFBE98;
  transition: none;
}
@media screen and (max-width: 870px) {
  .btn-circle a::before {
    width: 46px;
    height: 46px;
  }
}
.btn-circle a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 31px;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 1px solid #5E2F2A;
  border-right: 1px solid #5E2F2A;
  transition: 0.3s;
}
@media screen and (max-width: 870px) {
  .btn-circle a::after {
    right: 23px;
  }
}
.btn-circle a:hover::before {
  background: rgb(255, 190, 152);
  background: linear-gradient(90deg, rgb(255, 190, 152) 0%, rgb(251, 222, 215) 100%);
}
.btn-circle a:hover::after {
  border-top: 1px solid #FFFBF9;
  border-right: 1px solid #FFFBF9;
}

/*worksと実績詳細ページの丸ボタンは中央に配置 */
.graphic .btn-circle, .work .btn-circle {
  margin-top: 140px;
  text-align: center;
  padding-right: 1px;
  justify-content: center;
}

/*ページ内リンク 下矢印ボタン */
.page__link {
  display: flex;
  justify-content: center;
  gap: 100px;
  align-items: center;
  margin: 0 auto;
  margin-top: 95px;
}
@media screen and (max-width: 767px) {
  .page__link {
    display: block;
    margin-top: 60px;
    padding-right: 4vw;
    padding-left: 28vw;
  }
}
.page__link-btn {
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .page__link .page__item {
    display: block;
    width: 40%;
    text-align: left;
    margin-right: 10px;
    margin-left: auto; /* 右寄せ */
  }
}
@media screen and (max-width: 560px) {
  .page__link .page__item {
    width: 60%;
  }
}
.page__link .page__item a {
  padding-left: 8px;
  color: #5E2F2A;
  text-decoration: none;
  transition: 0.3s;
}
.page__link .page__item a:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .page__link .page__item a {
    width: 100%;
    margin-bottom: 38px;
    font-size: 15px;
  }
}
.page__link .page__item a:before { /* before：下線 */
  position: absolute;
  visibility: hidden; /* ホバー前は非表示 */
  content: "";
  width: 130%;
  height: 1px;
  bottom: -8px;
  left: 0;
  border-radius: 3px;
  background: #FFBE98;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .page__link .page__item a:before {
    position: absolute;
    visibility: visible;
    content: "";
    width: 100%;
    height: 1px;
    bottom: -8px;
    left: 0;
    border-radius: 3px;
    background: #FFBE98;
    opacity: 1;
    transition: 0.3s;
  }
}
.page__link .page__item a:after { /* before：矢印 */
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 1px #FFBE98;
  border-right: solid 1px #FFBE98;
  transform: rotate(135deg);
  right: -18px;
  top: 10%;
  margin: auto;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .page__link .page__item a:after {
    right: 10px;
  }
}
.page__link .page__item a:hover:before {
  visibility: visible; /* ホバー前は非表示 */
  bottom: -10px;
  opacity: 1;
  transition: 0.3s;
}
.page__link .page__item a:hover:after {
  bottom: -1px;
  opacity: 1;
  transition: 0.3s;
}

.message__btn {
  text-align: left;
}

/* サービスページで使用 矢印ボタン */
.btn-arrow {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.btn-arrow a {
  color: #5E2F2A;
  text-decoration: none;
  transition: 0.3s;
}
.btn-arrow:before {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 1px #FFBE98;
  border-right: solid 1px #FFBE98;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
.btn-arrow:hover {
  color: #FFBE98;
}

/*問い合わせフォームへのリンクボタン */
.contact .btn__area {
  display: block;
  text-align: center;
  margin-bottom: 36px;
}
.contact .btn__area .contact-btn {
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 195px;
  height: 36px;
  box-sizing: border-box;
  margin-top: 36px;
  border-radius: 10px;
  border: 2px solid #FFE9D8;
  background: #FFFBF9;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact .btn__area .contact-btn {
    height: 44px;
    border: 1px solid #FFBE98;
    font-size: 15px;
  }
}
.contact .btn__area .contact-btn .contact__img {
  width: 16px;
  height: auto;
}
.contact .btn__area .contact-btn:hover {
  border-radius: 10px;
  border: 1px solid #FFBE98;
  opacity: 1;
}

/*問い合わせフォームの送信ボタン */
.inquire .btn__area {
  display: block;
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .inquire .btn__area {
    margin-bottom: 0;
  }
}
.inquire .btn__area .submit-btn {
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 147px;
  height: 36px;
  box-sizing: border-box;
  margin-top: 80px;
  border-radius: 10px;
  border: 1px solid #FFE9D8;
  background: #FFFBF9;
  color: #5E2F2A;
  font-family: "fot-tsukuardgothic-std", sans-serif, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 15px;
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  .inquire .btn__area .submit-btn {
    margin-top: 40px;
    height: 44px;
  }
}
.inquire .btn__area .submit-btn .send__img {
  width: 17px;
  height: auto;
}
.inquire .btn__area .submit-btn:hover {
  border-radius: 10px;
  border: 1px solid #FFBE98;
}

/*2個以上のボタンの配置 */
.btn__container {
  display: flex;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .btn__container {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .btn__container .btn-circle {
    margin-top: 25px;
  }
}

/* ------------
cssリセット
------------- */
html {
  scroll-behavior: smooth;
}

/*利用するタグによってこちらの内容は増やす*/
html,
body,
h1,
h2,
h3,
p,
dl,
dt,
dd,
ul,
li {
  margin: 0;
  padding: 0;
  line-height: 1;
  /*デフォルトの文字色、font-familyを予め当てておく*/
  color: #5E2F2A;
  font-family: "fot-tsukuardgothic-std", sans-serif, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-feature-settings: "palt";
}

h2, h3 {
  font-weight: normal;
}

a {
  color: #5E2F2A;
  font-family: "fot-tsukuardgothic-std", sans-serif, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  /*下線を消す*/
  text-decoration: none;
  /*色を消す*/
  color: inherit;
  transition: 0.3s;
}

a:hover {
  opacity: 0.5;
}

ul {
  /*左の「・」を消す*/
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  border: none;
}

/* 汎用クラス */
.spOnly {
  display: none;
}

@media screen and (max-width: 767px) {
  .spOnly {
    display: block;
  }
  .pcOnly {
    display: none;
  }
}
/* ------------
全ページ共通のcss
// ------------- */
body {
  display: none;
}

.spOnly {
  display: none;
}
@media screen and (max-width: 767px) {
  .spOnly {
    display: block;
  }
}

/*グラデーション背景 */
body {
  background-image: url("../images/gradient_background_pc.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  body {
    background-image: url("../images/gradient_background_sp.webp");
  }
}

/*下層ページのメインビジュアル */
.mainvisual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 23rem;
}
@media screen and (max-width: 1000px) {
  .mainvisual {
    margin-top: 63px;
    height: 15rem;
  }
}
.mainvisual img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainvisual__title {
  position: absolute;
  display: inline-block;
  text-align: center;
}
.mainvisual__title-ja {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .mainvisual__title-ja {
    font-size: 12px;
  }
}
.mainvisual__title-en {
  font-size: 32px;
  font-family: "Julius Sans One", sans-serif;
}
@media screen and (max-width: 870px) {
  .mainvisual__title-en {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__title-en {
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .mainvisual__title {
    align-items: center;
  }
}

/*横線付きの見出し */
.section__title {
  position: relative;
  display: inline-block;
  margin-bottom: 73px;
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  .section__title {
    margin-bottom: 41px;
    padding-left: 30px;
  }
}
.section__title-ja {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .section__title-ja {
    margin-bottom: 5px;
    font-size: 12px;
  }
}
.section__title-en {
  font-size: 42px;
  font-family: "Julius Sans One", sans-serif;
}
@media screen and (max-width: 767px) {
  .section__title-en {
    font-size: 24px;
  }
}
.section__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60%;
  display: inline-block;
  width: 48px;
  height: 1px;
  background: #5E2F2A;
}
@media screen and (max-width: 767px) {
  .section__title::before {
    width: 17px;
  }
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

.slick-dots {
  position: absolute;
  bottom: -50px;
  display: block;
  width: 90%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .slick-dots {
    width: 85%;
    bottom: -30px;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 50px;
}

.slick-dots li button {
  opacity: 0;
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 150px;
  height: 3px;
  margin: 0;
  cursor: pointer;
  background: #FFE9D8;
}
@media screen and (max-width: 870px) {
  .slick-dots li {
    width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .slick-dots li {
    width: 70px;
  }
}
.slick-dots li:first-child {
  border-radius: 10px 0 0 10px;
}
.slick-dots li:last-child {
  border-radius: 0 10px 10px 0;
}

.slick-dots .slick-active {
  background: #FFBE98;
  cursor: pointer;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev:before,
.slick-next:before {
  content: "";
  opacity: 1;
}

.slick-prev,
.slick-next {
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2px solid #5E2F2A; /*矢印の色*/
  border-right: 2px solid #5E2F2A; /*矢印の色*/
  position: absolute; /*絶対配置にする*/
}

.slick-prev {
  /*戻る矢印*/
  z-index: 1; /*レイヤーの重なり順*/
  transform: translateY(-50%) rotate(-135deg); /*translateY(-50%)基準点が上下中央になる*/
}

.slick-next {
  /*次へ矢印*/
  transform: translateY(-50%) rotate(45deg);
}

/*各ページ下部にあるcontactセクション */
.section__title-contact {
  line-height: 1.5;
}
.section__title-contact .ja {
  display: block;
  font-size: 16px;
  letter-spacing: 0.2em;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .section__title-contact .ja {
    font-size: 16px;
  }
}
.section__title-contact .en {
  font-size: 32px;
  font-family: "Julius Sans One", sans-serif;
}
@media screen and (max-width: 870px) {
  .section__title-contact .en {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .section__title-contact .en {
    font-size: 24px;
  }
}

.contact {
  padding-top: 287px;
  padding-bottom: 132px;
  background: linear-gradient(0deg, rgb(255, 219, 196) 0%, rgba(255, 219, 196, 0) 100%);
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 300px;
  }
}
.contact__inner {
  display: block;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}
.contact .btn-rectangle {
  margin-top: 36px;
}
.contact__text {
  padding: 0 10px;
  line-height: 1.7;
}
@media screen and (max-width: 870px) {
  .contact__text {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 14px;
  }
}

/*fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translate3d(0px, 30px, 0px);
  }
  to {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
  transition: opacity 1000ms ease, transform 1000ms ease;
}

/*ベース */
/* --------
ヘッダー
-------- */
.header {
  top: 0px;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  padding: 0 5%;
  background-color: #FFF7EF;
}
@media screen and (max-width: 1000px) {
  .header__inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 63px;
    z-index: 5;
  }
}
.header__logo img {
  width: 230px;
}
@media screen and (max-width: 1000px) {
  .header__logo img {
    width: 140px;
    position: relative;
    z-index: 99;
  }
}
.header__nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .header__nav {
    display: none;
  }
}
.header__list {
  display: flex;
  align-items: center;
  margin: 0;
}
.header__item {
  padding-left: 36px;
  text-align: center;
}
.header__item a {
  display: block;
  margin: 0 auto;
  color: #522A28;
  padding: 8px 10px 8px 10px;
  line-height: 1.5;
  text-decoration: none;
}
.header .header__item-logo {
  opacity: 0;
}
.header__title-ja {
  font-size: 11px;
  display: block;
}
.header__title {
  font-size: 18px;
  font-family: "Julius Sans One", sans-serif;
}
.header__sns {
  width: 24px;
}
.header__sns img {
  width: 100%;
}

.menu_btn {
  /*はじめは非表示に*/
  display: none;
  /*ボタンの位置*/
  position: fixed;
  top: 17px;
  right: 24px;
  z-index: 999;
  /*ボタンの形状*/
  cursor: pointer;
  width: 32px;
  height: 17px;
  transition: all 1s;
}
.menu_btn span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #5E2F2A;
  transition: all 0.4s;
}
.menu_btn span:nth-of-type(1) {
  top: 0px;
}
.menu_btn span:nth-of-type(2) {
  top: 8px;
}
.menu_btn span:nth-of-type(3) {
  bottom: 0px;
}
@media screen and (max-width: 1000px) {
  .menu_btn {
    display: block;
    top: 18px;
    right: 20px;
  }
}

.menu_btn::after {
  content: "MENU";
  position: absolute;
  left: -1px;
  bottom: -18px;
  font-size: 11px;
  font-family: "Julius Sans One", sans-serif;
  letter-spacing: 1.5;
}

.menu_btn.active::after {
  content: "CLOSE";
  left: -2px;
  font-size: 11px;
  font-family: "Julius Sans One", sans-serif;
  letter-spacing: 1.5;
}

.menu_btn.active span:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu_btn.active span:nth-of-type(2) {
  opacity: 0;
}
.menu_btn.active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
  margin-top: 10px;
  margin-right: 5px;
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*.doneクラスがついたヘッダー*/
/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.done.panelactive {
  opacity: 1; /*不透明にして出現*/
  top: 0;
  left: 0;
  background: #5E2F2A;
}

/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.done .header__nav {
  /*固定位置にして最背面に*/
  position: fixed;
  top: -120%;
  right: 0;
  display: block;
  text-align: center;
  transition: 0.7s;
}

#header.done.panelactive .header__nav {
  top: 0;
  right: 0;
  width: 284px;
  height: 500px;
  padding-top: 70px;
  padding-bottom: 52px;
  opacity: 1;
  visibility: visible;
  z-index: 3;
  background: rgba(255, 229, 213, 0.9);
  border-radius: 0px 0px 20px 20px;
  transition: 0.7s;
}
@media screen and (max-width: 1000px) {
  #header.done.panelactive .header__nav {
    width: 100%;
    height: 100vh;
    padding-top: 130px;
  }
}
#header.done.panelactive .header__nav ul {
  display: block;
}
#header.done.panelactive .header__nav li {
  padding: 0;
  margin-bottom: 10px;
}
#header.done.panelactive .header__nav .header__item-logo {
  opacity: 1;
  margin-bottom: 40px;
}
#header.done.panelactive .header__nav .header__item-logo img {
  width: 96px;
}
@media screen and (max-width: 1000px) {
  #header.done.panelactive .header__nav .header__item-logo {
    display: none;
  }
}
#header.done.panelactive .header__nav br {
  display: none;
}
#header.done.panelactive .header__nav a .header__title {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 18px;
  font-family: "Julius Sans One", sans-serif;
  transition: all 0.3s;
}
#header.done.panelactive .header__nav a .header__title-ja {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  transition: all 0.3s;
}

#header .header__nav.is-slideup {
  top: -120% !important;
}

/* --------
フッター
-------- */
.footer {
  top: 0px;
}
@media screen and (max-width: 1000px) {
  .footer {
    padding-top: 40px;
    text-align: center;
    background-color: #FFDBC4;
    padding-bottom: 26px;
  }
}
.footer a:hover {
  opacity: 0.5;
}
.footer__inner {
  align-items: center;
  height: 162px;
  padding: 0 5%;
  background: linear-gradient(#FFDBC4, #FFD1B6);
}
@media screen and (max-width: 1000px) {
  .footer__inner {
    height: 650px;
    background: none;
  }
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 34px;
}
@media screen and (max-width: 1000px) {
  .footer__container {
    display: block;
    padding-top: 0;
  }
}
@media screen and (max-width: 1000px) {
  .footer__logo {
    margin-bottom: 54px;
  }
}
.footer__logo img {
  width: 200px;
}
@media screen and (max-width: 1000px) {
  .footer__logo img {
    width: 101px;
  }
}
.footer__list {
  display: flex;
  align-items: center;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .footer__list {
    display: block;
  }
}
.footer__item {
  padding-left: 36px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .footer__item {
    padding-left: 0;
    margin-bottom: 20px;
  }
}
.footer__item a {
  line-height: 1.5;
}
.footer__title-ja {
  font-size: 11px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1000px) {
  .footer__title-ja {
    font-size: 10px;
  }
}
.footer__title {
  font-size: 18px;
  font-family: "Julius Sans One", sans-serif;
}
@media screen and (max-width: 1000px) {
  .footer__title {
    font-size: 18px;
  }
}
.footer__sns {
  display: block;
  width: 24px;
}
@media screen and (max-width: 1000px) {
  .footer__sns {
    margin: 0 auto;
    padding-top: 18px;
  }
}
.footer__copy {
  font-size: 13px;
}

/*メイン */
/* ------------
Thanksページ
------------- */
.thanksPage .menu_btn {
  display: block;
  margin-top: 18px;
}
@media screen and (max-width: 1000px) {
  .thanksPage .menu_btn {
    margin-top: 0;
  }
}

.confirm {
  padding-top: 138px;
  max-width: 1080px;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .confirm {
    padding-right: 4.26vw;
    padding-left: 4.26vw;
  }
}
.confirm__title {
  font-size: 25px;
  font-family: "Julius Sans One", sans-serif;
  color: #DAA180;
}
@media screen and (max-width: 767px) {
  .confirm__title {
    font-size: 17px;
  }
}
.confirm__img {
  padding-top: 30px;
  width: 6%;
  margin: 0 auto;
}
.confirm__img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .confirm__img {
    width: 20%;
  }
}
.confirm__message {
  margin-top: 26px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .confirm__message {
    font-size: 14px;
    line-height: 1.5;
  }
}
.confirm .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 92px;
  margin-bottom: 138px;
}
@media screen and (max-width: 767px) {
  .confirm .sns {
    display: block;
    text-align: center;
  }
}
.confirm .sns .sns__img {
  position: relative;
  margin-right: 25px;
  width: 24px;
}
.confirm .sns .sns__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 25px;
  height: 1px;
  transform: rotate(-40deg);
  background-color: #FFBE98;
}
@media screen and (max-width: 767px) {
  .confirm .sns .sns__img::before {
    display: none;
  }
}
.confirm .sns .sns__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 25px;
  height: 1px;
  transform: rotate(40deg);
  background-color: #FFBE98;
}
@media screen and (max-width: 767px) {
  .confirm .sns .sns__img::after {
    display: none;
  }
}
.confirm .sns .sns__img:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .confirm .sns .sns__img {
    display: block;
    margin: 0 auto;
  }
}
.confirm .sns .sns__img img {
  width: 100%;
}
.confirm .sns__message {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .confirm .sns__message {
    font-size: 14px;
    margin-top: 15px;
  }
}

.gradientBackground {
  width: 100%;
  height: 150px;
  background: linear-gradient(0deg, rgb(255, 219, 196) 0%, rgba(255, 219, 196, 0) 100%);
}

/* ------------
contact ページ
------------- */
.inquire {
  padding: 135px 0;
}
@media screen and (max-width: 767px) {
  .inquire {
    margin-top: 40px;
  }
}
.inquire__inner {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 66px;
}
@media screen and (max-width: 767px) {
  .inquire__inner {
    padding-right: 4.26vw;
    padding-left: 4.26vw;
  }
}
.inquire__title {
  margin-bottom: 34px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #DAA180;
}
@media screen and (max-width: 767px) {
  .inquire__title {
    margin-bottom: 39px;
    font-size: 16px;
  }
}
.inquire__img {
  width: 21%;
  margin: 0 auto;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .inquire__img {
    width: 40%;
    margin-bottom: 37px;
  }
}
.inquire img {
  width: 100%;
}
.inquire__message {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .inquire__message {
    font-size: 14px;
  }
}
.inquire form {
  width: 100%;
}
.inquire__item {
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
}
.inquire__item label {
  text-align: left;
}
.inquire__item .required {
  color: #DAA180;
}
.inquire__item input {
  margin-top: 12px;
  width: 100%;
  height: 43px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid #FFE9D8;
  background: #FFFBF9;
}
@media screen and (max-width: 767px) {
  .inquire__item input {
    width: 94%;
    font-size: 16px;
  }
}
.inquire__item input:focus {
  outline: none;
  border: 2px solid #FFBE98;
}
.inquire textarea#comment {
  margin-top: 12px;
  padding: 15px;
  width: 100%;
  height: 111px;
  border-radius: 10px;
  border: 1px solid #FFE9D8;
  background: #FFFBF9;
}
@media screen and (max-width: 767px) {
  .inquire textarea#comment {
    width: 90%;
    font-size: 16px;
  }
}
.inquire textarea#comment:focus {
  outline: none;
  border: 2px solid #FFBE98;
}

.gradientBackground {
  width: 100%;
  height: 250px;
  background: linear-gradient(0deg, rgb(255, 219, 196) 0%, rgba(255, 219, 196, 0) 100%);
}

/* -------------------------------
    Serviceページ
---------------------------------- */
.service {
  padding-top: 143px;
}
@media screen and (max-width: 767px) {
  .service {
    padding-bottom: 10px;
  }
}
.service__message {
  padding-left: 10px;
  font-weight: normal;
  line-height: 1.7777777778;
}
@media screen and (max-width: 870px) {
  .service__message {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .service__message {
    padding-left: 25px;
    font-size: 14px;
  }
}
.service__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding-right: 1vw;
  padding-left: 1vw;
}
@media screen and (max-width: 767px) {
  .service__inner {
    padding-right: 4.26vw;
    padding-left: 4.26vw;
  }
}
.service ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .service ul {
    display: block;
  }
}
.service__item {
  width: 33%;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .service__item {
    width: 100%;
    margin-bottom: 140px;
  }
}
.service__number {
  margin-bottom: -20px;
  font-size: 35px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FFBE98;
}
@media screen and (max-width: 767px) {
  .service__number {
    font-size: 30px;
  }
}
.service__img {
  text-align: center;
}
.service__img img {
  width: 76%;
}
.service__body {
  display: block;
  padding: 0 46px;
}
.service__title {
  font-size: 25px;
  margin-top: 28px;
}
@media screen and (max-width: 1000px) {
  .service__title {
    font-size: 19px;
  }
}
@media screen and (max-width: 767px) {
  .service__title {
    font-size: 22px;
  }
}
.service__category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
}
@media screen and (max-width: 870px) {
  .service__category {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .service__category {
    display: flex;
  }
}
.service__label {
  padding: 5px 24px;
  line-height: 1;
  color: #5E2F2A;
  background-color: #FFFBF9;
  border: 1px solid #FFBE98;
  border-radius: 32px;
}
@media screen and (max-width: 870px) {
  .service__label {
    display: block;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 767px) {
  .service__label {
    display: flex;
  }
}
.service__text {
  margin-top: 12px;
  line-height: 1.7;
}
@media screen and (max-width: 870px) {
  .service__text {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .service__text {
    margin-top: 30px;
    font-size: 15px;
    line-height: 1.8666666667;
  }
}
.service .btn-arrow {
  display: inline-block;
  margin-top: 12px;
}
@media screen and (max-width: 870px) {
  .service .btn-arrow {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .service .btn-arrow {
    margin-top: 30px;
  }
}
.service .service__item.offs, .service .offs .service__item {
  opacity: 0;
  transform: translateY(50px);
}
.service .service__item.ons,
.service .ons .service__item {
  transition: all 1s cubic-bezier(0, 0, 0.13, 0.79);
  opacity: 1;
  transform: translateY(0);
}

.flow {
  max-width: 1080px;
  padding-top: 205px;
  margin: 0 auto;
}
.flow .section__title {
  margin-left: 1vw;
}
@media screen and (max-width: 767px) {
  .flow .section__title {
    margin-left: 4.26vw;
  }
}
.flow__slider {
  width: 95%;
  margin-left: auto;
}
.flow__list {
  display: flex;
  list-style-type: none;
  justify-content: space-between;
}
.flow__item {
  width: 213px;
  margin-right: 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .flow__item {
    margin-right: 10px;
  }
}
.flow__number {
  width: 47px;
  padding: 3px 1px 3px 5px;
  line-height: 1;
  border: 1px solid #FFBE98;
  border-radius: 0 32px 32px 0;
  font-size: 11px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #DAA180;
  background-color: #FFFBF9;
}
.flow__img {
  margin: 0 auto;
  text-align: center;
  width: 70%;
}
.flow__img img {
  width: 100%;
}
.flow__body {
  width: 70%;
  margin: 0 auto;
  padding: 13px 17px;
}
@media screen and (max-width: 767px) {
  .flow__body {
    width: 80%;
    padding: 13px 3px;
  }
}
.flow__title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #DAA180;
}
@media screen and (max-width: 767px) {
  .flow__title {
    font-size: 16px;
  }
}
.flow__text {
  padding-top: 13px;
  font-size: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .flow__text {
    font-size: 15px;
  }
}
.flow .slick-dots li {
  width: 300px;
}
.flow .slick-dots li:nth-child(3) {
  display: none;
}
@media screen and (max-width: 1100px) {
  .flow .slick-dots li:nth-child(3) {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .flow .slick-dots li:nth-child(3) {
    display: inline-block;
  }
}
@media screen and (max-width: 1100px) {
  .flow .slick-dots li {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .flow .slick-dots li {
    width: 40px;
  }
}
.flow .slick-dotted.slick-slider {
  margin-bottom: 140px;
}

/* ------------
worksページ
------------- */
/*Webサイト制作*/
.website {
  padding-top: 230px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .website {
    padding-top: 130px;
  }
}
.website__inner {
  max-width: 1080px;
  padding: 0 2vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .website__inner {
    padding: 0;
  }
}
.website .section__title {
  margin-bottom: 0;
  padding-left: 8%;
  font-size: 33px;
  font-weight: bold;
  color: #DAA180;
}
@media screen and (max-width: 767px) {
  .website .section__title {
    padding-left: 11%;
    font-size: 20px;
  }
}
.website .section__title::before {
  display: none;
}
.website__slider {
  margin: 0 auto;
  width: 85%;
  display: flex;
  justify-content: center;
  gap: 69px;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .website__slider {
    margin-top: 30px;
    width: 100%;
  }
}
.website .slick-dots li {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .website .slick-dots li {
    width: 80px;
  }
}
.website__img {
  position: relative;
  border-radius: 10px;
  width: 40%;
  margin: 10px;
}
@media screen and (max-width: 767px) {
  .website__img {
    width: 100%;
    margin: 4px;
  }
}
.website__img img {
  width: 100%;
  border-radius: 10px;
  transform: scale(1);
  filter: blur(0);
  transition: 0.3s ease-in-out;
}
.website__img .mask {
  position: relative;
  border-radius: 10px;
  transition: 0.3s ease-in-out; /*移り変わる速さ*/
  display: block; /*画像をくくるspanタグをブロック要素にする*/
  text-align: center;
  line-height: 0; /*行の高さを0にする*/
  overflow: hidden; /*拡大してはみ出る要素を隠す*/
}
.website__img:hover img {
  border-radius: 10px;
  transform: scale(1.1); /*拡大の値*/
}
.website__img .caption {
  position: absolute;
  margin: 0 auto;
  opacity: 0;
  transition: 0.5s ease-in-out; /*移り変わる速さ*/
  z-index: 3; /*テキストを前面に出す*/
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #5E2F2A;
}
.website__img .caption .title {
  display: inline-block;
  font-size: 20px;
  border-bottom: 2px solid #FFBE98;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 3px;
}
.website__img .caption .subtitle {
  display: block;
  width: 100%;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 15px;
}
.website__img .caption .text {
  font-size: 15px;
  line-height: 1.5;
}
.website__img:hover .caption {
  opacity: 1;
}
.website .website__img:hover .mask::before {
  content: "";
  position: absolute;
  border-radius: 10px;
  z-index: 2;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: rgba(255, 255, 255, 0.7);
}
.website a:hover {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .website__img:hover img {
    transform: none;
  }
  .website__img:hover p.caption {
    opacity: 0;
  }
  .website .website__img:hover .mask::before {
    display: none;
  }
}
/*バナー制作*/
.banner {
  padding-top: 193px;
  margin: 0 auto;
}
.banner__inner {
  max-width: 1080px;
  padding: 0 2vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .banner__inner {
    padding: 0;
  }
}
.banner .section__title {
  margin-bottom: 0;
  padding-left: 8%;
  font-size: 33px;
  font-weight: bold;
  color: #DAA180;
}
@media screen and (max-width: 767px) {
  .banner .section__title {
    font-size: 20px;
    padding-left: 11%;
  }
}
.banner .section__title::before {
  display: none;
}
.banner__slider {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 39px;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .banner__slider {
    margin-top: 30px;
    width: 100%;
  }
}
.banner__img {
  width: 30%;
  margin: 10px;
  position: relative;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .banner__img {
    margin: 4px;
  }
}
.banner__img img {
  width: 100%;
  border-radius: 10px;
  transform: scale(1);
  filter: blur(0);
  transition: 0.3s ease-in-out;
}
.banner__img .mask {
  position: relative;
  border-radius: 10px;
  transition: 0.3s ease-in-out; /*移り変わる速さ*/
  display: block; /*画像をくくるspanタグをブロック要素にする*/
  text-align: center;
  line-height: 0; /*行の高さを0にする*/
  overflow: hidden; /*拡大してはみ出る要素を隠す*/
}
.banner__img:hover img {
  border-radius: 10px;
  transform: scale(1.1); /*拡大の値*/
}
.banner__img .caption {
  position: absolute;
  width: 90%;
  margin: 0 auto;
  opacity: 0;
  transition: 0.5s ease-in-out; /*移り変わる速さ*/
  z-index: 3; /*テキストを前面に出す*/
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #5E2F2A;
  line-height: 1.5;
}
.banner__img .caption .title {
  display: inline-block;
  font-size: 18px;
  border-bottom: 2px solid #FFBE98;
  padding-right: 5px;
  padding-left: 5px;
  padding-bottom: 1px;
}
.banner__img .caption .subtitle {
  display: block;
  width: 100%;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 15px;
}
.banner__img .caption .text {
  font-size: 15px;
}
.banner__img:hover .caption {
  opacity: 1;
}
.banner .banner__img:hover .mask::before {
  content: "";
  position: absolute;
  border-radius: 10px;
  z-index: 2;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: rgba(255, 255, 255, 0.7);
}
.banner a:hover {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .benner__img:hover img {
    transform: none;
  }
  .banner__img:hover p.caption {
    opacity: 0;
  }
  .banner .banner__img:hover .mask::before {
    display: none;
  }
}
/*チラシ・名刺*/
.graphic {
  padding-top: 193px;
  margin: 0 auto;
}
.graphic__inner {
  max-width: 1080px;
  padding: 0 2vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .graphic__inner {
    padding: 0;
  }
}
.graphic .section__title {
  margin-bottom: 0;
  padding-left: 8%;
  font-size: 33px;
  font-weight: bold;
  color: #DAA180;
}
@media screen and (max-width: 767px) {
  .graphic .section__title {
    padding-left: 11%;
    font-size: 20px;
  }
}
.graphic .section__title::before {
  display: none;
}
.graphic__slider {
  width: 90%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: 39px;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .graphic__slider {
    margin-top: 30px;
    width: 100%;
  }
}
.graphic__img {
  position: relative;
  border-radius: 10px;
  width: 30%;
  margin: 10px;
}
@media screen and (max-width: 767px) {
  .graphic__img {
    margin: 4px;
  }
}
.graphic__img img {
  width: 100%;
  border-radius: 10px;
  transform: scale(1);
  filter: blur(0);
  transition: 0.3s ease-in-out;
}
.graphic__img .mask {
  position: relative;
  border-radius: 10px;
  transition: 0.3s ease-in-out; /*移り変わる速さ*/
  display: block; /*画像をくくるspanタグをブロック要素にする*/
  text-align: center;
  line-height: 0; /*行の高さを0にする*/
  overflow: hidden; /*拡大してはみ出る要素を隠す*/
}
.graphic__img:hover img {
  border-radius: 10px;
  transform: scale(1.1); /*拡大の値*/
}
.graphic__img .caption {
  position: absolute;
  width: 90%;
  margin: 0 auto;
  opacity: 0;
  transition: 0.5s ease-in-out; /*移り変わる速さ*/
  z-index: 3; /*テキストを前面に出す*/
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #5E2F2A;
  line-height: 1.5;
}
.graphic__img .caption .title {
  display: inline-block;
  font-size: 18px;
  border-bottom: 2px solid #FFBE98;
  padding-bottom: 1px;
}
.graphic__img .caption .subtitle {
  display: block;
  width: 100%;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 15px;
}
.graphic__img .caption .text {
  font-size: 15px;
}
.graphic__img:hover p.caption {
  opacity: 1;
}
.graphic .graphic__img:hover .mask::before {
  content: "";
  position: absolute;
  border-radius: 10px;
  z-index: 2;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .graphic .work__btn {
    padding-right: 4.26vw;
    padding-left: 4.26vw;
  }
}
.graphic .btn-circle {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .graphic .btn-circle {
    justify-content: end;
    padding-right: 14px;
  }
}
.graphic a:hover {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .graphic__img:hover img {
    transform: none;
  }
  .graphic__img:hover p.caption {
    opacity: 0;
  }
  .graphic .graphic__img:hover .mask::before {
    display: none;
  }
}
/*バナー制作*/
.line {
  padding-top: 193px;
  margin: 0 auto;
}
.line__inner {
  max-width: 1080px;
  padding: 0 2vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .line__inner {
    padding: 0;
  }
}
.line .section__title {
  margin-bottom: 0;
  padding-left: 8%;
  font-size: 33px;
  font-weight: bold;
  color: #DAA180;
}
@media screen and (max-width: 767px) {
  .line .section__title {
    font-size: 20px;
    padding-left: 11%;
  }
}
.line .section__title::before {
  display: none;
}
.line__slider {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 39px;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .line__slider {
    margin-top: 30px;
    width: 100%;
  }
}
.line__img {
  width: 30%;
  margin: 10px;
  position: relative;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .line__img {
    margin: 4px;
  }
}
.line__img img {
  width: 100%;
  border-radius: 10px;
  transform: scale(1);
  filter: blur(0);
  transition: 0.3s ease-in-out;
}
.line__img .mask {
  position: relative;
  border-radius: 10px;
  transition: 0.3s ease-in-out; /*移り変わる速さ*/
  display: block; /*画像をくくるspanタグをブロック要素にする*/
  text-align: center;
  line-height: 0; /*行の高さを0にする*/
  overflow: hidden; /*拡大してはみ出る要素を隠す*/
}
.line__img:hover img {
  border-radius: 10px;
  transform: scale(1.1); /*拡大の値*/
}
.line__img .caption {
  position: absolute;
  width: 90%;
  margin: 0 auto;
  opacity: 0;
  transition: 0.5s ease-in-out; /*移り変わる速さ*/
  z-index: 3; /*テキストを前面に出す*/
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #5E2F2A;
  line-height: 1.5;
}
.line__img .caption .title {
  display: inline-block;
  font-size: 18px;
  border-bottom: 2px solid #FFBE98;
  padding-right: 5px;
  padding-left: 5px;
  padding-bottom: 1px;
}
.line__img .caption .subtitle {
  display: block;
  width: 100%;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 15px;
}
.line__img .caption .text {
  font-size: 15px;
}
.line__img:hover .caption {
  opacity: 1;
}
.line .line__img:hover .mask::before {
  content: "";
  position: absolute;
  border-radius: 10px;
  z-index: 2;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: rgba(255, 255, 255, 0.7);
}
.line a:hover {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .benner__img:hover img {
    transform: none;
  }
  .line__img:hover p.caption {
    opacity: 0;
  }
  .line .line__img:hover .mask::before {
    display: none;
  }
}
/* -----------------------------------
works/下層ページ
-------------------------------------- *
/*制作実績の詳細ページ基本の型 */
.mainvisual__title-work {
  padding: 135px 0 135px s0;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mainvisual__title-work {
    position: absolute;
    top: 30%;
  }
}
.mainvisual__title-work .mainvisual__title-ja {
  display: block;
  margin-bottom: 13px;
  font-size: 17px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .mainvisual__title-work .mainvisual__title-ja {
    font-size: 12px;
  }
}
.mainvisual__title-work .mainvisual__title-en {
  font-size: 32px;
  font-family: "Julius Sans One", sans-serif;
}
@media screen and (max-width: 767px) {
  .mainvisual__title-work .mainvisual__title-en {
    font-size: 24px;
  }
}

.work__img {
  margin: 0 auto;
  width: 45vw;
}
.work__img img {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .work__img {
    display: block;
    width: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .work__img {
    display: block;
    width: 65vw;
  }
}
.work__inner {
  max-width: 1080px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 141px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .work__inner {
    gap: 25px;
    padding-right: 2vw;
    padding-left: 2vw;
  }
}
@media screen and (max-width: 870px) {
  .work__inner {
    gap: 16px;
    padding-right: 2vw;
    padding-left: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .work__inner {
    padding-right: 4.26vw;
    padding-left: 4.26vw;
    display: block;
  }
}
.work__inner .section__title {
  font-size: 32px;
  font-family: "Julius Sans One", sans-serif;
}
@media screen and (max-width: 870px) {
  .work__inner .section__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .work__inner .section__title {
    margin-bottom: 62px;
    font-size: 25px;
  }
}
.work__inner .section__title::before {
  top: 50%;
  background: #FFBE98;
}
.work__detail {
  display: block;
  text-align: left;
  width: 67%;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .work__detail {
    display: block;
    width: 90%;
  }
}
.work__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .work__head {
    display: block;
  }
}
.work__heading {
  display: block;
}
.work__title {
  font-size: 25px;
  font-weight: normal;
  margin: 0;
}
@media screen and (max-width: 870px) {
  .work__title {
    font-size: 19px;
  }
}
.work__lead {
  margin-top: 14px;
  font-size: 18px;
}
@media screen and (max-width: 870px) {
  .work__lead {
    font-size: 15px;
  }
}
.work__category {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .work__category {
    margin-top: 20px;
  }
}
.work__label {
  display: inline-block;
  padding: 6px 24px;
  margin-bottom: 5px;
  color: #5E2F2A;
  background-color: #FFFBF9;
  border: 1px solid #FFBE98;
  border-radius: 32px;
}
@media screen and (max-width: 870px) {
  .work__label {
    font-size: 14px;
    padding: 6px 20px;
  }
}
@media screen and (max-width: 767px) {
  .work__label {
    font-size: 14px;
  }
}
.work__desc {
  padding-top: 48px;
  margin-left: auto;
}
.work__desc dl {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 32px;
}
@media screen and (max-width: 870px) {
  .work__desc dl {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .work__desc dl {
    display: block;
  }
}
.work__desc dl dt {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 107px;
  font-size: 15px;
  padding: 3px 10px;
}
@media screen and (max-width: 870px) {
  .work__desc dl dt {
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .work__desc dl dt {
    width: 100px;
  }
}
.work__desc dl dt::before, .work__desc dl dt::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
}
.work__desc dl dt::before {
  border-left: dotted 1px #FFBE98;
  border-top: dotted 1px #FFBE98;
  border-bottom: dotted 1px #FFBE98;
  top: 0;
  left: 0;
}
.work__desc dl dt::after {
  border-right: dotted 1px #FFBE98;
  border-top: dotted 1px #FFBE98;
  border-bottom: dotted 1px #FFBE98;
  top: 0;
  right: 0;
}
.work__desc dl dt .top {
  display: block;
  text-align: left;
  padding-left: 15px;
}
@media screen and (max-width: 870px) {
  .work__desc dl dt .top {
    padding-left: 10px;
  }
}
.work__desc dl dt .bottom {
  display: block;
  text-align: left;
  padding-left: 15px;
}
@media screen and (max-width: 870px) {
  .work__desc dl dt .bottom {
    padding-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .work__desc dl .multiLine {
    display: flex;
    width: 160px;
  }
}
.work__desc dl dd {
  width: 70%;
  padding-right: 6%;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 870px) {
  .work__desc dl dd {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .work__desc dl dd {
    width: 100%;
    padding: 10px 5px 0 5px;
  }
}
@media screen and (max-width: 767px) {
  .work__desc dl dd a {
    word-break: break-all;
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .work__desc {
    padding-top: 78px;
  }
}
.work .btn-circle a {
  margin-left: auto;
  margin-right: 4vw;
}

/*_websiteの画像配置 */
.img__inner {
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .img__inner {
    padding-right: 4.26vw;
    padding-left: 4.26vw;
    display: block;
  }
}

.detail__img-pc {
  max-width: 1080px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 146px;
}
@media screen and (max-width: 767px) {
  .detail__img-pc {
    justify-content: center;
  }
}
.detail__img-pc img {
  width: 45%;
  border-radius: 10px;
  margin-bottom: 100px;
  box-shadow: 5px 5px 5px -2px #F3EBE5;
}
.detail__img-pc img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .detail__img-pc img {
    width: 100%;
    margin-bottom: 60px;
  }
}

.detail__img-sp {
  max-width: 1080px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.detail__img-sp img {
  width: 28%;
  border-radius: 10px;
  box-shadow: 5px 5px 5px -2px #F3EBE5;
}
.detail__img-sp img img {
  width: 100%;
}

/* ------------------
デザインLatteDesign
------------------- */
/*当サイトのロゴについての説明*/
.logo {
  width: 30%;
  padding-top: 226px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .logo {
    width: 80%;
  }
}
.logo .about__logo {
  display: inline-block;
  padding: 10px;
  border-bottom: 4px dotted #FFBE98;
  font-size: 30px;
  color: #DAA180;
}
@media screen and (max-width: 767px) {
  .logo .about__logo {
    border-bottom: 2px dotted #FFBE98;
    font-size: 20px;
  }
}
.logo__img {
  margin: 0 auto;
  padding-top: 102px;
  width: 71%;
}
@media screen and (max-width: 767px) {
  .logo__img {
    width: 40%;
  }
}
@media screen and (max-width: 560px) {
  .logo__img {
    width: 60%;
  }
}
.logo__img img {
  width: 100%;
}
.logo__desc {
  margin-top: 80px;
  font-size: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .logo__desc {
    font-size: 14px;
  }
}

/* ---------------
ハンバーガーのバナー
------------------ */
.text__container {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 45%;
}
@media screen and (max-width: 767px) {
  .text__container {
    width: 70%;
    text-align: center;
  }
}

.work__text {
  position: relative;
  text-align: center;
  padding: 17px;
  margin-top: 74px;
}
.work__text::before, .work__text::after {
  position: absolute;
  top: 0.8rem;
  height: 1.8rem;
  content: "";
}
.work__text::before {
  border-left: dotted 2px #FFBE98;
  left: 0;
  transform: rotate(-30deg);
}
@media screen and (max-width: 767px) {
  .work__text::before {
    top: 30%;
    transform: rotate(-30deg) translateX(-10px);
  }
}
.work__text::after {
  border-right: dotted 2px #FFBE98;
  right: 0;
  transform: rotate(30deg);
}
@media screen and (max-width: 767px) {
  .work__text::after {
    top: 30%;
    transform: rotate(30deg) translateX(10px);
  }
}
@media screen and (max-width: 767px) {
  .work__text {
    font-size: 14px;
    line-height: 1.5;
  }
}

.banner__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0 17%;
  margin-top: 67px;
}
@media screen and (max-width: 767px) {
  .banner__wrap {
    display: block;
    margin-top: 30px;
    padding-right: 4.26vw;
    padding-left: 4.26vw;
  }
}

.banner__more {
  display: block;
  width: 35%;
  margin-bottom: 87px;
}
.banner__more p {
  margin-bottom: 18px;
}
.banner__more img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .banner__more {
    width: 66%;
    margin: 0 auto;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .banner__more:last-child {
    padding-bottom: 0;
  }
}

/* ------------
messageページ
------------- */
/*メッセージ */
.message {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .message {
    padding-top: 140px;
    padding-right: 4.26vw;
    padding-left: 4.26vw;
  }
}
.message__inner {
  display: block;
  width: 45%;
  margin: 0 auto;
  padding: 6vw;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .message__inner {
    width: 50%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 560px) {
  .message__inner {
    width: 70%;
    margin: 0 auto;
  }
}
.message__title {
  font-size: 20px;
  color: #DAA180;
}
@media screen and (max-width: 767px) {
  .message__title {
    padding-left: 3vw;
    font-size: 18px;
  }
}
.message__subtitle {
  font-size: 18px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .message__subtitle {
    padding-left: 3vw;
    font-size: 16px;
  }
}
.message__text {
  margin-top: 30px;
  line-height: 2.375;
}
@media screen and (max-width: 1000px) {
  .message__text {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .message__text {
    padding-bottom: 20px;
    padding-left: 4vw;
    font-size: 14px;
    line-height: 1.9285714286;
  }
}
.message__text .small__text {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .message__text .small__text {
    font-size: 11px;
  }
}
.message__text .underline {
  text-decoration: underline;
  text-decoration-color: #FFBE98;
}
.message__from {
  display: block;
  text-align: end;
  margin-top: 80px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .message__from {
    margin-top: 73px;
  }
}

/*メッセージを開閉(スマホのみ) */
.text__wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
  height: auto;
  overflow: hidden;
}

.show_more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  padding-top: 70px;
  text-align: center;
  line-height: 30px;
  background: linear-gradient(180deg, rgba(255, 247, 239, 0) 0%, #FFEDE3 100%);
  border-radius: 10px;
  cursor: pointer;
}
.show_more:before {
  border-right: 3px solid #FFBE98;
  border-top: 3px solid #FFBE98;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  transition: all 0.5s;
  transform: rotate(135deg);
}
.active .show_more::before {
  transform: rotate(-45deg);
}

/*悩み*/
.worry {
  padding-top: 297px;
}
@media screen and (max-width: 767px) {
  .worry {
    padding-top: 140px;
  }
}
.worry__inner {
  display: block;
  max-width: 1080px;
  text-align: center;
  margin: 0 auto;
  padding-right: 1vw;
  padding-left: 1vw;
}
.worry__title {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  color: #DAA180;
}
@media screen and (max-width: 767px) {
  .worry__title {
    font-size: 16px;
  }
}
.worry__box {
  display: flex;
  justify-content: center;
  gap: 45px;
  margin-top: 65px;
  padding-bottom: 132px;
}
@media screen and (max-width: 1000px) {
  .worry__box {
    gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .worry__box {
    position: relative;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .worry__list {
    position: absolute;
    top: 0;
    padding-left: 4.26vw;
  }
}
@media screen and (max-width: 767px) {
  .worry__list-right {
    position: absolute;
    top: 200px;
    padding-left: 4.26vw;
  }
}
.worry__img {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .worry__img {
    margin-left: auto;
    width: 70%;
    overflow: hidden;
  }
}
.worry__img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .worry__img img {
    padding-top: 100px;
    width: 100vw;
    margin-right: -50px;
  }
}
.worry__item-left {
  margin-top: 18px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-top: 18px;
  padding: 12px 15px;
  background: #FFFBF9;
  border-radius: 30px;
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .worry__item-left {
    padding: 12px 15px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .worry__item-left {
    font-size: 13px;
    padding: 8px 15px;
  }
}
.worry__item-left:before {
  content: "";
  position: absolute;
  right: -38px;
  width: 13px;
  height: 12px;
  bottom: 0;
  background: #FFFBF9;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .worry__item-left:before {
    width: 10px;
    height: 10px;
  }
}
.worry__item-left:after {
  content: "";
  position: absolute;
  right: -22px;
  width: 18px;
  height: 18px;
  bottom: 3px;
  background: #FFFBF9;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .worry__item-left:after {
    width: 15px;
    height: 15px;
  }
}
.worry__item-right {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-top: 18px;
  padding: 12px 15px;
  background: #FFFBF9;
  border-radius: 30px;
  margin-top: 18px;
}
@media screen and (max-width: 1000px) {
  .worry__item-right {
    padding: 12px 15px;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .worry__item-right {
    font-size: 13px;
    padding: 8px 15px;
  }
}
.worry__item-right:before {
  content: "";
  position: absolute;
  left: -38px;
  width: 13px;
  height: 12px;
  bottom: 0;
  background: #FFFBF9;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .worry__item-right:before {
    width: 10px;
    height: 10px;
    transform: translateX(290px);
  }
}
.worry__item-right:after {
  content: "";
  position: absolute;
  left: -22px;
  width: 18px;
  height: 18px;
  bottom: 3px;
  background: #FFFBF9;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .worry__item-right:after {
    width: 15px;
    height: 15px;
    transform: translateX(250px);
  }
}
.worry__answer {
  position: relative;
  margin-top: 132px;
  font-size: 20px;
  margin: 0 auto;
}
.worry__answer::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 16px;
  height: 16px;
  bottom: 60px;
  transform: rotate(135deg) translateX(-50%);
  left: 48%;
  border: 0;
  border-top: solid 2px #FFBE98;
  border-right: solid 2px #FFBE98;
}
@media screen and (max-width: 767px) {
  .worry__answer::before {
    width: 8px;
    height: 8px;
    left: 46%;
  }
}
.worry__answer::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 16px;
  margin: 0 auto;
  height: 16px;
  bottom: -60px;
  left: 48%;
  border: 0;
  border-top: solid 2px #FFBE98;
  border-right: solid 2px #FFBE98;
  transform: rotate(135deg) translateX(-50%);
}
@media screen and (max-width: 767px) {
  .worry__answer::after {
    width: 8px;
    height: 8px;
    left: 46%;
  }
}
@media screen and (max-width: 767px) {
  .worry__answer {
    font-size: 18px;
  }
}

/*大切にしていること */
.feature {
  padding-top: 130px;
  text-align: center;
}
.feature__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.feature .section__title {
  display: inline-block;
  padding: 10px;
  border-bottom: 4px dotted #FFBE98;
  font-size: 30px;
  font-weight: bold;
  color: #DAA180;
}
@media screen and (max-width: 767px) {
  .feature .section__title {
    border-bottom: 2px dotted #FFBE98;
    font-size: 20px;
  }
}
.feature .section__title::before {
  display: none;
}
.feature__list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.feature__item {
  display: block;
  text-align: center;
  width: 343px;
  margin: 5px;
  padding: 42px 30px;
  background-color: #FFFBF9;
  box-shadow: 1px 1px 15px rgba(255, 190, 152, 0.2);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .feature__item {
    width: 280px;
    padding: 20px;
  }
}
.feature__number {
  position: relative;
  font-size: 20px;
  align-items: center;
  display: flex;
  justify-content: center;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FFBE98;
}
.feature__number::before, .feature__number::after {
  background-color: #FFBE98; /* 横線の色 */
  content: "";
  height: 2px; /* 横線の高さ */
  width: 8px; /* 横線の長さ */
}
.feature__number::before {
  margin-right: 7px; /* 文字との余白 */
}
.feature__number::after {
  margin-left: 7px; /* 文字との余白 */
}
.feature__title {
  font-size: 20px;
  margin-top: 22px;
}
.feature__img {
  text-align: center;
  margin-top: 22px;
}
.feature__img img {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .feature__img img {
    margin: 0 auto;
  }
}
.feature__text {
  text-align: left;
  padding: 16px 10px 0px 10px;
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.8125;
}
@media screen and (max-width: 767px) {
  .feature__text {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .feature .slick-dots {
    width: 100%;
    bottom: -30px;
  }
}

.feature__item.offs, .offs .feature__item {
  opacity: 0;
  transform: translateY(50px);
}
@media screen and (max-width: 767px) {
  .feature__item.offs, .offs .feature__item {
    opacity: 1;
  }
}

.feature__item.ons,
.ons .feature__item {
  transition: all 1s cubic-bezier(0, 0, 0.13, 0.79);
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .feature__item.ons,
  .ons .feature__item {
    transition: 0;
  }
}

/*わたしのこと */
.introduction {
  padding-top: 287px;
}
@media screen and (max-width: 767px) {
  .introduction {
    padding-top: 205px;
  }
}
.introduction__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding-right: 4.26vw;
  padding-left: 4.26vw;
}
@media screen and (max-width: 767px) {
  .introduction__inner {
    padding: 0 17px;
  }
}
.introduction .section__title {
  display: inline-block;
  margin-left: 21px;
  padding: 8px 8px 12px 8px;
  border-bottom: 4px dotted #FFBE98;
  font-size: 30px;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #DAA180;
}
.introduction .section__title::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .introduction .section__title {
    border-bottom: 2px dotted #FFBE98;
    font-size: 20px;
  }
}
.introduction__contents {
  display: flex;
  align-items: flex-start;
  gap: 147px;
  margin-top: 30px;
}
@media screen and (max-width: 870px) {
  .introduction__contents {
    gap: 100px;
  }
}
@media screen and (max-width: 767px) {
  .introduction__contents {
    display: block;
    margin-top: 0;
  }
}
.introduction__img {
  margin-top: 41px;
  width: 19vw;
}
@media screen and (max-width: 1000px) {
  .introduction__img {
    width: 25vw;
  }
}
@media screen and (max-width: 870px) {
  .introduction__img {
    width: 43vw;
  }
}
@media screen and (max-width: 767px) {
  .introduction__img {
    width: 70%;
  }
}
.introduction__img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .introduction__textarea {
    padding-top: 63px;
    width: 85%;
    margin: 0 auto;
  }
}
.introduction__text {
  margin-top: 42px;
  padding-right: 10px;
  line-height: 2.1875;
}
@media screen and (max-width: 767px) {
  .introduction__text {
    font-size: 14px;
    padding-right: 0;
  }
}

.name__area {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 40px;
  padding: 8px 20px 12px 0;
}
.name__area:before {
  content: "";
  position: absolute;
  background: #FFE9D8;
  width: 67px;
  height: 75px;
  border-radius: 54% 46% 38% 62%/49% 70% 30% 52%;
  top: 50%;
  left: -20px;
  transform: translateY(-60%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .title {
    font-size: 13px;
  }
}

.name {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .name {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .adress {
    font-size: 13px;
  }
}

.history {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .history {
    margin-top: 0;
  }
}
.history__img-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .history__img-sp {
    display: block;
    margin-top: 90px;
    margin-left: auto;
    width: 70%;
  }
}
.history__title {
  margin-top: 40px;
  margin-left: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .history__title {
    margin-left: 35px;
  }
}
.history__title:before {
  content: "";
  position: absolute;
  background: #FFE9D8;
  width: 60px;
  height: 60px;
  border-radius: 54% 46% 38% 62%/49% 70% 30% 52%;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  z-index: -1;
}
.history__contents {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 33px;
}
@media screen and (max-width: 767px) {
  .history__contents {
    display: block;
    font-size: 13px;
  }
}
.history__img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .history__img {
    display: none;
  }
}
.history__img img {
  width: 100%;
}
@media screen and (max-width: 870px) {
  .history .btn-circle a {
    width: 25%;
    text-align: left;
  }
}
@media screen and (max-width: 870px) {
  .history .btn-circle a {
    width: 35%;
  }
}

.timeline {
  width: 90%;
  margin: 50px auto;
}
.timeline li {
  position: relative;
  list-style: none;
  padding-bottom: 32px;
}
.timeline li dl {
  margin: 0 0 10px 3em;
}
.timeline li dd {
  padding-top: 8px;
  color: #DAA180;
}
.timeline li .border-line {
  position: absolute;
  margin-top: 3px;
  left: 0;
  top: 0;
  transform: translateX(13px);
  width: 1px;
  height: 0;
  background: #FFBE98;
}
.timeline li::after {
  content: "";
  position: absolute;
  margin-top: 3px;
  top: 0;
  left: 0;
  transform: translateX(10px);
  width: 7px;
  height: 7px;
  background: #FFBE98;
  border-radius: 50%;
}

/* -------------------------------
    Topページ
---------------------------------- */
/* ---------------
ローディング画面
----------------- */
.loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFCF5;
  background: linear-gradient(180deg, #FFFCF5 0%, rgba(255, 252, 245, 0.6) 100%);
}
.loading .is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9998;
  translate: 0 100vh;
  background-color: #FEE4D5;
}

.loading__container {
  display: block;
  text-align: center;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-name: fadeInAnime;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.loading__container img {
  width: 6vw;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .loading__container img {
    width: 10vw;
  }
}
@media screen and (max-width: 767px) {
  .loading__container img {
    margin-bottom: 10px;
    width: 20vw;
  }
}
.loading__container p {
  font-size: 2rem;
  font-family: "Julius Sans One", sans-serif;
}
@media screen and (max-width: 767px) {
  .loading__container p {
    font-size: 1.5rem;
  }
}

.header-home {
  display: none;
  position: absolute;
  width: 100%;
  margin-bottom: 0;
  background: transparent;
}
.header-home h1 {
  position: relative;
  margin-left: 5%;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .header-home h1 {
    width: 160px;
    padding-top: 5px;
    position: relative;
    z-index: 99;
  }
}
@media screen and (max-width: 1000px) {
  .header-home {
    display: block;
  }
}

/* ---------------
    Topページ/fv
----------------- */
.fv {
  position: relative;
  min-height: 100svh;
}
.fv video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .fv video {
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.fv__maincopy {
  position: absolute;
  width: 30rem;
  right: 10%;
  bottom: 8%;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .fv__maincopy {
    width: 27rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__maincopy {
    width: 25rem;
    right: 5%;
  }
}
@media screen and (max-width: 560px) {
  .fv__maincopy {
    width: 19rem;
    right: 5%;
  }
}
.fv__maincopy img {
  width: 100%;
  animation-name: copy-fadeInAnime;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes copy-fadeInAnime {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fv__inner {
  position: absolute;
  text-align: left;
  top: 0;
  width: 172px;
  padding-top: 70px;
  margin-left: 10%;
}
@media screen and (max-width: 1000px) {
  .fv__inner {
    display: none;
  }
}
.fv__inner a:hover {
  opacity: 0.8;
}
.fv__item-logo {
  width: 121px;
  margin-bottom: 49px;
}
.fv__item-logo a {
  width: 140px;
  margin-bottom: 49px;
}
.fv__item-logo a:hover {
  width: 100%;
  background: rgba(255, 244, 238, 0.5);
  box-shadow: 1px 1px 30px #FFF4EE;
  border-radius: 40px;
}
.fv__item a {
  display: inline-block;
  line-height: 1.5;
  padding: 8px;
}
.fv__item a:hover {
  background: rgba(255, 244, 238, 0.5);
  box-shadow: 1px 1px 30px #FFF4EE;
  border-radius: 26px;
}
.fv__title-ja {
  font-size: 11px;
  letter-spacing: 0.2em;
}
.fv__title {
  font-size: 18px;
  font-family: "Julius Sans One", sans-serif;
}
.fv__sns {
  margin-top: 10px;
  width: 24px;
}
.fv__sns:hover {
  opacity: 0.5;
}
.fv__sns img {
  margin-top: 14px;
  margin-left: 9px;
  width: 100%;
}

/*.doneクラスがついたfv*/
.fv__inner.done {
  opacity: 0; /*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
.fv__inner.done.panelactive {
  opacity: 1; /*不透明にして出現*/
  top: 0;
  left: 0;
}
@media screen and (max-width: 1000px) {
  .fv__inner.done.panelactive {
    display: block;
  }
}

.fv__nav ul li a {
  display: inline-block;
  margin: 0 auto;
  color: #5E2F2A;
  margin-bottom: 10px;
}

/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
.fv__inner.done .fv__nav {
  /*固定位置にして最背面に*/
  position: fixed;
  top: -120%;
  right: 0;
  z-index: -1;
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.7s;
}

.fv__inner.done.panelactive .fv__nav {
  top: 0;
  right: 0;
  width: 284px;
  height: 570px;
  padding-bottom: 52px;
  opacity: 1;
  z-index: 3;
  background: rgba(255, 229, 213, 0.9);
  border-radius: 0px 0px 20px 20px;
  transition: 0.7s;
}
@media screen and (max-width: 1000px) {
  .fv__inner.done.panelactive .fv__nav {
    padding-top: 130px;
    width: 100%;
  }
}
.fv__inner.done.panelactive .fv__nav ul {
  display: inline-block;
  margin: 0 auto;
}
.fv__inner.done.panelactive .fv__nav li {
  padding: 0;
}
.fv__inner.done.panelactive .fv__nav li a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .fv__inner.done.panelactive .fv__nav li {
    display: block;
  }
}
.fv__inner.done.panelactive .fv__nav .fv__item-logo {
  padding-top: 70px;
  padding-bottom: 40px;
  margin: 0 auto;
  opacity: 1;
}
.fv__inner.done.panelactive .fv__nav .fv__item-logo img {
  width: 96px;
}
.fv__inner.done.panelactive .fv__nav .fv__item-logo a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1000px) {
  .fv__inner.done.panelactive .fv__nav .fv__item-logo {
    display: none;
  }
}
.fv__inner.done.panelactive .fv__nav br {
  display: none;
}
.fv__inner.done.panelactive .fv__nav a .fv__title {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 18px;
  font-family: "Julius Sans One", sans-serif;
  transition: all 0.3s;
}
.fv__inner.done.panelactive .fv__nav a .fv__title-ja {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .fv__inner.done.panelactive .fv__nav {
    display: block;
  }
}
.fv__inner.done.panelactive .fv__nav .fv__sns img {
  margin-left: 0;
}

.fv__inner .fv__nav.is-slideup {
  top: -120% !important;
}

section {
  position: relative;
  z-index: 1;
}

/* ------------------------
    Topページ/lead
--------------------------- */
.lead {
  padding-top: 220px;
}
@media screen and (max-width: 767px) {
  .lead {
    padding-top: 120px;
  }
}
.lead__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 100px;
  align-items: center;
  padding: 0 66px;
}
@media screen and (max-width: 767px) {
  .lead__inner {
    padding: 0 17px;
  }
}
.lead__img {
  position: relative;
  width: 19vw;
}
@media screen and (max-width: 767px) {
  .lead__img {
    display: none;
  }
}
.lead__img img {
  width: 100%;
}
.lead__contents {
  position: relative;
  width: 46%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lead__contents {
    width: 100%;
  }
}
.lead .brand__logo img {
  margin-bottom: 14px;
  width: 6vw;
}
@media screen and (max-width: 870px) {
  .lead .brand__logo img {
    font-size: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .lead .brand__logo img {
    width: 12vw;
  }
}
.lead__title {
  margin-bottom: 18px;
  font-size: 1.7vw;
  color: #DAA180;
}
@media screen and (max-width: 870px) {
  .lead__title {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .lead__title {
    font-size: 4vw;
  }
}
@media screen and (max-width: 560px) {
  .lead__title {
    font-size: 4.27vw;
  }
}
.lead__text {
  font-size: 1.1vw;
  line-height: 1.875;
}
@media screen and (max-width: 1000px) {
  .lead__text {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 870px) {
  .lead__text {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 767px) {
  .lead__text {
    padding: 0 17px;
    display: block;
    font-size: 3vw;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 560px) {
  .lead__text {
    font-size: 3.73vw;
  }
}
.lead .btn-circle {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .lead .btn-circle {
    margin-top: 40px;
  }
}

.lead__inner.offs, .offs .lead__contents {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1000ms ease, transform 1000ms ease;
}

.lead__inner.ons,
.ons .lead__contents {
  transition: all 1s cubic-bezier(0, 0, 0.13, 0.79);
  opacity: 1;
  transform: translateY(0);
}

/* ------------
works
------------- */
.works {
  padding-top: 323px;
}
@media screen and (max-width: 767px) {
  .works {
    padding-top: 180px;
  }
}
.works__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding-right: 1vw;
  padding-left: 1vw;
}
@media screen and (max-width: 767px) {
  .works__inner {
    padding-right: 4.26vw;
    padding-left: 4.26vw;
  }
}
.works__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .works__list {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}
.works__item {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .works__item {
    width: 100%;
    margin-bottom: 39px;
  }
}
.works__img {
  position: relative;
  border-radius: 10px;
}
.works__img img {
  width: 100%;
  border-radius: 10px;
  transform: scale(1);
  filter: blur(0);
  transition: 0.3s ease-in-out;
}
.works__img .mask {
  position: relative;
  border-radius: 10px;
  transition: 0.3s ease-in-out; /*移り変わる速さ*/
  display: block; /*画像をくくるspanタグをブロック要素にする*/
  text-align: center;
  line-height: 0; /*行の高さを0にする*/
  overflow: hidden; /*拡大してはみ出る要素を隠す*/
}
.works__img:hover img {
  border-radius: 10px;
  transform: scale(1.1); /*拡大の値*/
}
.works__img .caption {
  position: absolute;
  width: 90%;
  margin: 0 auto;
  opacity: 0;
  transition: 0.5s ease-in-out; /*移り変わる速さ*/
  z-index: 3; /*テキストを前面に出す*/
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #5E2F2A;
  line-height: 1.5;
}
.works__img .caption .title {
  display: inline-block;
  font-size: 18px;
  border-bottom: 2px solid #FFBE98;
  padding-bottom: 1px;
}
.works__img .caption .subtitle {
  display: block;
  width: 100%;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 15px;
}
.works__img .caption .text {
  font-size: 15px;
}
.works__img:hover .caption {
  opacity: 1;
}
.works__category {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
}
.works__label {
  padding: 6px 24px;
  line-height: 1;
  color: #5E2F2A;
  background-color: #FFFBF9;
  border: 1px solid #FFBE98;
  border-radius: 32px;
}
.works .works__img:hover .mask::before {
  content: "";
  position: absolute;
  border-radius: 10px;
  z-index: 2;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: rgba(255, 255, 255, 0.7);
}
.works a:hover {
  opacity: 1;
}

.works__item.offs, .offs .works__item {
  opacity: 0;
  transform: translateY(50px);
}

.works__item.ons,
.ons .works__item {
  transition: all 1s cubic-bezier(0, 0, 0.13, 0.79);
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .works__img:hover img {
    transform: none;
  }
  .works__img:hover p.caption {
    opacity: 0;
  }
  .works .works__img:hover .mask::before {
    display: none;
  }
}
/* ------------
skill
------------- */
.skill {
  padding-top: 205px;
}
.skill__inner {
  max-width: 1080px;
  padding-right: 1vw;
  padding-left: 1vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .skill__inner {
    padding-right: 4.26vw;
    padding-left: 4.26vw;
  }
}
.skill__list {
  flex-wrap: wrap;
  gap: 54px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .skill__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    width: 100%;
    max-width: 300px;
    margin: 50px auto 0;
    justify-content: center;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 560px) {
  .skill__list {
    gap: 25px;
    margin: 20px auto 0;
  }
}
.skill__item {
  position: relative;
  display: inline-block;
  width: 140px;
  height: 140px;
  margin-left: 3%;
  background-color: #FFFBF9;
  border-radius: 48% 52% 56% 44%/50% 52% 48% 50%;
}
@media screen and (max-width: 767px) {
  .skill__item {
    margin: 0;
  }
}
.skill__content {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.skill__img {
  width: 44px;
  margin: 0 auto;
}
.skill__caption {
  text-align: center;
  margin-top: 8px;
  font-size: 15px;
}

.skill__item.offs, .offs .skill__item {
  opacity: 0;
  transform: translateY(50px);
}

.skill__item.ons,
.ons .skill__item {
  transition: all 1s cubic-bezier(0, 0, 0.13, 0.79);
  opacity: 1;
  transform: translateY(0);
}

/* ------------
service
------------- *//*# sourceMappingURL=style.css.map */