/*
Theme Name: LNbase
Theme URl:https://liendesign.net/
Author: LieN Design
Description: 介護と福祉総合株式会社 専用
Version: 2.0.0
*/

/* リセット */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  font-weight: inherit;
  vertical-align:baseline;
  background:transparent;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display:block;
}

nav ul {
  list-style:none;
}

blockquote, q {
  quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}

a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#222;
  text-decoration:none;
}

/* change colours to suit your needs */
mark {
  background-color:#ff9;
  color:#222;
  font-style:italic;
  font-weight:bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}

/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  vertical-align:middle;
}
/* //リセット */

*{margin:0;padding:0;box-sizing: border-box;}

body {
  letter-spacing: 0.05em;
  overflow-wrap: break-word;
  word-break: normal;
	font-family: 'Noto Sans JP', sans-serif;
	color:#333;
	font-size: 1.5rem!important;
	line-height: 1.8;
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background-color: #f4f7f5; 
}
ol, ul {list-style: none;}
a{
  text-decoration: none;color:#222;position: relative;
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  margin-top: 0!important;
  scroll-padding-top:80px;
}
html, body {
  height: 100%;
  overflow-x: clip;
}

.pc{display: block!important;}
.sp{display: none!important;}
@media screen and (max-width: 768px) {
  .pc{display: none!important;}
  .sp{display: block!important;}
}
/* 共通 */
a:hover{
  color: #d4af37;
  transition: color 0.3s ease;
}
.bg_gray{
  background-color: #f4f4f4;
}
.bg_wt{
  background-color: #fff;
}
.pd3{
	padding: 3rem 0;
}

h2{font-size: 2.4rem;}
h3{font-size: 2.0rem;}
h4, h5{font-size: 1.8rem;}

/* ------------------------------
header
--------------------------------*/
header{
  position: fixed;
  width: 100%;
  z-index: 999999999;
}
header .header-inner {
  display: flex;
  align-items: center;
  padding: 10px;
  width: 100%;
  justify-content: space-between;
  background-color: #fff;
  margin: auto;
  box-shadow: 0 0 10px #ccc;
  position: relative;
}
ul.menu{
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 2rem;
  font-size: 1.3rem;
}
.header-cta .btn-gold {
  padding: 10px 25px;
  font-size: 1.3rem;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #d4af37 0%, #bfa15f 100%);
  color: #ffffff;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.1em;
  box-shadow: 0 6px 20px rgba(191, 161, 95, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-gold:hover {
  transform: translateY(-3px);
  color: #fff;
}
header .drawer {
  position: absolute;
  top: 10px;
  right: 8px;
  background-color: #222;
  border-radius: 5px;
  padding: 1%;
}

header nav.drawer-content {
  display: block!important;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 60px;
  left: 100%;
  z-index: 99;
  background: #fff;
  transition: .5s;
  opacity: .98;
  text-align: left
}
.drawer-hidden {
  display: none
}
.drawer-open {
  display: flex;
  height: 30px;
  width: 30px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  cursor: pointer
}
.drawer-open span,.drawer-open span:after,.drawer-open span:before {
  content: '';
  display: block;
  height: 1px;
  width: 20px;
  border-radius: 3px;
  background: #fff;
  transition: .5s;
  position: absolute
}
.drawer-open span:before {
  bottom: 8px
}
.drawer-open span:after {
  top: 8px
}
#drawer-check:checked~.drawer-open span {
  background: rgba(255,255,255,0)
}
#drawer-check:checked~.drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg)
}
#drawer-check:checked~.drawer-open span::after {
  top: 0;
  transform: rotate(-45deg)
}
#drawer-check:checked~.drawer-content {
  left: 0
}

.drawer-content ul{
  margin: 2rem;
}
.drawer-content ul li.nav-item a{
  display: block;
  border-bottom: 1px dotted #222;
  padding: 25px;
}

@media screen and (max-width: 768px) {
  header .header-inner{
  height: 65px;
  }
  ul.menu{
    display: none;
  }
  .drawer-content {
  background-color: #f4f4f4;
  }
  .btn-gold {
    margin-right: 65px;
  }

}

/* ------------------------------
Main
--------------------------------*/
main{
  padding-top: 5rem;
  flex: 1;
}

/* ------------------------------
Contents
--------------------------------*/
.contents {
  margin: 5rem auto;
  max-width: 800px;
}

.linkbtn{
  text-align: center;
}
.linkbtn a {
  display: inline-block;
  width: 250px;
  max-width: 100%;
  padding: 1rem;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s;
  border: 1px dotted;
  margin: 2rem 0 0;
}

.linkbtn a:hover{
  background-color: #bfa15f; 
  color: #fff;
}

/* ブログArea */
ul.newarrival_list{
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

ul.newarrival_list li img{
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.blog-content span.blog-date{
  font-size: 1rem;
}
.blog-content .blog-title{
  font-size:100%;
  line-height: 1.3;
}
h1.wp-block-heading{
  font-size: 2rem;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 3px double #333;
  margin-bottom: 40px;
}
h2.wp-block-heading{
  font-size: 2rem;
  padding: 10px 15px;
  border-left: 6px solid #333; 
  background: #f7f7f7;
  margin-top: 40px;
  margin-bottom: 20px;
}
h3.wp-block-heading{
  font-size: 1.8rem;
  padding-bottom: 8px;
  border-bottom: 2px solid #ddd;
  position: relative;
  margin: 20px 0;
}
h3.wp-block-heading::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 20%;
  border-bottom: 2px solid #333;
}
h4.wp-block-heading {
  font-size: 1.6rem;
  padding-left: 15px;
  position: relative;
  margin: 10px 0;
}
h4.wp-block-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #333;
}

h5.wp-block-heading {
  font-size: 1.6rem;
  padding-bottom: 5px;
  border-bottom: 1px dashed #999;
  margin: 10px 0;
}

h6.wp-block-heading {
  font-size: 1.4rem;
  color: #666;
  margin: 10px 0;
}


@media screen and (max-width: 768px) {
  .contents {
  margin: 5rem 2rem;
  }
  ul.newarrival_list{
  grid-template-columns: 1fr;
  }
}
/* ------------------------------
問い合わせ
--------------------------------*/
.c-common-contact {
  padding: 60px 20px;
  background-color: #ededed; 
  text-align: center;
}
.c-common-contact h3.cta-title {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.4;
    color: #0b301f;
}

.c-common-contact__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.c-common-contact__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.c-common-contact__lead {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.c-common-contact__btn {
  display: inline-block;
  width: 280px;
  max-width: 100%;
  padding: 18px 20px;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  background: linear-gradient(135deg, #d4af37 0%, #bfa15f 100%);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
  box-shadow: 0 6px 20px rgba(191, 161, 95, 0.4);
}
.c-common-contact__btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(191, 161, 95, 0.6);
  background: linear-gradient(135deg, #bfa15f 0%, #a88a4a 100%);
  color: #fff;
}
.c-common-contact__btn span{
  font-size: 70%;
}

@media screen and (max-width: 768px) {
  .c-common-contact__lead {
    text-align: left;
  }
}

/* ------------------------------
プライバシーポリシー
--------------------------------*/
        /* --- Base Variables --- */
        :root {
            --color-bg-body: #ffffff;
            --color-bg-surface: #ffffff;
            --color-text-main: #1f2937; /* gray-800 */
            --color-text-heading: #111827; /* gray-900 */
            --color-text-muted: #4b5563; /* gray-600 */
            --color-primary: #0b301f;
            --color-primary-light: #f4f7f5;
            --color-primary-border: #92a99e;
            --color-border: #e2e2e2; /* gray-200 */
            --color-border-dark: #e2e2e2; /* gray-300 */
            
            --font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
            --line-height-base: 1.7;
        }


        .pp-section-block {
            margin: 2.5rem 0;
        }

        .sub-pp-section-block {
            margin-bottom: 2rem;
        }

        /* --- Typography --- */
        .pp-page-title {
            font-size: 1.875rem; /* text-3xl */
            font-weight: 700;
            text-align: center;
            color: var(--color-text-heading);
            margin-bottom: 2.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--color-border);
        }

        @media (min-width: 640px) {
            .pp-page-title {
                font-size: 2.25rem; /* sm:text-4xl */
            }
        }

        .pp-title{
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-text-heading);
            margin-bottom: 1rem;
            padding-left: 0.75rem;
            border-left: 4px solid var(--color-primary);
        }

        .pp-sub-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-text-main);
            margin-bottom: 0.75rem;
            padding-bottom: 0.25rem;
            border-bottom: 1px solid var(--color-border);
        }

        .pp-item-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--color-text-main);
            margin: 2rem 0 0;
        }

        .pp-step-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text-main);
            margin-bottom: 0.5rem;
            padding-bottom: 0.25rem;
            border-bottom: 1px solid var(--color-border-dark);
        }
        
        .pp-step-title.mt-top {
            margin-top: 1.5rem;
        }

        /* --- Lists --- */
        .pp-list-disc {
            list-style-type: disc;
            padding-left: 3rem;
            margin: 1rem 0;
        }

        .pp-list-disc li {
            margin-bottom: 1.5rem;
        }

        .pp-list-none {
            list-style-type: none;
            padding-left: 1rem;
            margin-bottom: 1rem;
        }

        @media (min-width: 640px) {
            .pp-list-none {
                padding-left: 2rem;
            }
        }

        .pp-list-none li {
            margin-bottom: 0.5rem;
        }

        /* --- Utilities --- */
        .ml-indent {
            margin-left: 1rem;
        }
        
        .pl-indent {
            padding-left: 0.5rem;
        }

        /* --- Components --- */
        .pp-info-box {
            background-color: var(--color-bg-body);
            padding: 2rem 3rem;
            border-radius: 1rem;
            margin: 2rem 0;
            font-size: 1.5rem;
        }

        @media (min-width: 640px) {
            .pp-info-box {
                font-size: 1.5rem;
            }
            .pp-info-box.lg-padding {
                padding: 1.5rem;
            }
        }

        .pp-info-box ul {
            list-style: none;
            padding: 0;
        }

        .pp-info-box li {
            margin-bottom: 0.5rem;
        }

        .badge {
            display: inline-block;
            color: #0b301f;
            background-color: #dfede4;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .pp-contact-card {
            background-color: var(--color-primary-light);
            border: 1px solid var(--color-primary-border);
            padding: 1.5rem;
            border-radius: 0.5rem; /* rounded-lg */
            text-align: center;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
			margin:2rem 0;
        }

        @media (min-width: 640px) {
            .pp-contact-card {
                text-align: left;
            }
            .hide-on-sm {
                display: none;
            }
        }

        .pp-contact-company {
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .pp-contact-phone {
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #1e40af; 
            margin-bottom: 0.5rem;
        }
        
        @media (min-width: 640px) {
            .pp-contact-phone {
                justify-content: flex-start;
            }
        }

        .pp-contact-phone svg {
            width: 1.5rem;
            height: 1.5rem;
            margin-right: 0.5rem;
        }

        .pp-contact-hours {
            font-size: 0.875rem;
            color: var(--color-text-muted);
        }

/* ------------------------------
Footer
--------------------------------*/
footer {
  background-color: #0b301f;
  color: #fff;
}
.footer-inner {
  margin: auto;
}
.footer_nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
  font-size: 1.2rem;
  padding: 1rem 2rem;
}
.footer_nav a{
  color: #fff;
}
.footer_nav a:hover{
  color: #bfa15f;
}

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

}

/* ------------------------------
TOPへ
--------------------------------*/
.page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.page-top.is-show {
  opacity: 1;
  visibility: visible;
}

.page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #333333;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  font-size: 2.4rem;
  transition: background-color 0.3s, transform 0.3s;
  padding: .5rem 1rem 0;
}

.page-top a:hover {
  background-color: #555555;
  transform: translateY(-3px);
}

/* ------------------------------
Fadein
--------------------------------*/
.js-fade {
  opacity: 0;
  transition: all 0.8s ease;
}
.fade-up {
  transform: translateY(40px);
}
.fade-left {
  transform: translateX(-40px);
}
.fade-right {
  transform: translateX(40px);
}
.fade-down {
  transform: translateY(-40px);
}
.js-fade.is-active {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: calc(var(--i, 0) * 0.s) !important;
}

/* 各列の共通設定：非表示にしておく */
.aniitem {
  width: 100%;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}
.aniitem:nth-child(1) {
  animation-delay: 0.2s;
}
.aniitem:nth-child(2) {
  animation-delay: 0.4s;
}
.aniitem:nth-child(3) {
  animation-delay: 0.6s;
}
.aniitem:nth-child(4) {
  animation-delay: 0.8s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px); 
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
