@charset "UTF-8";

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  font-size: 62.5%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-size: 1.5rem;
  font-family: 'BIZ UDPGothic', sans-serif;
  line-height: 1.6;
  letter-spacing: .05em;
  color: #333;
  z-index: 1;
  scroll-padding-top: 100px;
}

:root {
  --main-color: #76889a;
  --sab-color: #7f8c8d;
  --sab-brown: #89756E;
  --blak: #333;
  --red: #ff0000;
  --ttl: #ddcecd;
  --blak: #333;
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
}

::-moz-selection {
  color: #fff;
  background: var(--color-theme);
}

.wrap {
  width: 1000px;
  max-width: 90%;
  margin: 0 auto;
}

a {
  color: #555;
  text-decoration: none;
}

a:hover {
  opacity: .7;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

p {
  margin-bottom: 1em;
}

strong {
  font-weight: bold;
}

p.strong {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
  margin-left: 0;
}

/* googl font */
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

/* トップ画面メイン背景 */
.bg-primary {
  background-color: #fff;
}

main {
  background-color: #fff;
}

/* section */
section {
  padding-bottom: 6rem;
}

.section {
  padding-top: 6rem;
}

/* タイトル */
h1 h2 {
  font-family: 'Oswald', sans-serif;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 30px;
  color: #333;
}

h3 {
  text-transform: uppercase;
  font-size: 25px;
  color: #333;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
  margin-bottom: 30px;
}


/* 英語タイトル */
.section-title .en {
  font-size: 35px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--main-color); 
  margin: 60px 0 0;
}

/* 日本語タイトル */
.section-title .jp {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-top: 8px;
}


.marker {
  background-color: #fff4e0;
}

.red {
  color: var(--red);
}

@media screen and (max-width:768px) {
  .section-title .en {
    font-size: 24px;
  }
}

/* ==================================================
  splash
====================================================*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
  display: flex;
}

#splash_logo {
  margin: auto;
  width: 180px;
}

@media screen and (max-width:768px) {
  #splash_logo {
    width: 150px;
  }
}

/* 文字を光らせる */
.shine {
  font-weight: 400;
  background-image: linear-gradient(20deg,
      rgba(123, 123, 117, 0.7) 45%,
      #fff 50%,
      rgba(123, 123, 117, 0.7) 55%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 5s infinite;
}

@media screen and (max-width:768px) {
  h1.trigger .shine {
    background-image: linear-gradient(20deg,
        rgba(248, 248, 245, 0.7) 45%,
        #95825b 50%,
        rgba(242, 242, 237, 0.7) 55%);

    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;

  }
}

@keyframes shine {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ボタン */
.linkBtn {
  text-align: center;
  margin-top: 50px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--sab-brown);
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: #bc6a5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-detail--reform .btn {
  background: #0077b6;
}

.service-detail--reform .btn:hover {
  background: #005c8a;
}



@media screen and (max-width:768px) {

  *,
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
  }

  body {
    font-size: 14px;
    background-size: initial;
  }

  .wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .white_b {
    background-image: linear-gradient(20deg,
        rgba(255, 255, 255, 0.8) 45%,
        /* 薄い白 */
        rgb(143, 143, 142) 50%,
        /* シルバーの濃いバージョン */
        rgba(255, 255, 255, 0.8) 55%
        /* 薄い白 */
      );
  }
}

/*================================================
 *  ヘッダー
 ================================================*/
#mainnav {
  position: fixed;
  top: -5px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: transparent;
  z-index: 100;
}

#nav-container {
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  /* padding: 0 30px; */
  padding: 20px;
  position: relative;
  z-index: 1001;
  /* padding-bottom: 20px; */
}

/* .nav-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
} */

.inner-left h1 {
  margin: 0;
}

.logo-image {
  height: 60px;
}

.inner-right {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.inner-right li a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  transition: color 0.3s ease;
}

.inner-right li a:hover {
  color: var(--main-color); /* 必要に応じて色を調整 */
}


/* .inner-left {
  width: 30%;
  text-align: center;
} */

.inner-left h1 {
  width: 180px;
}

/* .inner-right {
  width: 60%;
} */

.nav-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* padding: 20px; */
  gap: 20px;
}

.nav-left {
  flex-shrink: 0;
}

.nav-center {
  display: flex;
}

.menu-list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li a {
  position: relative;
  display: inline-block;
  color: #fff; /* 初期色（必要なら変更） */
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.4s ease;
  font-size: 18px;
}

.menu-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor; /* テキストと同じ色 */
  transition: width 0.3s ease;
}

.menu-list li a:hover::after {
  width: 100%;
}

.menu-list li a i {
  color: #fff;
  transition: color 0.4s ease;
}

.nav-box.scrolled .menu-list li a {
  color: #333; /* スクロールしたら黒に */
}

.scrolled .menu-list li a i {
  color: #555; /* アイコンだけ少し薄い黒に */
}

.news-page .menu-list li a, 
.news-page .menu-list li a i {
  color: #333 !important;
}

/* ここが重要！右端に自動で寄せる */
.nav-right {
  /* margin-left: auto; */
  display: flex;
  align-items: center;
  gap: 15px;
}

.instagram-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.menu-item:hover .instagram-icon {
  transform: scale(1.1);
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  pointer-events: none;
}

.mask.active {
  background-color: rgba(23, 22, 22, 0.6);
}

@media screen and (max-width:768px) {
  .nav-right {
    display: none;
  }

  .menu-list {
    display: none;
  }

  .nav-box {
    justify-content: space-between;
  }

  .logo-image {
    height: 44px;
}
}

.navbar {
  position: relative;
  top: -95px;
  left: 0;
  height: 90px;
  background-color: transparent;
  transition: background-color 0.3s;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav_cross {
  position: fixed;
  top: 20px;
  right: 58px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  z-index: 5000;
}

/*ボタン内側*/
.nav_cross span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
}

.nav_cross span:nth-of-type(1),
.nav_cross span:nth-of-type(3) {
  height: 2px;
  background: var(--main-color);
  width: 62%;
  left: 10px;
}

.nav_cross span:nth-of-type(1) {
  top: 13px;
}

.nav_cross span:nth-of-type(2) {
  top: 18px;
  left: 11px;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--main-color);
}

.nav_cross span:nth-of-type(3) {
  top: 36px;
}

.nav_cross.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 70%;
}

.nav_cross.active span:nth-of-type(2) {
  opacity: 0;
}

.nav_cross.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 70%;
}

.nav_cross.active span {
  background-color: #fff;
}

/* @media screen and (max-width: 768px) {
  #nav-toggle {
    color: blue;
  }

  #nav-toggle span {
    background-color: blue;
  }
} */



.menu {
  display: flex;
  align-items: center;
  padding-top: 10px;
}

.menu-item {
  margin: 0 5px;
  font-size: 20px;
  color: #fff;
}

.nav-box.scrolled .menu-item {
  color: #333;
}

.menu-item.recruit {
  background-color: var(--main-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 110px;
  font-weight: bold;
  font-size: 1.6rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-item.recruit:hover {
  background-color: var(--sab-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.scrolled .menu-item.recruit {
  color: #fff ;
}

/* .menu-item img {
  width: 100px;
} */

.accordion-menu {
  position: fixed;
  top: 50px;
  right: -300px;
  width: 500px;
  height: 100%;
  transition: .6s;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 160px;
  opacity: 0;
  pointer-events: none;
}

.accordion-menu.open {
  right: 7%;
  opacity: 1;
  pointer-events: auto;
}

.accordion-menu a {
  margin: 20px 0;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 3rem;
  opacity: 0;
  transition: 2s;
}

.accordion-menu.open a {
  opacity: 1;
}

h2.nav_logo {
  width: 200px;
  margin-bottom: 0;
  /* background-color: #fff; */
  border-radius: 10px;
}

.nav_bac_color {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.nav_logo .logo-image {
  max-height: 150px;
  margin: 0;
}

.nav_container {
  margin-top: 50px;
}

/* ul.menu_various {
  margin-left: 40px;
}

.menu_various li a {
  font-size: 20px;
} */


.nav_container li a {
  position: relative;
  text-decoration: none;
}

.nav_container li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--sab-color);
  transition: width 0.3s ease;
}

.nav_container li a:hover::after {
  width: 100%;
}

.link_box {
  display: flex;
  justify-content: space-around;
  width: 300px;
  margin-top: 50px;
}
/* サイドコンテント */
#side_contact {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 3000;
  transform: translateY(-50%);
}

#side_contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#side_contact li {
  margin: 15px 0;
}

#side_contact a {
  display: block;
  text-decoration: none;
  color: #fff;
}

.side-contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--main-color);
  padding: 10px 12px;
  border-radius: 10px 0 0 10px;
  transition: background 0.3s ease;
}

.side-contact-inner {
  transition: transform 0.3s ease;
}

.side-contact-inner:hover {
  transform: scale(1.1);
}

.side-icon {
  font-size: 20px;
  margin-bottom: 5px;
}

.side-text {
  writing-mode: vertical-rl;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
}

/* .contact-link {
  border: 1px solid #fff;
  padding: 5px;
  border-radius: 5px;
  text-decoration: none;
} */

.circle__container {
  position: fixed;
  width: 1px;
  height: 1px;
  top: 50%;
  left: 50%;
  z-index: 2000;
}

.circle {
  width: 100vw;
  height: 100vw;
  position: absolute;
  top: -50vw;
  border-radius: 50%;
  z-index: 999;
  background-color: #6d87a1;
  transform: scale(0);
  transform-origin: center center;
  transition: 1s;
  opacity: 0;
}

@media screen and (max-width:1024px) {
  .circle__container {
    left: 30%;
  }

  .circle {
    width: 200vw;
    height: 200vw;
    top: -100vw;
  }
}

@media screen and (max-width:768px) {
  .side-contact-inner {
    padding: 10px;
  }
  .side-text {
    font-size: 14px;
  }

  .side-icon {
    font-size: 16px;
}
  .circle__container {
    left: 50%;
  }
}

.circle.open {
  transform: scale(1);
  opacity: 1;
}

.hide-on-open {
  transition: opacity 0.3s ease;
}

.hide-on-open.open {
  opacity: 0;
  pointer-events: none;
}

a.menu-item_ins {
  width: 33px;
}

@media screen and (max-width:768px) {
  #nav-container {
    padding: 10px 20px;
  }

  .inner-left {
    width: 40%;
  }

  .inner-left h1 {
    font-size: 16px;
    line-height: 1.4;
  }

  .inner-left h1.trigger a {
    color: #fff;
  }

  span.shine {
    font-size: 1.2rem;
  }

  .menu-item {
    /* margin: 0 5px;
    font-size: 1.8rem; */
    display:none;
  }

  .circle {
    width: 130vh;
    height: 130vh;
    top: -65vh;
    left: -65vh;
    /* right: -28vh; */
  }

  .accordion-menu {
    right: -15%;
  }

  .accordion-menu.open {
    right: 20%;
  }

  .accordion-menu {
    padding-top: 0;
  }

  .nav_bac_color {
    margin-top: 50px;
    width: 300px;
  }


  .nav_cross {
    top: 0px;
    right: 14px;
  }
}

@media screen and (max-width:520px) {
  .accordion-menu.open {
    right: -10%;
  }
}

/* =======================================================
* main
* ======================================================= */
#main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.slide-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  padding: 20px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.slide-caption h1 {
  font-size: 40px;
  margin-bottom: 1rem;
}

.slide-caption p {
  font-size: 20px;
}

.breadcrumb {
  display: flex;
  gap: 0 22px;
  padding: 0;
  font-size: 14px;
  padding-top: 45px;
  margin-left: 150px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:first-child::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V11L1 11L11.3273 1.6115C11.7087 1.26475 12.2913 1.26475 12.6727 1.6115L23 11L20 11V20ZM11 13V19H13V13H11Z' fill='%23333333'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  transform: rotate(45deg);
  width: .3em;
  height: .3em;
  margin-left: 10px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  content: '';
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
}

@media screen and (max-width:768px) {
  .slide-caption h1 {
    width: 300px;
    font-size: 24px;
  }

  .slide-caption p {
    font-size: 14px;
}

  .breadcrumb {
    gap: 0 6px;
    font-size: 10px;
    padding-top: 15px;
    margin-left: 17px;
  }
}





.l-section .l-inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

[class*=swiper]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}

.swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.mv01 .swiper-fade .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;
}

.mv01 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.mv01 .swiper-pagination {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 3.2rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
}

.mv01 .swiper-pagination-bullet {
  display: block;
  width: 2px;
  height: 50px;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: rgba(95, 95, 95, 0.8);
  margin-bottom: 4px !important;
  border-radius: 0;
}

.mv01 .swiper-pagination-bullet:not(:first-child) {
  margin-top: 0.8rem;
}

.mv01 .swiper-pagination-bullet-active {
  background-color: var(--color-theme);
}

.mv01 .slide-media {
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
}

.mv01 .slide-media img {
  -webkit-transition: 7s 1s ease-out;
  transition: 7s 1s ease-out;
}

.mv01 .swiper-slide[class*=-active] .slide-media img {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  left: 2% !important;
}

@-webkit-keyframes mv01-fadeIn {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
    -webkit-filter: blur(300px);
    filter: blur(300px);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes mv01-fadeIn {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
    -webkit-filter: blur(300px);
    filter: blur(300px);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  .l-inner {
    padding: 0 4rem;
  }

  .pc {
    display: none !important;
  }

  .mv01 .slide-media {
    height: max(90vh, 80vw);
  }

}

@media only screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }

  .pc-tab {
    display: none !important;
  }
}

@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }

  .swiper-button-prev::before,
  .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }

  .swiper-button-prev:hover::before,
  .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@media only screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}

/* =======================================================
* strengths
* ======================================================= */
.strengths {
  position: relative;
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
  margin-top: 100vh;
}

.scroll_down{
  position:absolute;
 top: -80px;
  left: 50%;
}


.scroll_down a{
  position: absolute;
  left: 10px;
  bottom: 87px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background:#fff;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:160px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:2px;
  height: 160px;
  background:#fff;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  color: var(--main-color);
}

.strengths-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.strength-item {
  max-width: 250px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.strength-item:hover {
  transform: translateY(-5px);
}

.strength-item .icon {
  font-size: 40px;
  color: var(--main-color);
  margin-bottom: 20px;
}

.strength-item h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.strength-item p {
  font-size: 14px;
  color: #555;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 24px;  
  }
  .strengths-list {
    flex-direction: column;
    align-items: center;
  }
}


/* =======================================================
* services
* ======================================================= */
/* 見出しセクション全体 */
.business-section {
  text-align: center;
}

.section-subtitle {
  font-size: 1.4rem;
  color: #666;
}

.section-description {
  line-height: 1.8;
  margin-top: 10px;
  margin-bottom: 50px;
  color: #333;
  font-size: 16px;

}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-number {
  font-size: 2rem;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.service-text {
  flex: 1;
  min-width: 280px;
}

.service-text h3 {
  font-size: 30px;
  margin-bottom: 0.5rem;
  color: #222;
}

.service-text p {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.8;
}

.service-image {
  flex: 1;
  min-width: 280px;
}

.service-image a {
  display: inline-block;
  overflow: hidden;
  border-radius: 8px; /* お好みで角丸 */
}

.service-image img {
    flex: 1;
  min-width: 280px;
  transition: transform 0.6s ease;
  width: 100%;
  height: auto;
}

.service-image a:hover img {
  transform: scale(1.2);
}


@media screen and (max-width:768px) {
  .section-description {
    text-align: left;
    font-size: 14px;
  }
  
  .service-number {
    display: none;
  }
  
  .service-item h3 {
    font-size: 22px;
    margin: 0;
  }
  
  .service-item p {
    text-align: center;
    line-height: 1.8;
  }
  
  .service-item hr {
    width: 60px;
    border: 1px solid #ccc;
    margin: 0 auto 1rem;
  }
}  

/* =======================================================
* slider
* ======================================================= */
/* .swiper-wrapper {
  will-change: transform;
  transition-timing-function: linear!important;
} */

.swiper-construction {
  width: 100%;
  padding: 20px 0;
}

.swiper-construction .swiper-slide {
  /* width: 280px ; */
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-construction .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}



/* =======================================================
* news
* ======================================================= */
section#news {
  background-color: #f9f9f9;
}

iframe#blogCont {
  width: 100%;
}

/*=========================================
news
=========================================*/
#news {
  position: relative;
}

section#news {
  margin-top: 50px;
}

.news-scroll {
  max-height: 320px;
  overflow-y: auto;
  padding-right: 10px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  max-width: 700px;
  margin: 0 auto;
}

.news-scroll dl {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.news-scroll dl:last-child {
  border-bottom: none;
}

.news-scroll dt {
  flex-basis: 25%;
  font-weight: bold;
  margin-right: 10px;
  white-space: nowrap;
  color: #333;
}

.news-scroll dd {
  flex-basis: 75%;
  margin: 0;
  line-height: 1.6;
  color: #333;
}

/* スクロールバー（任意） */
.news-scroll::-webkit-scrollbar {
  width: 8px;
}

.news-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}



/* モーダル */
a#modalOpen {
  color: #333;
  cursor: pointer;
  text-decoration: underline;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  min-width: 500px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  max-height: 90vh;
  overflow: auto;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal_content {
  display: flex;
  justify-content: space-between;
  text-align: center;
  font-weight: bold;
  align-items: center;
}

.modalContests {
  line-height: 1.8;
}

.modalClose {
  font-size: 2rem;
  cursor: pointer;
}

@media screen and (max-width:768px) {

  /* モーダル */
  .modal {
    min-width: initial;
    width: 90%;
    opacity: 0;
  }

  a#modalOpen {
    font-size: 14px;
  }

  #news dl dt {
    width: 100%;
    text-align: left;
    border-bottom: none;
    padding-bottom: 0;
  }

  #news dl dd {
    width: 100%;
    font-size: 14px;
  }
}

/* =======================================================
*instagram
* ======================================================= */
#instagram .instBox p.red {
  padding-left: 1%;
}

/* 
=======================================================
*access
* ======================================================= */
#access {
  text-align: center;
}

table {
  border-collapse: collapse;
}

th,
td {
  padding: 0.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid #b5b5b5;
}

td.name {
  width: 180px;
  text-align: left;
}

.name i {
  color: #5A718B;
  margin-right: 5px;
}

td a {
  color: #333;
}

.mapArea {
  margin-top: 80px;
  text-align: center;
}

.mapArea iframe {
  width: 100%;
}

@media (max-width: 768px) {

  th,
  td {
    padding: 0.5rem 0rem;
    font-size: 13px;
  }

  td.name {
    width: 100px;
  }
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding-left: 5px;
}


/* =======================================================
* service-page
* ======================================================= */
.service01 {
  background-color: #f7f7f7;
  text-align: center;
}

.service01-title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.service01-text {
  font-size: 1.8rem;
  color: #555;
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto;
  text-align: justify;
  letter-spacing: 0.03em;
}

.service01-text .highlight {
  font-weight: bold;
  color: #333;
}

.service01-text .emphasis {
  display: inline-block;
  font-size: 2rem;
  margin-top: 0.8em;
  font-weight: bold;
  color: #2a7ae2; /* アクセントカラー */
}


@media (max-width:768px) {

  .service01-title {
    font-size: 2rem;
  }
  .service01-text {
    padding: 0 20px;
  }
}

/* service-detail */
.service-detail {
  background: #f9f9f9;
  /* padding: 60px 20px; */
}

.service-detail__title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  color: #333;
  position: relative;
}

.service-detail__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ec2308;
  margin: 10px auto 0;
  border-radius: 3px;
}

.service-detail__lead {
  text-align: center;
  font-size: 1.8rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
}

.service-detail__features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-detail__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.service-detail__feature-num {
  font-size: 1.4rem;
  font-weight: bold;
  background: var(--sab-brown);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-detail__feature-content h3 {
  font-size: 1.8rem;
  margin: 0 0 5px;
  color: #333;
}

.service-detail__feature-content p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.service-detail__cta {
  text-align: center;
  margin-top: 50px;
}

.service-detail__btn {
  display: inline-block;
  padding: 12px 30px
}


.service-detail--reform {
  background: #f4f8f9; /* 新築と差別化した優しいブルー系グレー */
}

.service-detail--reform .service-detail__title::after {
  background: #0077b6; /* 青系のアクセントライン */
}

.service-detail--reform .service-detail__feature-num {
  background: #0077b6;
}

.service-detail--renovation .service-detail__title::after {
  background: #4a635d; /* モスグリーン */
}

.service-detail--renovation .service-detail__feature-num {
  background: #4a635d;
}

.service-detail--renovation .btn {
  background: #4a635d;
}

.service-detail--renovation .btn:hover {
  background: #394e48;
}


/* =======================================================
*company-page
* ======================================================= */
.company-page {
  line-height: 1.7;
  color: #333;
  background: #fdfdfd;
}

.company-intro,
.company-message,
.company-philosophy,
.company-info,
.company-services,
.company-access {
  padding: 60px 20px;
}

.company-intro__title,
.company-message h2,
.company-philosophy__title,
.company-info__title,
.company-services__title,
.company-access__title,
.company-recruit__title {
  font-size: 3rem;
  color: var(--main-color);
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.company-intro__lead,
.company-philosophy p {
  text-align: center;
  font-size: 1.6rem;
  color: #555;
  margin: 0 auto;
}

/* 代表メッセージ */
.company-message__flex {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.company-message__text {
  flex: 1;
  min-width: 280px;
}

.company-message__image {
width: 250px;
  text-align: center;
}

.company-message__image img {
  border-radius: 50%;
width: 100%;
  height: auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 代表メッセージ */
.sign {
  margin-top: 20px;
  font-style: italic;
  font-weight: bold;
  color: #444;
}

/* 会社概要 */
.company-info__table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #ddd;
}

.company-info__table th,
.company-info__table td {
  border: 1px solid #ddd;
  padding: 12px 16px;
  text-align: left;
}

.company-info__table th {
  background: #f1f1f1;
  width: 30%;
  font-weight: bold;
}

/* 事業内容 */
.company-services__list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  color: #555;
}

.company-services__list li {
  margin-bottom: 12px;
  padding-left: 1.2em;
  position: relative;
}

.company-services__list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #ec2308;
}

.company-access__map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* 採用情報（求人案内） */
.company-recruit {
  padding: 60px 20px;
  text-align: center;
}

.company-recruit__lead {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.company-recruit__points {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 500px;
  text-align: left;
  color: #444;
  font-size: 1.4rem;
}

.company-recruit__points li {
  margin-bottom: 10px;
  padding-left: 1.5em;
  position: relative;
  font-size: 18px;
}

.company-recruit__points li::before {
  content: \"✔\";
  position: absolute;
  left: 0;
  color: #ec2308;
  font-weight: bold;
}

.note {
  font-size: 1rem;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .company-message__flex {
    flex-direction: column;
    text-align: center;
  }
  .company-info__table {
    font-size: 0.95rem;
  }
}




/* =======================================================
*salon_menu
* ======================================================= */
#salon_menu h1 {
  font-size: 50px;
}

h2.menuBox_ttl {
  font-size: 30px;
  font-weight: normal;
}

.menuBox_ttl {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 50px 0 20px;
  line-height: 1;
}

.menuBox_ttl span::before {
  border-top: 1px solid #a29369;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 300px;
}

.firstBox {
  position: relative;
}

.firstBox img {
  position: absolute;
  top: 0;
  right: 4%;
  width: 20%;
}

.menu_content {
  margin-top: 100px;
  margin-bottom: 80px;
}

.firstBox:not(:first-child) {
  padding-top: 50px;
}

.menu_content01 {
  width: 50%;
}

.menu_content02 {
  font-size: 16px;
  color: #666;
  margin-top: -34px;
}

li.menu_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #333;
}

.menu_content01.bridal {
  width: 100%;
  border-bottom: 1px solid #333;
}

.menu_content01.bridal h3 {
  margin-bottom: 0;
}

section#salon_menu {
  padding-bottom: 0px;
}

.option_up {
  display: flex;
  flex-direction: column;
  width: 50%;
}

li.menu_flex:not(:first-child) {
  padding-top: 30px;
}

.menu_content h3 {
  border-bottom: none;
  color: #a49e76;
}

.menu_option {
  text-align: left;
  margin-bottom: 5px;
}

.option_tag {
  display: inline-block;
  background-color: #c91919;
  color: #fff;
  padding: 2px 6px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.list_sp {
  display: contents;
}

.list_time {
  width: 13%;
  font-size: 20px;
}

.list_price {
  width: 10%;
  font-size: 20px;
  text-align: end;
  padding-right: 12px;
}

.first_into {
  font-size: 18px;
  text-align: center;
}

.acList_name {
  width: 59%;
  padding: 7px 40px 7px 0;
}

.tax_display {
  text-align: right;
  padding: 10px 5px 0 0;
}

/* ボタン */
.button_solid.menu_b,
.button_solid.menu_f {
  display: contents;
}

.button_solid.menu_b a,
.button_solid.menu_f a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 10px 25px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background: #a49e75;
  filter: drop-shadow(0px 2px 4px #ccc);
  border-radius: 3px;
  border-radius: 50px;
  overflow: hidden;
}

.button_solid.menu_b a:before,
.button_solid.menu_f a:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
  -webkit-transition: 0.5s;
  transition: 0.6s;
}

.button_solid.menu_b a:hover:before,
.button_solid.menu_f a:hover:before {
  left: 100%;
}

.button_solid.menu_b a:after,
.button_solid.menu_f a:after {
  position: absolute;
  top: 50%;
  right: 20px;
  transition: 0.2s ease-in-out;
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: translateY(-50%);
}

.button_solid.btn_normal {
  position: static;
  margin: 0 auto;
  padding-bottom: 80px;
}


@media screen and (max-width:768px) {
  #salon_menu h1 {
    font-size: 30px;
  }

  h2.menuBox_ttl {
    font-size: 22px;
  }

  .menuBox_ttl span::before {
    width: 30px;
  }

  .menuBox_ttl span::after {
    width: 30px;
    left: 90%;
  }

  .firstBox img {
    top: 46px;
    right: 6%;
    width: 42%;
    z-index: -3;
  }

  li.menu_flex {
    flex-direction: column;
  }

  .menu_content01 {
    width: 100%;
  }

  .menu_content h3 {
    font-size: 20px;
  }

  .menu_content02 {
    font-size: 13px;
  }

  .list_sp {
    display: flex;
  }

  .list_time {
    width: 50%;
  }

  .list_price {
    width: 50%;
  }

  .option_up {
    width: 100%;
  }

  .button_solid.menu_f a {
    padding: 10px 24px;
}

.button_solid.menu_f a:after {
top: 53%;
  right: 13px;
}
}

/* =======================================================
*voice
* ======================================================= */

#voice {
  max-width: 980px;
  margin: 0 auto;
}

.voice_content {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.voice_content img {
  width: 25%;
}

#voice .voice_content h2 {
  padding: 20px;
  background-color: #fff;
  font-size: 1.8rem;
  border-radius: 10px;
}

#voice ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#voice ul li {
  width: 28%;
  padding: 20px;
  background-color: #e4e4e4;
  margin-bottom: 10px;
  border-radius: 10px;
}

#voice ul li p {
  font-size: 2rem;
  text-align: center;

}

.menu_item_voice {
  width: 150px;
  text-align: center;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  background-color: #fff;
  transition: background-color 0.3s ease;
}

.menu_item_voice:hover {
  background-color: #f0f0f0;
}

.menu_item_voice a {
  color: #a49e76;
}

@media screen and (max-width:768px) {
  #voice {
    padding-top: 0;
    padding-bottom: 0;
  }

  .voice_content {
    padding: 30px 20px 0;
    justify-content: space-evenly;
  }

  #voice .voice_content h2 {
    margin-bottom: 30px;
    font-size: 1.6rem;
    padding: 15px;
  }

  .voice_content img {
    width: 30%;
  }

  #voice ul {
    padding: 0 10px;
    margin: 0;
  }

  #voice ul li {
    width: 49%;
    justify-content: space-evenly
  }

  .menu_choose {
    margin: 40px 20px 0;
  }

  .menu_item_voice {
    width: 200px;
    padding: 10px;
    margin: 10px;
  }

  .menu_contact {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width:720px) {
  #voice ul li {
    padding: 7px;
  }
}

/* menu_choose */
.menu_contact {
  display: flex;
  justify-content: space-around;
}

/* intro */
.discussion_box {
  margin-top: 100px;
  display: block;
  text-align: center;
}

.discussion_box h2 {
  color: #5A718B;
}

.discussion_box .note {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid #ccc;
  padding: 10px;

  font-size: 1.2rem;
}

form {
  max-width: 700px;
  margin: 50px auto;
}

label {
  display: block;
  margin: 35px auto 10px;
  font-weight: bold;
}

label small {
  font-size: 11px;
}

input[type="email"],
input[type="number"],
input[type="text"],
input[type="tel"],
input[type="zipcode"],
input[type="datetime-local"],
input[type="date"],
select,
textarea {
  width: 100%;
  display: block;
  border: 1px solid #ccc;
  outline: none;
  height: 50px;
  line-height: 1.8;
  background: #f9f9f9;
  font-size: 15px;
  padding-left: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', Arial, Verdana, 游ゴシック, YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo, sans-serif;
}

textarea {
  height: 300px;
  padding: 10px;
}

form sup {
  background-color: #e65a5a;
  color: #fff;
  font-size: 10px;
  margin-left: 4px;
  padding: 3px 5px;
  border-radius: 3px;
  vertical-align: text-top;
}

form sup.any {
  background-color: #959796;
}

button {
  font-family: 'Poiret One', cursive;
  text-transform: uppercase;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #fff;
  padding: 15px 80px;
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
}

button:hover {
  background: #fff;
  color: var(--main-color);
}

input[type=checkbox] {
  display: none;
}

/* input[type=checkbox]:checked+.checkbox02::before {
  border-color: #666;
}

input[type=checkbox]:checked+.checkbox02::after {
  opacity: 1;
} */

/* policy */
.policy {
  font-size: 1rem;
  font-weight: normal;
  height: 120px;
  margin-top: 30px;
  margin-bottom: 10px;
  overflow: auto;
  padding: 0 20px 0 20px;
  border: 1px solid #c7c4b5;
  border-radius: 3px;
  background: #fff;
}

.policy h4 {
  font-size: 2rem;
}

.policy h4+p {
  font-size: 1.4rem;
}

.radioBtn {
  position: relative;
  top: 3px;
  cursor: pointer;
  padding-left: 9px;
  display: inline;
  font-weight: normal;
  margin-right: 15px;
  font-size: 15px;
}

@media screen and (max-width:768px) {
  textarea {
    height: 200px;
  }

  .discussion_box h2 {
    font-size: 18px;
  }
}



/* =======================================================
*下層ページ | sub 
* ======================================================= */
#sub {
  position: relative;
}

.sub-ttl h1 {
  position: absolute;
  top: 250px;
  left: 20%;
  font-size: 80px;
  font-family: fantasy;
  color: var(--main-color);
}

.sub-ja {
  position: absolute;
  top: 340px;
  left: 22%;
  font-size: 18px;
  color: #666;
  letter-spacing: 0.1em;
}

@media screen and (max-width:768px) {
  .sub-ttl h1 {
    top: 38%;
    left: 20%;
    font-size: 38px;
  }

  .sub-ja {
    top: 74%;
    left: 22%;
    font-size: 12px;
}
}

/* =======================================================
*sub_main
* ======================================================= */
#sub_main {
  /* display: flex;
  justify-content: space-evenly; */
  flex-wrap: wrap;
  max-width: 1200px;
  height: 300px;
  margin-top: 50px;
  align-items: center;
  margin: 50px auto;
}

.sub_block {
  width: 40%;
}

.sub_img {
  width: 50%;
}

.sub_img img {
  width: 100%;
  border-radius: 40%;
}

h2.playfair-display {
  font-size: 40px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
}

h2.playfair-display span {
  font-size: 20px;
  color: var(--sab-color);
  font-style: normal;
}

.sub_ttl {
  max-width: 400px;
  margin: 0 auto;
}

.sub_ttl p {
  color: var(--color-theme);
  font-weight: bold;
  font-size: 20px;
}

.sub_ttl.menuText {
  position: absolute;
  top: 3%;
  left: 40%;
}

.sp_only {
  display: none;
}

@media screen and (max-width:768px) {
  #sub_main {
    flex-direction: column-reverse;
    margin-top: 100px;
    height: auto;
  }

  .sub_block {
    width: 100%;
  }

  .pc_only {
    display: none;
  }

  .sp_only {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }

  .sub_img {
    position: relative;
    width: 90%;
  }

  .sub_ttl p {
    font-size: 14px;
    padding: 30px 20px 0;
    margin-bottom: 0;
  }

  .sub_ttl.menuText {
    top: 30px;
    width: 219px;
    left: 2%;
    z-index: 5;
  }
}

@media screen and (max-width:520px) {
  h2.playfair-display {
    top: 225px;
    left: 205px;
    font-size: 30px;
    line-height: .8;
  }

  h2.playfair-display span {
    font-size: 16px;
  }
}

/* =======================================================
*menu_area
* ======================================================= */



/* different */
.different01 {
  margin-top: 50px;
}

.different01 p {
  font-size: 20px;
}

.different {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
}

.different_text {
  width: 45%;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.different_text h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.different_text p {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
}

@media screen and (max-width:768px) {
  .different {
    flex-direction: column;
    align-items: center;
  }

  .different_text {
    width: 100%;
  }

  .different01 p {
    font-size: 16px;
  }
}



/* =======================================================
policy
*
* ======================================================= */
#policy h2 {
  margin-top: 80px;
  font-size: 30px;
}

#policy h3 {
  margin-top: 50px;
}

#policy dt {
  padding-bottom: 5px;
}

#policy dd {
  padding-bottom: 10px;
}

.article ol {
  list-style: none;
  counter-reset: item;
  padding-left: 0;
}

.article ol li {
  counter-increment: item;
  position: relative;
  padding-left: 25px;
}

.article ol li::before {
  content: counter(item) ". ";
  position: absolute;
  left: 0;
}

@media screen and (max-width:768px) {
  #policy h2 {
    font-size: 20px;
  }
}

/* =======================================================
*footer
* ======================================================= */
footer {
  padding: 50px 0;
  background: #f1f1f1;
  text-align: center;
}

.footer_name {
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.footer_menu li a {
  position: relative;
  text-decoration: none;
}

.footer_menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--sab-color);
  transition: width 0.3s ease;
}

.footer_menu li a:hover::after {
  width: 100%;
}

.footer_menu.ft {
  max-width: 600px;
  display: flex;
  margin: 0 auto;
  margin-bottom: 20px;
  justify-content: space-between;
}

.menu_various.ft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.menu_various.ft li {
  padding: 5px 0 5px 10px;
  text-align: left;
}

.menu_various.ft li a {
  font-size: 16px;
}

.footer_name .logo-image {
  width: 250px;
  height: auto;
}

span.sm {
  font-size: 2rem;
  font-weight: 300;
}

.footer_menu li {
  display: inline-block;
  padding: 20px 10px;
  font-size: 18px;
}

.link_box_footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 350px;
  margin: 20px auto;
}

.link_box_footer .menu-item {
  width: 180px;
}

.footer_sns li {
  display: inline-block;
  padding: 0 10px;
}

.copyright {
  text-align: center;
  font-size: 11px;
}

@media screen and (max-width:768px) {
  .footer_name {
    font-size: 22px;
    font-weight: bold;
  }

  .footer_name .logo-image {
    width: 130px;
  }

  span.sm {
    font-weight: 300;
    font-size: 1.6rem;
  }

  .footer_menu {
    display: flex;
    margin-bottom: 20px;
    flex-direction: row;
    justify-content: center;
    flex-direction: column;
  }

  .footer_menu li {
    display: block;
    padding: 0px 10px;
    font-size: 12px;
  }

  .footer_menu li a {
    font-size: 16px;
  }

  .menu_various.ft li a {
    font-size: 14px;
  }

  .menu_various.ft li:first-child {
    padding-top: 10px;
  }

  .link_box_footer {
    width: 300px;
    justify-content: space-evenly;
  }

  a.menu-item.menu-item_ft {
    width: 60px;
  }

  a.menu-item_ins.menu-item_ft_row {
    width: 24px;
  }

  .menu-item_ft {
    margin: 0;
  }
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
#pagetop {
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0.6;
}

#pagetop a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: var(--sab-color);
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

#pagetop a::after {
  content: 'PAGE TOP';
  font-size: 13px;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: var(--sab-color);
}