@charset "UTF-8";
/* 変数 */
:root {
  /* 左右の余白 */
  --side: 6vw;
}
/* サイズの基準： 1rem = 100px */
:root {
  font-size: 100px;
}
@media screen and (min-width: 768px), print {
  :root {
    font-size: 7.32vw;
  }
}
/* テキストの基本設定 */
body {
  color: #333;
  font-size: 0.16rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
}
.sp-no {
  display: none !important;
}
.pc-no {
  display: block !important;
}
@media screen and (min-width: 768px), print {
  .sp-no {
    display: block !important;
  }
  .pc-no {
    display: none !important;
  }
}
/* リセット / ノーマライズ / サニタイズ */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
figure {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* 背景 */
body {
  background-color: #f7e9e1;
}
/* ヒーロー */
.hero {
  background-image: url("images/top_mv01.jpg");
  background-position: center;
  background-size: cover;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero > p {
  font-size: 0.26rem;
  letter-spacing: 3px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 160px;
  left: var(--side);
}
html,
body,
.hero {
  height: 100%;
}
body {
  overflow-y: scroll;
}
@media screen and (min-width: 768px), print {
  .hero {
    justify-content: flex-end;
  }
  .hero h1 {
    width: 50%;
    text-align: center;
  }
}
/* ヒーロー： 矢印 */
.hero {
  position: relative;
}
/* ヘッダー */
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  padding-left: var(--side);
  padding-right: var(--side);
}

/* ヘッダー： サイト名 */
.site img {
  width: 2rem;
}
/* ヘッダー： LINEボタン */
.btn_line {
  position: absolute;
  top: 50px;
  right: 0;
}
.btn_line img {
  width: 46px;
}
@media screen and (min-width: 768px), print {
  .site img {
    width: 2.4rem;
  }
  .btn_line img {
    width: 100%;
  }
}
/* ナビゲーションボタン */
.nav-button {
  box-sizing: content-box;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  width: 29px;
  height: 20px;
  overflow: visible; /* IE対応 */
  cursor: pointer;
  color: #fff;
}
.nav-button::before,
.nav-button::after {
  content: "";
  display: block;
  height: 1px;
  background-color: currentColor;
  transform: translateY(10px);
  transition: 0.3s ease-in-out;
}
.nav-button::before {
  transform: translateY(-10px);
  box-shadow: 0 10px currentColor;
}

@media (max-width: 767px) {
  /* ナビゲーションボタン（閉じるボタン） */
  .open .nav-button {
    z-index: 1000;
  }
  .open .nav-button::before {
    transform: rotate(-45deg);
    box-shadow: none;
  }
  .open .nav-button::after {
    transform: rotate(45deg);
    box-shadow: none;
  }
  /* ナビゲーションメニュー: （開いた状態） */
  html.open,
  .open body {
    height: 100%;
    overflow: hidden;
  }
  .open .header {
    position: relative;
    margin-bottom: -100px;
  }
  .open .nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .open .nav ul {
    margin-bottom: 10vh;
    list-style: none;
  }
  .open .nav li:not(:last-child) {
    margin-bottom: 20px;
  }
}
/* ナビゲーションメニュー（閉じた状態） */
.nav {
  width: 0;
  height: 0;
  position: absolute;
  left: 100%;
  overflow: hidden;
  color: transparent;
  transition: 0.5s ease-in-out;
}
/* ナビゲーションメニュー（PC）*/
@media screen and (min-width: 768px), print {
  .nav-button {
    display: none;
  }
  .nav {
    position: relative;
    left: auto;
    width: auto;
    height: auto;
  }
  .nav ul {
    display: flex;
    list-style: none;
    color: #fff;
  }
  .nav ul li:not(:first-child) {
    margin-left: 0.55rem;
  }
  .nav li {
    text-align: center;
  }
  .nav li span {
    display: block;
    font-size: 0.14rem;
  }
}
/* ---------- コンテンツ  ----------  */
/* コンテナ */
.container {
  padding: 0.68rem var(--side);
}
@media screen and (min-width: 768px), print {
  .container.menu,
  .container.news {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
/* コンテナ： タイトルとサブタイトル */
.container h2 {
  font-family: "Lora", serif;
  margin-bottom: 30px;
  font-size: 0.26rem;
  letter-spacing: 0.179em;
  text-transform: uppercase;
  color: #9a3e4b;
}
@media screen and (min-width: 768px), print {
  .container h2 {
    font-size: 0.42rem;
  }
}
/* フッター */
.footer {
  background-color: #9a3e4b;
  color: #fff;
}
.footer_inner {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: var(--side);
  padding-right: var(--side);
}
.footer_logo {
  text-align: center;
  padding-bottom: 20px;
}
.footer_logo img {
  width: 2.2rem;
}
@media screen and (min-width: 768px), print {
  .footer_box {
    display: flex;
    align-items: flex-end;
    line-height: 1.5;
    margin-top: 60px;
  }
  .footer_box > div:last-of-type {
    margin-left: auto;
  }
  .footer_logo {
    padding-bottom: 0;
    margin-right: 30px;
  }
}
/* TOPコンテンツ */
.btn {
  margin-top: 20px;
}
.btn_center a {
  margin-left: auto;
  margin-right: auto;
}
.btn a {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  padding: 0.1rem 0.4rem;
  font-weight: bold;
  border: 2px solid white;
  color: white;
  border-radius: 100vh;
  transition: 0.5s;
  background: #9a3e4b;
}
.btn a:hover {
  color: #fff;
  background: #9a3e4b;
}
.btn_w a {
  border: 2px solid #fff;
  color: #fff;
}
.btn_w a:hover {
  color: #9a3e4b;
  background: #fff;
}

@media screen and (min-width: 768px), print {
  .btn a {
    width: 320px;
  }
}
.concept_box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.concept_box_txt p {
  font-weight: bold;
}
@media screen and (min-width: 768px), print {
  .concept_box {
    justify-content: center;
    align-items: center;
  }
  .concept_box > div {
    flex: 1;
  }
  .concept_box_img > img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .concept_box_txt {
    margin-left: 30px;
  }
  .concept_box_txt p {
    line-height: 2.8;
    letter-spacing: 2px;
  }
}

.about_box {
  background-color: #9a3e4b;
  color: #fff;
}
.about_box h2 {
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0;
}
.about_box_img {
  width: 100%;
  height: 300px;
  background-image: url(images/top_about_bg.jpg);
  background-size: cover;
  background-position: center;
}

.message h2 {
  text-align: center;
  margin: 60px 0 30px 0;
}

.message p {
  text-align: center;
}
.about .container {
  display: flex;
  justify-content: center; /* 中央寄せ */
  margin: 10px auto;
}
.about .container .image {
  width: 80%; /* 画面幅の80% */
  max-width: 800px; /* 大きすぎないよう上限を設定（任意） */
  height: auto; /* アスペクト比を保つ */
}

/* スマホ向け調整 */
@media (max-width: 600px) {
  .image-container img {
    width: 95%; /* スマホではより広く表示 */
    max-width: none;
  }
}

.animation h2 {
  text-align: center;
  margin: 60px 0 30px 0;
}

.animation .container {
  display: flex;
  justify-content: center; /* 中央寄せ */
  margin: 10px auto;
}

/* スマホ向け調整 */
@media (max-width: 600px) {
  .image-container img {
    width: 95%; /* スマホではより広く表示 */
    max-width: none;
  }
}

@media screen and (min-width: 768px), print {
  .about_box {
    display: flex;
  }
  .about_box_img {
    height: auto;
  }
  .about_box h2 {
    font-size: 0.32rem;
  }
}
.top_nayami h2 {
  line-height: 1.4;
}
.nayami_box {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  margin-top: -20px;
}
.nayami_box + .nayami_box {
  margin-top: 10px;
}
.nayami_box > li {
  margin-top: 20px;
  width: calc((100% - 20px) / 2);
}
@media screen and (min-width: 768px), print {
  .top_nayami h2 {
    text-align: center;
    font-size: 0.32rem;
  }
  .nayami_box {
    justify-content: center;
    margin-right: -20px;
  }
  .nayami_box > li {
    width: 257px;
    margin-right: 20px;
  }
}
.lineup_box {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  margin-top: -20px;
}
.lineup_box > li {
  margin-top: 20px;
  width: calc((100% - 20px) / 2);
}
.lineup_box > li p {
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 768px), print {
  .lineup_box > li {
    margin-top: 20px;
    width: calc((100% - 80px) / 4);
  }
  .lineup_box > li img {
    width: 100%;
  }
}
.top_voice {
  background-image: url(images/top_voice_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  color: #fff;
}
.top_voice h2 {
  color: #fff;
}

.voice_box_img {
  text-align: center;
}
.voice_box_img > img {
  width: 100%;
  height: auto;
}
.voice_box + .voice_box {
  margin-top: 30px;
}
.voice_box h3 {
  padding: 10px 0;
}
@media screen and (min-width: 768px), print {
  .voice_box {
    display: flex;
  }
  .voice_box_img {
    flex: 0 0 270px;
  }
  .voice_box_txt {
    flex-grow: 1;
    margin-left: 30px;
  }
  .voice_box + .voice_box {
    margin-top: 60px;
  }
}
.top_access h3 {
  margin-top: 20px;
}
.map {
  margin-top: 30px;
}
@media screen and (max-width: 767px), print {
  .map {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
  }
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 768px), print {
  .map iframe {
    width: 100%;
    height: 420px;
  }
}
/* メリット */
.top_merit .btn {
  margin-top: 90px;
}
.alternate .alternate__thumb {
  margin-left: calc(var(--side) * -1);
  margin-right: 0;
}
.alternate._reverse .alternate__thumb {
  margin-right: calc(var(--side) * -1);
  margin-left: 0;
}
.alternate__ttl {
  margin-bottom: 20px;
  color: #9a3e4b;
  font-size: 0.2rem;
}
@media screen and (min-width: 768px), print {
  .alternate__ttl {
    font-size: 0.24rem;
  }
}
.alternate {
  display: flex;
  flex-direction: column-reverse;
}
.alternate + .alternate {
  margin-top: 30px;
}
.alternate__body {
  padding: 30px;
  background: #f2dfd8;
}
.top_merit > section:last-of-type .alternate__body {
  /* background-color: inherit; */
}
/*.alternate__ttl {
	text-align: center;
	font-size: 18px;
	letter-spacing: 0.2em;
}
.alternate__sttl {
	display: block;
	font-size: 10px;
}
.alternate__txt {
	margin-top: 20px;
	line-height: 1.7;
}*/
.alternate__thumb img {
  max-width: none;
  width: 100%;
}
/*ずらし用の指定*/
@media screen and (max-width: 767px) {
  .alternate__body {
    margin-top: -40px;
    padding-top: 60px;
  }
  .alternate._normal .alternate__thumb {
    margin-left: -20px;
  }
  .alternate._normal .alternate__body {
    margin-right: -20px;
  }
  .alternate._reverse .alternate__thumb {
    margin-right: -20px;
  }
  .alternate._reverse .alternate__body {
    margin-left: -20px;
  }
}
@media screen and (min-width: 768px), print {
  .alternate {
    flex-direction: row-reverse;
    /* border: 1px solid red; */
  }
  .alternate + .alternate {
    margin-top: 100px; /*後続ボックスとの余白を確保*/
  }
  .alternate._reverse {
    flex-direction: row;
  }
  .alternate__body {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .alternate__thumb {
    width: 60%;
  }
  .alternate__thumb img {
    height: 100%;
    object-fit: cover;
  }
  /*ずらし用の指定*/
  /*【補足】比較のためあえてずらす前の指定とは別にずらすために追加したプロパティ類を分けて記述しています。実際にはセレクタを統合する必要があります*/
  .alternate__body {
    position: relative;
    top: 40px; /*元の位置を基準に単純に40px下にずらす*/
    width: calc(40% + 80px); /*あらかじめ80px分広げる*/
  }
  .alternate__thumb {
    position: relative;
    z-index: 1;
  }
  .alternate._normal .alternate__body {
    margin-left: -80px; /*ネガティブマージンで広げた分を相殺*/
    padding-left: 110px; /*重なり分の余白を確保*/
  }
  .alternate._reverse .alternate__body {
    margin-right: -80px;
    padding-right: 110px;
  }
}
.top_contact {
  background-image: url("images/top_contact_bg.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
  position: relative;
}
.top_contact h2 {
  color: #fff;
}
.top_contact .btn {
  margin-top: 20px;
}
.top_contact::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.top_contact > * {
  position: relative;
  z-index: 2;
}
.top_contact dl {
  display: flex;
  flex-wrap: wrap;
  width: 2.16rem;
  margin: 0.23rem auto 0;
  text-align: left;
}
.top_contact dt {
  flex: 0 0 4em;
}
.top_contact dd {
  flex: 0 0 auto;
  width: calc(100% - 4em);
  margin-left: 0;
  white-space: nowrap;
  overflow: visible;
}
.top_contact h2 + p {
  font-size: 0.32rem;
  font-weight: bold;
}
.bnr_line {
  margin-top: 30px;
}
.bnr_line img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
