/* ======================================================================
共通
====================================================================== */

/* インポート */
@font-face {
    font-family: 'Unageo';
    src: url('fonts/Unageo[wght].ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

/* 共通スタイル */
html body {
  font-size: 14px;
  line-height: 1.4;
  font-family: 'Unageo', 'Arial', 'メイリオ',sans-serif;
  height: 100%;
}
a {
  text-decoration: none;
  color: #000;
}
.container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}
.section {
  margin: 64px 0;
}

/* ======================================================================
page：トップ
====================================================================== */
 .top-main {
  height: 100%;
 }
.top-mainvis-wrap {
  height: 100%;
}
.top-coffee{
  display: block;
  position: relative;
  height: 50%;
  width: 100%;
  background-image: url("../img/mainvis-coffee.webp");
  background-repeat:  no-repeat;
  background-position: center;
  background-size: cover;
  background-color:rgba(255,255,255,0.3);
  background-blend-mode:lighten;
}
.top-coffee-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1020px;
}
.top-mainvis-img {
  display: block;
  width: 20%;
  min-width: 160px;
  max-width: 100%;
  margin: 0 auto;
}

.top-tattoo{
  display: block;
  position: relative;
  height: 50%;
  width: 100%;
  background-image: url("../img/mainvis-tattoo.webp");
  background-repeat:  no-repeat;
  background-position: center;
  background-size: cover;
  background-color:rgba(255,255,255,0.3);
  background-blend-mode:lighten;
}
.top-tattoo-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1020px;
}

.top-mainvis-btn {
  padding: 8px 32px;
  margin: 16px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.top-mainvis-btn-coffee {
  color: #F65A00;
}
.top-mainvis-btn::after {
  content: '';
  width: 24px;
  height: 12px;
  border-bottom: solid 2px;
  border-right: solid 2px;
  transform: skew(45deg);
}


/* ======================================================================
page：COFFEE
====================================================================== */





/* ======================================================================
page：TATTOO
====================================================================== */
.body-mobile {
  max-width: 500px;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  background: #fff;
  margin: 0 auto;
}

.sec-container {
  width: 90%;
  margin: 32px auto;
}

.sec-title {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.sec-title::before {
  position: absolute;
  bottom:0;
  left:0;
  content:" ";
  display: block;
  height: 2px;
  width: 12px;
  background-color: #000;
}

.cv-btn-items {
  display: flex;
  justify-content: space-between;
  margin: 32px 0;
}
.cv-btn-item {
  width: 60%;
  border: 1px solid #000;
  padding: 16px 0;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}
.cv-btn-item-booking {
  background-color: #000;
  color: #fff;
}
.cv-btn-item-faq {
  background-color: #fff;
  color: #000;
}
.cv-btn-item-ig {
  display: block;
  background-color: #fff;
  color: #000;
}
.cv-btn-item-booking:hover {
  background-color: #fff;
  color: #000;
  transition-duration: 250ms;
}
.cv-btn-item-faq:hover,
.cv-btn-item-ig:hover {
  background-color: #000;
  color: #fff;
  transition-duration: 250ms;
}

/* header */

.header {
  position: sticky;
  top: 0;
  padding: 16px 5%;
  border-bottom: 1px solid #000;
  background-color: #fff;
  z-index: 2;
}

.header-logo {
  height: 12px;
}

/* ここからheaderのハンバーガーメニュー  */
/* ハンバーガーメニューボタン　*/
.hamburger {
  position: absolute;
  z-index : 6;
  right : -1px;
  top   : 0;
  width : 64px;
  height: 64px;
  cursor: pointer;
  text-align: center;
  background-color: #000;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 32px;
  height  : 2.5px ;
  left    : 18px;
  background:#fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
  border-radius: 2px;
}
.hamburger span:nth-child(1) {
  top: 18px;
}
.hamburger span:nth-child(2) {
  top: 30px;
  width: 24px;
  margin-left: 8px;
}
.hamburger span:nth-child(3) {
  top: 42px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 32px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 32px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  display: none;
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index : 4;
  top  : 0;
  left : 0;
  color: #000;
  background-color: rgba( 255, 255, 255, 1 );
  text-align: center;
  width: 100%;
  height: 100vh;
  transform: translateY(-100%);
  transition: all 0.6s;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 70%;
}
.globalMenuSp-logoimg {
  margin: 120px auto 60px auto;
  width: 160px;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
  border-bottom: 1px solid #000;
}
nav.globalMenuSp ul li:nth-child(1) {
  border-top: 1px solid #000;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 24px 0;
  text-decoration :none;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
  transform: translateY(0%);
}

/* sec meinvis */
.sec-mainvis-logo {
  display: block;
  width: 180px;
  max-width: 70%;
  margin: 64px auto 32px auto;
}

.sec-mainvis-img-items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 100%;
}
.sec-mainvis-img-item:nth-child(1) {
  width: 50%;
}
.sec-mainvis-img-item:nth-child(2) {
  width: 40%;
}

/* sec works */
#sb_instagram #sbi_load .sbi_load_btn {
  background-color: #000 !important;
  color: #fff !important;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
}
 #sb_instagram .sbi_follow_btn a {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
}
#sb_instagram #sbi_load .sbi_load_btn:hover {
  background-color: #fff !important;
  color: #000 !important;
}
#sb_instagram .sbi_follow_btn a:hover {
  background-color: #000 !important;
  color: #fff !important;
}

/* sec artist */
.artist-img-items {
  display: flex;
  align-items: flex-end;
}
.artist-img-item {
  width: 50%;
}
.artist-img-item-text {
  font-size: 64px;
  color: #000;
  font-weight: 900;
  letter-spacing: 3;
  margin-left: 10%;
  line-height: 0.8;
}
.artist-profile {
  margin-bottom: 32px;
}
.artist-profile-name {
  margin: 16px 0 12px 0;
  font-size: 14px;
}
.artist-img-items {
  margin-top: 24px;
}
.artist-profile-hello {
  font-size: 0.8em;
}

/* price */
.price-list-items {
  display: flex;
  align-items: center;
  align-content: stretch;
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.price-list-item {
  width: 33.3333%;
  text-align: center;
}
.price-list-item:nth-child(2) {
  border-right: 1px dashed #000;
  border-left: 1px dashed #000;
}
.price-list-items-title .price-list-item:nth-child(2) {
 border: 0;
}
.price-list-items-title {
  padding-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  margin-top: 36px;
}
.price-list-item-value-text {
  font-size: 10px;
}
.price-note {
  font-size: 10px;
}
/* info */

.info-title {
  font-size: 10px;
  font-weight: bold;
  margin-top: 16px;
}
.info-content {
  font-size: 14px;
}
.info-item iframe {
  width: 100%;
  margin-top: 16px;
}

/* faq */
/*ベース*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #000;
	background:#fff;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 8px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
  font-size: 12px;
}
.content {		/*本文*/
	height: 0;
	padding:0 16px;
	overflow: hidden;
  border-bottom: 1px solid #000;
  padding-right: 32px;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding: 16px;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}
.sec-faq-items {
  margin-bottom: 48px;
}

/* footer */
footer {
  border-top: 1px solid #000;
  margin-top: 56px;
  padding: 16px 0;
}
.copyright {
  font-size: 10px;
  text-align: center;
  padding-top:8px;
}
.footer-link {
  font-size: 10px;
  text-align: center;
}
.footer-link a {
  text-decoration: none;
  color: #000;
  padding: 0 8px;
}


/* contact-page */
.flow-content {
  font-size: 12px;
}
.flow-title {
  margin: 24px 0 8px 0;
}
.back-top {
  text-decoration: none;
  color: gray;
}
.back-top i {
  display: block;
  font-size: 24px;
  text-align: center;
  margin-bottom: 4px;
}
.back-top-text {
  display: block;
  text-align: center;
  font-size: 10px;
}



.cp_box1 {
  position: relative;
}
.cp_box1 input {
  display: none;
}
/*開くためのボタンとテキストを隠すグラデーションの設定*/
.cp_box1 label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  bottom: -10px;
  width: 100%;
  height: 140px; /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}
/* 開いた時にグラデーションを消す */
.cp_box1 input:checked + label {
  background: inherit;
}
.cp_box1 input:checked + label {
  /* display: none ; 閉じるボタンを消す場合コメントアウトを外す */
}
.cp_box1 .cp_container {
  overflow: hidden;
  height: 250px; /* 開く前に見えている部分の高さ */
  transition: all 0.5s;
}
/*続きをよむボタン*/
.cp_box1 label:after,
.cp_box1 label::before {
  content: '';
  position: absolute;
  line-height: 2.5rem;
}
.cp_box1 label:after {
  z-index: 2;
  bottom: 20px;
  width: 13em;
  content: '続きをよむ';
  color: #ffffff;
  background: #1b2538;
  border-radius: 20px;
}
.cp_box1 label::before {
  position: absolute;
  bottom: 38px;
  left: calc(50% - 3.5em);
  z-index: 3;
  width: 10px;
  height: 5px;
  background: #ffffff;
  clip-path: polygon(50% 100%, 0 0, 100% 0)
}
/*閉じるボタン*/
.cp_box1 input:checked + label:after {
  content: '閉じる';
}
.cp_box1 input:checked + label:before {
  left: calc(50% - 2.5em);
  transform: scale(1, -1);
}
.cp_box1 input:checked ~ .cp_container {
  height: auto;
  padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
  transition: all 0.5s;
}

.contact-item-title {
  font-size: 14px;
}
.contact-item {
  margin: 32px 0;
}

.sec-booking-flow .cv-btn-items {
  margin: 32px 0 48px 0;
}
.sec-booking-flow .cv-btn-item-ig {
  margin: 0;
}

/* contactform7 */
.wpcf7-form-control {
  border-bottom: 1px solid #000;
  display: block;
  width: 100%;
}
.contact-item label {
  margin: 16px 0;
  display: block;
}
.wpcf7-submit {
  width: 60%;
  border: 1px solid #000;
  padding: 16px 0;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  margin: 24px 0 0 0;
}
.wpcf7-submit:hover {
  background-color: #fff;
  color: #000;
}
.form-required {
  font-size: 10px;
  font-weight: 600;
  color: red;
}
.form-point {
  font-size: 10px;
  margin: 8px 0;
}
.personal-data-text {
  font-size: 12px;
}



/* 特商法 */

.tokushoho-table {
  font-size: 12px;
  border-collapse: collapse;
}
.tokushoho-table-th {
  width: 30%;
  text-align: left;
  border-bottom: 1px solid #000;
  padding: 16px 4px 16px 0;
}
.tokushoho-table-td {
  width: 70%;
  border-bottom: 1px solid #000;
  padding: 16px 0;
}

@media screen and (max-width: 999px) {
  .globalMenuSp-logoimg {
    margin: 80px auto 40px auto;
    width: 120px;
  }
  nav.globalMenuSp ul li a {
    padding: 16px 0;
    font-size: 12px;
  }
}

@media screen and (max-width: 499px) {
  .body-mobile {
    border: none;
  }
}