
.clear { display: none;}

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

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

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;
    }
	.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: 95px;
    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: 50px;
}

.nav__sns a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    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: -4rem;
    }

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

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

    .navigation__list {
        text-align: left;
    }
}

/* 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;
    }
}
/* ./ヘッダー */

/* 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;
}
.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;
}
/*  ./フッター */

/* 追従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: 90vh;
  min-height: 500px;
  margin-top: 40px;
}
@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;
}

.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;
}
/*SWIPER*/