@charset "UTF-8";
/* CSS Document */
/* -----共通部分----- */
html {
  font-size: 100%;
}
body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  line-height: 1.7;
  color: #432;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
/* -----header----- */
.logo {
  width: 210px;
  margin-top: 20px;
}
.main-nav {
  display: flex;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-top: 34px;
  list-style: none;
}
.main-nav li {
  margin-left: 36px;
}
.main-nav a {
  color: #432;
}
.main-nav a:hover {
  color: #0bd;
}
.page-header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.wrapper { /* wrapperは、全体サイズでよく使われる名前 */
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%;
}
.home-content {
  text-align: center;
  margin-top: 10%;
}
.home-content p {
  font-size: 1.125rem;
  margin: 10px 0 42px;
}
/* 見出し */
.page-title {
  font-size: 5rem;
  font-family: 'philosopher', serif;
  text-transform: uppercase;
  font-weight: normal;
}
/* ボタン*/
.button {
  font-size: 1.375rem;
  background: #0bd;
  color: #FFF;
  border-radius: 5px; /* 枠の角を丸くする */
  padding: 18px 32px;
}
.button:hover {
  background-color: #0090aa;
}
.big-bg {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
#home {
  background-image: url("../images/main-bg.jpg"), linear-gradient(#c9ffbf, #ffafbd);
  background-blend-mode: luminosity;
  min-height: 100vh;
}
#home .page-title {
  text-transform: none;
}
/* -----neewsページ---- */
#news {
  background-image: url("../images/news-bg.jpg");
  height: 270px;
  margin-bottom: 40px;
}
#news .page-title {
  text-align: center;
}
/* -----共通footer---- */
footer {
  background: #432;
  text-align: center;
  padding: 26px 0;
}
footer p {
  color: #fff;
  font-size: 0.875rem;
}
.news-contents {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
/*-----newsページ article-----*/
article {
  width: 74%;
}
aside {
  width: 22%;
}
.post-info {
  position: relative;
  padding-top: 4px;
  margin-bottom: 40px;
  /* position:relative;はabsoluteとセットで使う。relativeは配置したい領域に設定 */
}
.post-date {
  background-color: #0bd;
  border-radius: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  font-size: 1.625rem;
  text-align: center;
  position: absolute; /* position:absolute;はrelativeの領域内で動くことができ、top,leftと配置したい位置を記述。※relativeを設定しない場合は、top:0;は1番上のheaderの領域に位置してしまう。 */
  /* z-index:は、relative、absoluteしないと使えない */
  top: 0;
  padding-top: 10px;
}
.post-date span {
  font-size: 1rem;
  border-top: 1px rgba(255, 255, 255, 5) solid;
  padding-top: 6px;
  display: block;
  width: 60%;
  margin: 0 auto;
  /* spanは文字装飾に使われるタグ。<p>も<span>もインライン要素で横並びになってしまう。なので、<span>タグをdisplay: block;を使うことによって<span>タグの文字部分を1段落下げている*/
}
.post-title {
  font-family: ”Yu Mincho”, ”YuMincho”, serif;
  font-size: 2rem;
  font-weight: normal;
}
.post-title, .post-cat {
  margin-left: 120px;
}
article img {
  margin-bottom: 20px;
}
article p {
  margin-bottom: 1rem;
}
/*-----newsページ aside----*/
.sub-title {
  font-size: 1.375rem;
  padding: 0 8px 8px;
  border-bottom: 2px #0bd solid;
  font-kerning: normal;
}
aside {
  padding: 12px 18px;
}
.sub-menu {
  margin-bottom: 60px;
  list-style: none;
}
.sub-menu li {
  border-bottom: 1px #ddd solid;
}
.sub-menu a {
  color: #432;
  padding: 10px;
  display: block;
}
.sub-menu a:hover {
  color: #0bd;
}
article {
  width: 60%;
  order: 2;
}
aside {
  width: 22%;
  order: 1;
}
.ad {
  order: 3;
}
/*-----menuページ----*/
#menu {
  background-image: url("../images/menu-bg.jpg");
  min-height: 100vh;
}
.menu-content {
  max-width: 560px;
  margin-top: 10%;
}
.menu-content .page-title {
  text-align: center;
}
.menu-content p {
  font-size: 1.125rem;
  margin: 10px 0 0;
}
.grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  /*----- repeat(3, minmax(240px, 1fr))で、グリッドの繰り返し指定。minmax(240px, 1fr)により、「最小値240px、最大値１frを指定」----*/
  margin-top: 4%;
  margin-bottom: 50px;
}
.big-box {
  grid-column: 1/3; /* gridの縦軸 */
  grid-row: 1/3; /* gridの横軸 */
}
.big-box img {
  height: 94%;
  width: 100%;
  object-fit: cover; /* 画像の横伸びなどを補正 */
}
/*-----contactページ----*/
#contact {
  background-image: url("../images/contact-bg.jpg");
  min-height: 100vh;
}
from div {
  margin-bottom: 14px;
}
label {
  display: block;
  margin-bottom: 10px;
  font-size: 1.125rem;
}
input[type="text"], input[type="email"], textarea {
  background: rgba(255, 255, 255, .5);
  border: 1px #fff solid;
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
}
input[type="text"], input[type="email"] {
  width: 100%;
  max-width: 240px;
}
textarea {
  width: 100%;
  max-width: 480px;
  height: 6rem;
}
input[type="submit"] {
  border: none;
  cursor: pointer;
  line-height: 1;
}
#location{
	padding: 4% 0
}
#location .wrapper {
  display: flex;
  justify-content: space-between;
}
.location-info {
  width: 22%;
}
.location-info address {
  padding: 12px 10px;
}
.location-map {
  width: 74%;
}
iframe {
  width: 100%;
}
#sns{
	background: #faf7f0;
	padding: 4% 0;
}
#sns .wrapper{
	display: flex;
	justify-content: space-between;
}
#sns .sub-title{
	margin-bottom: 30px;
}
.sns-box{
	width: 30%;
}






