@charset "UTF-8";
/*
Theme Name: MY THEME 
Author: Aini-ku
Description: Aini-kuオリジナルテーマ
Version: 1.10(2023.2 最新版)
*/


/* ===========================================
 メモ（memo）
 * ======================================== */
/*background-image: url("images/arrow_icon.png");*/

/* ===========================================
 共通（common）
 * ======================================== */
html{
	scroll-behavior:smooth;
}
body{
	margin:0;
	font-family:
		"Yu Mincho",
		"YuMincho",
		"Hiragino Mincho ProN",
		serif;
	font-weight:500;
	letter-spacing:.08em;
}
img {
    max-width: 100%;
    height: auto;
}


/* 枠組み（container）
------------------------------------------ */
.wrapper{
	width:100%;
	max-width:100vw;
}
.container{
	width:70%;
	margin:auto;
	padding:30px 10px;
}

@media screen and (max-width:520px){
	.container{
		width:95%;
		margin:auto;
	}

}
/* レスポンシブ（responsive）
------------------------------------------ */
.pc{
	display:block !important;
}
.sp{
	display:none !important;
}
.pc_tb{
	display:block !important;
}
.tb{
	display:none;
}
@media screen and (max-width:1024px){
	.pc_tb{ 
		display:none !important;
	}
	
	.tb{
		display:block !important;
	}
}
@media screen and (max-width:520px){
	.sp{
		display:block !important;
	}
	.pc{
		display:none !important;
	}
}


/* FLEX（flex）
------------------------------------------ */
.flex{
	display:flex;
	align-items:center;
	flex-wrap: wrap;
}
.flex-nowrap{
	flex-wrap:nowrap;
}
.flex-between{
	justify-content:space-between;
}
.flex-center,.flex-center_between{
	justify-content:center;
}
.flex-start,.flex-start_between{
	justify-content:start;
}
.flex-align-start{
	align-items: start;
}
.flex-item10{
	width:10%;
}
.flex-item20,.flex-item20_45,.flex-item20_30,.flex-item20_30_45{
	width:20%;
}
.flex-item25{
	width:25%;
}
.flex-item30{
	width:33%;
}
.flex-item45{
	width:45%;
}
.flex-item60{
	width:60%;
}
.flex-item70{
	width:70%;
}

@media screen and (max-width:1024px){
	.flex-center_between{
		justify-content:space-between;
	}
	.flex-start_between{
		justify-content:space-between;
	}
	.flex-item20_30_45{
		width:32%;
	}
}
@media screen and (max-width:599px){
	.flex-item10,.flex-item20,.flex-item25,.flex-item30,.flex-item45,.flex-item60,.flex-item70{
		width: 100%;
	}
	.flex-item20_45{
		width:48%;
	}
	.flex-item20_30_45{
		width:48%;
	}
	.reverse{
		flex-direction: column-reverse;
	}
}

/* POSITION（position）
------------------------------------------ */
.center{
	text-align: center;
}
.left{
	text-align: left;
}
.right{
	text-align: right;
}

/* WIDTH（width）
------------------------------------------ */
.w-80{
	width: 80%;
}
.w-90{
	width: 90%;
}

/* ===========================================
 アニメーション（anime）
 * ======================================== */
.fadeDown{
	animation-name:fadeDownAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

.fadeUP{
	animation-name:fadeUPAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeUPAnime{
  from {
	  opacity: 0;
	  transform: translateY(20px);
  }

  to {
	  opacity: 1;
	  transform: translateY(0);
  }
}

/*左から右にフェードイン*/
.fadeIn{
	animation-name:fadeInAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeInAnime {
  0% {
     opacity: 0;
     transform: translateX(-20px);
  }
  100% {
     opacity: 1;
     transform: translateX(0);
  }
}

/*右から左にフェードイン*/
.fadeIn2{
	animation-name:fadeInAnime2;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeInAnime2 {
  0% {
     opacity: 0;
     transform: translateX(20px);
  }
  100% {
     opacity: 1;
     transform: translateX(0);
  }
}

/*拡大フェードイン*/
.fadeScale{
	animation-name:fadeScaleAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeScaleAnime {
  0% {
     opacity: 0;
     transform: scale(0.9);
  }
  100% {
     opacity: 1;
     transform:scale(1);
  }
}

/*マーカー（蛍光ペン）アニメーション*/
.point{
  background: linear-gradient(transparent 70%, #FFBC4B 70%);
  display: inline;
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;
  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;
  /* マーカーが引かれる速度を指定 */
  transition:background-size 1.5s;
}

/* マーカーが引かれる際に付与するクラス */
.point.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}

/* ===========================================
 ヘッダー（header）
 * ======================================== */
.header{
	width:100%;
	height:11vh;
	max-height:180px;
	background:transparent;
	padding:0 2%;
}
.header .title{
	text-align:left;
	font-size:12px;
}
.header .title .logo{
	width:auto;
	height:6vh;
}
.header .title .logo:hover{
	opacity:0.8;
}
.header a{
	text-decoration:none;
	color:black;
}
.header .nav_area{
	display:flex;
	align-items:center;
	gap:30px;
}
.header .nav_menu{
	display:flex;
	gap:25px;
	align-items:center;
}
.header .nav_menu > a,
.header .nav_menu > .nav-dropdown > a{
	position:relative;
	display:flex;
	align-items:center;
	height:40px;
	text-decoration:none;
	color:#333;
	transition:.3s;
}

/* 上層メニューの下点 */
.header .nav_menu > a::after,
.header .nav_menu > .nav-dropdown > a::after{
	content:"";
	position:absolute;
	left:50%;
	bottom:0;
	width:6px;
	height:6px;
	background:#c98f98;
	border-radius:50%;
	transform:translateX(-50%) scale(0);
	opacity:0;
	transition:.3s;
}
.header .nav_menu > a:hover::after,
.header .nav_menu > .nav-dropdown:hover > a::after{
	transform:translateX(-50%) scale(1);
	opacity:1;
}
/*aタグ無効化（コレクション　menuで使用）*/
.header .disabled-link{
	pointer-events:none;
	cursor:default;
}

/* ドロップダウン */
.nav-dropdown{
	position:relative;
	display:flex;
	align-items:center;
	height:40px;
}
.nav-dropdown-menu{
	position:absolute;
	top:100%;
	left:50%;
	transform:translateX(-50%) translateY(10px);
	min-width:180px;
	background:#fff;
	border:1px solid #eee;
	padding:15px 0;
	opacity:0;
	visibility:hidden;
	transition:.3s ease;
	box-shadow:0 10px 30px rgba(0,0,0,.08);
	z-index:100;
}

/* 下層メニュー */
.nav-dropdown-menu a{
	display:block;
	padding:10px 20px;
	white-space:nowrap;
	font-size:14px;
	color:#333;
}
.nav-dropdown-menu a::after{
	display:none !important;
	content:none !important;
}
.nav-dropdown-menu a:hover{
	background:#faf7f7;
}
.nav-dropdown:hover .nav-dropdown-menu{
	opacity:1;
	visibility:visible;
	transform:translateX(-50%) translateY(0);
}
.header .cta img{
	width:200px;
	display:block;
	height:auto;
}
.header .cta{
	display:inline-block;
	transition:.3s ease;
}

.header .cta:hover{
	transform:translateY(-2px);
	opacity:.92;
}

.header .cta:active{
	transform:translateY(0);
}



/* 固定表示時の状態 */
.header.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transform: translateY(0);
	opacity: 1;
}

/* アニメーションで上からスッと現れる */
.header.slide-in {
	transform: translateY(-100%);
	opacity: 0;
	animation: slideDown 0.7s ease forwards;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}



/*スマホ*/
.tb .header{
	display: flex;
	align-items: center; /* 上下中央寄せ */
	height:9vh;
}
.tb .header .title,.tb .header .title img{
	width:auto;
	height:6vh;
	margin:auto;
}

@media screen and (max-width:1090px){
	.header{
		height:7vh;
	}
	.header .nav_menu a{
		font-size:12px;
	}
	.header .cta img{
		width:150px;
	}
}

/*ハンバーガーメニュー
------------------------------------------ */
.hamburger-menu .logo{
	width:90px;
	position: fixed;
	top: 20px;
	z-index:101;
	padding-left:20px;
}
.hamburger-menu .btn{
	display:initial;
	padding:0;
	border:none;
}

.menu-btn {
    position: fixed;
    top: 20px;
    right: 25px;
    display: flex;
    height: 30px;
    width: 45px;
    justify-content: center;
    align-items: center;
    z-index: 101;
	border-radius:50%;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 30px;
    background-color:black;
    position: absolute;
}
.menu-btn span:before {
    bottom: 10px;
}
.menu-btn span:after {
    top: 10px;
}

#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);
	background-color:#FFFFFF;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
	background-color:#FFFFFF;
}
#menu-btn-check:checked ~ header .logo img{
	content:url("https://reakira.jp/wp-content/themes/mytheme-new/images/logo-white.png");
}

#menu-btn-check {
    display: none;
}

.menu-content ul {
    padding: 80px 50px 10px 10%;
	text-align:left;
}
.menu-content ul li {
    list-style: none;
}
.menu-content ul li:not(.menu_category) {
    padding-left:30px;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li {
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 20px 0;
    position: relative;
}
.menu-content ul .menu_category{
	color:#FFFFFF;
	text-decoration:none;
}
.menu-content ul .menu_title h3::after{
	content: '';/*何も入れない*/
	display: inline-block;/*忘れずに！*/
	width: 50px;/*画像の幅*/
	height: 40px;/*画像の高さ*/
	background-image: url("images/arrow_icon.png");
	background-size: contain;
	background-repeat:no-repeat;
	vertical-align: middle;
	margin-left:15px;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
	z-index: 100;
    background-color: #ad4b5a;
    transition: all 0.5s;/*アニメーション設定*/
}
.menu-content .button{
	display:inline-block;
	width:70%;
	background:#b67a76;
	border-radius:4px;
	color:#fff;
	padding:10px;
}
.menu-content .button span {
    font-size: 13px;
    line-height: 1;
	padding-left:15px;
}

#menu-btn-check:checked ~ .menu-content {
    left: 0%;/*メニューを画面内へ*/
}

@media screen and (max-width:520px){
	.menu-btn {
		top: 20px;
		right: 20px;
	}
	/*スマホ時は全面表示する*/
	.hamburger_logo{
		width:100%;
	}
	.menu-content {
		width:100%;
	}
	#menu-btn-check:checked ~ .menu-content {
		left: 0;/*メニューを画面内へ*/
	}
}
/*ハンバーガーメニューここまで*/
/* ===========================================
 ホームページ（front-page.php）
 * ======================================== */
.front_image_container{
	position:relative;
	overflow:hidden;
}
.front_image_container .front_message{
	position:absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width:35%;
}
.front_image_container .front_message h2{
	font-size:32px !important;
	line-height:1.5em !important;
	letter-spacing:0.3em !important;
	margin-bottom:50px;
}
.front_image_container .front_message p{
	font-size:14px !important;
	line-height:2.0em !important;
	letter-spacing:0.5em !important;
}
.front_image_container .front_image img{
	width:100%;
	display:block;
	animation:fvZoom 12s ease-out forwards;
}
@keyframes fvZoom{
	from{
		transform:scale(1);
	}
	to{
		transform:scale(1.08);
	}
}

.front_image_container .front_message .fv_title span{
	display:block;
	opacity:0;
	transform:translateY(12px);
	animation:fvTextFade 1.4s ease forwards;
}

.front_image_container .front_message .fv_title span:nth-child(1){
	animation-delay:.4s;
}

.front_image_container .front_message .fv_title span:nth-child(2){
	animation-delay:1.1s;
}

@keyframes fvTextFade{
	to{
		opacity:1;
		transform:translateY(0);
	}
}


.front-box{
	width:100%;
	align-items:stretch;
}

.front-box__image{
	width:50%;
	position:sticky;
	top:0;
	height:100vh;
}

.front-box__image img{
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center top;
	display:block;
}

.front-box__content{
	width:50%;
	color:black;
}
.front-box__content.red{
	background:#ad4b5a;
	color:#fff;
}
.front-box__content.pink{
	background:#fff7f6;
}

.front-box__inner{
	min-height:100vh;
	padding:80px 10%;
	box-sizing:border-box;
}

.front-box__inner h2{
	margin:0 0 60px;
	color:#5d3c39;
	font-size:32px;
	line-height:1.3;
	letter-spacing:.08em;
}
.front-box__inner h2.yellow{
	color:#f6dc6a;	
}
.front-box__inner h2 span{
	font-size:16px;
}

.front-box__inner p{
	font-size:16px;
	line-height:2.5;
	letter-spacing:.08em;
	margin:0 0 22px;
	color:#5d3c39;
}
.front-box__inner p.white{
	color:#fff;
}

.front-box__btn{
	display:inline-flex;
	align-items:center;
	gap:18px;
	margin-top:40px;
	padding:16px 42px;
	background:#b67a76;
	color:#fff;
	text-decoration:none;
	border-radius:4px;
	letter-spacing:.08em;
}
.front-box__btn:hover{
	text-decoration:none;
	color:#fff;
	opacity:0.8;
}

.front-box__btn span{
	font-size:28px;
	line-height:1;
}

/*ギフト*/
.front-box.gift-section{
	position:relative;
	min-height:850px;
	background-image:url("images/front/gift_bg.jpg");
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center bottom;
	display:flex;
	justify-content:center;
	align-items:flex-start;
	padding:90px 24px 0;
	box-sizing:border-box;
	overflow:hidden;
}

.front-box .gift-section__text{
	position:relative;
	z-index:2;
	max-width:1000px;
	text-align:center;
	font-family:"Yu Mincho","YuMincho","Hiragino Mincho ProN",serif;
	color:#111;
}

.front-box .gift-section__sub{
	font-size:20px;
	letter-spacing:.12em;
	margin:0 0 20px;
}

.front-box .gift-section__text h2{
	font-size:32px;
	line-height:1.6;
	letter-spacing:.08em;
	margin:0 0 55px;
}

.front-box .gift-section__lead{
	max-width:900px;
	margin:0 auto;
	font-size:16px;
	line-height:2.2;
	letter-spacing:.08em;
	text-align:left;
}


/*オーナープロフィール ※Re:Akiraについて　でも使用*/
.profile-section{
	padding:90px 24px;
	background:#fff7f6;
}
.profile-section .flex{
	gap:40px;
}
.profile-section h2{
	color:#5d3c39 !important;
	margin-bottom:100px;
}
.profile-section .profile_image{
	width:100%;
	max-width:400px;
}
.profile-section .name{
	font-size:18px;
	margin-top:10px;
	margin-bottom:20px;
	color:#5d3c39 !important;
}
.profile-section p{
	line-height:2.2 !important;
	color:#5d3c39 !important;
}

/*新着情報*/
.front-box.news-area{
	padding:100px 5%;
	background:#f7f7f7;
	gap:80px;
}

.front-box .news-title{
	width:30%;
	font-size:22px;
}

.front-box .news-title h2{
	font-size:28px;
	line-height:1.6;
	color:#5d3c39 !important;
	font-family:
	"Yu Mincho",
	"YuMincho",
	serif;
	font-weight:600;
	letter-spacing:.08em;
	margin:0;
}

.front-box .news-list{
	width:60%;
}

.front-box .news-item{
	display:grid;
	grid-template-columns:140px 1fr;
	column-gap:30px;

	padding:10px 0;

	text-decoration:none;
	color:#5d3c39 !important;

	font-family:
	"Yu Mincho",
	"YuMincho",
	serif;
}
.front-box .news-item div{
	display:inline-block;
}
.front-box .news-date{
	font-size:15px;
	font-weight:600;
	line-height:1.3;
}

.front-box .news-text{
	font-size:15px;
	line-height:1.3;
}
.front-box .news-item:hover{
	opacity:.7;
}

/*コラム・特集記事*/
.front-box.column-area{
	padding:70px 5% 100px 5%;
	background:#f7f7f7;
}
.front-box.column-area .new-posts{
	padding:60px 0;
}

.front-box.column-area .new-posts-inner{
	max-width:1760px;
	margin:0 auto;
	padding:0 5%;
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap:10%;
}

.front-box.column-area .new-post-card{
	display:block;
	text-decoration:none;
	color:#222;
}

.front-box.column-area .new-post-thumb{
	width:100%;
	aspect-ratio:16 / 10;
	overflow:hidden;
	background:#eee;
}

.front-box.column-area .new-post-thumb img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
	transition:.4s ease;
}

.front-box.column-area .new-post-title{
	margin-top:18px;
	font-size:18px;
	line-height:1.7;
	font-weight:400;
	letter-spacing:.08em;

	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
}

.front-box.column-area .new-post-card:hover .front-box.column-area .new-post-thumb img{
	transform:scale(1.03);
	opacity:.92;
}


.front-box.column-area .column_button_box{
	margin-top:50px;
}
.front-box.column-area .column_button{
	border:solid 2px #5d3c39;
	padding:15px 50px;
	color:#5d3c39;
}

@media screen and (max-width:1200px){
	.front_image_container .front_message {
		width:43%;
	}
	.front_image_container .front_message h2 {
		font-size:30px !important;
	}
	.front-box.gift-section{
		min-height:720px;
		background-size:cover;
		background-position:center bottom;
	}

	.front-box .gift-section__text h2{
		font-size:28px;
	}
}
@media screen and (max-width:1024px){
	.front-box{
		display:block;
	}

	.front-box__image,
	.front-box__content{
		width:100%;
	}
	.front-box__content{
		padding:0 2%;
	}
	.front-box__image{
		position:relative;
		height:auto;
	}

	.front-box__image img{
		height:auto;
	}

	.front-box__inner{
		min-height:auto;
		padding:50px 24px;
	}

	.front-box__inner h2{
		font-size:22px;
		margin-bottom:35px;
	}

	.front-box__inner p{
		font-size:14px;
		line-height:2;
	}

	.front-box__btn{
		width:100%;
		justify-content:center;
		box-sizing:border-box;
	}
	
	.front-box .gift-section__text{
		padding:0 3%;
	}
}

@media screen and (max-width:959px){
	.front_image_container .front_message h2 {
		font-size:25px !important;
		margin-bottom:20px;
	}
}
/* SP */
@media screen and (max-width:768px){
	
	.front-box.gift-section{
		min-height:680px;
		padding:60px 20px 0;
		background-size:auto 100%;
		background-position:center bottom;
	}

	.front-box .gift-section__sub{
		font-size:15px;
	}

	.front-box .gift-section__text h2{
		font-size:24px;
		line-height:1.8;
		margin-bottom:30px;
	}

	.front-box .gift-section__lead{
		font-size:14px;
		line-height:2;
	}
	
	

	.front-box .news-area{
		padding:70px 24px;
		gap:40px;
	}

	.front-box .news-title,
	.front-box .news-list{
		width:100%;
	}

	.front-box .news-title h2{
		font-size:28px;
	}

	.front-box .news-item{
		grid-template-columns:1fr;
		row-gap:4px;
		padding:14px 0;
	}

	.front-box .news-date{
		font-size:16px;
	}

	.front-box .news-text{
		font-size:15px;
		line-height:1.8;
	}
	
	.front-box.column-area .new-posts-inner{
		grid-template-columns:1fr;
		gap:40px;
	}

	.front-box.column-area .new-post-title{
		font-size:16px;
	}
}


@media screen and (max-width:520px){
	.front_image_container .front_message{
		width:100%;
		top:35%;
		left:60%;
		font-size:24px !important;
	}
	
	.front-box .gift-section__text h2{
		font-size: 19px;
	}
	.front-box .gift-section__lead {
		font-size:13px;
	}
	.profile-section{
		padding:50px 24px;
	}
	.profile-section h2 {
		font-size:24px;
		margin-bottom: 50px;
	}
	.front-box.news-area{
		padding:50px 5% 10px 5%;
	}
	.front-box .news-title h2{
		font-size:22px;
		margin-bottom:20px;
	}
}



/* 固定CTA（contact-shop-section）
------------------------------------------ */
.contact-shop-section{
	background:#ad4b5a;
	color:#fff;
	padding:90px 5% 100px;
	font-family:
	"Yu Mincho",
	"YuMincho",
	"Hiragino Mincho ProN",
	serif;
	letter-spacing:.08em;
}

.contact-area{
	text-align:center;
	margin-bottom:110px;
}

.contact-area h2,
.shop-area h2{
	font-size:34px;
	font-weight:600;
	letter-spacing:.14em;
	margin:0 0 60px;
	text-align:center;
	color:#fff !important;
}

.contact-buttons{
	display:flex;
	justify-content:center;
	gap:34px;
	margin-bottom:30px;
}
.contact-btn{
	width:400px;
	height:70px;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:28px;
	text-decoration:none;
	font-size:20px;
	font-weight:600;
	box-sizing:border-box;
}
.contact-btn:hover{
	text-decoration:none;
	color:#fff !important;
}
.contact-btn-white{
	background:#fff;
	color:#ad4b5a;
}
.contact-btn-white:hover{
	text-decoration:none;
	color:#ad4b5a !important;
}

.contact-btn span{
	display:inline-block;
	margin-left:8px;
	transition:transform .3s ease;
}

.contact-btn:hover span{
	transform:translateX(6px);
}

.contact-btn-outline{
	border:2px solid #fff;
	color:#fff;
}

.contact-btn span{
	font-size:22px;
}

.contact-note{
	font-size:15px;
	line-height:1.7;
	margin:0;
}

.shop-box{
	gap:70px;
	align-items:flex-start;
}

.shop-map{
	width:380px;
	height:230px;
	background:linear-gradient(#ddd,#eee);
}

.shop-info{
	width:520px;
	font-size:16px;
	line-height:2.1;
	scroll-margin-top:15vh;
}

.shop-lead{
	font-size:18px;
	line-height:2.1;
	margin:0 0 35px;
}

.shop-info dl{
	margin:0;
}

.shop-info dl > div{
	display:grid;
	grid-template-columns:90px 1fr;
	column-gap:25px;
	margin-bottom:10px;
}

.shop-info dt{
	font-weight:400;
}

.shop-info dd{
	margin:0;
}

/* タブレット */
@media screen and (max-width:1024px){
	.shop-box{
		display:block;
	}

	.shop-map,
	.shop-info{
		width:100%;
	}

	.shop-map{
		height:420px;
		margin-bottom:35px;
	}

	.shop-info{
		font-size:14px;
		line-height:2;
		padding:0 2%;
	}

	.shop-lead{
		font-size:15px;
	}

	.shop-info dl{
		display:grid;
		grid-template-columns:1fr 1fr;
		gap:20px;
	}
	.shop-info dl > div{
		display:block;
		grid-template-columns:1fr;
		row-gap:2px;
		margin-bottom:0px;
	}
	.shop-info dl > div:last-child{
		grid-column:1 / -1;
	}
	
	.shop-info dt{
		margin-bottom:5px;
		font-weight:600;
	}
}
@media screen and (max-width:768px){
	.shop-map{
		height:250px;
	}
	.contact-shop-section{
		padding:70px 24px 80px;
	}

	.contact-area{
		margin-bottom:80px;
	}

	.contact-area h2,
	.shop-area h2{
		font-size:26px;
		margin-bottom:40px;
	}

	.contact-buttons{
		flex-direction:column;
		gap:18px;
	}

	.contact-btn{
		width:100%;
		height:62px;
		font-size:16px;
	}
}



/* ===========================================
 下層ページ（page-XXXX.php）
 * ======================================== */
.page_image_container{
	position:relative;
}
.page_image_container .page_title{
	position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width:35%;
}
.front_image_container .page_title h2{
	font-size:32px !important;
	line-height:1.5em !important;
	letter-spacing:0.3em !important;
	margin-bottom:50px;
}
.front_image_container .page_title p{
	font-size:14px !important;
	line-height:2.0em !important;
	letter-spacing:0.5em !important;
}
.page_image_container .page_image img{
	width:100%;
}
.page section{
	padding:90px 5%;
}
.page section.pink{
	background:#fff7f6;
}
.page section.grey{
	background:#F7F7F7;
}
.page section h2{
	color:#5d3c39;
	margin-bottom:100px;
	line-height:1.5em;
}
.page section h3{
	margin-bottom:50px;
}
.page section .text{
	display:inline-block;
	max-width:800px;
	text-align:left;
	color:#5d3c39;
}
.page section .image{
	margin:50px 0 0 0;
}

.page section .profile_image{
	width:100%;
	max-width:400px;
}
.page section .name{
	font-size:18px;
	margin-top:10px;
	margin-bottom:20px;
}
.page section p{
	line-height:2.2 !important;
}


.page section .border_button_box{
	margin-top:80px;
}
.page section .border_button{
	width:330px;
	max-width:100%;
	display:inline-block;
	border:solid 2px #5d3c39;
	padding:20px 50px;
	color:#5d3c39;
}



/*Re:Akiraとは（about）*/
.about .concept_image, .product .strengths_image{
	width:80%;
}
.about .kodawari .flex div{
	margin-bottom:70px;
}
.about .kodawari .flex b{
	color:#5d3c39;
}
.about .collection .link a{
	color:#5d3c39 !important;
	text-decoration:underline;
}
.about .collection{
	padding:0 5%;
} 

/*各商品ページ（天然石・耳つぼジュエリー・ビーズ刺繍）*/
.product .kodawari_title span, .product .original_title span{
	font-size:0.6em !important;
}
.product .strengths_box{
	margin:100px auto;
}
.product .original_box{
	padding:90px 0 0 0;
}
.product .original_box span{
	font-size:0.8em !important;
}
.product .cta .border_button_box{
	margin-top:0;
}

/*----商品表示------*/
.top-product-list{
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:80px;
	max-width:1000px;
	margin:0 auto;
}
.top-product-card{
	display:block;
	text-decoration:none;
	color:#6d4f4f;
}
.top-product-card:hover{
	color:#6d4f4f;
	text-decoration:none;
}
.top-product-image{
	overflow:hidden;
	background:#f8f8f8;
}
.top-product-image img{
	width:100%;
	aspect-ratio:4 / 3;
	object-fit:cover;
	display:block;
}
.top-product-title{
	margin:25px 0 20px;
	text-align:center;
	font-size:2.0rem;
	font-weight:400;
	line-height:1.5;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
	min-height:3em;
	margin-bottom:0 !important;
}
.top-product-price{
	text-align:center;
	font-size:1.7rem;
	color:#6d4f4f;
}

@media screen and (max-width:1024px){
	.page section{
		padding:60px 5%;
	}
	.page section h2{
		margin-bottom:80px;
	}
}
@media screen and (max-width:768px){
	.page_image_container .page_title{
		width:100%;
	}
	.top-product-list{
		grid-template-columns:1fr;
		gap:50px;
	}
	.top-product-title{
		font-size:1.8rem;
	}
	.top-product-price{
		font-size:2rem;
	}
	.page section h2{
		font-size:21px !important;
	}
	.about .concept_image, .product .strengths_image{
		width:100%;
	}
	.about .kodawari .flex div{
		margin-bottom:20px;
	}
	.about .kodawari .flex .naiyou{
		margin-bottom:50px;
	}
	.about .collection .flex div{
		margin-bottom:50px;
	}
}
@media screen and (max-width:599px){
	.page_image_container .page_title h2{
		font-size:26px;
	}
	.product .strengths_box{
		margin:0;
	}
	.product .strengths_image{
		margin-bottom:50px;
	}
	.product .strengths_box h2{
		margin-bottom:40px;
	}
}

/*会社概要*/
.company .table_box{
	background:#F7F7F7;
}
.company .table_box{
	background:#fff;
	padding:5%;
	border-radius:20px;
}
.company .table_box table{
	width:80%;
	margin:auto;
}
.company .table_box table th, .company .table_box table td{
	border-left:none;
	padding:20px 0 20px 15px;
	border-bottom:#F6B5A1 solid 2px;
}
.company .table_box table th{
	white-space:nowrap;
	padding-right:40px;
	font-weight:bold;
}
.company .table_box table td{
	font-weight:normal;
}

/* SP */
@media screen and (max-width:599px){
	.company .table_box table,
	.company .table_box table tbody,
	.company .table_box table tr,
	.company .table_box table th,
	.company .table_box table td {
		display: block;
		width: 100%;
	}
	.company .table_box table th{
		background:rgba(246, 181, 161,0.1);
	}
	.company .table_box table th, .company .table_box table td{
		width:100%;
	}
}


/*ご購入ガイド*/
.guide h2{
	border-left:solid 5px #ad4b5a;
	padding-left:20px;
	margin-bottom:50px !important;
}
.guide h2:not(.guide h2.fast){
	margin-top:90px;
}
.guide .text{
	padding-left:50px;
}
.guide section{
	max-width:1000px;
	margin:auto;
}


/* SP */
@media screen and (max-width:599px){
	.guide .text{
		padding-left:20px;
	}
}



/*404ページ*/
.page-404 h2 span{
	font-size:0.6em !important;
}
/* ===========================================
 コラム一覧（column）
 * ======================================== */
.column .container_box{
	background:#F7F7F7;
}
.column .case-list_box{
	padding:0 1%;
	margin-top:8%;
}
.column .case-list_box a{
	text-decoration:none;
	color:black;
}
.column .case-list_box .case-list{
	height:100%;
}
.column .case-thumb{
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	position: relative;
	transition: box-shadow .3s ease, transform .3s ease;
}
.column .case-thumb::before{
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(212, 83, 59, 0.55);
	opacity: 0;
	transform: scale(1.05);
	transition: opacity .35s ease, transform .45s ease;
	z-index: 1;
}
.column .case-thumb::after{
	content: "くわしくみる ＞";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.95);
	opacity: 0;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	white-space: nowrap;
	transition: opacity .35s ease, transform .35s ease;
	z-index: 2;
	pointer-events: none;
}
.column .case-thumb:hover::before{
	opacity: 1;
}
.column .case-thumb:hover::after{
	opacity: 1;
}
.column .case-thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.column .case-title{
	display: -webkit-box;
	-webkit-line-clamp: 2;   /* ← 表示したい行数 */
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.column .case-tag{
	font-size: 1.2rem;
    color: #7c6666;
    text-decoration: none;
}
body .column .case-list_box .case-list .case-title{
	padding-bottom:20px !important;
	font-size:120% !important;
	color:black;
}
body .column .case-list_box .case-list .case-date{
	font-size:90% !important;
	width:95%;
	color:black;
}
.column .case-layout{
  display: flex;
  gap: 60px;
}

.column .case-main{
	width: 78%;
}
.column .case-sidebar{
	width: 22%;
}
.column .case-sidebar .column-tags__title{
	font-size:130% !important;
}
.column .case-sidebar .column-tags__title span{
	color:#777;
	font-size:70% !important;
}
.column .case-sidebar .column-tags__list{
	padding-inline-start: 10px;
}
.column .case-sidebar .column-tags__list li{
	list-style:none;
	border-bottom:solid 1px #7777;
	padding:5px 0;
}
.column .case-sidebar .column-tags__list li a{
	color: #000;
	position: relative;
	display: flex;         
	align-items: center; 
	text-decoration: none;
}
.column .case-sidebar .column-tags__list li a::before{
	content: "";
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #D4533B;
	margin-right: 10px;
	flex-shrink: 0;
}

.column .case-sidebar .column-tags__list li a::after{
	content: "";
	position: absolute;
	left: 5px;
	top: 40%; 
	width: 6px;
	height: 6px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
}

/* =========================
   Case Pagination
========================= */
.case-pagination{
	margin: 60px auto 0;
	text-align: center;
}
.case-pagination .page-numbers{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.case-pagination .page-numbers li{
	margin: 0;
}

/* =========================
   数字ページのみボタン化
========================= */
.case-pagination .page-numbers a.page-numbers:not(.prev):not(.next),
.case-pagination .page-numbers span.page-numbers.current{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 46px;
	height: 46px;
	font-size: 18px;
	font-weight: bold;
	border-radius: 4px;
	text-decoration: none;
	transition: background .25s ease, color .25s ease, transform .25s ease;
}
/* 通常数字 */
.case-pagination .page-numbers a.page-numbers:not(.prev):not(.next){
	color: #ad4b5a;
	background: #fff;
	border: 2px solid #ad4b5a;
}
/* hover */
.case-pagination .page-numbers a.page-numbers:not(.prev):not(.next):hover{
	background: #ad4b5a;
	color: #fff;
	transform: translateY(-2px);
}
/* 現在ページ */
.case-pagination .page-numbers .current{
	background: #ad4b5a;
	color: #fff;
	border: 2px solid #ad4b5a;
	cursor: default;
}

/* =========================
   前へ・次へ（囲まない）
========================= */
.case-pagination .page-numbers .prev,
.case-pagination .page-numbers .next{
	border: none;
	background: none;
	width: auto;
	height: auto;
	padding: 0;
	font-size: 16px;
	font-weight: bold;
	color: #ad4b5a;
}
.case-pagination .page-numbers .prev:hover,
.case-pagination .page-numbers .next:hover{
	text-decoration: underline;
	transform: none;
}





@media screen and (max-width:1100px){
	.column .case-layout{
		flex-wrap:wrap;
	}
	.column .case-main,.column .case-sidebar{
		width:100%;
	}
	.column .case-layout.reverse{
		flex-direction: column-reverse;
	}
}

/* SP */
@media screen and (max-width:599px){
	.case-layout{
		flex-direction: column-reverse;
	}
	.column .case-main,
	.column .case-sidebar{
		width: 100%;
	}
	.column .case-sidebar{
		margin-top:0;
	}
}


/* ===========================================
 コラムタグ一覧（tag.php）
 * ======================================== */
.column_image_container h2{
	line-height:1.5em;
}
.column-tag .tag-grid{
	padding:0 5%;
	margin-top:50px;
	display:grid;
	grid-template-columns:repeat(2, 1fr);
	gap:80px 60px;
}

.column-tag .tag-card{
	display:flex;
	flex-direction:column;
}

.column-tag .tag-thumb{
	display:block;
	overflow:hidden;
}

.column-tag .tag-thumb img{
	width:100%;
	aspect-ratio:4 / 3;
	object-fit:cover;
	display:block;
	transition:.4s;
}

.column-tag .tag-thumb:hover img{
	transform:scale(1.03);
}

.column-tag .tag-content{
	padding-top:20px;
}

.column-tag .tag-title{
	font-size:2rem;
	line-height:1.6;
	font-weight:400;
	margin-bottom:20px !important;
}

.column-tag .tag-title a{
	color:#6f4d4d;
	text-decoration:none;
}

.column-tag .tag-price{
	text-align:right;
	font-size:2rem;
	color:#6f4d4d;
	margin-bottom:25px;
	padding-right:10px;
}

.column-tag .tag-tags{
	display:flex;
	flex-wrap:wrap;
	gap:8px 15px;
}

.column-tag .tag-tag{
	font-size:1.2rem;
	color:#7c6666;
	text-decoration:none;
}

.column-tag .tag-tag:hover{
	opacity:.7;
}
.column-tag .no-tag{
	text-align:center;
	padding:80px 0;
	font-size:2rem;
}

@media screen and (max-width:599px){
	.column-tag .tag-grid{
		grid-template-columns:repeat(1, 1fr);
	}
	.column-tag .tag-title{
		font-size:120% !important;
	}
	.column-tag .tag-content{
		padding-top:0;
	}
}

/* ===========================================
 事例詳細（single）※一部.product-singleクラスで使用
 * ======================================== */
.column-single section,
.product-single section{
    padding: 90px 10%;
	max-width:1200px;
	margin:auto;
}
.column-single .post-meta,
.product-single .post-date{
	margin-bottom:20px;
}
.column-single .post-tags {
	margin-bottom: 10px;
	text-align:right;
}
.column-single .post-tag {
	display: inline-block;
	margin-right: 8px;
	margin-bottom: 6px;
	font-size: 14px;
	color: #7d7979;
	text-decoration: none;
}
.case-single .post-tag:hover {
	text-decoration: underline;
}


/*ーーーーボタン共通ーーーー*/
.column-single .column_button_box,
.product-single .product_button_box{
    margin-top: 50px;
}
.column-single .column_button,
.product-single .product_button{
    border: solid 2px #5d3c39;
    padding: 15px 50px;
    color: #5d3c39;
}

/*ーーーーぱんくずリストーーーー*/
.breadcrumb {
	font-size: 14px;
	margin: 20px 0;
	padding:0 !important;
	position: relative;
	left: calc((100vw - 1200px) / -3);
	background-color:transparent;
}
.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 0;
	padding-inline-start: 0;
}
.breadcrumb li::after {
	content: ">";
	margin: 0 6px;
	color: #aaa;
}
.breadcrumb li:last-child::after {
	content: "";
}
.breadcrumb a {
	color: #666;
	text-decoration: none;
}
.breadcrumb a:hover {
	text-decoration: underline;
}



.column-single .post-content{
	margin-top:50px;
	margin-bottom:5%;
}
.column-single .post-content p{
	line-height:2.0em !important;
}
.column-single h1,
.product-single h1{
	margin-top: 7% !important;
    margin-bottom: 10% !important;
	line-height:1.5em !important;
}
.column-single h2{
	font-size:180% !important;
	border-top:none !important;
	border-bottom:none !important;
	border-left:solid 6px #D4533B;
	background:transparent !important;
	margin-top:7% !important;
	margin-bottom:5% !important;
	padding-left:10px;
}
.column-single h3{
	font-size:150% !important;
	border-bottom:solid 2px #D4533B;
	padding-bottom:10px;
	padding-left:15px;
	color:#D4533B !important;
	margin-top:5% !important;
	margin-bottom:3% !important;
}


@media screen and (max-width: 1199px) {
	.breadcrumb{
		left:0;
	}
}

@media screen and (max-width:599px){
	.column-single section{
		padding:5% 3% 10% 3%;
	}
	.column-single h1{
		font-size:1.7em !important;
	}
	.column-single h2{
		font-size:150% !important;
	}
	.column-single h3{
		font-size:130% !important;
		padding-left:5px;
		margin-top:10% !important;
	}
	.column-single .post-content p{
		font-size:15px !important;
	}
	.column-single .post-meta {
		flex-direction: column;
		gap: 0px;
	}
	.column-single .post-tags {
		justify-content: flex-start;
		max-width: 100%;
	}
	.column-single .fukidashi_title::before {
		transform: translateY(-50%); 
	}
	
}

/* ===========================================
 商品一覧（archive-products）
 * ======================================== */
.products .menu img{
	width:85%;
	filter: drop-shadow(0px 1px 3px rgba(0,0,0,.15));
	transition:
		filter .3s ease,
		transform .3s ease;
	transform:translateY(0);
}

.products .menu img:hover{
	filter: drop-shadow(0px 3px 6px rgba(0,0,0,.12));
	transform:translateY(-1px);
}

.products .menu-box{
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	padding: 0 30px;
	background: #f5f5f5;
	transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
}

.products .menu-box.is-open{
	max-height: 1000px;
	opacity: 1;
	padding: 30px;
	margin-top: 20px;
}

.products .menu-box h3{
	width:90%;
	margin:auto;
	border:solid 1px #ab4a59;
	padding:8px;
}
.products .lineup{
	padding-top:40px;
}
.products .lineup h3{
	width:90%;
	margin:auto;
	background:#ab4a59;
	color:#fff;
	padding:8px;
}

/*商品一覧*/
.products-grid{
	padding:0 5%;
	margin-top:50px;
	display:grid;
	grid-template-columns:repeat(2, 1fr);
	gap:80px 60px;
}

.product-card{
	display:flex;
	flex-direction:column;
}

.product-thumb{
	display:block;
	overflow:hidden;
}

.product-thumb img{
	width:100%;
	aspect-ratio:4 / 3;
	object-fit:cover;
	display:block;
	transition:.4s;
}

.product-thumb:hover img{
	transform:scale(1.03);
}

.product-content{
	padding-top:20px;
}

.product-title{
	font-size:2rem;
	line-height:1.6;
	font-weight:400;
	margin-bottom:20px !important;
}

.product-title a{
	color:#6f4d4d;
	text-decoration:none;
}

.product-price{
	text-align:right;
	font-size:2rem;
	color:#6f4d4d;
	margin-bottom:25px;
	padding-right:10px;
}

.product-tags{
	display:flex;
	flex-wrap:wrap;
	gap:8px 15px;
}

.product-tag{
	font-size:1.2rem;
	color:#7c6666;
	text-decoration:none;
}

.product-tag:hover{
	opacity:.7;
}

.pagination-area{
	margin-top:80px;
	text-align:center;
}

.pagination-area .page-numbers{
	display:inline-block;
	padding:10px 15px;
	margin:0 3px;
	color:#6f4d4d;
	text-decoration:none;
}

.pagination-area .current{
	background:#b45a67;
	color:#fff;
}

.no-products{
	text-align:center;
	padding:80px 0;
	font-size:2rem;
}


/*カテゴリー一覧*/
.category-list{
	padding:6% 5% 3% 5%;
	display:grid;
	grid-template-columns:repeat(6, 1fr);
	gap:35px 25px;
}

.category-card{
	max-width:140px;
	margin:0 auto;
	text-align:center;
	text-decoration:none;
	color:#6f4d4d;
}

.category-image{
	width:100%;
	aspect-ratio:1 / 1;
	overflow:hidden;
	border-radius:10px;
}

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

.category-card:hover img{
	transform:scale(1.04);
}

.category-name{
	margin-top:14px;
	font-size:1.3rem;
	letter-spacing:.08em;
}

.no-category{
	text-align:center;
	padding:60px 0;
}


/*商品タグ一覧ページで使用（taxonomy.php）*/
.tag_image_container h2{
	line-height:1.5em;
}

@media screen and (max-width:1024px){
	.products .menu{
		justify-content:start;
	}
	.products .menu div{
		margin-bottom:30px;
	}
}
@media screen and (max-width:768px){
	
	.products-grid{
		grid-template-columns:1fr;
		gap:50px;
	}

	.product-title{
		font-size:1.8rem;
	}

	.product-price{
		font-size:1.8rem;
	}
	
	.category-list{
		grid-template-columns:repeat(2, 1fr);
		gap:30px 20px;
	}
	
	.products .menu-box h3{
		font-size:19px !important;
	}
}
/* ===========================================
 商品詳細（single-product）
 * ======================================== */

.product-single .product-main-image img{
	width:100%;
	height:auto;
	display:block;
	object-fit:cover;
}

.product-single .product-sub-images{
	display:flex;
	gap:16px;
	margin:24px 0 40px;
}

.product-single .product-sub-image{
	width:calc(20% - 13px);
	border:none;
	background:none;
	padding:0;
	cursor:pointer;
}

.product-single .product-sub-image img{
	width:100%;
	aspect-ratio:1 / 1;
	object-fit:cover;
	display:block;
	border:1px solid #eee;
}

.product-single .product-sub-image.is-active img{
	border-color:#b76e79;
}

.product-single .product-comment{
	margin:40px 0;
	line-height:2;
	font-size:16px;
}

.product-single .product-info-table{
	width:100%;
	border-collapse:collapse;
	margin-top:40px;
}

.product-single .product-info-table th,
.product-single .product-info-table td{
	padding:18px 0;
	border-bottom:1px solid #eadad6;
	text-align:left;
	vertical-align:top;
}

.product-single .product-info-table th{
	width:180px;
	white-space:nowrap;
	font-weight:500;
	color:#b76e79;
}

/*カテゴリーへ飛ぶリンク*/
.product-single .product-term-row{
	display:flex;
	align-items:center;
	gap:12px;
	flex-wrap:wrap;
	margin-bottom:8px;
}

.product-single .product-term-row:last-child{
	margin-bottom:0;
}

.product-single .product-term-name{
	display:inline-block;
}

.product-single .product-term-link{
	display:inline-block;
	padding:4px 12px;
	border:1px solid #c9a3aa;
	border-radius:999px;
	font-size:10px;
	line-height:1.6;
	color:#8f5f68;
	text-decoration:none;
	transition:.3s ease;
}

.product-single .product-term-link:hover{
	background:#c9a3aa;
	color:#fff;
}

/*価格表記*/
.product-single .product-price{
	font-size:28px;
}
.product-single .product-price span{
	font-size:32px;
}


@media screen and (max-width:768px){
	.product-single .product-sub-images{
		gap:10px;
		flex-wrap:wrap;
	}

	.product-single .product-sub-image{
		width:calc(33.333% - 7px);
	}

	.product-single .product-info-table th,
	.product-single .product-info-table td{
		display:block;
		width:100%;
	}

	.product-single .product-info-table th{
		padding-bottom:4px;
	}

	.product-single .product-info-table td{
		padding-top:15px;
	}
}

/* ===========================================
 お問い合わせ（contact）
 * ======================================== */
.contact .cform{
	width:80%;
	margin:8% auto;
}
.contact .cform th{
	width:40%;
	padding:30px 0 30px 10px;
	font-size:18px;
	border-left:none;
	border-bottom:solid 2px #D7B8B6;
}
.contact .cform th p{
	font-weight:bold;
	margin-block-end: 0em;
}
.contact .cform td{
	border-left:none;
	border-bottom:solid 2px #D7B8B6;
}
.contact input, .contact textarea{
	border:none;
	width:100%;
	height:100%;
	outline: none;
	background:none;
	border:none;
}
.contact textarea{
	height:200px;
}
.contact textarea::placeholder {
	padding-top:10%;
}
.contact .policy{
	width:95%;
	height:200px;
	overflow-y:scroll;
	border:solid 0.5px #DAD3D2;
	padding:20px;
	margin:auto;
}
.contact .policy .policy_title{
	font-size:20px;
	margin-bottom:20px;
}
.contact .policy_check{
	text-align:center;
	margin:20px auto;
}
.contact .guide_box {
  width: 60%;
  margin: auto;
}

.required-srt{
	background-color:#B22A22;
	color:#FFF;
	font-size:12px;
	padding:5px;
	margin-left:30px;
	border-radius:5px;
}
.any-srt{
	background:#0276C3;
	color:#FFF;
	font-size:12px;
	padding:5px;
	margin-left:30px;
	border-radius:5px;
}
.submit_div{
	text-align:center;
}
.submit_wrap{
  position: relative;
  display: inline-block;
}

.submit_wrap input{
	max-width:90%;
	appearance: none;
	-webkit-appearance: none;
	border: 3px solid #D4533B;
	border-radius: 999px;
	background: #fff;
	color: #D4533B;
	font-size: 20px;
	font-weight: 700;
	padding: 10px 90px 10px 60px;
	margin:50px auto 0 auto;
	letter-spacing: 0.4em;
	cursor: pointer;
}

.submit_wrap .arrow{
	position: absolute;
	right: 40px;
	top: 55%;
	width: 25px;
	height: 25px;
	background: #D4533B;
	border-radius: 50%;
	transform: translateY(-50%);
}
.submit_wrap .arrow::before{
	content: "";
	position: absolute;
	left: 9px;
	top: 50%;
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}
.submit_div input:hover{
	opacity:0.7;
}

.contact input[type="checkbox"] {
	position: relative;
	width: 16px;
	height: 16px;
	border: 1px solid black;
	border-radius:2px;
	vertical-align: -5px;
	-webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
}

.contact input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  content: '';
}
.contact label,.contact .wpcf7-list-item{
	width:100%;
	font-weight:normal;
}

/*タブレット横向き以下*/
@media screen and (max-width: 1199px) {
	.contact .cform {
		width: 70%;
		table-layout: fixed;
		border-collapse: collapse;
	}
	.contact .cform th,
	.contact .cform td {
		padding: 10px;
		vertical-align: top;
	}
	.contact .cform th{
		width: 40%;
		text-align: left;
		white-space: nowrap;
	}
	.contact .cform td {
		width: 60%;
	}
	
}
/*タブレット縦向き以下*/
@media screen and (max-width:991px){
	.contact .cform {
		width: 90%;
	}
	.contact .policy{
		width:90%;
	}
	.contact .guide_box {
		width: 80%;
	}
}

@media screen and (max-width:767px){
	.contact .policy .policy_title{
		font-size:18px;
	}
	.contact .cform th, .contact .cform td{
		width:100%;
		display:block;
	}
	.contact .cform th{
		text-align:center;
	}
	.contact .cform td{
		height:auto;
	}
	.contact .cform td.otoiawase{
		height:200px;
	}
	.contact input, .contact-page textarea{
		width:100%;
	}
	.submit_div input{
		width:80%;
	}
	.submit_wrap .arrow{
		right:70px;
	}
	
}

@media screen and (max-width:599px){
	.contact .policy p:not(.contact-page .policy .policy_title){
		font-size:12px !important;
	}
	.contact label{
		font-size:14px !important;
	}
	.contact .submit_div input{
		max-width:100%;
		font-size:16px !important;
	}	
}

/* ===========================================
 フッター（footer）
 * ======================================== */
/* footer */
.footer{
	background:#fff;
	text-align:center;
	padding:45px 5% 20px;
	color:#111;
	font-family:
	"Yu Mincho",
	"YuMincho",
	"Hiragino Mincho ProN",
	serif;
}

.footer-logo img{
	width:120px;
	height:auto;
}
.footer-logo img:hover{
	opacity:0.8;
}

.footer-break{
	width:100%;
	height:0;
}

.footer-copy-main{
	font-size:12px;
	line-height:1.7;
	margin:18px 0 14px;
}

.footer-sns{
	display:flex;
	justify-content:center;
	gap:8px;
	margin-bottom:45px;
}

.footer-sns img{
	width:28px;
	height:28px;
	object-fit:contain;
}

.footer-nav{
	max-width:420px;
	margin:0 auto 45px;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:6px 18px;
	font-size:12px;
	line-height:1.6;
}

.footer-nav a{
	color:#111;
	text-decoration:none;
	position:relative;
	display:inline-block;
}

.footer-nav a::after{
	content:"";
	position:absolute;
	left:0;
	bottom:-4px;
	width:100%;
	height:0.5px;
	background:currentColor;

	transform:scaleX(0);
	transform-origin:left center;
	transition:transform .35s ease;
}

.footer-nav a:hover::after{
	transform:scaleX(1);
}

.footer-nav.btob{
	margin-bottom:30px;
}
.footer-nav.btob a{
	font-size:0.9em !important;
}

.copyright{
	font-size:11px;
	margin:0;
}

/* SP */
@media screen and (max-width:768px){
	.footer-nav{
		gap:8px 14px;
	}
}
