:root{
  --puls28: #003d21;
  --ivory: #fbf8eb;
  --default: #333;
}
html{
    overflow-x:hidden;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--default);
  background: url('../img/ivory_background.webp') repeat;
  background-size: auto;
  font-size:16px;
  overflow-x:hidden;
}
@media screen and (max-width:768px){
  body{
      font-size:15px;
  }
}
@media screen and (max-width:575px){
  body{
      font-size:13px;
  }
}
.br-500{display:none;}
.br-575{display:none;}
.br-768{display:none;}
.br-600{display:none;}
.br-768-no{display:block;}
@media screen and (max-width:768px){
  .br-768{display:block;}
  .br-768-no{display:none;}
}
@media screen and (max-width:600px){
  .br-600{display:block;}
}
@media screen and (max-width:575px){
  .br-575{display:block;}
}
@media screen and (max-width:500px){
  .br-500{display:block;}
}
.c-wrapper-fluid{
  width:100%;
  margin:0 auto;
}
.c-wrapper-width{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 15px;
  box-sizing: border-box;
}
.c-wrapper-fluid-width{
  width:100%;
  max-width:1500px;
  margin:0 auto;
  padding:0 15px;
  box-sizing: border-box;
}
h1{
  font-size:2em;
}
p{
  line-height:2em;
}
.breadcrumb{
  padding: 105px 50px 30px;
  display: flex;
  gap: 15px;
  align-items: center;
}
.breadcrumb a{
  color:var(--default);
}
.breadcrumb a:hover{
  color:var(--puls28);
}
.breadcrumb span.next{
  font-size:10px;
}
.breadcrumb span.now{
  color:var(--puls28);
  font-weight:bold;
}
@media screen and (max-width:768px){
  .breadcrumb{
    padding:90px 25px 15px;
  }
}

/* MENU */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  width:100%;
  z-index:9;
  height:75px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 30px 5px 20px;
}
.logo img {
  height: 60px;
}
.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav ul li:not(.last-li) {
  margin-left: 45px;
}
.nav ul li.last-li {
  margin-left: 25px;
}
.nav ul li a {
  text-decoration: none;
  color: var(--puls28);
  font-weight: bold;
}
.nav ul li a:hover{
  color:#000;
}
.sns-icon {
  width: 35px;
  height: 35px;
}
.sns-icon:hover{
  transform:scale(1.05);
  transition-duration: .5s;
}
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 60px;
  height:60px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
  justify-content: space-evenly;
}
.hamburger .line {
  display: block;
  height: 2px;
  width: 50px;
  background: var(--puls28);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger .label {
  color: var(--puls28);
  font-size: 14px;
  transition: opacity 0.3s ease;
}
.hamburger .close-label {
  opacity: 0;
  pointer-events: none;
  display:none;
  color:var(--puls28);
}
.hamburger.active .close-label {
  opacity: 1;
  display:block;
}
.hamburger.active .line-top {
  transform: rotate(45deg) translate(13px, 12px);
  width:25px;
}
.hamburger.active .line-bottom {
  transform: rotate(-45deg) translate(9px, -7px);
   width:25px
}
.hamburger.active .label {
  opacity: 0;
  pointer-events: none;
}
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  z-index: 99;
  padding: 80px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-mobile ul li {
  margin: 16px 0;
}
.nav-mobile ul li a {
  text-decoration: none;
  color: #123c1c;
  font-size: 20px;
  font-weight: bold;
}
.nav-mobile ul li img.sns-icon {
  width: 28px;
  height: 28px;
}
.nav-mobile.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (max-width:1024px){
  .nav ul li:not(.last-li){
    margin-left:35px;
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .logo img{
    height:45px;
  }
  .header-inner{
      padding:5px 15px 5px 15px;
  }

  .nav-mobile{
     padding: 50px 0px;
  }
  .nav-mobile ul {
    text-align:center;
  }
  .nav-mobile ul li{
    margin:25px 0;
  }
  .nav-mobile ul li.sns-li{
    display:flex;
    justify-content: space-around;
    margin-top:30px;
  }
  .nav-mobile ul li.logo-li{
    margin-top:50px;
  }
  .nav-mobile ul li.logo-li img{
    max-width:100px;
  }
}
/* MENU END */

.top-visual {
  position: relative;
  min-height: 70vh;
  max-height:1000px;
  text-align: center;
  overflow: hidden;
  padding-top:75px;
}
.top-images {
  position: relative;
  width: 100%;
  max-width: 1500px;
  height: 70vh;
  max-height:1000px;
  margin: 0 auto;
}
.top-images .photo {
  position: absolute;
  max-width: 500px;
  opacity: 0;
  animation: fadeIn 1s forwards;
  filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.3));
}
.top-images .photo1 { top: 5%; left: 3%; animation-delay: 0.2s; max-width: 500px;}
.top-images .photo2 { top: 52%; left: 0%; animation-delay: 0.8s; max-width:570px;}
.top-images .photo3 { top: 41%; left: 36%; animation-delay: 2.0s; max-width:600px;}
.top-images .photo4 { top: 22%; left: 28%; animation-delay: 1.7s; max-width: 430px;}
.top-images .photo5 { top: 2%; left: 48%; animation-delay: 1.4s; max-width:510px;}
.top-images .photo6 { top: 60%; right: 0%; animation-delay: 0.5s; max-width:480px;}
.top-images .photo7 { top: 13%; right: 0%; animation-delay: 1.1s; max-width: 300px;}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.catch {
  position: absolute;
  font-family: 'Kosugi Maru', sans-serif;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  animation: catchFade 1s ease 2.2s forwards;
  opacity: 0;
  white-space: nowrap;
  margin:0;
}

@keyframes catchFade {
  to {
    opacity: 1;
  }
}
@media screen and (max-width:1500px){
  .top-images .photo1 { top: 2%; left: 0%;max-width: 480px;}
  .top-images .photo2 { top: 52%; left: 0%;max-width:550px;}
  .top-images .photo3 { top: 40%; left: 36%;max-width:550px;}
  .top-images .photo4 { top: 22%; left: 28%;max-width: 410px;}
  .top-images .photo5 { top: 2%; left: 48%;max-width:490px;}
  .top-images .photo6 { top: 62%; right: 0%;max-width:460px;}
  .top-images .photo7 { top: 15%; right: 0%;max-width: 280px;}
}
@media screen and (max-width:1280px){
  .top-images .photo1 { top: 2%; left: 0%;max-width: 450px;}
  .top-images .photo2 { top: 52%; left: 0%;max-width:510px;}
  .top-images .photo3 { top: 40%; left: 34%;max-width:520px;}
  .top-images .photo4 { top: 22%; left: 23%;max-width: 370px;}
  .top-images .photo5 { top: 2%; left: 48%;max-width:460px;}
  .top-images .photo6 { top: 62%; right: 0%;max-width:430px;}
  .top-images .photo7 { top: 21%; right: 0%;max-width: 250px;}
  .catch{font-size:65px;}
}
@media screen and (max-width:1024px){
  .top-images .photo1 { top: 2%; left: 0%;max-width: 450px;}
  .top-images .photo2 { top: 52%; left: 0%;max-width:510px;}
  .top-images .photo3 { top: 40%; left: 34%;max-width:520px;}
  .top-images .photo4 { top: 22%; left: 23%;max-width: 370px;}
  .top-images .photo5 { top: 2%; left: 48%;max-width:460px;}
  .top-images .photo6 { top: 62%; right: 0%;max-width:430px;}
  .top-images .photo7 { top: 20%; right: 0%;max-width: 250px;}
  .catch{font-size:60px;}
  .top-images{min-height:65vh;}
  .top-visual{min-height:65vh;}
}
@media screen and (max-width:992px){
  .top-images .photo1 { top: 5%; left: 0%;max-width: 400px;}
  .top-images .photo2 { top: 52%; left: 0%;max-width:460px;}
  .top-images .photo3 { top: 32%; left: 45%;max-width:410px;}
  .top-images .photo4 { top: 28%; left: 17%;max-width: 320px;}
  .top-images .photo5 { top: 0%; left: 38%;max-width:340px;}
  .top-images .photo6 { top: 59%; right: 0%;max-width:380px;}
  .top-images .photo7 { top: 11%; right: 0%;max-width: 190px;}
  .catch{font-size:50px;}
  .top-images{min-height:55vh;}
  .top-visual{min-height:55vh;}
}
@media screen and (max-width:768px){
  .top-images .photo1 { top: 15%; left: 3%;max-width: 400px;}
  .top-images .photo2 { top: 45%; left: 0%;max-width:460px;}
  .top-images .photo3 { top: 35%; left: 45%;max-width:410px;}
  .top-images .photo4 { top: auto; left: 3%;bottom:0%;max-width: 320px;}
  .top-images .photo5 { top: 0%; left: 38%;max-width:340px;}
  .top-images .photo6 { top: auto; right: 0%;bottom:5%;max-width:380px;}
  .top-images .photo7 { top: 15%; right: 0%;max-width: 190px;}
  .catch{line-height:1.5em;font-size:45px;}
  .top-images{min-height:75vh;}
  .top-visual{min-height:75vh;}
}
@media screen and (max-width:576px){
  .top-images .photo1 { top: 15%; left: -5%;max-width: 300px;}
  .top-images .photo2 { top: 45%; left: 0%;max-width:370px;}
  .top-images .photo3 { top: 35%; left: 45%;max-width:330px;}
  .top-images .photo4 { top: auto; left: 3%;bottom:0%;max-width: 230px;}
  .top-images .photo5 { top: 0%; left: 38%;max-width:240px;}
  .top-images .photo6 { top: auto; right: 0%;bottom:5%;max-width:280px;}
  .top-images .photo7 { top: 15%; right: 0%;max-width: 120px;}
  .catch{line-height:1.5em;font-size:40px;}
  .top-images{min-height:85vh;}
  .top-visual{min-height:85vh;}
}

.top-company-area{
  display:flex;
  flex-wrap: wrap;
  align-items: center;
  gap:50px;
  margin-top:80px;
}
.top-company-area h1{
  color:var(--puls28);
}
.top-company-area .c-left{
  width:30%;
}
.top-company-area .c-center{
  width:calc(40% - 50px);
}
.top-company-area .c-right{
  width:calc(30% - 50px);
}
.green-btn{
  background: var(--puls28);
  color: #fff;
  font-size: 20px;
  padding: 15px 30px;
  display: flex;
  align-items:center;
  justify-content:center;
  text-decoration: none;
  border-radius: 50px;
  border: solid 1px #012715;
  text-align: center;
  min-width:200px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.green-btn::after {
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.green-btn:hover {
  transform:scale(1.05);
  transition-duration: .5s;
}
.green-btn:hover::after {
  transform: scale(1, 1);
}
h1.page-title {
  color: var(--puls28);
  letter-spacing: 0.2em;
  margin-bottom: 0px;
  text-align:center;
  font-size:2.5em;
}
p.title-lead {
  font-size: 16px;
  margin: 0 auto 50px;
  text-align:center;
}
.company-link-btn{
  max-width:300px;
  padding: 25px;
}
.company-logo{
  width:100%;
}

@media screen and (max-width:1280px){
  .top-company-area{
    gap:30px;
  }
  .top-company-area .c-left{
    width:20%;
  }
  .top-company-area .c-center{
    width:calc(40% - 30px);
  }
  .top-company-area .c-right{
    width:calc(30% - 30px);
  }
}
@media screen and (max-width: 1024px) {
  .top-company-area{
    flex-direction:column;
    gap: 0px;
  }
  .top-company-area .c-left,
  .top-company-area .c-center,
  .top-company-area .c-right{
    width:100%;
    text-align: center;
    margin:0 auto;
  }
  .company-logo{
    max-width:200px;
  }
  .company-link-btn{
    margin:0 auto;
    padding:15px 25px;
  }
  .green-btn{
    font-size:18px;
  }
  h1.page-title{
    font-size:2.2em;
  }
}
@media screen and (max-width:768px){
  .top-company-area h1{
    font-size:1.8em;
  }
  .green-btn{
    font-size:16px;
  }
  .green-btn.service-btn{
    padding:20px 15px;
  }
  .flex-btn-area{
    flex-direction: column;
    gap:15px;
  }
  .green-btn.flex-btn{
    padding:15px;
  }
  h1.page-title{
    font-size:2em;
  }
  p.title-lead{
    font-size:14px;
    margin:0 auto 30px;
  }
}

.business-section {
  padding: 0px;
  margin-top:150px;
  text-align: center;
  font-family: sans-serif;
}

.business-section h2 {
  font-size: 24px;
  color: var(--puls28);
  margin-bottom: 40px;
}
.tab-content-area{
  background:var(--puls28);
  color:#fff;
  height:353px;
  font-size:1.1em;
}
.tab-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: -3px;
}

.tab {
  position: relative;
  cursor: pointer;
  padding: 15px;
  border: 2px solid #123c1c;
  border-radius: 25px 25px 0 0;
  background: #fff;
  color: #123c1c;
  transition: background-color 1s, color 1s;
  width: 240px;
  height:220px;
  font-weight: bold;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  box-sizing:border-box;
}
.tab-content p.tab-3{
  margin-bottom:0;
}
.tab-content p.tab-4{
  font-size:2em;
  padding-top:55px;
}
.tab-content {
  display: none;
  background: #123c1c;
  color: #fff;
  padding: 30px;
  border-radius: 0 0 20px 20px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 2;
}

.tab-content.active {
  display: block;
}
.tab-content p.service-title{
  font-size:1.5em;
  line-height:1.5em;
}
.tab-content p span{
  font-size:1.1em;
  font-weight:bold;
}
.tab::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.15;
  filter: invert(12%) sepia(44%) saturate(497%) hue-rotate(97deg) brightness(95%) contrast(91%);
  transition: 0.5s;
  z-index: 0;
}
.tab:hover::before {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0.2;
}
.tab[data-tab="1"]::before {
  background-image: url('../img/business_icon01.svg');
}
.tab[data-tab="2"]::before {
  background-image: url('../img/business_icon02.svg');
}
.tab[data-tab="3"]::before {
  background-image: url('../img/business_icon03.svg');
}
.tab[data-tab="4"]::before {
  background-image: url('../img/business_icon04.svg');
}
.tab.active {
  background: #123c1c;
  color: #fff;
}
.tab.active::before {
  filter: brightness(0) invert(1);
  opacity: 0.2;
  transform: translate(-50%, -50%) scale(1.2);
}
.tab span {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .tab-content-area{
    height:300px;
    font-size:1em;
  }
  .tab-content p.service-title{
    font-size:1.3em;
  }
  .tab-content p span{
    font-size:1em;
  }
  .tab-menu{
    gap:15px;
  }
  .tab{
    font-size: 1.5em;
    width: 180px;
    height: 160px;
  }
  .tab::before{
    width:125px;
    height:125px;
  }
  .tab-content p.tab-4{
    font-size:1.8em;
  }
}
@media screen and (max-width:768px){
  .tab-menu{
    gap:5px;
  }
  .tab{
    font-size:1.4em;
    width:170px;
    height:155px;
  }
  .tab::before{
    width:115px;
    height:115px;
  }
  .business-section{
    margin-top:50px;
  }
  .tab-content p.tab-2{
    font-size:.9em;
  }
  .tab-content p.tab-4{
    font-size:1.6em;
  }
}
@media screen and (max-width:600px){
  .tab{
    font-size:1.2em;
    padding:5px 0;
  }
  .tab.active{
    padding:5px 0;
  }
  .tab-content{
    padding:30px 30px;
  }
  .tab-content-area{
    height:250px;
  }
  .tab-content p.tab-1{
    font-size:.9em;
    line-height:2.3em;
  }
  .tab-content p.tab-2{
    font-size:.85em;
  }
  .tab-content p.tab-3{
    font-size:.9em;
    line-height:2.3em;
  }
  .tab-content p.tab-4{
    font-size:1.3em;
    padding-top:60px;
  }

}
@media screen and (max-width:575px){
  .tab-menu{
    gap:3px;
  }
  .tab-content-area{
    height:255px;
  }
  .tab{
    width:105px;
    height:105px;
    font-size:1.1em;
    border-radius: 15px 15px 0 0;
  }
  .tab::before{
    width:80px;
    height:80px;
  }
  .tab-content p.service-title{
    font-size:1.1em;
  }
}
@media screen and (max-width:400px){
  .tab-content-area{
    height:280px;
  }
}
.online-shop {
  padding: 100px 0;
  text-align: center;
}
.online-shop-title {
  font-family: 'Libre Baskerville', cursive;
  font-size: 75px;
  color: var(--puls28);
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}
.shop-list {
  display: flex;
  gap: 70px;
  justify-content: center;
  flex-wrap: wrap;
}
.shop-item {
  background: #fff;
  padding: 40px 30px 20px;
  border-radius: 20px;
  width: 400px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
  text-decoration: none;
  color: var(--default);
  transition: 0.3s;
}
.shop-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.shop-item-text h3{
  font-size:18px;
  margin:0;
}
.shop-item-text h4{
  font-size:16px;
  margin:0;
}
.shop-item-text h3 span{
  font-size:23px;
}
.shop-item-text h3.pulnest span{
  font-size:27px;
  letter-spacing:1.5px;
}
.shop-item-text p {
  font-size: 14px;
  margin-bottom: 5px;
}
.shop-item-image img {
  width: 80%;
  margin: 20px auto 0;
  display: block;
}
@media screen and (max-width:1280px){
  .shop-list{
    gap:50px;
  }
  .shop-item{
    width:350px;
  }
}
@media screen and (max-width: 1024px) {
  .online-shop{
    padding:90px 0;
  }
  .online-shop-title {
    font-size: 60px;
  }
  .shop-list{
    gap:30px;
  }
  .shop-item {
    width: calc(50% - 15px);
    box-sizing: border-box;
    padding:25px 15px 15px;
  }
  .shop-item-text p{
    font-size:13px;
  }
  .shop-item-image img{
    margin:10px auto 0;
  }
}
@media screen and (max-width:768px){
  .online-shop-title {
    font-size: 50px;
  }
  .shop-list{
    flex-direction: column;
  }
  .shop-item{
    width:100%;
    max-width:400px;
    margin: 0 auto;
  }
  .online-shop{
    padding:50px 0;
  }
}
@media screen and (max-width:600px){
  .online-shop-title {
    font-size: 35px;
    margin-bottom:35px;
  }
  .shop-item{
    width:90%;
    max-width:400px;
    margin: 0 auto;
  }
}

/*NEWS*/
.news-section {
  background-color: #fff;
  padding: 70px 0;
  text-align: center;
}
.news-section h1{
  color: var(--puls28);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.news-list {
  text-align: left;
  margin: 0 auto 60px;
  max-width: 770px;
  list-style: none;
  padding: 0;
}
.news-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color:var(--default);
  padding: 30px;
  text-decoration: none;
  border-bottom: 1px dotted var(--puls28);
  transition: 0.3s;
}
.news-list li a:hover {
  color: var(--puls28);
}
.news-list li a .news-text {
  transition: 0.3s;
}
.news-list li a:hover .news-text {
  transform: translateX(8px);
}
.news-date {
  width: 150px;
  flex-shrink: 0;
}
.news-text {
  flex: 1;
}
.news-btn-wrapper {
  display: flex;
  justify-content: center;
}
.news-readmore{
  color: var(--puls28);
  position: absolute;
  right: 45px;
  bottom: 25px
}
.news-readmore:hover{
  font-weight:bold;
}
@media screen and (max-width: 1024px) {
  .news-card-img img{
    width:245px;
    height:190px;
  }
}
@media screen and (max-width:768px){
  .news-section{
    padding:50px 0;
  }
  .news-list li a{
    padding:30px 15px;
  }
  .news-date{
    width:120px;
  }
  .news-section h1{
    margin-bottom:30px;
  }
  .news-card{
    padding:20px;
    gap:15px;
    margin-bottom:25px;
  }
  .news-card-img img {
    width: 200px;
    height: 150px;
  }
  .news-card-date{
    font-size:16px;
    margin-bottom:5px;
  }
  .news-card-title{
    font-size:18px;
    margin:5px 0;
  }
  .news-card-summary{
    font-size:13px;
  }
  .news-readmore{
    right:25px;
  }
}
@media screen and (max-width:600px){
  .news-card{
    flex-direction:column;
    gap:10px;
  }
}

/*企業理念*/
.philosophy{
  margin:100px auto;
}
.philosophy h1 {
  margin: 0px;
  text-align:center;
}
.philosophy_logo{
  text-align:center;
  margin:0 auto;
  width:40%;
}
.philosophy_logo img{
  width:100%;
}
.philosophy_wrapper {
  display: flex;
  gap: 0px;
  align-items: center;
}
.circles {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  width:30%;
  position:relative;
  height:690px;
}
.circle {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background-color:var(--puls28);
  color: white;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  position:absolute;
  font-size:30px;
}
.circle:hover{
  transform:scale(1.05);
  transition-duration: .5s;
}
.circle small{
  font-size:13px;
}
.circle:first-child{
  top:0;
  right:-50px;
}
.circle:nth-child(2){
  top:240px;
  right: 30px;
}
.circle:nth-child(3){
  bottom:0;
  right:-50px;
}
.circle.active {
  background-color: #fff;
  color:var(--puls28);
  transform:scale(1.5) translate(30px, 0px);
}
.circles-content{
  width:70%;
  background-color: #fff;
  padding: 110px;
  border-radius: 50%;
  box-sizing: border-box;
  height:630px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index:1;
}
.circles-content p{
  font-size: 16px;
  line-height: 70px;
  text-align:center;
}
.circles-content.vision p {
  line-height: 70px;
}
.circles-content.mission p {
  line-height: 70px;
}
.circles-content.values p {
  line-height: 35px;
  font-size:15px;
  margin:10px 0;
}
.circles-content p span{
  font-size:1.4em;
  color:var(--puls28);
  margin: 0 3px;
}
.circles-content p small{
  font-size:.8em;
}
@media screen and (max-width: 1024px) {
  .philosophy{
    margin:50px auto;
  }
  .philosophy h1{
    margin:0 auto 50px 0;
  }
  .philosophy_logo{
    width:50%;
  }
  .circles{
    height:515px;
  }
  .circle{
    width:150px;
    height:150px;
    font-size:25px;
  }
  .circle.active{
    transform: scale(1.4) translate(30px, 0px);
  }
  .circles-content{
    padding:50px;
    height:515px;
  }
  .circles-content p{
    font-size:15px;
  }
  .circles-content p span{
    font-size:1.3em;
  }
  .circles-content p,
  .circles-content.vision p,
  .circles-content.mission p{
    line-height:50px;
  }
  .circles-content.values p{
    line-height:25px;
    font-size:14px;
  }
  .circle:first-child{
    top: 20px;
    right:5px;
  }
  .circle:nth-child(2) {
    top: 200px;
    right: 60px;
  }
  .circle:nth-child(3) {
    bottom: 0;
    right: 5px;
  }
}
@media screen and (max-width: 768px) {
  .philosophy_wrapper{
    flex-direction:column;
  }
  .philosophy h1{
    margin:0 auto;
  }
  .circles{
    flex-direction: row;
    justify-content: center;
    width:100%;
    height:auto;
    gap:20px;
    z-index: 2;
  }
  .circles-content{
    width:90%;
    height:475px;
  }
  .circle{
    position:relative;
    font-size:17px;
    width:115px;
    height:115px;
  }
  .circle:first-child.active{
    transform: scale(1.3) translate(-15px, 0px);
  }
  .circle:nth-child(2).active{
    transform: scale(1.3) translate(0px, 0px);
  }
  .circle:nth-child(3).active{
    transform: scale(1.3) translate(15px, 0px);
  }
  .circle:first-child{
    top:65px;
    right:auto;
  }
  .circle:nth-child(2) {
    top: 35px;
    right: auto;
  }
  .circle:nth-child(3) {
    bottom: auto;
    top:65px;
    right: auto;
  }
  .circles-content p{
    font-size:14px;
  }
  .circles-content p span{
    font-size:1.2em;
  }
  .circles-content p,
  .circles-content.vision p,
  .circles-content.mission p{
    line-height:45px;
  }
  .circles-content.values p{
    line-height:23px;
    font-size:13px;
  }

}
@media screen and (max-width: 576px) {
  .circles-content {
    width: 108%;
    height: 405px;
  }
  .circles{
    gap:5px;
  }
  .circle{
    width:100px;
    height:100px;
    font-size:15px;
  }
  .circle:first-child.active{
    transform: scale(1.2) translate(-10px, 0px);
  }
  .circle:nth-child(2).active{
    transform: scale(1.2) translate(0px, 0px);
  }
  .circle:nth-child(3).active{
    transform: scale(1.2) translate(10px, 0px);
  }
    .circles-content p{
    font-size:12px;
  }
  .circles-content p span{
    font-size:1.2em;
  }
  .circles-content p,
  .circles-content.vision p,
  .circles-content.mission p{
    line-height:35px;
  }
  .circles-content.values p{
    line-height:16px;
    font-size:11px;
    margin:5px 0;
  }

}
/*代表メッセージ*/
.ceo-message{
  margin:130px auto 100px;
}
.ceo-message h1{
  text-align:center;
}
.message-area {
  max-width: 1000px;
  margin: 50px auto 100px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
  opacity: 0;
  transform: translateX(50px);
  transition: 1s;
}
.message-area.left {
  flex-direction: row-reverse;
  transform: translateX(-50px);
}
.message-area.show {
  opacity: 1;
  transform: translateX(0);
}
.message-text {
  flex: 1;
  position: relative;
}
.message-title {
  font-size: 37px;
  margin-bottom: 10px;
}
.message-name {
  font-size: 17px;
  color:var(--puls28);
  margin-bottom: 30px;
}
.message-name name{
  font-size:25px;
  margin: 0 15px;
}
.message-content {
  max-height: 200px;
  overflow: hidden;
  position: relative;
  line-height:2em;
}
.message-content.expanded {
  max-height: none;
}
.view-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  background: var(--puls28);
  padding: 5px 25px;
  border-radius: 25px;
}
.view-more:hover{
  transform:scale(1.05);
  transition-duration: .5s;
}
.message-image img {
  width: 100%;
  display: block;
}
.message-image {
  position: relative;
  flex: 0 0 40%;
  overflow: visible;
}
.name-overlay {
  position: absolute;
  font-family: 'Libre Baskerville', cursive;
  font-size: 80px;
  color: #fff;
  font-weight: 900;
  text-shadow: 3px 3px 5px rgba(0,0,0,0.4);
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  transition: all 1s ease;
  transition-delay: 1s;
}
/* 津屋 一球：名前は左から右 */
.message-area .name-overlay {
  bottom: 15px;
  right: 0px;
  transform: translateX(0);
}
.message-area.show .name-overlay {
  opacity: .8;
  transform: translateX(250px);
}
/* 上田 頼飛：名前は右から左 */
.message-area.left .name-overlay {
  bottom: 15px;
  left: 0px;
  transform: translateX(0);
}
.message-area.left.show .name-overlay {
  opacity: 1;
  transform: translateX(-250px);
}
@media screen and (max-width: 1024px) {
  .message-area{
    gap:25px;
  }
  .name-overlay{
    font-size:50px;
  }
  .message-area.show .name-overlay{
    transform: translateX(0px);
  }
  .message-area.left.show .name-overlay{
    transform: translateX(0px);
  }
  .message-area .name-overlay{
    bottom:-80px;
    right:0;
  }
  .message-area.left .name-overlay{
    bottom:-80px;
    left:0px;
  }
  .message-content{
    line-height:1.7em;
    max-height:165px;
  }
}
@media screen and (max-width: 768px) {
  .ceo-message{
    margin:90px auto 90px;
  }
  .message-area,
  .message-area.right,
  .message-area.left{
    flex-direction:column;
    margin:30px auto 50px;
  }
  .message-title{
    font-size:26px;
    margin-bottom:0;
  }
  .name-overlay{
    font-size:45px;
  }
  .message-name{
    text-align:right;
    font-size:15px;
    margin-bottom:10px;
  }
  .message-name name{
    font-size:22px;
  }
  .message-content{
    max-height:130px;
  }
  .view-more{
    display:flex;
    justify-content:center;
    width:90px;
    margin:10px auto 0;
  }
  .message-area .name-overlay{
    bottom:20px;
    right:0;
  }
  .message-area.left .name-overlay{
    bottom:20px;
    left:0px;
  }
  .message-area.show .name-overlay{
    transform: translateX(-30px);
  }
  .message-area.left.show .name-overlay{
    transform: translateX(30px);
  }

  .message-image{
    margin:0 auto;
  }
  .message-image img{
    width:100%;
    max-width:278px;
    margin:0 auto;
  }
}
@media screen and (max-width: 576px){
  .name-overlay{
    font-size:33px;
  }
  .message-area.show .name-overlay{
    transform: translateX(20px);
  }
  .message-area.left.show .name-overlay{
    transform: translateX(-20px);
  }
}
.company-profile {
  margin-top: 100px;
  text-align: center;
  background:#fff;
  padding:50px;
}

.company-profile h1 {
  margin-bottom: 20px;
  font-size: 24px;
  letter-spacing: 0.05em;
}
.green-hr {
  width: 60px;
  margin: 30px auto;
  border: solid 1px var(--puls28);
}
.company-profile-list {
  margin: 50px auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 500px;
}
.company-profile-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  font-size: 18px;
}

.company-profile-item dt {
  font-weight: bold;
}

.company-profile-item dd {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .company-profile {
    padding:15px;
  }
  .company-profile-list{
    margin:25px auto;
    width: 100%;
  }
  .company-profile-item{
    grid-template-columns: 100px 1fr;
    gap:10px;
    font-size:16px;
  }
  .green-hr{
    margin:20px auto;
  }
}

/* --- お問い合わせ --- */
.contact-form-sect{
  padding:0 15px 100px;
}
.contact-section {
  padding: 100px 0;
}
.contact-flex {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.contact-text {
  text-align: left;
}
.contact-title {
  font-size: 45px;
  letter-spacing: 0.1em;
  color: var(--puls28);
  margin: 0px;
}
.contact-lead {
  font-size: 19px;
  margin:0px;
}
.contact-btn-wrapper {
  display: flex;
  justify-content: flex-end;
}


/* --- フッター --- */
.footer {
  background-color: var(--puls28);
  padding: 20px 0;
  color: #fff;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:5px;
}
.footer-logo img {
  width: 90px;
}
.copyright {
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width:768px){
    .footer{
        padding:15px 0;
    }
    .footer-logo img{
        width:70px;
    }
    .copyright{
        font-size:10px;
    }
}

/* NEWS */
.news-list-section, .news-detail-section {
  padding: 0 15px;
}
.news-filter {
  margin-bottom: 50px;
  text-align: center;
}
.news-filter button.active, .news-filter button:hover {
  background: var(--puls28);
  color: #fff;
}
.news-filter button {
  margin: 0 10px;
  padding: 15px 30px;
  border: none;
  background: #ddd;
  cursor: pointer;
  border-radius: 4px;
  font-size: 18px;
  transition: background 0.3s;
}
.news__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.news-item {
  background: #fff;
  box-shadow: 1px 1px 10px lightgray;
  padding: 30px 50px;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
}
.news-item.TOPICS .news-label {
  background: var(--puls28);
}
.news-item.TOPICS time {
  color: var(--puls28);
}
.news-item.BLOG .news-label {
  background: var(--puls28);
}
.news-item.BLOG time {
  color: var(--puls28);
}
.news-item .news-label {
  position: absolute;
  right: 25px;
  top: 20px;
  padding: 6px;
  width: 130px;
  text-align: center;
  color: #fff;
}
.news-more-wrap {
  text-align: center;
  margin-top: 50px;
}
.view-more-btn {
  padding: 20px 40px;
  font-size: 22px;
  background: var(--puls28);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}
.no-data{
  text-align:center;
}
.news__detail_wrap {
  background: #fff;
  box-shadow: 1px 1px 10px lightgray;
  padding: 30px 50px;
  border-radius: 15px;
  position: relative;
  margin-top:50px;
}
.news__detail_wrap .title-title {
  display: flex;
  gap: 15px;
  align-items: center;
}
.news_category {
  padding: 6px;
  width: 130px;
  text-align: center;
  color: #fff;
}
.news_category.TOPICS, .news_category.BLOG {
  background: var(--puls28);
}
.news__detail_wrap .news__detail_title {
  font-size: 1.8em;
  margin: 10px;
}
.news_date {
  color: var(--puls28);
  text-align: right;
  margin: 0;
}
.detail_img {
  display: flex;
  gap: 50px;
  justify-content: center;
}
.img-col1 {
  max-width: 850px;
}
.img-col2 {
  width: calc(50% - 25px);
}
.img-col1 img, .img-col2 img {
  border-style: none;
  box-sizing: border-box;
  height: auto;
  object-fit: cover;
  max-width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .news-filter{
    margin-bottom:30px;
  }
  .news-filter button {
    margin: 0 5px;
    font-size: 13px;
    padding: 10px 15px;
  }
  .news-item{
    padding:25px;
  }
  .news-item .news-label{
    padding:5px;
    width:85px;
  }
  .news__detail_wrap{
    padding:25px;
    margin-top:30px;
  }
  .news_category{
    padding:5px;
    width:85px;
  }
  .news__detail_wrap .title-title{
    flex-direction:column;
    align-items:flex-start;
  }
  .news__detail_wrap .news__detail_title{
    font-size:1.3em;
    margin:0;
  }
}

/* CONTACT */
.contact-form-sect{
  padding:0 15px 100px;
}
.contact-sect {
  padding: 0 0 150px;
  text-align: center;
}
.contact-form-area{
  background:#fff;
  padding:50px 100px;
  max-width:850px;
  margin:0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius:5px;
}
.contact-form {
  margin: 0 auto;
  text-align: left;
}
.form-item {
  margin-bottom: 30px;
}
.form-item label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}
.form-item input:not([type="checkbox"]),
.form-item textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
  background-color: #fff;
}
.form-item textarea {
  resize: vertical;
}
.form-item input[type="checkbox"]{
  transform:scale(1.5);
}
.required {
  color: #c00;
  font-size: 12px;
  margin-left: 5px;
}
.form-btn {
  text-align: center;
  margin: 50px auto 15px;
}
.form-btn .submit-btn{
  margin:0 auto;
}
.contact-proc-area{
  background:#fff;
  padding:100px;
  max-width:850px;
  margin:0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius:5px;
}
.contact-proc-area p{
  font-size:1.2em;
  line-height:2em;
  margin-bottom:50px;
}
.proc-btn-wrapper{
  display:flex;
  justify-content:center;
}
.policy-item {
  margin-top: 30px;
  font-size: 14px;
  text-align:center;
}
.policy-item label{
  font-size:16px;
}
.policy-item label a {
  color: var(--puls28);
  text-decoration: underline;
  transition: 0.3s;
  margin:0 5px;
}
.policy-item .policy-check{
  accent-color: var(--puls28);
}
.policy-item label a:hover {
  opacity: 0.7;
}
.policy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.policy-modal.hidden {
  display: none;
}
.policy-content {
  background: #fff;
  padding: 40px;
  max-width: 750px;
  width: 90%;
  border-radius: 10px;
  text-align: left;
}
.policy-content h2{
  text-align:center;
  margin-bottom:40px;
}
.policy-content .policy-bottom{
  text-align:center;
  margin:30px auto 70px;
}
@media screen and (max-width: 1024px) {
  .policy-content{
    width:80%;
  }
}
@media screen and (max-width:768px){
  .contact-flex{
    flex-direction:column;
    gap:30px;
  }
  .contact-title{
    font-size:38px;
    text-align:center;
  }
  .contact-lead{
    font-size:17px;
    text-align:center;
  }
  .contact-form-area{
    padding:50px;
  }
  .policy-content{
    padding:25px;
  }
  .policy-content h2{
    margin-bottom:20px;
  }
  .policy-content .policy-bottom{
    margin:30px auto 45px;
  }
  .contact-proc-area{
    padding:50px 25px;
  }
  .contact-proc-area p{
    font-size:1em;
  }
}
@media screen and (max-width:600px){
  .contact-form-area{
    padding:30px 15px;
  }
  .policy-item label{
    font-size:15px;
  }
  .policy-content{
    padding:15px;
    font-size:.9em;
  }
  .policy-content h2{
    margin-bottom:15px;
  }
  .policy-content .policy-bottom{
    margin:20px auto 30px;
  }
  .form-item{
    margin-bottom:20px;
  }
}

.title-visual-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.title-left,
.title-center,
.title-right {
  flex-shrink: 0;
}
.title-center {
  flex: 1;
  text-align: center;
}
.salon-title {
  font-size: 33px;
  line-height: 1.4;
  background: var(--puls28);
  color:#fff;
  text-align:center;
  margin:0;
  padding: 15px 0 30px;
}
.salon-title span {
  font-size: 18px;
}
.title-img {
  border-radius: 50%;
  object-fit: cover;
  display: block;
  opacity: 0;
  animation: onlinePhoto 0.8s ease-out forwards;
}
.title-img.large {
  width: 250px;
  height: 250px;
  animation-delay: 0.3s;
}
.title-img.small {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
  align-self: flex-start;
  animation-delay: 0.6s;
}
.title-img.medium {
  width: 180px;
  height: 180px;
  margin-top: 10px;
  animation-delay: 0.9s;
}
.goods-sentai-lineup {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 -25px;
}
.goods-sentai {
  width: 125px;
  opacity: 0;
  animation: goods-slideFadeIn 0.5s ease-out forwards;
}

/* 左から登場 */
.goods-sentai-left {
  animation: goods-slideLeftFadeIn 0.5s ease-out forwards;
}
/* 右から登場 */
.goods-sentai-right {
  animation: goods-slideRightFadeIn 0.5s ease-out forwards;
}
/* リーダーのみズーム */
.goods-sentai-leader {
  animation: goods-fadeZoomIn 0.6s ease-out forwards;
  width:150px;
}
.goods-sentai-delay-1 { animation-delay: 0.2s; }
.goods-sentai-delay-2 { animation-delay: 0.4s; }
.goods-sentai-delay-3 { animation-delay: 0.6s; }
.goods-sentai-delay-4 { animation-delay: 0.8s; }
.goods-sentai-delay-5 { animation-delay: 1.0s; }
.goods-sentai-delay-6 { animation-delay: 1.2s; }
.goods-sentai-delay-7 { animation-delay: 1.5s; }

@keyframes goods-slideLeftFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes goods-slideRightFadeIn {
  0% {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes goods-fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(1.5) rotate(-10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1.05) rotate(0deg);
  }
}
.goods-message {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-top: 20px;
}
.goods-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  margin-top: 40px;
}
.goods-item {
  display: block;
  width: 400px;
  padding: 40px 30px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}
.goods-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.goods-img img {
  width: 100%;
  border-radius: 8px;
}
.goods-title {
  font-size: 20px;
  font-weight: bold;
  margin: 25px 0 15px;
}
.goods-desc {
  font-size: 13px;
  color: #555;
  margin-top: 8px;
}
.goods-price {
  font-size: 19px;
  color: #d00;
  font-weight: bold;
  margin-top: 15px;
  text-align: right;
}
.goods-list-section{
  margin:75px auto;
}
.hr-goods{
  width:100%;
  border:solid 2px var(--puls28);
}

@keyframes onlinePhoto {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 1024px) {
  .goods-sentai-lineup{
    gap:0px;
  }
  .goods-sentai{
    width:100px;
  }
  .goods-sentai-leader{
    width:120px;
  }
  .salon-title{
    font-size:28px;
    padding: 15px 0 25px;
  }
  .goods-list{
    gap:30px;
    box-sizing: border-box;
  }
  .goods-item{
    width:calc(50% - 15px);
    box-sizing: border-box;
  }
}
@media screen and (max-width:768px){
  .goods-list-section{
    margin:50px auto;
  }
  .goods-sentai{
    width:70px;
  }
  .goods-sentai-leader{
    width:100px;
  }
  .goods-sentai-lineup{
    margin:30px 0 -15px;
  }
  .salon-title{
    font-size:25px;
  }
  .goods-list{
    flex-direction:column;
    align-items: center;
  }
  .goods-item{
    width:100%;
  }
}
@media screen and (max-width:600px){
  .goods-list-section{
    margin:50px auto;
  }
  .goods-sentai{
    width:70px;
  }
  .goods-sentai-leader{
    width:100px;
  }
  .goods-sentai-lineup{
    margin:30px 0 -15px;
  }
  .salon-title{
    font-size:25px;
  }
  .goods-list{
    flex-direction:column;
    align-items: center;
  }
  .goods-item{
    width:100%;
  }
}
@media screen and (max-width:575px){
  .goods-sentai-lineup{
    height:100px;
    position:relative;
  }
  .goods-sentai{
    position:absolute;
  }
  .goods-sentai-delay-1{
    margin-right: 350px;
    top:0;
  }
  .goods-sentai-delay-3{
    margin-right: 250px;
    top:15px;
  }
  .goods-sentai-delay-5{
    margin-right: 150px;
    top:0;
  }

  .goods-sentai-delay-6{
    margin-left: 150px;
    top:0;
  }
  .goods-sentai-delay-4{
    margin-left: 250px;
    top:15px;
  }
  .goods-sentai-delay-2{
    margin-left: 350px;
    top:0;
  }
  .salon-title{
    font-size:20px;
  }
  .salon-title span{
    font-size:16px;
  }
}
/*item detail*/

.goods-detail-area {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
  border-radius: 12px;
}
.detail-top-area {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.goods-detail-img {
  flex: 1;
  min-width: 300px;
  max-width: 480px;
}
.goods-detail-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.goods-detail-info {
  flex: 1;
  min-width: 300px;
}
.goods-detail-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}
.goods-detail-price {
  font-size: 20px;
  color: #d00;
  margin-bottom: 10px;
}
.goods-detail-price .tax {
  font-size: 14px;
  color: #666;
  margin-left: 5px;
}
.goods-detail-info a:not(.green-btn):not(.soldout-btn), a.deli_price_modal {
  display: inline-block;
  margin: 10px 0;
  color: var(--puls28);
  text-decoration: underline;
  font-size: 14px;
}
.goods-detail-shipping {
  font-size: 13px;
  color: #555;
  margin-top: 10px;
}

.goods-detail-description {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}
.goods-btn-wrapper{
  width:70%;
}
.soldout-btn{
  background: #999;
  color: #555;
  font-size: 20px;
  padding: 15px 30px;
  display: flex;
  align-items:center;
  justify-content:center;
  text-decoration: none;
  border-radius: 50px;
  border: solid 1px #888;
  text-align: center;
  min-width:200px;
  overflow: hidden;
  position: relative;
  box-sizing:border-box;
}

.item-detail-photo {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.item-detail-photo .photo-thumb {
  width: 40%;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.2s;
}
.item-detail-photo .photo-thumb:hover {
  transform: scale(1.02);
}

.item-sub-title{
  background:#888;
  color:#fff;
  padding:5px;
  text-align:center;
}
.detail-bottom-area dd.item-pulnest-detail-photo {
  width:100%;
  max-width:1300px;
  overflow:hidden;
  position:relative;
  margin: 0 auto;
}
.detail-bottom-area dd.item-pulnest-detail-size {
  width:100%;
  max-width:900px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.item-pulnest-detail-photo img,
.item-pulnest-detail-size img{
  width:100%;
}
.item-pulnest-detail-sozai{
  display:flex;
  gap:15px;
  justify-content: center;
}
.item-pulnest-detail-sozai img {
  width: 25%;
}
.photo-detail-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-detail-modal.hidden {
  display: none;
}
.photo-detail-modal-inner {
  width: 90%;
  max-width:800px;
  max-height: 90%;
  position: relative;
}
#detail-modal-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
#detail-modal-close {
    position: absolute;
    top: -65px;
    right: -65px;
    font-size: 60px;
    background: #fff;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    padding: 0px;
    line-height: 1;
    width: 65px;
    height: 65px;
}
.detail-bottom-area {
  border-top: 1px solid #eee;
  padding-top: 15px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
.detail-bottom-area dl {
  margin: 0;
}
.detail-bottom-area dt {
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 5px;
  font-size:17px;
}
.detail-bottom-area dd {
  margin: 0 0 10px 0;
}
@media screen and (max-width:768px){
  .detail-top-area{
    justify-content:center;
    gap:15px;
  }
  .goods-btn-wrapper{
    width:100%;
  }
  .soldout-btn{
    width:100%;
  }
  .goods-detail-title{
    font-size:22px;
    text-align:center;
    margin: 5px 0 0;
  }
  .goods-detail-price{
    text-align:right;
    margin: 10px 0 15px;
  }
}
@media screen and (max-width:600px){
  .goods-detail-area{
    padding:40px 15px;
  }
  .item-pulnest-detail-sozai img {
    width: 30%;
  }
}
/*送料modal*/
.shipping-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shipping-modal-overlay.hidden {
  display: none;
}
.shipping-modal-window {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-sizing: border-box;
}
.shipping-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shipping-modal-title {
  font-size: 20px;
  font-weight: bold;
}
.shipping-modal-close {
  font-size: 65px;
  background: none;
  border: none;
  cursor: pointer;
}
.shipping-modal-body {
  font-size: 14px;
  margin-top: 20px;
}
.shipping-method {
  margin-top: 25px;
}
.shipping-method h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.shipping-region-table {
  margin-top: 10px;
  padding-left: 20px;
}
.shipping-region-table li {
  margin-bottom: 6px;
  list-style: disc;
}
@media screen and (max-width:600px){
  .shipping-modal-close{
    font-size:50px;
  }
  .shipping-modal-title{
    font-size:18px;
  }
  .shipping-modal-window{
    padding:15px;
  }
  .shipping-method h3{
    font-size:15px;
    margin-bottom:0;
  }
  .shipping-modal-body{
    font-size:13px;
  }
  #detail-modal-close{
    right:0;
  }
}

