@charset "UTF-8";
body {
  font-family: "Noto Serif JP", "sans-serif";
  font-size: 16px;
}

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

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .tb-hidden {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .pc-hidden {
    display: none;
  }
}

header {
  position: relative;
  overflow: hidden;
}

.header {
  position: relative;
  padding-top: 20px;
}
@media screen and (min-width: 1200px) {
  .header {
    padding-top: 32px;
  }
}

.top .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 10;
}

.header__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1200px) {
  .header__inner {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.header__box {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1200px) {
  .header__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1200px) {
  .header__left {
    gap: 15px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .header__left:hover {
    opacity: 0.7;
  }
}

.header__logo {
  width: 28px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .header__logo {
    width: 40px;
    height: auto;
  }
}
.header__logo img {
  width: 100%;
}

.header__title {
  font-size: 26px;
  font-weight: 700;
  font-family: "Raleway", "sans-serif";
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header__title {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .header__title {
    font-size: 36px;
  }
}

@media screen and (min-width: 1200px) {
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    font-size: 24px;
  }
}

@media screen and (min-width: 1200px) {
  .header__menu-list {
    display: inline-block;
    font-family: "Raleway", "sans-serif";
    font-weight: 600;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .header__menu-list:hover {
    color: #F2C6C7;
  }
}

.drawer-icon {
  position: absolute;
  top: -4px;
  right: 13px;
  width: 50px;
  height: 42px;
}
.drawer-icon.is-checked .drawer-icon__bar {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  opacity: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 20px;
  -webkit-transform: rotate(320deg);
          transform: rotate(320deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 20px;
  -webkit-transform: rotate(-320deg);
          transform: rotate(-320deg);
}

.drawer-icon__bar {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  right: 10px;
}

.drawer-icon__bar:nth-of-type(2) {
  top: 20px;
  right: 10px;
}

.drawer-icon__bar:nth-of-type(3) {
  top: 30px;
  right: 10px;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.drawer-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 9;
}
.drawer-content.is-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer-content__menu {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.drawer-content__link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.drawer-content__en {
  display: inline-block;
  width: 90px;
  text-align: center;
  font-family: "Raleway", "sans-serif";
  font-size: 24px;
  font-weight: 600;
}

.drawer-content__ja {
  font-family: "Noto Serif JP", "sans-serif";
  font-size: 12px;
  font-weight: 700;
}

.drawer-content__button-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.drawer-x__link {
  position: relative;
}
.drawer-x__link::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
  content: "";
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #000;
  z-index: -1;
}
.drawer-x__link .x__link {
  position: relative;
  width: 20px;
  height: 19px;
  z-index: 1;
}

.drawer-button {
  padding: 7px 14px;
  color: #FFFFFF;
  background-color: #E89192;
  border-radius: 4px;
  opacity: 0.7;
}

.drawer-background-img {
  position: absolute;
  top: 0;
  left: 16%;
  width: 97px;
  height: 100%;
  opacity: 0.3;
  z-index: -1;
}

#main {
  position: relative;
}

/* ラインとカーテンで共有する角度。あなたの現在値に合わせて調整 */
:root {
  --diag-angle: -60.7deg; /* PC時は -29deg などにメディアクエリで上書きしてOK */
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  :root {
    --diag-angle: -42deg;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --diag-angle: -29deg;
  }
}

.splash {
  position: fixed;
  inset: 0;
  background: #232323; /* 最初の背景（のち透明化） */
  z-index: 10;
  overflow: hidden;
  opacity: 0.9;
}

/* タイトル＆ラインは最前面 */
.main__title, .line {
  position: absolute;
  z-index: 2;
  color: #fff;
}

.main__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 700;
  font-family: "Raleway", "sans-serif";
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .main__title {
    font-size: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .main__title {
    font-size: 60px;
  }
}

/* ライン（あなたの既存値を流用） */
.line {
  width: 0;
  height: 1px;
  background: #FFFFFF;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(var(--diag-angle));
          transform: translate(-50%, -50%) rotate(var(--diag-angle));
}

/* 斜めカーテンの“枠”。これをラインと同角度で回転させる */
.diag {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(var(--diag-angle));
          transform: translate(-50%, -50%) rotate(var(--diag-angle));
  width: 220vw; /* 斜めに掛けるので、十分大きく取る */
  height: 220vh; /* ここも大きめに */
  pointer-events: none;
  z-index: 1; /* ライン・タイトルの一段下 */
}

/* 上下カーテン（回転した座標系で“上下”扱い） */
.diag__top,
.diag__bottom {
  position: absolute;
  left: 0;
  width: 100%;
  background: #232323; /* 開く前の覆い色 */
  -webkit-transition: height 3s ease;
  transition: height 3s ease; /* クラス切り替えでCSSトランジション */
}

/* 初期状態：中央で合わせる（＝高さ 50% 同士） */
.diag__top {
  top: 0;
  height: 50%;
}

.diag__bottom {
  bottom: 0;
  height: 50%;
}

/* 開くときに付けるクラス（JSで付与） */
.diag--open .diag__top {
  height: 0;
}

.diag--open .diag__bottom {
  height: 0;
}

/* 背景消しのためのユーティリティ */
.splash--clear {
  background: transparent;
}

.is-hidden {
  opacity: 0;
  -webkit-transition: opacity 0.18s ease;
  transition: opacity 0.18s ease;
}

.fv {
  position: relative;
  width: 100%;
  min-height: 100svh; /* 端末UIを考慮したvh */
  overflow: visible;
}

.fv__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* 4) ヘッダー高さぶんだけ、FV内のテキストを下げる（視認性調整用） */
:root {
  --header-h: 70px;
} /* 実際の見た目に合わせて */
@media screen and (min-width: 1200px) {
  :root {
    --header-h: 90px;
  }
}
.top .fv__inner {
  position: relative;
  min-height: inherit;
  padding-inline: 15px;
  padding-top: var(--header-h); /* ヘッダーと被らないよう余白 */
  z-index: 1;
}

.fv__title-text-box {
  font-family: "Noto Serif JP", "sans-serif";
  font-size: 26px;
  color: #FFFFFF;
  line-height: 2.8rem;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv__title-text-box {
    font-size: 38px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__title-text-box {
    font-size: 48px;
  }
}

.fv__title-text1 {
  position: absolute;
  top: 50%;
  right: 42%;
  display: inline-block;
  font-weight: 600;
}
@media screen and (min-width: 1200px) {
  .fv__title-text1 {
    top: 247px;
    right: 66%;
  }
}

.fv__title-text2 {
  position: absolute;
  top: 57%;
  right: 22%;
  display: inline-block;
  font-weight: 600;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv__title-text2 {
    right: 28%;
  }
}
@media screen and (min-width: 1200px) {
  .fv__title-text2 {
    top: 353px;
    right: 59%;
  }
}

.fv__subtitle-text-box {
  font-size: 20px;
  color: #505050;
  line-height: 1.8rem;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv__subtitle-text-box {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__subtitle-text-box {
    font-size: 24px;
    color: #FFFFFF;
    bottom: -272px;
    left: 60%;
  }
}

.fv__subtitle-text1,
.fv__subtitle-text2,
.fv__subtitle-text3 {
  font-weight: 700;
}

.fv__subtitle-text1 {
  display: block;
  position: absolute;
  top: 67%;
  right: 30%;
}
@media screen and (min-width: 1200px) {
  .fv__subtitle-text1 {
    top: 65%;
    right: 42%;
  }
}

.fv__subtitle-text2 {
  display: block;
  position: absolute;
  top: 72%;
  right: 6%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv__subtitle-text2 {
    right: 14%;
  }
}
@media screen and (min-width: 1200px) {
  .fv__subtitle-text2 {
    right: 16%;
  }
}

.fv__subtitle-text3 {
  display: block;
  position: absolute;
  top: 77%;
  right: 2%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv__subtitle-text3 {
    right: 9%;
  }
}
@media screen and (min-width: 1200px) {
  .fv__subtitle-text3 {
    display: none;
  }
}

.discussion {
  position: absolute;
  top: 85%;
  right: 20%;
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  padding: 10px 20px;
  background: -webkit-gradient(linear, left top, right top, from(#E89192), to(#F2C6C7));
  background: linear-gradient(to right, #E89192, #F2C6C7);
  opacity: 1;
  border-radius: 10px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .discussion {
    font-size: 30px;
    top: 77%;
    right: 53%;
    padding: 13px 44px;
    letter-spacing: 0.3rem;
  }
}
@media screen and (min-width: 1200px) {
  .discussion {
    padding: 20px 32px;
    font-size: 36px;
    letter-spacing: 0.3rem;
    left: 10%;
    right: auto;
    bottom: 20%;
    top: auto;
  }
}

.trouble {
  position: relative;
  overflow: hidden;
  padding: 80px 0 160px;
}
@media screen and (min-width: 1200px) {
  .trouble {
    padding-bottom: 230px;
  }
}

.section__title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .section__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .section__title {
    padding-bottom: 140px;
    font-size: 46px;
  }
}

.trouble__title {
  font-family: "Noto Serif JP", "sans-serif";
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 2s ease, -webkit-transform 2s ease;
  transition: opacity 2s ease, -webkit-transform 2s ease;
  transition: opacity 2s ease, transform 2s ease;
  transition: opacity 2s ease, transform 2s ease, -webkit-transform 2s ease;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.trouble__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1200px) {
  .trouble__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.trouble__text-box {
  max-width: 400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
  line-height: 2.7rem;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .trouble__text-box {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .trouble__text-box {
    max-width: 700px;
    margin: 0 auto;
    line-height: 3rem;
  }
}

@media screen and (min-width: 1200px) {
  .trouble__text {
    font-size: 24px;
  }
}

.large-text {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .large-text {
    font-size: 28px;
  }
}

.large-text {
  display: block;
  text-align: right;
}

.emphasis-text {
  display: block;
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .emphasis-text {
    font-size: 28px;
  }
}

.right-text {
  display: block;
  text-align: right;
}

@media screen and (min-width: 1200px) {
  .final-text-box {
    display: block;
    text-align: center;
  }
}

.final-text {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .final-text {
    font-size: 28px;
  }
}

.final-emphasis-text {
  font-size: 20px;
  font-weight: 700;
  color: #E89192;
}
@media screen and (min-width: 1200px) {
  .final-emphasis-text {
    font-size: 36px;
  }
}

.trouble__note {
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 1200px) {
  .trouble__note {
    font-size: 18px;
  }
}

.trouble__discussion {
  display: block;
  width: 210px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3rem;
  padding: 10px 30px;
  background: -webkit-gradient(linear, left top, right top, from(#E89192), to(#F2C6C7));
  background: linear-gradient(to right, #E89192, #F2C6C7);
  color: #FFFFFF;
  border-radius: 10px;
  margin: 60px auto 0 auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1200px) {
  .trouble__discussion {
    font-size: 36px;
    font-weight: 700;
    padding: 20px 0;
    max-width: 400px;
    width: 100%;
    border-radius: 20px;
    margin: 120px auto 0 auto;
  }
  .trouble__discussion:hover {
    opacity: 0.7;
  }
}

.trouble__background-img {
  position: absolute;
  top: -52px;
  left: calc(50% + 3px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.04;
  z-index: -1;
}

.about {
  position: relative;
  overflow: visible;
  padding-bottom: 160px;
}
@media screen and (min-width: 1200px) {
  .about {
    max-width: 1000px;
    margin: 0 auto;
  }
}

.about__title {
  font-family: "Raleway", "sans-serif";
  font-size: 28px;
  letter-spacing: 0.3rem;
  padding-bottom: 60px;
}
@media screen and (min-width: 1200px) {
  .about__title {
    font-size: 36px;
    letter-spacing: 0.6rem;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.text {
  font-family: "Raleway", "sans-serif";
  font-weight: 700;
}

.about__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1200px) {
  .about__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.about__text {
  letter-spacing: 0.1rem;
  line-height: 2;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about__text {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .about__text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
  }
}

.about__link {
  color: #0000EE;
  text-decoration: underline;
}

.daytry-img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  padding-top: 50px;
}
@media screen and (min-width: 1200px) {
  .daytry-img-box {
    gap: 60px;
    padding-top: 80px;
    cursor: pointer;
  }
}

.about-certificate {
  max-width: 120px;
  height: auto;
  rotate: -10deg;
}
@media screen and (min-width: 1200px) {
  .about-certificate {
    max-width: 200px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .about-certificate:hover {
    opacity: 0.7;
  }
}

.about-grades {
  max-width: 120px;
  height: auto;
  rotate: 10deg;
}
@media screen and (min-width: 1200px) {
  .about-grades {
    max-width: 200px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .about-grades:hover {
    opacity: 0.5;
  }
}

.daytry-img-text {
  padding-top: 30px;
  font-size: 14px;
  text-align: center;
}

.about__background-img {
  position: absolute;
  top: -65px;
  left: -1%;
  max-width: 250px;
  height: auto;
  opacity: 0.5;
  z-index: -1;
}

.modal {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 10;
}
.modal img {
  max-width: 800px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .modal img {
    max-width: 450px;
  }
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 26px;
  color: #FFFFFF;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .close-btn {
    top: 20px;
    right: 50px;
    font-size: 36px;
  }
}

.works {
  position: relative;
  overflow: hidden;
  padding-bottom: 245px;
}
@media screen and (min-width: 1200px) {
  .works {
    max-width: 1000px;
    margin: 0 auto;
    overflow: visible;
  }
}

.works__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1200px) {
  .works__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.works__text {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .works__text {
    max-width: 415px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .works__text {
    padding-bottom: 0;
  }
}

.works__viewport {
  overflow-x: hidden;
  width: 100%;
}

.swiper {
  max-width: 700px;
  width: 100%;
  height: 220px;
  --swiper-navigation-size: 0; /* SVGアイコンを表示しない */
  --swiper-navigation-color: transparent; /* 念のため色も消す */
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .swiper {
    max-width: 1279px;
    height: 260px;
  }
}

.swiper-wrapper {
  margin: 0 auto;
}

.gallery__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gallery__pagination .swiper-pagination-bullet-active {
  background: #F2C6C7;
}

.gallery__prev,
.gallery__next {
  width: 40px;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.9;
}
.gallery__prev::after,
.gallery__next::after {
  content: none;
}

.gallery__prev {
  background: url(../image/logo/left-arrow.png) no-repeat center center/contain;
  border-radius: 50%;
  top: 30% !important;
  left: 18% !important;
}

.gallery__next {
  background: url(../image/logo/right-arrow.png) no-repeat center center/contain;
  border-radius: 50%;
  top: 30% !important;
  right: 18% !important;
}

.works__title {
  letter-spacing: 0.3rem;
  padding-bottom: 60px;
  font-family: "Raleway", "sans-serif";
  font-size: 28px;
}
@media screen and (min-width: 1200px) {
  .works__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .works__title {
    -moz-text-align-last: left;
         text-align-last: left;
    font-size: 46px;
  }
}

.works__text {
  letter-spacing: 0.1rem;
  line-height: 2;
}
@media screen and (min-width: 1200px) {
  .works__text {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  .works__boxes {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    overflow-x: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 10px;
  }
}

@media screen and (max-width: 767px) {
  .works__boxes.sp-hidden {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .works__boxes.tb-hidden {
    display: none;
  }
}

.works__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.works__img {
  display: block;
  max-width: 222px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .works__img {
    max-width: 250px;
  }
}
@media screen and (min-width: 1200px) {
  .works__img {
    max-width: 320px;
  }
}
.works__img img {
  width: 100%;
}

.works__box-txt {
  text-align: center;
}

.works__box-sub-txt {
  display: block;
  font-size: 12px;
  text-align: center;
}

.works__background-img {
  position: absolute;
  top: -25px;
  left: -179px;
  opacity: 0.1;
  width: 669px;
  height: auto;
  display: block;
  z-index: -1;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .works__background-img {
    top: 0;
    left: -10%;
    width: 591px;
  }
}
@media screen and (min-width: 1200px) {
  .works__background-img {
    width: 1100px;
    top: 82px;
    left: -281px;
    z-index: -1;
  }
}

.skill {
  position: relative;
  top: -85px;
  left: 0;
  padding-bottom: 80px;
}
@media screen and (min-width: 1200px) {
  .skill {
    max-width: 1000px;
    margin: 0 auto;
  }
}

.skill__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1200px) {
  .skill__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.skill__title {
  font-size: 28px;
  font-family: "Raleway", "sans-serif";
  letter-spacing: 0.3rem;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .skill__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .skill__title {
    font-size: 46px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.skill__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 40px 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .skill__box {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .skill__box {
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 0;
  }
}

.skill__box-img {
  width: 100px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .skill__box-img {
    width: 150px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .skill__background-img {
    position: absolute;
    top: -133px;
    left: calc(50% - 225px);
    width: 270px;
    height: auto;
    opacity: 0.5;
    z-index: 10;
  }
}
@media screen and (min-width: 1200px) {
  .skill__background-img {
    position: absolute;
    top: -147px;
    left: 0;
    width: 270px;
    height: auto;
    opacity: 0.3;
    z-index: 10;
  }
}

.fa-html5 {
  font-size: 80px;
  color: orange;
}
@media screen and (min-width: 1200px) {
  .fa-html5 {
    font-size: 125px;
  }
}

.fa-css {
  font-size: 80px;
  color: rgb(2, 132, 254);
}
@media screen and (min-width: 1200px) {
  .fa-css {
    font-size: 125px;
  }
}

.fa-sass {
  font-size: 80px;
  color: rgb(249, 153, 169);
}
@media screen and (min-width: 1200px) {
  .fa-sass {
    font-size: 125px;
  }
}

.fa-js {
  font-size: 80px;
  color: gold;
}
@media screen and (min-width: 1200px) {
  .fa-js {
    font-size: 125px;
  }
}

.fa-wordpress {
  font-size: 80px;
}
@media screen and (min-width: 1200px) {
  .fa-wordpress {
    font-size: 125px;
  }
}

.price {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .price {
    max-width: 1000px;
    margin: 0 auto;
    overflow: visible;
  }
}

.price__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1200px) {
  .price__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.price__title {
  font-family: "Raleway", "sans-serif";
  font-size: 28px;
  letter-spacing: 0.3rem;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .price__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .price__title {
    font-size: 46px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.price__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 65px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .price__box {
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .price__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.price__box-img {
  max-width: 335px;
  border-radius: 10px;
}

.price__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  font-size: 14px;
  padding: 10px 0 0 10px;
  max-width: 350px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .price__text-box {
    max-width: 930px;
    font-size: 16px;
    padding: 10px 0 0 100px;
  }
}

.price__background-img {
  position: absolute;
  top: 14px;
  left: calc(-50% - 239px);
  width: 1200px;
  height: auto;
  opacity: 0.1;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .price__background-img {
    width: 944px;
    left: -164px;
    rotate: 25deg;
    opacity: 0.2;
  }
}

.blog {
  position: relative;
  padding-top: 160px;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .blog {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .blog {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 224px;
  }
}

.blog__title {
  font-family: "Raleway", "sans-serif";
  font-size: 28px;
  letter-spacing: 0.3rem;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .blog__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .blog__title {
    font-size: 46px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.blog__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1200px) {
  .blog__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.blog__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .blog__container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .blog__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 1200px) {
  .blog__first-boxes {
    max-width: 465px;
    width: 100%;
  }
}

.blog__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.blog__box:hover {
  opacity: 0.8;
}

.blog__first-box {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .blog__first-box {
    max-width: 465px;
    width: 100%;
  }
}

.blog__img-box {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .blog__img-box {
    max-width: 465px;
    overflow: hidden;
  }
}

.blog__img-other-box {
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .blog__img-other-box {
    max-width: 175px;
    width: 100%;
  }
}

.blog__first-box-img {
  width: 100%;
}

.blog__row-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.date-content {
  font-family: "Raleway", "sans-serif";
  font-size: 14px;
}
@media screen and (min-width: 1200px) {
  .date-content {
    font-size: 16px;
  }
}

.category-content {
  font-family: "Raleway", "sans-serif";
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: #E89192;
  opacity: 0.7;
  color: #FFFFFF;
}
@media screen and (min-width: 1200px) {
  .category-content {
    font-size: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .blog__box-title {
    font-size: 20px;
    height: 57px;
  }
}

.blog__other-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1200px) {
  .blog__other-boxes {
    gap: 32px;
  }
}

.blog__other-box {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .blog__other-box {
    max-width: 445px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px;
  }
}

.blog__other-box-img {
  max-width: 400px;
  width: 100%;
  height: 208px;
}
@media screen and (min-width: 1200px) {
  .blog__other-box-img {
    max-width: 175px;
    width: 100%;
    height: 91px;
  }
}

.hover-zoom {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hover-zoom.zoomed {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (min-width: 1200px) {
  .blog__content-box {
    height: 100%;
    padding-top: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3px;
  }
}

@media screen and (min-width: 1200px) {
  .blog__box-other-title {
    font-size: 16px;
  }
}

.blog__archive-button {
  display: block;
  max-width: 210px;
  margin: 60px auto 0 auto;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.3rem;
  padding: 10px 30px;
  background: -webkit-gradient(linear, left top, right top, from(#505050), to(#cbcbcb));
  background: linear-gradient(to right, #505050, #cbcbcb);
  color: #FFFFFF;
  border-radius: 10px;
}
@media screen and (min-width: 1200px) {
  .blog__archive-button {
    max-width: 400px;
    padding: 20px 0;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin: 100px auto 0 auto;
    border-radius: 20px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .blog__archive-button:hover {
    opacity: 0.7;
  }
}

.blog__background-img {
  position: absolute;
  top: 58px;
  left: calc(50% - 41px);
  width: 170px;
  height: auto;
  opacity: 0.5;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .blog__background-img {
    width: 200px;
    top: 102px;
    left: 23px;
  }
}

.contact {
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact {
    max-width: 600px;
    margin: 0 auto;
    overflow: visible;
  }
}
@media screen and (min-width: 1200px) {
  .contact {
    max-width: 1000px;
    margin: 0 auto;
    overflow: visible;
    padding-bottom: 100px;
  }
}

.contact__inner {
  padding-left: 15px;
  padding-right: 15px;
}

.contact__title {
  font-family: "Raleway", "sans-serif";
  font-size: 28px;
  letter-spacing: 0.3rem;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__title {
    font-size: 46px;
    text-align: left;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
}

.contact__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 1200px) {
  .contact__field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 18px;
  }
}

@media screen and (min-width: 1200px) {
  .contact__field-last {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

@media screen and (min-width: 1200px) {
  .form__field-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 272px;
    font-size: 18px;
  }
}

.form__field-tag {
  font-size: 12px;
  padding: 2px 7px;
  background-color: #E89192;
  border-radius: 4px;
  opacity: 0.7;
  color: #FFFFFF;
}
@media screen and (min-width: 1200px) {
  .form__field-tag {
    font-size: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .form__field-item {
    width: 100%;
  }
}

.form__text {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #f0eeee;
  border-radius: 4px;
  border: 2px solid #f0eeee;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.form__text:hover, .form__text:focus {
  border-color: #F2C6C7;
  outline: none;
}

.form__textarea {
  width: 100%;
  height: 260px;
  border-radius: 4px;
  background-color: #f0eeee;
  border: 2px solid #f0eeee;
}
.form__textarea:hover, .form__textarea:focus {
  border-color: #F2C6C7;
  outline: none;
}

.contact__privacy {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .contact__privacy {
    font-size: 18px;
  }
}

.form__checkbox-input {
  position: relative;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #000;
  border-radius: 4px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  cursor: pointer;
}
.form__checkbox-input:hover, .form__checkbox-input:focus {
  border-color: #F2C6C7;
  outline: none;
}
.form__checkbox-input::after {
  position: absolute;
  top: -10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  border-right: 3px solid #6d6c6c;
  border-bottom: 3px solid #6d6c6c;
  width: 10px;
  height: 17px;
  rotate: 45deg;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.form__checkbox-input:checked::after {
  opacity: 1;
}

.privacy-policy-text {
  display: inline-block;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.privacy-policy-text:hover, .privacy-policy-text:focus {
  color: #F2C6C7;
  outline: #F2C6C7;
}

.form__checkbox-label {
  cursor: pointer;
}

.contact__btn {
  display: block;
  margin: 0 auto;
  letter-spacing: 0.3rem;
  padding: 10px 50px;
  background: -webkit-gradient(linear, left top, right top, from(#E89192), to(#F2C6C7));
  background: linear-gradient(to right, #E89192, #F2C6C7);
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 10px;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1200px) {
  .contact__btn {
    font-size: 20px;
    padding: 20px 171px;
    border-radius: 10px;
    letter-spacing: 0.9rem;
  }
}
.contact__btn:hover {
  opacity: 0.7;
}
.contact__btn:focus {
  outline: none;
  border-color: #929191;
}

.contact__background-img {
  position: absolute;
  top: 50px;
  left: calc(-50% - 96px);
  width: 1080px;
  opacity: 0.07;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .contact__background-img {
    width: 921px;
    rotate: -72deg;
    top: 116px;
    left: -207px;
  }
}

#arrow {
  position: fixed;
  bottom: 70px;
  right: 20px;
  opacity: 0.7;
  z-index: 9;
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  #arrow {
    right: 40px;
  }
}
@media screen and (min-width: 1200px) {
  #arrow {
    right: 40px;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  #arrow:hover {
    opacity: 1;
  }
}
#arrow img {
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 1200px) {
  #arrow img {
    width: 80px;
    height: 80px;
  }
}

.footer {
  padding-top: 27px;
  background-color: #F6F5F5;
}
@media screen and (min-width: 1200px) {
  .footer {
    padding-top: 46px;
    padding-bottom: 33px;
  }
}

.footer__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1200px) {
  .footer__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.footer__boxes {
  max-width: 375px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer__boxes {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .footer__boxes {
    width: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 100px;
    margin: 0 auto;
  }
}

.footer__left-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px;
  padding-bottom: 25px;
}
@media screen and (min-width: 1200px) {
  .footer__left-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media screen and (min-width: 1200px) {
  .footer__logo-box {
    gap: 17px;
  }
}
.footer__logo-box img {
  width: 26px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .footer__logo-box img {
    width: 40px;
  }
}

.footer__logo-title {
  font-weight: 700;
  font-family: "Raleway", "sans-serif";
}
@media screen and (min-width: 1200px) {
  .footer__logo-title {
    font-size: 36px;
  }
}

.footer__sns-box {
  position: relative;
  width: 8px;
  height: 8px;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .footer__sns-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    gap: 20px;
    width: 340px;
    height: 19px;
  }
}
.footer__sns-box img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 1200px) {
  .footer__sns-box img {
    position: relative;
    width: 18px;
    height: auto;
    z-index: 2;
  }
}
.footer__sns-box::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  width: 16px;
  height: 16px;
  background-color: #000;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .footer__sns-box::before {
    left: 7%;
    width: 35px;
    height: 35px;
    z-index: 1;
  }
}

.footer__right-box {
  font-size: 14px;
  font-family: "Raleway", "sans-serif";
  padding-bottom: 25px;
}
@media screen and (min-width: 1200px) {
  .footer__right-box {
    font-size: 20px;
  }
}

.right-box__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 59px;
  padding-left: 7%;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .right-box__top {
    gap: 96px;
  }
}
.right-box__top a {
  font-weight: 700;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.right-box__top a:hover {
  color: #F2C6C7;
}

.right-box__down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 59px;
  padding-left: 22%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .right-box__down {
    gap: 96px;
  }
}
.right-box__down a {
  font-weight: 700;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.right-box__down a:hover {
  color: #F2C6C7;
}

.footer__copy-sp {
  display: block;
  text-align: center;
  font-family: "Raleway", "sans-serif";
  padding-bottom: 5px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 1200px) {
  .footer__copy-sp {
    display: none;
  }
}

.home__fv {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .home__fv {
    padding-bottom: 59px;
  }
}

.home__fv-inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1200px) {
  .home__fv-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.home__fv-title {
  font-size: 36px;
  font-family: "Raleway", "sans-serif";
  font-weight: 700;
  padding-top: 132px;
  padding-left: 67px;
  letter-spacing: 0.14rem;
}
@media screen and (min-width: 1200px) {
  .home__fv-title {
    font-size: 64px;
    padding-top: 191px;
    padding-left: 197px;
  }
}

.home__category-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  font-family: "Raleway", "sans-serif";
  padding-top: 75px;
}
@media screen and (min-width: 1200px) {
  .home__category-box {
    font-size: 24px;
    gap: 58px;
    padding-top: 185px;
  }
}

.home__category a {
  font-weight: 700;
}

.home__category.is-active a {
  -webkit-text-decoration: underline #E89192;
          text-decoration: underline #E89192;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.home__fv-background-img {
  position: absolute;
  top: 48px;
  left: 90px;
  max-width: 170px;
  width: 100%;
  height: auto;
  opacity: 0.5;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .home__fv-background-img {
    max-width: 314px;
    left: 232px;
  }
}

.blog__home {
  padding-top: 58px;
}

.blog__home-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1200px) {
  .blog__home-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 20px;
    padding-bottom: 100px;
  }
}

.blog__box-outer-frame {
  overflow: hidden;
}

.attachment-post-thumbnail {
  max-width: 375px;
  width: 100%;
  height: 195px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog__home-box-img {
  max-width: 375px;
  width: 100%;
  height: 195px;
  -o-object-fit: cover;
     object-fit: cover;
}

.pagination {
  padding: 90px 0;
}

.pagination__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.pagination__number {
  padding: 6px 10px;
  background-color: #F6F5F5;
  border-radius: 4px;
}

.blog-details {
  position: relative;
  overflow: hidden;
}

.blog-details__inner {
  padding-left: 15px;
  padding-right: 15px;
}

.blog-details-fv-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding-top: 40px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .blog-details-fv-box {
    max-width: 1090px;
    padding-bottom: 0px;
  }
}
.blog-details-fv-box img {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .date-content__blog-details {
    font-size: 20px;
  }
}

.blog-details__content-box1 {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 60px;
}
@media screen and (min-width: 1200px) {
  .blog-details__content-box1 {
    max-width: 900px;
    padding-top: 120px;
  }
}
.blog-details__content-box1 h1 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  padding-left: 10px;
}
@media screen and (min-width: 1200px) {
  .blog-details__content-box1 h1 {
    font-size: 30px;
    padding-bottom: 20px;
    text-align: center;
  }
}
.blog-details__content-box1 h1::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 5px;
  height: 34px;
  background-color: #E89192;
}
@media screen and (min-width: 1200px) {
  .blog-details__content-box1 h1::before {
    left: -16px;
    width: 8px;
    height: 46px;
  }
}

.blog-details__content-box2 {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .blog-details__content-box2 {
    max-width: 900px;
  }
}
.blog-details__content-box2 h2 {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  padding-left: 10px;
  margin-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .blog-details__content-box2 h2 {
    font-size: 24px;
    margin-top: 40px;
  }
}
.blog-details__content-box2 h2::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 4px;
  height: 30px;
  background-color: #E89192;
}
@media screen and (min-width: 1200px) {
  .blog-details__content-box2 h2::before {
    width: 5px;
    height: 34px;
  }
}
.blog-details__content-box2 p {
  padding-top: 10px;
  padding-bottom: 30px;
  letter-spacing: 0.1rem;
  line-height: 1.8rem;
}
@media screen and (min-width: 1200px) {
  .blog-details__content-box2 p {
    font-size: 18px;
    line-height: 2.4rem;
  }
}
.blog-details__content-box2 img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .blog-details__content-box2 img {
    width: 50%;
    margin: 20px auto 20px auto;
    border-radius: 10px;
  }
}

.pagination__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
@media screen and (min-width: 1200px) {
  .pagination__boxes {
    gap: 100px;
  }
}

.pagination__left-right-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  padding: 5px 10px;
  background-color: #E89192;
  border-radius: 4px;
  opacity: 0.7;
}

.blog-details__background-img {
  position: absolute;
  top: 25%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1280px;
  height: auto;
  opacity: 0.03;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .blog-details__background-img {
    top: 40%;
    opacity: 0.02;
  }
}

.new-articles {
  padding-bottom: 100px;
}
@media screen and (min-width: 1200px) {
  .new-articles {
    max-width: 1280px;
    margin: 0 auto;
    padding-bottom: 130px;
  }
}

.new-articles__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1200px) {
  .new-articles__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.new-articles__title {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (min-width: 1200px) {
  .new-articles__title {
    font-size: 24px;
  }
}
.new-articles__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #505050;
}

.new-articles__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1200px) {
  .new-articles__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}

.new-articles__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  max-width: 375px;
}
.new-articles__box img {
  width: 100%;
}

.home__sub-text {
  padding-top: 90px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .home__sub-text {
    font-size: 20px;
    padding-top: 120px;
    padding-left: 270px;
  }
}

.page-contact {
  padding-top: 100px;
}

.page-contact__background-img {
  opacity: 0.05;
  top: 187px;
  left: calc(-50% + 94px);
}
@media screen and (min-width: 1200px) {
  .page-contact__background-img {
    top: 30px;
    left: calc(-50% + 323px);
  }
}

.contact__thanks-text-box {
  padding: 120px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1200px) {
  .contact__thanks-text-box {
    padding-top: 150px;
    padding-left: 200px;
  }
}

@media screen and (min-width: 1200px) {
  .contact__thanks-text {
    font-size: 18px;
  }
}

.privacy {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .privacy {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .privacy {
    padding-top: 140px;
    padding-bottom: 120px;
  }
}

.privacy__inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .privacy__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.privacy__container {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .privacy__container {
    max-width: 800px;
  }
}

.privacy__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding-bottom: 60px;
}

.privacy__title {
  font-family: "Raleway", "sans-serif";
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.privacy__box {
  padding-bottom: 80px;
}

.privacy__box-title {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 10px;
}

.privacy__box-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.privacy__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.privacy__li {
  position: relative;
  padding-left: 20px;
}
.privacy__li::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
}