@charset "UTF-8";

/*共通部分*/
 html {
  font-size: 100%;
 }

 body {
  width: 100%; 
  max-width: auto ;
  background-color:white;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  line-height: 1.7 ;
  color: #432;
 }

 a {
   text-decoration: none;
 }

 img {
   max-width: 100%;
 }

 h1 {
   font-size: 200%;
  }

 h2  {
   font-size: 150%;
 }
 h3 {
    font-size: 1.3rem;
  }  
 h4 {
    font-size: 1.1rem;
  }

.cover {
  background-size: cover;
  background-position: center bottom;
  height: 800px;
}

.cover-home {
  background-image: url(../images/haikei1.png);
}

.sub-cover {
  background-size: cover;
  background-position: center bottom;
  height: 500px;
  margin-bottom: 4rem;
}


.page-title {
  font-size: 3rem;
  text-align: center;
  margin-top: 2rem;
  line-height: 1.4;
}

.heading-large{
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}

/* レイアウト */
  .align-center {
   text-align: center;
  }

.wrapper {
max-width: 1192px;
margin: auto;
padding: 0 1.5rem;
}

/* 見出し */
.font-english {
  font-family: 'Abril Fatface', cursive;
  font-weight: normal;
}

.page-title {
  font-size: 3rem;
  text-align: center;
  margin-top: 2rem;
  line-height: 1.4;
}

.about {
  max-width: 736px;
  padding: 0 1.5rem;
  margin: 3rem auto 4rem;
}

.about p {
  margin-bottom: 3rem;
}

/* ボタン */
.btn {
  display: inline-block;
  font-size: 1.5rem;
  background-color:darksalmon;
  color: black;
  padding: 0 1rem 0 1rem;
  border-radius: .88rem 1.8rem;
  transition: .5s;
  transition: background-color 1s ease-out 200ms;
}
.btn:hover {
  background-color:tomato;
  transition: 1s;
  color: white;
  scale: 1.1;
}

/* ヘッダー */
.page-header {
    padding-top: .5rem;
  }
.logo {
  height: 284px;
}

.logos {
  height: 184px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  font-size: 1.5rem;
  list-style: none;
}
.main-nav a {
  color: #432;
  position: relative;
}

.main-nav a:hover {
  color:#c9c2bc
}

/* ホバーライン設定--------------------------------------------------------------------- */
/* 下線のスタイル */
.main-nav a::after {
  background-color: #432; /* 下線の色 */
  bottom: -4px; /* 要素の下端からの距離 */
  content: ""; /* 要素に内容を追加 */
  height: 2px; /* 下線の高さ */
  left: 0; /* 要素の左端からの距離 */
  position: absolute; /* 絶対位置指定 */
  transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top; /* 変形の原点を右上に指定 */
  transition: transform .3s; /* 変形をアニメーション化 */
  width: 100%; /* 要素の幅 */
}
/* リンクにホバーした際の下線の表示 */
.main-nav a:hover::after {
  transform-origin: left top; /* 変形の原点を左上に指定 */
  transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}
/* ホバーライン設定--------------------------------------------------------------------- */

/* フッター */
.info {
  width: 100%;
  max-width: 544px;
  margin: auto;
  padding: 0 1.5rem;
  border-spacing: 0;
}
.info th,
.info td {
  border-bottom: 1px solid #c9c2bc;
}

.info th {
  text-align: left;
  font-weight: normal;
  padding: 1rem;
}
.info td {
  padding: 1rem;
}


.page-footer {
  background-image: url(../images/haikei3.png);
  background-size: cover;
  background-position: top;
  padding-top: 12rem;
}

.copylight {
  background-color: #432;
  text-align: center;
  padding: 2rem;
  margin-top: 6rem;
  color: #fff;
}

/* NEWS */
.cover-news {
  background-image: url(../images/subhaikei.png);
}

/* ブログ記事 */
.b-info {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.b-category {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}

.b-category a {
  color: #432;
  background-color: #bca199;
  border-radius: 8px;
  font-size: 0.8rem;
  padding: .5rem .8rem;
}

.blog {
  margin-bottom: 3rem;
}

.b-title {
  font-weight: normal;
  margin-bottom: 1.3rem;
}
.b-date {
  font-size: 0.8rem;
}

/* ＰＣ版-----------------------------------------------------------------------------------------------------------------------
------- */
@media (min-width: 800px) and (max-width: 1200px) {
  .cover-home {
    background-position: top;
    background-image: url(../images/haikei.png);
}
  }
  

@media screen and  (min-width:1200px) {
  /* 見出し */
.page-title {
  font-size: 5rem;
  }
.heading-large {
  font-size: 4rem;
}

/* ヘッダー */
.page-header {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
}
.main-nav {
  font-size: 2rem;
  }
}