@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

#wrapper {
	width: 100%;
	overflow: hidden;
}

/*-- 下層header --*/

header {
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 2.6041666vw 5.208333vw 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

header h1 {
	background: url("../images/top/chayamachi_logo.png")no-repeat center center;
	background-size: contain;
	text-align: center;
	display: block;
	text-indent: -9999px;
}

header .h_contact_list {
	margin-top: var(--margin-30);
}

header .h_contact_list ul {
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 0;
}

header .h_contact_list ul li {
	flex: 1;
	font-size: var(--font-size-28);
	text-align: center;
}

header .h_contact_list ul li:first-child {
	background-color: #c5ebd5;
}

header .h_contact_list ul li:first-child a,
.first a {
	position: relative;
	display: block;
	overflow: hidden;
	animation: flashBtn 1.5s infinite;
}

header .h_contact_list ul li:first-child a::after,
.first a::after {
	content: '';
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 10px 10px;
	border-color: transparent transparent #333 transparent;
}

.first a::after {
	border-color: transparent transparent #FFF transparent;
}

/* 点滅アニメーション */
@keyframes flashBtn {
	0% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.75;
		transform: scale(1.03);
	}

	100% {
		opacity: 1;
		transform: scale(1);

	}
}

header .h_contact_list ul li:nth-child(2),
header .h_contact_list ul li:last-child {
	background-color: rgba(192, 163, 84, 0.3);
}

header .h_contact_list ul li span {
	font-size: var(--font-size-18);
}

header .h_main_v {
	position: relative;
	flex: 1;
	margin-top: 10px;
	background: url("../images/top/h_main_v.jpg") no-repeat center center;
	background-size: cover;
}

header .h_main_v h4 {
	position: absolute;
	top: 50%;
	right: var(--margin-50);
	transform: translateY(-50%);
	margin: 0;
	color: #fff;
	font-weight: 600;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.en,
.text p,
.company_cont .right_cont h6,
.googlemap {
	font-family: "Cormorant Garamond", serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
}

/* スクロールダウンの位置 */
.scroll {
	position: absolute;
	left: 0.5%;
	bottom: 10%;
	writing-mode: vertical-rl;
}
/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hamburger-grid__dots span.maru {
	width: 1.5625vw;
	height: 1.5625vw;
	border-radius: 50%;
	background-color: white;
}

.slider {
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 0;
	z-index: 0;
}

.slider .zoom-fade__item {
	height: 100vh;
	object-fit: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: block;
	text-indent: -9999px;
}

.slider .zoom-fade__item:first-child {
  background-image: url("../images/main_v_img_01.jpg");
}

.slider .zoom-fade__item:nth-child(2) {
  background-image: url("../images/main_v_img_02.jpg");
}

.slider .zoom-fade__item:nth-child(3) {
  background-image: url("../images/main_v_img_03.jpg");
}

.slider .zoom-fade__item:nth-child(4) {
  background-image: url("../images/main_v_img_04.jpg");
}

.slider .zoom-fade__item:nth-child(5) {
  background-image: url("../images/main_v_img_05.jpg");
}

.slider .zoom-fade__item:nth-child(6) {
  background-image: url("../images/main_v_img_06.jpg");
}

.slider .zoom-fade__item:nth-child(7) {
  background-image: url("../images/main_v_img_07.jpg");
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1); /* 拡大率 */
  }
}
.add-zoom {
  animation: fadezoom 10s 0s forwards;
}

/*-- header end --*/

h3 {
	font-size: var(--font-size-48);
	font-weight: 600;
}

.details h3,
.reception h3 {
	position: relative;
	width: 26.041666vw;
	height: 4.6875vw;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: var(--font-size-48);
	background: #c0a354;
}

.details h3:before,
.details h3:after,
.reception h3:before,
.reception h3:after {
	position: absolute;
	top: 0;
	display: block;
	content: '';
	border: 2.34375vw solid #c0a354;
}

.details h3:before,
.reception h3:before{
  left: -40px;
  border-left-width: 30px;
  border-left-color: transparent;
}

.details h3:after,
.reception h3:after{
  right: -40px;
  border-right-width: 30px;
  border-right-color: transparent;
}

.details h3 span,
.reception h3 span {
	position: relative;
	display: block;
}

h4 {
	font-size: var(--font-size-36);
}

h4 strong {
	font-size: var(--font-size-60);
}

h5 {
	font-size: var(--font-size-28);
}

h6 {
	font-size: var(--font-size-21);
}

#box {
	padding: var(--padding-120);
	text-align: center;
}

#box02 {
	padding: var(--padding-10);
}

#box03 {
	padding: var(--padding-20);
	text-align: center;
}

#box04 {
	padding: 0 var(--padding-120);
	text-align: center;
}

.pattern {
	position: relative;
	overflow: hidden;
	z-index: 0;
}

/* 背景画像だけ */
.pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/top/bg.png");
  opacity: 0.2; /* ←背景だけ透過 */
  z-index: 0;
  pointer-events: none;
}

/* 中身を前に出す */
.pattern > * {
  position: relative;
  z-index: 1;
}

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

.boxcont02 {
	background-color: white;
	padding: var(--padding-60);
}

.news {
	padding: var(--padding-50) var(--padding-120);
	background-color: #c5ebd5;
}

.info,
.accordioncontent .cont,
.campaign_box_cont {
	display: flex;
}

.info dl {
	margin-left: var(--margin-120);
}

.info dl dd {
	margin-bottom: var(--margin-20);
	color: red;
}

.concept {
	background: url("../images/top/concept_bg.png") no-repeat center top,
	linear-gradient(#fcf7eb, #ffffff);
	background-size: cover;
}

.concept_list {
	margin-top: var(--margin-160);
}

.concept .concept_list ul {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.concept .concept_list ul li {
	position: relative;
	width: calc(100%/3);
	margin-left: -30px;
	flex: 1;
	aspect-ratio: 1 / 1;
	background-color: rgba(243, 238, 235, 0.4);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: var(--font-size-30);
	text-align: center;
	line-height: 1.8em;
	box-sizing: border-box;
}

.concept .concept_list ul li:first-child {
	margin-left: 0;
}

.concept .concept_list ul li span {
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 60%;
	aspect-ratio: 3 / 1;
}

.concept .concept_list ul li span:first-child {
	background: url("../images/top/concept_num01.png") no-repeat center center;
	background-size: contain;
}

.concept .concept_list ul li:nth-child(2) span {
	background: url("../images/top/concept_num02.png") no-repeat center center;
	background-size: contain;
}

.concept .concept_list ul li:last-child span {
	background: url("../images/top/concept_num03.png") no-repeat center center;
	background-size: contain;
}

.accordionbox {
	width: 100%;
	margin-top: var(--margin-120);
}

/* タブは横並び50% */
.tablist {
	display: flex;
	gap: 5px;
}

.tab {
	width: calc(50% - 2.6041666vw);
	padding: var(--padding-25);
	background: #ccd2d6;
	text-align: center;
	cursor: pointer;
}

.tab.active {
	background: #c5ebd5;
}

.tab span {
	margin-left: var(--margin-10);
}

/* コンテンツは完全に横幅100% */
.panelbox {
	width: 100%;
}

.panel {
	display: none;
	width: calc(100% - 2.6041666vw);
	padding: var(--padding-25);
	background-color: rgba(192, 163, 84, 0.1);
}

.panel.active {
	display: block;
}

/* 通常時はコンテンツを隠す */
.accordioncontent {
	padding: var(--padding-25);
	background-color: rgba(192, 163, 84, 0.1);
	overflow: hidden;
}

.accordioncontent .cont .cont_list {
	flex: 1;
	padding: var(--padding-20);
	background-color: white;
	border-radius: 20px 0 20px 0;
}

.accordioncontent .cont .cont_list:first-child {
	margin-right: var(--margin-30);
}

.accordioncontent .cont .cont_list img {
	width: 7.8125vw;
}

.accordioncontent .cont .cont_list h4 {
	color: #c0a354;
}

.accordioncontent .cont .cont_list .cont_list_title {
	margin-bottom: var(--margin-25);
	text-align: center;
}

.accordioncontent .cont .cont_list ul li {
	position: relative;
	background-color: #f7f4f2;
	margin-bottom: var(--margin-10);
	padding: var(--padding-10);
	border-radius: 0.36458333vw;
	font-size: var(--font-size-16);
	text-align: left;
}

.accordioncontent .cont .cont_list ul li span {
	position: absolute;
	right: var(--padding-10);
	font-size: var(--font-size-14);
}

.campaign {
	background-color: #c0a354; /* 背景色はそのまま */
}

.campaign {
	position: relative;
	overflow: hidden;
	z-index: 0;
}

/* 柄だけ */
.campaign::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/top/bg02.png") repeat;
  opacity: 0.1; /* お好み */
  pointer-events: none;
}

/* 中身を前に出す */
.campaign > * {
	position: relative;
	z-index: 1;
}

.campaign h3 {
	color: #c0a354;
}

.campaignbox {
	background-color: white;
}

.campaignbox .campaign_bt {
	margin: var(--margin-100) 0 var(--margin-50);
	padding: var(--padding-20);
	background-color: #c0a354;
}

.campaignbox .campaign_bt h4 {
	color: white;
}

.campaign_box,
footer .f_link_box {
	margin-bottom: var(--margin-100);
	padding: var(--padding-50) 0;
	border-top: 2px solid #c0a354;
	border-bottom: 2px solid #c0a354;
}

.campaign_box_cont {
	display: flex;
}

.campaign_box_cont .left_cont {
	width: 18.2291666vw;
}

.campaign_box_cont .right_cont {
	width: calc(100% - 19.2708333vw);
	margin-left: var(--margin-20);
}

.campaign_box_cont h5 {
	padding: var(--padding-5);
	background-color: #c5ebd5;
	font-weight: 600;
}

.campaign_box_cont .right_cont .right_cont_box {
	margin-bottom: var(--margin-20);
}

.campaign_box_cont .right_cont h5 {
	background-color: #ccd2d6;
}

.campaign_box_cont .right_cont ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: var(--margin-20);
	padding: 0;
}

.campaign_box_cont .right_cont ul li {
	flex: none;
}

.campaign_box_cont .right_cont ul li a {
	display: block;
}

.campaign_box_cont .right_cont ul li img {
	width: 100%;
	display: block;
}

.text {
  width : 100%;      /* 枠の大きさ */
  overflow : hidden; /* 枠からはみ出た部分を非表示 */
}

.text p {
	display : inline-block;  /* 必須 */
	padding-left: 100%;    /* 右端から文字をスタートさせるため */
	white-space : nowrap; /* 改行が起こらないように対策 */
	animation : scroll 30s linear infinite; /* 下のアニメーションを10秒かけて行い、それをくりかえす */
	font-size: var(--font-size-40);
	color: #c0a354;
}

.image_box ul,
.contactlist ul {
	display: flex;
}

.link_bt {
	background-color: #ccd2d6;
}

.cosmelink_box {
	height: 10.41666vw;
	background-color: white;
}

.cosmelink_box a h4 {
	text-align: center;
	line-height: 10.41666vw;
}

.reception_box ul {
	margin-top: var(--margin-20);
	text-align: left;
}

.reception_box ul,
footer .f_link_box {
	font-family :  "游ゴシック体" ,  "游ゴシック" , YuGothic ,  "ヒラギノ角ゴ Pro" ,  "ヒラギノ角ゴシック Pro" ,  "メイリオ" , Meiryo ,  "MS Pゴシック" ,  "MS Pゴシック" , sans-serif;
}

.reception_box ul li strong {
	color: red;
	font-weight: bold;
}

.reception_box ul li span,
footer .f_link_box .cont_list ul li span,
footer .copy {
	font-size: var(--font-size-14);
}

.company {
	background-color: #f6f6f6;
}

.company_cont {
	display: flex;
	margin-top: var(--margin-120);
}

.company_cont .left_cont {
	width: 20.8333vw;
}

.company_cont .right_cont {
	width: calc(100% - 23.4375vw);
	margin-left: var(--margin-50);
	text-align: left;
}

.company_cont .right_cont h5 {
	margin-bottom: var(--margin-40);
}

.company_cont .right_cont h6 {
	margin-bottom: var(--margin-20);
}

.access_cont,
.map  {
	margin-top: var(--margin-120);
}

.googlemap {
	margin-top: var(--margin-50);
}

.map iframe {
	width: 100%;
	height: 26.041666vw;
}

.shoplist_box ul {
	display: flex;
	gap: 9px;
}

.shoplist_box ul a,
.contactlist ul a {
	flex: 1;
	padding: var(--padding-27);
	background-color: white;
	text-align: center;
}

.shoplist_box ul li h4 {
	margin-top: var(--margin-20);
}

.shoplist_box ul li h4 img {
	width: 50%;
}

.contact {
	background-color: #c5ebd5;
}

.contact_cont {
	display: flex;
	margin-top: var(--margin-5);
}

.contactlist {
	width: 100%;
}

.contactlist ul {
	gap: 5px;
}

.instalink {
	margin-top: var(--margin-50);
	text-align: center;
}

.instalink a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	text-decoration: none;
}

.insta_icon {
	display: block;
	width: 2.6vw;
	height: 2.6vw;
	background: url("../images/top/insta_icon.png") no-repeat center;
	background-size: contain;
	flex-shrink: 0;
}

.first,
footer .f_link_box p span {
	background-color: #c0a354;
}

.first {
	margin-top: var(--margin-120);
}

.first a {
	color: white;
}

.recruit {
	background-color: rgba(192, 163, 84, 0.3);
}

footer {
	position: relative;
	padding: var(--padding-120);
}

footer .f_logo {
	width: 18.2291666vw;
}

footer .f_nav {
	position: absolute;
	top: var(--margin-120);
	right: var(--margin-120);
}

footer .f_nav ul {
	display: flex;
	gap: 100px;
}

footer .f_nav ul li {
	flex: 1;
}

footer .f_link_box {
	margin: var(--margin-30) 0;
}

footer .f_link_box h6 {
	color: #c0a354;
	font-weight: 600;
}

footer .f_link_box h6,
footer .f_link_box .cont_list .category_box {
	margin-bottom: var(--margin-50);
}

footer .f_link_box .cont_list div.category {
	margin: var(--margin-50) 0 var(--margin-30);
	color: #808080;
	font-weight: 600;
}

footer .f_link_box p span {
	padding: var(--padding-10);
	color: white;
}

footer .f_link_box .cont_list {
	margin-bottom: var(--margin-100);
}

footer .f_link_box .cont_list .cont_list_box {
	display: flex;
}

footer .f_link_box .cont_list ul {
	flex: 1;
	margin-top: var(--margin-20);
}

footer .f_link_box .cont_list ul li {
	line-height: 2.5em;
}

footer .copy {
	text-align: center;
}

/* アニメーション（右から左に移動） */
@keyframes scroll{
  0% { 
    transform: translateX(0)
  }
  100% {
    transform: translateX(-100%)
  }
}

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


}

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

	
}

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


}


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

	
}

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


/*-- ここからスマホcss START --*/
@media only screen and ( max-width : 767px ) {
	
header {
	padding: 10px 10px 0;
}

header .h_contact_list {
	margin-top: 20px;
}

header .h_contact_list ul {
	display: block;
	gap: 0;
}

header .h_contact_list ul li {
	flex: none;
	font-size: 16px;
	margin-bottom: 10px;
	padding: 5px;
}
	
header .h_contact_list ul li:last-child {
	margin-bottom: 0;
}

header .h_contact_list ul li span {
	font-size: 14px;
}

header .h_main_v {
	flex: 1;
	margin-top: 10px;
	background: url("../images/top/h_main_v.jpg") no-repeat -200px center;
	background-size: cover;
}
	
header .h_main_v h4 {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	color: #fff;
	font-weight: 600;
	text-align: center;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* スクロールダウンの位置 */
.scroll {
	position: absolute;
	left: 20px;
	bottom: 120px;
	color: white;
}
	
/* 線のアニメーション部分 */
.scroll::before {
  background-color: white;
}

.hamburger-grid__dots span.maru {
	width: 1.5625vw;
	height: 1.5625vw;
	border-radius: 50%;
	background-color: white;
}

.slider {
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 0;
	z-index: 0;
}

.slider .zoom-fade__item {
	height: 100vh;
	object-fit: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: block;
	text-indent: -9999px;
}

.slider .zoom-fade__item:first-child {
  background-image: url("../images/main_v_img_01.jpg");
}

.slider .zoom-fade__item:nth-child(2) {
  background-image: url("../images/main_v_img_02.jpg");
}

.slider .zoom-fade__item:nth-child(3) {
  background-image: url("../images/main_v_img_03.jpg");
}

.slider .zoom-fade__item:nth-child(4) {
  background-image: url("../images/main_v_img_04.jpg");
}

.slider .zoom-fade__item:nth-child(5) {
  background-image: url("../images/main_v_img_05.jpg");
}

.slider .zoom-fade__item:nth-child(6) {
  background-image: url("../images/main_v_img_06.jpg");
}

.slider .zoom-fade__item:nth-child(7) {
  background-image: url("../images/main_v_img_07.jpg");
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1); /* 拡大率 */
  }
}
.add-zoom {
  animation: fadezoom 10s 0s forwards;
}

/*-- header end --*/

h3 {
	font-size: 20px;
}

.details h3,
.reception h3 {
	position: relative;
	width: 200px;
	height: 40px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 24px;
	background: #c0a354;
}

.details h3:before,
.details h3:after,
.reception h3:before,
.reception h3:after {
	position: absolute;
	top: 0;
	display: block;
	content: '';
	border: 20px solid #c0a354;
}

.details h3:before,
.reception h3:before{
  left: -40px;
  border-left-width: 30px;
  border-left-color: transparent;
}

.details h3:after,
.reception h3:after{
  right: -40px;
  border-right-width: 30px;
  border-right-color: transparent;
}

.details h3 span,
.reception h3 span {
	position: relative;
	display: block;
}
	
h3 {
	font-size: 24px;
}

h4 {
	font-size: 19px;
}

h4 strong {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 17px;
}

#box {
	padding: 20px;
}

#box02,
#box03 {
	padding: 10px;
}
	
#box04 {
	padding: 0 10px;
}
	
.boxcont {
	max-width: 100%;
}

.boxcont02 {
	padding: 10px;
}

.news {
	padding: 20px;
}

.info,
.accordioncontent .cont,
.campaign_box_cont {
	display: block;
}

.info dl {
	margin: 20px 0 0;
}

.info dl dd {
	margin-bottom: 10px;
}

.concept_list {
	margin-top: 100px;
}

.concept .concept_list ul {
	
}

.concept .concept_list ul li {
	/*position: relative;
	width: 100%;
	margin-left: 0;
	flex: none;*/
	font-size: 10px;
}
	
.accordionbox {
	margin-top: 30px;
}

/* タブは横並び50% */
.tablist {
	gap: 2px;
}

.tab {
	width: calc(50% - 10px);
	padding: 5px;
	font-size: 14px;
}

/* コンテンツは完全に横幅100% */

.panel {
	width: calc(100% - 20px);
	padding: 10px;
}

/* 通常時はコンテンツを隠す */
.accordioncontent {
	padding: 10px;
}

.accordioncontent .cont .cont_list {
	padding: 5px;
	border-radius: 10px 0 10px 0;
}

.accordioncontent .cont .cont_list:first-child {
	margin-right: 0;
}

.accordioncontent .cont .cont_list .cont_list_title {
	margin-bottom: 15px;
}

.accordioncontent .cont .cont_list ul li {
	margin-bottom: 10px;
	padding: 10px;
	border-radius: 5px;
	font-size: 13px;
}

.accordioncontent .cont .cont_list ul li span {
	font-size: 12px;
	right: 10px;
}

.accordioncontent .cont .cont_list img {
	width: 30%;
}

.accordioncontent .cont .cont_list h4 {
	font-size: 28px;
}

.campaignbox .campaign_bt {
	margin: 25px 0;
	padding: 20px;
}

.campaign_box,
footer .f_link_box {
	margin-bottom: 50px;
	padding: 20px 0;
}

.campaign_box_cont {
	display: block;
}
	
.campaign_box_cont .left_cont {
	margin-bottom: 20px;
}
	
.campaign_box_cont .right_cont {
	margin-left: 0;
}

.campaign_box_cont .left_cont,
.campaign_box_cont .right_cont {
	width: 100%;
}

.campaign_box_cont h5 {
	padding: 10px;
}
	
	
.campaign_box_cont .left_cont .cam_img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	object-position: center calc(100% + 70px);
}

.campaign_box_cont .right_cont .right_cont_box {
	margin-bottom: 10px;
}

.campaign_box_cont .right_cont ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 10px;
	padding: 0;
}

.campaign_box_cont .right_cont ul li {
	flex: none;
}

.campaign_box_cont .right_cont ul li a {
	display: block;
}

.text p {
	display : inline-block;  /* 必須 */
	padding-left: 100%;    /* 右端から文字をスタートさせるため */
	white-space : nowrap; /* 改行が起こらないように対策 */
	animation : scroll 30s linear infinite; /* 下のアニメーションを10秒かけて行い、それをくりかえす */
	font-size: 24px;
	color: #c0a354;
}

.image_box ul,
.contactlist ul {
	display: flex;
}

.link_bt {
	background-color: #ccd2d6;
}

.cosmelink_box {
	height: 70px;
}

.cosmelink_box a h4 {
	line-height: 70px;
}

.reception_box ul {
	margin-top: var(--margin-20);
	text-align: left;
}

.reception_box ul li span,
footer .f_link_box .cont_list ul li span,
footer .copy {
	font-size: 12px;
}

.company {
	background-color: #f6f6f6;
}

.company_cont,
.contact_cont {
	display: block;
	margin-top: 30px;
}

.company_cont .left_cont,
.company_cont .right_cont {
	width: 100%;
}

.company_cont .right_cont {
	margin: 20px 0 0;
}

.company_cont .right_cont h5 {
	margin-bottom: 30px;
}

.company_cont .right_cont h6 {
	margin-bottom: 10px;
}

.access_cont {
	margin-top: 50px;
}

.googlemap {
	margin-top: 30px;
}

.shoplist_box ul {
	display: flex;
	gap: 9px;
}

.shoplist_box ul a,
.contactlist ul a {
	flex: 1;
	padding: var(--padding-27);
	background-color: white;
	text-align: center;
}

.shoplist_box ul li h4 {
	margin-top: var(--margin-20);
}

.shoplist_box ul li h4 img {
	width: 70%;
}

.contactlist {
	width: 100%;
}
	
.contactlist ul {
	display: block;
	gap: 0;
}
	
.contactlist ul a {
	flex: 0;
	padding: 0;
}
	
.contactlist ul a li {
	flex: 0;
	margin-bottom: 20px;
	padding: 10px;
	background-color: white;
	text-align: center;
}

.insta_icon {
	display: block;
	width: 25px;
	height: 25px;
	background: url("../images/top/insta_icon.png") no-repeat center;
	background-size: contain;
	flex-shrink: 0;
}

.first,
footer .f_link_box p span {
	background-color: #c0a354;
}

.first a {
	color: white;
}

.recruit {
	background-color: rgba(192, 163, 84, 0.3);
}

footer {
	position: relative;
	padding: 20px;
}

footer .f_logo {
	width: 200px;
}

footer .f_nav {
	position: relative;
	top: 0;
	right: 0;
}

footer .f_nav ul {
	display: block;
	gap: 0;
	margin-top: 50px;
}
	
footer .f_nav ul a {
	font-size: 13px;
}

footer .f_nav ul li {
	flex: 0;
	line-height: 2em;
}

footer .f_link_box {
	margin: 30px 0;
}

footer .f_link_box h6,
footer .f_link_box .cont_list .category_box {
	margin-bottom: 30px;
}

footer .f_link_box .cont_list div.category {
	margin: 20px 0 ;
}

footer .f_link_box p span {
	padding: 10px;
}

footer .f_link_box .cont_list {
	margin-bottom: 50px;
}

footer .f_link_box .cont_list:last-child {
	margin-bottom: 0;
}

footer .f_link_box .cont_list .cont_list_box {
	display: block;
}

footer .f_link_box .cont_list ul {
	flex: 0;
	margin-top: 20px;
}
	
footer .f_link_box .cont_list ul a {
	font-size: 12px;
}

footer .f_link_box .cont_list ul li {
	line-height: 2.5em;
}

footer .copy {
	font-size: 9px;
	text-align: center;
}

}

@media (orientation: landscape) {
	
header #h_catch_main {
	bottom: var(--margin-100);
}
}
