/*
Theme Name:wim-theme
*/

@charset "utf-8";
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/*google font*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*=================
common
=================*/
:root {
  --main-bg-color: #edebe2;
  --main-color: #ffffff;
  --title-color: #ffffff;
  --text-color: #193443;
  --accent-color-blue: #55889C;
  /*--font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo,メイリオ, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;*/
  --font-family: "Yu Gothic", "游ゴシック", "游ゴシック体","Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro";
  --font-en: "Poppins", serif;  
}

body {
  position: relative;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  word-break: break-all;
  margin: 0;
  background: var(--main-bg-color);
}
main{
  overflow: hidden;
}

p,
span,
li {
  font-family: var(--font-family);
  font-weight: 500;
  line-height: 1.8;
}

a {
  color: var(--main-color);
  text-decoration: none;
  transition: all 0.5s;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  
}
.icon-img{
  width: 40px;
  padding-right: 10px;
}
@media (max-width: 768px) {
  .sp_hidden{
    display: none;
  }
}
/*=================
   header 
/*=================*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: top 0.5s ease; /* スムーズな動き */
  z-index: 1000;
  background: linear-gradient(#193443b8, rgba(0, 0, 0, 0));
  /*backdrop-filter: blur(20px);*/
}

.header .logo {
  width: 130px;
  margin: 0 auto;
  filter: drop-shadow(1px 1px 5rem #193443);
  padding: 10px 0px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header_store{
  padding: 10px 20px;
  background-image: url(img/header_store.webp);
  background-size: cover;
  background-position: center;
  height: 80px;
  display: flex;
  align-items: center;
  width: 220px;
  justify-content: space-around;
  text-shadow: var(--text-color) 1px 1px 15px;
  font-size: 16px;
  letter-spacing: 0.02em;
  font-weight: bold;
  color: #fff;
}
.header_store .icon-img{
  filter: drop-shadow(1px 1px 3rem  var(--text-color) );
}

@media (max-width: 768px) {
  .header_store{
    width: 60px;
    height: 60px;
    padding: 12px;
  }
  .header_store .icon-img{
    padding: 0;
  }
  .header .logo {
    width: 100px;
  }
}

/*============
hamburger-menu
=============*/
/* grid-styles.css */
.hamburger-grid {
  width: 50px;
  height: 50px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  margin: 0 0 0 20px ;
}

.hamburger-grid__dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 100%;
  height: 100%;
}

.hamburger-grid__dot {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger-grid.active .hamburger-grid__dot {
  background-color: #fff;
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(1) {
  transform: scale(0);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(2) {
  transform: translateY(8px);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(3) {
  transform: scale(0);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(4) {
  transform: translateX(8px);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(5) {
  transform: scale(1.2);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(6) {
  transform: translateX(-8px);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(7) {
  transform: scale(0);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(8) {
  transform: translateY(-8px);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(9) {
  transform: scale(0);
}

.nav-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--text-color);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
}

.nav-grid.active {
  visibility: visible;
  opacity: 1;
}

.nav-grid__content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 100px 40px;
}

.nav-grid__sections {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.nav-grid__section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-grid.active .nav-grid__section {
  opacity: 1;
  transform: translateY(0);
}

.nav-grid.active .nav-grid__section:nth-child(1) {
  transition-delay: 0.2s;
}
.nav-grid.active .nav-grid__section:nth-child(2) {
  transition-delay: 0.3s;
}

.nav-grid__title {
  margin: 0 0 20px;
  color: #666;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-grid__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-grid__list li {
  margin-bottom: 15px;
  overflow: hidden;
  color: #fff;
}

.nav-grid__link {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}
.nav-grid.active .nav-grid__link {
  transform: translateY(0);
}

.nav-grid__link:hover {
  color: #4a90e2;
}
.menu-btn-a{
  margin: 0 auto 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}


@media (max-width: 768px) {
  .hamburger-grid{
    margin: 0 0 0 10px;
  }
  .nav-grid__content {
    padding: 80px 20px;
  }
  
  .nav-grid__sections {
    grid-template-columns: 1fr;
  }
  
  .nav-grid__link {
    font-size: 20px;
  }
}



/*=================
breadcrumb 
=================*/
nav.breadcrumb {
  width: 90%;
  margin: 60px auto 0;
}
.breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

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

.breadcrumb li a {
  color: #2f79b7;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

.breadcrumb-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}

.breadcrumb li::after {
  content: "›";
  margin: 0 10px;
  color: #666;
}

.breadcrumb li:last-child::after {
  content: "";
}
@media screen and (min-width: 768px) {
  nav.breadcrumb {
    margin: 100px auto 0;
  }
}

/*=================
footer-info
=================*/
.footer-info{
  position: relative;
}
.footer-info-bg{
  width: 160%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.footer-info-txt {
  width: 90%;
  margin: 10% auto;
}
.footer-info-title h2{
  margin: 5% auto 3%;
  text-align: center;
  font-size: clamp(1.625rem, 1.375rem + 1.25vw, 2.313rem);
  font-weight: normal;
  line-height: 1.6em;
  letter-spacing: 0.12em;
}
.footer-info-title {
  margin-bottom: 40px;
}
.footer-info-title p{
  text-align: center;
}
.footer-btn{
  width: 100%;
  margin: 0 auto;
}
a.footer-btn-a{
  background: var(--text-color);
  border-radius: 50px;
  padding: 20px;
  margin: 0 auto 10px;
  box-sizing: border-box;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .footer-btn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
  }
  a.footer-btn-a{
    margin: 0 auto;
  }
}


/*=================
footer-content 
=================*/
.footer-content{
  position: relative;
  align-items: center;
  background-image: url(img/footer.webp);
  background-size: cover;
  background-position: center;
  padding: 10% 0;
}

.footer-txt{
  position: relative;
  margin: 0 auto;
  padding: 5%;
}
.footer-logo {
  width: 150px;
}
.footer-address{
  margin: 30px 0 30px;
}
.footer-sns_btn {
  display: flex;
  flex-direction: column;
  width: 40px;
}
.footer-sns_btn a{
  display: flex;
  color: #fff;
  align-items: center;
  font-weight: bold;
}
.footer-sns_btn a:nth-child(n+2){
  padding-top: 10px;
}

.menu-footer-menu-container{
width: 100%;
padding: 5% 5% 60px;
}
.footer-menu{
  padding: 0;
}


@media screen and (min-width: 768px) {
  .footer-content{
    align-items: center;
    background-image: url(img/footer-pc.webp);
    display: flex;
    padding: 5% 0;
  }
  .footer-txt{
    width: 500px;
    min-width: 500px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 5%;
  }
  
}


/*=================
copyright
=================*/
.copyright{
  text-align: center;
  margin-top: -40px;
  position: relative;
}
/*=================
404 privacy-policy
=================*/
#privacy-policy ul,
#privacy-policy ol{
    padding: 0;
}
.Wrap {
  width: 90%;
  max-width: 900px;
  margin: 5% auto;
  border-radius: 20px;
  padding: 5%;
  box-sizing: border-box;
  border: dotted 2px;
}
hgroup {
  margin: 5% auto;
}
.Wrap h1{
    margin: 0 auto ;
    text-align: center;
    font-size: clamp(1.625rem, 1.375rem + 1.25vw, 2.313rem);
    width: 90%;
    font-weight: normal;
    line-height: 1.6em;
    letter-spacing: 0.12em;
}
.Wrap .h1-p{
  text-align: center;
}
.not-found a{
  display: block;
  width: 90%;
  margin: 40px auto 0;
  border: solid 1px;
  padding: 10px;
  border-radius: 50px;
  text-align: center;
  font-size: 1.3rem;
  background: var(--text-color);
  max-width: 400px;
  color: var(--main-color);
}
.not-found a:hover{
  background: var(--main-color);
  color: var(--text-color);
}
/* privacy-policy */
.privacy-content ol{
  margin-bottom: 40px;
}

/*--------------------------------------------------------------
comingsoon.php　にて使用
--------------------------------------------------------------*/
.comingsoon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 10%;
}
.comingsoon .main-title {
  text-align: center;
  font-weight: 600;
  font-size: 3rem;
  letter-spacing: 0.25rem;
}
.comingsoon p {
  text-align: center;
  font-size: 1rem;
}
.comingsoon-img {
  width: 100%;
  max-width: 480px;
  margin: 5% auto;
}
.comingsoon h1 {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.1rem;
}
.comingsoon h1 span {
  display: block;
  font-size: 1rem;
  margin: 12px auto;
}
.comingsoon-btn {
  margin: 0 auto;
  width: 100%;
  max-width: 480px;
  text-align: center;
}
.comingsoon-btn a {
  display: block;
  margin: 24px 0 0;
  padding: 20px;
  background: var(--text-color);
  color: #fff;
  border-radius: 50px;
}

.comingsoon-btn a:hover {
  opacity: 0.75;
}

@media screen and (max-width: 767px) {
  .comingsoon .main-title {
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
  .comingsoon-img {
    width: 90%;
  }
  .comingsoon h1 {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
}

/*=================
company
=================*/
.company_list {
  margin: 0 auto;
}
.company_list tr {
    display: block;
    margin-bottom: 30px;
}
.company_list th {
    width: 120px;
    font-weight: normal;
    border-right: 1px solid #fff;
    text-align: left;
    padding: 20px;
}
.company_list td {
    text-align: left;
    padding-left: 30px;
}
/*=================
all
=================*/