/* TOPページ */
.top_slid {
  position: relative;
  width: 100%;
  margin-top: -28px;
}
.slid_msg {
  color: #fff;
  width: max-content;
  line-height: 1.7;
  font-size: 3rem;
  position: absolute;
  text-shadow: 2px 2px 5px #4d4d4d;
  top: 60%;
  left: 10%;
  z-index: 3;
}
.slid_msg span {
  font-size: 20px;
}
@media screen and (max-width: 896px) {
  .top_slid {
    margin-top: -60px;
  }
  .slid_msg {
    width: max-content;
    font-size: 18px;
    top: 68%;
    left: 20px;
  }
  .slid_msg span {
    font-size: 16px;
  }
}
.top_mv {
  padding-top: 80px;
  position: relative;
}
.top_mv img {
  width: 100%;
}
.color_bk {
  color: #333;
}
.color_bk a {
  color: #555;
}
.color_gr {
  color: #cfcfcf;
}
.top_feature .color_gr {
  color: #cfcfcf;
}
.color_fgr {
  color: #f0f0f0;
}
.top_mv h2 span.openday {
  font-family: "Kaushan Script", cursive;
  font-size: 32px;
}
@media screen and (max-width: 896px) {
  .top_mv {
    padding-top: 60px;
  }
  .top_mv h2 {
    top: 60%;
    font-size: 22px;
  }
  .top_mv h2 span.openday {
    font-size: 18px;
  }
}
.top_news {
  padding: 0;
  background: #fff;
}
.top_news ul {
  margin: 0 auto;
  max-width: 900px;
}
@media screen and (max-width: 896px) {
  .top_news .container {
    flex-direction: column;
  }
}
.top_news h2 span {
  font-size: 14px;
}
.top_news h2 a {
  color: #c0c0c0;
}
.top_news ul li {
  padding: 20px 0;
  border-bottom: 1px solid #cecece;
}
.top_news ul li a {
  color: #2d2d2d;
  font-size: 13px;
}
@media screen and (max-width: 896px) {
  .top_news ul li {
    padding: 2% 0;
    line-height: 1.8;
  }
}
.top_news ul li span.date {
  padding: 0 22px 0 30px;
  color: #2d2d2d;
}
.top_news ul li span.cate {
  color: #fff;
  background: #9bc4d5;
  padding: 4px 10px;
  margin-right: 30px;
  font-size: 1.4rem;
}
@media screen and (max-width: 896px) {
  .top_news ul li span.date {
    padding: 0;
  }
  .top_news ul li span.cate {
    padding: 1% 2%;
    font-size: 1.2rem;
  }
}
.top_news ul li span.cate a {
  color: #fff;
}
/*下層　ニュース一覧（パンくずから飛んだ時用）*/
ul.media_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 80px;
}
ul.media_list li {
  width: 25%;
  margin-top: 0px;
}
ul.media_list li.txt {
  width: 100%;
  border-bottom: 1px dotted #ccc;
  padding: 0 20px;
  margin: 0;
}
ul.media_list li.txt p {
  text-align: left;
}
ul.media_list .image {
  width: 170px;
  height: 218px;
  margin: 0 auto;
}
ul.media_list .image img {
  width: 100%;
  height: auto;
}
ul.media_list p {
  text-align: center;
  margin: 10px 0;
}
/*------------------------------------------

こだわり

------------------------------------------*/
.kodawari-box {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #fff7f0 0%, #e0f7fa 60%, #ffffff 100%);
  overflow: hidden;
}
.kodawari-box::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('/img/wave.svg') repeat-x;
  background-size: contain;
}
.kodawari-box .inr {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.kodawari-box .inr h2 {
  font-size: 32px;
  text-align: center;
  text-shadow: 0 0 10px #fff;
  margin-bottom: 20px;
  color: #3d3d3d;
}
.kodawari-box .inr p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}
.kodawari-box .kodawari-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  justify-content: center;
}
.kodawari-box .kodawari-list li {
  position: relative;
  width: 23%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.kodawari-box .kodawari-list li:hover {
  transform: translateY(-5px);
}
.kodawari-box .kodawari-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.kodawari-box .kodawari-list li:hover img {
  scale: 1.05;
}
.kodawari-box .kodawari-list li p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 16px;
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  z-index: 2;
}
/* Smartphone */
@media screen and (max-width: 767px) {
  .kodawari-box .kodawari-list {
    flex-direction: column;
    gap: 20px;
  }
  .kodawari-box .inr {
    padding: 0 10px;
  }
  .kodawari-box .inr h2 {
    font-size: 2rem;
  }
  .kodawari-box .kodawari-list li {
    width: 100%;
    aspect-ratio: 3/2;
  }
  .kodawari-box .kodawari-list li p {
    font-size: 3rem;
    padding: 10px;
  }
  .kodawari-box .inr p {
    font-size: 15px;
  }
}
.swiper-content-box {
  overflow: hidden;
}
.swiper-content-box .swipers {
  box-sizing: border-box;
  position: relative;
}
.swiper-content-box .swipers img {
  max-width: 100%;
}
.swiper-content-box .swipers .swiper-slide .img-box, .swiper-content-box .swipers .swiper-slide .thumb-box {
  box-sizing: border-box;
  position: relative;
}
.swiper-content-box .swipers .swiper-slide .img-box > img, .swiper-content-box .swipers .swiper-slide .thumb-box > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.swiper-content-box .swipers .swiper-slide .img-box {
  /* メイン画像の高さ */
  padding-bottom: 60%;
}
.swiper-content-box .swipers .swiper-slide .thumb-box {
  /* サムネイル画像の高さ */
  padding-bottom: 60%;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.3s;
}
.swiper-content-box .swipers .swiper-slide .thumb-box:hover {
  opacity: 1;
}
.swiper-content-box .swipers .swiper-slide.swiper-slide-thumb-active .thumb-box {
  opacity: 1;
}
.swiper-content-box .swipers .swiper-button-next, .swiper-content-box .swipers .swiper-button-prev {
  text-align: center;
  line-height: 40px;
  /* 矢印背景の横幅 */
  width: 40px;
  /* 矢印背景の縦幅 */
  height: 40px;
  /* 矢印背景色 */
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.swiper-content-box .swipers .swiper-button-next:after, .swiper-content-box .swipers .swiper-button-prev:after {
  /* 矢印大きさ */
  font-size: 20px;
  /* 矢印色 */
  color: #575757;
}
@media only screen and (max-width: 768px) {
  .swiper-content-box .swipers .swiper-button-next, .swiper-content-box .swipers .swiper-button-prev {
    width: 25px;
    height: 25px;
  }
  .swiper-content-box .swipers .swiper-button-next:after, .swiper-content-box .swipers .swiper-button-prev:after {
    font-size: 12px;
  }
}
#dog::before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -100px;
}
/*------------------------------------------

ROOM

------------------------------------------*/
.room-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #fff7f0 0%, #e0f7fa 60%, #ffffff 100%);
}
.room-head .container {
  text-align: center;
  margin-bottom: 60px;
}
.room-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.room-card {
  width: 360px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: none;
  transition: none;
}
.room-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.room-card figcaption {
  padding: 24px;
  text-align: left;
}
.room-type {
  font-size: 1.3rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.room-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 8px;
  color: #222;
}
.room-note {
  font-size: 1.2rem;
  color: #666;
  margin-top: 6px;
}
.room-badge {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 4px 10px;
  margin-bottom: 10px;
  font-weight: 500;
}
.room-link {
  text-align: center;
  margin-top: 50px;
}
.room-link a {
  font-size: 14px;
  display: inline-block;
  background: #e9af41;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.room-link a:hover {
  background: #dfa12a;
}
/* SP */
@media screen and (max-width: 768px) {
  .room-section {
    padding: 50px 0px;
    background: linear-gradient(180deg, #fff7f0 0%, #e0f7fa 60%, #ffffff 100%);
  }
  .room-list {
    flex-direction: column;
    align-items: center;
  }
  .room-card {
    width: 100%;
    max-width: 90%;
  }
}
/*END*/
.top_slider .swiper-slide {
  width: 100%;
  height: 100vh;
}
.top_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 896px) {
  .top_slider .swiper-slide {
    width: 100%;
    height: 50vh;
  }
}
.food_content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  list-style: none;
}
.food_content li {
  width: 32%;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  text-align: center;
  margin: 8px;
}
.food_content .content_img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.food_content__ttl {
  margin: 10px 0 5px;
  padding: 0 10px;
  color: #333;
}
.food_content__ttl a {
  text-decoration: none;
  color: inherit;
}
.food_content p {
  padding: 0 10px 15px;
  color: #666;
  line-height: 1.5;
  text-align: left;
}
/* モバイル対応 */
@media screen and (max-width: 768px) {
  .food_content ul {
    flex-direction: column;
    gap: 20px;
  }
  .food_content li {
    width: 90%;
    margin: 0 auto;
  }
}
.mlex_box {
  width: 100%;
  position: relative;
}
.mlex_box img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}
@media screen and (max-width: 896px) {
  .mlex_box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
}
.meal_ext {
  width: 50%;
  text-align: center;
  line-height: 1.9;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background-color: rgba(11, 15, 15, 0.82);
  padding: 35px;
}
.meal_ext h3, .meal_ext p {
  color: #fff;
}
.meal_ext p {
  padding-top: 30px;
  text-align: left;
}
.top_feature p {
  line-height: 2;
}
.top_feature h2 span, .top_facility h2 span {
  font-size: 1.5rem;
  color: #b4b5b5;
}
.top_box, .top_box_re {
  width: 100%;
  margin: 80px auto;
  display: flex;
  position: relative;
  align-items: center;
}
.top_box_re {
  justify-content: flex-end;
}
.top_box .feature_mainimg, .top_box_re .feature_mainimg {
  width: 52%;
  object-fit: cover;
}
.top_box .feature_mainimg img, .top_box_re .feature_mainimg img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.top_box .feature_txtarea {
  max-width: 950px;
  width: 50%;
  height: 530px;
  position: absolute;
  top: 36px;
  right: 0;
  background: #ffffff;
}
.top_box_re .feature_txtarea {
  max-width: 950px;
  width: 50%;
  height: 530px;
  position: absolute;
  top: 36px;
  left: 0;
  background: #ffffff;
}
.top_textarea_p {
  padding: 3rem 5rem;
  height: 476px;
}
.top_textarea_p h3 {
  padding-bottom: 40px;
  font-size: 1.9rem !important;
  line-height: 1.3;
  color: #3d3d3d;
	font-weight: 400!important;
}
.top_textarea_p p {
  color: #3d3d3d;
}
.top_textarea_p h3 span.point_n {
  font-size: 5rem;
  color: #246095;
}
.top_textarea_p h3 span.sub_title {
  font-size: 1.5rem;
}
@media screen and (max-width: 896px) {
  .top_box, .top_box_re {
    flex-direction: column;
    margin: 30px auto;
  }
  .top_box .feature_mainimg, .top_box_re .feature_mainimg {
    width: 100%;
    object-fit: cover;
  }
  .top_box .feature_mainimg img, .top_box_re .feature_mainimg img {
    height: auto;
    margin-bottom: 0;
  }
  .top_box .feature_txtarea, .top_box_re .feature_txtarea {
    max-width: 100%;
    height: 100%;
    position: static;
  }
  .top_box .feature_txtarea {
    max-width: 1030px;
    height: auto;
    top: 56px;
    right: 0;
    width: 100%;
    /*transform: translate(0%, -10%);*/
  }
  .top_box_re .feature_txtarea {
    max-width: 1030px;
    height: auto;
    top: 56px;
    left: 50%;
    width: 100%;
    /*transform: translate(0%, -10%);*/
  }
  .top_textarea_p h3 span.point_n {
    font-size: 4rem;
  }
  .top_textarea_p {
    padding: 10% 5%;
    height: auto;
  }
  .top_textarea_p h3 {
    padding-bottom: 20px;
    font-size: 1.5rem;
  }
  .top_textarea_p p {
    font-size: 1.4rem;
    text-align: left;
  }
  .meal_ext {
    width: 70%;
    padding: 20px;
  }
  .meal_ext p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 650px) {
  .meal_ext {
    width: 80%;
    padding: 15px;
  }
  .meal_ext p {
    padding-top: 10px;
    font-size: 1.3rem;
  }
}
.top_area_bk .topSwiper .swiper-slide {
  background: #f9f9f9;
  overflow: hidden;
  text-align: center;
}
.top_area_bk .topSwiper .top_content__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.top_area_bk .topSwiper .swiper-slide p {
  padding: 10px;
  background: #eee;
  font-size: 18px;
  margin: 0;
}
@media screen and (max-width: 896px) {
  .top_area_bk .topSwiper .top_content__img img {
    height: 160px;
  }
  .top_area_bk .topSwiper .swiper-slide p {
    font-size: 15px;
    padding: 6px;
  }
}
.top_access {
  padding: 40px 0 30px;
}
@media screen and (max-width: 896px) {
  .top_access {
    padding: 10% 0;
  }
}
.top_access .g_map {
  width: 94%;
  margin: 0 auto;
  height: 360px;
  margin-bottom: 40px;
}
.top_access .g_map iframe {
  width: 100%;
  height: 360px;
}
.top_access ul {
  width: 94%;
  margin: 0 auto 20px;
}
@media screen and (max-width: 896px) {
  .top_access .g_map {
    width: 100%;
  }
  .top_access ul {
    width: 100%;
  }
}
.top_access li {
  color: #333;
  padding: 20px 0 0;
  border-top: 1px solid #c3c3c3;
}
.top_access li:last-child {
  border-bottom: 1px solid #c3c3c3;
}
@media screen and (max-width: 896px) {
  .top_access li {
    flex-direction: column;
    padding: 26px 0 14px;
  }
}
.top_access li h3 {
  font-size: 1.8rem;
  font-weight: 500;
  width: 26%;
  padding: 0 15px;
  box-sizing: border-box;
  color: #272521;
}
@media screen and (max-width: 896px) {
  .top_access li h3 {
    width: 100%;
  }
}
.top_access li p {
  width: 100%;
  padding: 16px 14px;
  color: #272521;
  box-sizing: border-box;
}
@media screen and (max-width: 896px) {
  .top_access li p {
    width: auto;
    padding: 5px 14px;
    border-left: none;
  }
}
.top_access li p span {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4;
}
.top_access p.msg {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 50px 0;
}
.top_access .car_map {
  width: 80%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 896px) {
  .top_access .car_map {
    width: 94%;
  }
}
.top_access .car_map img {
  width: 100%;
  height: auto;
}
.top_access .checkin_box {
  width: 100%;
  margin: 0px auto 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top_access .checkin_wrapper {
  padding: 1em;
  border: 1px solid #272521;
}
.top_access address {
  font-size: 1.5rem;
  margin-top: 1em;
  color: #272521;
  text-align: center;
}
.top_access p.checkin {
  font-size: 1.8rem;
  color: #272521;
}
.top_access p.checkin a {
  font-size: 1.8rem;
  padding-right: 1em;
}
.top_access p.checkin_ttl {
  position: relative;
  text-align: center;
  font-size: 2rem;
  margin: 0 auto;
  display: inline-block;
  padding: 0 30px;
}
.top_access p.checkin_ttl span {
  background: #f5f6f6;
  padding: 0 30px;
  z-index: 20;
  position: relative;
  color: #272521;
}
.top_access p.note {
  padding-top: 20px;
  color: #c8c8c8;
}
.top_slider {
  width: 100%;
  height: 100%;
}
.top_slider .swiper-slide {
  width: 100%;
  height: 100%;
}
.top_slider .swiper-slide img {
  width: 100%;
  height: 888px;
  object-fit: cover;
}
@media screen and (max-width: 896px) {
  .top_slider .swiper-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
  }
}
/*ページ内リンクボタン*/
.qa_top_btn {
  margin: 30px;
}
.qa_top_btn ul {
  width: 85%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
}
.qa_top_btn li {
  background-color: rgba(237, 229, 213, 0.8);
  border-radius: 10px;
  position: relative;
  padding: 10px 10px;
  width: 15%;
  text-align: center;
}
.dog_btn li {
  background-color: rgba(237, 229, 213, 0.8);
  border-radius: 10px;
  position: relative;
  padding: 10px 10px;
  width: 24%;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .qa_top_btn ul {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .qa_top_btn li {
    background-color: rgba(237, 229, 213, 0.8);
    border-radius: 10px;
    position: relative;
    padding: 10px 20px;
    margin: 7px auto;
    width: 80%;
  }
  .qa_top_btn a {
    color: #333;
    cursor: pointer;
  }
  .qa_top_btn li::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url("arrow.png");
    background-size: 100%;
    width: 7px;
    height: 17px;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
  }
}
/*20240917 TOP魅力画像*/
* {
  box-sizing: border-box;
}
.slick-prev.slick-arrow {
  display: none !important;
}
.topinner {
  width: calc(100% - 100px);
  max-width: 1000px;
  min-width: 600px;
}
.slider-main img {
  min-height: auto !important;
  object-fit: cover;
}
.slide > span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px; /*★*/
}
.slide.txtbar {
  position: relative;
}
.slide.txtbar .txtbar-pc {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  height: 100%;
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 28px;
  padding: 10px;
  text-indent: 0.5em;
}
@media screen and (max-width: 896px) {
  .slide.txtbar .txtbar-pc {
    top: 0;
    left: 0;
    font-size: 14px;
    padding: 8px;
  }
}
.slider-thumb {
  margin-top: 20px;
}
.slider-thumb .slide > span {
  height: 100px;
}
.slick-slide img {
  width: 100%;
}
.top_box .feature_txtarea.test2 {
  max-width: 950px;
  width: 42%;
  height: 530px;
  position: absolute;
  top: 36px;
  right: 0;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
}
.top_box_re .feature_txtarea.test2 {
  max-width: 950px;
  width: 42%;
  height: 530px;
  position: absolute;
  top: 36px;
  left: 0;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
}
.top_box .topwrapper, .top_box_re .topwrapper {
  width: 64.5%;
  object-fit: cover;
}
.top_box .topwrapper .topinner {
  float: left;
  overflow: hidden;
}
.top_box_re .topwrapper .topinner {
  float: right;
  overflow: hidden;
}
.top_box .topwrapper img, .top_box_re .topwrapper img {
  height: auto;
}
.slick-next {
  display: none !important;
}
.slider-thumb .slick-track {
  transform: unset !important;
}
@media screen and (max-width: 896px) {
  .slick-slider {
    -ms-touch-action: auto !important;
    touch-action: auto !important;
  }
  .slide > span {
    margin: 0; /*★*/
  }
  .slide.txtbar .txtbar-sp {
    font-size: 20px;
    left: 0;
    text-indent: 3em;
  }
  .top_box .topwrapper, .top_box_re .topwrapper {
    width: 100%;
  }
  .slider-thumb {
    margin-top: 0;
  }
  .slider-thumb .slide > span {
    height: 80px;
    padding: 10px;
  }
  .top_box .feature_txtarea.test2, .top_box_re .feature_txtarea.test2 {
    max-width: 100%;
    height: 100%;
    position: static;
  }
  .top_box .feature_txtarea.test2 {
    max-width: 1030px;
    height: auto;
    top: 56px;
    right: 0;
    width: 92%;
    /*transform: translate(0%, -10%);*/
  }
  .top_box_re .feature_txtarea.test2 {
    max-width: 1030px;
    height: auto;
    top: 56px;
    left: 50%;
    width: 92%;
    /*transform: translate(0%, -10%);*/
  }
  .top_box .topwrapper .topinner, .top_box_re .topwrapper .topinner {
    float: unset;
    width: 100%;
    min-width: 100%;
  }
}
/*TOP　FAQ*/
.faq-box {}
.faq-box h3 {
  font-size: 2.0rem;
}
.faq-box .inr {
  padding: 20px 0;
}
.faq-wrap {
  color: #fff;
  background-image: url(../img/top/top_faq.jpg);
  background-size: cover;
  background-position: center;
  padding: 130px 0;
  text-align: center;
}
.faq-wrap p {
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .faq-wrap {
    padding: 90px 0;
  }
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
  background: #f1f1f1;
  padding: 15px;
  border: none;
  outline: none;
  transition: background 0.3s;
}
.faq-label {
  color: #555;
  margin-right: 10px;
}
.faq-text {
  flex: 1;
  text-align: left;
}
.faq-toggle-icon {
  font-size: 20px;
  margin-left: 10px;
  transition: transform 0.3s ease;
  font-weight: 900;
}
.faq-question.open .faq-toggle-icon {
  content: '−';
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 15px;
  background: #fff;
  border-top: 1px solid #ccc;
}
/*ボタン*/
.link a {
  font-size: 14px;
  color: #fff;
  display: inline-block;
  padding: 12px 35px;
  background: #e9af41;
  border-radius: 30px;
}
.link2 a {
  font-size: 14px;
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  margin-top: 10px;
  color: #333;
  width: 300px;
  text-align: center;
}