@charset "utf-8";
/* CSS Document */
p{
    line-height: 2;
}
.nm-section{
    display: none;
}
.pagetitle_c1, .pagetitle_e1 {
    padding-top: 90px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .pagetitle_c1, .pagetitle_e1 {
        padding-top: 70px;
    }
}
/* ---------- itembox1 ---------- */
.itembox1 .titlebox {
  justify-content: center;
  margin-bottom: 40px;
}
.itembox1 {
  position: relative;
  z-index: 0;
}
.itembox1 .bgimg {
  position: absolute;
  z-index: -1;
}
.itembox1 .imgbox a {
  display: block;
}
.itembox1 .imgbox img {
  display: block;
  width: 100%;
  height: auto;
}
.itembox1 .boxwrap {
  gap: clamp(10px, 2.5vw, 20px);
  align-items: stretch;
}
.itembox1 .boxwrap .box {
  width: calc((100% - 90px) / 4);
}
.itembox1 .imgbox a {
  display: block;
}
.itembox1 .imgbox img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1080px) {
      .itembox1 .boxwrap .box {
    width: calc((100% - 30px) / 2);
  }
}
.map-frame{
  width: 100%;
}

.map-frame iframe{
  width: 100% !important;    /* HTML属性の width/height を上書き */
  aspect-ratio: 16 / 9;      /* 比率は好みで（16:9） */
  height: auto !important;
  border: 0;
  display: block;
}

body p, h1, h2, h3 {
  color: #433213;
  font-weight: 400;
}
.sns_a .titlewrap{
    justify-content: space-between;
}

.sns_a .titlewrap .titlebox2 {
    margin-bottom: 0px;
}
.sns_a .titlebox2 i{
 color: #433213;
}

.header_d .more a, .header_d .more > div {
    background-color: #503F36;
}
.header_d .rightbox .ul{
  display: flex;                 /* 念のため */
  gap: clamp(12px, 2vw, 20px);   /* ← 項目どうしの間 */
  align-items: center;
}

/* 電話リンク：白文字＋アイコンとの間隔 */
.header_d .rightbox .ul .li a.tel{
  display: inline-flex;
  align-items: center;
  gap: 10px;                     /* ← アイコンと番号の間 */
  color: #fff;                   /* a の文字色を白に */
  text-decoration: none;
}
.header_d .rightbox .ul .li a.tel p,
.header_d .rightbox .ul .li a.tel i{
  color: #fff;                   /* 子要素も白で統一 */
}

/* ---------- burgermenu_b ---------- */
.burgermenu_b .nav_box .ul .li a{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  position: relative; /* 念のため */
}

/* アイコンは1列目 */
.burgermenu_b .nav_box .ul .li a .icon{
  grid-column: 1;
}

/* 2つの<p>を “同じセル(2列目・1行目)” に重ねる */
.burgermenu_b .nav_box .ul .li a p{
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  white-space: nowrap;
  transition: opacity .28s ease, transform .28s ease;
}

/* 初期：JP表示／EN隠す（あなたの指定を活かす） */
.burgermenu_b .nav_box .ul .li a p.jp{ opacity: 1; transform: translateY(0); }
.burgermenu_b .nav_box .ul .li a p.en{ opacity: 0; transform: translateY(6px); }

/* ホバー/フォーカスで EN を前面に */
.burgermenu_b .nav_box .ul .li a:hover p.jp,
.burgermenu_b .nav_box .ul .li a:focus-visible p.jp{
  opacity: 0; transform: translateY(-6px);
}
.burgermenu_b .nav_box .ul .li a:hover p.en,
.burgermenu_b .nav_box .ul .li a:focus-visible p.en{
  opacity: 1; transform: translateY(0);
}

/* ---------- column2_d ---------- */

.column2_d .titlebox{
    margin-bottom: 5px;
}

.column2_d .inner {
  max-width: 1280px;
  margin: 0 auto;
}

.column2_d .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;                         /* カード間隔 */
}

/* カードは縦積みレイアウト */
.column2_d .card1 {
  display: block;
}

/* サムネイル：正方形・大きめ角丸 */
.column2_d .thumb {
  width: 100%;
  aspect-ratio: 4/ 3;
  overflow: hidden;
}

.column2_d .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;                  /* ちょうどよくトリミング */
  display: block;
}

/* 文字エリア */
.column2_d .txtbox {
  margin-top: 18px;
}

/* タイトル（見本の太字・やや詰め） */
.column2_d .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .02em;
  margin: 0 0 14px;
text-align: center;
}

/* 本文（行間ゆったり） */
.column2_d .text {
  font-size: 13px;
  line-height: 2;
  color: #333;
  letter-spacing: .02em;
}

/* ---------- column2_c ---------- */
.column2_c .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左右2カラム */
  gap: clamp(28px, 4.8vw, 56px);
  align-items: start;
  grid-template-areas: "visual content";
}
.column2_c.is-reverse .inner {
  grid-template-areas: "content visual";
}
.column2_c .visual {
  grid-area: visual;
}
.column2_c .content {
  grid-area: content;
}
.column2_c {}
.column2_c .visual {
  background: #c7c7c7;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.column2_c .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ===== right content ===== */
.column2_c{ 
overflow: hidden;
}

.column2_c .content {
  max-width: 540px;
    position: relative;}

.column2_c.cate1 .content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(140px, 18vw, 220px); /* 画面幅で可変 */
  height: clamp(150px, 20vw, 240px);
  background: url("https://viennoiserie-selfish.jp/system_panel/uploads/images/danish1.svg") no-repeat center / contain;
  pointer-events: none;
  transform: translate(35%, -35%);
  z-index: -1;
}
.column2_c.cate2 .content::after {
  content: "";
  position: absolute;
  top: -80px;
  left: 0; /* ← 左基準 */
  right: auto;
  width: clamp(140px, 18vw, 220px);
  height: clamp(150px, 20vw, 240px);
  background: url("https://viennoiserie-selfish.jp/system_panel/uploads/images/danish2.svg") no-repeat center / contain;
  pointer-events: none;
  transform: translate(-35%, -35%);
  z-index: -1;
}
/* ---------- columnbox2 ---------- */
.columnbox2.line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* 中央寄せ */
  width: 100%;
  max-width: 1280px; /* 最大幅 */
  height: clamp(48px, 10vw, 120px);
  background: url("https://viennoiserie-selfish.jp/system_panel/uploads/images/danish3.svg") no-repeat center top / contain;
  pointer-events: none;
  z-index: 0;
}
.columnbox2 {
  --bg: #cfc5c1;
  --text: #2b221a;
  --muted: #6e655f;
  background: var(--bg);
  color: var(--text);

  position: relative;
}.columnbox2 .grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}


/* ====== カード（横並びレイアウト） ====== */
.columnbox2 .card1{
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  position: relative;
}

/* ====== 丸い画像 ====== */
.columnbox2 .thumb{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.columnbox2 .thumb img{
  width:100%; height:100%; object-fit:cover; display:block;
}


.columnbox2 .card1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 190px;
  width: 53px;
  height: 70px;
  background: url('https://viennoiserie-selfish.jp/system_panel/uploads/images/leaf.svg') no-repeat center/contain;
  pointer-events: none;
  transform: translate(-10%, -20%);
}


/* ====== テキスト側 ====== */
.columnbox2 .txtbox{ width: 100%; 
    align-items: flex-start;}
.columnbox2 .txtbox .default_txt{
  font-size: clamp(16px, 1.2vw + 12px, 20px);
  line-height: 2;
  margin: 0 0 2px 0;
}
.columnbox2 .txtbox .en_txt{             /* 英字名（薄め） */
  margin: 0 0 14px 0;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--muted);
}

@media (max-width: 1080px){
  .columnbox2 .grid{
    grid-template-columns: 1fr;          /* 縦並び */
    justify-items: center;
    text-align: left;
  }
}
@media (max-width: 576px){
  .columnbox2 .card1{
    grid-template-columns: 1fr;          /* 縦並び */
    justify-items: center;                /* 円を中央に */
    text-align: left;
  }
  .columnbox2 .thumb{ width: min(72%, 360px); }
  .columnbox2 .txtbox{ width: 88%; }
    .columnbox2 .card1::after {
    content: '';
    position: absolute;
    top: 0;
    left: auto;
        right: 18%;
    transform: translate(0%, -20%);
}
    
}

/* ---------- columnbox1 ---------- */
.columnbox1.line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* 中央寄せ */
  width: 100%;
  max-width: 1280px; /* 最大幅 */
  height: clamp(48px, 10vw, 120px);
  background: url("https://viennoiserie-selfish.jp/system_panel/uploads/images/danish3.svg") no-repeat center top / contain;
  pointer-events: none;
  z-index: 0;
}
.columnbox1 {
  --bg: #cfc5c1;
  --text: #2b221a;
  --muted: #6e655f;
  background: var(--bg);
  color: var(--text);
  position: relative;
}
/* レイアウト */
.columnbox1 .inner {
  margin: 0 auto;
}
.columnbox1 .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 56px);
  counter-reset: num;
}
@media (max-width:768px) {
  .columnbox1 .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* カード */
.columnbox1 .card1 {
  position: relative;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 14px;
  text-align: left;
  counter-increment: num;
}
/* 丸い画像 */
.columnbox1 .thumb {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.columnbox1 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 葉っぱ飾り（右上） */
.columnbox1 .card1::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 53px;
  height: 70px;
  background: url('https://viennoiserie-selfish.jp/system_panel/uploads/images/leaf.svg') no-repeat center/contain;
  pointer-events: none;
  transform: translate(-10%, -20%); /* ← 中心基準で右上に出す */
}
/* 番号とタイトル */
.columnbox1 .txtbox {
  width: 100%;
}
.columnbox1 .txtbox::before {
  content: "／"counter(num, decimal-leading-zero);
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 4px;
  letter-spacing: .05em;
  font-family: 'Zen Old Mincho', serif;
}
.columnbox1 .title {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .06em;
  margin: 0;
}
/* ---------- sns_a ---------- */
.sns_a .titlebox {
  color: #767676;
  gap: 20px;
  justify-content: flex-start;
}
.sns_a .imgbox {
  border-radius: 10px;
  overflow: hidden;
}
.sns_a .swiper-slide {
  width: 230px;
}
.sns_a .swiper-container {
  padding: 0;
}
body:not(.on) .sns_a .swiper-container .swiper-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.sns_a .swiper-container .swiper-wrapper .swiper-slide {
  opacity: 1;
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
}
/* ---------- gallerybox ---------- */
.gallerybox .titlebox {
  justify-content: center;
  margin-bottom: 40px;
}
.gallerybox {
  position: relative;
  z-index: 0;
}
.gallerybox .bgimg {
  position: absolute;
  z-index: -1;
}
.gallerybox .imgbox a {
  display: block;
}
.gallerybox .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ← これでOK */
}
.gallerybox .boxwrap {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0px, 2.5vw, 10px);
    max-width: 1280px;
    margin: 0 auto;
}
.gallerybox .boxwrap .box {
  width: calc((100% - 60px) / 2);
}
.gallerybox .imgbox a {
  display: block;
}
/* ---------- itembox1 ---------- */
.itembox1 .titlebox {
  justify-content: center;
  margin-bottom: 40px;
}
.itembox1 {
  position: relative;
  z-index: 0;
}
.itembox1 .bgimg {
  position: absolute;
  z-index: -1;
}
.itembox1 .imgbox a {
  display: block;
}
.itembox1 .imgbox img {
  display: block;
  width: 100%;
  height: auto;
}
.itembox1 .boxwrap {
  gap: clamp(10px, 2.5vw, 20px);
  align-items: stretch;
}
.itembox1 .boxwrap .box {
  width: calc((100% - 90px) / 4);
}
.itembox1 .imgbox a {
  display: block;
}
.itembox1 .imgbox img {
  display: block;
  width: 100%;
  height: auto;
}
.mapwrap {
  height: auto;
}
.mapwrap .box_wrap {
  flex-wrap: nowrap;
}
.mapwrap .access_title {
  margin-bottom: clamp(30px, 5vw, 60px);
}
.mapwrap .access_title .en_title_a {
  font-family: "WindSong", cursive;
  font-weight: 400;
  letter-spacing: .05em;
  font-size: clamp(48px, 9vw, 120px);
  transform: rotate(-10deg);
  margin: 0;
  display: inline-block;
}
.mapwrap .access_title .jp_title {
  text-align: center;
  margin-top: -10px;
}
/* レイアウト */
.mapwrap .box_wrap {
  gap: 30px;
  justify-content: space-between;
  position: relative;
}
.mapwrap .box_wrap::after {
  content: "";
  position: absolute;
  top: -150px;
  right: clamp(8px, 2vw, 24px);
  width: clamp(180px, 30vw, 300px);
  height: clamp(120px, 30vw, 350px);
  background: url("https://viennoiserie-selfish.jp/system_panel/uploads/images/map.svg") no-repeat center / contain;
  pointer-events: none;
  z-index: 1;
}
.mapwrap .leftbox, .mapwrap .rightbox {
  width: 50%;
}
.mapwrap .leftbox {
  margin: 0;
}
.mapwrap .leftbox .mapbox {
  position: relative;
  width: 100%;
  height: var(--map-h, clamp(300px, 42vw, 550px)); /* 画面に応じて伸縮 */
  min-height: 280px;
  overflow: hidden;
  border-radius: 4px;
}
.mapwrap .leftbox .mapbox iframe {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.mapwrap .rightbox {
  width: 50%;
}
.mapwrap .rightbox .more {
  margin-right: 0;
  margin-left: auto;
}
.mapwrap .rightbox .access_info {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
max-width: 580px;
    width: 480px;
}
.mapwrap .rightbox .row1 {
  flex-wrap: nowrap;
  align-items: baseline;
  gap: clamp(12px, 2vw, 20px);
  border-bottom: 1px solid #C2C2C2;
  padding: 14px 0;
}
.mapwrap .rightbox .row1 .dt1 {
  flex: 0 0 clamp(88px, 12ch, 140px);
  margin: 0;
  letter-spacing: .05em;
}
.mapwrap .rightbox .row1 .dd1 {
  flex: 1 1 auto;
  margin: 0;
  line-height: 1.9;
}
.mapwrap .rightbox .row1:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.mapwrap .more2 {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(80px, 12vw, 150px);
}
@media (max-width: 1080px){
  .mapwrap .box_wrap {
    flex-direction: column;
  }
  .mapwrap .leftbox, .mapwrap .rightbox {
    width: 100%; /* 横幅を全幅に */
  }
  .mapwrap .rightbox .access_info {
    margin: 0 auto;
  } }
@media (max-width: 576px){
  /* 横スクロールの保険 */
  .mapwrap{ overflow-x: hidden; }

  /* 縦積み＋ギャップ */
  .mapwrap .box_wrap{
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* 子要素は親幅に収まるよう縮む許可（重要） */
  .mapwrap .leftbox,
  .mapwrap .rightbox{
    width: 100%;
    min-width: 0;            /* ←これがはみ出し防止の決め手 */
    box-sizing: border-box;
    padding-left: clamp(12px, 4vw, 20px);
    padding-right: clamp(12px, 4vw, 20px);
  }

  /* アクセス情報の中央寄せで外側からはみ出さないように */
  .mapwrap .rightbox .access_info{
    margin: 0;               /* autoだと親のpaddingと組み合わさり溢れることがある */
    width: 100%;
  }

  /* 地図や埋め込みを確実に可変に */
  .mapwrap iframe,
  .mapwrap .map{
    width: 100% !important;
    height: clamp(220px, 56vw, 340px);  /* 目安。必要なら数値調整 */
    display: block;
  }

  /* 画像の固定幅対策 */
  .mapwrap img{
    max-width: 100%;
    height: auto;
    display: block;
  }
}

.more2 {
  max-width: 1060px;
  margin: 0px auto;
  padding: 0 20px;
}
/* 見本の細い枠ボックス */
.more2 > a {
  display: block;
  width: 100%;
  background: #efe9e5;
  border: 1px solid #6a5a52; /* 枠線 */
  text-decoration: none;
  color: #4b3f36; /* 文字色 */
  text-align: center;
  padding: 20px 12px; /* 高さ感 */
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .04) inset;
  border-color .45s ease, transform .45s cubic-bezier(.25, .8, .25, 1);
}
.more2 > a:hover {
  border-color: #5b4e47;
}
:root {
  --brown: #433213;
  --bg-top: #d8cdc7;
  --bg-bottom: #cfc5bf;
}
.pagetitle_c .pagetitle-container {
  margin: 0 auto;
  display: grid;
  place-items: center;
  text-align: center;
}
.pagetitle_c .pagetitle-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #D5CCC7 0%, #D5CCC7 35%, #EEE9E6 100%);
  pointer-events: none;
  z-index: -2;
}
.pagetitle_c1 .pagetitle-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #D5CCC7 0%, #EEE9E6 30%);
  pointer-events: none;
  z-index: -2;
}
.pagetitle_c1 .pagetitle-container {
  margin: 0 auto;
  padding: 10px clamp(0px, 5vw, 20px);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
}
/* ===== 左の画像 ===== */
.pagetitle_c1 .pagetitle-image {
  width: 50%;
}
.pagetitle_c1 .pagetitle-image img {
  width: 100%;
  height: auto;
  display: block;
  background: #f4efeb; /* ほんのり紙色 */
}
.pagetitle_c1 .titlebox1 {
  margin-bottom: clamp(0px, 4vw, 20px);
}
.pagetitle_c1 .txtbox {
  width: 50%;
  color: #4b3f36;
  text-align: left;
}
.pagetitle_c1 .txtbox .pagetitledesc {
  line-height: 2;
}
.titlebox1 {
  z-index: 5;
}
.titlebox1 .jptitle {
  color: var(--brown);
}
.titlebox1 .en_title1 {
  color: var(--brown);
  margin: 0;
  position: relative;
  letter-spacing: .05em;
  display: inline-block;
  font-weight: 400;
}
.titlebox1 .en_title1::before, .titlebox1 .en_title1::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  width: clamp(26px, 5vw, 40px);
  height: clamp(52px, 10vw, 80px);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 5;
}
.titlebox1 .en_title1::after {
  right: -50px;
  background-image: url('https://viennoiserie-selfish.jp/system_panel/uploads/images/title1.svg');
  transform: translateY(-45%) scaleX(-1);
}
.titlebox1 .en_title1::before {
  left: -50px;
  background-image: url('https://viennoiserie-selfish.jp/system_panel/uploads/images/title1.svg');
}
.titlebox2 {
  margin-bottom: 80px;
}
.titlebox2 .jptitle {
  font-family: "Zen Old Mincho", serif;
  color: #433213;
}
.titlebox2 .jptitle::after {
  content: "";
  display: block;
  width: clamp(220px, 60vw, 420px); /* 線の長さ */
  height: 14px;
  margin: 8px auto 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  background-image: url('https://viennoiserie-selfish.jp/system_panel/uploads/images/title2.svg');
}
.titlebox3 .jptitle, .titlebox4 .jptitle {
  font-family: "Zen Old Mincho", serif;
  color: #433213;
}
.titlebox4 {
  gap: 0px;
  margin-bottom: 60px;
}
.titlebox4 .jptitle {
  width: 360px;
  text-align: left;
}
.titlebox4 p {
  text-align: left;
}
.titlebox4 .jptitle::before {
  content: "";
  position: relative;
  left: -10px;
  top: 5px;
  width: clamp(40px, 15vw, 70px);
  height: clamp(15px, 8vw, 35px);
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("https://viennoiserie-selfish.jp/system_panel/uploads/images/title3.svg");
}
.txt_color1 {
  color: #433213;
}
.txt_color2 {
  color: #1D1D1D;
}

.footer_g .more a{
    border: 1px solid #777;
}
.more a, .more > div {
  color: #fff;
  padding: 14px 20px;
  color: #fff;
  padding: 10px 32px 6px;
  border-radius: 9999px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  text-decoration: none;
  gap: 40px;
  transition: 0.4s ease;
}
.more i {
  font-size: 14px;
  color: #fff;
  transition: transform 0.3s ease;
}
.more a:hover i{
  transform: translateX(6px);    /* 好みで 4～10px に調整 */
}
.more_b a {
  background: #503F36;
}
/* ---------- font ---------- */
.en_title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: clamp(32px, 7vw, 72px);
}
.en_title2 {
  font-family: "Sorts Mill Goudy", serif;
  font-size: clamp(32px, 6vw, 60px);
}
.default_title0{
  font-size: clamp(20px, 3.2vw, 32px);
  letter-spacing: .05em;
}
.default_title {
  font-size: clamp(18px, 3.2vw, 25px);
  letter-spacing: .05em;
}
.default_title2 {
  font-size: clamp(18px, 2.9vw, 22px);
  letter-spacing: .05em;
}
.default_title3 {
  font-size: clamp(16px, 2.5vw, 20px);
  letter-spacing: .05em;
}
.default_txt {
  font-size: clamp(16px, 1.8vw, 18px);
  letter-spacing: .05em;
  line-height: 2;
}
.default_txt2 {
  font-size: clamp(14px, 1.6vw, 16px);
  letter-spacing: .05em;
}
.default_txt3 {
  font-size: clamp(12px, 1.4vw, 14px);
  letter-spacing: .05em;
}
.en_txt {
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: .05em;
  line-height: 2;
  font-family: "Sorts Mill Goudy", serif;
}
.font_so {
  font-family: "Sorts Mill Goudy", serif;
}
.font_mincho {
  font-family: "Zen Old Mincho", serif;
}
.footer_g {
  background: #2E2C2B;
}
.footer_g .rightbox .ul .li:not(:last-of-type) {
  margin-bottom: 20px;
}
.footer_g .txtbox p {
  color: #fff;
}
.snsicon i {
  font-size: 30px;
  color: #fff;
}
.footer-bottombox_g {
  background: #2E2C2B;
  color: #fff;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
  /* ---------- column2_c ---------- */
  .column2_c .titlebox3 {
    justify-content: center;
    align-items: center;
  }
  .column2_c .titlebox3 p {}
  .column2_c .inner {
    grid-template-columns: 1fr; /* 1カラム */
    gap: 24px;
    grid-template-areas:
      "visual"
      "content"; /* 画像→テキスト */
  }
  .column2_c.is-reverse .inner {
    grid-template-areas:
      "visual"
      "content";
  }
  .column2_c .visual {
    width: 90%;
    max-width: 720px; /* 任意：上限 */
    min-width: 0; /* はみ出し防止 */
    margin: 0 auto;
    justify-self: center; /* グリッド内で中央寄せ */
  }
  .column2_c .content {
    max-width: none; /* スマホでは制限解除 */
    width: 100%;
    justify-self: center;
  }
  .itembox1 .boxwrap .box {
    width: calc((100% - 30px) / 2);
  }

  .titlebox4 {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
  .pagetitle_c1 {
    position: relative;
    overflow: hidden;
  }
  .pagetitle_c1 .pagetitle-container {
    position: relative;
    display: block;
    padding: clamp(40px, 8vw, 80px) clamp(20px, 6vw, 40px);
    max-width: 1160px;
    margin: 0 auto;
    z-index: 2;
  }
  .pagetitle_c1 .pagetitle-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    z-index: 0; /* 背景として配置 */
  }
  /* 画像を“背景”として全面に敷く */
  .pagetitle_c1 .pagetitle-image {
    position: absolute;
    inset: 0;
    pointer-events: none;
    width: 100%;
  }
  .pagetitle_c1 .pagetitle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* はみ出しをトリミング */
    display: block;
  }
  /* テキスト側（上に乗せる） */
  .pagetitle_c1 .txtbox {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    text-align: left;
    width: 100%;
  }
  .footer_g .leftbox {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px 40px;
  }
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
  .gallerybox .boxwrap .box {
    width: calc((100% - 30px) / 2); /* 2列 */
  }
    /* ---------- column2_d ---------- */
  .column2_d .grid { grid-template-columns: 1fr; gap: 28px; }
  /* ---------- sns_a ---------- */
  .sns_a .swiper-slide {
    width: 140px; /* ← スマホ時の画像幅を小さく */
  }
  .sns_a .webgene-item {
    width: 150px; /* ← 記事全体の幅も合わせて小さく */
  }
  .sns_a .titlebox {
    gap: 10px;
    font-size: 14px;
  }
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
  .gallerybox .box_wrap .imgbox {
    width: calc((100% - 30px) / 1);
  }
  .gallerybox .boxwrap .box {
    width: 100%; /* 1列 */
  }
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}