@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 767.9px) {
  * {
    font-size: 1.5rem;
  }
}

img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  text-align: left;
  font-weight: 500;
  line-height: 1.6;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  -webkit-animation: fadeIn 1.2s ease-out normal;
  animation: fadeIn 1.2s ease-out normal;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}
html body {
  overflow-x: hidden;
}

@media (scripting: none) {
  html {
    scroll-behavior: smooth;
  }
}
@-webkit-keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
    transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
    transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
@keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
    transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
    transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
.eb {
  font-family: "EB Garamond", "Georgia", "Noto Serif JP", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho",
    "游明朝体", serif;
  word-break: break-word;
}

.qw {
  font-family: "Qwitcher Grypen", "Segoe Script", "Segoe Print", "Zapfino",
    serif;
  white-space: nowrap;
}

.noto {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
}

button {
  cursor: pointer;
  color: var(--font-color);
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
}

.upper {
  text-transform: uppercase;
}

.capi {
  text-transform: capitalize;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

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

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

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

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

a {
  font-size: 1.6rem;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
  color: var(--font-color);
}
@media screen and (max-width: 767.9px) {
  a {
    font-size: 1.5rem;
  }
}
a:hover {
  opacity: 0.7;
}

.wrapper {
  width: 100%;
}

.cont {
  width: 87.6%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 2000px) {
  .cont {
    max-width: 1400px;
  }
}

li {
  list-style: none;
}

.delayfade li {
  opacity: 0;
}

/* fadeUp */
.fade {
  opacity: 0;
}

.fade.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@media screen and (min-width: 1350px) {
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 11;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    min-height: 103px;
  }
  .header .header_logo {
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 2px;
  }
  .header .header_logo h1,
  .header .header_logo span {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    margin-top: -4px;
    margin-bottom: 16px;
  }
  .header .header_logo a {
    position: relative;
  }
  .header .header_logo img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
  }
  .header .header_logo .ham_block {
    display: none;
  }
  .header__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 45px 190px 10px 45px;
  }
  .header-wrap {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
  }
  #menu-gnav {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 18px;
    position: relative;
    margin-right: 18px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  #menu-gnav::after {
    content: "";
    background: #81817e;
    width: 1px;
    height: 29px;
    position: absolute;
    right: 0;
    top: 10px;
  }
  #menu-gnav .ham_block {
    display: none;
  }
  #menu-gnav a {
    height: 100%;
  }
  #menu-gnav .header_menu {
    -webkit-box-align: bottom;
    -ms-flex-align: bottom;
    align-items: bottom;
  }
  #menu-gnav .sub-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 42px;
    left: -50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: #fff;
    padding: 40px 40px 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
  }
  #menu-gnav .sub-menu li {
    margin-bottom: 20px;
  }
  #menu-gnav .sub-menu a {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 1.5rem;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 10px;
    color: var(--font-color);
    font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
      "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  }
  #menu-gnav .sub-menu a .menu-sub-label {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.1em;
  }
  #menu-gnav .sub-menu a .menu-label {
    color: #848282;
    position: relative;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: left;
  }
  #menu-gnav .sub-menu a .menu-label::before {
    content: "";
    width: 29px;
    height: 1px;
    background: var(--font-color);
    position: absolute;
    bottom: -5px;
    left: 0;
  }
  body.home .header {
    background-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(var(--background1-color)),
      to(var(--background2-color))
    );
    background-image: linear-gradient(
      90deg,
      var(--background1-color),
      var(--background2-color)
    );
  }
}
#menu-gnav li {
  position: relative;
}
#menu-gnav li a {
  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: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#menu-gnav li .menu-sub-label {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  line-height: 1;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
#menu-gnav li .menu-label {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  text-align: center;
}
#menu-gnav .menu-item-has-children {
  position: relative;
}
#menu-gnav .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}

.header_contact {
  width: 49px;
  height: 49px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-content: center;
  margin-right: 12px;
}
.header_contact img {
  width: 17px;
}

.header_tel span {
  display: block;
}
.header_tel .tel_title {
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
.header_tel .tel {
  font-weight: 500;
  font-size: 3rem;
  line-height: 1;
}
.header_tel .tel span {
  font-size: 2.2rem;
  display: inline;
}

.header_reservation {
  position: fixed;
  top: 18px;
  right: 20px;
}
@media screen and (max-width: 1349.9px) {
  .header_reservation {
    top: 80px;
  }
}
@media screen and (max-width: 767.9px) {
  .header_reservation {
    top: auto;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: 0.5s opacity;
    transition: 0.5s opacity;
  }
}
.header_reservation a {
  display: grid;
  place-content: center;
  min-width: 159px;
  max-width: 180px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--button-color);
  padding: 20px;
}
@media screen and (max-width: 767.9px) {
  .header_reservation a {
    width: 100vw;
    aspect-ratio: unset;
    border-radius: 0;
    display: block;
    height: 100%;
    padding: 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: unset;
  }
}
.header_reservation p {
  color: #fff;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .header_reservation p {
    font-size: 1.2rem;
    text-align: left;
  }
}
.header_reservation .header_reservation_title {
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 1.4;
}
@media screen and (max-width: 767.9px) {
  .header_reservation .header_reservation_title {
    font-size: 1.8rem;
  }
}

.header_line {
  position: fixed;
  top: 160px;
  right: 120px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 1349.9px) {
  .header_line {
    top: 200px;
  }
}
@media screen and (max-width: 767.9px) {
  .header_line {
    top: auto;
    bottom: 40px;
    right: -20px;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
  }
}
.header_line a {
  display: grid;
  place-content: center;
  background: #d2f980;
  min-width: 159px;
  max-width: 180px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 10px 30px;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.04);
}
.header_line a img {
  width: 30px;
  margin: 0 auto 4px;
  -o-object-fit: contain;
  object-fit: contain;
}
.header_line a p {
  text-align: center;
}
.header_line a .header_line_title {
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  padding-bottom: 3px;
  position: relative;
  margin-bottom: 5px;
}
.header_line a .header_line_title::after {
  content: "";
  width: 45px;
  height: 1px;
  position: absolute;
  background: var(--font-color);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}
.header_line a .header_line_text {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.HeightMin .header_reservation {
  opacity: 1;
}
.HeightMin .header_line {
  right: 20px;
  top: 190px;
}
@media screen and (max-width: 1349.9px) {
  .HeightMin .header_line {
    top: 250px;
  }
}
@media screen and (max-width: 767.9px) {
  .HeightMin .header_line {
    opacity: 1;
    top: auto;
    bottom: 40px;
    right: -20px;
  }
}

@media screen and (max-width: 1349.9px) {
  body.home .header {
    background: none;
  }
  body.home .header.HeightMin {
    background: #fff;
  }
}

@media screen and (max-width: 1349.9px) {
  .header-wrap_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
  }
  .header {
    position: fixed;
    padding-bottom: 10px;
    padding-top: 10px;
    height: 80px;
    top: 0;
    display: block;
    width: 100%;
    background: #fff;
    z-index: 11;
  }
  .header::before {
    content: "";
    width: 100%;
    height: 72px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(0, transparent),
      color-stop(108%, #fff)
    );
    background-image: linear-gradient(360deg, transparent 0 0%, #fff 108%);
    z-index: 2;
  }
  .header .header_logo {
    position: relative;
    z-index: 99;
  }
  .header .header_logo img {
    max-height: 50px;
    max-width: 250px;
  }
}
@media screen and (max-width: 1349.9px) and (max-width: 767.9px) {
  .header .header_logo {
    max-width: calc(100% - 70px);
  }
}
@media screen and (max-width: 1349.9px) {
  .header .header_logo h1,
  .header .header_logo span {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 5px;
  }
  .header .header_logo a {
    position: relative;
  }
  .header .header_logo img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
  }
  .header .header_logo .ham_block {
    display: block;
  }
  .header .header_logo .ham_none {
    display: none;
  }
  .header .header__inner {
    padding: 0 20px;
    height: 100%;
  }
  .header .header-wrap {
    border-radius: 0;
    background-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(var(--background1-color)),
      to(var(--background2-color))
    );
    background-image: linear-gradient(
      90deg,
      var(--background1-color),
      var(--background2-color)
    );
    display: block;
    margin: 0;
    width: 100%;
    height: 100dvh;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    padding-right: 24px;
    padding-top: 100px;
    padding-bottom: 24px;
    padding-left: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    overflow: auto;
  }
  .header .header_menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .header #menu-gnav {
    margin-bottom: 50px;
  }
  .header #menu-gnav ul {
    gap: 30px;
  }
  .header #menu-gnav .menu-item-has-children .menu-sub-label {
    display: none;
  }
  .header #menu-gnav .menu-item-has-children ul {
    margin: 10px 0 25px 16px;
  }
  .header #menu-gnav .menu-item-has-children ul li a {
    display: block;
  }
  .header #menu-gnav .menu-item-has-children ul li a .menu-sub-label {
    display: block;
    font-size: 1.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    min-height: 16px;
  }
  .header #menu-gnav .menu-item-has-children ul li a .menu-sub-label::before {
    content: "";
    width: 12px;
    height: 1px;
    background: var(--font-color);
  }
  .header #menu-gnav .menu-item-has-children ul li a .menu-label {
    display: none;
  }
  .header #menu-gnav li {
    margin-bottom: 15px;
  }
  .header #menu-gnav li a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
  }
  .header #menu-gnav .menu-label {
    font-size: 1.6rem;
  }
  .header #menu-gnav .menu-sub-label {
    text-align: left;
  }
  .header #menu-gnav .sub-menu {
    display: block;
    margin-top: 10px;
    text-align: left;
  }
  .header #menu-gnav .sub-menu li {
    margin-bottom: 10px;
  }
  .header .header-contact {
    margin-top: 50px;
  }
}
.hamburger {
  display: none;
}

@media screen and (max-width: 1349.9px) {
  .hamburger {
    display: block;
    cursor: pointer;
    width: 48px;
    height: 48px;
    position: fixed;
    top: 14px;
    right: 10px;
    z-index: 99;
    border: none;
    background: transparent;
  }
  .hamburger__line,
  .hamburger__line::before {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    width: 30px;
    height: 1px;
    background: var(--font-color);
  }
  .hamburger__line {
    top: 20px;
    left: 0px;
  }
  .hamburger__line::before {
    content: "";
    top: 8px;
    left: 0;
  }
  /*activeクラスが付与されると線が回転して×になる*/
  .hamburger.active span {
    top: 16px;
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
    width: 34px;
  }
  .hamburger.active span::before {
    top: 0px;
    left: 0px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 34px;
  }
  .header-wrap.active {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
  }
}
#scroll-top {
  position: fixed;
  z-index: 5;
  bottom: 30px;
  right: 30px;
  width: 14px;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 767.9px) {
  #scroll-top {
    right: 20px;
    bottom: 180px;
    width: 10px;
  }
}
#scroll-top a {
  width: 100%;
  height: 100%;
  display: block;
}

#scroll-top img {
  display: block;
}
@media screen and (max-width: 767.9px) {
  #scroll-top img {
    aspect-ratio: 10/40;
    -o-object-position: top;
    object-position: top;
  }
}

.gradation {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--background1-color)),
    to(var(--background2-color))
  );
  background-image: linear-gradient(
    90deg,
    var(--background1-color),
    var(--background2-color)
  );
}

.main_visual {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
  padding-top: 132px;
  margin-top: 0;
  aspect-ratio: 1400/929;
  max-height: 929px;
}
@media screen and (max-width: 1349.9px) {
  .main_visual {
    margin-top: 0;
    padding-top: 0;
  }
}
@media (max-width: 1300px) {
  .main_visual {
    min-height: 700px;
  }
}
@media screen and (max-width: 767.9px) {
  .main_visual {
    aspect-ratio: unset;
    padding-top: 0;
    height: calc(100svh - 80px);
    min-height: 700px;
  }
}
.main_visual h1 {
  position: absolute;
  color: #222;
  left: -120px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  font-size: 1rem;
  z-index: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
  max-width: 410px;
  white-space: nowrap;
}
@media (max-width: 1300px) {
  .main_visual h1 {
    left: -170px;
  }
}
.main_visual .main_swiper,
.main_visual .main_swiper2 {
  width: calc(100vw - 200px);
}
@media (max-width: 1300px) {
  .main_visual .main_swiper,
  .main_visual .main_swiper2 {
    width: 100%;
    min-height: 700px;
  }
}
.main_visual .main_swiper .swiper-slide,
.main_visual .main_swiper2 .swiper-slide {
  width: 1200px;
  aspect-ratio: 1206/716;
  position: relative;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: margin-top 0.8s ease;
  transition: margin-top 0.8s ease;
  margin-bottom: 90px;
}
@media (max-width: 1300px) {
  .main_visual .main_swiper .swiper-slide,
  .main_visual .main_swiper2 .swiper-slide {
    width: 100%;
    height: calc(100svh - 80px);
    min-height: 700px;
  }
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_swiper .swiper-slide,
  .main_visual .main_swiper2 .swiper-slide {
    aspect-ratio: 4/5;
    margin-bottom: 0;
    height: calc(100svh - 80px);
    min-height: 700px;
  }
}
.main_visual .main_swiper .swiper-slide picture,
.main_visual .main_swiper2 .swiper-slide picture {
  display: contents;
}
.main_visual .main_swiper .swiper-slide img,
.main_visual .main_swiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}
.main_visual .main_swiper .swiper-slide-next,
.main_visual .main_swiper2 .swiper-slide-next {
  margin-top: 157px;
  margin-bottom: 0;
}
@media (max-width: 1300px) {
  .main_visual .main_swiper .swiper-slide-next,
  .main_visual .main_swiper2 .swiper-slide-next {
    margin-top: 0;
  }
}
.main_visual .main_swiper .swiper-slide-active img,
.main_visual .main_swiper .swiper-slide-prev img,
.main_visual .main_swiper .swiper-slide-duplicate-active img,
.main_visual .main_swiper2 .swiper-slide-active img,
.main_visual .main_swiper2 .swiper-slide-prev img,
.main_visual .main_swiper2 .swiper-slide-duplicate-active img {
  -webkit-animation: fadezoom 8s 0s forwards;
  animation: fadezoom 8s 0s forwards;
}
.main_visual .main_swiper2 .swiper-slide {
  width: 100%;
}
@-webkit-keyframes fadezoom {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes fadezoom {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.main_visual .pagination_wrap {
  z-index: 3;
  position: absolute;
  left: 1235px;
  bottom: 80px;
  height: 220px;
  width: 40px;
  font-weight: 500;
}
@media (max-width: 1300px) {
  .main_visual .pagination_wrap {
    left: auto;
    right: 0;
    bottom: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .main_visual .pagination_wrap {
    right: -10px;
    height: 200px;
  }
}
.main_visual .pagination_wrap span {
  position: absolute;
  top: 0;
}
.main_visual .pagination_wrap .swiper-pagination-extra {
  position: absolute;
  bottom: 0;
}
.main_visual .pagination_wrap .swiper-pagination {
  height: 1px;
  width: 148px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background: #b6b3b3;
  position: absolute;
  left: -70px;
  top: 110px;
}
@media screen and (max-width: 767.9px) {
  .main_visual .pagination_wrap .swiper-pagination {
    width: 100px;
    left: -46px;
  }
}
.main_visual .pagination_wrap .swiper-pagination-progressbar-fill {
  background: var(--font-color);
}
.main_visual .main_visual-top_lead {
  position: absolute;
  left: 110px;
  bottom: 227px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .main_visual .main_visual-top_lead {
    left: 50px;
    bottom: 180px;
  }
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual-top_lead {
    bottom: 200px;
  }
}
.main_visual .main_visual-top_lead .page_top_p {
  font-size: 2.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
}
@media screen and (max-width: 1024px) {
  .main_visual .main_visual-top_lead .page_top_p {
    font-size: 1.6rem;
  }
}
.main_visual .main_visual-top_lead .page_top_title {
  font-weight: 600;
  font-size: 7.3rem;
  line-height: 1.5;
  color: #fff;
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  .main_visual .main_visual-top_lead .page_top_title {
    font-size: 5rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual-top_lead .page_top_title {
    font-size: 3.6rem;
  }
}
.main_visual .pic-up_news {
  position: absolute;
  bottom: 60px;
  left: 85px;
  z-index: 2;
  max-width: 70vw;
}
@media (max-width: 1300px) {
  .main_visual .pic-up_news {
    bottom: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .main_visual .pic-up_news {
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: unset;
    width: 90vw;
    padding-right: 30px;
  }
}
.main_visual .pic-up_news a {
  background: #fff;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 30px 68px;
}
@media screen and (max-width: 767.9px) {
  .main_visual .pic-up_news a {
    padding: 10px 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.main_visual .pic-up_news .eb {
  font-weight: 600;
  font-size: 3.2rem;
  margin-top: -5px;
}
@media screen and (max-width: 767.9px) {
  .main_visual .pic-up_news .eb {
    font-size: 2rem;
    margin-top: 0;
  }
}
.main_visual .pic-up_news time {
  margin-left: 36px;
  padding-right: 15px;
  margin-right: 15px;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .main_visual .pic-up_news time {
    font-size: 1.2rem;
    margin-left: 20px;
  }
}
.main_visual .pic-up_news time::after {
  content: "";
  width: 1px;
  height: 11px;
  background: #81817e;
  position: absolute;
  right: 0;
  top: 8px;
  opacity: 0.3;
}
@media screen and (max-width: 767.9px) {
  .main_visual .pic-up_news time::after {
    content: none;
  }
}
.main_visual .pic-up_news .news_title {
  font-size: 1.5rem;
  font-weight: 500;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .main_visual .pic-up_news .news_title {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    font-size: 1.3rem;
  }
}

.heading1 {
  font-size: 3.4rem;
  line-height: 1.9705882353;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .heading1 {
    font-size: 2.2rem;
  }
}

.heading2 {
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767.9px) {
  .heading2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767.9px) {
  .heading2.eb {
    font-size: 2.8rem;
  }
}

.more_btn {
  background: var(--button-color);
  min-width: 270px;
  position: relative;
  padding: 21px 20px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .more_btn {
    min-width: 250px;
    padding: 18px 20px;
  }
}
.more_btn span {
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: block;
}
.more_btn::before {
  content: "";
  width: 36px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 23px;
}
.more_btn::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 23px;
}

.more_btn.white {
  background: #fff;
  border: solid 1px var(--font-color);
}
.more_btn.white span {
  color: var(--font-color);
}
.more_btn.white::before,
.more_btn.white::after {
  background: var(--font-color);
}

.top-concept {
  position: relative;
  overflow: hidden;
  margin-top: -90px;
  padding-top: 190px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .top-concept {
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.top-concept .bg_img {
  position: absolute;
  opacity: 0.11;
  top: 0;
  left: 0;
  width: 1128px;
  height: auto;
  aspect-ratio: 1128/233;
  max-width: 100%;
  -webkit-filter: blur(4px);
  filter: blur(4px);
}
.top-concept .qw {
  font-size: 32.4rem;
  color: var(--bg-text-color);
  position: absolute;
  left: -35px;
  top: 100px;
  opacity: 0.2;
  -webkit-transform: rotate(-8deg);
  transform: rotate(-8deg);
  line-height: 1;
  -webkit-transform-origin: left;
  transform-origin: left;
}
@media screen and (max-width: 767.9px) {
  .top-concept .qw {
    font-size: 10rem;
    left: -5px;
    top: 100px;
  }
}
.top-concept .cont {
  position: relative;
  gap: 40px;
}
.top-concept .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 68px;
}
.top-concept .left .heading2 {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .top-concept .left .heading2 {
    margin-bottom: 30px;
  }
}
.top-concept .left h2 {
  font-size: 4.1rem;
  line-height: 1.6144578313;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 80px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767.9px) {
  .top-concept .left h2 {
    font-size: 2rem;
    margin-left: 0;
    margin-bottom: 30px;
  }
}
.top-concept .left .description {
  letter-spacing: 0.05em;
  line-height: 2.125;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .top-concept .left .description {
    margin-bottom: 30px;
  }
}
.top-concept .right {
  margin-right: -50px;
}
@media screen and (max-width: 767.9px) {
  .top-concept .right {
    margin-right: 0;
    margin-left: auto;
  }
}
.top-concept .right img {
  display: block;
}
.top-concept .right .img1 {
  width: 314px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 314/574;
  margin-left: 100px;
}
@media screen and (max-width: 767.9px) {
  .top-concept .right .img1 {
    width: 180px;
  }
}
.top-concept .right .img2 {
  width: 238px;
  max-width: 90%;
  height: auto;
  aspect-ratio: 238/415;
  margin-top: -142px;
}
@media screen and (max-width: 767.9px) {
  .top-concept .right .img2 {
    width: 150px;
  }
}

.top-message {
  position: relative;
  padding-top: 103px;
}
@media screen and (max-width: 767.9px) {
  .top-message {
    padding-top: 60px;
  }
}
.top-message .bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 176px);
}
@media screen and (max-width: 767.9px) {
  .top-message .bg_img {
    height: calc(100% - 100px);
  }
}
.top-message .cont {
  padding: 147px 0 105px 174px;
  position: relative;
  gap: 80px;
}
@media screen and (max-width: 767.9px) {
  .top-message .cont {
    padding: 40px 0 40px 60px;
    gap: 40px;
  }
}
.top-message .cont::before {
  content: "";
  position: absolute;
  width: calc(100% + 50vw - 50%);
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.94);
}
.top-message .cont .eb {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 3.4rem;
  font-weight: 500;
  left: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -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;
  z-index: 2;
  top: 0;
}
@media screen and (max-width: 767.9px) {
  .top-message .cont .eb {
    font-size: 2rem;
    left: 15px;
  }
}
.top-message .cont .eb::before {
  content: "";
  width: 1px;
  height: 197px;
  background: var(--font-color);
}
@media screen and (max-width: 767.9px) {
  .top-message .cont .eb::before {
    height: 100px;
  }
}
.top-message .cont .left {
  width: 254px;
  height: auto;
  aspect-ratio: 254/448;
  position: relative;
  max-width: 35%;
}
@media screen and (max-width: 767.9px) {
  .top-message .cont .left {
    max-width: 70%;
  }
}
.top-message .cont .left img {
  display: block;
  width: 100%;
  height: 100%;
}
.top-message .cont .right {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .top-message .cont .right {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.top-message .cont .right h2 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 45px;
}
@media screen and (max-width: 767.9px) {
  .top-message .cont .right h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.top-message .cont .right p {
  margin-bottom: 40px;
  line-height: 2.125;
  margin-left: 20px;
}
@media screen and (max-width: 767.9px) {
  .top-message .cont .right p {
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.top-message .cont .right .description {
  margin-left: 65px;
}
@media screen and (max-width: 767.9px) {
  .top-message .cont .right .description {
    margin-left: 0;
  }
}

.heading_wrap {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 60px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767.9px) {
  .heading_wrap {
    gap: 30px;
    margin-bottom: 30px;
  }
}
.heading_wrap .heading2 {
  line-height: 1;
  min-width: 200px;
}
.heading_wrap .description {
  line-height: 2.125;
}

.gallery_list .img {
  width: 100%;
  height: auto;
  aspect-ratio: 343/430;
  position: relative;
  padding-right: 32px;
  z-index: 2;
}
.gallery_list .img img {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.04));
}
.gallery_list .img .category {
  position: absolute;
  bottom: -18px;
  right: -10px;
  font-size: 7.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  -webkit-transform: rotate(-11deg);
  transform: rotate(-11deg);
  color: #222222;
  text-transform: lowercase;
}
.gallery_list .detail,
.gallery2_wrap .detail {
  position: relative;
  z-index: 2;
  margin-left: 24px;
  padding-left: 43px;
  padding-right: 32px;
  padding-top: 20px;
  padding-bottom: 30px;
}
.gallery_list .detail::after,
.gallery2_wrap .detail::after {
  content: "";
  width: 1px;
  height: 144px;
  position: absolute;
  background: var(--font-color);
  bottom: 30px;
  left: 26px;
}
.gallery_list .detail .stylist,
.gallery2_wrap .detail .stylist {
  color: var(--bg-text-color);
  margin-bottom: 5px;
  font-size: 1.3rem;
}
@media screen and (max-width: 767.9px) {
  .gallery_list .detail .stylist,
  .gallery2_wrap .detail .stylist {
    font-size: 1.1rem;
  }
}
.gallery_list .detail .gallery_title,
.gallery2_wrap .detail .gallery_title {
  font-size: 1.5rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
}
@media screen and (max-width: 767.9px) {
  .gallery_list .detail .gallery_title,
  .gallery2_wrap .detail .gallery_title {
    font-size: 1.4rem;
  }
}

.top-gallery {
  padding: 100px 0 110px;
}
@media screen and (max-width: 767.9px) {
  .top-gallery {
    padding: 60px 0 80px;
  }
}
.top-gallery ul {
  margin-bottom: 34px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 35px;
}
@media screen and (max-width: 767.9px) {
  .top-gallery ul {
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top-gallery ul li {
  width: calc((100% - 70px) / 3);
}
@media screen and (max-width: 767.9px) {
  .top-gallery ul li {
    width: 300px;
    max-width: 100%;
  }
}
.top-gallery ul li:nth-child(1) {
  margin-top: 60px;
}
@media screen and (max-width: 767.9px) {
  .top-gallery ul li:nth-child(1) {
    margin-top: 0;
  }
}
.top-gallery ul li:nth-child(2) {
  margin-top: 190px;
}
@media screen and (max-width: 767.9px) {
  .top-gallery ul li:nth-child(2) {
    margin-top: 0;
    margin-left: auto;
  }
}
.top-gallery ul li {
  position: relative;
}
.top-gallery ul li::before {
  content: "";
  width: calc(100% - 24px);
  height: calc(100% - 65px);
  position: absolute;
  top: 65px;
  right: 0;
  background: #fff;
}
.top-gallery .more_btn {
  margin-left: auto;
}

.top-menu {
  overflow: hidden;
  background: #fff;
  padding: 140px 0;
}
@media screen and (max-width: 767.9px) {
  .top-menu {
    padding: 100px 0 80px;
  }
}
.top-menu .menu-swiper {
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-menu .menu-swiper {
    padding-bottom: 80px;
  }
}
.top-menu .swiper-slide {
  padding-left: 11%;
}
.top-menu .swiper-slide .img_wrap {
  position: relative;
  margin-bottom: 70px;
  height: 575px;
}
@media screen and (max-width: 767.9px) {
  .top-menu .swiper-slide .img_wrap {
    height: auto;
    aspect-ratio: 10/7;
    margin-bottom: 30px;
  }
}
.top-menu .swiper-slide img {
  display: block;
  height: auto;
  width: 100%;
  height: 100%;
}
.top-menu .swiper-slide .heading_wrap {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  padding: 60px 50px 45px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  margin-bottom: 0;
  max-width: 80%;
}
@media screen and (max-width: 767.9px) {
  .top-menu .swiper-slide .heading_wrap {
    padding: 30px 25px;
  }
}
.top-menu .swiper-slide .heading_wrap .eb {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.3;
  word-break: break-all;
}
@media screen and (max-width: 767.9px) {
  .top-menu .swiper-slide .heading_wrap .eb {
    font-size: 1.8rem;
  }
}
.top-menu .swiper-slide .heading_wrap h2 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767.9px) {
  .top-menu .swiper-slide .heading_wrap h2 {
    font-size: 1.2rem;
  }
}
.top-menu .swiper-slide .heading_wrap .bg_text {
  position: absolute;
  font-size: 16.2rem;
  letter-spacing: 0.05em;
  opacity: 0.35;
  -webkit-transform: rotate(-8deg);
  transform: rotate(-8deg);
  line-height: 1;
  top: -80px;
  left: -35px;
  -webkit-transform-origin: left;
  transform-origin: left;
}
@media screen and (max-width: 767.9px) {
  .top-menu .swiper-slide .heading_wrap .bg_text {
    font-size: 7rem;
    top: -30px;
    left: -20px;
  }
}
.top-menu .swiper-slide .detail_wrap {
  gap: 50px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-right: 10.8%;
}
@media screen and (max-width: 767.9px) {
  .top-menu .swiper-slide .detail_wrap {
    padding-right: 0;
    gap: 30px;
  }
}
.top-menu .swiper-slide .detail_wrap .left {
  max-width: 530px;
}
@media screen and (max-width: 767.9px) {
  .top-menu .swiper-slide .detail_wrap .left {
    max-width: unset;
    width: 100%;
  }
}
.top-menu .swiper-slide .detail_wrap .left p {
  line-height: 2.125;
}
.top-menu .swiper-slide .detail_wrap p.eb {
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767.9px) {
  .top-menu .swiper-slide .detail_wrap p.eb {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}
.top-menu .swiper-slide .detail_wrap .more_btn {
  margin-bottom: 10px;
  margin-right: 15px;
}
@media screen and (max-width: 767.9px) {
  .top-menu .swiper-slide .detail_wrap .more_btn {
    margin: 0 auto;
  }
}
.top-menu .swiper-button-next,
.top-menu .swiper-button-prev {
  width: 73px;
  height: auto;
  aspect-ratio: 1/1;
  border: solid 1px var(--font-color);
  border-radius: 50%;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767.9px) {
  .top-menu .swiper-button-next,
  .top-menu .swiper-button-prev {
    width: 45px;
  }
}
.top-menu .swiper-button-next::after,
.top-menu .swiper-button-prev::after {
  content: "";
  width: 9px;
  height: 16px;
  background-image: url(../img/right@2x.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.top-menu .swiper-button-prev::after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.top-menu .swiper-button-next {
  right: 10.7%;
  top: 568px;
}
@media screen and (max-width: 767.9px) {
  .top-menu .swiper-button-next {
    top: auto;
    bottom: 0;
    right: auto;
    left: 80px;
  }
}
.top-menu .swiper-button-prev {
  right: calc(10.7% + 85px);
  left: auto;
  top: 568px;
}
@media screen and (max-width: 767.9px) {
  .top-menu .swiper-button-prev {
    top: auto;
    right: auto;
    left: 30px;
    bottom: 0;
  }
}
.top-menu .hide {
  display: none;
}
.top-menu .swiper-pagination {
  top: -60px;
  right: 0;
  padding-right: 10.8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 20px;
  height: 50px;
}
@media screen and (max-width: 767.9px) {
  .top-menu .swiper-pagination {
    height: 30px;
    top: -50px;
    gap: 15px;
    padding-right: 40px;
  }
}
.top-menu .swiper-pagination .swiper-pagination-bullet {
  background: none;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  width: auto;
  height: auto;
  margin: 0;
}
@media screen and (max-width: 767.9px) {
  .top-menu .swiper-pagination .swiper-pagination-bullet {
    font-size: 2rem;
  }
}
.top-menu .swiper-pagination .swiper-pagination-bullet-active {
  text-decoration: underline;
  text-underline-offset: 6px;
}
@media screen and (max-width: 767.9px) {
  .top-menu .swiper-pagination .swiper-pagination-bullet-active {
    text-underline-offset: 4px;
  }
}

.staff-item {
  width: 249px;
  max-width: 100%;
}
.staff-item .position {
  border: solid 1px var(--font-color);
  font-size: 1.1rem;
  padding: 0 22px 1px;
  margin-bottom: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .staff-item .position {
    padding: 0 15px 1px;
  }
}
.staff-item .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2px 13px;
  font-size: 2.2rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 767.9px) {
  .staff-item .name {
    font-size: 1.8rem;
  }
}
.staff-item .eb {
  color: #a8a4a4;
  font-size: 1.3rem;
}
@media screen and (max-width: 767.9px) {
  .staff-item .eb {
    font-size: 1.2rem;
  }
}

.top-staff {
  overflow: hidden;
  padding-bottom: 110px;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-staff {
    padding-bottom: 80px;
  }
}
@media (min-width: 2000px) {
  .top-staff .cont {
    max-width: 1800px;
  }
}
.top-staff .heading2 {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .top-staff .heading2 {
    margin-bottom: 20px;
  }
}
.top-staff .description {
  text-align: center;
  margin-bottom: 50px;
  line-height: 2.125;
}
@media screen and (max-width: 767.9px) {
  .top-staff .description {
    text-align: left;
    margin-bottom: 30px;
  }
}
.top-staff .swiper-slide img {
  aspect-ratio: 250/390;
  display: block;
  margin-bottom: 15px;
}
.top-staff .staff-wrap .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 34px;
}
@media screen and (max-width: 767.9px) {
  .top-staff .staff-wrap .swiper-wrapper {
    gap: 0;
  }
}
.top-staff .staff-wrap .swiper-wrapper .swiper-slide {
  width: calc((100% - 102px) / 4);
}
@media screen and (max-width: 767.9px) {
  .top-staff .staff-wrap .swiper-wrapper .swiper-slide {
    width: 249px;
  }
}
.top-staff .more_btn {
  margin: 65px auto 0;
}
@media screen and (max-width: 767.9px) {
  .top-staff .more_btn {
    margin-top: 50px;
  }
}

.time_wrap {
  gap: 5px 14px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 15px;
}
.time_wrap time {
  font-size: 1.2rem;
  font-weight: 700;
}
.time_wrap .post_category {
  gap: 5px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.time_wrap .post_category p {
  background: var(--sub-button-color);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 2px 13px 1px;
}

.blog_list {
  gap: 30px 24px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 64px;
}
@media screen and (max-width: 767.9px) {
  .blog_list {
    margin-bottom: 50px;
  }
}
.blog_list li {
  width: calc((100% - 48px) / 3);
  position: relative;
  min-width: 300px;
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.04));
}
@media screen and (max-width: 430px) {
  .blog_list li {
    width: 100%;
  }
}
.blog_list li::before {
  content: "";
  width: 100%;
  height: calc(100% - 74px);
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
}
.blog_list a {
  position: relative;
}
.blog_list img {
  width: calc(100% - 14px);
  height: auto;
  aspect-ratio: 357/203;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.04);
}
.blog_list .detail {
  padding: 30px 30px 40px;
}
@media screen and (max-width: 767.9px) {
  .blog_list .detail {
    padding: 20px 20px 30px;
  }
}
.blog_list .blog_title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
}
.blog_list .blog_description {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: -webkit-box;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8571428571;
}

.top-blog {
  padding: 105px 0 110px;
  background: var(--sub-color);
}
@media screen and (max-width: 767.9px) {
  .top-blog {
    padding: 60px 0 80px;
  }
}
.top-blog .cont {
  max-width: 1160px;
}
@media (min-width: 2000px) {
  .top-blog .cont {
    max-width: 1400px;
  }
}
.top-blog .heading_wrap {
  max-width: 1100px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767.9px) {
  .top-blog .heading_wrap {
    margin-bottom: 40px;
  }
}
.top-blog .more_btn {
  margin: 0 auto;
}

.top-product {
  position: relative;
  padding: 108px 0;
}
@media screen and (max-width: 767.9px) {
  .top-product {
    padding: 60px 0;
  }
}
.top-product .bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.38;
  z-index: -1;
}
.top-product .cont {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1024px) {
  .top-product .cont {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top-product .left {
  width: 393px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .top-product .left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
  }
}
.top-product .left img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  aspect-ratio: 393/210;
  min-width: 0px;
}
.top-product .right {
  background: rgba(255, 255, 255, 0.94);
  padding: 70px 7% 88px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .top-product .right {
    padding: 30px 20px;
  }
}
.top-product .right .heading2 {
  margin-bottom: 15px;
}
.top-product .right .heading2 span {
  font-size: 3.3rem;
}
@media screen and (max-width: 767.9px) {
  .top-product .right .heading2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  .top-product .right .heading2 span {
    font-size: 2.1rem;
  }
}
.top-product .right .description {
  line-height: 2.125;
  margin-bottom: 45px;
}
@media screen and (max-width: 767.9px) {
  .top-product .right .description {
    margin-bottom: 30px;
  }
}
.top-product .right .more_btn {
  margin-left: auto;
}
@media screen and (max-width: 767.9px) {
  .top-product .right .more_btn {
    margin: 0 auto;
  }
}

.top-recruit {
  position: relative;
  padding: 135px 0;
}
@media screen and (max-width: 767.9px) {
  .top-recruit {
    padding: 60px 0;
  }
}
.top-recruit .bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.46;
  z-index: -1;
}
.top-recruit h2,
.top-recruit p {
  text-align: center;
}
.top-recruit h2 {
  margin-bottom: 20px;
}
.top-recruit .description {
  margin-bottom: 60px;
  line-height: 2.125;
}
@media screen and (max-width: 767.9px) {
  .top-recruit .description {
    margin-bottom: 40px;
  }
}
.top-recruit .more_btn {
  margin: 0 auto;
}

.top-salon {
  padding: 90px 0 100px;
  background: #fff;
  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 (max-width: 767.9px) {
  .top-salon {
    padding: 60px 0;
  }
}
.top-salon .wrapper {
  border: solid 1px #d9d8d7;
  width: calc(100% - 90px);
  margin: 0 auto;
  padding: 70px 0 80px;
}
@media screen and (max-width: 767.9px) {
  .top-salon .wrapper {
    width: calc(100% - 40px);
    padding: 30px 0;
  }
}
.top-salon .more_btn {
  margin-top: 30px;
  padding-right: 50px;
}
.top-salon .cont {
  gap: 50px;
}
@media screen and (max-width: 767.9px) {
  .top-salon .cont {
    gap: 40px;
  }
}
.top-salon .cont .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .top-salon .cont .left {
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
.top-salon .cont .left h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .top-salon .cont .left h2 {
    margin-bottom: 30px;
  }
}
.top-salon .cont .right {
  width: 50%;
}
@media screen and (max-width: 767.9px) {
  .top-salon .cont .right {
    width: 100%;
  }
}
.top-salon .cont .right img {
  display: block;
  aspect-ratio: 551/488;
  height: auto;
}

.bottom_contact_box {
  background: #31302f;
  position: relative;
  padding: 178px 0 156px;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box {
    padding: 60px 0;
  }
}
.bottom_contact_box::before {
  content: "";
  width: calc(100% - 90px);
  height: calc(100% - 90px);
  border: solid 1px #fff;
  position: absolute;
  top: 45px;
  left: 45px;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box::before {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    top: 20px;
    left: 20px;
  }
}
.bottom_contact_box .bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.39;
  z-index: 1;
}
.bottom_contact_box .cont {
  gap: 40px 30px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box .cont {
    row-gap: 30px;
  }
}
.bottom_contact_box h2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .bottom_contact_box h2 {
    width: 100%;
    text-align: center;
  }
}
.bottom_contact_box h2 span {
  display: block;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box h2 span {
    font-size: 2.6rem;
  }
}
.bottom_contact_box .right {
  padding-right: 55px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .bottom_contact_box .right {
    padding: 0;
    margin: 0 auto;
  }
}
.bottom_contact_box .right a {
  min-width: 489px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: solid 5px #fff;
  text-align: center;
  color: #fff;
  padding: 10px 20px;
  min-height: 100px;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box .right a {
    min-width: unset;
    border-width: 2px;
    min-height: 80px;
  }
}
.bottom_contact_box .right .contact_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 17px;
  position: relative;
  padding-right: 95px;
  padding-left: 95px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box .right .contact_link {
    padding-right: 75px;
    padding-left: 30px;
  }
}
.bottom_contact_box .right .contact_link span {
  line-height: 1;
  font-size: 2.8rem;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box .right .contact_link span {
    line-height: 1;
    font-size: 2rem;
  }
}
.bottom_contact_box .right .contact_link .base {
  font-size: 2.8rem;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box .right .contact_link .base {
    font-size: 2rem;
  }
}
.bottom_contact_box .right .contact_link::before {
  content: "";
  width: 36px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 30px;
}
.bottom_contact_box .right .contact_link::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 30px;
}
.bottom_contact_box .right .tel_link {
  margin-top: 30px;
  font-size: 3.7rem;
  font-weight: 400;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box .right .tel_link {
    font-size: 2.8rem;
  }
}
.bottom_contact_box .right .tel_link .base {
  font-size: 2.6rem;
  margin-right: 6px;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box .right .tel_link .base {
    font-size: 2rem;
  }
}
.bottom_contact_box .right .hours {
  text-align: right;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-top: 8px;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact_box .right .hours {
    font-size: 1.2rem;
  }
}

.footer {
  background: #fff;
}
.footer .footer_main {
  padding-top: 70px;
  padding-bottom: 100px;
  gap: 40px 30px;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_main {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.footer .footer_main .footer_logo {
  margin-bottom: 30px;
  margin-top: 10px;
}
.footer .footer_main .sns {
  gap: 13px;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_main .sns {
    gap: 8px;
  }
}
.footer .footer_main .sns p {
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  margin-right: 7px;
  font-weight: 700;
}
.footer .footer_main .sns a {
  width: 62px;
  height: 62px;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_main .sns a {
    width: 45px;
    height: 45px;
  }
}
.footer .fnav {
  gap: 20px 65px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 767.9px) {
  .footer .fnav {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
.footer .fnav .menu-fnav_1-container::before {
  content: "info";
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "EB Garamond", "Georgia", "Noto Serif JP", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho",
    "游明朝体", serif;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}
@media screen and (max-width: 767.9px) {
  .footer .fnav .menu-fnav_1-container::before {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
}
.footer .fnav .menu-fnav_2-container::before {
  content: "Service";
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "EB Garamond", "Georgia", "Noto Serif JP", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho",
    "游明朝体", serif;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}
@media screen and (max-width: 767.9px) {
  .footer .fnav .menu-fnav_2-container::before {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
}
.footer .fnav a {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.5;
  display: block;
}
.footer .fnav .menu-fnav_3-container a {
  font-size: 1.5rem;
}
@media screen and (max-width: 767.9px) {
  .footer .fnav .menu-fnav_3-container a {
    font-size: 1.4rem;
  }
}
.footer .footer_bottom {
  background: var(--footer_color);
  padding: 15px 0;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_bottom {
    padding-bottom: 70px;
  }
}
.footer .footer_bottom .cont {
  gap: 5px 20px;
}
.footer .footer_bottom small {
  font-size: 1.1rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_bottom small {
    width: 100%;
  }
}
.footer .footer_bottom a {
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_bottom a {
    width: 100%;
  }
}

.page_top {
  margin-top: 103px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1349.9px) {
  .page_top {
    margin-top: 80px;
  }
}
.page_top .cont {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: unset;
  padding-left: 8.9%;
  padding-right: 8.9%;
}
@media screen and (max-width: 767.9px) {
  .page_top .cont {
    padding-left: 0;
  }
}
.page_top .cont .page_top_p {
  background: rgba(255, 255, 255, 0.3);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 536px;
  max-width: 100%;
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
  padding: 90px 28px 50px;
}
@media screen and (max-width: 767.9px) {
  .page_top .cont .page_top_p {
    font-size: 3.6rem;
    padding: 40px 20px;
    min-width: 90%;
  }
}
.page_top .cont .bg_text {
  position: absolute;
  bottom: 67px;
  left: 37px;
  font-size: 20rem;
  opacity: 0.2;
  -webkit-transform: rotate(-8deg);
  transform: rotate(-8deg);
  color: #fff;
  line-height: 1;
  -webkit-transform-origin: left;
  transform-origin: left;
}
@media screen and (max-width: 767.9px) {
  .page_top .cont .bg_text {
    font-size: 10rem;
    left: 10px;
    bottom: auto;
    top: -50px;
  }
}
.page_top .img_wrap {
  height: 367px;
}
@media screen and (max-width: 767.9px) {
  .page_top .img_wrap {
    height: 300px;
  }
}
.page_top .img_wrap img {
  width: 100%;
  height: 100%;
}

.pankuzu {
  padding: 20px 0;
}
@media screen and (max-width: 767.9px) {
  .pankuzu {
    padding: 15px 0;
  }
}
.pankuzu .cont {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 5px 15px;
}
@media screen and (max-width: 767.9px) {
  .pankuzu .cont {
    gap: 5px 10px;
  }
}
.pankuzu .cont .bar {
  width: 23px;
  height: 1px;
  background: var(--font-color);
}
@media screen and (max-width: 767.9px) {
  .pankuzu .cont .bar {
    width: 12px;
  }
}
.pankuzu .cont a,
.pankuzu .cont span {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .pankuzu .cont a,
  .pankuzu .cont span {
    font-size: 1.2rem;
  }
}

.anchor {
  margin-bottom: 40px;
}
.anchor .cont {
  gap: 13px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.anchor a {
  position: relative;
  background: var(--font-color);
  width: calc((100% - 39px) / 4);
  min-width: 265px;
  padding: 18px 10px 12px;
  min-height: 115px;
  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;
}
@media screen and (max-width: 767.9px) {
  .anchor a {
    min-width: unset;
    width: 48%;
    padding-bottom: 20px;
    min-height: unset;
  }
}
.anchor a img {
  display: block;
  margin: 0 auto;
  max-height: 43px;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .anchor a img {
    max-height: 30px;
  }
}
.anchor a p {
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
  max-width: calc(100% - 80px);
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .anchor a p {
    max-width: unset;
    font-size: 1.4rem;
  }
}
.anchor a::before {
  content: "";
  width: 36px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 23px;
  right: 16px;
}
@media screen and (max-width: 767.9px) {
  .anchor a::before {
    bottom: 13px;
  }
}
.anchor a::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 20px;
  right: 16px;
}
@media screen and (max-width: 767.9px) {
  .anchor a::after {
    bottom: 10px;
  }
}

.salon-detail-wrap .salon-detail {
  margin-bottom: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.9px) {
  .salon-detail-wrap .salon-detail {
    margin-bottom: 8px;
  }
}
.salon-detail-wrap .salon-detail .eb {
  font-size: 2rem;
  font-weight: 700;
  min-width: 100px;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
@media screen and (max-width: 767.9px) {
  .salon-detail-wrap .salon-detail .eb {
    font-size: 1.8rem;
    min-width: 80px;
  }
}
.salon-detail-wrap .salon-detail img {
  width: 14px;
  margin-left: 10px;
  margin-bottom: -2px;
}
.salon-detail-wrap .salon_name {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 20px;
  gap: 10px 14px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 15px;
}
.salon-detail-wrap .salon_name img {
  max-width: 265px;
}
@media screen and (max-width: 767.9px) {
  .salon-detail-wrap .salon_name img {
    max-width: 200px;
  }
}
.salon-detail-wrap .salon_name span {
  font-size: 1.8rem;
  line-height: 1.2;
}
@media screen and (max-width: 767.9px) {
  .salon-detail-wrap .salon_name span {
    font-size: 1.5rem;
  }
}
.salon-detail-wrap .salon-subname {
  font-size: 1.4rem;
  margin-bottom: 35px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .salon-detail-wrap .salon-subname {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
}
.salon-detail-wrap .description {
  line-height: 2.125;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .salon-detail-wrap .description {
    margin-bottom: 40px;
  }
}

.salon_wrap:nth-child(2n-1) {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--background1-color)),
    to(var(--background2-color))
  );
  background-image: linear-gradient(
    90deg,
    var(--background1-color),
    var(--background2-color)
  );
}

.salon-reservation-link {
  margin-top: 40px;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .salon-reservation-link {
    margin-top: 30px;
  }
}
.salon-reservation-link a {
  background: #ffa200;
  min-height: 65px;
  padding: 13px 12px 10px;
  display: block;
  border: solid 1px #d9d8d7;
  gap: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .salon-reservation-link a {
    font-size: 1.4rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.salon-reservation-link a img {
  max-width: 120px;
}
@media screen and (max-width: 767.9px) {
  .salon-reservation-link a img {
    max-width: 100px;
  }
}

.salon_wrap {
  padding: 120px 0;
}
@media screen and (max-width: 767.9px) {
  .salon_wrap {
    padding: 60px 0;
  }
}
.salon_wrap .cont {
  gap: 50px;
}
@media screen and (max-width: 767.9px) {
  .salon_wrap .cont {
    gap: 30px;
  }
}
.salon_wrap .left {
  width: 500px;
  max-width: 60%;
}
@media screen and (max-width: 767.9px) {
  .salon_wrap .left {
    width: 100%;
    max-width: unset;
  }
}
.salon_wrap .salon-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.salon_wrap .salon-detail .eb {
  font-size: 2rem;
  font-weight: 700;
  min-width: 100px;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
@media screen and (max-width: 767.9px) {
  .salon_wrap .salon-detail .eb {
    font-size: 1.8rem;
    min-width: 80px;
  }
}
.salon_wrap .salon-detail img {
  width: 14px;
  margin-left: 10px;
  margin-top: 5px;
}
.salon_wrap .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767.9px) {
  .salon_wrap .right {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
@media (min-width: 2500px) {
  .salon_wrap .right {
    margin-right: calc(50% - 40vw);
  }
}
.salon_wrap .right img {
  width: 100%;
  display: block;
  aspect-ratio: 700/640;
  height: auto;
}
.salon_wrap .salon-map {
  width: 100%;
}
.salon_wrap .salon-map .map {
  height: 450px;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767.9px) {
  .salon_wrap .salon-map .map {
    height: 300px;
    margin-right: 0;
  }
}
.salon_wrap .salon-map iframe {
  width: 100%;
  height: 100%;
}

.page-concept {
  position: relative;
  overflow: hidden;
}
.page-concept .bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 1134px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1134/420;
  opacity: 0.1;
  -webkit-filter: blur(4px);
  filter: blur(4px);
}
.page-concept .concept1 {
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page-concept .concept1 {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.page-concept .concept1 .flex-top {
  gap: 50px;
}
@media screen and (max-width: 767.9px) {
  .page-concept .concept1 .flex-top {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.page-concept .concept1 .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 85px;
}
.page-concept .concept1 h2 {
  font-size: 4rem;
  letter-spacing: 0.2em;
  line-height: 1.675;
  font-weight: 500;
  margin-bottom: 110px;
}
@media screen and (max-width: 767.9px) {
  .page-concept .concept1 h2 {
    font-size: 2.6rem;
    margin-bottom: 0;
  }
}
.page-concept .concept1 .heading_wrap {
  position: relative;
  margin-bottom: 85px;
}
@media screen and (max-width: 767.9px) {
  .page-concept .concept1 .heading_wrap {
    margin-bottom: 40px;
  }
}
.page-concept .concept1 .heading_wrap .bg_text {
  position: absolute;
  color: var(--bg-text-color);
  font-size: 32.4rem;
  left: -180px;
  top: -180px;
  opacity: 0.2;
  -webkit-transform: rotate(-8deg);
  transform: rotate(-8deg);
  line-height: 1;
  font-weight: 400;
  -webkit-transform-origin: left;
  transform-origin: left;
}
@media screen and (max-width: 767.9px) {
  .page-concept .concept1 .heading_wrap .bg_text {
    font-size: 10rem;
    left: -20px;
    top: -60px;
  }
}
.page-concept .concept1 h3 {
  font-size: 4.1rem;
  line-height: 1.6341463415;
  letter-spacing: 0.05em;
  margin-bottom: 80px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .page-concept .concept1 h3 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
.page-concept .concept1 .right {
  width: 420px;
  max-width: 100%;
  margin-right: -50px;
}
@media screen and (max-width: 767.9px) {
  .page-concept .concept1 .right {
    margin-right: 0;
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}
.page-concept .concept1 .right img {
  display: block;
}
.page-concept .concept1 .right .img1 {
  max-width: 100%;
  height: auto;
  aspect-ratio: 414/574;
  padding-left: 100px;
}
@media screen and (max-width: 767.9px) {
  .page-concept .concept1 .right .img1 {
    width: 180px;
    padding-left: 0;
    margin-left: 100px;
    aspect-ratio: 314/574;
  }
}
.page-concept .concept1 .right .img2 {
  width: 238px;
  max-width: 90%;
  height: auto;
  aspect-ratio: 238/415;
  margin-top: -142px;
}
@media screen and (max-width: 767.9px) {
  .page-concept .concept1 .right .img2 {
    width: 150px;
  }
}

.concept2 {
  position: relative;
  padding-top: 60px;
  padding-bottom: 250px;
}
@media screen and (max-width: 767.9px) {
  .concept2 {
    padding-bottom: 120px;
  }
}
.concept2 h2 {
  text-align: center;
  font-size: 4.4rem;
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .concept2 h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}
.concept2 .bg_img2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1400/402;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .concept2 .bg_img2 {
    height: 200px;
  }
}
.concept2 .bg_img2 img {
  opacity: 0.2;
  width: 100%;
  height: 100%;
  display: block;
}
.concept2 .cont {
  position: relative;
  z-index: 2;
}
.concept2 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: 130px;
}
@media screen and (max-width: 767.9px) {
  .concept2 ul {
    gap: 60px;
  }
}
.concept2 ul li {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
}
.concept2 ul li .detail {
  background: #fff;
  padding: 80px 60px 50px 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .concept2 ul li .detail {
    padding: 40px 20px 30px;
  }
}
.concept2 ul li .number {
  position: absolute;
  top: -100px;
  left: 0;
  -webkit-transform: rotate(-11deg);
  transform: rotate(-11deg);
  font-size: 16.2rem;
  opacity: 0.5;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .concept2 ul li .number {
    font-size: 8rem;
    top: -50px;
  }
}
.concept2 ul li h3 {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .concept2 ul li h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
.concept2 ul li .img {
  width: 388px;
  min-height: 420px;
  max-width: 50%;
}
@media screen and (max-width: 767.9px) {
  .concept2 ul li .img {
    max-width: unset;
    width: 100%;
    min-height: unset;
    aspect-ratio: 1/1;
    height: auto;
    max-height: 300px;
  }
}
.concept2 ul li .img img {
  width: 100%;
  height: 100%;
  display: block;
}

.common-page {
  padding-top: 80px;
}
@media screen and (max-width: 767.9px) {
  .common-page {
    padding-top: 40px;
  }
}

.h_description {
  line-height: 2.125;
}

.page-staff .anchor {
  margin-bottom: 20px;
}
.page-staff .staff-archives-item {
  background: #fff;
  padding: 120px 0;
}
@media screen and (max-width: 767.9px) {
  .page-staff .staff-archives-item {
    padding: 60px 0;
  }
}
.page-staff .staff-archives-item h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 20px;
  gap: 14px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page-staff .staff-archives-item h2 {
    margin-bottom: 30px;
  }
}
.page-staff .staff-archives-item h2 img {
  max-width: 265px;
}
@media screen and (max-width: 767.9px) {
  .page-staff .staff-archives-item h2 img {
    max-width: 200px;
  }
}
.page-staff .staff-archives-item h2 span {
  font-size: 1.8rem;
  line-height: 1.2;
}
.page-staff .staff-archives-item ul {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 90px 34px;
}
@media screen and (max-width: 767.9px) {
  .page-staff .staff-archives-item ul {
    gap: 40px 20px;
  }
}
.page-staff .staff-archives-item ul li {
  width: 249px;
}
@media screen and (max-width: 767.9px) {
  .page-staff .staff-archives-item ul li {
    max-width: 249px;
    width: calc((100% - 20px) / 2);
  }
}
.page-staff .staff-archives-item ul li a {
  display: block;
}
@media screen and (max-width: 767.9px) {
  .page-staff .staff-archives-item ul li .name {
    font-size: 1.5rem;
    row-gap: 0;
  }
  .page-staff .staff-archives-item ul li .name .eb {
    font-size: 1.1rem;
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .page-staff .staff-archives-item ul li .position {
    padding: 0 10px 1px;
    line-height: 1.4;
  }
}
.page-staff .staff-archives-item ul li .img {
  height: auto;
  aspect-ratio: 249/389;
  margin-bottom: 15px;
}
.page-staff .staff-archives-item ul li .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.page-staff .staff-archives-item:nth-child(2n) {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--background1-color)),
    to(var(--background2-color))
  );
  background-image: linear-gradient(
    90deg,
    var(--background1-color),
    var(--background2-color)
  );
}

.article-staff {
  margin-bottom: 200px;
}
@media screen and (max-width: 767.9px) {
  .article-staff {
    margin-bottom: 120px;
  }
}
.article-staff .cont {
  max-width: 1000px;
}
.article-staff .detail {
  margin-bottom: 60px;
}
.article-staff .detail .img {
  width: 43.2%;
  height: auto;
  aspect-ratio: 432/674;
}
@media screen and (max-width: 767.9px) {
  .article-staff .detail .img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 30px;
  }
}
.article-staff .detail .img img {
  width: 100%;
  height: 100%;
}
.article-staff .detail .right {
  width: 50%;
}
@media screen and (max-width: 767.9px) {
  .article-staff .detail .right {
    width: 100%;
  }
}
.article-staff .detail .right .name {
  margin-bottom: 15px;
}
.article-staff .detail .right .sns {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 15px;
}
.article-staff .detail .right .sns img {
  -o-object-fit: contain;
  object-fit: contain;
}
.article-staff .detail .right .insta img {
  width: 20px;
}
.article-staff .detail .right .x img {
  width: 20px;
}
.article-staff .detail .right .youtube img {
  width: 18px;
}
.article-staff .detail .right .tiktok img {
  width: 25px;
}
.article-staff .detail .right h3 {
  margin-top: 45px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .article-staff .detail .right h3 {
    margin-top: 20px;
  }
}
.article-staff .detail .right .salon-reservation-link {
  margin-top: 60px;
}
@media screen and (max-width: 767.9px) {
  .article-staff .detail .right .salon-reservation-link {
    margin-top: 40px;
  }
}
.article-staff .more_btn {
  padding-left: 80px;
}
.article-staff .more_btn::before,
.article-staff .more_btn::after {
  right: auto;
  left: 25px;
}

.page-menu {
  padding-top: 140px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page-menu {
    padding-top: 80px;
  }
}
.page-menu .menu_content .menu_heading {
  position: relative;
  gap: 0 26px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 30px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767.9px) {
  .page-menu .menu_content .menu_heading {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.page-menu .menu_content .menu_heading .qw {
  position: absolute;
  opacity: 0.5;
  font-size: 16.2rem;
  font-weight: 400;
  -webkit-transform: rotate(-11deg);
  transform: rotate(-11deg);
  bottom: 27px;
  left: -106px;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-transform-origin: left;
  transform-origin: left;
}
@media screen and (max-width: 1024px) {
  .page-menu .menu_content .menu_heading .qw {
    left: -50px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-menu .menu_content .menu_heading .qw {
    font-size: 8rem;
    left: -20px;
    top: -70px;
  }
}
.page-menu .menu_content .menu_heading h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .page-menu .menu_content .menu_heading h2 {
    text-align: left;
  }
}
.page-menu .menu_content .menu_heading h2 span {
  display: block;
  text-align: center;
  line-height: 1;
  color: #dd9618;
}
@media screen and (max-width: 767.9px) {
  .page-menu .menu_content .menu_heading h2 span {
    text-align: left;
  }
}
.page-menu .menu_content .menu_heading .description {
  color: #444444;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 12px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .page-menu .menu_content .menu_heading .description {
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    margin-top: 5px;
  }
}
.page-menu .menu_content .menu_detail {
  gap: 40px 150px;
  margin-bottom: 280px;
}
@media screen and (max-width: 1024px) {
  .page-menu .menu_content .menu_detail {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    margin-bottom: 120px;
  }
}
.page-menu .menu_content .menu_detail .img {
  margin-right: calc(50% - 50vw);
  aspect-ratio: 432/569;
  height: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .page-menu .menu_content .menu_detail .img {
    margin-right: 0;
    margin-left: auto;
    width: 100%;
    max-width: 400px;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    margin-top: 0;
  }
}
.page-menu .menu_content .menu_detail .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.page-menu .menu_content .menu_detail .left {
  width: 61.45%;
}
@media screen and (max-width: 767.9px) {
  .page-menu .menu_content .menu_detail .left {
    width: 100%;
  }
}
.page-menu .menu_content .menu_detail .left h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-top: 60px;
}
@media screen and (max-width: 767.9px) {
  .page-menu .menu_content .menu_detail .left h3 {
    font-size: 1.6rem;
  }
}
.page-menu .menu_content .menu_detail .left .table_wrap {
  margin-top: 60px;
}
@media screen and (max-width: 767.9px) {
  .page-menu .menu_content .menu_detail .left .table_wrap {
    margin-top: 30px;
  }
}
.page-menu .menu_content .menu_detail .left .table_wrap:nth-child(2) {
  margin-top: 40px;
}
@media screen and (max-width: 767.9px) {
  .page-menu .menu_content .menu_detail .left .table_wrap:nth-child(2) {
    margin-top: 30px;
  }
}
.page-menu .menu_content .menu_detail .left table {
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .page-menu .menu_content .menu_detail .left table {
    margin-bottom: 5px;
  }
}
.page-menu .menu_content .menu_detail .left table,
.page-menu .menu_content .menu_detail .left tbody {
  display: block;
}
.page-menu .menu_content .menu_detail .left tr {
  padding: 30px 0 20px;
  letter-spacing: 0.05em;
  border-bottom: solid 1px #d9d8d7;
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .page-menu .menu_content .menu_detail .left tr {
    padding: 20px 0;
  }
}
.page-menu .menu_content .menu_detail .left th {
  font-weight: 500;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.page-menu .menu_content .menu_detail .left th span {
  font-size: 1.4rem;
  color: #444444;
  display: block;
  margin-top: 5px;
}
@media screen and (max-width: 767.9px) {
  .page-menu .menu_content .menu_detail .left th span {
    font-size: 1.2rem;
  }
}
.page-menu .menu_content .menu_detail .left .comment {
  font-size: 1.4rem;
  color: #444444;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (max-width: 767.9px) {
  .page-menu .menu_content .menu_detail .left .comment {
    font-size: 1.2rem;
  }
}
.page-menu .menu_content:nth-child(2n) .menu_detail {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.page-menu .menu_content:nth-child(2n) .menu_detail .img {
  margin-right: auto;
  margin-left: calc(50% - 50vw);
}

.blog_wrapper {
  padding-bottom: 200px;
}
@media screen and (max-width: 767.9px) {
  .blog_wrapper {
    padding-bottom: 100px;
  }
}
.blog_wrapper .archive_content {
  gap: 80px 85px;
}
.blog_wrapper .right {
  width: 250px;
}
@media screen and (max-width: 430px) {
  .blog_wrapper .right {
    width: 100%;
  }
}
.blog_wrapper .blog_list {
  gap: 70px 20px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .blog_wrapper .blog_list {
    row-gap: 40px;
    margin-bottom: 40px;
  }
}
.blog_wrapper .blog_list li {
  width: 100%;
  max-width: 371px;
}
.blog_wrapper .blog_list li::before {
  -webkit-box-shadow: 0px 3px 7px rgba(101, 87, 65, 0.03);
  box-shadow: 0px 3px 7px rgba(101, 87, 65, 0.03);
}
.blog_wrapper .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.archive-cont {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .archive-cont {
    margin-bottom: 40px;
  }
}
.archive-cont h2 {
  font-size: 2.4rem;
  font-weight: 500;
  padding: 0 0 10px;
  border-bottom: solid 1px var(--font-color);
}
.archive-cont.category ul {
  margin-top: 25px;
  margin-left: 18px;
}
.archive-cont.category ul li a {
  line-height: 2.8125;
  font-weight: 500;
}
.archive-cont.archive ul li {
  border-bottom: solid 1px #d9d8d7;
}
.archive-cont.archive ul .accordion__title button {
  padding: 25px 40px 25px 12px;
  background: #fff;
  font-size: 1.6rem;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
  width: 100%;
  text-align: left;
  color: var(--font-color);
  font-weight: 500;
}
.archive-cont.archive ul .accordion__title button::after {
  content: "";
  width: 12px;
  height: 10px;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: var(--font-color);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.archive-cont.archive ul .accordion__content {
  padding: 0 0 30px 25px;
}
.archive-cont.archive ul .accordion__content a {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  display: block;
  color: #444444;
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .archive-cont.archive ul .accordion__content a {
    font-size: 1.5rem;
  }
}
.archive-cont.archive ul .accordion__content[aria-hidden="true"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.archive-cont.archive ul .accordion.is-opened .accordion__title button::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767.9px) {
  .pagination ul {
    gap: 5px;
  }
}
.pagination ul .page-numbers {
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #222222;
  opacity: 0.3;
  text-underline-offset: 6px;
}
@media screen and (max-width: 767.9px) {
  .pagination ul .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
  }
}
.pagination ul .current {
  text-decoration: underline;
  opacity: 1;
}
.pagination ul .next::before {
  content: "";
  width: 10px;
  height: 10px;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background: #222;
}
.pagination ul .prev::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #222;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.blog_single_page {
  padding-bottom: 0;
}
.blog_single_page article .wrapper {
  border: solid 1px #d9d8d7;
  padding: 30px 50px 50px 45px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .blog_single_page article .wrapper {
    padding: 20px 20px 30px;
  }
}
.blog_single_page article .blog_title {
  font-size: 3rem;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .blog_single_page article .blog_title {
    font-size: 2rem;
    font-weight: 500;
  }
}
.blog_single_page article .time_wrap {
  margin-bottom: 30px;
}
.blog_single_page article .content {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .blog_single_page article .content {
    margin-bottom: 30px;
  }
}
.blog_single_page article .content * {
  line-height: 1.875;
}
.blog_single_page article .content p {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .blog_single_page article .content p {
    margin-bottom: 30px;
  }
}
.blog_single_page article .content img {
  display: block;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .blog_single_page article .content img {
    margin-bottom: 30px;
  }
}
.blog_single_page article .more_btn {
  padding-left: 80px;
}
.blog_single_page article .more_btn::before,
.blog_single_page article .more_btn::after {
  right: auto;
  left: 25px;
}
.blog_single_page .archive_content {
  margin-bottom: 130px;
}
@media screen and (max-width: 767.9px) {
  .blog_single_page .archive_content {
    margin-bottom: 100px;
  }
}
.blog_single_page .related {
  background: var(--sub-color);
  padding: 100px 0 180px;
}
@media screen and (max-width: 767.9px) {
  .blog_single_page .related {
    padding: 60px 0 80px;
  }
}
.blog_single_page .related h2 {
  max-width: 1100px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767.9px) {
  .blog_single_page .related h2 {
    margin-bottom: 40px;
  }
}
.blog_single_page .related .cont {
  max-width: 1160px;
}
.blog_single_page .related .blog_list {
  margin-bottom: 0;
}

.page-service_top {
  position: relative;
}
.page-service_top .gradation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 134px);
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .page-service_top .gradation {
    height: calc(100% - 80px);
  }
}

.service1 {
  padding-top: 80px;
  margin-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .service1 {
    margin-bottom: 60px;
  }
}
.service1 .flex-top {
  gap: 60px;
}
@media screen and (max-width: 767.9px) {
  .service1 .flex-top {
    gap: 30px;
  }
}
.service1 h2 {
  font-size: 3.6rem;
  line-height: 1.8611111111;
  margin-bottom: 85px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .service1 h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.service1 .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 116px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .service1 .left {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    padding-top: 0;
  }
}
.service1 .left .bg_text {
  position: absolute;
  font-size: 16.2rem;
  letter-spacing: 0.05em;
  opacity: 0.35;
  -webkit-transform: rotate(-11deg);
  transform: rotate(-11deg);
  -webkit-transform-origin: left;
  transform-origin: left;
  line-height: 1;
  top: -50px;
  left: -55px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .service1 .left .bg_text {
    font-size: 8rem;
    left: -20px;
    top: -65px;
  }
}
.service1 .right {
  padding-right: 20px;
  width: 52%;
  margin-right: calc(50% - 50vw);
  margin-left: auto;
}
@media screen and (max-width: 767.9px) {
  .service1 .right {
    width: 100%;
    max-width: 500px;
    padding-right: 0;
  }
}
.service1 .right img {
  height: auto;
  display: block;
  aspect-ratio: 349/494;
  width: 63.3%;
}
.service1 .right .img1 {
  margin-left: auto;
}
.service1 .right .img2 {
  margin-top: -23.5%;
}

.service2 {
  margin-bottom: 170px;
}
@media screen and (max-width: 767.9px) {
  .service2 {
    margin-bottom: 60px;
  }
}
.service2 .worry {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .service2 .worry {
    padding-right: 20px;
  }
}
.service2 .worry .cont {
  position: relative;
  padding: 0 50px 65px 20px;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .service2 .worry .cont {
    padding: 0 20px 30px;
  }
}
.service2 .worry .cont::before {
  content: "";
  width: 100%;
  height: calc(100% - 40px);
  position: absolute;
  border: solid 1px #d9d8d7;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .service2 .worry .cont::before {
    height: calc(100% - 20px);
  }
}
.service2 .worry .cont .bar {
  width: 1px;
  height: 144px;
  position: absolute;
  background: var(--font-color);
  left: 103px;
  bottom: -100px;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .service2 .worry .cont .bar {
    height: 100px;
    left: 30px;
    bottom: -70px;
  }
}
.service2 .worry h2 {
  padding-left: 15px;
  padding-right: 60px;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .service2 .worry h2 {
    padding: 0 10px;
    font-size: 1.9rem;
  }
}
.service2 .worry .flex-top {
  padding-top: 30px;
  gap: 30px;
}
@media screen and (max-width: 767.9px) {
  .service2 .worry .flex-top {
    padding-top: 20px;
  }
}
.service2 .worry .left {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .service2 .worry .left {
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
.service2 .worry .left ul {
  margin-left: 20px;
}
@media screen and (max-width: 767.9px) {
  .service2 .worry .left ul {
    margin-left: 0;
  }
}
.service2 .worry .img {
  width: 48.5%;
  height: auto;
  aspect-ratio: 500/336;
}
@media screen and (max-width: 767.9px) {
  .service2 .worry .img {
    width: 100%;
  }
}
.service2 .worry .img img {
  width: 100%;
  height: 100%;
}
.service2 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: 18px;
}
@media screen and (max-width: 767.9px) {
  .service2 ul {
    gap: 10px;
  }
}
.service2 ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .service2 ul li {
    font-size: 1.5rem;
  }
}
.service2 ul li::before {
  content: "・";
}
.service2 .solution {
  position: relative;
  z-index: 1;
}
.service2 .solution .cont {
  position: relative;
}
.service2 .solution .cont .inner {
  position: relative;
  padding: 90px 50px 40px;
  margin-right: -50px;
  margin-left: 50px;
  margin-top: -50px;
  border: solid 1px #d9d8d7;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .service2 .solution .cont .inner {
    margin-right: 0;
    margin-left: 0;
    /*margin-left: 30px;*/
    padding: 50px 20px 30px;
    margin-top: -30px;
  }
}
.service2 .solution h2 {
  margin-bottom: 55px;
  margin-left: 20px;
}
@media screen and (max-width: 767.9px) {
  .service2 .solution h2 {
    margin-bottom: 20px;
    font-size: 1.9rem;
  }
}
.service2 .solution .flex-top {
  gap: 40px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 767.9px) {
  .service2 .solution .flex-top {
    gap: 20px;
  }
}
.service2 .solution .flex-top .img {
  width: 31%;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767.9px) {
  .service2 .solution .flex-top .img {
    width: 100%;
  }
}
.service2 .solution .flex-top .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.service2 .solution .flex-top .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .service2 .solution .flex-top .right {
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}

.service3 {
  padding-bottom: 0;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .service3 {
    margin-bottom: 40px;
  }
}
.service3 .cont {
  max-width: 1052px;
}
.service3 h2 {
  font-weight: 500;
}
.service3 ul {
  gap: 124px 65px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media screen and (max-width: 767.9px) {
  .service3 ul {
    gap: 60px;
  }
}
.service3 ul li {
  width: calc((100% - 65px) / 2);
  background: #fff;
  border: solid 1px #d9d8d7;
  padding: 50px 50px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .service3 ul li {
    width: 100%;
    padding: 40px 20px 30px;
  }
}
.service3 ul li h3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .service3 ul li h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
.service3 ul li .h_description {
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .service3 ul li .h_description {
    margin-bottom: 20px;
  }
}
.service3 ul li img {
  height: auto;
  width: 100%;
  aspect-ratio: 390/228;
  display: block;
  margin-top: auto;
}

.service4 {
  padding-top: 280px;
  padding-bottom: 130px;
  margin-top: -280px;
}
@media screen and (max-width: 767.9px) {
  .service4 {
    padding-top: 120px;
    margin-top: -100px;
    padding-bottom: 80px;
  }
}
.service4 h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.68;
}
@media screen and (max-width: 767.9px) {
  .service4 h2 {
    font-size: 2.2rem;
  }
}
.service4 .h_description {
  letter-spacing: 0.05em;
}
.service4 ul {
  margin-top: 40px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 30px 35px;
  margin-bottom: 130px;
}
@media screen and (max-width: 767.9px) {
  .service4 ul {
    margin-bottom: 60px;
    row-gap: 60px;
  }
}
.service4 ul li {
  width: calc((100% - 70px) / 3);
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .service4 ul li {
    width: 100%;
    max-width: 300px;
  }
}
.service4 ul li::before {
  content: "";
  width: calc(100% - 24px);
  height: calc(100% - 65px);
  position: absolute;
  top: 65px;
  right: 0;
  background: #fff;
}
.service4 ul li .img {
  width: 100%;
  height: auto;
  aspect-ratio: 343/430;
  position: relative;
  padding-right: 32px;
  z-index: 2;
}
.service4 ul li .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.service4 ul li .detail {
  position: relative;
  z-index: 2;
  margin-left: 24px;
  padding-left: 43px;
  padding-right: 32px;
  padding-top: 20px;
  padding-bottom: 30px;
}
.service4 ul li .detail::after {
  content: "";
  width: 1px;
  height: 144px;
  position: absolute;
  background: var(--font-color);
  bottom: -30px;
  left: 26px;
}
.service4 ul li .detail p {
  font-size: 1.5rem;
  line-height: 1.6;
}
.service4 ul li:nth-child(3n + 1) {
  margin-top: 60px;
}
@media screen and (max-width: 767.9px) {
  .service4 ul li:nth-child(3n + 1) {
    margin-top: 0;
  }
}
.service4 ul li:nth-child(3n + 2) {
  margin-top: 185px;
}
@media screen and (max-width: 767.9px) {
  .service4 ul li:nth-child(3n + 2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .service4 ul li:nth-child(2n) {
    margin-left: auto;
  }
}
.service4 .description2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .service4 .description2 {
    font-size: 1.8rem;
  }
}

.service5 {
  background: var(--sub-color);
  padding: 90px 0 190px;
}
@media screen and (max-width: 767.9px) {
  .service5 {
    padding: 60px 0 80px;
  }
}
.service5 h2 {
  text-align: center;
  margin-bottom: 75px;
}
@media screen and (max-width: 767.9px) {
  .service5 h2 {
    margin-bottom: 30px;
  }
}
.service5 .cont {
  max-width: 1000px;
}
.service5 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: 55px;
}
@media screen and (max-width: 767.9px) {
  .service5 ul {
    gap: 40px;
  }
}
.service5 li {
  position: relative;
  padding: 25px 25px 0;
  z-index: 2;
  gap: 30px;
}
@media screen and (max-width: 767.9px) {
  .service5 li {
    gap: 20px;
  }
  .service5 li::after {
    content: "";
    width: 1px;
    height: 120px;
    position: absolute;
    top: auto;
    bottom: -20px;
    left: 20px;
    background: var(--font-color);
  }
}
.service5 li::before {
  content: "";
  width: 100%;
  height: calc(100% - 30px);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
}
.service5 li .img {
  width: 357px;
  height: auto;
  aspect-ratio: 357/203;
}
@media screen and (max-width: 767.9px) {
  .service5 li .img {
    width: 95%;
    max-width: 400px;
    margin-left: auto;
  }
}
.service5 li .img img {
  display: block;
  width: 100%;
  height: 100%;
}
.service5 li .detail {
  padding-bottom: 30px;
  min-height: 203px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .service5 li .detail {
    min-height: unset;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    padding-bottom: 0;
  }
}
.service5 li .detail .number {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 5px;
  margin-top: -10px;
}
@media screen and (max-width: 767.9px) {
  .service5 li .detail .number {
    font-size: 2.2rem;
  }
}
.service5 li .detail h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.service5 li .detail p {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  position: relative;
  padding-left: 35px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .service5 li .detail p {
    padding-left: 10px;
    padding-bottom: 0;
  }
}
.service5 li .detail p::after {
  content: "";
  width: 1px;
  height: calc(100% + 41px);
  position: absolute;
  top: 8px;
  left: 12px;
  background: var(--font-color);
}
@media screen and (max-width: 767.9px) {
  .service5 li .detail p::after {
    content: none;
  }
}
@media screen and (max-width: 767.9px) {
  .service5 li:last-child::after {
    content: none;
  }
}
.service5 li:last-child .detail p::after {
  content: none;
}

.service6 {
  padding: 160px 0 210px;
}
@media screen and (max-width: 767.9px) {
  .service6 {
    padding: 60px 0 100px;
  }
}
.service6 h2 {
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .service6 h2 {
    margin-bottom: 40px;
  }
}
.service6 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: 50px;
}
@media screen and (max-width: 767.9px) {
  .service6 ul {
    gap: 30px;
  }
}
.service6 li {
  padding: 32px 50px 50px;
  border: solid 1px #d9d8d7;
}
@media screen and (max-width: 767.9px) {
  .service6 li {
    padding: 30px 20px;
  }
}
.service6 li span {
  font-size: 3rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767.9px) {
  .service6 li span {
    font-size: 2.2rem;
  }
}
.service6 li p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service6 li .question {
  gap: 35px;
  font-size: 2.4rem;
  line-height: 1.5416666667;
  margin-bottom: 35px;
}
@media screen and (max-width: 767.9px) {
  .service6 li .question {
    font-size: 1.6rem;
    margin-bottom: 20px;
    gap: 20px;
  }
}
.service6 li .question span {
  margin-top: 3px;
}
@media screen and (max-width: 767.9px) {
  .service6 li .question span {
    margin-top: 0;
  }
}
.service6 li .answer {
  margin-left: 65px;
  gap: 20px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
}
@media screen and (max-width: 767.9px) {
  .service6 li .answer {
    margin-left: 0;
  }
}
.service6 li .answer span {
  margin-top: -5px;
}
@media screen and (max-width: 767.9px) {
  .service6 li .answer span {
    margin-top: 0;
  }
}

.service02 .service1 {
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .service02 .service1 {
    padding-bottom: 100px;
  }
}
.service02 .service1 .flex-top {
  gap: 0;
}
.service02 .service1 .left {
  padding-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .service02 .service1 .left {
    padding-bottom: 30px;
  }
}
.service02 .service1 .left .h_description {
  padding-right: 20%;
}
@media screen and (max-width: 767.9px) {
  .service02 .service1 .left .h_description {
    padding-right: 0;
  }
}
.service02 .service1 .right {
  padding-right: 0;
  width: 45.4%;
}
@media screen and (max-width: 767.9px) {
  .service02 .service1 .right {
    width: 85%;
  }
}
.service02 .service1 .right div {
  position: relative;
  width: 55%;
  height: auto;
  aspect-ratio: 275/494;
}
.service02 .service1 .right div::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 36px;
  bottom: -32px;
  background: #fff;
}
.service02 .service1 .right div img {
  position: relative;
  z-index: 2;
  aspect-ratio: unset;
  width: 100%;
  height: 100%;
}
.service02 .service1 .right .img1 {
  margin-right: -16%;
}
.service02 .service1 .right .img2 {
  margin-top: -53%;
}
.service02 .service2 {
  margin-bottom: 70px;
  margin-top: -80px;
}
.service02 .service2 .worry .wrapper {
  width: 87.6%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .service02 .service2 .worry .wrapper {
    background-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(var(--background1-color)),
      to(var(--background2-color))
    );
    background-image: linear-gradient(
      90deg,
      var(--background1-color),
      var(--background2-color)
    );
    border: solid 1px #d9d8d7;
    padding-top: 30px;
  }
}
@media (min-width: 2000px) {
  .service02 .service2 .worry .wrapper {
    max-width: 1400px;
  }
}
.service02 .service2 .worry h2 {
  margin-bottom: -34px;
  width: 100%;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  gap: 10px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 767.9px) {
  .service02 .service2 .worry h2 {
    gap: 6px;
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.service02 .service2 .worry h2::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #d9d8d7;
  margin-bottom: 34px;
}
@media screen and (max-width: 767.9px) {
  .service02 .service2 .worry h2::before {
    content: none;
  }
}
.service02 .service2 .worry h2::after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  background: #d9d8d7;
  margin-left: 20px;
  margin-bottom: 34px;
  min-width: 50px;
}
@media screen and (max-width: 767.9px) {
  .service02 .service2 .worry h2::after {
    content: none;
  }
}
.service02 .service2 .worry .cont {
  width: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--background1-color)),
    to(var(--background2-color))
  );
  background-image: linear-gradient(
    90deg,
    var(--background1-color),
    var(--background2-color)
  );
  border: solid 1px #d9d8d7;
  border-top: none;
  position: relative;
  padding-top: 40px;
}
@media screen and (max-width: 767.9px) {
  .service02 .service2 .worry .cont {
    border: none;
    background: none;
    padding-top: 0;
  }
}
.service02 .service2 .worry .cont::before {
  content: none;
}
.service02 .service2 .solution h2 {
  font-size: 3rem;
}
@media screen and (max-width: 767.9px) {
  .service02 .service2 .solution h2 {
    font-size: 2rem;
  }
}
.service02 .service3 {
  background: var(--sub-color);
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .service02 .service3 {
    padding: 60px 0;
  }
}
.service02 .service3 .cont {
  max-width: 1100px;
}
.service02 .service3 ul {
  gap: 60px 9%;
}
@media screen and (max-width: 767.9px) {
  .service02 .service3 ul {
    gap: 40px;
  }
}
.service02 .service3 li {
  width: 45.5%;
  background: none;
  padding: 0;
  border: none;
}
@media screen and (max-width: 767.9px) {
  .service02 .service3 li {
    width: 100%;
  }
}
.service02 .service3 li .img {
  position: relative;
  height: auto;
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  max-width: unset;
}
.service02 .service3 li .img .number {
  bottom: -34px;
  left: 0;
  top: auto;
  color: #fff;
  opacity: 0.5;
}
.service02 .service3 li .img img {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  display: block;
}
.service02 .service3 li h3 {
  margin-bottom: 0;
}
.service02 .service4 .h_description {
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .service02 .service4 .h_description {
    margin-bottom: 40px;
  }
}
.service02 .service4 ul {
  gap: 10px 83px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .service02 .service4 ul {
    margin-bottom: 60px;
    gap: 30px 35px;
  }
}
.service02 .service4 ul li {
  width: calc((100% - 166px) / 3);
}
@media screen and (max-width: 767.9px) {
  .service02 .service4 ul li {
    width: 100%;
  }
}
.service02 .service4 ul li .img {
  aspect-ratio: 1/1;
  padding-right: 0;
}
.service02 .service4 ul li .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.service02 .service4 ul li .detail {
  margin-left: 0;
  padding-top: 16px;
  padding-left: 32px;
}
.service02 .service4 ul li .detail::after {
  height: 111px;
  top: -50px;
  left: 20px;
}
.service02 .service4 li:nth-child(3n + 1) {
  margin-top: 0;
}
.service02 .service4 li:nth-child(3n + 2) {
  margin-top: 60px;
}
@media screen and (max-width: 767.9px) {
  .service02 .service4 li:nth-child(3n + 2) {
    margin-top: 0;
  }
}

.service5-2 {
  padding: 100px 0 120px;
}
@media screen and (max-width: 767.9px) {
  .service5-2 {
    padding: 60px 0 80px;
  }
}
.service5-2 h2 {
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .service5-2 h2 {
    margin-bottom: 40px;
  }
}
.service5-2 ul {
  max-width: 1000px;
  margin: 0 auto;
  gap: 35px 50px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (min-width: 2000px) {
  .service5-2 ul {
    max-width: 1400px;
  }
}
.service5-2 li {
  background: #fff;
  position: relative;
  width: 300px;
  padding: 16px 15px 25px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .service5-2 li {
    width: 100%;
  }
}
.service5-2 li::before {
  content: "";
  width: 9px;
  height: 10px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  background: var(--font-color);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -28px;
}
@media screen and (max-width: 767.9px) {
  .service5-2 li::before {
    width: 12px;
    height: 10px;
    top: -22px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
  }
}
.service5-2 li h3 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.service5-2 li p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8571428571;
  padding-left: 2px;
}
.service5-2 li:first-child::before {
  content: none;
}

.service03 .service1 {
  margin-bottom: 130px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service1 {
    padding-top: 60px;
    margin-bottom: 60px;
  }
}
.service03 .service1 h2 {
  text-align: center;
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service1 h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.service03 .service1 .service03_service1_wrap {
  padding-top: 140px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .service03 .service1 .service03_service1_wrap {
    padding-top: 100px;
  }
}
.service03 .service1 .service03_service1_wrap::before {
  content: "";
  width: 100%;
  height: calc(100% - 106px);
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--background1-color)),
    to(var(--background2-color))
  );
  background-image: linear-gradient(
    90deg,
    var(--background1-color),
    var(--background2-color)
  );
  position: absolute;
  top: 0;
  left: 0;
}
.service03 .service1 .service03_service1_wrap .flex-top {
  position: relative;
  gap: 40px;
}
.service03 .service1 .service03_service1_wrap h3 {
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  line-height: 1.8611111111;
  margin-bottom: 90px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .service03 .service1 .service03_service1_wrap h3 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.service03 .service1 .service03_service1_wrap .right {
  width: 55%;
  padding-right: 0;
  margin-top: 80px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service1 .service03_service1_wrap .right {
    margin-top: 0;
    width: 70%;
  }
}
.service03 .service1 .service03_service1_wrap .right .img1 {
  aspect-ratio: 607/747;
}
.service03 .service1 .service03_service1_wrap .right img {
  width: 100%;
  height: 100%;
  display: block;
}
.service03 .service2 {
  margin-bottom: 120px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .service03 .service2 {
    margin-bottom: 80px;
  }
}
.service03 .service2 .worry .cont {
  padding: 0;
  background: none;
}
.service03 .service2 .worry .cont .bar {
  bottom: -115px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service2 .worry .cont .bar {
    bottom: -80px;
  }
}
.service03 .service2 .worry h2 {
  background: none;
  width: 100%;
  padding: 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service2 .worry h2 {
    margin-bottom: 20px;
  }
}
.service03 .service2 .worry .inner {
  background: #d9d8d7;
  padding: 13px 110px 60px 36px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 180px);
  min-height: 505px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service2 .worry .inner {
    width: 100%;
    max-width: unset;
    padding: 30px 20px;
  }
}
.service03 .service2 .worry .detail {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.service03 .service2 .worry .detail ul {
  margin-left: 10px;
  padding-right: 150px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .service03 .service2 .worry .detail ul {
    padding-right: 0;
  }
}
.service03 .service2 .worry .detail .img {
  width: 375px;
  height: auto;
  aspect-ratio: 375/420;
  right: -282px;
  top: 0;
  position: absolute;
}
@media screen and (max-width: 767.9px) {
  .service03 .service2 .worry .detail .img {
    margin-top: 30px;
    width: 100%;
    position: static;
    right: 0;
  }
}
.service03 .service2 .worry .detail .img img {
  display: block;
  width: 100%;
  height: 100%;
}
.service03 .service2 .worry .cont::before {
  content: none;
}
.service03 .service2 .solution .cont .inner {
  /*margin-top: -40px;*/
  margin-top: 0;
}
.service03 .service2 .solution h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service2 .solution h2 {
    font-size: 2rem;
  }
}
.service03 .service2 .solution .flex-top {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.service03 .service2 .solution .flex-top .right {
  margin-left: 22px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service2 .solution .flex-top .right {
    margin-left: 0;
  }
}
.service03 .service2 .solution .flex-top .img {
  aspect-ratio: 305/380;
  width: 30.5%;
}
@media screen and (max-width: 767.9px) {
  .service03 .service2 .solution .flex-top .img {
    width: 100%;
  }
}
.service03 .service2 .solution .flex-top .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.service03 .service2 .solution .flex-top ul li {
  font-size: 1.6rem;
}
.service03 .service2 .solution .flex-top ul {
  gap: 22px;
}
.service03 .service3 {
  margin-bottom: 150px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service3 {
    margin-bottom: 80px;
  }
}
.service03 .service3 .cont {
  max-width: 1100px;
}
.service03 .service3 h2 {
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service3 h2 {
    margin-bottom: 40px;
  }
}
.service03 .service3 ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 52px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service3 ul {
    gap: 40px;
  }
}
.service03 .service3 ul li {
  width: 100%;
  gap: 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 30px 50px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service3 ul li {
    padding: 30px 20px;
    gap: 0;
  }
}
.service03 .service3 ul .img {
  width: 390px;
  aspect-ratio: 390/197;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .service03 .service3 ul .img {
    width: 40%;
  }
}
@media screen and (max-width: 767.9px) {
  .service03 .service3 ul .img {
    width: 100%;
  }
}
.service03 .service3 ul .img img {
  aspect-ratio: unset;
  height: 100%;
}
.service03 .service3 ul .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 500px;
  margin-top: 20px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service3 ul .detail {
    max-width: unset;
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    margin-top: 0;
  }
}
.service03 .service3 ul .detail h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  font-weight: 500;
}
.service03 .service3 ul .detail h3 span {
  font-size: 4rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767.9px) {
  .service03 .service3 ul .detail h3 span {
    font-size: 2.6rem;
    margin-top: 2px;
  }
}
.service03 .service4-2 {
  position: relative;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 110px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service4-2 {
    padding-bottom: 80px;
  }
}
.service03 .service4-2::before {
  content: "";
  width: 100%;
  height: calc(100% - 65px);
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--background1-color)),
    to(var(--background2-color))
  );
  background-image: linear-gradient(
    90deg,
    var(--background1-color),
    var(--background2-color)
  );
}
@media screen and (max-width: 767.9px) {
  .service03 .service4-2::before {
    height: calc(100% - 35px);
  }
}
.service03 .service4-2 .cont {
  position: relative;
}
.service03 .service4-2 h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 65px;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767.9px) {
  .service03 .service4-2 h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.service03 .service4-2 .h_description {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service4-2 .h_description {
    margin-bottom: 30px;
  }
}
.service03 .service4-2 .flex-top {
  background: #fff;
  max-width: 1000px;
  margin: 0 auto 55px;
  padding: 45px 52px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service4-2 .flex-top {
    padding: 30px 20px;
  }
}
.page-id-26 .service03 .service4-2 .flex-top ul {
  width: 100%;
}
.service03 .service4-2 .flex-top ul {
  width: 45%;
  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;
}
@media screen and (max-width: 767.9px) {
  .service03 .service4-2 .flex-top ul {
    width: 100%;
  }
}
.service03 .service4-2 .flex-top ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.service03 .service4-2 .flex-top ul li::before {
  content: "・";
}
.service03 .service4-2 .flex-top .img {
  width: 49.5%;
  height: auto;
  aspect-ratio: 444/290;
}
@media screen and (max-width: 767.9px) {
  .service03 .service4-2 .flex-top .img {
    width: 100%;
    margin-top: 20px;
  }
}
.service03 .service4-2 .flex-top .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.service03 .service4-2 .description2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .service03 .service4-2 .description2 {
    font-size: 1.8rem;
  }
}
.service03 .service5-2 {
  padding-bottom: 180px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service5-2 {
    padding-bottom: 80px;
  }
}
.service03 .service5-2 h2 {
  text-align: center;
}
.service03 .service5-2 li {
  border: solid 1px #d9d8d7;
  padding-left: 25px;
}
.service03 .service5-2 li p {
  padding-left: 0;
}
.service03 .service5-2 li h3 span {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .service03 .service5-2 li h3 span {
    font-size: 2rem;
  }
}
.service03 .service6 {
  background: var(--sub-color);
  padding-top: 110px;
}
@media screen and (max-width: 767.9px) {
  .service03 .service6 {
    padding-top: 60px;
  }
}
.service03 .service6 li {
  background: var(--background1-color);
}

.company1 {
  padding-top: 60px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .company1 {
    padding-top: 20px;
  }
}
.company1 .bg_text {
  font-size: 16.2rem;
  letter-spacing: 0.05em;
  opacity: 0.35;
  -webkit-transform: rotate(-11deg);
  transform: rotate(-11deg);
  -webkit-transform-origin: left;
  transform-origin: left;
  line-height: 1;
  margin-left: -55px;
}
@media screen and (max-width: 767.9px) {
  .company1 .bg_text {
    font-size: 8rem;
    margin-left: -15px;
  }
}
.company1 .bg_text {
  margin-bottom: -45px;
}
@media screen and (max-width: 767.9px) {
  .company1 .bg_text {
    margin-bottom: -15px;
  }
}
.company1 h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .company1 h2 {
    margin-bottom: 30px;
  }
}
.company1 h3 {
  font-size: 3rem;
  line-height: 2;
  margin-bottom: 70px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .company1 h3 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.company1 h3 {
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .company1 h3 {
    margin-bottom: 30px;
  }
}
.company1 .flex-top {
  gap: 30px 130px;
}
.company1 .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .company1 .left {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.company1 .img {
  width: 46.4%;
  margin-right: calc(50% - 50vw);
  aspect-ratio: 510/443;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .company1 .img {
    width: 100%;
  }
}

.page-company section {
  overflow: hidden;
}
.page-company .bg_text {
  font-size: 16.2rem;
  letter-spacing: 0.05em;
  opacity: 0.35;
  -webkit-transform: rotate(-11deg);
  transform: rotate(-11deg);
  -webkit-transform-origin: left;
  transform-origin: left;
  line-height: 1;
  margin-left: -55px;
}
@media screen and (max-width: 767.9px) {
  .page-company .bg_text {
    font-size: 8rem;
    margin-left: -15px;
  }
}
.page-company h2 {
  font-size: 4rem;
  line-height: 1.8611111111;
  margin-bottom: 60px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .page-company h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.page-company h3 {
  font-size: 3rem;
  line-height: 2;
  margin-bottom: 70px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .page-company h3 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.page-company img {
  width: 100%;
  height: 100%;
  display: block;
}
.page-company .page-company_top {
  padding-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .page-company .page-company_top {
    padding-bottom: 80px;
  }
}
.page-company .company2 {
  padding-top: 140px;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 {
    padding-top: 80px;
  }
}
.page-company .company2 .bg_text {
  margin-bottom: -10px;
}
.page-company .company2 h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 h2 {
    margin-bottom: 30px;
  }
}
.page-company .company2 h3 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 h3 {
    margin-bottom: 30px;
  }
}
.page-company .company2 .company2_box {
  padding: 30px 50px 60px;
  border: solid 1px #d9d8d7;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .company2_box {
    padding: 30px 20px;
  }
}
.page-company .company2 .company2_box .flex-top {
  gap: 30px 40px;
}
.page-company .company2 .company2_box .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .company2_box .left {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.page-company .company2 .company2_box .img {
  width: 43.6%;
  height: auto;
  aspect-ratio: 436/319;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .company2_box .img {
    width: 100%;
  }
}
.page-company .company2 .company2_box2 {
  margin-top: 50px;
  border: solid 1px #d9d8d7;
  padding: 20px 50px;
  gap: 20px 115px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .company2_box2 {
    padding: 20px;
    row-gap: 10px;
  }
}
.page-company .company2 .company2_box2 p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 3;
  min-width: 50%;
}
@media screen and (max-width: 767.9px) {
  .page-company .company2 .company2_box2 p {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.page-company .company2 .company2_box2 h3 {
  margin: 0;
}
.page-company .company3 {
  padding-top: 220px;
  padding-bottom: 280px;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .page-company .company3 {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
.page-company .company3 .bg_text {
  margin-bottom: -10px;
}
.page-company .company3 h2 {
  margin-bottom: 55px;
}
@media screen and (max-width: 767.9px) {
  .page-company .company3 h2 {
    margin-bottom: 20px;
  }
}

.table1 {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 2000px) {
  .table1 {
    max-width: unset;
  }
}
.table1 tbody {
  display: block;
}
.table1 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #d9d8d7;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.table1 tr th {
  width: 250px;
  padding: 30px 0;
  padding-left: 10px;
  font-size: 1.8rem;
  border-bottom: solid 1px var(--font-color);
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .table1 tr th {
    width: 100%;
    border: none;
    padding: 25px 0 0 10px;
    font-size: 1.6rem;
  }
}
.table1 tr td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 30px 0;
  padding-left: 100px;
  font-size: 1.6rem;
  line-height: 2.25;
}
@media screen and (max-width: 767.9px) {
  .table1 tr td {
    width: 100%;
    padding: 10px 0 20px 10px;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    border-bottom: solid 1px var(--font-color);
    font-size: 1.5rem;
  }
}

.page-recruit section {
  overflow: hidden;
}
.page-recruit h2 {
  font-weight: 500;
  letter-spacing: 0.05em;
}
.page-recruit .recruit1 {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit1 {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.page-recruit .recruit1 .cont {
  gap: 14px;
}
.page-recruit .recruit1 .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit1 .left {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.page-recruit .recruit1 h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit1 h2 {
    margin-bottom: 30px;
  }
}
.page-recruit .recruit1 .img {
  margin-right: calc(50% - 50vw);
  padding-right: 50px;
  gap: 0 7.8%;
  width: 638px;
  margin-top: 20px;
  max-width: 60%;
}
@media screen and (max-width: 1024px) {
  .page-recruit .recruit1 .img {
    max-width: 50%;
  }
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit1 .img {
    width: 100%;
    max-width: unset;
    padding-right: 0;
    margin-top: 0;
    gap: 0 6%;
  }
}
.page-recruit .recruit1 .img img {
  width: 45.7%;
  height: auto;
  aspect-ratio: 269/182;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit1 .img img {
    width: 47%;
  }
}
.page-recruit .recruit1 .img img:nth-child(1),
.page-recruit .recruit1 .img img:nth-child(3) {
  margin-top: 55px;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit1 .img img:nth-child(1),
  .page-recruit .recruit1 .img img:nth-child(3) {
    margin-top: 30px;
  }
}
.page-recruit .recruit2 {
  padding-top: 90px;
  padding-bottom: 160px;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit2 {
    padding: 60px 0 80px;
  }
}
.page-recruit .recruit2 h2 {
  margin-bottom: 35px;
  font-size: 3.6rem;
  line-height: 1.8611111111;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit2 h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.page-recruit .recruit2 .recruit2_box {
  margin-top: 50px;
  border: solid 1px #d9d8d7;
  padding: 33px 50px;
  gap: 20px 30px;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit2 .recruit2_box {
    margin-top: 40px;
    padding: 30px 20px;
  }
}
.page-recruit .recruit2 .recruit2_box .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit2 .recruit2_box .left {
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
.page-recruit .recruit2 .recruit2_box .left h3 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit2 .recruit2_box .left h3 {
    font-size: 2rem;
    line-height: 1.6;
  }
}
.page-recruit .recruit2 .recruit2_box .left p {
  line-height: 3;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit2 .recruit2_box .left p {
    line-height: 2.25;
  }
}
.page-recruit .recruit2 .recruit2_box .img {
  width: 444px;
  height: auto;
  aspect-ratio: 444/290;
  max-width: 50%;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit2 .recruit2_box .img {
    width: 100%;
    max-width: unset;
  }
}
.page-recruit .recruit2 .recruit2_box .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.page-recruit .recruit3 {
  padding: 0 0 120px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit3 {
    padding-bottom: 80px;
  }
}
.page-recruit .recruit3 .cont {
  position: relative;
  padding-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit3 .cont {
    padding-top: 60px;
  }
}
.page-recruit .recruit3 h2 {
  font-size: 3.6rem;
  line-height: 1.8611111111;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit3 h2 {
    font-size: 2rem;
  }
}
.page-recruit .recruit3 .bg_text {
  position: absolute;
  left: -10px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 3.4rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  -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;
  z-index: 2;
  top: 0;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit3 .bg_text {
    font-size: 2rem;
  }
}
.page-recruit .recruit3 .bg_text::before {
  content: "";
  width: 1px;
  height: 197px;
  background: var(--font-color);
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit3 .bg_text::before {
    height: 100px;
  }
}
.page-recruit .recruit3 .flex-top {
  padding-left: 60px;
  gap: 20px;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit3 .flex-top {
    padding-left: 40px;
    margin-right: 0;
  }
}
.page-recruit .recruit3 .flex-top .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit3 .flex-top .left {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.page-recruit .recruit3 .flex-top .left p {
  padding-right: 50px;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit3 .flex-top .left p {
    padding-right: 0;
  }
}
.page-recruit .recruit3 .flex-top h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit3 .flex-top h2 {
    margin-bottom: 20px;
  }
}
.page-recruit .recruit3 .flex-top .img {
  width: 470px;
  height: auto;
  aspect-ratio: 470/356;
  max-width: 40%;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit3 .flex-top .img {
    width: 100%;
    max-width: unset;
  }
}
.page-recruit .recruit3 .flex-top .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.page-recruit .recruit4 {
  overflow: hidden;
  padding-bottom: 0;
  background: #fff;
}
.page-recruit .recruit4 ul {
  gap: 124px 65px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit4 ul {
    row-gap: 60px;
  }
}
.page-recruit .recruit4 ul li {
  width: calc((100% - 65px) / 2);
  background: #fff;
  border: solid 1px #d9d8d7;
  padding: 50px 50px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit4 ul li {
    width: 100%;
    padding: 40px 20px 30px;
  }
}
.page-recruit .recruit4 ul li h3 {
  font-size: 2.4rem;
  line-height: 1.5416666667;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit4 ul li h3 {
    font-size: 2rem;
  }
}
.page-recruit .recruit4 ul li .img {
  aspect-ratio: 390/228;
  min-height: unset;
  margin-bottom: 30px;
  width: 100%;
  max-width: unset;
}
@media screen and (max-width: 767.9px) {
  .page-recruit .recruit4 ul li .img {
    margin-bottom: 20px;
  }
}

.recruit5 {
  padding-top: 340px;
  padding-bottom: 230px;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .recruit5 {
    padding-top: 150px;
    padding-bottom: 120px;
  }
}
.recruit5 .bg_text {
  position: absolute;
  top: 200px;
  left: 10px;
  font-size: 16.2rem;
  letter-spacing: 0.05em;
  opacity: 0.35;
  -webkit-transform: rotate(-11deg);
  transform: rotate(-11deg);
  -webkit-transform-origin: left;
  transform-origin: left;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .recruit5 .bg_text {
    font-size: 8rem;
    top: 80px;
  }
}
.recruit5 h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .recruit5 h2 {
    margin-bottom: 30px;
  }
}
.recruit5 table {
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .recruit5 table {
    margin-bottom: 40px;
  }
}
.recruit5 .more_btn {
  margin: 0 auto;
  padding-left: 30px;
}
.recruit5 .more_btn span {
  text-align: left;
}

.page-product .product1 {
  padding-top: 60px;
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .page-product .product1 {
    padding-top: 40px;
    margin-bottom: 60px;
  }
}
.page-product .product1 .cont {
  gap: 30px 85px;
}
.page-product .product1 .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .page-product .product1 .left {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.page-product .product1 .left h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page-product .product1 .left h2 {
    margin-bottom: 30px;
  }
}
.page-product .product1 .img {
  width: 460px;
  height: auto;
  aspect-ratio: 460/312;
  margin-top: 20px;
  max-width: 40%;
}
@media screen and (max-width: 767.9px) {
  .page-product .product1 .img {
    width: 100%;
    margin-top: 0;
    max-width: unset;
  }
}
.page-product .product1 .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.page-product .product2 {
  background: var(--sub-color);
  padding: 56px 0 60px;
}
.page-product .product2 .cont {
  gap: 30px 33px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 767.9px) {
  .page-product .product2 .cont {
    gap: 20px;
  }
}
.page-product .product2 .list {
  width: 250px;
  background: #fff;
  padding: 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767.9px) {
  .page-product .product2 .list {
    max-width: 250px;
    width: calc((100% - 20px) / 2);
  }
}
.page-product .product2 .list .img {
  max-width: 100%;
  margin: 0 auto 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: grid;
  place-content: center;
  max-height: 110px;
}
.page-product .product2 .list .img img {
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 767.9px) {
  .page-product .product2 .list p {
    font-size: 1.2rem;
  }
}
.page-product .product-content {
  padding: 110px 0 130px;
}
@media screen and (max-width: 767.9px) {
  .page-product .product-content {
    padding: 60px 0 80px;
  }
}
.page-product .product-content h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page-product .product-content h2 {
    margin-bottom: 30px;
  }
}
.page-product .product-content .product-list {
  gap: 60px 33px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 767.9px) {
  .page-product .product-content .product-list {
    gap: 40px 20px;
  }
}
.page-product .product-content .product-list .product-item {
  width: 250px;
}
@media screen and (max-width: 767.9px) {
  .page-product .product-content .product-list .product-item {
    max-width: 250px;
    width: calc((100% - 20px) / 2);
  }
}
.page-product .product-content .product-list .product-item img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.page-product .product-content .product-list .product-item p {
  line-height: 1.875;
}
@media screen and (max-width: 767.9px) {
  .page-product .product-content .product-list .product-item p {
    font-size: 1.4rem;
  }
}
.page-product
  .product-content
  .product-list
  .product-item
  .product-description {
  margin-bottom: 5px;
}
.page-product .product-content .product-list .product-item .product-price {
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .page-product .product-content .product-list .product-item .product-price {
    font-size: 1.5rem;
  }
}
.page-product .product-content:nth-child(2n-1) {
  padding-bottom: 120px;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--background1-color)),
    to(var(--background2-color))
  );
  background-image: linear-gradient(
    90deg,
    var(--background1-color),
    var(--background2-color)
  );
}
@media screen and (max-width: 767.9px) {
  .page-product .product-content:nth-child(2n-1) {
    padding-bottom: 80px;
  }
}

.page-voice {
  padding-top: 60px;
}
@media screen and (max-width: 767.9px) {
  .page-voice {
    padding-top: 40px;
  }
}
.page-voice .voice1 {
  padding-bottom: 60px;
}
.page-voice .voice1 h2 {
  font-size: 3.6rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .page-voice .voice1 h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.page-voice .voice2 {
  background: var(--sub-color);
  padding-top: 130px;
  padding-bottom: 300px;
}
@media screen and (max-width: 767.9px) {
  .page-voice .voice2 {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.page-voice .voice2 h2 {
  text-align: center;
  font-size: 3.6rem;
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .page-voice .voice2 h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.page-voice .voice2 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: 110px;
}
@media screen and (max-width: 767.9px) {
  .page-voice .voice2 ul {
    gap: 50px;
  }
}
.page-voice .voice2 li {
  gap: 15px 65px;
}
.page-voice .voice2 li .left {
  width: 350px;
  max-width: 35%;
}
@media screen and (max-width: 767.9px) {
  .page-voice .voice2 li .left {
    width: 300px;
    max-width: unset;
  }
}
@media screen and (max-width: 430px) {
  .page-voice .voice2 li .left {
    margin: 0 auto;
  }
}
.page-voice .voice2 li .left .img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.page-voice .voice2 li .left p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .page-voice .voice2 li .left p {
    margin-bottom: 10px;
  }
}
.page-voice .voice2 li .left .name img {
  width: 14px;
}
.page-voice .voice2 li .left .sex img {
  width: 16px;
}
.page-voice .voice2 li .left .work img {
  width: 17px;
}
.page-voice .voice2 li .left .shop img {
  width: 15px;
}
.page-voice .voice2 li .left .flex {
  gap: 0px 24px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.page-voice .voice2 li .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #fff;
  padding: 55px 50px 45px;
  border: solid 1px #d9d8d7;
}
@media screen and (max-width: 767.9px) {
  .page-voice .voice2 li .right {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    padding: 30px 20px;
  }
}
.page-voice .voice2 li .right h3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page-voice .voice2 li .right h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.page-voice .voice2 li:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.gallery_category_list {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px 30px;
  margin-bottom: 140px;
}
@media screen and (max-width: 767.9px) {
  .gallery_category_list {
    margin-bottom: 60px;
  }
}
.gallery_category_list a {
  font-size: 2.4rem;
  padding-bottom: 5px;
}
@media screen and (max-width: 767.9px) {
  .gallery_category_list a {
    font-size: 1.8rem;
  }
}
.gallery_category_list .current a {
  border-bottom: solid 1px var(--font-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gallery_category_list li:hover a {
  border-bottom: solid 1px var(--font-color);
}

.gallery1_wrap {
  margin-bottom: 230px;
}
@media screen and (max-width: 767.9px) {
  .gallery1_wrap {
    margin-bottom: 120px;
  }
}
.gallery1_wrap .gallery_list {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 150px 26px;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .gallery1_wrap .gallery_list {
    gap: 50px 26px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 80px;
  }
}
.gallery1_wrap .gallery_list li {
  width: 255px;
}
@media screen and (max-width: 767.9px) {
  .gallery1_wrap .gallery_list li {
    width: 300px;
  }
}
.gallery1_wrap .gallery_list li .img {
  padding-right: 0;
  aspect-ratio: 313/430;
}
.gallery1_wrap .gallery_list li .detail,
.gallery2_wrap .detail {
  margin: 0;
  padding-left: 30px;
  padding-bottom: 15px;
  padding-right: 0;
}
.gallery1_wrap .gallery_list li .detail::after,
.gallery2_wrap .detail::after {
  left: 15px;
}
.gallery1_wrap .gallery_list li .category {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 8px;
}
.gallery1_wrap .gallery_list li .category span {
  background: var(--font-color);
  color: #fff;
  padding: 2px 12px;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.gallery1_wrap .gallery_list li:nth-child(2n) {
  margin-top: 56px;
}
@media screen and (max-width: 767.9px) {
  .gallery1_wrap .gallery_list li:nth-child(2n) {
    margin-top: 0;
    margin-left: auto;
  }
}

.gallery2_wrap {
  margin-top: 70px;
}
.gallery2_wrap .gallery_category_list {
  margin-bottom: 50px;
}
.gallery2_wrap .category-section {
  padding: 90px 0 110px;
}
@media screen and (max-width: 767.9px) {
  .gallery2_wrap .category-section {
    padding: 60px 0 80px;
  }
}
.gallery2_wrap .category-section h3 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .gallery2_wrap .category-section h3 {
    margin-bottom: 40px;
  }
}
.gallery2_wrap .category-section:nth-child(2n-1) {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--background1-color)),
    to(var(--background2-color))
  );
  background-image: linear-gradient(
    90deg,
    var(--background1-color),
    var(--background2-color)
  );
}
.gallery2_wrap .category-gallery {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 150px 26px;
}
@media screen and (max-width: 767.9px) {
  .gallery2_wrap .category-gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    /* -ms-flex-direction: column;
            flex-direction: column; */
    gap: 50px;
  }
}
.gallery2_wrap .category-gallery .gallery2-item {
  width: 255px;
  aspect-ratio: 255/350;
}
@media screen and (max-width: 767.9px) {
  .gallery2_wrap .category-gallery .gallery2-item {
    width: 300px;
  }
}
.gallery2_wrap .category-gallery .gallery2-item img {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery2_wrap .category-gallery .gallery2-item:nth-child(2n) {
  margin-top: 56px;
}
@media screen and (max-width: 767.9px) {
  .gallery2_wrap .category-gallery .gallery2-item:nth-child(2n) {
    margin-top: 0;
    margin-left: auto;
  }
}
.gallery2_wrap .category-section:last-child {
  padding-bottom: 320px;
}
@media screen and (max-width: 767.9px) {
  .gallery2_wrap .category-section:last-child {
    padding-bottom: 120px;
  }
}

.article-gallery {
  margin-bottom: 120px;
}
.article-gallery .detail {
  max-width: 1000px;
  margin: 0 auto 130px;
}
@media screen and (max-width: 767.9px) {
  .article-gallery .detail {
    margin-bottom: 80px;
  }
}
.article-gallery .detail .img_wrap {
  width: 42%;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .article-gallery .detail .img_wrap {
    width: 100%;
    max-width: 500px;
    margin-bottom: 40px;
  }
}
.article-gallery .detail .slider {
  margin-bottom: 36px;
}
@media screen and (max-width: 767.9px) {
  .article-gallery .detail .slider {
    margin-bottom: 20px;
  }
}
.article-gallery .detail .slider .swiper-slide {
  aspect-ratio: 420/580;
}
.article-gallery .detail .slider .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
}
.article-gallery .detail .slider-thumbnail .swiper-slide {
  aspect-ratio: 127/175;
}
.article-gallery .detail .slider-thumbnail .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
}
.article-gallery .detail .right {
  width: 50%;
}
@media screen and (max-width: 767.9px) {
  .article-gallery .detail .right {
    width: 100%;
  }
}
.article-gallery .detail .right .category {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}
.article-gallery .detail .right .category span {
  background: var(--font-color);
  color: #fff;
  padding: 2px 12px;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.article-gallery .detail .right h2 {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .article-gallery .detail .right h2 {
    font-size: 1.8rem;
  }
}
.article-gallery .detail .right .stylist {
  color: var(--bg-text-color);
  margin-bottom: 65px;
}
@media screen and (max-width: 767.9px) {
  .article-gallery .detail .right .stylist {
    margin-bottom: 30px;
  }
}
.article-gallery .detail .right .stylist_title {
  font-size: 2rem;
  margin-bottom: 20px;
}
.article-gallery .more_btn {
  padding-left: 80px;
}
.article-gallery .more_btn::before,
.article-gallery .more_btn::after {
  right: auto;
  left: 25px;
}

.single-gallery_wrapper .related {
  background: var(--sub-color);
  padding: 100px 0 220px;
}
@media screen and (max-width: 767.9px) {
  .single-gallery_wrapper .related {
    padding: 60px 0 80px;
  }
}
.single-gallery_wrapper .related h2 {
  margin-bottom: 24px;
}
.single-gallery_wrapper .related ul {
  margin-bottom: 34px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 35px;
}
@media screen and (max-width: 767.9px) {
  .single-gallery_wrapper .related ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.single-gallery_wrapper .related ul li {
  width: calc((100% - 70px) / 3);
}
@media screen and (max-width: 767.9px) {
  .single-gallery_wrapper .related ul li {
    min-width: 300px;
  }
}
.single-gallery_wrapper .related ul li:nth-child(1) {
  margin-top: 60px;
}
@media screen and (max-width: 767.9px) {
  .single-gallery_wrapper .related ul li:nth-child(1) {
    margin-top: 0;
  }
}
.single-gallery_wrapper .related ul li:nth-child(2) {
  margin-top: 185px;
}
@media screen and (max-width: 767.9px) {
  .single-gallery_wrapper .related ul li:nth-child(2) {
    margin-top: 0;
    margin-left: auto;
  }
}
.single-gallery_wrapper .related ul li {
  position: relative;
}
.single-gallery_wrapper .related ul li::before {
  content: "";
  width: calc(100% - 24px);
  height: calc(100% - 65px);
  position: absolute;
  top: 65px;
  right: 0;
  background: #fff;
}

.page-pp {
  margin-bottom: 180px;
}
@media screen and (max-width: 767.9px) {
  .page-pp {
    margin-bottom: 120px;
  }
}
.page-pp * {
  letter-spacing: 0.025em;
}
.page-pp .cont {
  max-width: 800px;
}
.page-pp p,
.page-pp a,
.page-pp li,
.page-pp span {
  line-height: 2.125;
}
.page-pp h2 {
  margin-top: 65px;
  font-size: 2.4rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .page-pp h2 {
    font-size: 1.8rem;
    margin-top: 50px;
  }
}
.page-pp ul,
.page-pp ol {
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .page-pp ul,
  .page-pp ol {
    margin-left: 15px;
  }
}
.page-pp ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-pp ul li::before {
  content: "・";
}
.page-pp ol {
  margin-left: 40px;
}
@media screen and (max-width: 767.9px) {
  .page-pp ol {
    margin-left: 30px;
  }
}
.page-pp ol li {
  list-style: decimal;
}

.contact_page .contact1 {
  margin-bottom: 113px;
}
@media screen and (max-width: 767.9px) {
  .contact_page .contact1 {
    margin-bottom: 80px;
  }
}
.contact_page .contact1 .cont {
  max-width: 1040px;
}
.contact_page .contact1 h2 {
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .contact_page .contact1 h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.contact_page .contact1 .description {
  font-size: 1.8rem;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .contact_page .contact1 .description {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
}
.contact_page .contact1 ul {
  gap: 40px 32px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .contact_page .contact1 ul {
    row-gap: 20px;
  }
}
.contact_page .contact1 ul li {
  width: calc((100% - 32px) / 2);
}
@media screen and (max-width: 767.9px) {
  .contact_page .contact1 ul li {
    width: 100%;
  }
}
.contact_page .contact1 ul li a {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  padding: 10px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 18px;
  border: solid 1px #d9d8d7;
}
@media screen and (max-width: 767.9px) {
  .contact_page .contact1 ul li a {
    font-size: 1.4rem;
  }
}
.contact_page .contact1 ul li a img {
  max-width: 120px;
}
@media screen and (max-width: 767.9px) {
  .contact_page .contact1 ul li a img {
    max-width: 100px;
  }
}
.contact_page .contact2 {
  padding: 110px 0 70px;
}
@media screen and (max-width: 767.9px) {
  .contact_page .contact2 {
    padding: 60px 0;
  }
}
.contact_page .contact2 .cont {
  max-width: 1000px;
}
.contact_page .contact2 h2 {
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 2;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .contact_page .contact2 h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

.form {
  position: relative;
  padding-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .form {
    padding-bottom: 120px;
  }
}
.form .cont {
  max-width: 1000px;
}
.form .heading {
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .form .heading {
    margin-bottom: 50px;
  }
}
.form table,
.form tbody,
.form tr,
.form th,
.form td {
  display: block;
}
.form table br,
.form tbody br,
.form tr br,
.form th br,
.form td br {
  display: none;
}
.form p {
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .form p {
    font-size: 1.6rem;
  }
}
.form input,
.form textarea {
  width: 100%;
  border: solid 1px #d9d8d7;
  padding: 22px 30px;
  background: #fff;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .form input,
  .form textarea {
    padding: 15px 20px;
    font-size: 1.6rem;
  }
}
.form tr {
  margin-bottom: 45px;
}
@media screen and (max-width: 767.9px) {
  .form tr {
    margin-bottom: 30px;
  }
}
.form th {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .form th {
    font-size: 1.6rem;
  }
}
.form .youken th {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .form .youken th {
    margin-bottom: 20px;
  }
}
.form .ex {
  color: #666666;
  font-size: 1.6rem;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 767.9px) {
  .form .ex {
    font-size: 1.4rem;
  }
}
.form .check::before {
  content: "※";
  color: #ff0000;
  display: inline-block;
  margin-left: 18px;
}
.form textarea {
  height: 300px;
}
@media screen and (max-width: 767.9px) {
  .form textarea {
    height: 250px;
  }
}
.form .wpcf7-list-item {
  margin-left: 0;
  margin-right: 50px;
}
@media screen and (max-width: 767.9px) {
  .form .wpcf7-list-item {
    margin-right: 20px;
    margin-bottom: 10px;
  }
}
.form .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.form .wpcf7-list-item label input {
  width: 20px;
  height: 20px;
  padding: 0;
}
.form .wpcf7-list-item label span {
  font-size: 1.6rem;
}
.form .message_box .ex {
  text-align: right;
}
.form .privacy_policy_check {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check {
    margin-bottom: 60px;
  }
}
.form .privacy_policy_check .wpcf7-list-item {
  margin-right: 0;
}
.form .privacy_policy_check a {
  text-decoration: underline;
  text-underline-offset: 10px;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check a {
    text-underline-offset: 5px;
  }
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check span {
    font-size: 1.5rem;
  }
}
.form .privacy_policy_check input {
  margin-right: 20px;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check input {
    margin-right: 10px;
  }
}
.form .submit {
  position: relative;
  background: var(--font-color);
  width: 270px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 auto;
}
.form .submit br {
  display: none;
}
.form .submit::before {
  content: "";
  width: 36px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 23px;
  z-index: 2;
}
.form .submit::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 23px;
}
.form .submit input {
  cursor: pointer;
  color: #fff;
  padding: 21px 20px;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  background: none;
}
.form .submit .wpcf7-spinner {
  position: absolute;
}
.form .submit:hover {
  opacity: 0.7;
}
.form .submit2 {
  margin-top: 20px;
}

.page-id-42 .form {
  padding-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .page-id-42 .form {
    padding-top: 60px;
  }
}

.contact_thanks {
  padding-top: 70px;
  padding-bottom: 280px;
}
@media screen and (max-width: 767.9px) {
  .contact_thanks {
    padding-bottom: 120px;
    padding-top: 60px;
  }
}
.contact_thanks h2 {
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .contact_thanks h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
.contact_thanks p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 2.125;
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .contact_thanks p {
    margin-bottom: 60px;
  }
}
.contact_thanks .more_btn {
  margin: 0 auto;
  padding-left: 50px;
}
.contact_thanks .more_btn::before,
.contact_thanks .more_btn::after {
  right: auto;
  left: 25px;
}

.page_top.lp {
  width: 100%;
  height: 690px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page_top.lp {
    min-height: 600px;
    height: 100svh;
  }
}
.page_top.lp::before {
  content: "";
  width: 240px;
  height: auto;
  aspect-ratio: 240/190;
  background: #fff;
  opacity: 0.2;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .page_top.lp::before {
    content: none;
  }
}
.page_top.lp img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-position: center;
  object-position: center;
}
.page_top.lp .cont {
  padding-top: 130px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .page_top.lp .cont {
    padding-bottom: 40px;
    width: 90%;
    padding-right: 50px;
  }
}
.page_top.lp .cont h1 {
  color: #fff;
  font-size: 4.6rem;
  line-height: 1.5652173913;
  opacity: 1;
  position: static;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .page_top.lp .cont h1 {
    font-size: 2.8rem;
  }
}
.page_top.lp .cont .bg_text {
  left: 135px;
  top: -60px;
}
@media screen and (max-width: 1024px) {
  .page_top.lp .cont .bg_text {
    left: 35px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_top.lp .cont .bg_text {
    left: 0;
    top: 30px;
  }
}

.page_lp h2 {
  font-size: 3.6rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .page_lp h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.page_lp .lp_description {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp_description {
    margin-bottom: 30px;
  }
}
.page_lp .heading2 {
  font-size: 4.4rem;
}
@media screen and (max-width: 767.9px) {
  .page_lp .heading2 {
    font-size: 2.4rem;
  }
}
.page_lp .lp1 {
  padding: 90px 0 120px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp1 {
    padding: 60px 0 80px;
  }
}
.page_lp .lp1 p {
  text-align: center;
  margin-bottom: 0;
}
.page_lp .lp2 {
  padding-top: 80px;
  margin-bottom: 180px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp2 {
    padding-top: 60px;
    margin-bottom: 80px;
  }
}
.page_lp .lp2 h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp2 h2 {
    margin-bottom: 20px;
  }
}
.page_lp .lp2 p {
  letter-spacing: 0.05em;
}
.page_lp .lp2 .img_wrap {
  margin-inline: calc(50% - 50vw);
  padding: 0 20px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 70px 27px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp2 .img_wrap {
    gap: 15px 4%;
  }
}
.page_lp .lp2 .img_wrap img {
  width: calc((100% - 54px) / 3);
  height: auto;
  aspect-ratio: 435/300;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp2 .img_wrap img {
    width: 48%;
  }
}
.page_lp .lp3 {
  padding-top: 70px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp3 {
    padding-top: 50px;
  }
}
.page_lp .lp3 h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp3 h2 {
    margin-bottom: 40px;
  }
}
.page_lp .lp3 ul {
  gap: 70px;
  max-width: 1050px;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp3 ul {
    gap: 50px;
  }
}
.page_lp .lp3 ul li .detail {
  padding: 50px;
  border: solid 1px #d9d8d7;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp3 ul li .detail {
    padding: 30px 20px;
  }
}
.page_lp .lp3 ul li h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp3 ul li h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
.page_lp .lp3 ul li .flex-top {
  gap: 20px 55px;
}
.page_lp .lp3 ul li .flex-top img {
  width: 41%;
  height: auto;
  aspect-ratio: 390/228;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp3 ul li .flex-top img {
    width: 100%;
  }
}
.page_lp .lp3 ul li .flex-top p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 10px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp3 ul li .flex-top p {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    padding: 0;
  }
}
.page_lp .lp4 {
  padding-top: 335px;
  margin-top: -210px;
  position: relative;
  padding-bottom: 150px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4 {
    padding-top: 180px;
    margin-top: -120px;
    padding-bottom: 80px;
  }
}
.page_lp .lp4:after {
  content: "";
  width: 102px;
  height: auto;
  aspect-ratio: 102/36;
  background: var(--font-color);
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4:after {
    width: 70px;
  }
}
.page_lp .lp4 h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4 h2 {
    margin-bottom: 20px;
  }
}
.page_lp .lp4 .lp_description {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4 .lp_description {
    margin-bottom: 40px;
  }
}
.page_lp .lp4 ul {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 40px 46px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4 ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.page_lp .lp4 ul li {
  width: calc((100% - 138px) / 4);
  min-width: 210px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4 ul li {
    width: 100%;
    max-width: 300px;
  }
}
@media screen and (max-width: 430px) {
  .page_lp .lp4 ul li {
    max-width: 280px;
    margin: 0 auto;
  }
}
.page_lp .lp4 ul li img {
  aspect-ratio: 1/1;
  height: auto;
  width: 100%;
  display: block;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4 ul li img {
    margin-bottom: 20px;
  }
}
.page_lp .lp4 ul li h3 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4 ul li h3 {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
.page_lp .lp4 ul li:nth-child(2n) {
  margin-top: 50px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp4 ul li:nth-child(2n) {
    margin-top: 0px;
    margin-left: auto;
  }
}
.page_lp .lp5 {
  padding-top: 20px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 {
    padding-bottom: 80px;
  }
}
.page_lp .lp5 h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 h2 {
    margin-bottom: 20px;
  }
}
.page_lp .lp5 .company_voice {
  margin-bottom: 75px;
  background: #fff;
  border: solid 1px #d9d8d7;
  padding: 50px 50px 60px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 .company_voice {
    margin-bottom: 40px;
    padding: 30px 20px;
    margin-bottom: 40px;
  }
}
.page_lp .lp5 .company_voice .top {
  gap: 20px 36px;
  margin-bottom: 60px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .page_lp .lp5 .company_voice .top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 .company_voice .top {
    margin-bottom: 30px;
  }
}
.page_lp .lp5 .company_voice .top .img {
  width: 46.2%;
  height: auto;
  aspect-ratio: 462/305;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 .company_voice .top .img {
    width: 100%;
  }
}
.page_lp .lp5 .company_voice .top .img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #696969;
  position: absolute;
  top: 0;
  left: 0;
}
.page_lp .lp5 .company_voice .top .img img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.8;
}
.page_lp .lp5 .company_voice .top .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 15px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 .company_voice .top .right {
    padding-top: 0;
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
.page_lp .lp5 .company_voice .top .right h3 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.6666666667;
  max-width: 380px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 .company_voice .top .right h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
.page_lp .lp5 .company_voice .top .right .detail {
  margin-top: auto;
}
.page_lp .lp5 .company_voice .top .right .position {
  font-size: 1.1rem;
}
.page_lp .lp5 .company_voice .top .right .name {
  font-size: 2.2rem;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 .company_voice .top .right .name {
    font-size: 1.6rem;
  }
}
.page_lp .lp5 .company_voice .top .right .name span {
  color: #a8a4a4;
  font-size: 1.3rem;
  margin-left: 15px;
}
.page_lp .lp5 .company_voice .company_voice_faq .question {
  margin-top: 60px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp5 .company_voice .company_voice_faq .question {
    font-size: 1.6rem;
    margin-bottom: 10px;
    margin-top: 40px;
  }
}
.page_lp .lp5 .company_voice:last-child {
  margin-bottom: 0;
}
.page_lp .lp6 {
  padding-top: 130px;
  margin-bottom: 200px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp6 {
    padding-top: 60px;
    margin-bottom: 80px;
  }
}
.page_lp .lp6 .bg_text {
  margin-bottom: -40px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp6 .bg_text {
    margin-bottom: -15px;
  }
}
.page_lp .lp6 h2 {
  text-align: left;
  font-size: 4rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp6 h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.page_lp .lp6 h3 {
  line-height: 2.2333333333;
  margin-bottom: 5px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp6 h3 {
    margin-bottom: 20px;
  }
}
.page_lp .lp6 .flex-top {
  gap: 30px 62px;
}
.page_lp .lp6 .flex-top .left {
  margin-top: 40px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp6 .flex-top .left {
    margin-top: 0;
  }
}
.page_lp .lp6 .flex-top .h_description {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp6 .flex-top .h_description {
    margin-bottom: 30px;
  }
}
.page_lp .lp7 {
  padding: 80px 0;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp7 {
    padding: 60px 0;
  }
}
.page_lp .lp7 h2 {
  margin-bottom: 30px;
}
.page_lp .lp7 img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1100/520;
}
.page_lp .lp8 {
  overflow: hidden;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 {
    background: var(--sub-color);
    margin-bottom: 30px;
  }
}
.page_lp .lp8 h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 h2 {
    margin-bottom: 20px;
  }
}
.page_lp .lp8 .lp_description {
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 .lp_description {
    margin-bottom: 30px;
  }
}
.page_lp .lp8 .cont {
  padding: 120px 0 100px;
  max-width: 1000px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 .cont {
    padding: 60px 0 80px;
  }
}
.page_lp .lp8 .cont::before {
  content: "";
  width: 100vw;
  height: 100%;
  background: var(--sub-color);
  position: absolute;
  top: 0;
  left: -30px;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 .cont::before {
    content: none;
  }
}
.page_lp .lp8 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: 55px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 ul {
    gap: 40px;
  }
}
.page_lp .lp8 li {
  position: relative;
  padding: 25px 25px 0 16px;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 li {
    gap: 5px;
    padding: 20px 20px 0 20px;
  }
}
.page_lp .lp8 li::after {
  content: "";
  width: 1px;
  height: 144px;
  position: absolute;
  bottom: -20px;
  left: 40px;
  background: var(--font-color);
  max-height: calc(100% - 70px);
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 li::after {
    bottom: -20px;
    left: 20px;
  }
}
.page_lp .lp8 li::before {
  content: "";
  width: 100%;
  height: calc(100% - 30px);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
}
.page_lp .lp8 li .time {
  font-size: 2.4rem;
  font-weight: 700;
  min-width: 80px;
  padding-top: 5px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 li .time {
    padding-top: 0;
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
.page_lp .lp8 li .number {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 5px;
  margin-top: -10px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 li .number {
    font-size: 2rem;
    margin-top: 0;
    display: inline-block;
    font-weight: 500;
    margin-right: 5px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 li .sp-block {
    display: inline-block;
  }
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 li .sp-none {
    display: none;
  }
}
.page_lp .lp8 li .img {
  width: 357px;
  height: auto;
  aspect-ratio: 357/203;
  max-width: 40%;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 li .img {
    width: 95%;
    max-width: 400px;
    margin-left: auto;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .page_lp .lp8 li .img {
    margin-top: 20px;
  }
}
.page_lp .lp8 li .img img {
  display: block;
  width: 100%;
  height: 100%;
}
.page_lp .lp8 li .detail {
  padding-top: 8px;
  padding-right: 30px;
  padding-bottom: 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 li .detail {
    padding-right: 0;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    padding: 0;
  }
}
.page_lp .lp8 li .detail h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.page_lp .lp8 li .detail p {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp8 li .detail p {
    padding-bottom: 0;
  }
}
.page_lp .lp8 li:last-child::after {
  content: none;
}
.page_lp .lp9 {
  padding-top: 80px;
  padding-bottom: 140px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp9 {
    padding: 60px 0 80px;
  }
}
.page_lp .lp9 .lp_description {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp9 .lp_description {
    margin-bottom: 50px;
  }
}
.page_lp .lp9 ul {
  gap: 100px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp9 ul {
    gap: 50px;
  }
}
.page_lp .lp9 ul li {
  position: relative;
}
.page_lp .lp9 ul li::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  height: auto;
}
.page_lp .lp9 ul li .detail {
  padding: 50px;
  border: solid 1px #d9d8d7;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp9 ul li .detail {
    padding: 30px 20px;
  }
}
.page_lp .lp9 ul li .flex-top {
  gap: 20px 69px;
}
.page_lp .lp9 ul li .flex-top div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp9 ul li .flex-top div {
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
.page_lp .lp9 ul li img {
  width: 39%;
  height: auto;
  aspect-ratio: 390/252;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp9 ul li img {
    width: 100%;
  }
}
.page_lp .lp9 ul li h3 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp9 ul li h3 {
    font-size: 2rem;
  }
}
.page_lp .lp9 ul li:nth-child(1)::before,
.page_lp .lp9 ul li:nth-child(7)::before {
  background-image: url(../img/lp_icon1.png);
  width: 202px;
  aspect-ratio: 202/197;
  top: -125px;
  right: -80px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp9 ul li:nth-child(1)::before,
  .page_lp .lp9 ul li:nth-child(7)::before {
    width: 80px;
    top: -20px;
    right: -30px;
  }
}
.page_lp .lp9 ul li:nth-child(2)::before,
.page_lp .lp9 ul li:nth-child(8)::before {
  background-image: url(../img/lp_icon2.png);
  width: 150px;
  aspect-ratio: 150/212;
  bottom: -5px;
  left: -130px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp9 ul li:nth-child(2)::before,
  .page_lp .lp9 ul li:nth-child(8)::before {
    width: 65px;
    bottom: -25px;
    left: -20px;
  }
}
.page_lp .lp9 ul li:nth-child(3)::before,
.page_lp .lp9 ul li:nth-child(9)::before {
  background-image: url(../img/lp_icon3.png);
  width: 152px;
  aspect-ratio: 152/141;
  bottom: -60px;
  right: -60px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp9 ul li:nth-child(3)::before,
  .page_lp .lp9 ul li:nth-child(9)::before {
    width: 65px;
    bottom: -20px;
    right: -20px;
  }
}
.page_lp .lp9 ul li:nth-child(4)::before,
.page_lp .lp9 ul li:nth-child(10)::before {
  background-image: url(../img/lp_icon4.png);
  width: 166px;
  aspect-ratio: 166/236;
  bottom: -36px;
  left: -140px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp9 ul li:nth-child(4)::before,
  .page_lp .lp9 ul li:nth-child(10)::before {
    width: 60px;
    bottom: -16px;
    left: -20px;
  }
}
.page_lp .lp9 ul li:nth-child(5)::before,
.page_lp .lp9 ul li:nth-child(10)::before {
  background-image: url(../img/lp_icon5.png);
  width: 220px;
  aspect-ratio: 220/170;
  bottom: -105px;
  right: -100px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp9 ul li:nth-child(5)::before,
  .page_lp .lp9 ul li:nth-child(10)::before {
    width: 100px;
    bottom: -30px;
    right: -20px;
  }
}
.page_lp .lp10 {
  padding-bottom: 150px;
  padding-top: 280px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp10 {
    padding-top: 150px;
    padding-bottom: 80px;
  }
}
.page_lp .lp10 h2 {
  text-align: left;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp10 h2 {
    margin-bottom: 30px;
  }
}
.page_lp .lp10 .bg_text {
  top: 145px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp10 .bg_text {
    top: 80px;
  }
}
.page_lp .lp11 {
  padding: 60px 0 80px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp11 {
    padding-bottom: 60px;
  }
}
.page_lp .lp11 .cont {
  max-width: 700px;
}
.page_lp .lp11 .bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #31302f;
}
.page_lp .lp11 .bg_img img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.16;
}
.page_lp .lp11 h2 {
  color: #fff;
  margin-bottom: 20px;
}
.page_lp .lp11 p {
  line-height: 2.3125;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp11 p {
    line-height: 2;
  }
}
.page_lp .lp11 .lp_description {
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp11 .lp_description {
    margin-bottom: 30px;
  }
}
.page_lp .lp11 .lp11_box {
  background: #fff;
  padding: 40px 65px 50px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp11 .lp11_box {
    padding: 30px 20px 40px;
  }
}
.page_lp .lp11 .lp11_box h3,
.page_lp .lp11 .lp11_box p {
  text-align: center;
}
.page_lp .lp11 .lp11_box h3 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp11 .lp11_box h3 {
    font-size: 1.8rem;
  }
}
.page_lp .lp11 .lp11_box p {
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp11 .lp11_box p {
    margin-bottom: 20px;
  }
}
.page_lp .lp11 .lp11_box ul {
  padding: 25px 40px 35px;
  border: solid 1px #d9d8d7;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp11 .lp11_box ul {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.page_lp .lp11 .lp11_box ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  letter-spacing: 0.05em;
  line-height: 2.3125;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp11 .lp11_box ul li {
    gap: 5px;
  }
}
.page_lp .lp11 .lp11_box ul li::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../img/check.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 12px;
}
@media screen and (max-width: 767.9px) {
  .page_lp .lp11 .lp11_box ul li::before {
    width: 12px;
    height: 12px;
    margin-top: 13px;
  }
}
.page_lp .lp11 .lp11_box .more_btn {
  margin: 0 auto;
  padding-left: 30px;
}
.page_lp .lp11 .lp11_box .more_btn span {
  text-align: left;
} /*# sourceMappingURL=common.css.map */

.gallery2_wrap .gallery_category_list {
  display: none;
}
.lb-details {
  display: none;
}
.page-id-18 .menu_detail.flex-top {
  justify-content: center;
}
.page-id-22 .service7 {
  background-image: linear-gradient(
    90deg,
    var(--background1-color),
    var(--background2-color)
  );
}
.page-id-22 .service4 {
  margin-top: -247px;
}
.page-id-22 .service7 .service1 {
  padding-top: 160px;
  margin-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .page-id-22 .service7 .service1 {
    padding-top: 100px;
  }
}
.page-id-22 .service7 .service1 .h_description {
  padding: 10px 10px 10px 40px;
  background: url(../img/check.png) left 19px no-repeat;
  background-size: 18px auto;
}
.page-id-22 .service8 h2,
.page-id-22 .service8 p {
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .page-id-22 .service8 p {
    text-align: left;
  }
}
.page-id-22 .service8 img {
  margin-top: 85px;
}
.page-id-22 .service8 {
  margin-bottom: 200px;
}
.home .swiper-slide {
  position: relative;
}
.home .swiper-slide picture::after {
  position: absolute;
  content: "";
  background-color: #000000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.page-id-18 .p-menu_box .cont {
  justify-content: center;
}
.page-id-18 .p-menu_box {
  margin-bottom: 230px;
}
.page-id-18 .p-menu_box .cont a {
  padding: 14px 21px 14px;
}
@media screen and (max-width: 767.9px) {
  .page-id-18 .p-menu_box .cont a {
    padding: 14px 31px 14px;
  }
}
.page-id-18 .p-menu_box .cont a p {
  font-size: 1.7em;
  line-height: 37px;
}
@media screen and (max-width: 767.9px) {
  .page-id-18 .p-menu_box .cont a p {
    font-size: 1.2em;
    line-height: 30px;
  }
}
.page-id-18 .menu_content::before {
  content: "";
  display: block;
  height: 200px;
  margin-top: -200px;
  visibility: hidden;
}
@media screen and (max-width: 767.9px) {
  .page-id-18 .menu_content::before {
    content: "";
    display: block;
    height: 100px;
    margin-top: -100px;
    visibility: hidden;
  }
}
.page-id-24 .service3 .flex {
  display: block;
}
.page-id-24 .service3 .flex li {
  width: 100%;
}
.page-id-24 .service02 li .img {
  aspect-ratio: initial;
  height: 300px;
}
.p-area__line {
  margin-top: 40px;
  font-weight: 500;
  text-align: center;
  padding: 25px 50px 20px 80px;
  max-width: 400px;
  min-height: 100px;
  background-color: #d2f980;
  position: relative;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .p-area__line {
    padding: 15px 30px 15px 60px;
    min-height: 60px;
  }
}
.p-area__line span {
  font-size: 2.8rem;
}
@media screen and (max-width: 767.9px) {
  .p-area__line span {
    font-size: 1.8rem;
  }
}
.p-area__line img {
  position: absolute;
  width: 30px;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.p-concept__last {
  padding: 0 0 250px !important;
  margin-top: -100px;
}
.p-concept__last .left {
  margin-top: 0 !important;
}
.page-id-1540 .page-concept .concept1 h3 {
  font-size: 3.5rem;
}
.page-id-22 .p-concept__fast-1,
.page-id-24 .p-concept__fast-1 {
  padding: 0 20px 0 30px;
  margin: 30px 0;
}
.page-id-22 .p-concept__fast-2,
.page-id-24 .p-concept__fast-2 {
  margin-bottom: 55px;
}
.page-id-24 .service2 .flex-top {
  display: block;
}
.page-id-24 .service2 .worry .img,
.page-id-24 .service2 .solution .flex-top .img {
  width: 100%;
  height: 300px;
  padding: 0 30px;
  margin-bottom: 60px;
}

.p-contact__text {
  margin-top: 50px;
}

.p-fee__text_box {
  font-size: 1.4rem;
  color: #444444;
  letter-spacing: 0.05em;
  text-align: left;
}

.p-syoni__sub-title {
  text-align: center;
  font-size: 2.4rem;
}
@media screen and (max-width: 767.9px) {
  .p-syoni__sub-title {
    font-size: 1.8rem;
  }
}
.p-syoni__sub-text {
  margin: 60px 0;
}
.page-id-24 .service3:nth-of-type(2) {
  margin-bottom: 0;
}
.p-syoni__last-text {
  border: solid 1px #d9d8d7;
  padding: 40px 50px;
  background-color: #fff;
}
@media screen and (max-width: 767.9px) {
  .p-syoni__last-text {
    padding: 40px 20px;
  }
}
.p-flow__text {
  margin-top: 50px;
}
.page-id-26 .service2 .right p:nth-of-type(2) {
  margin-top: 50px;
}

p, a, li, div {
  word-break: break-all;
  overflow-wrap: anywhere;
}

.p-company__youtube {
  margin: 100px auto 0;
  display: block;
  width: 560px;
  height: 315px;
}
@media screen and (max-width: 767.9px) {
  .p-company__youtube {
    width: 95%;
    height: 205px;
  }
}
.p-company__media {
  margin: 100px auto 0;
  display: block;
}

.p-footer__img {
  display: block;
  width: 130px;
  height: auto;
}
.p-footer__img-box {
  display: flex;
  gap: 0 100px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .p-footer__img-box {
    gap: 0 30px;
  }
}