@charset "UTF-8";

/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  /* border-collapse: collapse; */ /* border-spacing: 0; */
}

/* アニメーション
-------------------------------------*/
/* ScrollTrigger マーカーを強制的に非表示にする */
.gsap-marker-scroller-end,
.gsap-marker-start,
.gsap-marker-end,
.gsap-marker-scroller-start {
  display: none !important;
}

/*fadein*/
.animated__fadeIn {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 0.8s ease, translate 0.8s ease;
}

.animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

/*片側から出現*/
.animated__clipView {
  clip-path: inset(0 100% 0 0); /*before (出現前)*/
  transition: clip-path 0.8s ease;
}

/*after (出現後)*/
.animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

/*左からスライドするアニメーション*/
.animated__slideIn--left {
  opacity: 0; /*before (出現前)*/
  transition: opacity 0.5s ease, translate 0.5s ease;
  translate: -1000px;
}

.animated__slideIn--left.js-show {
  opacity: 1;
  translate: 0;
}

/*右からスライドするアニメーション*/
.animated__slideIn--right {
  opacity: 0; /*before (出現前)*/
  transition: opacity 0.5s ease, translate 0.5s ease;
  translate: 1000px;
}

.animated__slideIn--right.js-show {
  opacity: 1; /*before (出現前)*/
  translate: 0;
}

/* 上からに出現 */
.animated__clipDown {
  clip-path: inset(0 0 100% 0); /* before */
  transition: clip-path 1.4s ease;
}

.animated__clipDown.js-show {
  clip-path: inset(0 0 0 0); /* after */
}


/* ========================================
  @media screen and (min-width: 768px),print 
======================================== */
@media screen and (min-width: 768px), print {
/* base
-------------------------------------*/
body {
  font-size: 16px;
  overflow: clip;
  line-height: 1.6;
  letter-spacing: 0.8px;
  color: #1C1C1C;
  background: #FFFFFF;
}

/*pc・タブレットcss*/
/*pc_defaultset*/
.pc {
  display: block !important;
}
/*pcのみ表示ブロック*/
.pc2 {
  display: inline-block !important;
}
/*pcのみ表示ブロック*/
.sp,
.sp2 {
  display: none !important;
}
/*スマホのみ表示ブロック*/
.h_menu {
  display: none;
}
/*スマホ用ヘッダ*/
.sp-header {
  display: none;
}
/*スマホ用メニュー*/
#sp-global-nav {
  display: none;
}
/*スマホ用メニュー*/
.sp-fix-list {
  display: none;
}
/* Antialiasing ※任意　*/

/* header
-------------------------------------*/
header {
  height: 108px;
  margin-bottom: -108px;
  margin-inline: auto;
  position: relative;
  width: min(100%, 1920px);
  z-index: 100;
  color: #fff;
}
header .inner {
  display: flex;
  justify-content: space-between;
  padding: 0 1.8rem;
}
header .logo {
  margin: 1.85rem 0 0;
}
header nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
header .sns-link {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}
header .gnav {
  display: flex;
  margin: -0.5rem 8.5rem 0 0;
  gap: 2.5rem;
  align-items: center;
}
header .gnav li a {
  font-size: 14px;
  line-height: 1.2148;
  letter-spacing: 0.05em;
  color: #fff;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
#lower-header .gnav li a {
  color: #1C1C1C;
}
header .gnav li a::after {
  background-color: #fff;
  bottom: -4px; 
  content: ""; 
  height: 1px; 
  left: 0; 
  position: absolute; 
  transform: scale(0, 1); 
  transform-origin: right top; 
  transition: transform .3s; 
  width: 100%; 
}
#lower-header .gnav li a::after {
  background-color: #1C1C1C;
}
header .gnav li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1); 
}

/* pullnavi */
#pullnavi {
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(-100%);
}
#pullnavi.upMove {
  opacity: 0;
  transform: translateY(-100%);
}
#pullnavi.dwMove {
  opacity: 1;
  transform: translateY(0);
}

#pullnavi {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
#pullnavi {
  background: #fff;
  width: 100%;
  box-shadow: 0px 3px 20px #00000029;
}
#pullnavi .inbox {
  width: 100%;
  min-width: 1280px;
  height: 70px;
  margin: 0px auto 20px auto;
  padding-top: 14px;
  position: relative;
}

/* pc-menu
-------------------------------------*/
.pc-menu {
  position: fixed;
  top: 1.25rem;
  right: 2.5rem;
  z-index: 100;
}
.pc-menu:hover {
  opacity: 0.8;
  cursor: pointer;
  cursor: hand;
}
#pc-menu-open {
  display: none;
  background: #f8f8f8;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 101;
  overflow-y: scroll;
}
#pc-menu-open .open-close-01 {
  position: absolute;
  top: 1.2rem;
  right: 2.5rem;
}

#pc-menu-open {
  background: #333333;
  color: #fff;
}
#pc-menu-open .logo {
  padding: 1.95rem 1.95rem;
}
#pc-menu-open .open-main-Box .inner {
  width: min(95%, 1100px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 32.72% 57%;
  padding: 2.55rem 0 0;
  justify-content: space-between;
}
#pc-menu-open .left-box {
margin: 0.3rem 0 0;
}
#pc-menu-open .link-list {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 2.7rem;
}
#pc-menu-open .link-list li .btn {
  background: #404040;
  width: 22.5rem;
}
#pc-menu-open .link-list li .btn img {
  width: 1.25rem;
  height: 1.25rem;
}
#pc-menu-open .link-list li .btn a {
  display: flex;
  gap: 0.625rem;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
  color: #fff;
  padding: 1.75rem 1.25rem;
  margin: 0 0 0.95rem;
  align-items: center;
}
#pc-menu-open .link-list li .btn a::after {
  position: absolute;
  content: "→";
  font-size: 14px;
  right: 1.9rem;
  top: 52%;
  transform: translateY(-50%);
  color: #fff;
  font-family: "Lato", sans-serif;
  font-style: normal;
  transition: all 0.2s;
}
#pc-menu-open .link-list li .btn a:hover::after {
  right: 1.5875rem;
}
#pc-menu-open .con-box .txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.71428;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}
#pc-menu-open .con-box .sns-link {
  display: flex;
  gap: 0.625rem;
  margin: 0 0 0 -0.6rem;
}
#pc-menu-open .right-box {
}
#pc-menu-open .link-box {
  display: flex;
  margin: 0 0 3rem 2.7rem;
  justify-content: space-between;
  padding: 0;
}
#pc-menu-open .link-box .enttl {
  font-size: 20px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #9A9A9A;
  margin: 0 0 0.7rem;
}
#pc-menu-open .link-box .list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 3.158rem;
}
#pc-menu-open .link-box .list li a{
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #fff;
}
#pc-menu-open .link-box .link-l {

}
#pc-menu-open .link-box .link-c {
 
margin: 0 0 0 2rem;
}
#pc-menu-open .tel-box {
  display: grid;
  gap: 1.2rem;
}
#pc-menu-open .tel-box a {
  color: #fff;
}
#pc-menu-open .tel-box .tel {
  display: flex;
  gap: 0.6875rem;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 400;
}
#pc-menu-open .tel-box .tel span {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin: 0 -0.25rem 0 0;
}
#pc-menu-open .tel-box .open {
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  font-weight: 400;
  padding: 0 0 0.5rem;
}

/* side-fix
-------------------------------------*/
.side-fix {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 10001;
}


/* g-nav
-------------------------------------*/
#g-nav {
  width: 1100px;
  margin: 0px auto 10px auto;
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
}
#g-nav li.list {
  position: relative;
  display: inline-block;
  margin-right: 2px;
}
#g-nav li.list span {
  cursor: pointer;
}
#g-nav li.list span,
#g-nav li.list a {
  border-right: 1px solid #999;
  display: block;
  text-align: center;
  padding: 10px 20px;
}
#g-nav li.list:first-child a {
  border-left: 1px solid #999;
}
#g-nav .dropmenu li.list ul.sub {
  visibility: hidden;
  opacity: 0;
  transition: 0s;
  position: absolute;
  top: 35px;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 500;
  width: 220px;
}
#g-nav .dropmenu li.list:hover ul {
  visibility: visible;
  opacity: 1;
  display: block;
}
#g-nav .dropmenu li.list ul li:last-child a {
  border-bottom: 1px solid #ccc;
}
#g-nav .dropmenu li.list ul li a {
  visibility: hidden;
  opacity: 0;
  transition: 0.9s;
  background: #fff;
  display: block;
  width: 220px;
  padding: 10px;
  color: #000;
  border: 1px solid #ccc;
  border-bottom: none;
}
#g-nav .dropmenu li.list:hover ul li a {
  visibility: visible;
  opacity: 1;
}


/* footer
-------------------------------------*/
footer {
  background: #333333;
  color: #fff;
}
footer .inner {
  width: min(95%, 1760px);
  margin-inline: auto;
}
footer .inBox {
  display: grid;
  grid-template-columns: 54.54% 1fr;
  gap: calc(80 / 1920 * 100vw);
  border-bottom: 1px solid #fff;
}
footer .left-box {
  border-right: 1px solid #FFFFFF;
  padding: 6.2rem 0 0;
}
#index footer .left-box {
  padding: 20.75rem 0 0;
}
footer h2 {
  font-size: 158px;
  line-height: 1.2025316456;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-bottom: 5rem;
  display: inline-block;
}
footer .link-list {
  display: grid;
  gap: calc(34 / 1920 * 100vw);
  width: calc(880 / 1920 * 100vw);
}
footer .link-list li .btn {
  background: #404040;
  width: 100%;
  max-width: 880px;
}
footer .link-list li .btn a {
  display: flex;
  gap: 0.625rem;
  font-size: clamp(1rem, 0.417rem + 1.22vw, 1.875rem);
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
  color: #fff;
  padding: calc(36 / 1920 *100vw) calc(60 / 1920 * 100vw);
  margin: 0 0 0.95rem;
  align-items: center;
}
footer .link-list li .btn a::after {
  position: absolute;
  content: "→";
  font-size: 18px;
  right: 2.5rem;
  top: 52%;
  transform: translateY(-50%);
  color: #fff;
  font-family: "Lato", sans-serif;
  font-style: normal;
  transition: all 0.2s;
}
footer .link-list li .btn a:hover::after {
  right: 2.1875rem ;
}
footer .link-list li .txt {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #B8B8B8;
}
#index footer .right-box {
  padding: 23.75rem 0 2.5rem;
}
footer .right-box {
  padding: 9.15rem 0 2.5rem;
}
footer .home-link {
  margin-bottom: 4.3rem;
  width: auto;
  max-width: 469px;
}
footer .home-link a {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
footer .home-link a::after {
  background-color: #fff;
  bottom: -4px; 
  content: ""; 
  height: 1px; 
  left: 0; 
  position: absolute; 
  transform: scale(0, 1); 
  transform-origin: right top; 
  transition: transform .3s; 
  width: 100%; 
}
footer .home-link a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1); 
}
footer .link-box {
  display: flex;
  gap: calc(78 / 1920 * 100vw);
  margin-bottom: 3rem;
  padding: 0;
}
footer .link-box .enttl {
  font-size: 20px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #9A9A9A;
  margin: 0 0 0.7rem;
}
footer .link-box .list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 3.158rem;
}
footer .link-box .list li a{
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #fff;
}
footer .tel-box {
  display: flex;
  gap: 1.3rem;
  align-items: flex-end;
}
footer .tel-box a {
  color: #fff;
  text-decoration: none;
}
footer .tel-box .tel {
  display: flex;
  gap: calc(11 / 1920 * 100vw);
  font-size: clamp(1.125rem, -0.208rem + 2.78vw, 3.125rem);
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 400;
}
footer .tel-box .tel span {
  font-size: clamp(1.125rem, -0.208rem + 2.78vw, 3.125rem);
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin: 0 -0.25rem 0 0;
}
footer .tel-box .open {
  font-size: calc(14 / 1920 * 100vw);
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  font-weight: 400;
  padding: 0 0 0.5rem;
}
footer .bottom-box {
  display: flex;
  justify-content: space-between;
  padding: 2.75rem 0 1.15rem;
  border-bottom: 1px solid #fff;
}
footer .bottom-box .left {
  display: flex;
  gap: 1.25rem;
  margin: 1rem 0 0;
}
footer .bottom-box .con-box {
  display: grid;
  margin: -0.25rem 0 0;
}
footer .bottom-box .con-box .txt {
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  font-weight: 400;
}
footer .bottom-box .con-box .sns-link {
  display: flex;
  gap: 0.625rem;
  margin: -1rem 0 0 -0.55rem;
}
footer .bottom-box .deco {
  margin-bottom: 2.45rem;
}
footer .bottom-box .deco img {
  width: calc(420 / 1920 * 100vw);
}
footer .logo img {
  width: calc(220 / 1920 * 100vw);
}
.fix-pagetop {
  text-align: right;
}
footer .bottom-link {
  padding: 0.85rem 0 5rem;
  display: flex;
  justify-content: space-between;
}
footer .bottom-link ul {
  display: flex;
  gap: 2.85rem;
}
footer .bottom-link ul li a {
  color: #9A9A9A;
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  position: relative;
}
footer .bottom-link ul li a::after {
  position: absolute;
  content: "";
  background: url(../images/common/open-btn.svg) no-repeat;
  background-size: contain;
  width: 0.625rem;
  height: 0.625rem;
  right: -0.95rem;
  top: 50%;
  transform: translateY(-50%);
}
footer .copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #9A9A9A;
}
/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  z-index: 30;
}

/* standard-list
-------------------------------------*/
.standard .list {
  width: min(95%, 1400px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 2.5rem;
  padding: 0 0 2.85rem;
}
.standard .list li {
  grid-template-rows: subgrid;
  grid-row: span 3;
  display: block grid;
  margin-bottom: 3.15rem;
}
.standard .list li h4 {
  font-size: 20px;
  line-height: 2.05;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.05rem;
}
.standard .list li .photo {
  margin-bottom: 1rem;
}
.standard .list li .photo img {
  width: 100%;
  height: auto;
}
.standard .list li .txt {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}


/* sauna-box
-------------------------------------*/
.sauna-box {
  width: min(95%, 1400px);
  margin-inline: auto;
  background: #1C1C1C;
  position: relative;
}
.sauna-box::before {
  position: absolute;
  content: "";
  border: 1px solid #707070;
  inset: 10px;
  pointer-events: none;
}
.sauna-box .inner {
  padding: 4.9rem 6.25rem 5rem;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 2.5rem;
}
.sauna-box .inner .txt-box {
  color: #fff;
  margin: 1.4rem 0 0;
}
.sauna-box .inner .txt-box .subt {
  font-size: 16px;
  line-height: 1.1875;
  letter-spacing: 0em;
  font-weight: 400;
}
.sauna-box .inner .txt-box .ttl {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 2.25rem;
}
.sauna-box .inner .txt-box .txt {
  font-size: 14px;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-bottom: 3.1rem;
  color: #E9E8E4;
}
.sauna-box .inner .photo img {
  width: 100%;
  height: auto;
}
.sauna-box .btn a {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.sauna-box .btn a::after {
  color: #fff;
}



/* common
-------------------------------------*/
.main-ttl-wrap {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding: 161px 0;
  text-align: center;
}
.main-ttl-wrap .en {
  display: block;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  font-family: "Lato", sans-serif;
}
.main-ttl-wrap h1 {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
h2.sub-title {
  padding: 25px 20px 10px;
  margin-bottom: 50px;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  border-bottom: solid 2px #000;
}
.seo_bread_list {
  width: 1200px;
  margin: 0 auto 20px;
}
.seo_bread_list li {
  margin-right: 20px;
  float: left;
}
.seo_bread_list li::after {
  content: " >";
}
.seo_bread_list li:last-child::after {
  content: "";
}
.btn {
  width: 15rem;
}
.btn a{
  display: block;
  text-decoration: none;
  padding: 0 0 1.25rem;
  position: relative;
  border-bottom: 1px solid #333333;
  font-size: 14px;
  line-height: 1.2142857143;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.btn a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 32%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #333333;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  transition: all 0.2s ease;
}
.btn a:hover::after {
  right: -0.3125rem;
}




.fit img {
  object-fit: cover;
  font-family: "object-fit: cover;";
}
html {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: none;
  overflow-x: hidden;
}

/* chrome画質悪化の対策*/
img {
  image-rendering: -webkit-optimize-contrast;
}

/* WEB FONTs 游ゴシックかすれ予防*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}
.f-min {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.f-min-02 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Sawarabi Mincho",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.f-gothic {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", Verdana, Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}
.f-gothic-02 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.f-gothic-old {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-zen {
  font-family: "Zen Kaku Gothic New", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-maru {
  font-family: "Zen Maru Gothic", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-lato {
  font-family: "Lato", sans-serif;
  font-style: normal;
}

body {
  -webkit-text-size-adjust: 100%;
}
img {
  vertical-align: bottom;
}
a {
  text-decoration: none;
  color: #1C1C1C;
}
a:hover {
  text-decoration: underline;
}
.nobd a:hover {
  text-decoration: none !important;
}

/* clearfix */
.clearfix {
  zoom: 1;
}
.clearfix:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  line-height: 0;
  content: ".";
}

/* リンク透明 */
a img:hover {
  -ms-filter: "alpha( opacity=80 )";
  filter: alpha(opacity=80);
  opacity: 0.8;
}
/* リンク透明にしない */
.noop a img:hover {
  -ms-filter: "alpha( opacity=100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}
/*---------------------------------------- 　　外部サービス ----------------------------------------*/
/* ggmap */
/* <div class="ggmap">iframeのコピーしたコード</div> */
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* <div class="youtube"><iframe  src="youtubeのURL?rel=0" frameborder="0" allowfullscreen></iframe></div> */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/*---------------------------------------- 　　webフォント（サーバー置き）　 ----------------------------------------*/
@font-face {
  font-family: "jp-sttl01";
  /* お好きな名前にしましょう */
  src: url("../font/.eot");
  /* IE9以上用 */
  src: url("../font/bokutachi.eot?#iefix") format("embedded-opentype"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff");
  /* iOS, Android用 */
  /* 念の為指定しておきます */
  font-weight: normal;
  /* 念の為指定しておきます */
  font-style: normal;
  vertical-align: top;
  margin: 0px;
  padding: 0px;
}
.myWebFontClass {
  font-family: "jp-sttl01";
}
}


/* ========================================
@media screen and (min-width:768px) and (max-width:1440px)
======================================== */
@media screen and (min-width:768px) and (max-width:1440px) {
  .sauna-box .inner {
    align-items: center;
  }
  .sauna-box .inner .txt-box .txt {
    font-size: clamp(0.75rem, 0.607rem + 0.3vw, 0.875rem);
  }
}

/* ========================================
   @media screen and (max-width: 1200px) 
======================================== */
@media screen and (max-width: 1200px) {
  html {
    overflow: auto;
  }
  body {
    overflow: visible;
  }
}


@media screen and (min-width:768px) and (max-width:1600px) {
  footer .inBox {
    grid-template-columns: 50.81% 44%;
  }
}
@media screen and (min-width:768px) and (max-width:1280px) {
  footer h2 {
    font-size: 12.344vw;
  }
  footer .bottom-box .con-box .sns-link {
    margin: 0 0 0 -0.55rem;
  }
}
@media screen and (min-width:768px) and (max-width:1100px) {
  #pc-menu-open .tel-box .tel {
    font-size:clamp(1.75rem, 0.015rem + 3.61vw, 2.5rem) ;
  }
  #pc-menu-open .tel-box .tel span {
    font-size:clamp(1.75rem, 0.015rem + 3.61vw, 2.5rem) ;
  }
  #pc-menu-open .link-box {
    margin: 0 0 4.364vw 3.927vw;
  }
  #pc-menu-open .link-box .enttl {
    font-size: clamp(0.813rem, -0.2rem + 2.11vw, 1.25rem);
  }
  #pc-menu-open .link-box .list li a {
    font-size: clamp(0.75rem, 0.461rem + 0.6vw, 0.875rem);
  }
  #pc-menu-open .link-list li .btn {
    width: 41.727vw;
    max-width: 360px;
  }
}

@media screen and (min-width:768px) and (max-width:1000px) {
  footer .tel-box .open {
    font-size: clamp(0.5rem, 0.25rem + 0.52vw, 0.875rem);
  }
  footer .link-box .enttl {
    font-size: clamp(1rem, 0.172rem + 1.72vw, 1.25rem);
  }
  footer .link-list li .btn a::after {
    right: 1.9rem;
  }
}

/* ========================================
   @media screen and (max-width: 767px)
======================================== */
@media screen and (max-width: 767px) {
html {
  font-size: 62.5%;
}
body {
  overflow: hidden;
  font-size: 3.6vw;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
  color: #1C1C1C;
}
.pc,
.pc2 {
  display: none !important;
}
/*pcのみ表示ブロック*/
.sp {
  display: block !important;
}
/*スマホのみ表示ブロック*/
.sp2 {
  display: inline-block !important;
}
/*スマホのみ表示ブロック*/
.no-br {
  display: none;
}
/*スマホでbrを解除したい場合に使用*/
.sp_display_block {
  display: block !important;
}
/*スマホでflexboxを解除したい場合等に使用*/
.pc-menu {
  display: none;
}
.side-fix {
  display: none;
}
.fix-list {
  display: none;
}
#pc-menu-open {
  display: none;
}
#g-nav {
  display: none;
}

/* sp-header
-------------------------------------*/
.sp-header {margin-bottom: -17vw;position: relative;z-index: 100;padding: 7.35vw 5vw 0;height: 17vw;}
.sp-header .h-logo img {
  height: auto;
  width: 26.573vw;
}
.sp-header .h-menu {
  position: fixed;
  top: 5vw;
  right: 5vw;
  z-index: 997;
}
.sp-header .h-menu img {
  height: auto;
  width: 18.36vw;
}

  /* sp-global-nav
-------------------------------------*/
nav#sp-global-nav .h-logo {width: 26.573vw;margin: 7.2vw 5.2vw;}
nav#sp-global-nav .h-logo img {
  height: auto;
  width: 100%;
}
nav#sp-global-nav {
  font-size: 3.8vw;
  z-index: 999;
  overflow: scroll;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  background-color: #333333;
  box-sizing: border-box;
  color: #fff;
}
nav#sp-global-nav .open-close-01 {
  position: fixed;
  top: 0;
  right: 0;
  width: 14.495vw;
  z-index: 998;
}
nav#sp-global-nav .open-close-01 img {
  height: auto;
  width: 100%;
}

nav#sp-global-nav .open-color-Box {
  padding: 5vw 0 20vw;
}
nav#sp-global-nav .link-list {
  display: grid;
  gap: 4.8vw;
  margin-bottom: 19vw;
}
nav#sp-global-nav .link-list li .btn {
  background: #404040;
  margin: 0 auto;
  width: 87vw;
}
nav#sp-global-nav .link-list li .btn img {
  width: 4.834vw;
  height: 4.834vw;
}
nav#sp-global-nav .link-list li .btn a {
  display: flex;
  gap: 2.2vw;
  font-size: 3.865vw;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
  color: #fff;
  padding: 6.8vw 5vw;
  align-items: center;
  background: #404040;
}
nav#sp-global-nav .link-list li .btn a::after {
  position: absolute;
  content: "→";
  font-size: 3.348vw;
  right: 7vw;
  top: 52%;
  transform: translateY(-50%);
  color: #fff;
  font-family: "Lato", sans-serif;
  font-style: normal;
  transition: all 0.2s;
}
nav#sp-global-nav .link-list li .btn a:hover::after {
  right: 5.5vw;
}
nav#sp-global-nav .open-link {
  width: 70vw;
  margin: 0 auto 4vw;
}

nav#sp-global-nav .list {margin: 0 0 12.85vw;}
nav#sp-global-nav .list li a {
  color: #fff;
  line-height: 1.7142857;
  text-decoration: none;
  padding: 5.05vw 9vw;
  display: block;
  border-bottom: 0.2vw solid #9A9A9A;
  font-size: 3.382vw;
  letter-spacing: 0.05em;
  position: relative;
}
nav#sp-global-nav .list li a::after {
  position: absolute;
  content: "→";
  font-size: 2.14vw;
  right: 9vw;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-family: "Lato", sans-serif;
  font-style: normal;
  transition: all 0.2s;
}
nav#sp-global-nav .list li a:hover::after {
  right: 7.5vw;
}
nav#sp-global-nav .list .top a::after {
  content: none;
}
nav#sp-global-nav .enttl {
 color: #9A9A9A;
 font-size:4.831vw;
 font-weight: 600;
 line-height: 1.9;
 letter-spacing: 0.05em;
 padding: 0 5vw;
 margin: 0 0 4.2vw;
}
nav#sp-global-nav .list li:first-child a {
  border-top: 0.2vw solid #9A9A9A;
}
nav#sp-global-nav .tel-box {
  width: 82.2vw;
  margin: 24vw auto 19vw;
  display: grid;
  gap: 2vw;
}
nav#sp-global-nav .tel {
  background-color: #1C1C1C;
  color: #fff;
  font-size:5.797vw;
  line-height: 1.2083;
  letter-spacing: 0;
  display: flex;
  gap: 1vw;
  align-items: baseline;
  padding: 5.7vw 0;
  border-radius: 11vw;
  justify-content: center;
}
nav#sp-global-nav .tel span {
  font-size:3.382vw;
  line-height: 1.2142857;
  letter-spacing: 0.05em;
}
nav#sp-global-nav .open {
  color: #FFFFFF;
  font-size:3.382vw;
  line-height: 1.7142857;
  letter-spacing: 0.05em;
  text-align: center;
}
nav#sp-global-nav .logo {
  text-align: center;
  margin-bottom: 7vw;
}
nav#sp-global-nav .logo img {
  width: 43.5vw;
}
nav#sp-global-nav .con-box .txt {
  color: #FFFFFF;
  font-size:3.382vw;
  line-height: 1.7142857;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 11vw;
}
nav#sp-global-nav .con-box .sns-link {
  display: flex;
  gap: 2.3vw;
  justify-content: center;
}

  /* side-fix
-------------------------------------*/
.side-fix {
  display: none !important;
}
.sp-fix-list {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 996;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-end;
}
.sp-fix-list .tel img {
  width: 14.495vw;
  height: auto;
}
.sp-fix-list .fix-icon img {
  width: 28.51vw;
  height: auto;
}

/* sp-page-top
-------------------------------------*/
.sp-page-top a {
  text-align: center;
  display: block;
  padding: 5vw 3vw;
}
.sp-page-top a img {
  width: 20vw;
  height: auto;
}

/* footer
-------------------------------------*/
footer {
  background: #333333;
  color: #fff;
}
footer .inner {
  border-bottom: 0.2vw solid #fff;
  padding: 14vw 0 32vw;
  display: grid;
}
footer .inBox {
  order: 1;
}
footer .left-box {
  width: 89.375vw;
  margin-inline: auto;
  padding: 0 0 8vw;
}
footer h2 {
  font-size: 20.289vw;
  line-height: 1.1951219;
  letter-spacing: 0.035em;
  font-weight: 400;
  margin-bottom: 11.5vw;
  text-align: left;
}
footer .link-list {
  display: grid;
  gap: 5.6vw;
}
footer .link-list li .btn {
  background: #404040;
  margin: 0;
  width: 100%;
}
footer .link-list li .btn a {
  display: flex;
  gap: 1vw;
  font-size:4.831vw;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
  color: #fff;
  padding: 7.5vw 4vw;
  margin: 0 0 3.65vw;
  background: #404040;
  align-items: anchor-center;
}
footer .link-list li .btn a::after {
  position: absolute;
  content: "→";
  font-size: 3.831vw;
  right: 4.7vw;
  top: 54%;
  transform: translateY(-50%);
  color: #fff;
  font-family: "Lato", sans-serif;
  font-style: normal;
  transition: all 0.2s;
}
footer .link-list li .btn a:hover::after {
  right: 3.25vw;
}
footer .link-list li:last-child .btn a {
  letter-spacing: 0.01em;
}
footer .link-list li .btn img {
  width: 6.283vw;
  height: 6.283vw;
}
footer .link-list li .txt {
  font-size:3.382vw;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #B8B8B8;
}

footer .tel-box {
  width: 82.2vw;
  margin: 0 auto 18.6vw;
  order: 2;
  padding: 15vw 0 0;
}
footer .tel {
  background-color: #1C1C1C;
  color: #fff;
  font-size:5.797vw;
  line-height: 1.2083;
  letter-spacing: 0;
  display: flex;
  gap: 1vw;
  align-items: baseline;
  padding: 5.7vw 0;
  border-radius: 11vw;
  justify-content: center;
  margin-bottom: 2.5vw;
}
footer .tel span {
  font-size:3.382vw;
  line-height: 1.2142857;
  letter-spacing: 0.05em;
}
footer .open {
  color: #FFFFFF;
  font-size:3.382vw;
  line-height: 1.7142857;
  letter-spacing: 0.035em;
  text-align: center;
}
footer .logo {
  text-align: center;
  margin-bottom: 6.6vw;
}
footer .logo img {
  width: 43.5vw;
}
footer .con-box .txt {
  color: #FFFFFF;
  font-size:3.382vw;
  line-height: 1.7142857;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 11vw;
}
footer .con-box .sns-link {
  display: flex;
  gap: 2.3vw;
  justify-content: center;
}
footer .con-box .sns-link img {
  width: 9.665vw;
  height: auto;
}
footer .bottom-box {
  display: contents;
}
footer .bottom-box .left {padding: 0 0 16.4vw;border-bottom: 0.2vw solid #fff;  order: 3;}
footer .bottom-box .right {
  order: 5;
}

footer .bottom-box .deco {margin: 0 0 13vw 9.2vw;}
footer .bottom-box .deco img {
  width: 85.269vw;
  height: auto;
}
.fix-pagetop {
  text-align: right;
  padding: 0 5vw;
}
.fix-pagetop img {
  width: 20vw;
  height: auto;
}
footer .bottom-link {
  display: contents;
}
footer .bottom-link ul {
  display: flex;
  order: 4;
  margin: 4vw 9vw 20vw;
  gap: 11vw;
}
footer .bottom-link ul li a {
  color: #9A9A9A;
  font-size: 2.898vw;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  position: relative;
}
footer .bottom-link ul li a::after {
  position: absolute;
  content: "";
  background: url(../images/common/open-btn.svg) no-repeat;
  background-size: contain;
  width: 2.419vw;
  height: 2.419vw;
  right: -3.8vw;
  top: 50%;
  transform: translateY(-50%);
}
footer .copyright {
  font-size: 2.898vw;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #9A9A9A;
  order: 5;
  text-align: left;
  padding: 0 5.3vw;
  margin: -5vw 0 0;
  display: inline-block;
  width: 44vw;
}

/* copyright
-------------------------------------*/
.copyright {
  font-size: 3.2vw;
  line-height: 1.6;
  padding: 10vw 3vw 25vw;
  display: block;
  text-align: center;
}

/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  bottom: 22vw !important;
  z-index: 30;
}

/* standard-list
-------------------------------------*/
.standard .list {
  width: 89.375vw;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 11.4vw;
  padding: 0 0 12.5vw;
}
.standard .list li h4 {
  font-size:4.348vw;
  line-height: 2.2777;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 4.4vw;
}
.standard .list li .photo {
  margin-bottom: 4.6vw;
}
.standard .list li .photo img {
  width: 100%;
  height: auto;
}
.standard .list li .txt {
  font-size:3.382vw;
  line-height: 2.285714;
  letter-spacing: 0.05em;
  font-weight: 400;
}

/* sauna-box
-------------------------------------*/
.sauna-box {
  background: #1C1C1C;
  position: relative;
}
.sauna-box::before {
  position: absolute;
  content: "";
  border: 0.2vw solid #707070;
  top: 2vw;
  bottom: 2vw;
  left: 3vw;
  right: 3vw;
  pointer-events: none;

}
.sauna-box .inner {
  padding: 14vw 0 20vw;
  display: grid;
}
.sauna-box .inner .txt-box {
  display: contents;
}
.sauna-box .inner .txt-box .subt {
  font-size:3.865vw;
  line-height: 1.1875;
  letter-spacing: 0em;
  font-weight: 400;
  color: #fff;
  order: 1;
  margin: 0 8.75vw 0.6vw;
}
.sauna-box .inner .txt-box .ttl {
  font-size:9.662vw;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
  margin: 0 8.75vw 8.75vw;
  color: #fff;
  order: 2;
}
.sauna-box .inner .txt-box .txt {
  font-size:3.382vw;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-bottom: 12vw;
  color: #E9E8E4;
  order: 4;
  width: 82.2vw;
  margin-inline: auto;
}
.sauna-box .inner .photo {
    order: 3;
    width: 91.305vw;
    margin: 0 0 8.5vw 3.4vw;
}
.sauna-box .inner .photo img {
  width: 100%;
  height: auto;
}
.sauna-box .btn {
  order: 5;
  width: 58.5vw;
  margin: 0 auto 0 9vw;
}
.sauna-box .btn a {
  color: #fff;
  border-bottom: 0.2vw solid #fff;
}
.sauna-box .btn a::after {
  color: #fff;
}

  /* common
-------------------------------------*/
.main-ttl-wrap {
  width: 100%;
  max-width: 100vw;
  margin-inline: auto;
  padding: 35vw 0 18vw;
  text-align: center;
}
.main-ttl-wrap .en {
  display: block;
  font-size:4.831vw;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 0.5vw;
  font-family: "Lato", sans-serif;
}
.main-ttl-wrap h1 {
  display: block;
  font-size:3.382vw;
  font-weight: 500;
  line-height: 2.85714;
  letter-spacing: 0.05em;
}
h2.sub-title {
  font-weight: bold;
  padding: 3vw 3vw 1vw;
  margin-bottom: 5vw;
  font-size: 5vw;
  letter-spacing: 0.3vw;
  text-align: center;
  border-bottom: solid #000 0.2vw;
}
/* .seo_bread_list {
  width: 100%;
  padding: 2vw 2vw 3.5vw;
  margin: 0 auto;
  font-size: 3.2vw;
  color: #666;
  line-height: 1.6;
} */
.seo_bread_list{display: none;}
.seo_bread_list a {
  color: #666;
}
.seo_bread_list li {
  margin-right: 1.5vw;
  float: left;
}
.seo_bread_list li::after {
  content: ">";
}
.seo_bread_list li:last-child::after {
  content: none;
}

.btn {
  width: 68.12vw;
  margin-inline: auto;
}
.btn a{
  display: block;
  text-decoration: none;
  padding: 0 0 4.5vw;
  position: relative;
  border-bottom: 0.2vw solid #333333;
  font-size:3.382vw;
  line-height: 1.2142857143;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.btn a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 32%;
  transform: translateY(-50%);
  font-size:2.898vw;
  color: #333333;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  transition: all 0.2s ease;
}
.btn a:hover::after {
  right: -1vw;
}


.fit img {
  object-fit: cover;
}

/*
.wysiwyg img {
  width: auto !important;
  height: auto !important;
}
  */

html {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: none;
  overflow-x: hidden;
}

/* chrome画質悪化の対策*/
img {
  image-rendering: -webkit-optimize-contrast;
}

/* 2カラムサイト---------------- */
#tow-cl #side {
  display: none;
}

/* WEB FONTs 游ゴシックかすれ予防*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}

.f-min {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.f-min-02 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Sawarabi Mincho",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.f-gothic {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", Verdana, Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}
.f-gothic-02 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.f-gothic-old {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-zen {
  font-family: "Zen Kaku Gothic New", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-maru {
  font-family: "Zen Maru Gothic", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-lato {
  font-family: "Lato", sans-serif;
  font-style: normal;
}

*:focus {
  outline: none !important;
}
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

body {
  -webkit-text-size-adjust: 100%;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: #1C1C1C;
}
a:hover {
  text-decoration: underline;
}
.nobd a:hover {
  text-decoration: none !important;
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  line-height: 0;
  content: ".";
}

/* img-block */
/* アンカーリンク調整 */
.hideAnchor {
  display: block;
  height: 0;
  overflow: hidden;
  text-indent: -9999px;
  margin-top: -2vw;
  padding-bottom: 2vw;
}
/* スクロール縦 */
.scroll-y {
  box-sizing: border-box;
  overflow-y: scroll;
  transform: translateZ(0);
}
/* リンク透明 */
a img:hover {
  -ms-filter: "alpha( opacity=80 )";
  filter: alpha(opacity=80);
  opacity: 0.8;
}
/* リンク透明にしない */
.noop a img:hover {
  -ms-filter: "alpha( opacity=100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}
/*---------------------------------------- 　　外部サービス ----------------------------------------*/
/* ggmap */
/* <div class="ggmap">iframeのコピーしたコード</div> */
.sp-ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 5vw;
  height: 0;
  overflow: hidden;
}
.sp-ggmap iframe,
.sp-ggmap object,
.sp-ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* <div class="youtube"><iframe  src="youtubeのURL?rel=0" frameborder="0" allowfullscreen></iframe></div> */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/*---------------------------------------- 　　webフォント（サーバー置き）　 ----------------------------------------*/
@font-face {
  font-family: "jp-sttl01";
  /* お好きな名前にしましょう */
  src: url("../font/.eot");
  /* IE9以上用 */
  src: url("../font/bokutachi.eot?#iefix") format("embedded-opentype"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff");
  /* iOS, Android用 */
  /* 念の為指定しておきます */
  font-weight: normal;
  /* 念の為指定しておきます */
  font-style: normal;
  vertical-align: top;
  margin: 0px;
  padding: 0px;
}
.myWebFontClass {
  font-family: "jp-sttl01";
}
}

/* ========================================
   @media screen and (max-height: 450px)
======================================== */
@media screen and (max-height: 450px) {
  /* 高さ450px以下の場合 andoroidのフォーム対策 ストーカーバナー用　*/
  .sp-fix-list {
    display: none;
  }
}
