@charset "UTF-8";
/* フォントメモ */

/* 
全角ゴシックアンティーク
.gothic{
  font-family: "Zen Kaku Gothic Antique", serif;
}

しっぽり明朝
.mincho{
  font-family: "Shippori Mincho B1", serif;
}

.cormorant {
  font-family: "Cormorant", serif;
  }

.outfit{
  font-family: "Outfit", sans-serif;
  }
  
} */

/* cssリセット */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  margin: 0 auto;
}

html,
body,
p,
dl,
dt,
summary,
ul,
li {
  margin: 0;
  padding: 0;
  color: #555;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1rem;
  font-weight: normal;
  line-height: 2;
}

h1,
h2,
h3,
h4,
h5 {
  color: #555;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

a:hover {
  opacity: 0.5;
}

ul li,
ol li {
  list-style: none;
}

img {
  max-width: 100%;
}

/* フォント設定 */
.cormorant {
  font-family: "Cormorant", serif;
}
.mincho {
  font-family: "Shippori Mincho B1", serif;
}
.open_suns {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.bold_open_suns {
  font-family: "Open Sans", sans-serif;
  font-weight: 700; /* bold*/
}
.bold_zenkaku {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
}
/* フォントサイズ設定 */
.text_size28 {
  font-size: 1.75em;
}
.text_size18 {
  font-size: 1.13em;
}

/* パンくずリスト */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin: 130px 0 0;
}
.breadcrumb li:not(:last-of-type)::after {
  content: ">";
  margin: 0 0.6em;
}

@media screen and (max-width: 1080px) {
  .breadcrumb {
    margin-top: 80px;
    padding-left: 10%;
  }
}

@media screen and (max-width: 600px) {
  .breadcrumb {
    padding-left: 5%;
  }
  .breadcrumb li {
    font-size: 14px;
  }
}

.main_heading {
  text-align: center;
  margin: 0 auto;
  font-family: "Cormorant", serif;
  font-size: 4.86em;
  line-height: 1;
}
.heading_ja {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 100px;
  color: #c4a46b;
  font-size: 1rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.intro_text {
  text-align: left;
}
.intro_wrap {
  width: 56%;
  max-width: 800px;
  margin: 0 auto;
}
.caption {
  margin-bottom: 40px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 2em;
  line-height: 1.66;
}
.text_break {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .main_heading {
    margin-top: 48px;
  }
  .intro_wrap {
    width: 80%;
  }
  .heading_ja {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 600px) {
  .intro_wrap {
    width: 90%;
  }
  .main_heading {
    font-size: 3em;
    line-height: 1;
  }
  .heading_ja {
    margin-top: 10px;
    margin-bottom: 40px;
  }
}
