﻿@charset "utf-8";

/*--  m:i-6 --*/

/*Font Awesome
------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*CSS（サイト全体を一括管理する為の設定）
------------------------------------------------------------------------*/
:root {

	/*余白の一括管理用。主に左右の余白に使っています。2rem＝２文字分。*/
	--pad-space: 2rem;
	
}


/*全体の設定
------------------------------------------------------------------------*/
body {
	color: #383838;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 16px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";   /*文字サイズ/行間、フォントファミリー*/

}

h1,h2,h3,h4,h5,p,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}

h1 {
        font: bold 20px 'Aldrich', sans-serif;
	color: #666;
	padding: 10px 10px 30px;
	text-align: left;
	font-weight: bold;
}

h2 {
	font-weight: bold;
	color: #333;
	line-height: 1.5;
	text-align: center;
    	padding: 10px 0 30px;
	font-size: 6vw;
	@media screen and (min-width: 768px) {
	    font-size: 36px;
	  }
}


h3 {
	font-weight: bold;
	line-height: 1.5;
	color: #666;
    	padding: 20px 0 20px 20px;
	font-size: 5vw;
	@media screen and (min-width: 768px) {
	    font-size: 24px;
	  }
}

img {
	border: none;
	max-width: 100%;
	height: auto;
}


section {
	padding: 20px 0 10px; 
	margin: 0 0 20px; 
	clear: both;
}


/*コンテナー（HPを囲むブロック）
------------------------------------------------------------------------*/
#container {
	overflow-x: hidden;
	position: relative;
	animation: opa1 1s 0.4s both;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	max-width: 1800px;	/*サイトの最大幅。*/
	margin: 0 auto;
}

/*header
------------------------------------------------------------------------*/
/*ヘッダーブロック*/

header {
	padding: 1rem var(--pad-space);		/*ヘッダー内の余白。上下に１文字分、左右にcss冒頭のcontent-spaceのサイズを読み込みます。*/
	background: #fbfbfb;	/*背景色初期値#fbfbfb*/
	color: #666;		/*文字色*/
	text-align: center;
}

header a {
	color: inherit;
	text-decoration: none;
}

	/*画面幅768px以上の追加指定*/
	@media screen and (min-width:768px) {

	header {
		display: flex;	/*中のコンテンツを横並びにする*/
		justify-content: space-between;
		align-items: center;
		gap: 2rem;	/*中のコンテンツ同士に空けるマージン的な余白。*/
	}

}/*追加指定ここまで*/


/*ロゴ（※画像の場合）*/
#logo img {
	display: block;
	margin: 0 auto;
	width: 220px;	/*ロゴの幅*/
}

/*ロゴ（※テキストの場合）*/
#logo a {
	text-decoration: none;
}

#logo {
	color: #666;		/*文字色 headerの文字色と変えてもOK*/
	width: auto;
	font-size: 1.4rem;	/*文字サイズ。140%*/
	@media screen and (max-width:480px) {
		text-align: center;
	}
}

/*ヘッダーの右側ブロック（電話番号など）*/
#header-box {
	font-size: 0.8rem;	/*文字サイズ80%*/
}


/* ボタン部分の実装------------------------------------------*/
.menu-btn {
    position: fixed;
    top: 1px;
    right: 6px;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #eeeeee;　　/* ボタンの背景色 */
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #888888;    /* 三本線の色 */
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}


/* ボタンをタップで「×」マークにする。チェックボタンを隠す---------*/
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
/*　【追記】メニュー押されたらボタンの色を変える*/
#menu-btn-check:checked ~ .menu-btn {
    background-color: #eeeeee;
}
#menu-btn-check {
    display: none;
}



/*　3本線メニューの装飾　
-----------------------------------------------*/

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;	/*メニュー画面の開始位置*/
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color:rgba(255,255,255,95%);
    transition: all 0.5s;/*アニメーション設定*/
}

.menu-content ul {
    padding: 40px 10px 0;     /*ハンバーガーメニューの余白*/
}
.menu-content ul li {
    border-bottom: solid 1px #383838;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 20px;	/*メニューの文字サイズ*/
    box-sizing: border-box;
    color:#383838;
    text-decoration: none;
    padding: 30px 15px 8px 0;
    position: relative;
}
/*.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}*/

/*　タップでメニュー表示　*/
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}


/* スマホとPCで表示を変える
----------------------------------------------------------------*/
/* スマホのときだけ表示 */
/*PCで無効*/
.pc_hid{
    display: none;
}

/*スマートフォンで有効*/
@media screen and (max-width:480px) {
    .pc_hid {
        display: block;
    }
}

/* PCのときだけ表示 */
/*PCで有効*/
.smp_hid {
    display: block;
}

/*スマートフォンで無効*/
@media screen and (max-width:480px) {
    .smp_hid {
        display: none;
    }
}


/*リンク（全般）設定
------------------------------------------------------------------------*/
a {
	color: #006A9D;	/*リンクテキストの色*/
}

a:hover {
	color:rgba(255, 255, 255, 0.5);	  /*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。*/
}




/*コンテンツ（main,footerを囲むブロック）
-----------------------------------------------------------------------*/
#contents {
	clear: left;
	padding-top: 0px;

}

/*トップ画像の配置
-----------------------------------------------------------------------*/
.top_image {
	text-align: center;
	padding: 0px; 
	margin: 0px; 
	background-color: #222;		/*トップ画像の背景色*/
}

.top_image img {
    display: block;
    margin: 0 auto;
}


/*メインコンテンツ
-----------------------------------------------------------------------*/
#main {
	width: 1000px;	/* メインコンテンツ幅 */
	margin-right: auto;	/* コンテンツを中央に配置 */
	margin-left: auto;
}

#main800 {
	max-width: 800px;
	padding: 0.5em 15px 0em;
	margin-right: auto;	/* コンテンツを中央に配置 */
	margin-left: auto;
}

#main600 {
	max-width: 600px;
	padding: 0.5em 30px 0.5em;
	margin-right: auto;	/* コンテンツを中央に配置*/
	margin-left: auto;
}

/*mainコンテンツの段落タグ設定*/
#main p,
#main800 p,
#main600 p {
	padding: 0.5em 15px 1em;
}

/*ブロックを横に並べる
-----------------------------------------------------------------------*/

.container_float {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.block1 {
    flex: 3 1 calc(60% - 10px); /* PCでは3:2の比率 */
    box-sizing: border-box;
    border: 0px solid #ddd;
    padding: 5px;
}

.block2 {
    flex: 2 1 calc(40% - 10px); /* PCでは3:2の比率 */
    box-sizing: border-box;
    border: 0px solid #ddd;
    padding: 30px 5px 5px;
}



/* スマホ（768px以下）では縦に並べる */
@media screen and (max-width: 768px) {
    .block1, .block2 {
        flex: 1 1 100%; /* 幅100%で縦に並べる */
    }
}


/*こだわり
-----------------------------------------------------------------------*/
.concept_wrap {
	background-color: rgba(255,255,255,1.0);
}


/*価格表
-----------------------------------------------------------------------*/
.price_table {
        width: 100%;
	background-color: #fbfbfb;		/*sectionの背景色*/
}

table,td {
	border: 0px solid #ffffff;
	border-collapse: collapse;
	background-color: rgba(224,224,160,0.1)
}
table {
	width: 100%;
	color:#333;		/*表文字色*/
}
td {
	padding: 20px 20px;
	font-size: 18px; 

}
.setumei {
	font-size: 12px; 
	text-align: left;
}

.left-column {
        width: 65%;
	text-align: left;
}

.right-column {
        width: 35%;
	text-align: right;
}

.price_table h2 {
	color: #333;		/*料金表文字色*/
}

.price_table h3 {
	color: #666; 		/*メニュー文字色*/
	text-align: left;
}


/*マップ
-----------------------------------------------------------------------*/
.map-container {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2; /* ← ここで比率を指定 */
}

.map-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}


/*salon infomation
-----------------------------------------------------------------------*/
.info-wrap dl {
	display: flex;
	gap: 5px; /* 項目と内容の間にスペース */
	align-items: top; /* 縦方向を揃える（お好みで） */
}

.info-wrap dt {
	font-weight: bold;
	color:#777;
	min-width: 80px; /* 「住所」の幅を固定すると揃いやすい */
	margin: 0 0 0 5px;
}

.info-wrap dd {
	margin: 0;
}

/* お問合せボタン */
.mail_botan {
	display:inline-block; 
	padding:0px 10px; 
	background:#0ac28b; 
	color:#fff; text-decoration:none; 
	border-radius:5px;
}


/*カレンダー
-----------------------------------------------------------------------*/
.calendar-wrapper {
	position: relative;
	width: 100%;
	padding-top: 75%;  /*高さ比率をここで調整（例えば100%で正方形）*/
}

.calendar-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



/*背景ミントブルー
-----------------------------------------------------------------------*/
.back_blue {
	background-color: #00abc6;
}

.back_blue h2 {
	color: #ffffff;
	clear: both
}

.back_blue h3 {
	color: #ffffff;
	clear: both;
	text-align: left;
}



/*お客様の声
-----------------------------------------------------------------------*/
.voicebox {
	padding: 10px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 2em;
	background-color: #ffffff ;
	display: inline-block; 
	box-shadow: 5px 5px 5px 2px rgba(0, 0, 0, 0.4); /*横方向　下方向　ぼかし*/
	
}


/* フッター設定（コピーライトの部分）
-----------------------------------------------------------------*/
footer {
	clear: both;
	color: #fff;
	text-align: center;
	padding-top: 30px;
	background-color: #888888;
}

footer a {
	text-decoration: none;
	color: #fff;
}




/*Youtube動画の設定
-----------------------------------------------------------------*/
.video {
	position:relative;
	width:100%;
	padding-top:56.25%;
}

.video iframe {
	position:absolute;
	top:0;
	right:0;
	width:100%;
	height:100%;
}


/* マーカーや文字色
-----------------------------------------------------------------------*/

.marker-pink {
	background: linear-gradient(transparent 80%, #ff99cc 0%);
}

.marker-yellow {
	background: linear-gradient(transparent 75%, #ffdd00 0%);
}

.color-red {
	color: #FF5151;
}


/*その他
-----------------------------------------------------------------------*/
figcaption {
        font-size: 12px;
	color: #606060;
}

.center {
	text-align: center;
}

.nobr {
   display: inline-block; /* 改行調整 */
}

.large {font-size: 2em; letter-spacing: 0.1em;}


/*リストの飾り
-----------------------------------------------------------------------*/
.custom-list {
  list-style: none; /* デフォルトのリストマーカーを無効化 */
  padding: 0;
}

.custom-list li {
  position: relative;
  padding-left: 35px;  /* 画像の幅 + 余白を確保 */
  font-weight: bold;
  line-height: 2;
  color: #ffffff;
  font-size: 24px;
  text-align: left;

}
.custom-list li::before {
  content: ""; /* 空のコンテンツ（画像を背景として使用） */
  display: inline-block;
  width: 25px;  /* 画像の幅 */
  height: 25px; /* 画像の高さ */
  background-image: url('listimage.png'); /* 画像のパスを指定 */
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0.4em;
}




