@charset "UTF-8";
/*-------------------------------------------
共通クラス
-------------------------------------------*/
/* フォント */
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.corinthia-regular {
  font-family: "Corinthia", cursive;
  font-weight: 400;
  font-style: normal;
}

.font-league {
  font-family: "Corinthia", cursive;
}

/* 共通画像設定 */
img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*-------------------------------------------
共通パーツの指定
-------------------------------------------*/
/* 共通余白 */
.u-wrapper {
  max-width: 1280px;
  margin: 0 100px;
}
@media screen and (max-width: 821px) {
  .u-wrapper {
    margin: 0 20px;
  }
}

/* タイトル文字 */
.section__title {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}

.section__titleText {
  position: relative;
  z-index: 2;
  font-size: 36px;
  font-family: "Corinthia", cursive;
  font-size: 65px;
}

/* マーカー画像 */
.section__titleMarker {
  position: absolute;
  left: 50%;
  bottom: 19px; /* 文字との距離 */
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  height: auto;
  max-width: 100%;
  z-index: 1;
}

/* button */
.u-btn {
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid black;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  z-index: 0;
}
@media (max-width: 821px) {
  .u-btn {
    padding: 13px 50px 13px;
  }
}

/* ボタン */
.works__btn {
  text-align: center;
  margin: 72px 0 72px;
}

.u-btn:after {
  content: "";
  background-color: #ADCDE8;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.u-btn:hover:after {
  top: 0px;
  left: 0px;
}

/* フェードイン */
.js-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: opacity 2s ease, -webkit-transform 1.5s ease;
  transition: opacity 2s ease, -webkit-transform 1.5s ease;
  transition: opacity 2s ease, transform 1.5s ease;
  transition: opacity 2s ease, transform 1.5s ease, -webkit-transform 1.5s ease;
}

.js-fadeIn.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ふわっと用 */
.fade-soft {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-transition: opacity 1.6s ease-out, -webkit-transform 1.6s ease-out;
  transition: opacity 1.6s ease-out, -webkit-transform 1.6s ease-out;
  transition: opacity 1.6s ease-out, transform 1.6s ease-out;
  transition: opacity 1.6s ease-out, transform 1.6s ease-out, -webkit-transform 1.6s ease-out;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
.header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background-color: #FAF9F7;
}
@media (max-width: 821px) {
  .header {
    height: 60px;
    background-color: #FAF9F7;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 95.3125%;
  margin: 0 auto;
  height: 100%;
  padding: 0 80px;
}
@media (max-width: 821px) {
  .header__inner {
    padding: 0 20px;
  }
}

.logo__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__logo {
  width: 40px;
  height: auto;
  margin-left: -10px;
}

@media (max-width: 821px) {
  .header__nav {
    display: none;
  }
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__menuLink {
  color: #333a3f;
  font-weight: 200;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__menuLink:hover {
  opacity: 0.6;
}

/*ハンバーガーライン*/
.header__toggleBtn {
  display: none;
}
@media (max-width: 821px) {
  .header__toggleBtn {
    display: block;
    width: 42px;
    height: 18px;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 20;
  }
}

.header__hamburgerLine {
  display: block;
  position: absolute;
  width: 42px;
  height: 2px;
  background-color: #A6A6A6;
  border-radius: 3px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__hamburgerLine:nth-last-child(1) {
  top: -3px;
}

.header__hamburgerLine:nth-last-child(2) {
  top: 9px;
}

.header__hamburgerLine:nth-last-child(3) {
  top: 21px;
}

/*ハンバーガーライン開閉*/
.js-open .header__hamburgerLine:nth-last-child(1) {
  -webkit-transform: translateY(11px) rotate(-45deg);
          transform: translateY(11px) rotate(-45deg);
}

.js-open .header__hamburgerLine:nth-last-child(2) {
  display: none;
}

.js-open .header__hamburgerLine:nth-last-child(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
          transform: translateY(-11px) rotate(45deg);
}

/*版バーガーメニュー時*/
.header__mask {
  position: fixed;
  width: 100%;
  height: 100vh;
  right: -120%;
  top: 60px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: #FAF9F7;
  opacity: 0.95;
}

.header__mask {
  text-align: center;
  font-weight: 200;
}

.header__maskList {
  margin-top: 40px;
}

.js-open .header__mask {
  right: 0;
  z-index: 10;
}

.menu__btn {
  display: inline-block;
  padding: 4px 16px;
  background: #DEE4E9;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
  color: #333a3f;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
}

/*-------------------------------------------
front-topの指定
-------------------------------------------*/
/* ファーストビュー */
.fv {
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 500px;
  margin: 0 auto;
  height: auto;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 821px) {
  .fv {
    aspect-ratio: auto;
    min-height: 70vh;
  }
}

.fv picture {
  position: absolute;
  inset: 0;
}

.fv picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__deco {
  position: absolute;
  z-index: 2;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: opacity 2.8s ease-out, -webkit-transform 2.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 2.8s ease-out, -webkit-transform 2.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 2.8s ease-out, transform 2.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 2.8s ease-out, transform 2.8s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 2.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 表示用クラス */
.fv__deco.is-show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fv__deco--subtitle {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

/* タイトル */
.fv__deco--title {
  top: 35%;
  left: 10%;
  width: 300px;
  height: auto;
}
@media screen and (max-width: 821px) {
  .fv__deco--title {
    top: 25%;
    left: 15%;
    width: 200px;
  }
}

.fv__deco--subtitle {
  top: 45%;
  left: 18%;
  width: 250px;
  height: auto;
}
@media (max-width: 821px) {
  .fv__deco--subtitle {
    top: 32%;
    left: 22%;
    width: 180px;
  }
}

/* fv下のTOP文章 */
.fv__textContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  margin-top: 116px;
}

.fv__text {
  color: #333a3f;
  font-weight: 300;
  text-align: center;
}

/*-------------------------------------------
サービスページ
-------------------------------------------*/
.service {
  background: #fff;
  padding-top: 120px;
  margin-bottom: 120px;
  margin: 0 auto;
}
@media (max-width: 821px) {
  .service {
    margin-bottom: 0;
  }
}

.service__container {
  background: #DEE4E9;
  padding: 68px 81px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 821px) {
  .service__container {
    padding: 68px 42px;
  }
}

/* カードレイアウト */
.service__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 217px));
  gap: 56px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 821px) {
  .service__cards {
    grid-template-columns: repeat(1, 230px);
    gap: 32px;
  }
}

/* カード */
.service__card {
  background: #fff;
  border-radius: 24px;
  text-align: center;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
  padding: 20px 20px;
}

/* アイコン */
.crad-image {
  width: 75px;
  height: 75px;
  margin-bottom: 16px;
}

/* 見出し */
.card__title {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.4;
}

/* カードテキスト */
.service__card p {
  font-size: 15px;
  line-height: 1.6;
}

.service__card strong {
  font-weight: bold;
}

/*-------------------------------------------
worksページ
-------------------------------------------*/
.works {
  background: #fff;
  padding-top: 120px;
  margin-bottom: 120px;
  margin: 0 auto;
}
@media (max-width: 821px) {
  .works {
    margin-bottom: 0;
  }
}

.works__cardLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* カード */
.works__card {
  width: 300px;
  background: #fff;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  height: 400px;
  border: 1px solid #A6A6A6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.works__card img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
}

.works__cardTitle {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  position: relative;
}

/* カード下の下線 */
.works__cardTitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 200px;
  height: 1px;
  background: #A6A6A6;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.works__cardText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 200;
  padding: 0 18px;
}

/* カテゴリラベル */
.tag {
  background: #DEE4E9;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #A6A6A6;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

/* スワイパー設定 */
.swiper {
  width: 100%;
  margin: 0 auto;
}

.swiper-pagination {
  position: relative;
  bottom: auto;
}

.swiper-button-prev,
.swiper-button-next {
  color: #A6A6A6 !important;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
}

.swiper-pagination-bullet-active {
  width: 15px !important;
  height: 15px !important;
  border-radius: 0px !important;
  background: #f5d1c3 !important;
}

.swiper-pagination-bullet-active + .swiper-pagination-bullet {
  background: #E8D8B3;
}

.swiper-pagination-bullet-active + .swiper-pagination-bullet + .swiper-pagination-bullet {
  background: #ABBFCD;
}

.swiper-pagination-bullet-active + .swiper-pagination-bullet + .swiper-pagination-bullet + .swiper-pagination-bullet {
  background: #CDC1DD;
}

.swiper-pagination-bullet-active + .swiper-pagination-bullet + .swiper-pagination-bullet + .swiper-pagination-bullet + .swiper-pagination-bullet {
  background: #ADCDE8;
}

.swiper-pagination-bullet-active + .swiper-pagination-bullet + .swiper-pagination-bullet + .swiper-pagination-bullet + .swiper-pagination-bullet + .swiper-pagination-bullet {
  background: #E8D8B3;
}

.swiper-pagination-bullet-active + .swiper-pagination-bullet + .swiper-pagination-bullet + .swiper-pagination-bullet + .swiper-pagination-bullet + .swiper-pagination-bullet + .swiper-pagination-bullet + .swiper-pagination-bullet {
  background: #ADCDE8;
}

.swiper-pagination {
  margin-top: 40px;
  position: static !important; /* ← absolute解除 */
}

/*-------------------------------------------
aboutページ
-------------------------------------------*/
.about {
  background: #FAF9F7;
  padding-top: 120px;
}

.about__layout {
  margin: 0 auto;
}

.about__container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0px 20px 96px;
}
@media (max-width: 821px) {
  .about__container {
    grid-template-columns: 1fr;
    padding: 0px 20px 46px;
  }
}

.about__content {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}
@media (max-width: 821px) {
  .about__content {
    margin-bottom: 48px;
  }
}

/* アバウト画像 */
.about__img {
  position: relative;
  z-index: 2;
  width: 250px;
  height: 250px;
}

/* 背景画像 */
.about__imgShadow {
  position: absolute;
  top: 32px;
  left: 8px;
  z-index: 1;
  width: 270px;
  height: 270px;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: none;
}

strong {
  font-weight: 500;
}

.about__profile {
  color: #333a3f;
  font-weight: 300;
}

/* 趣味 */
.about__imgBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 68px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 72px 120px 0;
}
@media (max-width: 821px) {
  .about__imgBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 40px 96px 20px;
  }
}

.image__camp {
  width: 250px;
  height: 152px;
  position: relative;
  z-index: 0;
}

/* 背景画像 */
.image__camp::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background: #E7E3D8;
  z-index: -1;
}

.image__camp img {
  opacity: 0.8;
}

.image__cats {
  width: 200px;
  height: 242px;
  position: relative;
  z-index: 0;
}

/* 背景画像 */
.image__cats::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background: #E7E3D8;
  z-index: -1;
}

.image__cats img {
  opacity: 0.8;
}

/*-------------------------------------------
Contactページ
-------------------------------------------*/
.contact {
  position: relative;
  padding-top: 120px;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/contact__bg.webp") no-repeat center/cover;
  opacity: 0.5;
  z-index: -1;
}

.contact__inner {
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 821px) {
  .contact__inner {
    max-width: 320px;
  }
}

.contact__inner p {
  font-weight: 300;
}

.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  margin-bottom: 16px;
}
@media (max-width: 821px) {
  .wpcf7 input,
  .wpcf7 textarea {
    padding: 14px 14px;
    margin-bottom: 10px;
  }
}

.wpcf7 textarea {
  height: 220px;
  resize: none;
}

.wpcf7 form input.wpcf7-submit {
  display: block;
  width: 100px;
  margin: 40px auto 0;
  padding: 16px;
  background: #DEE4E9;
  color: #333a3f;
  border-radius: 30px;
  border: none;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  text-align: center;
}

/*-------------------------------------------
「トップアイコン」レイアウト
-------------------------------------------*/
.top__icon {
  position: fixed;
  right: 15px;
  bottom: 40px;
  opacity: 0;
  z-index: 100;
}

.top__iconLink {
  display: inline-block;
  width: 72px;
  height: 72px;
}

/*-------------------------------------------
footer
-------------------------------------------*/
.footer {
  height: 49px;
  background-color: #FAF9F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333a3f;
}

.footer__copyright {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
}

/*-------------------------------------------
page-worksページ
-------------------------------------------*/
.page-works {
  background: #fff;
  padding-top: 120px;
  margin: 0 auto;
}

.page-works__text {
  margin: 0 24px;
}
@media (max-width: 821px) {
  .page-works__text {
    text-align: center;
  }
}

.page-works__text p {
  color: #333a3f;
  font-weight: 300;
}

.section__title.page-works__title {
  text-align: left;
}
@media (max-width: 821px) {
  .section__title.page-works__title {
    text-align: center;
  }
}

.page-works__title .section__titleText {
  margin-left: 20px;
}
@media (max-width: 821px) {
  .page-works__title .section__titleText {
    margin-left: 0px;
  }
}

.section__titleMarker.page-works__title {
  left: 0;
  -webkit-transform: none;
          transform: none;
}
@media (max-width: 821px) {
  .section__titleMarker.page-works__title {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.page-works__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 48px 24px 0;
}

.page-works__cards {
  width: 100%;
  max-width: 1044px; /* 300×3 + gap×2 */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
}

.page-works__card {
  background: #fff;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  height: 400px;
  border: 1px solid #A6A6A6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.page-works__card img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
}

.page-works__cardTitle {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  position: relative;
}

/* カード下の下線 */
.page-works__cardTitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 200px;
  height: 1px;
  background: #A6A6A6;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.page-works__cardText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 200;
  padding: 0 18px;
}

/* カテゴリラベル */
.page-works__tag {
  display: inline-block;
  background: #DEE4E9;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #A6A6A6;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.works-pageNav {
  text-align: right;
  margin: 48px 48px 0 28px;
}

.page-numbers {
  display: inline-block;
  padding: 4px 8px;
  color: #333;
  font-size: 16px;
  font-weight: 200;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 821px) {
  .page-numbers {
    font-size: 14px;
  }
}

.page-numbers.current {
  background: #A6A6A6;
  color: #fff;
}

/*-------------------------------------------
投稿ページの指定
-------------------------------------------*/
.single {
  max-width: 1280px;
  margin: 80px auto 0;
}

/* 詳細画像 */
.single__imgContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
  padding: 0px 48px 48px;
}
@media (max-width: 821px) {
  .single__imgContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    padding: 0px 20px 28px;
  }
}

.single__main {
  margin: 0 auto;
}

.single__main img {
  width: 500px;
  height: auto;
  display: block;
  border: 1px solid #A6A6A6;
}

.single__sub {
  margin: 0 auto;
}

.single__sub img {
  width: 200px;
  height: auto;
  display: block;
  border: 1px solid #A6A6A6;
}

/* 詳細テキスト */
.single__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 0px 48px;
}
@media (max-width: 821px) {
  .single__container {
    grid-template-columns: 1fr;
    padding: 0px 20px;
    gap: 28px;
  }
}

.info-title {
  font-family: "Corinthia", cursive;
  font-size: 56px;
  margin-bottom: 16px;
  font-weight: 500;
}

.isingle__textBox {
  list-style: none;
  padding: 0;
}

.singele__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 12px;
}

.single__siteBtn {
  text-align: right;
  margin: 8px 0;
}

.single__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 24px;
  background: #DEE4E9;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
  color: #333a3f;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 200;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 821px) {
  .single__btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}