@charset "UTF-8";

/* 基本 */
:root {
	--v-space: clamp(90px, 9vw, 120px);
}

body {
	margin: 0;
	background-color: #ffffff;
	color: #413c36;
	font-family: Arial Black;

	

}

h1, h2, h3, h4, h5, h6, p, figure, ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	line-height: 1.8;
}

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

a:hover {
	filter: brightness(90%) contrast(120%);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}
/*モバイル*/
@media (max-width: 767px) {
	body {
		margin: 0;
		background-color: #ffffff;
		color: #413c36;
		font-family: Arial Black;
	
	}
	img {
		display: block;
		max-width: 100%;
		height: auto;
	}
}

/*フォント*/
@font-face {
	font-family: 'bdplakatt';
	src: url('/bdplakatt.ttf') 
	format('truetype');
  }
  .bdplakatt {
	font-family: 'bdplakatt', 'Arial Black'; 
  }
/*フォントend*/

/* 横幅と左右の余白 */
.w-container {
	width: min(92%, 800px);
	margin: auto;
	position: relative;
}

/* ヘッダー */
.header {
	position: sticky;
	top : 0;
	z-index: 10;
	height: 75px;
	background-color: #ffffff;
	width: 98%;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.site {
	margin-left: 20px;;
}

/* ナビゲーションボタン */
.navbtn {
	padding: 0;
	outline: none;
	border: none;
	background: transparent;
	cursor: pointer;
	color: #aaaaaa;
	font-size: 30px;
}

.open .navbtn {
	z-index: 110;
	color: #ffffff;
}

.navbtn .fa-bars {
	display: revert;
}
.open .navbtn .fa-bars {
	display: none;
}

.navbtn .fa-times {
	display: none;
}
.open .navbtn .fa-times {
	display: revert;
}

@media (min-width: 768px) {
	.navbtn {
		display: none;
	}
}

/* ナビゲーションメニュー：モバイル */
@media (max-width: 767px) {
	.nav {
		position: fixed;
		inset: 0 -100% 0 100%;
		z-index: 100;
		background-color: #4e483ae6;
		transition: transform 0.3s;
	}

	.open .nav {
		transform: translate(-100%, 0);
	}

	.open body {
		position: fixed;
		overflow: hidden;
	}

	.nav ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
		gap: 40px;
		color: #FFFFFF;
	}
	.nav a {
		color: #ffffff;
	}
}

/* ナビゲーションメニュー：PC */
@media (min-width: 768px) {
	.nav ul {
		display: flex;
		gap: 40px;
		color: #707070;
		margin-right: 0px;
	}
	.insta_logo {
		display: flex;
		margin-left: 40px;
		margin-right: 0px;
	}
	.nav_box {
		display: flex;
		margin-left: 30px;
	}
}

/* ヒーロー */
.hero {
	height: 450px;
	background-image: url(img/site_top002.jpg);
	background-position: 90% 10%;;
	background-size: cover;	
}

.hero-container {
	display: grid;
	justify-items: center;
	align-content: center;
	height: 100%;
}

.hero h1 {
	margin-bottom: 42px;
	font-family: "bdplakatt", sans-serif;
	font-size: clamp(68px, 6vw, 160px);
	min-height: 0vw;
	font-weight: 1200;
	line-height: 1.3;
	text-align: center;
	letter-spacing: 0.05em;

	color: #ffeed9;
	height: 0px;
}

.hero p {
	margin-bottom: 72px;
}


/* ヒーロー：モバイル */
@media (max-width: 767px) {
	.hero {
		height: 650px;
		width: 100%;
		background-image: url(img/site_top003.jpg);
		background-position: top;
		background-size: cover;
	}
	
	.hero-container {
		display: grid;
		justify-items: center;
		align-content: center;

	}
      /* 仮設置 */
	.w-container {
		width: min(72%, 600px);
		margin: auto;
		position: relative;

	} /* 仮設置 */
	
	.hero h1 {
		margin-bottom: 42px;
		font-family: "bdplakatt", sans-serif;
		font-size: clamp(58px, 5vw, 130px);
		min-height: 0vw;
		font-weight: 1200;
		line-height: 1.3;
		text-align: center;
		letter-spacing: 0.05em;
	
		color: #ffeed9;
		height: 0px;
	}
	
	.hero p {
		margin-bottom: 72px;
	}
}

/*バナー*/
.banner {

	margin: 30px 25px 30px 40px;
}
.bannerBox {
	float: left;
	margin: 30px 30px 30px 10px;
}

/* ボタン */
.btn {
	display: block;
	width: 260px;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 4px;
	background-color: #e8b368;
	color: #ffffff;
	font-size: 18px;
	text-align: center;
	text-shadow: 0 0 6px #00000052;
}

.btn-accent {
	background-color: #b72661;
}

/* 画像とテキスト */
.imgtext {
	padding: var(--v-space) 0;
	background-color: #ffffff;
	
}

.imgtext + .imgtext {
	padding-top: 0;
}

.imgtext-container {
	display: flex;
	flex-direction: column;
	gap: clamp(45px, 6vw, 80px);
}

	.img iframe {
	position:absolute;
	top:40;
	left:0;
	width:100%;
	height:100%;
	}


@media (min-width: 768px) {
	.imgtext-container {
		flex-direction: row;
		align-items: center;
	}

	.imgtext-container.reverse {
		flex-direction: row-reverse;
	}

	.imgtext-container > .text {
		flex: 1;
		min-width: 17em;
  	}

	.imgtext-container > .img {
		flex: 2;		
	}
	.img iframe {
		position:absolute;
		top:0;
		left:0;
		width:60%;
		height:250%;
		}
	
}

/* タイトルとサブタイトル（赤色の短い線で装飾） */
.heading-decoration {
	font-size: clamp(30px, 3vw, 40px);
	min-height: 0vw;
	font-weight: 400;
}

.heading-decoration::after {
	display: block;
	content: '';
	width: 260px;
	height: 0px;
	border-top: solid 1px #b72661;
	margin-top: 0.6em;
}

.heading-decoration + p {
	margin-top: 1em;
	margin-bottom: 2em;
	color: #707070;
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
}


/* 記事一覧 */
.posts {
	padding: var(--v-space) 0;
	background-color: #ffffff;
}

.posts-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px 15px;
}

@media (min-width: 768px) {
	.posts-container {
		grid-template-columns: repeat(5, 1fr);

	}
}

/* 記事一覧の記事 */
.post a {
	display: block;
}

.post h3 {
	margin: 1em 0 0.5em;
	font-size: clamp(12px, 2vw, 20px);
	min-height: 0vw;
}

.post p {
	max-width: 20em;
	font-size: clamp(10px, 1.6vw, 14px);
	min-height: 0vw;
}

.post img {
	aspect-ratio: 2 / 3;
	object-fit: cover;
	width: 100%;
}

@supports not (aspect-ratio: 3 / 2) {
	.post img {
		height: 180px;
	}
}

/* パーツの見出し */
.heading {
	position: absolute;
	top: calc((var(--v-space) + 0.6em) * -1);
	font-family: "Montserrat", sans-serif;
	font-size: clamp(40px, 5.2vw, 70px);
	min-height: 0vw;
	font-weight: 300;
}

.heading span {
	display: block;
	color: #666666;
	font-size: 18px;
}

#toiawase_form {
	margin: 100px 0px 0px 0px;
}

.inner contact {
	margin: 0px 0px 100px 0px;
}

  /*　Formここから　*/
  #contact{
    padding:10px 0 10px;

  }

  .contact-text{
    margin:45px auto;
  }

  .mail-message-area{
    width:100%;
    padding:0 15px;
  }

  .mail-message{
    width: 100%;
    background:rgba(255,255, 255, 0.8) !important;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
    margin:0 auto;
    border-radius: 0;
  }

  .not-visible-message{
    height:0px;
    opacity: 0;
  }

  .visible-message{
    height:auto;
    opacity: 1;
    margin:25px auto 0;
  }

/* Input Styles */

  .form{
    width: 100%;
    padding: 15px;
    background:#f8f8f8;
    border:1px solid rgba(0, 0, 0, 0.075);
    margin-bottom:25px;
    color:#727272 !important;
    font-size:13px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }

  .form:hover{
    border:1px solid #8BC3A3;
  }

  .form:focus{
    color: white;
    outline: none;
    border:1px solid #8BC3A3;
  }

  .textarea{
    height: 200px;
    max-height: 200px;
    max-width: 100%;
  }
  
/* Generic Button Styles */

  .button{
    padding:8px 12px;
    background:#0A5175;
    display: block;
    width:120px;
    margin:10px 0 0px 0;
    border-radius:3px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    text-align:center;
    font-size:0.8em;
    box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
    -moz-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
    -webkit-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
  }

  .button:hover{
    background:#8BC3A3;
    color:white;
  }

/* Send Button Styles */

  .form-btn{
    width:180px;
    display: block;
    height: auto;
    padding:15px;
    color:#fff;
    background:#8BC3A3;
    border:none;
    border-radius:3px;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin:auto;
    box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
    -moz-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
    -webkit-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
  }

  .form-btn:hover{
    background:#111;
    color: white;
    border:none;
  }

  .form-btn:active{
    opacity: 0.9;
  }
center{
  margin-top:330px;
}
input {
    position: relative;
    z-index: 9999;
}

  /*　Formここまで　*/




/* フッター */
.footer {
	padding: 70px 0;
	background-color: #f1e6e2;
	color: #707070;
	font-size: 13px;
}

.footer-container {
	display: grid;
	gap: 50px;
	justify-items: center;
	
	background-color: #f1e6e2;
}

@media (min-width: 768px) {
	.footer-container {
		grid-template-columns: auto auto;
		grid-template-rows: auto auto auto;
		gap: 20px;
		
	}

	.footer-container > .footer-site {
		margin-bottom: 20px;
		
	}

	.footer-container > *:not(.footer-sns) {
		justify-self: start;
	}
	
	.footer-container > .footer-sns {
		grid-column: 2;
		grid-row: 1 / 4;
		justify-self: end;
		align-self: center;
	}
}


/* フッター：SNSメニュー */
.footer-sns {
	display: flex;
	gap: 24px;
	font-size: 24px;
}

.footer-sns a {
	display: grid;
	place-items: center;
	width: 36px;
	aspect-ratio: 1 / 1;
	background-color: #cccccc;
	color: #ffffff;
	clip-path: circle(50%);
}

@supports not (aspect-ratio: 1 / 1) {
	.footer-sns a {
		height: 36px;
	}
}


/* フッター：テキストメニュー */
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}


/* 記事 */
.entry {
	padding-bottom: var(--v-space);
	background-color: #ffffff;
}

.entry-img img {
	width: 100%;
	max-height: 400px;
	object-fit: cover;
	margin-bottom: calc(var(--v-space) * 2 / 3);
}

.entry .w-container {
	max-width: 720px;
}

.entry .heading-decoration {
	font-size: clamp(30px, 6.25vw, 48px);
}

.entry-container {
	font-size: clamp(16px, 2.4vw, 18px);
}

.entry-container :where(h1, h2, h3, h4, h5, h6, p, figure, ul) {
	margin-top: revert;
	margin-bottom: revert;
	padding: revert;
	list-style: revert;
}

.entry-container p {
	margin: 1.8em 0;
}

.entry-container > :first-child {
	margin-top: 0;
}

.entry-container > :last-child {
	margin-bottom: 0;
}


/* プラン */
.plans {
	padding: var(--v-space) 0;
	background-color: #e9e5e9;
}

.plans-container {
	display: grid;
	gap: 27px;
}

@media (min-width: 768px) {
	.plans-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* プラン：カード */
.plan {
	display: flex;
	flex-direction: column;
	padding: 60px 27px;
	border-radius: 20px;
	background-color: #ffffff;
}

.plan h3 {
	margin-bottom: 38px;
	font-family: "Montserrat", sans-serif;
	font-size: 38px;
	font-weight: 400;
}

.plan .desc {
	margin-bottom: 38px;
}

.plan .price {
	margin-top: auto;
	margin-bottom: 22px;
	font-size: 26px;
	font-weight: bold;
}

.plan .btn {
	width: auto;
}


a {
    text-decoration: none;
    color: #666666;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}





.news {
  padding: 30px 0;
  background: #ffffff;

  margin-bottom: 0px;
  padding-bottom: 0px;

  color: #666666;
}


.inner {
  width: 80%;
  background-color: #fff;
  margin: 0 auto;
  padding: 65px 0 100px;
}


.sub_ttl {
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
}

#recommend {
	font-size: 30px;
	text-align: center;
	margin-bottom: 40px;

	margin-top:-100px;
	padding-top:100px;
  }

 
#news {
	font-size: 30px;
	text-align: center;
	margin-bottom: 40px;

	margin-top:-100px;
	padding-top:100px;
  }
 
   
#contact {
	font-size: 30px;
	text-align: center;
	margin-bottom: 40px;

	margin-top:-100px;
	padding-top:100px;
  }
 
  #access {
	font-size: 30px;
	text-align: center;
	margin-bottom: 40px;

	margin-top:-100px;
	padding-top:100px;
  }

  #toiawase_form {
	font-size: 30px;
	text-align: center;
	margin-bottom: 40px;

	margin-top:-100px;
	padding-top:100px;
  }

.shop_all {
	font-size: 15px;
	text-align: right;
	margin-right: 200px;
}  

/* ここからがニュース記事のCSS */

.news_list {
  margin: 0 5%;

  margin-bottom: -40px;
}

.news_list_item {
  padding: 25px 0;
  border-bottom: 1px solid #E6E6E6;
  
}

.news_list_item:first-child {
  border-top: 1px solid #E6E6E6;
}
.news_list_item a {
 position: relative;
 display: flex;
 padding-right: 30px;
}

.news_list_date {
  font-size: 15px;
  display: flex;
  margin-right: 15px;
  align-items: center;
}

.news_item {
  background: #ebae08;
  border-radius: 10px;
  width: 6em;
  /* 親要素の文字サイズを基準 */
  text-align: center;
  margin-left: 20px;
  color:#ffffff;
}

.arrow {
  width: 25px;
  height: 1px;
  background: #707070;
  position: absolute;
  top: 50%;
  right: 0;
}

.arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #707070;
  transform: rotate(45deg);
  position: absolute;
  right: 0px;
  bottom: 2px;
}


@media screen and (max-width: 1024px) {
    .news_list_item a {
        display: block;
    }
}

@media screen and (max-width: 769px) {
    .news_list_item a  {
        font-size: 14px;
    }


}
@media screen and (max-width: 480px) {
    .arrow {
        display: none;
    }
    .news_list_item a {
        padding-right: 0;
    }
}