@charset "utf-8";

/* --- 基本設定 --- */

body {
  margin: 0;
  padding: 0;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #4a4a4a;
  line-height: 1.8;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}


ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


/*---ヘッダー設定---*/
header {
  background: #fff;
  width: 100%;
  border-bottom: 1px solid #eee;
}

/* 親（container）ロゴとメニュー配置*/
header .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* ロゴ */
.logo {
  margin-right: 150px;
}

.logo img {
  display: block;
  width: 233px;
  height: auto;
}

/* ナビメニュー設定 */
.nav-pc {
  font-size: 14px;
}

.nav-pc ul {
  display: flex;
  gap: 30px;
  padding-left: 0;
}

.nav-pc a {
  color: #333;
  font-weight: 500;
}

.nav-pc a:hover {
  text-decoration: underline;
  opacity: 0.7;
}


/* ================
ハンバーガー設定
===================*/
.menu-trigger {
  display: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

/* ここまで=========*/


/* PC用・メインビジュアル*/
/*スライダーPC*/
.pc-slider {
  visibility: hidden;
}

.pc-slider.slick-initialized {
  visibility: visible;
}

.sp-slider {
  display: none;
}


.main-visual {
  display: block;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 1200 / 350;
  text-align: center;
  margin-top: 0;
}

.pc-slider .slick-prev,
.pc-slider .slick-next,
.sp-slider .slick-prev,
.sp-slider .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;

}

.pc-slider .slick-prev,
.sp-slider .slick-prev {
  left: 10px;
}

.pc-slider .slick-next,
.sp-slider .slick-next {
  right: 10px;
}

.pc-slider .slick-prev:before,
.pc-slider .slick-next:before,
.sp-slider .slick-prev:before,
.sp-slider .slick-next:before {
  color: #fff;
  font-size: 20px;
}


/* PC　LINEボタン*/
.LINE-button {
  display: inline-block;
  background-color: transparent;
  color: #13b852;
  text-decoration: none;
  border: 1px solid #13b852;
  font-size: 1.2vw;
  font-weight: bold;
  padding: 10px 15px;
  width: 9%;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

.LINE-button:hover {
  background-color: #35524e;
  border-color: #35524e;
  color: #ffffff;
  opacity: 1;
}

/* ================
レスポンシブ（ロゴ、メニュー、メイン）
===================*/
@media (max-width: 768px) {

  header .container {
    position: relative;
    width: 100%;
    height: 60px;

  }

  /*ロゴ*/
  .logo {
    position: absolute;
    top: 50%;
    left: 51%;
    transform: translate(-50%, -50%);
    width: 45%;
    height: auto;

  }

  /* スマホハンバーガーメニュー */
  .menu-trigger {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    left: 5px;
    z-index: 2;
    border: solid 1px #585656;
    border-radius: 4px;
    /*クリックした際のボタン周りの線を消す*/
    outline: none;
  }

  .menu-trigger span {
    position: absolute;
    left: 50%;
    width: 28px;
    height: 1px;
    background-color: #585656;
    /*menu-trigger内のspan全体を中心位置に揃える設定*/
    transform: translate(-50%, -50%);
  }

  .menu-trigger span:nth-of-type(1) {
    top: 25%;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 50%;
  }

  .menu-trigger span:nth-of-type(3) {
    top: 75%;
  }

  /*クリック後の表示設定*/
  .menu-trigger.active span:nth-of-type(1) {
    top: 50%;
    /* 変形設定左側傾け */
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }

  .menu-trigger.active span:nth-of-type(3) {
    top: 50%;
    /* 変形設定左側を上に傾け */
    transform: translate(-50%, -50%) rotate(45deg);
  }


  /*----- スマホメニュー ----- */
  .nav-pc {
    display: none;
    /* クリック前は消えている*/
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    margin: 0;
    padding: 90px 10% 0;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }

  .nav-pc.active {
    display: block;
    z-index: 1;
  }

  .nav-pc ul {
    display: block;
  }

  .nav-pc li {
    width: 100%;
    border-bottom: solid 1px #ccc;
  }

  .nav-pc li a {
    display: flex;
    align-items: center;
    padding: 5px 20px;
    color: #333;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    background: none;
  }

  .nav-pc li span {
    text-decoration: underline;
  }



  /* スマホメインビジュアル*/
  .main-visual {
    position: relative;
    width: 100%;
    margin: 0 auto;

  }

  .pc-slider {
    display: none;
  }

  .sp-slider {
    display: block;
    visibility: hidden;
  }

   /* slick起動・表示 */
  .sp-slider.slick-initialized {
    visibility: visible;
  }

  

  /* スマホ用・メインビジュアル内LINEボタン*/
  .LINE-button {
    font-size: 3.5vw;
    color: #fff;
    background-color: #48e685;
    border: 1px solid #48e685;
    display: inline-block;
    padding: 6px 12px;
    position: absolute;
    top: 55%;
    left: 50%;
    white-space: nowrap;
     width: auto;
  }
}

/* レスポンシブルここまで
===================*/


/*PC H1エリア*/
.intro-container {
  text-align: center;
  padding: 20px;
}

h1 {
  display: inline-block;
  font-size: 40px;
  line-height: 1.4;
  margin-top: 60px;
  margin-bottom: 30px;
  border-bottom: double 3px #333;
  padding-bottom: 10px;
}

/*どんな結婚スタイル～*/
h2 {
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: bold;
}

.intro-container,
p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
}



/* LINE相談の流れボタン */
.soudan-button {
  display: inline-block;
  background-color: #13b852;
  color: #fff;
  padding: 7px 30px;
  /* ボタンの大きさを調整 */
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

/* ================
main レスポンシブ
===================*/
@media (max-width: 768px) {
  .intro-container {
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;

  }

  h1 {
    font-size: 28px;
    margin-top: 20px;
    /* PCより余白を詰める */
    margin-bottom: 20px;
    line-height: 1.5;
    display: block;
    border-bottom: 2px double #333;
    padding-bottom: 15px;
    font-weight: normal;
    text-align: left;
  }

  /* 「どんな結婚スタイル〜」 */
  .intro-container h2 {
    font-size: 23px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.4;
    text-align: left;
  }

  p {
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 30px;
    text-align: left;

  }

  /* LINE相談ボタンの調整 */
  .soudan-button {
    width: 90%;
    font-size: 12px;
    padding: 12px 10px;
    line-height: 1.4;

  }
}

/* レスポンシブルここまで
===================*/
/*Concept・VOICE・Report画像の設定*/

.heading {
  padding: 40px 0;
  width: 100%;
}


.category-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 150px;
}

/* 共通・画像設定 */
.category-img {
  margin-bottom: 1px;
}

.category-img img {
  max-width: 240px;
  height: auto;
  display: block;
}

/*-コンセプト-、-こんなご相談～-設定*/
.category-box .heading-label {
  font-size: 16px;
  font-weight: normal;
  color: #333;
  margin: 0;
  letter-spacing: 0.1em;
}

/*---Conceptエリア設定---*/
.concept-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.concept-description {
  flex: 1;
  text-align: left;
}

/*Concept h3 12000組の実績*/
.concept-description h3 {
  font-size: 28px;
  margin-bottom: 30px;
  font-family: "Yu Mincho", "MS Mincho", serif;
}

.bold {
  font-weight: bold;
}

/*Concept p*/
.concept-description p {
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
}

.concept-box img {
  flex: 1;
  max-width: 50%;
  height: auto;
  object-fit: contain;
}


/* ================
concept レスポンシブ
===================*/
@media (max-width: 768px) {

  /*Concept・VOICE・Report画像のスマホ設定*/
  .heading {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .concept-box {
    display: block;
  }

  .concept-description h3 {
    font-size: 23px;
    line-height: 1.5;
    margin: 20px 0;
    white-space: normal;
  }

  .concept-description p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .concept-box img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }
}

/* レスポンシブここまで
===================*/


/*VOICE 吹き出しエリア*/
/*まとめアウターの設定*/
.outer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* 共通：一行のレイアウト */
.chat-row {
  display: flex;
  align-items: flex-start;
  /* アイコンを上に合わせる */
  margin-bottom: 30px;
  width: 100%;
}

/* 共通：アイコン */
.faceicon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.faceicon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* 共通：吹き出し本体 */
.chatting {
  position: relative;
  padding: 15px 20px;
  border: 1px solid #9b9579;
  border-radius: 15px;
  background-color: #fff;
  max-width: 60%;
  box-sizing: border-box;
}

.chatting p {
  margin: 0;
  line-height: 1.6;
  color: #4a4a4a;
  font-size: 15px;
  text-decoration: underline;
}

/* --- 左右共通の「丸」2つ設定 --- */
.chatting::before,
.chatting::after {
  content: "";
  transform: translateY(-50%);
  border: 1px solid #9b9579;
  border-radius: 50%;
  background-color: #fff;
}

/* 丸（大） */
.chatting::before {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 30%;
}

/* 丸（小） */
.chatting::after {
  width: 7px;
  height: 7px;
  position: absolute;
  top: 40%;
}

/* --- 左向き(left)の固有設定 --- */
.chat-row.left {
  flex-direction: row;
}

.chat-row.left .chatting {
  margin-left: 35px;
  /* 【修正】2つの丸のためのスペースを確保 */
}

/* 左側の大きい丸の位置設定 */
.chat-row.left .chatting::before {
  left: -20px;
}

/* 小さい丸の位置 */
.chat-row.left .chatting::after {
  left: -32px;
  /*-32px*/
}

/*  右の固有設定 */
.chat-row.right {
  flex-direction: row-reverse;
}

/* 2つの丸のためのスペース */
.chat-row.right .chatting {
  margin-right: 35px;

}

/* 右の丸の位置設定 */
/* 大きい丸位置 */
.chat-row.right .chatting::before {
  right: -20px;
}

/* 小さい丸位置 */
.chat-row.right .chatting::after {
  right: -32px;
}


/* REPORTエリア*/
/* —長崎家族婚花嫁レポート点線（画像設定は共通利用） */
.sub {
  border-bottom: dotted 1px #333;
  width: 100%;

}

/* h2 Wedding Ceremony（挙式プラン）・photo(フォトプラン） */
.plan-title {
  color: #222222;
  font-size: 28px;
  line-height: 1.5;
  font-weight: normal;
  margin: 0;
  text-align: center;
}

/* 挙式プラン・フォトプランタイトル背景 */
.plan-title-bar {
  background-color: #efefef;
  width: 100%;
  margin-top: 45px;
  padding: 15px 5px;
}

/* 家族挙式のスタイルも様々~設定 */
.plan-intro {
  text-align: center;
  font-size: 14px;
  color: #333;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, sans-serif;
  margin-bottom: 40px;
}



/*各プランエリア*/
/* セクション全体の基本設定 */
.wedding-plan {
  padding: 40px 0;
  color: #333;
}

/* コンテナを横並びに設定 */
.wedding-plan .container {
  display: flex;
  width: 80%;
  margin: 0 auto;
  gap: 40px;
  align-items: flex-start;
}

/* 左側画像エリア */
/* 画像（幅65%でキープ） */
.wedding-plan .image-box {
  flex: 0 0 65%;
}

.wedding-plan .plan-img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキストエリア */
.wedding-plan .content-box {
  flex: 1;
  min-width: 300px;
}

/* H4 「神社婚」「式場挙式プラン」などプラン名 */
.wedding-plan .title {
  font-size: 28px;
  margin: 0 0 5px 0;
  font-weight: normal;
  line-height: 1.5;
  border-bottom: dotted 1px #222222;
}


/* 説明文 */
.wedding-plan .description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, sans-serif;
}

/* ハッシュタグ */
.wedding-plan .hashtag {
  list-style: none;
  padding: 0;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, sans-serif;
  margin: 0 0 30px 0;
}

.wedding-plan .hashtag li {
  font-size: 13px;
  color: #61abd6;
  margin-bottom: 5px;
  line-height: 1.2;
}

/* プランへのリンクボタン */
.wedding-plan .btn-plan {
  display: block;
  background-color: #6C7E7E;
  color: #fff;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 10px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 20px;
}


.wedding-plan .btn-plan:hover {
  opacity: 0.8;
}


/* ================
レスポンシブ
===================*/
@media (max-width: 768px) {

  .wedding-plan .container {
    display: block;

  }

  /* 「挙式プラン」・「フォトプラン」 */
  .plan-title-bar {
    background-color: #eee;
    width: 100%;
    margin-bottom: 20px;
  }

  /* h2「挙式プラン」・「フォトプラン」文字 設定*/
  .plan-title {
    font-size: 23px;
    color: #2a2d2b;
    margin: 10px 0;
    text-align: center;
    line-height: 1.5;
  }

  /* h3 各プラン文字 */
  .wedding-plan .title {
    font-size: 23px;
    line-height: 1.5;
    margin: 10px 0;
  }

  /* p */
  .wedding-plan .description {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ここまで
===================*/


/* おすすめ情報エリア*/
.banner-link {
  background-color: #f7f7f7;
  padding: 40px 20px;
  text-align: center;
  margin: 20px auto;
  width: 90%;
  max-width: 1000px;
}

/* 「\掲載されました/」 */
.link {
  font-family: "Yu Mincho", "MS Mincho", serif;
  font-size: 25px;
  color: #333;
  margin-bottom: 15px;
  border-bottom: 1px dotted #333;
  display: block;
}

/* 「\掲載されました/」の 「\」　*/
.back-slash {
  font-family: "Helvetica", "Arial", sans-serif;
}

/* おすすめ情報のタイトルバー */
.recommend-bar {
  /* background-color: #fff9d8;*/
  background: radial-gradient(circle, #f7d8dc, #fff9d8);
  padding: 10px 0;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}

.info {
  color: #a0713b;
  font-weight: bold;
}


/* むすび大学バナー　*/
.banner-link img {
  width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}


/* --- Instagramセクション全体 --- */
.instagram {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

/* --- ヘッダー（アイコンとID） --- */
.insta-header {
  display: flex;
  align-items: center;
  gap: 20px;
  /* アイコンとIDの間のすきま */
  margin-bottom: 20px;
  padding: 10px 0;
}

/* アイコン（ホバー演出の土台） */
.insta-icon-wrap {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #000;
  /* ホバー時に暗く見せるための背景色 */
}

/* アイコン画像本体 */
.insta-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

/* IDテキスト */
.insta-id {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  text-decoration: underline;
}

/* --- インスタアイコンホバー時 --- */

/* 1. 画像を半透明 */
.insta-icon-wrap:hover .insta-icon {
  opacity: 0.6;
}

/* 2. インスタロゴを浮かび上がらせる設定 */
.insta-icon-wrap::after {
  content: "\f16d";
  /* Instagramアイコンコード */
  font-family: "Font Awesome 5 Brands";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.insta-icon-wrap:hover::after {
  opacity: 1;
}

/* --- 写真グリッド --- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3列 */
  gap: 10px;
}

.insta-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* 正方形維持 */
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
}

/*更に読み込むのインスタグリッド初期表示*/
.more-photos {
  display: none;
}


.insta-buttons,
.facebook-link {
  text-align: center;
  margin-top: 10px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* 共通のボタンスタイル */
.insta-buttons a {
  display: inline-flex;
  /*横にアイコンを並べる*/
  align-items: center;
  justify-content: center;
  margin: 5px;
  border-radius: 4px;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  transition: opacity 0.3s;
  height: 45px;
  padding: 10px 20px;
  box-sizing: border-box;
}

.insta-buttons a:hover {
  opacity: 1;
}

/* 「さらに読み込む」ボタン） */
.btn-load-more {
  background-color: #b38900;
}

/* インスタグラムボタンの基本スタイル（ピンク） */
.btn-instagram {
  background-color: #d64a96;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.btn-load-more:hover,
.btn-instagram:hover {
  background-color: #eea76b;
  color: #ffffff;
  opacity: 1;
}

/* インスタアイコンとテキストの間に余白 */
.btn-instagram i {
  margin-right: 8px;
  font-size: 18px;
}

/* Facebookリンク */
.facebook-link {
  margin-top: 30px;
}

.facebook-link a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #1877F2;
  font-size: 22px;
  font-weight: 500;
}

.facebook-link i {
  margin-right: 10px;
  font-size: 32px;
}

/* ホバー時に少し拡大ふわっと */
.facebook-link a:hover {
  transform: scale(1.1);
}

/* ================
インスタレスポンシブ
===================*/
@media (max-width: 768px) {
  .link {
    text-align: center;
  }

  .insta-icon-wrap {
    width: 18%;
    height: 18%;
  }

  .insta-id {
    font-weight: normal;
    font-family: "Hiragino Mincho ProN", serif;
    font-size: 20px;
    text-decoration: underline dotted rgb(133, 131, 131) 1px;
  }

  .insta-buttons {
    display: flex;
    justify-content: center;
    width: 60%;
    margin: 0 auto;
  }

  .btn-load-more,
  .btn-instagram {
    font-size: 5px;
    max-width: 180px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    padding: 0;
  }


  .btn-load-more:hover,
  .btn-instagram:hover {
    background-color: #eea76b;
    color: #ffffff;
    opacity: 1;
  }

}

/* ここまで
===================*/


/* おしらせエリア */
.news-section {
  padding: 60px 20px;
  background-color: #efefeff6;
}

.news-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 「お知らせ」 */
.news-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}

/* information */
.news-subtitle {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ニュース一覧 　ulは*/
.news-list {
  list-style: none;
  padding: 0;
  border-top: 1px dotted #ccc;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, sans-serif;
}

/* 各行設定 */
.news-item a {
  display: flex;
  align-items: center;
  padding: 15px 0;
  text-decoration: none;
  color: #333;
  border-bottom: 1px dotted #ccc;
  transition: background-color 0.3s;
}


/* 日付 */
.news-date {
  width: 120px;
  font-size: 14px;
  flex-shrink: 0;
  /* 幅固定 */
}

/* お知らせラベル（ベージュ） */
.news-category {
  background-color: #d4b680;
  color: #fff;
  font-size: 11px;
  padding: 2px 25px;
  margin-right: 20px;
  border-radius: 2px;
  text-align: center;
  flex-shrink: 0;
  /*伸縮なし*/
}

/* お知らせ文 */
.news-text {
  font-size: 14px;
  line-height: 1.6;
  text-decoration: underline;
  white-space: nowrap;
  /*絶対1行納め*/
  overflow: hidden;
  /*幅からはみ出した文字を見えないように切り捨て*/
  text-overflow: ellipsis;
  /*省略記号「...」表示*/
}

/* ================
おしらせレスポンシブ
===================*/
@media (max-width: 768px) {
  .news-item a {
    flex-wrap: wrap;
  }

  .news-date {
    width: 100%;
    margin-bottom: 5px;
  }

  .news-category {
    margin-bottom: 5px;
  }

  .news-text {
    width: 100%;
    white-space: normal;
  }
}

/* ここまで
===================*/


/*footer*/
.footer-fixed-nav {
  display: none;
}

footer {
  margin-top: 150px;
  padding: 60px 0 20px;
  background-color: #fff;
  text-align: center;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  border-top: 2px solid #252626;
}

/* 運営会社*/
footer ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  line-height: 1.8;
  color: #333;
  font-size: 14px;
}

footer ul li {
  margin-bottom: 5px;
}

/* Googleマップ */
footer iframe {
  max-width: 900px;
  width: 90%;
  margin: 0 auto 40px;
  display: block;
  border: 0;

}

/* コピーライト */
footer small {
  display: block;
  font-size: 11px;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

/* aタグ長崎の結婚式・家族婚はビーエスウェディング */
.footer-link-text {
  border-bottom: 1px dotted #666;
  padding-bottom: 1px;
}


.arrow {
  position: fixed;
  right: 10px;
  bottom: 30px;
  width: 50px;
}

/* ================
固定footerナビ レスポンシブ
===================*/
@media (max-width: 768px) {
  .footer-fixed-nav {
    display: block;
    position: fixed;
    /* 常に画面固定 */
    bottom: 0;
    left: 0;
    width: 100vw;
    background-color: #fff;
    border-top: 1px solid #eee;
    z-index: 1000;
  }

  .footer-fixed-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer-fixed-nav li {
    flex: 1;
  }

  /* アイコンと文字を縦に並べて中央揃えにする*/
  .footer-fixed-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    text-decoration: none;
    color: #967d4a;
    border-top: solid 0.1px #dad9d9;
  }

  /* アイコン */
  .footer-fixed-nav i {
    font-size: 20px;
    margin-bottom: 4px;
  }

  /* 文字 */
  .footer-fixed-nav span {
    font-size: 10px;
    font-weight: bold;
  }

  .arrow {
    display: none;
  }
}

/* ここまで
===================*/