/*
Theme Name: Twenty Twenty-Three Child
Template: twentytwentythree
*/

body, html {
  overflow-x: hidden;
}
/* Gutenberg が自動的に追加するインラインの padding / margin を打ち消す */
.wp-block-group.has-global-padding,
.wp-block-group.is-layout-constrained,
.wp-block-group {
  padding: 0 !important;
  margin: 0 !important;
}

body, .site, .wp-site-blocks {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.wp-block-group.has-global-padding,
.wp-container-core-group-is-layout-a666d811 {
  padding: 0 !important;
  margin: 0 !important;
}

header.wp-block-template-part > .wp-block-group.alignfull {
  padding-left: 16px !important;
  padding-right: 16px !important;
}




body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fafafa;
  color: #222;
}

/* === 背景バリエーション === */
.backgroundtype1 {
  background-color: #FFFEFA;
}
.backgroundtype2 {
  background-color: #F9FFED;
}

.backgroundtype2 .section-title {
  color: #D6EFE0;
}

/* section-wrapで背景＆余白管理 */
.section-wrap {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin: 0px;
}

/* === TOPコンテンツ用 === */
.top-container{
  padding: 80px 16px;
}


/* === 12カラムグリッド親コンテナ === */
.container {
  max-width: 1240px;
  margin: 0 auto;
  /*! padding: 0 16px; */
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  box-sizing: border-box;
}

/* セクション全幅＋スタイル */
section {
  grid-column: span 12;
  /*! padding: 32px 24px; */
  border-radius: 8px;
  box-sizing: border-box;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* === タイポグラフィ === */

/* 背景見出し（超特大文字を薄く後ろに） */
h2.section-title {
  font-family: "A-OTF UD Shin Go Pr6N", "YuGothic", sans-serif;
  font-size: 230px;
  color: #F4F2EC;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  opacity: 0.3;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  text-align: left;
}

@media (max-width: 768px) {
  h2.section-title {
    font-size: 80px;
  }
}

h3.section-copy {
  font-family:
    "DNP Shuei Mincho Pr6N","ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","游明朝","Yu Mincho","MS P明朝","serif";
  font-size: 32px;
  color: #656565;
  margin-top: 0;
  margin-bottom: 24px;
  z-index: 2;
  position: relative;
}

h4 {
  font-family: "YuGothic", sans-serif;
  font-size: 24px;
  color: #656565;
}

p,
.section-caption {
  font-family: "YuGothic", sans-serif;
  font-size: 16px;
  color: #656565;
  line-height: 1.6;
  margin-bottom: 12px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === 3カラムグリッド（旧subgrid） === */
section > ul.column3 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column: span 12;
  gap: 30px;
  padding: 0;
  margin: 0 auto;
  max-width: 1240px;
  list-style: none;
}

/* アイテムは4カラム分（横に3つ） */
section > ul.column3 > li {
  grid-column: span 4;
  padding: 20px 16px;
  border-radius: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

/* 画像：丸くする */
section > ul.column3 > li img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 16px;
  object-fit: cover;
  width: 150px;
  height: 150px;
}

/* アイテム内タイトル */
section > ul.column3 > li h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  color: #222;
}

/* アイテム内テキスト */
section > ul.column3 > li p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* === スマホ対応（768px以下） === */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0px auto;
    padding: 0 12px;
  }

  section h3{
    padding: 30px 0px;
  }

  section > ul.column3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  section > ul.column3 > li {
    grid-column: span 1;
  }
}

/* === ボタン === */
.btn-wrap {
  text-align: center;
  margin-top: 16px;
}

.primary-btn {
  background-color: #fff;
  color: #656565;
  border: 3px solid #019E62;
  padding: 15px 100px;
  border-radius: 15px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease,transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .3);
}

.primary-btn:hover {
  background-color: #019E62;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-type02 {
  border: 3px solid #EA545D;
}
.btn-type02:hover {
  background-color: #EA545D;
}

.btn-type03 {
  border: 0px;
  color: #fff;
  background: linear-gradient(to right, #ec4c66, #f3a73f);
}

.section-wrap.backgroundtype1 {
  background-color: #FFFEFA;
  /*! padding: 80px 0; */
  width: 100%;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* flex親 */
.message-inner {
  display: flex;
  flex-direction: column;
  max-width: 1240px;
  margin: 0 auto;
  /*! padding: 0 16px; */
  gap: 32px;
}

/* テキスト */
.message-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
}

.section-copy {
  font-family: "DNP Shuei Mincho Pr6", serif;
  font-size: 1.75rem;
  margin-bottom: 24px;
}

/* 画像 */
.message-image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2; /* ←追加：背景文字より前に出す */
}

/* PC時 */
@media screen and (min-width: 1024px) {
  .message-inner {
    flex-direction: row;
    align-items: flex-start;
  }

  .message-text {
    width: 50%;
    padding-right: 32px;
    order: 1;
  }

  .message-image {
    width: 50vw;
    margin-right: calc(-50vw + 1240px / 2);
    order: 2;
  }

  .message-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* SP時 */
@media screen and (max-width: 1023px) {
  .message-inner {
    flex-direction: column;
  }

  .message-text {
    order: 1;
  }

  .message-image {
    order: 2;
    width: 100%;
    margin-right: 0;
  }

  .message-text p {
    order: 3;
  }
}










 /* セクションの背景（目印用、削除または変更可） */
  .recruit-button-section {
    display: flex;
    justify-content: center;
  }

  /* ボタン全体 */
  .recruit-button {
    display: flex;
    max-width: 960px;
    width: 100%;
    height: 230px;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .recruit-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }

  /* 画像エリア */
  .button-image {
    width: 40%;
    height: 100%;
    overflow: hidden;
  }

  .recruit-button-image img {
    max-width: 768px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* テキストエリア */
  .recruit-button-text {
    padding: 40px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(70deg, #EA545D, #FFA42A);
    
  }

  .recruit-button-title {
    margin: 16px 0px;
    color: #fff;
    font-size:32px;
  }

  .recruit-button-description {
    margin: 8px 0px;
    color: #fff;
  }

  .recruit-button-subtext {
    margin: 8px 0px;
    color: #fff;
    font-weight: bold;
  }

  /* スマホ対応 */
  @media (max-width: 768px) {
    .recruit-button {
      flex-direction: column;
      height: auto;
    }

    .recruit-button-image,
    .recruit-button-text {
      width: 100%;
    }

    .recruit-button-image {
      height: 180px;
    }

    .recruit-button-text {
      padding: 16px;
    }
  }




/* === スライド === */
.slider-section {
  padding: 40px 16px;

}

.slick-slider {
  margin: 0 -10px;
}

.slider-card {
  position: relative;
  margin: 0 10px;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
}

.slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to top, rgba(10, 147, 76, 0.7), transparent);
}

.slider-title {
  margin: 0 0 4px;
  width:  calc(100% - 32px);
  color: #fff;
}

.slider-text {
  font-size: 0.9rem;
  margin: 0;
  width:  calc(100% - 32px);
  color: #fff;
}

/* Slick矢印カスタマイズ */
.slick-prev, .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.slick-prev:before, .slick-next:before {
  color: #333;
  font-size: 20px;
}










/* === TOP投稿用（修正済） === */
.interview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3カラム固定 */
  gap: 1.5rem;
  max-width: 1240px; /* 最大幅 */
  margin: 2rem auto;  /* 上下マージン + 中央揃え */
  padding: 0 1rem;    /* モバイルで左右に余白 */
}

.interview-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.interview-card:hover {
  transform: translateY(-4px);
}

.interview-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* 例：横4:縦3の比率 */
  overflow: hidden;
}

.interview-thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


.interview-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0.75rem 1rem 0.25rem;
}

.interview-person {
  font-size: 0.9rem;
  color: #666;
  margin: 0 1rem 1rem;
}

/* === レスポンシブ対応 === */
@media (max-width: 1024px) {
  .interview-grid {
    grid-template-columns: repeat(2, 1fr); /* タブレットで2カラム */
  }
}

@media (max-width: 640px) {
  .interview-grid {
    grid-template-columns: 1fr; /* スマホで1カラム */
  }
}

/* === 非表示 === */
.wp-block-post-title {
  display: none;
}
.wp-block-post-featured-image {
  display: none;
}


.wp-block-group.is-layout-flow {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}






/* === 全体エリア === */
.fv-area {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #FFFEFA;
}

/* === レイヤー共通 === */
.fv-layer {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
}

/* === グラデーションの左ボックス（一番下） === */
.gradient-layer {
  width: 40%;
  height: 85%;
  background: linear-gradient(130deg, #EFFFD0 0%, #429B72 100%);
  left: 0;
  top: 0;
  z-index: 1;
}

/* === 画像レイヤー（真ん中） === */
.image-layer {
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  z-index: 2;
}

.image-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === テキストレイヤー（上） === */
.text-layer {
  z-index: 3;
  display: flex;
  height: 100%;
  align-items: flex-start;
  padding-top: 330px;
}

.fv-text-container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.fv-title {
  font-size: 3rem;
  font-family: "Hiragino Mincho ProN", "游明朝", serif;
  line-height: 1.5;
  color: #fff;
  z-index: 3;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* === SP レスポンシブ === */
@media screen and (max-width: 760px) {
  .fv-area {
    height: auto;
    min-height: auto;
   padding: 0px 0px;
  }

  .gradient-layer {
    position: relative;
    width: 100%;
    height: 220px;
    z-index: 1;
    left: 0;
    top: 0;
  }

  .image-layer {
    position: relative;
    width: 100%;
    margin-top: -120px;
    height: auto;
    z-index: 2;
    margin-left: 16px;
  }

  .image-layer img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .text-layer {
    position: relative;
    display: block;
    padding: 1rem;
    z-index: 3;
  }

  .fv-text-container {
    padding: 0;
  }

  .fv-title {
    font-size: 1.5rem;
    text-align: left;
    margin-top: -200px;
  }
}


@media screen and (max-width: 960px) {
  .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none !important;
  }
  .wp-block-navigation__responsive-container-open {
    display: flex !important;
  }
}


.menu-entry-btn span{
  color: #fff;
  background-color: #019E62;
  padding:12px 24px;
}







/* === フッター === */
footer{
  margin-top: 0 !important;
}
.site-footer {
  background-color: #fafafa;
  padding: 40px 20px;
  font-family: sans-serif;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.footer-brand {
  flex: 1 1 200px;
}

.footer-brand img {
  width: 160px;
  height: auto;
}

.footer-description {
  margin-top: 12px;
  font-size: 1rem;
  color: #555;
}

.footer-menu {
  flex: 2 1 600px;
}

.footer-menu ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 16px 40px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu li a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.footer-menu li a:hover {
  color: #019E62;
}

.footer-menu .icon {
  color: #019E62;
  font-weight: bold;
}

.footer-menu .arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #707070; 
  color: #fff;              
  font-size: 0.8rem;
  font-weight: bold;
  margin-left: auto;
  transition: background-color 0.3s ease;
}

.footer-menu li a:hover .arrow {
  background-color: #019E62;
}

/* === レスポンシブ対応 === */
@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-menu ul {
    grid-template-columns: 1fr;
  }

  .footer-menu li a {
    font-size: 1rem;
  }

  .footer-brand {
  flex: 1 1 50px;
}
  
  .footer-menu {
  flex: 2 1 50px;
}
}

/* === スライダー矢印 === */
.slick-prev,
.slick-next {
  background-color: #019E62 !important;
  width: 40px !important;
  height: 40px !important;
}

.slick-prev:before,
.slick-next:before
{
  opacity: 1 !important;
    font-size: 40px !important;
}
.slick-prev
{
    left: -40px !important;
}
.slick-next
{
    right: -40px !important;
}
   
/* === エントリーボタン === */
.recruit-button-entry {
    display: flex;
    justify-content: center;
}

.entry-button {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2em;
  background: linear-gradient(to right, #ec4c66, #f3a73f);
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 960px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.entry-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.entry-left {
  flex: 1;
}

.entry-left h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

.entry-left p {
  color:#fff;
  font-size: 0.9rem;
  margin: 0.2em 0 0;
}

.entry-right {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  line-height: 1.6;
}

.entry-right P{
color: #fff;
}

.entry-arrow {
  font-size: 2rem;
  margin-left: 1em;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .entry-button {
    flex-direction: column;
    text-align: center;
  }

  .entry-right {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .entry-arrow {
    margin-left: 0;
    /*! margin-top: 0.5em; */
  }
}


/* モバイル対応 */
@media screen and (max-width: 768px) {
.wp-block-site-logo{
  width: 150px;
}}


/* === 企業理念テキスト === */
/* テキスト */
.left-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
}

/* 画像 */
.right-image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2; /* ←追加：背景文字より前に出す */
}

/* PC時 */
@media screen and (min-width: 1024px) {

  .left-text {
    width: 50%;
    padding-right: 32px;
    order: 1;
  }

  .right-image {
    min-width: 450px;
    width: 30vw;
    order: 2;
  }

  .right-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* SP時 */
@media screen and (max-width: 1023px) {

  .left-text {
    order: 1;
  }

  .right-image {
    order: 2;
    width: 100%;
    margin-right: 0;
  }

  .left-text p {
    order: 3;
  }
}

.background01.recruit-button-entry {
    background-color: #FFFEFA;
    margin:0px;
    padding-bottom:30px;
}

.tour-color01{
  background: linear-gradient(to right, #00C67A, #297BFF);
}





.contents-wrap{
  background-color: #fff;
  z-index: 1;
  position: relative;
  flex-direction: column;
  max-width: 1240px;
  margin: 0 auto;  
  border-radius: 20px;
}


.contents-wrap .read-content-head{
  background: linear-gradient(to right, #429B72, #F0FFD2);
  border-radius: 20px 20px 0px 0px;
}

.contents-wrap .read-content-head h4{
  color: #fff;
  font-family:"DNP Shuei Mincho Pr6N","ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","游明朝","Yu Mincho","MS P明朝","serif";
  padding:15px;
}

.read-content-title {
  color: #008060;
  font-weight: bold;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 5px;
}

.gradient-line {
  width: 100%-15px;
  height: 4px;
  background: linear-gradient(to right, #429B72, #F0FFD2);
  border-radius: 2px;
  margin:0 15px;
}

.read-content-headline{
  font-family:"DNP Shuei Mincho Pr6N","ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","游明朝","Yu Mincho","MS P明朝","serif"; 
  margin:15px;
  font-size: 24px;
  color: #656565;
}

.read-content p{
  padding: 0px 15px;
}

.read-content .top-container{
  padding: 0px;
  padding-bottom: 20px;
}

.read-content .top-container .right-image{
  margin-right: 15px;
}

.entry-text-btn01{
  font-size: 2rem;
}

.contents-wrap .btn-wrap{
  padding-bottom: 40px;
}

@media screen and (max-width: 460px) {
.btn-type03 {
padding: 20px 80px;
}}

.read-content-subtitle{
  margin-left: 15px;
  color: #fff;
  background: linear-gradient(to right, #429B72, #F0FFD2);
}

.read-content .read-content-title{
padding-top: 15px;
}

.facility-tag01{
  padding: 2px 20px;
  background-color: #fff;
	border-radius: 25px;
  background-color: #FF6600; 
  color: white;
  width: auto;
  display: inline-block;
  margin: 0px 15px;
}


.two-columns {
  display: grid;
  /*! grid-template-rows: 50px 30px; */
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  }

.two-columns div{
  border: 1px solid;
  }

.btn-type04{
  background: linear-gradient(to right, #429B72, #F0FFD2);
  text-align: center;
  color: #fff;
  height: 30px;
  padding: 15px 30px;
}

@media screen and (max-width: 1023px) {
  .two-columns {
  grid-template-columns: repeat(1, 1fr); 
  }}

.post-template-default h4{
  font-family:"DNP Shuei Mincho Pr6N","ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","游明朝","Yu Mincho","MS P明朝","serif";
  font-size: 32px;
  color: #656565;
  margin-top: 24px;
  margin-bottom: 24px;
  z-index: 2;
  position: relative;
}

.post-template-default h6 {
  color: #008060;
  font-weight: bold;
  margin-top: 40px;
  width: 100%;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(to right, #429B72, #EFFFD0);
  border-image-slice: 1;
}






.schedule {
    position: relative;
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto;
    padding: 1em;
}
.schedule::before {
    position: absolute;
    top: 0;
    left: 3em;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #429B72, #EFFFD0);
    content: "";
    border-radius: 2px;
}

.schedule ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.schedule li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5em;
}
.schedule li + li {
    margin-top: 3em;
}

.schedule_time {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4em;
    height: 4em;
    border-radius: 50%;
    background-color: #56AD7A;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}


.schedule_content {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 1em 1.2em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}


.schedule_content_title {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.5em;
    color: #56AD7A;
}
.schedule_content_detail p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .schedule::before {
        left: 3em;
    }
    .schedule li {
        flex-direction: column;
        align-items: flex-start;
    }
    .schedule_time {
        margin-bottom: 0.5em;
    }
    .schedule_time::after {
        display: none;
    }
}

/* === 働く環境ボタン === */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  min-height: 60px; 
  transition: 0.3s;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn:hover {
  background-color: #019E62;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}


.two-column-btn {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px; /* ボタンの間隔 */
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .two-column-btn {
    grid-template-columns: repeat(2, 1fr); /* 2カラム */
  }
}
/* ボタンの色分け */
.btn-type05 {
  background: linear-gradient(to right, #00C67A, #297BFF);
  color: #fff;
}

.btn-type06 {
  background: linear-gradient(to right, #ec4c66, #f3a73f);
  color: #fff;
}

.btn:hover {
  opacity: 0.85;
}

.map-wrap{
  text-align: center;
  padding-bottom: 30px;
}
.map-wrap iframe{
  max-width: 900px;
  height: 340px;
  text-align: center;
}

.just_btn li{
  justify-content: space-between;
}
.just_btn .primary-btn{
  padding: 15px 50px;
}


/* === 特典 === */
.campaign{
  border-radius: 15px;
  background: #EA545D;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.campaign h2{
 color: #fff;
 font-weight: bold;
  padding:15px 10px 0px 10px;
  margin: 0px;
}

.campaign > ul.column3 > li {
  background:#fff;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.campaign > ul.column3 > li h3 {
  margin: 0 0 12px;
  font-weight: bold;
  font-size: 1.3rem;
  color: #EA545D;
}

.campaign > ul.column3 > li p {
text-align: left;
}

.campaign > ul.column3 {
  padding:30px;
  gap: 30px;
  max-width: 900px;
  list-style: none;
}


@media (max-width: 768px) {
.campaign  > ul.column3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* === マージン削除 === */
.wp-container-core-columns-is-layout-28f84493{
  margin: 0px !important;
}

.wp-block-post-content-is-layout-constrained{
  padding: 0px  !important;
}