@charset "utf-8";

/* ボディ設定 */
body {
  font-family: "Noto Serif JP", "源ノ明朝 JP", serif;
  font-size: 16px;
  background: white;
  color: #222;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.container {
  max-width: 940px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

#contents .top2-img {
  width: 100%;
  max-width: 1280px;
  margin: auto;
}

/* ハンバーガーメニュー位置 */
.header {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 55px;
}

.logo {
  font-size: 24px;
  margin: 0 auto;
}

/* ここから下がハンバーガーメニューに関するCSS */
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: #CFC6B6;
  right: 0;
  z-index: 100;
  position: fixed;
  /* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked~.drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked~.drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked~.drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  background-color: aliceblue;
  font-family: "Yomogi", cursive;
  color: #8A8A8A;
  padding: 0 40px;
}

.nav_list li {
  border-bottom: 3px #CFC6B6 dotted;
  margin-bottom: 30px;
  margin-left: 15px;
  padding-bottom: 10px;
  font-size: 16px;
  text-align: center;
}

.nav_list li:last-child {
  margin-bottom: 0;
}

.nav_list li:first-of-type {
  border-top: 3px #CFC6B6 dotted;
  padding-top: 30px;
  margin-top: 30px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked~.nav_content {
  left: 0;
  /* メニューを画面に入れる */
}

/* リンク設定*/
a {
  color: #8A8A8A;
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  color: #CFC6B6;
}

a:hover img {
  opacity: 0.8;
}

/* ナビ設定 */
#gnav {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 10px;
  padding-right: 40px;
}

.gnav a {
  display: block;
  padding: 10px;
  text-align: center;
  background: #A2C4C9;
  color: #fff;
  border-radius: 4px;
}

.gnav a:hover {
  color: #CFC6B6;
  opacity: 0.8;
}

.gnav li {
  display: inline-block;
  width: 100px;
  margin: 0 10px;
}

@media screen and (max-width: 860px) {
  #gnav {
    display: none;
  }
}

/* ヘッダー */
#index .header {
  position: relative;
  height: calc(100vh - 60px);
  background-image: url(../img/top1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@keyframes image_anime {
  0% {
    background-image: url(../img/top1.jpg);
  }

  33% {
    background-image: url(../img/top-cafegallery.jpg);
  }

  66% {
    background-image: url(../img/top3.jpg);
  }

  100% {
    background-image: url(../img/top1.jpg);
  }
}

#index .header-title .header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 640px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  text-align: center;
}

/* メイン */
#contents h1 {
  font-size: 20px;
  margin-top: 100px;
  margin-bottom: 50px;
}

h2 {
  font-size: 18px;
}

.col2_txt h2,
.col3_txt h2,
.col4_txt h2,
.intro-reserve h2 {
  border-bottom: 3px #CFC6B6 dotted;
}

#intro {
  width: 100%;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 10px;
  line-height: 2;
}

main p {
  width: 100%;
  padding-left: 0;
  text-align: left;
  font-size: 13px;
}

.intro p {
  margin: 0 auto;
  text-align: left;
  font-size: 15px;
  margin-bottom: 40px;
}

#contents .main-txt p {
  width: 50%;
  margin-bottom: 15px;
}

#contents .main-txt p:last-child {
  padding-bottom: 50px;
}

.more::after {
  display: inline-block;
  content: "";
  vertical-align: middle;
  padding-right: 40px;
  background-image: url(../img/read.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 10px;
  width: 30px;
}

.more {
  font-size: 14px;
}

#ep {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  align-items: flex-end;
  text-align: center;
}

#ep .col2_txt {
  width: 35%;
}

#ep .col2_txt h2 {
  font-size: 16px;
  margin-bottom: 60px;
}

#ep .col2_img {
  width: 65%;
  aspect-ratio: 2/1.5;
}

#ep .col2_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#cfg {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 50px;
  align-items: flex-end;
  text-align: center;
}

#cfg .col3_txt {
  width: 35%;
}

#cfg .col3_txt h2 {
  font-size: 16px;
  margin-bottom: 60px;
}

#cfg .col3_img {
  width: 65%;
  aspect-ratio: 2/1.5;
}

#cfg .col3_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}

.myslider2 {
  padding: 0;
}

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

  #contents .main-txt p:last-child {
    padding-bottom: 50px;
  }

}

/* フッター */
.footer-info-ph {
  padding-top: 80px;
}

.footer-logo {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  width: 50px;
  margin-bottom: 10px;
}

.footer-logo2 {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  width: 250px;
  margin-bottom: 20px;
}

.footer-info-data {
  font-family: "Yomogi", cursive;
  color: #8A8A8A;
  margin-bottom: 20px;
}

.footer-info-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  line-height: 1.5em;
}

.footer-info-list dt {
  width: 40%;
  text-align: right;
}

.footer-info-list dd {
  width: 60%;
  text-align: left;
  padding-left: 20px;
}

.pagetop {
  margin: 0;
  margin-right: 30px;
  position: fixed;
  right: 0;
  bottom: 10px;
  z-index: 1;
}

.pagetop img {
  width: 15px;
}

.pagetop a {
  color: #fff;
}

.pagetop a:hover {
  color: #CFC6B6;
}

.copyright {
  margin-bottom: 70px;
}

.f-reserve {
  font-size: 18px;
  font-weight: normal;
  background-color: #A2C4C9;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.3em;
  opacity: 0.9;
}

.f-reserve a {
  color: #fff;
}

.f-reserve a:hover {
  color: #CFC6B6;
}

.icon-insta i {
  margin-top: -20px;
}

/* ここからabout.html ～～～～～～～～～～～～～～～～～～～～～～*/
.about .logo,
.reserve .logo,
.reserve2 .logo,
.experience .logo,
.cafegallery .logo {
  width: 50px;
  position: absolute;
  left: 0;
  top: 0;
  margin: 5px;
}

#title h2 {
  width: 100%;
  margin: 60px auto;
  font-size: 18px;
}

#contents .txt {
  font-size: 13px;
  line-height: 2;
  width: 90%;
  margin: 20px auto;
}

#intro .intro-about p {
  padding-left: 40px;
  padding-right: 40px;
}

/* ここからexperience.html ～～～～～～～～～～～～～～～～～～～～～～*/
#experience .logo {
  width: 50px;
  position: absolute;
  left: 0;
  top: 0;
}

#intro h2 {
  width: 100%;
  margin: 50px 0 10px 0;
}

#intro .intro-experience p {
  padding-bottom: 40px;
}

#txt1 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  text-align: center;
  margin-bottom: 50px;
}

#txt1>div,
#txt2>div,
#txt3>div {
  width: 50%;
}

.col2_txt,
.col3_txt {
  width: 35%;
}

.col2_txt h2,
.col3_txt h2 {
  margin-bottom: 20px;
}

.col2_txt p,
.col3_txt p {
  width: 100%;
  text-align: left;
  padding: 0 10px;
}

.col2_img,
.col3_img {
  width: 65%;
  aspect-ratio: 2/1.5;
}

#txt1 .col2_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#txt2 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  text-align: center;
  margin-bottom: 50px;
}

#txt2 .col3_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-info {
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  border-top: 3px #CFC6B6 dotted;
}

.experience-info dt {
  width: 20%;
  text-align: right;
  padding-top: 20px;
}

.experience-info dd {
  width: 80%;
  text-align: left;
  padding-left: 20px;
  padding-top: 20px;
}

.experience-info:first-child {
  padding-top: 50px;
}

/* ここからcafegallery.html ～～～～～～～～～～～～～～～～～～～～～*/
.txt1,
.txt2,
.txt3 {
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  text-align: center;
}

.txt3 {
  margin-bottom: 20px;
}

.txt1>div,
.txt2>div,
.txt3>div {
  width: 60%;
}

.col4_txt p {
  text-align: left;
  margin: 30px;
}

.col2_right>p {
  margin: 0 0 0 60px;
}

.txt3 p {
  padding: 20px;
}

.menu li {
  list-style-type: none;
}

.menu-item {
  text-align: left;
  margin-left: 40px;
  font-size: 13px;
}

.menu-item li:last-child {
  margin-top: 10px;
}

#intro .intro-cafegallery p {
  padding-bottom: 40px;
}

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

  .txt1,
  .txt2,
  .txt3 {
    display: block;
  }

  .menu {
    margin: 0 auto;
  }

  .menu-item {
    text-align: left;
    margin-left: 0px;
    padding-left: 20px;
    padding-bottom: 10px;
  }

  .txt1>div,
  .txt2>div,
  .txt3>div {
    margin: 0 auto;
  }

  .col2_right>p {
    margin: 0;
  }

  .menu .col3_txt h2 {
    padding-top: 60px;
  }

  .menu .col4_txt h2 {
    padding-top: 60px;
  }

  .menu .col2_txt h2 {
    padding-top: 50px;
  }

}



/* ここからreserve.html ～～～～～～～～～～～～～～～～～～～～～～～*/
#intro ol {
  text-align: left;
}

.intro ol {
  font-size: 13px;
  line-height: 2;
  width: 100%;
  margin: 0 auto;
}

.mail p {
  display: inline;
  font-size: 13px;
}

#reserve .txt {
  line-height: 2;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 50px;
}

/* .intro-reserve h2 {
  border-bottom: 3px #CFC6B6 dotted3px;
} */

.map {
  max-width: 85%;
  margin: 0 auto;
  padding-top: 40px;
}

.map iframe {
  width: 100%;
  aspect-ratio: 3/2;
}

#intro .intro-reserve p {
  margin-top: 0;
}

#intro .intro-reserve p:last-child {
  margin-bottom: 50px;
}


/* ここからreserve2.html ～～～～～～～～～～～～～～～～～～～～～～～*/

.entrytable {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: separate;
  table-layout: fixed;
}

.entrytable small {
  color: #8A8A8A;
}

.entrytable th,
.entrytable td {
  font-size: 11px;
  padding: 10px 20px;
  border: 1px solid #8A8A8A;
}

.entrytable th {
  width: 10em;
  background-color: #CFC6B6;
  text-align: left;
}

.entrytable input[type="text"] .entrytable input[type="email"] .entrytable textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #A2C4C9;
  box-sizing: border-box;
  font-size: 1em;
}

.entrytable textarea {
  width: 100%;
}

.entrytable input[type="text"]:focus,
.entrytable input[type="email"]:focus,
.entrytable input[type="date"]:focus,
.entrytable textarea:focus {
  background-color: #f5f3ef;
  outline: none;
  border-left: 5px solid #CFC6B6;
}

label,
input,
textarea,
select {
  cursor: pointer;
}

input,
textarea,
select {
  width: 100%;
}

input[name="date"]+p {
  display: flex;
  justify-content: center;
  margin: 5px 0 0 0;
}

input[type="radio"] {
  width: 2em;
  margin-left: 15px;
}

.entrybtn {
  text-align: center;
  margin-bottom: 50px;
}

.entrybtn input {
  width: 100px;
  margin: 15px;
  padding: 10px;
  margin-right: 30px;
  background: #fff;
  border: 2px solid #8A8A8A;
  border-radius: 4px;
  font-size: 1em;
  /* -webkit-appearance: none; */
}

.entrybtn input[type="submit"] {
  background: #CFC6B6;
}

.entrybtn input:hover {
  opacity: 0.7;
}

#entryform p {
  margin: 10px 0 0 10px;
}

.p-txt {
  width: fit-content;
  height: 150px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.privacy {
  margin-top: 40px;
  border-top: 1px solid #8A8A8A;
  padding-top: 30px;
  text-align: left;
}

.p-txt p,
.privacy p,
li,
dl {
  font-size: 13px;
  width: 95%;
}

.privacy dt {
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 1em;
  position: relative;
  padding-left: 1.5em;
}

.privacy dt::before {
  position: absolute;
  left: 0;
  top: 0;
}

.privacy dd {
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  box-sizing: border-box;
  font-size: 11px;
}

/* slick カスタム
---------------------------------*/

.slick-slide img {
  width: 100%;
}

.slick-prev:before,
.slick-next:before {
  color: #d8c7a0;
}

/* スクロール フェードイン
---------------------------------*/

/* 初期状態は透明にしておく */
.fade-in-up,
.fade-in-down,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: 0.5s;
}

/* 上がる */
.fade-in-up {
  transform: translate(0, 10px);
}

/* 下がる */
.fade-in-down {
  transform: translate(0, -10px);
}

/* 左へ */
.fade-in-left {
  transform: translate(10px, 0);
}

/* 右へ */
.fade-in-right {
  transform: translate(-10px, 0);
}

/* スクロールして画面内に入った時 */
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* デュレイ（アニメーションの開始を遅らせる） */
.delay01 {
  transition-delay: 0.1s;
}

.delay02 {
  transition-delay: 0.2s;
}

.delay03 {
  transition-delay: 0.3s;
}
