/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

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

audio,
canvas,
video {
  display: block;
  filter: drop-shadow(0px 0px #000);
  width: 100%;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}


/* ==========================================================================
            Base
            ========================================================================== */

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  font-size: 67.5%;
  line-height: 1.5;
  background: var(--main-r);
  font-family: "ZenAntique", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
    overflow-x: hidden;
}

body {
  margin: 0;
  position: relative;
  z-index: 0;
  -webkit-font-smoothing: antialiased;
  color: var(--txt);
  background: #F4F4F4;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  overflow-x: hidden;	
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

#header_l{
    display: flex;
    align-items: center;
    gap: 2rem;
}

.bogo-language-switcher{
	display:flex;
}

.bogo-language-switcher li::after{
content:" / ";
margin:0 6px;
}

.bogo-language-switcher li:last-child::after{
content:"";
}

.blurTrigger{
  opacity: 0;
}

.blur{
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: .3s;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

/* ==========================================================================
              Links
              ========================================================================== */

a {
  background: transparent;
}

a:focus {
  outline: 0;
}

a:active,
a:hover {
  outline: 0;
}

a,
a:visited {
  color: inherit;
  transition: all 0.3s;
  text-decoration: none;
}

a:hover,
a:focus,
a:visited:hover,
a:visited:focus {
  opacity: 1;
}

a:link,
a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}


/* ==========================================================================
              Typography
              ========================================================================== */

@font-face {
  font-family: "ZenAntique";
  src: url('../fonts/ZenAntique-Regular.ttf') format('truetype'),
    url('../fonts/ZenAntique-Regular.woff') format('woff');
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

address {
  font-style: normal;
}


/* ==========================================================================
             Lists
           ========================================================================== */

dl,
ol,
ul {
  margin: 0;
}

dd {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

ul,
li {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}


/* ==========================================================================
             Embedded content
           ========================================================================== */

img:not(.post-contents img) {
  width: 100%;
  height: 100%;
  border: 0;
  image-rendering: -webkit-optimize-contrast;
  display: block;
  object-fit: cover;
}

svg:not(:root) {
  overflow: hidden;
}


/* ==========================================================================
              Figures
              ========================================================================== */

figure {
  margin: 0;
}


/*********************
           GENERAL STYLES
           *********************/

:root {
  --main: #111111;
  --main-r: #ffffff;
  --accent: #111111;
  --txt: #111111;
  --bg: #F7F7F7;
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --pl: 8.33333vw;
  --ml: 8.33333vw;
  --lg: 1.8rem;
  --x2: 2rem;
  --x25: 2.5rem;
  --x3: 3rem;
  --x35: 3.5rem;
  --x4: 4rem;
  --x5: 5rem;
  --en: "Montserrat", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  --width: 1400;
  --bold: "Poppins-M", "NotosansJP-B", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

/*html,
   body,
   a {
       cursor: none;
   }
   */

#cursor {
  pointer-events: none;
  position: fixed;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  background: rgb(16, 44, 168);
  transform: translate(-100px, -100px);
  border-radius: 50%;
  z-index: 999;
}

#stalker {
  pointer-events: none;
  position: fixed;
  top: -16px;
  left: -16px;
  width: 32px;
  height: 32px;
  background: rgba(88, 88, 88, 0.8);
  border-radius: 50%;
  transform: translate(-100px, -100px);
  transition: .15s;
  transition-timing-function: ease-out;
  z-index: 998;
}

#stalker.is-stalker {
  top: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  transition: .15s;
  background: rgba(88, 88, 88, 0.5);
}

/*
   慢性スクロールを行う記載
   #luxyは適用する大枠に設定
   .luxy-elはspanタグに設定
   */
#luxy {
  background: var(--main-r);
}

.luxy-el {
  display: block;
  width: 100%;
  height: 100%;
}

/*********************
           LAYOUT & GRID STYLES
           *********************/

.ib {
  display: inline-block;
}

.m-none {
  margin: 0 !important;
}

.pc-hide {
  display: none !important;
}

.l-lr {
  padding-right: 8.33333vw;
  padding-left: 8.33333vw;
}

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

.l-tb {
  margin-top: 20rem;
  margin-bottom: 20rem;
}

.l-tb-p {
  padding-top: 20rem;
  padding-bottom: 20rem;
}

.l-t {
  margin-top: 20rem;
}

.l-b {
  margin-bottom: 20rem;
}

.l-h {
  line-height: 2;
}

.bg {
  background: var(--bg);
}

.accent-chenge {
  color: var(--accent);
}

.accent-bottom {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 5px;
}

.align-c {
  text-align: center;
}

.align-l {
  text-align: left;
}

.align-r {
  text-align: right;
}

.overlay {
  position: relative;
  display: block;
}

.overlay:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(88, 88, 88, 0.5);
  z-index: 1;
}

.st-l,
.st-l span {
  font-size: 3rem;
}

.st-m,
.st-m span {
  font-size: 2rem;
}

.l-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  align-items: center;
}

.l-flex .flex-l,
.l-flex .flex-r {
  width: calc(100% / 2 - 2.5rem);
}

.l-flex .flex-r .btn-wrap a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.bg-main {
  background: var(--main);
  color: var(--main-r);
  padding-top: 20rem;
  padding-bottom: 20rem;
}

.title-wrap {
  margin-bottom: 3rem;
}

.sec-title,
.sec-title-en {
  line-height: 1;
}

.sec-title {
  font-size: 4rem;
  letter-spacing: 5rem;
  color: #575757;
font-weight:700;
}

@media screen and (max-width:960px) {
.sec-title {
  font-size: 3rem;
}
}

@media screen and (max-width:767px) {
.sec-title {
        letter-spacing: 3rem;
        padding-left: 3rem;
	  font-size: 2.5rem;
}
}

:lang(en) .sec-title {
  font-size: 2rem;
  letter-spacing: 3px;
}

@media screen and (max-width:767px) {
:lang(en) .sec-title {
        padding-left: 1rem;
}
}

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

.sec-title-en {
  font-size: 7rem;
}

.mb_s {
  margin-bottom: 1rem;
}

.mb_sm {
  margin-bottom: 2rem;
}

.mb_m {
  margin-bottom: 3rem;
}

.mb_mm {
  margin-bottom: 4rem;
}

.mb_l {
  margin-bottom: 5rem;
}

.mt_s {
  margin-top: 1rem;
}

.mt_sm {
  margin-top: 2rem;
}

.mt_m {
  margin-top: 3rem;
}

.mt_mm {
  margin-top: 4rem;
}

.mt_l {
  margin-top: 5rem;
}


/******************************************************************
           TYPOGRAPHY STYLES
           ******************************************************************/

h1,
h2,
h3,
h4,
h5 {
  text-rendering: optimizelegibility;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  text-decoration: none;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
p span {
  font-size: inherit;
}

h1 {
  font-size: 2.5rem;
  line-height: 1;
}

h2 {
  font-size: 2rem;
  line-height: 1.5;
}

h3 {
  font-size: 1.8rem;
  line-height: 1.5;
}

h4 {
  font-size: 1.6rem;
  line-height: 1.5;
}

h5 {
  font-size: 1.6rem;
  line-height: 1.5;
}

p,
a,
span,
td,
th,
li,
address,
dt,
dd {
  font-size: 14px;
  font-weight: 400;
	letter-spacing:3px;
}

@media screen and (max-width:767px) {
p,
a,
span,
td,
th,
li,
address,
dt,
dd {
  font-size: 12px;
}	
}


/*********************
           HEADER STYLES
           *********************/

.logo-wrap {
  width: 130px;
}

@media screen and (max-width: 767px) {
    .logo-wrap {
        width: 110px;
    }
}

.logo-wrap a {
  display: block;
}

.logo-wrap .logo-g {
  fill: var(--main-r);
}

.logo-wrap .logo-g:not(.home .logo-wrap .logo-g),
.is-top .logo-wrap .logo-g {
  fill: var(--main);
}

.logo-wrap p {
  font-size: 1.2rem;
  line-height: 1;
}

#logo {
  margin: 0;
  width: 180px;
  height: auto;
  line-height: 1;
}

#header {
  max-width: 100%;
  width: 100%;
  z-index: 10;
  box-sizing: border-box;
  top: 0;
  position: fixed;
  transition: all 0.3s ease-out;
  background:#f4f4f4;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  z-index: 50;
padding:0 5rem;
}

@media screen and (max-width:960px) {
#header {
padding:0 2rem;
}
}

#header.is-top {
  box-shadow: 0 0 5px 0px #ddd;
}

/*********************
           NAVIGATION STYLES
           *********************/

.nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 3rem;
}

.nav__list li a {
  border-bottom: none;
  font-size: 2.3rem;
  display: block;
text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 767px) {
.nav__list li a {
  font-size: 1.6rem;
}
}

#menu ul li a:not(.home #menu ul li a),
.is-top #menu ul li a {
  color: var(--main);
}

.is-top #menu ul li a {
  height: 70px;
}

  #header_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 80px;
    width: 100%;
  }

  #header.is-top-sp .toggle span,
  .toggle span:not(.home .toggle span) {
    border-bottom: solid 2px var(--main);
  }

  #header.is-top-sp .toggle.active span {
    border-bottom: solid 2px var(--main-r);
  }

  .is-top-sp #header_inner {
    height: 50px;
  }

  .nav__list {
    display: block;
  }

  #menu ul li a {
    padding: 2rem 5rem;
    text-decoration: none;
  }

@media screen and (max-width: 767px) {
  #menu ul li a {
    padding: 2rem;
  }
}

  #menu #menu-nav_inner {
display: block;
    max-width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-10px, 0, 0) translate(-50%, -50%);
  }

@media screen and (max-width: 767px) {
  #menu #menu-nav_inner {
    width: 100%;
  }
}

  #nav_inner {
    text-align: center;
    margin: 0;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 90px;
    pointer-events: none;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform cubic-bezier(0.8, 0, 0.1, 1) 0.9s 0.2s;
    transition: transform cubic-bezier(0.8, 0, 0.1, 1) 0.9s 0.2s;
	 background:#F4F4F4;
  }

  #menu.open #nav_inner {
    pointer-events: auto;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  #menu-nav_inner {
    opacity: 0;
    -webkit-transition: opacity ease 0.6s 0s, -webkit-transform ease 0.6s 0s;
    transition: opacity ease 0.6s 0s, transform ease 0.6s 0s;
  }

  #menu.open #menu-nav_inner {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) translate(-50%, -50%);
    transform: translate3d(0, 0, 0) translate(-50%, -50%);
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
  }

#header_r{
    display: flex;
    align-items: center;
}

#header_link{
    display: flex;
    align-items: center;
	gap:1rem;
}

@media screen and (max-width:960px) {
#header_link{
    display: none;
}
}

#header_link .btn{
    margin-top: 0;
    border-radius: 0;
    font-size: 1.6rem;
}

  .toggle {
display: block;
    width: 70px;
    height: 70px;
    cursor: pointer;
    position: relative;
    z-index: 55;
  }

.toggle:before{
	content:"とじる";
	position:absolute;
	bottom:8px;
	left:50%;
	transform:translatex(-50%);
	font-size:11px;
    transition: opacity .3s;
	opacity:0;
	pointer-events:none;
}

:lang(en) .toggle:before{
	content:"Close";
}

:lang(zh) .toggle:before{
	content:"關閉";
}

.toggle.active:before{
	opacity: 1;
}

  .toggle span {
    display: block;
    position: absolute;
    width: 30px;
	  border-bottom: solid 2px var(--main)!important;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 50%;
    transform: translateX(-50%);
  }

  .toggle span:nth-child(1) {
    top: 25px;
  }

  .toggle span:nth-child(2) {
    top: 35px;
    width: 20px; 
  }

  .toggle span:nth-child(3) {
    top: 45px;
  }

  .toggle.active span:nth-child(1) {
    top: 35px;
    transform: translateX(-50%) rotate(-25deg);
  }

  .toggle.active span:nth-child(2) {
    opacity:0;
  }

  .toggle.active span:nth-child(3) {
    top: 35px;
    transform: translateX(-50%) rotate(25deg);
  }

#menu_logo{
width: max-content;
    height: 30vw;
    position: absolute;
    left: 0;
    bottom: 0;
    object-fit: contain;
}

@media screen and (max-width:960px) {
#menu_logo{
    height: 50vw;
}	
}

@media screen and (max-width: 767px) {
    #menu_logo {
        height: auto;
        width: 40%;
    }
}
/*********************
           FOOTER STYLES
           *********************/

#footer_wrap {
  width: 100vw;
  height: 200px;
  position: relative;
  background: #f7f7f7;
  text-align: center;
}

#footer_wrap h3 {
  position: relative;
  top: 50%;
  transform: translate3d(0, -61%, 0);
  display: inline-block;
  font-size: 7.5rem;
}

.footer {
  position: relative;
}

#footer_inner {
position: relative;
    padding: 2rem;
    background: #000;
    color: var(--main-r);
    display: flex;
    justify-content: space-between;
}

.footer-item{
width:30%;
}

@media screen and (max-width:767px) {
.footer-item:nth-child(1){
display:none;
}
.footer-item{
width:50%;
}
}

#copyright {
text-align: center;
}

@media screen and (max-width:767px) {
#copyright {
text-align: left;
}
}

#privacypolicy{
	text-align:right;
}

#open{
	color:var(--main-r);
	font-size:14px;
}

@media screen and (max-width:767px) {
#open{
	color:var(--main-r);
	font-size:11px;
}
}

.popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 60;
}

.popup h3{
font-size: 2rem;
    text-align: center;
    margin-bottom: 5rem;
}

@media screen and (max-width:767px) {
.popup h3{
    margin-bottom: 2rem;
}
}

.popup p,
.popup ul{
	margin-bottom:2rem;
}

 .popup ul{
list-style: disc;
padding-left:20px;
}

 .popup ul li{
list-style-type: initial;
}

#first_policy{
	margin-bottom:0;
}

.popup-inner{
    background: white;
    padding: 5rem 3rem;
    position: relative;
    color: var(--main);
    text-align: left;
  max-width: 90%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
}
.popup-text {
  overflow-y: auto; /* ここがスクロール */
  flex: 1;           /* 高さを残り領域いっぱいに */
  margin-top: 10px;
}

#close{
position:absolute;
top:10px;
right:10px;
}

/*********************
           POSTS & CONTENT STYLES
           *********************/
/*
.swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}
*/

.over-l {
  flex: 1;
  margin-left: calc(50% - 50vw);
}

.over-r {
  flex: 1;
  margin-right: calc(50% - 50vw);
}

#page_header {
  height: 50rem;
  position: relative;
}

.hero-bg {
  height: 100%;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.hero-content .page-title {
  font-size: 1.8rem;
}

.hero-content .page-subtitle-en {
  font-size: 5rem;
  font-family: var(--en);
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 1rem;
}

.breadcrumb__item span {
  text-transform: uppercase;
}

.breadcrumb__item {
  display: inline;
  margin-right: 2rem;
  position: relative;
}

.breadcrumb__item:after {
  content: "／";
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translatey(-50%);
  font-size: 13px;
}

.breadcrumb__item:last-child {
  padding-right: 0rem;
}

.breadcrumb__item:last-child:after {
  content: "";
}

.breadcrumb__item a {
  transition: opacity .6s;
}

.breadcrumb__item a:hover {
  opacity: .6;
}

#single_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 20rem;
}

#single_wrap article {
  width: calc(70% / 1 - 25px);
}

#single_wrap .sidebar {
  width: calc(30% / 1 - 25px);
}

.single img {
  height: auto;
  max-width: 100%;
}

#news__pager {
  margin-top: 5rem;
}

#news__pager .page-numbers {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.news-list article {
  border-top: 1px solid #CFCFCF;
}

.news-list article:last-child {
  border-bottom: 1px solid #CFCFCF;
}

.news-list article a {
  display: block;
  padding: 30px 0;
}

.news-list article a div {
  display: flex;
  gap: 3rem;
  align-items: center;
}

#blog__pager ul.page-numbers {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.pagination .page-numbers li a,
.pagination .page-numbers li span {
  width: 50px;
  height: 50px;
  line-height: 1;
  border: 1px solid var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-numbers li span {
  background: var(--main);
  color: var(--main-r);
  border: 1px solid var(--main);
}

.post-title {
  overflow-wrap: break-word;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-align: left;
  margin-bottom: 0 !important;
}

.single .post-title {
  margin: 2rem 0 !important;
  -webkit-line-clamp: initial;
  font-size: 2.5rem;
  line-height: 1.3;
}

.post-time {
  color: #3A3A3A;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-category {
  font-size: var(--sm);
  background: var(--main);
  color: var(--main-r);
  padding: 5px 10px;
  line-height: 1;
  display: inline-block;
}

.post-time,
.post-category {
  white-space: nowrap;
}

.single .post-contents h2,
.single .post-contents h3,
.single .post-contents h4,
.single .post-contents h5 {
  margin-top: 50px;
  margin-bottom: 10px;
}

.single .post-contents p,
.single .post-contents figure {
  margin-bottom: 20px;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: 25% 75%;
}

.single-title,
.page-title,
.entry-title {
  margin: 0;
}

#archive_news_inner .news-list {
  max-width: 960px;
  margin: 0 auto;
}

/* トップ */
:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #fff;
  --color-theme-darken: #f12617;
}

[class*=swiper]:focus {
  outline: none;
}

/*.slide-media,
.thumb-media {
    position: relative;
    overflow: hidden;
}

.slide-media img,
.thumb-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
*/
.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

#mv{
    margin-top: 100px;
	position:relative;
}

@media screen and (max-width:960px) {
#mv{
    margin-top: 70px;
}
}

#mv ul{
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: center;
    margin-top: 5rem;
}

@media screen and (max-width:1400px) {
#mv ul{
    gap: 3rem;
}
}

@media screen and (max-width: 767px) {
    #mv ul {
        display:none;
    }
}

@media screen and (max-width:1200px) {
#mv ul li{
    width:calc(100% / 4 - 2.25rem);
	text-align:center;
}
}

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

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

#mv ul li a{
	font-size:1.6rem;
}

#mv_item{
    height: 60rem;
	position:relative;
}

#mv_item:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 100%;
    background: url(../images/mvlogo.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

@media screen and (max-width: 767px) {
#mv_item:before{
    width: 60%;
}
}

#mv video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#mv video,
#afterImg{
width:100%;
display:block;
}

#afterImg{
position:absolute;
top:0;
left:0;
opacity:0;
transition:opacity 2s;
}

@media screen and (max-width: 767px) {
#afterImg{
    object-position: 43%;
}
}

#afterImg.show{
opacity:1;
}

.tab-sp {
  display: none !important;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#mv_item .content {
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  text-align: center;
}

#mv_item .fraction {
  top: initial;
  right: 8.33333vw;
  bottom: 8.33333vw;
  font-family: var(--default);
}

#top_mv_inner_wrap {
  position: relative;
}

#mv_scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 5;
}

#sp_cta{
position: absolute;
    bottom: 0;
    left: 0;
    gap: 0;
	width:100%;
	z-index:5;
}

#sp_cta .btn{
margin: 0;
    font-size: 12px;
    display: block;
    border-radius: 0;
    box-shadow: none;
    padding: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    height: 50px;
}

#sp_cta .flex-l, #sp_cta .flex-r {
    width: calc(100% / 2)!important;
}

#sp_cta .cta-icon{
	width:30px;
	margin-right:5px;
	object-fit:contain;
}

body {
  margin: 0;
  font-family: serif;
}

#sec01 {
  position: relative;
  height: 100%;
  color: white;
  overflow: hidden;
  padding-right: 7rem;
  margin-right: var(--ml);
}

@media screen and (max-width: 767px) {
#sec01 {
padding-right: 0;
        margin-right: 0;
        display: flex;
        flex-direction: column;
}
}

/* 背景画像 */

.story-bg {
  position: absolute;
  inset: 0;
  background: url(../images/story-fix.png) center/cover no-repeat;
  left: 0;
}

@media screen and (max-width: 767px) {
    .story-bg {
background: url(../images/story-fix-sp.png) center / cover no-repeat;
        background-size: cover;
        background-position-x: right 35%;
    }
}

/* 左の暗いグラデーション */

.story-bg::after {
content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(57 57 57 / 80%) 0%, rgb(57 57 57 / 60%) 35%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
}

/* コンテンツ */

.story-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 15rem 0;
  padding-left: var(--pl)
}

@media screen and (max-width: 767px) {
.story-inner {
        order: 2;
        padding: 10rem 2rem 5rem 2rem;
    }
}

/* 左テキスト */

.story-text {
  max-width: 70%;
}

:lang(en) .story-text {
    max-width: 60%;
}

@media screen and (max-width: 767px) {
.story-text,
:lang(en) .story-text{
  max-width: 85%;
}
}

.story-text h3{
    line-height: 1.8;
    margin-bottom: 3rem;
}

@media screen and (max-width:767px) {
.story-text h3{
font-size: 1.6rem;
}
}

.story-text h3 p{
font-size: 2rem;
}

@media screen and (max-width: 767px) {
.story-text h3 p{
font-size: 1.6rem;
}
}

.story-text h3 p:last-child{
	text-align:right;
}

:lang(en) .story-text h3 p:last-child{
	text-align:left;
}


@media screen and (max-width: 767px) {
.story-text h3 p:last-child{
	text-align:left;
}
}

.story-text p {
  line-height: 2;
  opacity: .9;
}

@media screen and (max-width: 767px) {
.story-text p {
  line-height: 1.5;
}
}

.name {
  margin-top: 3rem;
  text-align: right;
}

@media screen and (max-width: 767px) {
.name {
  margin-top: 2rem;
font-size: 1.6rem;
}
}

/* 縦タイトル */

.story-vertical,
.vertical-title {
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
.story-vertical,
.vertical-title {
position: relative;
        order: 1;
        text-align: center;
        margin-bottom: 5rem;
}
}

#sec03 .vertical-title,
#sec06 .vertical-title {
  right: initial;
  left: 0;
}

.story-vertical h2,
.vertical-title h2 {
writing-mode: vertical-rl;
    font-size: 4rem;
    letter-spacing: 5rem;
    color: #575757;
    font-weight: 700;
}

@media screen and (max-width:960px) {
.story-vertical h2,
.vertical-title h2 {
    font-size: 3rem;
}
}

@media screen and (max-width:767px) {
.story-vertical h2, .vertical-title h2 {
        writing-mode: initial;
        letter-spacing: 3rem;
    }
}

:lang(en) .story-vertical h2  {
    font-size: 2rem;
    letter-spacing: 3px;
}

/* 下の黒帯 */

.story-history {
  background: black;
  padding: 3rem;
  padding-left: var(--pl);
  position: relative;
  letter-spacing: 5px;
}

@media screen and (max-width: 767px) {
    .story-history {
        order: 3;
        padding: 2rem;
    }
}

.story-history ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.story-history ul li {
  margin-bottom: 2rem;
}

.story-history ul li:last-child {
  margin-bottom: 0;
}

.story-history span {
    margin-right: 10px;
    width: 10%;
    display: inline-block;
}

@media screen and (max-width: 767px) {
.story-history span {
    width: 100%;
 display:block;
}
}


/* 本日の脂肪率 */

#sec02 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 0;
}

/* 背景 */

#sec02 .sec02-bg {
position: absolute;
    inset: 2px;
    background: url(../images/today.JPG);
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sec02-overlay{
    position: absolute;
    background: linear-gradient(to bottom, rgba(244, 244, 244, 1) 0%, rgba(244, 244, 244, 0.9) 15%, rgba(244, 244, 244, 0.6) 40%, rgba(244, 244, 244, 0.6) 60%, rgba(244, 244, 244, 0.9) 85%, rgba(244, 244, 244, 1) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media screen and (max-width:767px) {
.sec02-overlay{
    background:linear-gradient(to bottom,
      rgba(244, 244, 244, 1) 0%,
      rgba(244, 244, 244, 0.9) 15%,
      rgba(244, 244, 244, 0.8) 40%,
      rgba(244, 244, 244, 0.8) 60%,
      rgba(244, 244, 244, 0.9) 85%,
      rgba(244, 244, 244, 1) 100%);
}
}

/* コンテンツ */

.content {
  position: relative;
  z-index: 2;
}

.subtitle {
  color: #666;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

@media screen and (max-width:767px) {
.subtitle {
  font-size:14px;
}
}

/* 画像 */

.fat-post .sbi_header,
.fat-post .sbi_follow_btn,
.fat-post .sbi_load_btn {
  display: none;
}

.fat-post .sbi_photo {
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.fat-post .sbi_caption {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

#sb_instagram .sbi_photo {
  height: 300px;
}

#sb_instagram #sbi_images {
  height: 100%;
}

#sb_instagram {
  width: 330px;
  height: 330px;
}

@media screen and (max-width:767px) {
#sec02 #sb_instagram {
  width: 230px!important;
  height: 230px!important;
}
}

.photo p {
  margin-top: 15px;
  color: #555;
}

.fat-caption {
  overflow-wrap: break-word;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-align: left;
  margin-bottom: 0 !important;
  padding: 0 5rem;
  font-size: 1.6rem;
  width: 330px;
  margin: 0 auto;
}

/* ボタン */

.btn {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 30px;

  border-radius: 8px;
  border: 1px solid #bbb;

  background: #f4f4f4;
  color: #333;

  text-decoration: none;

  box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
  transition: .3s;
  font-size: 1.4rem;
}

.btn:hover {
  background: #e3e3e3;
}

/* こだわり */
#sec03 {
  position: relative;
  padding-left: 15rem;
  margin-left: var(--ml);
}

@media screen and (max-width:960px) {
#sec03 {
  padding-left: 10rem;
}
}

@media screen and (max-width:767px) {
#sec03 {
  padding: 0 3rem!important;
margin-left:0;
}
}

.row {
  display: flex;
}

@media screen and (max-width:767px) {
.row {
  flex-wrap:wrap;
  flex-direction: column-reverse;
}
}

.row1,
.row3 {
  margin-right: 20rem;
}

@media screen and (max-width:960px) {
.row1,
.row3 {
  margin-right: 5rem;
}
}

@media screen and (max-width:767px) {
.row1,
.row3 {
margin-right: 0;
}
}

.kodawari-img {
  width: 50%;
}

.text {
  width: 50%;
  background: linear-gradient(135deg, #000, #555);
  color: white;
  padding: 10vw 3vw;
  position: relative;
  text-align: right;
}

@media screen and (max-width:767px) {
.kodawari-img {
  width: 100%;
}

.text {
width: 100%;
        padding: 5rem 2rem;
        aspect-ratio: 4 / 4;
}
}

#point_video{
height: 100%;
    object-fit: cover;
}

@media screen and (max-width:767px) {
.row2{
        flex-direction: column;
}
}

.row2 .text {
  text-align: left;
}

.row2 .kodawari-img {
  width: 65%;
}

@media screen and (max-width:960px) {
.row2 .kodawari-img {
  width: 60%;
}
}

@media screen and (max-width:767px) {
.row2 .kodawari-img {
width: 100vw;
        margin: 0 calc(50% - 50vw);
}
}

.row2 .text {
  width: 35%;
}

@media screen and (max-width:960px) {
.row2 .text {
  width: 40%;
}
}

@media screen and (max-width:767px) {
.row2 .text {
  width: 100%;
}
}

.kodawari .row2 h3:before {
  right: initial;
  left: 0;
}

.row2 .num {
  right: initial;
  left: 0;
}

.kodawari h3 {
  font-size: 3rem;
  position: relative;
  padding-bottom: 1rem;
  display: inline-block;
  margin-bottom: 2rem;
}

@media screen and (max-width:960px) {
.kodawari h3 {
  font-size: 2.3rem;
}
}

@media screen and (max-width:767px) {
:lang(en) .kodawari h3 {
  font-size: 1.8rem;
}
}

.kodawari h3:before {
  content: "";
  position: absolute;
  background: #F4F4F4;
  height: 1px;
  width: 90%;
  right: 0;
  bottom: 0;
}

.kodawari-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 正方形 */

.img1,
.img3 {
  aspect-ratio: 1/1;
}

/* 横長 */

.img2 {
  aspect-ratio: 4/3;
}

.num {
position: absolute;
    top: -65px;
    right: 0;
    font-size: 11rem;
    color: #aaa;
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(to bottom, #2B2B2B, #F4F4F4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width:767px) {
.num {
        position: absolute;
        font-size: 6rem;
        top: -38px;
}
}

/* お品書き */
#sec04 {
  position: relative;
  padding-right: 7rem;
  margin-right: var(--ml);
}

@media screen and (max-width: 767px) {
#sec04 {
padding-right: 0;
        margin-right: 0;
}
}

#sec04 .vertical-title {
  top: 35px;
}

@media screen and (max-width:960px) {
#sec04 .vertical-title {
  top: 47px;
margin-bottom:10rem;
}
}

/* タブ */

.tabsSwiper {
  margin-bottom: 2rem;
}

.tabsSwiper .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid;
  font-size: 1.6rem;
}

:lang(en-US) .tabsSwiper .swiper-slide {
  font-size: 14px;
}

:lang(en-US) #sec04 .tabsSwiper .swiper-wrapper {
    gap: 3rem;
}

@media screen and (max-width: 767px) {
:lang(en-US) #sec04 .tabsSwiper .swiper-wrapper {
    gap: 1rem;
}
}

#sec04 .tabsSwiper .swiper-wrapper {
  gap: 5rem;
}

@media screen and (max-width: 1600px) {
#sec04 .tabsSwiper .swiper-wrapper {
  gap: 3rem;
}
}

@media screen and (max-width: 1400px) {
#sec04 .tabsSwiper .swiper-wrapper {
  gap: 2rem;
}
}

@media screen and (max-width: 767px) {
#sec04 .tabsSwiper .swiper-wrapper {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
}
}

@media screen and (max-width: 767px) {
#sec04 .tabsSwiper{
overflow: visible;
}
}

@media screen and (max-width: 767px) {
.tabsSwiper .swiper-slide:nth-child(1) {
	order:9;
}
.tabsSwiper .swiper-slide:nth-child(2) {
	order:8;
}
.tabsSwiper .swiper-slide:nth-child(3) {
	order:7;
}
.tabsSwiper .swiper-slide:nth-child(4) {
	order:6;
}
.tabsSwiper .swiper-slide:nth-child(5) {
	order:5;
}
.tabsSwiper .swiper-slide:nth-child(6) {
	order:4;
}
.tabsSwiper .swiper-slide:nth-child(7) {
	order:3;
}
.tabsSwiper .swiper-slide:nth-child(8) {
	order:2;
}
.tabsSwiper .swiper-slide:nth-child(9) {
	order:1;
}
}


.tabsSwiper .swiper-slide-thumb-active {
  font-weight: bold;
  border-bottom: 1px solid;
}

/* メニュー */



.menuSwiper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* スワイプヒント */

.menu-container {
  position: relative;
}

.swipe-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  z-index: 10;
  transition: opacity .4s;
  height: 150px;
}

.swipe-hint.hide {
  opacity: 0;
}

.zoom-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  z-index: 20;
  cursor: pointer;
pointer-events:none;
}

#note{
background: #DCD7C8;
    padding: 1rem;
    padding-right: 8.33333vw;
    padding-left: 8.33333vw;
}

@media screen and (max-width: 960px) {
#note{
    padding-right: 5rem!important;
    padding-left: 5rem;
}
}

@media screen and (max-width: 767px) {
#note{
    padding-right: 2rem!important;
    padding-left: 2rem;
}
}


#sec04 .zoom-btn img {
  object-fit: contain;
}

.menuSwiper a{
	display:block;
}

#menu_slide {
  margin-top: 2rem;
}

#menu_slide .swiper-wrapper {
  transition-timing-function: linear;
}

#menu_slide .swiper-slide {
  aspect-ratio: 4 / 4;
}

/* ひつまぶしの嗜み */
#sec05 h2 {
  text-align: center;
  margin-bottom: 2rem;
}

@media screen and (max-width:767px) {
/* ひつまぶしの嗜み */
#sec05 h2 {
	line-height:1.3;
}
}

@media screen and (max-width: 767px) {
#sec05 .flex-r {
display:none;
}
}

@media screen and (max-width: 767px) {
#sec05{
inset: -2px;
        background: linear-gradient(to bottom, rgba(244, 244, 244, 1) 0%, rgba(244, 244, 244, 0.9) 15%, rgba(244, 244, 244, 0.9) 40%, rgba(244, 244, 244, 0.9) 60%, rgba(244, 244, 244, 0.9) 85%, rgba(244, 244, 244, 1) 100%), url(../images/guide.webp);
        background-size: cover;
        background-position: center;
}
}

#guide_flex {
  gap: 0;
}

#guide_flex .flex-l,
#guide_flex .flex-r {
  width: calc(100% / 2);
}

@media screen and (max-width:767px) {
#guide_flex .flex-l,
#guide_flex .flex-r {
  width:100%;
}
}

#guide_flex .flex-r img {
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0));
}

.guide-item {
  padding-left: 6rem;
  position: relative;
  margin-bottom: 10rem;
}

.guide-item:last-child {
  margin-bottom: 0;
}

.guide-num {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 2.5rem;
  line-height: 1;
}

@media screen and (max-width:767px) {
:lang(en) .guide-num {
  top: 5px;
  font-size: 1.8rem;
}
}

.guide-item h3 {
  font-size: 2.5rem;
margin-bottom:2rem;
}

@media screen and (max-width:767px) {
:lang(en) .guide-item h3 {
  font-size: 1.8rem;
}
}

.guide02 {
  margin-left: 7rem;
}

@media screen and (max-width:767px) {
.guide02 {
  margin-left: 0;
}
}

.guide03 {
  margin-left: 14rem;
}

@media screen and (max-width:767px) {
.guide03 {
  margin-left: 0;
}
}

/* しつらえ */
#sec06 {
  position: relative;
  padding-left: 15rem;
  margin-left: var(--ml);
}

@media screen and (max-width:960px) {
#sec06 {
  position: relative;
  padding-left: 10rem;
  margin-left: var(--ml);
}
}

@media screen and (max-width:767px) {
#sec06 {
        padding-left: 0;
        margin-left: 0;
        background: linear-gradient(to right, rgba(244, 244, 244, 1) 0%, rgba(244, 244, 244, 0.9) 20%, rgba(244, 244, 244, 0) 40%), linear-gradient(to bottom, rgba(244, 244, 244, 1) 0%, rgba(244, 244, 244, 0.9) 15%, rgba(244, 244, 244, 0.9) 40%, rgba(244, 244, 244, 0.9) 60%, rgba(244, 244, 244, 0.9) 85%, rgba(244, 244, 244, 1) 100%), url(../images/shitsurae-bg.png);
        z-index: 0;
}
}


#shitsurae {
	inset:2px;
  padding-right: var(--ml);
  padding-top: 7rem;
  padding-bottom: 7rem;
  background:url(../images/shitsurae-bg.png);
background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	position:relative;
    z-index: 0;
}

.shitsurae-overlay {
position: absolute;
    background: linear-gradient(to right,
      rgba(244, 244, 244, 1) 0%,
      rgba(244, 244, 244, 0.8) 20%,
      rgba(244, 244, 244, 0) 40%),
    linear-gradient(to bottom,
      rgba(244, 244, 244, 1) 0%,
      rgba(244, 244, 244, 0.9) 15%,
      rgba(244, 244, 244, 0.6) 40%,
      rgba(244, 244, 244, 0.6) 60%,
      rgba(244, 244, 244, 0.9) 85%,
      rgba(244, 244, 244, 1) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

#shitsurae p,
#shitsurae .shitsurae-swiper {
  position: relative;
  z-index: 1;
}

@media screen and (max-width:767px) {
.shitsurae-overlay {
background:initial;
}
}

@media screen and (max-width:960px) {
#shitsurae {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
}

@media screen and (max-width:767px) {
#shitsurae {
  padding:0 3rem;
background:initial;
}
}

#shitsurae p {
    text-align: right;
    margin-bottom: 3rem;
    font-size: 1.6rem;
}

@media screen and (max-width:767px) {
#shitsurae p {
    text-align: center;
    font-size: 13px;
}
}

/* 前へ次への矢印カスタマイズ */
#shitsurae .swiper-button-prev,
#shitsurae .swiper-button-next {
  height: 50px;
  width: 50px;
}

@media screen and (max-width:767px) {
#shitsurae .swiper-button-prev,
#shitsurae .swiper-button-next {
  height: 40px;
  width: 40px;
}
}

/* 前への矢印 */
#shitsurae .swiper-button-prev {
  left: -30px;
}

@media screen and (max-width:767px) {
#shitsurae .swiper-button-prev {
  left: -20px;
}
}

/* 次への矢印 */
#shitsurae .swiper-button-next {
  right: -30px;
}

@media screen and (max-width:767px) {
#shitsurae .swiper-button-next {
  right: -20px;
}
}

/* 前へ次への矢印カスタマイズ */
#shitsurae .swiper-button-prev::after,
#shitsurae .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}

/* 前への矢印カスタマイズ */
#shitsurae .swiper-button-prev::after {
  background-image: url(../images/prev.svg);
}

/* 次への矢印カスタマイズ */
#shitsurae .swiper-button-next::after {
  background-image: url(../images/next.svg);
}

/* 画像サイズ調整 */
#shitsurae .swiper-slide img {
  height: 100%;
  width: 100%;
}

.shitsurae-swiper {
  position: relative;
  padding: 0 50px;
}

.shitsurae-swiper .swiper-slide {
  aspect-ratio: 4 / 4;
}

/* よくある質問 */
#sec07 {
  text-align: center;
}

@media screen and (max-width:767px) {
#sec02 .sec-title,
#sec07 .sec-title{
    line-height: 1.5;
}{
  gap: 2rem;
}
}

.tabs input {
  display: none;
}

/* ボタン */

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 5rem;
}

@media screen and (max-width:767px) {
.tab-buttons {
  gap: 2rem;
}
}

.tab-buttons label {
  background: #fff;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 3rem;
}

@media screen and (max-width:767px) {
.tab-buttons label {
padding: 10px;
}
}

/* コンテンツ */

#sec07 .content {
  display: none;
}

.tab-content .content {
  background: url(../images/qa.png) no-repeat center center / cover;
  padding: 5rem;
}

@media screen and (max-width:767px) {
.tab-content .content {
  padding: 2rem;
}
}

.tab-title {
  margin-bottom: 3rem;
}

.tab-title h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  white-space: nowrap;
}

@media screen and (max-width:767px) {
.tab-title h3 {
gap: 2rem;
}
:lang(en) .tab-title h3 {
  font-size:1.8rem;
}
.tab-title h3 circle{
    r: 2;
}
.tab-title h3 line{
    stroke-width: 1;
}
}

.tab-title h3 .line {
  flex: 1;
  height: 10px;
}

.tab-title h3 span {
  white-space: nowrap;
}

.tab-text {
  text-align: left;
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.tab-text h4 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.tab-text h4,
.tab-num {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
.tab-num {
white-space:nowrap;
}
}

@media screen and (max-width: 767px) {
.tab-content {
width:100vw;
	margin:0 calc(50% - 50vw);
}
}

/* タブ切り替え */

#tab1:checked~.tab-content .content1 {
  display: block;
}

#tab2:checked~.tab-content .content2 {
  display: block;
}

/* active */

#tab1:checked~.tab-buttons label[for="tab1"],
#tab2:checked~.tab-buttons label[for="tab2"] {
  background: #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#qa_list {
  text-align: left;
}

#qa_list li {
  margin-bottom: 5rem;
}

#qa_list li h4 {
  border-bottom: 1px dotted;
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
#qa_list li h4 {
  font-size: 1.4rem;
}
}

#qa_list li a {
  font-weight: 600;
}

/* ご案内 */
#info {
  background: #575757;
  color: var(--main-r);
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
}

@media screen and (max-width:767px) {
#info {
    padding: 5rem 0;
}
}

#info:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/info.png) no-repeat center left / contain;
  z-index: 1;
  opacity: .3;
}

@media screen and (max-width:767px) {
#info:before {
    width: 70%;
    height: 50%;
    top: initial;
    bottom: 0;
}
}

#info table {
  margin: 0 auto;
  width: 100%;
  max-width: 80%;
  border-collapse: collapse;
  position: relative;
  z-index: 1;
}

@media screen and (max-width:960px) {
#info table {
  max-width: 100%;
}
}

@media screen and (max-width:767px) {
#info table {
    width: 100%;
    display: block;
    margin: 0;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-all;
    padding: 0 1rem;
    margin-left: auto;
}
}

#info table tr {
  vertical-align: top;
  text-align: left;
}

#info table tr th,
#info table tr td {
  border-bottom: 1px solid var(--main-r);
  padding: 1rem 2rem;
}

@media screen and (max-width:767px) {
#info table tr th,
#info table tr td {
  display:block;
padding: 1rem;
}
#info table tr th{
border-bottom: 0;
        padding-bottom: 0;
}
#info table tr:nth-child(2) th,
#info table tr:nth-child(2) td,
#info table tr:nth-child(5) th,
#info table tr:nth-child(5) td ,
#info table tr:nth-child(6) th,
#info table tr:nth-child(6) td {
  display:inline-block;
}
#info table tr:nth-child(2) th,
#info table tr:nth-child(5) th,
#info table tr:nth-child(6) th{
border-bottom: 1px solid var(--main-r);
        padding: 1rem;
        width: 50%;
        white-space: nowrap;
}
#info table tr:nth-child(2) td,
#info table tr:nth-child(5) td,
#info table tr:nth-child(6) td{
        width: 50%;
        padding: 1rem;
}
}

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

  /*********************
           HEADER STYLES
           *********************/

}


@media screen and (max-width:1200px) {
  /*********************
           HEADER STYLES
           *********************/

  #logo {
    width: 150px;
  }

}

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

  /*********************
           GENERAL STYLES
           *********************/
  :root {
    --width: 540;
  }

  .pc-hide {
    display: block !important;
  }

  .bg-main {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  #cursor,
  #stalker {
    display: none;
  }

  /*********************
        NAVIGATION STYLES
        *********************/

  #header {
    height: 70px;
  }


  /*********************
           FOOTER STYLES
           *********************/
  .footer-block-inner figure:hover {
    transform: scale(1);
  }

  #footer_inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  /*********************
           LAYOUT & GRID STYLES
           *********************/
  .l-lr {
    padding-right: 5rem;
    padding-left: 5rem;
  }

  .l-tb {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .l-t {
    margin-top: 10rem;
  }

  .l-b {
    margin-bottom: 10rem;
  }

  .l-tb-p {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

}

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

  /*********************
           GENERAL STYLES
           *********************/
  html {
    scroll-padding-top: 90px;
  }

  .mbr {
    display: inline-block;
  }

  .sp-hide {
    display: none;
  }

  .pc-hide {
    display: block !important;
  }

  .l-lr {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .l-tb {
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .l-t {
    margin-top: 15rem;
  }

  .l-b {
    margin-bottom: 15rem;
  }

  .l-tb-p {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .l-flex {
    gap: 3rem;
  }

  /*********************
           HEADER STYLES
           *********************/
  .menu-item a {
    font-size: var(--md);
  }

  /*********************
           POSTS & CONTENT STYLES
           *********************/
  .post-title {
    -webkit-line-clamp: 2;
    width: 100%;
  }

  .post-data-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }

  .news-list article a div {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .news-list article a {
    padding: 20px 0;
  }

  .post-category {
    font-size: 12px;
  }

  .wpcf7-list-item-label,
  .wpcf7-list-item-label a {
    font-size: 13px;
  }

  input[type="text"],
  input[type="password"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="date"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="number"],
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="tel"],
  input[type="color"],
  select,
  textarea,
  .field {
    height: 60px;
    padding: 10px;
  }

  /*********************
           FOOTER STYLES
           *********************/
  #footer_inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
iframe {
    height:300px;
}
#copyright p{
	font-size:11px;
	}
  /*********************
           LAYOUT & GRID STYLES
           *********************/

  .l-flex .flex-l,
  .l-flex .flex-r {
    width: 100% !important;
  }

  textarea {
    min-height: 250px;
  }
}

@media screen and (min-width:768px) {
.tb-hide,
.swipe-hint{
	display:none;
}
#sec04 .l-lr{
	padding-right:0;
}
}