
.clear { display: none;}

html, body {
    width: auto;
    margin: 0;
	font-family: "Kaisei Tokumin", serif;

    position: relative;
    height: 100%;
    margin: 0;
    padding: 0;
}

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

body {
  background: #0f0f11;
  color: #fff;
  line-height: 1.5;
  font-family:
    -apple-system, system-ui, 'Helvetica Neue', Helvetica, Arial, 'Segoe UI',
    Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  &.light {
    background: #fff;
  }
}

.container {
    width: 100%;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.font_s{
	font-size: 82.35%;
}
.pc_only{
	display: block;
}
.sp_only{
	display: none;
}

.tab_only{
	display: none;
}

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

    .container {
        margin-left: -0.5rem;
    }
    body {
        overflow-x: hidden;
    }
	.font_s{
		font-size: 86.667%;
	}
	.pc_only{
		display: none;
	}
	.sp_only{
		display: block;
	}
    .tab_only{
        display: none;
    }
    
}

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

	.font_s{
		font-size: 86.667%;
	}
	.pc_only{
		display: none;
	}
	.sp_only{
		display: none;
	}
    .tab_only{
        display: block;
    }
    
}

/* kv */
.kv{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kv .main-copy{
  color: #fff;
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: .2em;
}

.kv .sub-copy{
  color: #fff;
  font-size: 30px;
  text-align: center;
}

/* video */
.video{
  width: 100%;
  height: 100vh;
  background: url(../img/kv-alternative.jpg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.video::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #10394b;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .3;
}

.video video{
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

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

  .kv .main-copy{
    font-size: 30px;
  }

  .kv .sub-copy{
    font-size: 20px;
  }

}

/* ヘッダー */
.header {
    position: fixed; /*← fixedで固定 */
    width: 100%; 
    height: 90px; 
    background: #ffffff; 
    opacity: 0.8;
    padding: 16px 20px; 
    box-sizing: border-box;
    top: 0; 
    left: 0; 
    display: flex; 
    align-items: flex-end;
    z-index: 9999;

    /* ロゴとメニューを横並びにする */
    display: flex; 
    justify-content:space-between;
}

.logo {
    font-weight: 700;
    padding-left: 14px;
    position: relative;
    line-height: 1;
    margin-left: 5rem;
    font-size: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo .head_logo{
    height: 72px;
    width: auto;
}

.header-tel {

    color: #000;
    font-weight: 800;
    font-size: 24px;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    margin-top: 0;
    margin-bottom: 2px;
    transform: translateY(10px);

}

/* アイコン追加 */

.header-tel::before {

    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 0;
    background: url("../images/common/icon_TEL.png") no-repeat center;
    background-size: contain;

}

.hamburger-menu {
    width: 100px;
    height: 100px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
    top: 2.2rem;
}
.hamburger-menu__bar {
    display: inline-block;
    width: 44%;
    height: 2px;
    background: #b99877;
    position: absolute;
    left: 50%;
    right: 20%;
    transform: translateX(-50%);
    transition: .5s;
}
.hamburger-menu__bar:first-child {
    top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
    top: 24px;
}
.hamburger-menu__bar:last-child {
    top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
}
.navigation {
    display: none;
    background: #000000;
    position: absolute;
    top: 90px;
    right: 0px;
    width: 30%;
    z-index: 88888;
}
.navigation__list {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.navigation__list-item {
    border-bottom: solid 1px #ffffff;
}
.navigation__list-item:first-child {
    border-top: solid 1px #ffffff;
}
.navigation__link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: block;
    padding: 24px 0 24px 24px;
    transition: .5s;
}
@media (hover: hover) and (pointer: fine) {
    .navigation__link:hover {
        background: #ffffff;
        color: #b99877;
    }
}

.p-header-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
}

.p-header-nav__list, .nav__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.nav__sns {
    z-index: 99999;
}
.nav__sns > li{
    margin-left: 1rem;
}
.nav__sns > li img{
    width: 40px;
    height: auto;
}

.nav__sns a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.2rem;
    height: 3.2rem;
    border: 1px solid #efe1c7;
    background: #fff;
    border-radius: 2rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav__sns a:hover {
    background: #efe1c7;
}

.p-header-nav__list > li {
    margin: 0 4.08163%;
    padding: 10px 0;
}

.p-header-nav__list a {
    text-decoration: none;
    white-space: nowrap;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.p-header-nav__list a:link {
    color: #666;
}

.p-header-nav__list a:hover{
    color: #ad7f52;
}

.drop_down {
    position: relative;
}

/* SP */
@media only screen and (max-width: 767px) {

    .logo {
        font-weight: 700;
        padding-left: 0px;
        position: relative;
        line-height: 1;
        margin-left: 0rem;
        font-size: 0;
        display: flex;
        align-items: center;
        height: 100%;
    }
    .logo .head_logo{
        height: 56px;
        width: auto;
    }

    .nav__sns {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        justify-content: flex-end;
        margin-right: 0;
        width: 80px;
        height: 80px;
        top: 1.4rem;
    }

    .header {
        height: 70px;
        padding: 8px 20px;
    }

    .navigation {
        top: 69px;
        right: 0px;
    }

    .navigation__list {
        text-align: left;
    }

    .navigation__link {
        font-size: 14px;
        padding: 18px 0 18px 18px;
    }
}

/* TAB Only */
@media only screen and (max-width: 1020px) and (min-width: 768px) {
    .header {
        height: 70px;
        padding: 8px 24px;
    }
    .logo .head_logo{
        height: 48px;
        width: auto;
    }

    .nav__sns {
        display: none;
    }

    .hamburger-menu {
        top: 0.6rem;
    }
    .navigation {
        top: 69px;
    }
}
/* ./ヘッダー */

/* FOOTER　フッター */

.footer-logo{
    height: 44px;
    width: auto;
}

.footer { 
    min-height: 150px;
    background-color: #e8eaeb;
    margin-bottom: -60px;
    margin-left: -2rem;
    padding: 50px;
    position: relative;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .footer { 
        margin-bottom: 4.5rem;
        padding-top: 30px;
        position: relative;
        text-align: center;
    }
}

@media only screen and (max-width: 1020px) and (min-width: 768px) {
    .footer { 
        margin-bottom: 8.4rem;
    }
}

.footer .inner { 
    max-width: 1200px;
    margin: 0px;padding: 20px 5px ;
    right:0px;
    left:0px;
    margin:auto auto;
}
.footer .inner { 
    border-top: 1px solid #ffffff;
    border-image: linear-gradient(to right, #ffffff 0%,#616161 50%, #ffffff 100%);
    border-image-slice: 1;
}
.footer .inner { 
    border-bottom: 1px solid #ffffff;
    border-image: linear-gradient(to right, #ffffff 0%,#616161 50%, #ffffff 100%);
    border-image-slice: 1;
}
.footer .foot_logo { 
    max-width: 300px;
    margin: 20px 0;
    padding: 0px 0px;
    position: relative;
    text-align:center;
}
div.foot_info { 
    width: 100%;
    display: table;margin: 0px;padding: 0px;}
div.foot_info .box1 { 
    display: table-cell;
    width: 150px;padding: 10px;
    vertical-align: top;
    text-align: left;
}

div.foot_info .box2 { 
    display: table-cell;
    padding: 10px;
    vertical-align: top;
    text-align: left;
}
div.foot_info .box1 img { 
    max-width: 100%;
    height: auto;
}
div.foot_info .box2 p { 
    margin: 0px;
    padding-left: 10px;
    font-size: 14px;color: black;
    line-height: 1.6;
    font-weight: normal;
    letter-spacing: 0.07em;
    text-indent:0.07em;
    text-align: center; 
}
@media only screen and (max-width: 767px) {
    div.foot_info { 
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 0px;
        text-align: center;
    }
    div.foot_info .box1 { 
        width: 100%;
        padding: 10px;
        vertical-align: top;
        text-align: center;
    }
    div.foot_info .box1 { 
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    div.foot_info .box1 img { 
        max-width: 150px;
        height: auto;
    }
}

.copy-l{ 
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 60px;
    font-size: 14px;color: black;
}


@media only screen and (max-width: 767px) {
    .copy-l {
        gap: 10px;
        font-size: 11px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: center;
    }

    .copy-l a {
        font-size: 11px;
        white-space: nowrap;
    }
}

.copy-r{ 
    font-size:16px;
    color: black;
    line-height: 1.6;
    font-weight:normal;
    letter-spacing: 0.07em;
    text-indent:0.07em;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .copy-r{ 
        font-size:12px;
    }
}
.copy-l a {
    color: black;
    text-decoration: none;
    position: relative;
    transition: all 0.25s ease;
}

.copy-l a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #b99877;
    transition: width 0.25s ease;
}

.copy-l a:hover::after {
    width: 100%;
}

.copy-r a{ 
    color: black;
    text-decoration: none;
}
.copy-r a:hover{ 
    text-decoration: none;
}

.footer-license {

    margin-top: 12px;
    font-size: 11px;
    line-height: 1.3;
    color: #000;

}

.footer-license p {
        margin: 2px 0;
}

/*  ./フッター */

/* 追従TOPボタン */
#page-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    font-size: 14px;
    line-height: 1;
    z-index: 99;
}
/* TAB Only */
@media only screen and (max-width: 1020px) and (min-width: 768px) {
    #page-top {
        bottom: 140px;
    }
}
#page-top a {
    background: #ad7f52;
    text-decoration: none;
    color: #fff;
    width: 80px;
    padding: 18px 5px;
    text-align: center;
    display: block;
    border-radius: 90px;
    opacity: 0.9;
    transition: all .3s ease;
}
#page-top a:hover {
    text-decoration: none;
    opacity: .5;
}
/* ./追従TOPボタン */

/* NAVI　SNSボタン５こ */
#modal_sp_navi {
    display: none;
}

@media only screen and (max-width: 767px) {
    #modal_sp_navi {
        overflow: hidden;
        position: fixed;
        width: 100%;
        bottom: 5rem;
        z-index: 1;
        display: inline-block;
        padding-top: 25px;
    }
    #slide_navi {
        width: 100%;
        background:linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
        border:none;
        position: fixed;
        opacity: 0.8;
        z-index:8888;
    }

    #modal_sp_navi a {
        text-decoration: none;
        cursor: pointer;
        display: block;
    }
    #slide-in_navi {
        position: relative;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}

@media only screen and (max-width: 1020px) and (min-width: 768px) {
    #modal_sp_navi {
        overflow: hidden;
        position: fixed;
        width: 100%;
        bottom: 5rem;
        z-index: 1;
        display: inline-block;
        padding-top: 35px;
        padding-bottom: 3.6rem;
    }
    #slide_navi {
        width: 100%;
        background:linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
        border:none;
        position: fixed;
        opacity: 0.8;
        z-index:8888;
    }

    #modal_sp_navi a {
        text-decoration: none;
        cursor: pointer;
        display: block;
    }
    #slide-in_navi {
        position: relative;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}

ul.foot_navi {
    width:100%;
    margin: 0px 60px 0px -10px;
    padding: 9px 20px 30px 0px;
    display: inline-block;
    vertical-align:bottom;
    background-color: #ffffff;
    opacity: 0.8;
}

ul.foot_navi li {
    width: 20%; 
    border:none; 
    float:left; 
    list-style: none;
}

ul.foot_navi li a {
    border-radius:0 0;
    padding:0 0 0 0;
    margin: 0px;
    text-decoration: none;
    display: block;
    text-align: center;

}

ul.foot_navi li img {
    max-width: 50%;
    height: auto;
    margin-top: 10px;
}

div.navi_font_s {
    color: white;
    font-size: 1.0rem;
}

div.navi_font {
    color: white;
    font-weight:bold;
    font-size: 1.5rem;
    padding-bottom: 20px;
}
/*NAVI*/

/*SWIPER*/
#app {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.swiper {
  width: 100%;
  height: 85vh;
  min-height: 500px;
  margin-top: 90px;
}
@media (orientation: portrait) {
  .swiper {
    aspect-ratio: 16/9;
    height: auto;
  }
}

.super-flow-content {
  padding: 16px;
  font-weight: bold;
  line-height: 1.1;
  text-wrap-style: balance;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  color: #fff;
  font-size: 6vw;
  inset-inline-start: 25%;
  width: 50%;
  transition-property: transform;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HGS明朝E", serif;
}

.swiper-super-flow .swiper-pagination-bullets {
  position: absolute;
  background: rgba(200, 200, 200, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(16px);

  white-space: nowrap;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-vertical-gap: 10px;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-color: #fff;
}

.swiper-super-flow .swiper-pagination-bullets.swiper-pagination-horizontal {
  padding: 16px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0;
}
.swiper-super-flow .swiper-pagination-bullets.swiper-pagination-vertical {
  padding: 16px;
}

/* SP */
@media only screen and (max-width: 767px) {

  .swiper {
    height: 35vh;
    min-height: 320px;
    margin-top: 70px;
  }
}
/* ./SP*/

/* TAB */
@media only screen and (max-width: 1020px) and (min-width: 768px) {
  .swiper {

    height: 45vh;
    min-height: 420px;
    margin-top: 70px;
  }
}
/* ./TAB*/

/*SWIPER*/

/* 問い合わせ */
.contact {
    padding: 140px 20px 100px;
    background:
        linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
        url('/assets/images/ishikari.png') center center / cover no-repeat;
}

.contact-container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    padding: 64px;
    border-radius: 32px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
    border: 1px solid rgba(185,152,119,0.15);
}

.contact-subtitle {
    font-size: 13px;
    letter-spacing: 0.35em;
    color: #b99877;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.contact-title {
    font-size: clamp(16px, 2.5vw, 32px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #111, #b99877);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

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

    .contact-title {
        font-size: 20px;
    }
}

.contact label {
    color: #111;
}

.contact-text {
    color: #555;
    margin-bottom: 50px;
    line-height: 1.8;
    font-size: 15px;
}

.form-group {
    margin-bottom: 28px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 16px;
    font-size: 16px;
    transition: 0.3s;
    background: rgba(255,255,255,0.9);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #111;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

textarea {
    min-height: 180px;
    resize: vertical;
}

.submit-btn {

    width: 100%;
    border: none;
    background: linear-gradient(135deg, #b99877 0%, #8c6b4f 40%, #111 100%);
    color: #fff;
    padding: 18px 20px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.12em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);

}

/* 光が流れる演出 */

.submit-btn::before {

    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: all 0.6s ease;

}

/* ホバー */

.submit-btn:hover {

    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);

}

.submit-btn:hover::before {

    left: 120%;

}

/* クリック時 */

.submit-btn:active {

    transform: translateY(-1px) scale(0.99);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);

}

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

    .contact {
        padding: 120px 16px 80px;
    }

    .contact-container {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .contact-title {
        font-size: 36px;
    }

}

.flash-message {

    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1f7a4a 0%, #2ecc71 50%, #145a32 100%);
    color: #fff;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
    transition: all 0.4s ease;

}

@keyframes fadeIn {

    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }

}
/* ./問い合わせ*/

/* 会社概要 */
.about {

    padding: 140px 20px 100px;
    background:
        linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
        url('/assets/images/ishikari.png') center center / cover no-repeat;
    color: #111;
}

.about-box {
    width: 100%;
    max-width: 760px;
    margin: 40px auto 0;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    padding: 64px;
    border-radius: 32px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
    border: 1px solid rgba(185,152,119,0.15);
}

.about,
.about p,
.about td,
.about th,
.about a {
    color: #111;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th {
    background: #111;
    color: #fff;
    padding: 14px;
    text-align: left;
}

.company-table td {
    background: #fafafa;
    color: #111;
    padding: 14px;
}

.company-table tr {
    border-bottom: 1px solid #e5e5e5;
}

.about-box {
    margin-top: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
    text-align: center;
}

.about-title {
    text-align: center;
    width: 100%;
    display: block;
    margin: 0 auto 20px;
}

.access {

    padding: 0 0 80px;
    margin-top: -100px;

    background:

        linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),

        url('/assets/images/teineku.png') center center / cover no-repeat;

    color: #111;

}

.access .container {

    margin-top: 0 !important;
    margin-bottom: 0 !important;

}

.access .about-box {
    background: #fff;
    border-radius: 12px;
    margin-top: 0;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.access .section-title {

    padding-top: 80px;

}

.access p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #333;
}

.access iframe {
    border-radius: 12px;
}

/* スマホ */
@media only screen and (max-width: 767px) {

    .access {
        padding: 0 0 60px;
    }

    .access .about-box {
        padding: 24px;
    }

    .access p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .access iframe {
        height: 300px;
    }
}

/* ./会社概要 */

/* プライバシーポリシー */

.page-fv {
    padding: 160px 20px 80px;
    background: #f7f7f7;
    text-align: center;
}

.page-title {
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: .08em;
    margin-bottom: 10px;
    color: #111;
}

.page-subtitle {
    font-size: 1rem;
    color: #666;
}

.privacy-section,
.privacy-section p,
.privacy-section li,
.privacy-section h2 {
    color: #111;
}

.privacy-section {
    padding: 80px 20px;
    background: #fff;
}

.inner {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-container {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.privacy-lead {
    line-height: 2;
    margin-bottom: 50px;
}

.privacy-block {
    margin-bottom: 50px;
}

.privacy-block:last-child {
    margin-bottom: 0;
}

.privacy-block h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.privacy-block p,
.privacy-block li {
    line-height: 2;
    color: #333;
}

.privacy-block ul {
    margin-top: 15px;
    padding-left: 1.5em;
}

.privacy-item {

    padding: 32px 0;

    border-bottom: 1px solid #eee;

}

.privacy-heading {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 18px;

}

.privacy-heading span {

    font-size: .9rem;

    letter-spacing: .1em;

    color: #999;

}

.privacy-heading h2 {

    font-size: 1.3rem;

    margin: 0;

}

.privacy-item p,

.privacy-item li {

    line-height: 2;

    color: #444;

}

@media screen and (max-width: 768px) {
    .page-fv {
        padding: 130px 20px 60px;
    }

    .privacy-section {
        padding: 60px 15px;
    }

    .privacy-container {
        padding: 30px 20px;
    }

    .privacy-block h2 {
        font-size: 1.15rem;
    }
}


/* ./プライバシーポリシー */