@charset "utf-8";
/*メディアクエリ（サンプル最後に取る）*/
/*sp（なくても良い）*/
@media screen and (min-width: 480px) {}
/*tablet 768px以上*/
@media screen and (min-width: 768px) {}
/*pc 1000px以上*/
@media screen and (min-width: 1000px) {}
/*カラム表示 基本*/
body{
	background: #fff;
}
iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
/*2カラム用*/
.col2_01 {
  float: left;
  width: 100%;
  margin: 0 0 40px;
}
@media screen and (min-width: 768px) {
  .col2_01 {
    float: left;
    width: 50%;
    padding: 0 2%;
  }
  .col2_01:nth-child(odd) {}
}
/*3カラム用*/
.col3_01 {
  float: left;
  width: 100%;
  margin: 0 0 40px;
  background-position: center -30px;
  background-repeat: no-repeat;
  background-size: 110%;
}
.col3_02 {
  float: left;
  width: 100%;
  margin: 0 0 40px;
}
@media screen and (min-width: 768px) {
  .col3_01 {
    float: left;
    width: 33.3333%;
    padding: 0 2%;
  }
  .col3_02 {
    float: left;
    width: 66.6666%;
    padding: 0 2%;
  }
}
.h_style01 {
  text-align: center;
  font-size: 1.500em;
  color: #666;
  height: 96px;
  background-image: url(../images/midashi_img01.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 400px;
  margin-top: 80px;
}
section#contact .col_wrap {}
section#contact h1 {
  text-align: center;
  padding-top: 24px;
  font-size: 1.750em;
  letter-spacing: 0.2em;
  color: #666;
}

@media screen and (min-width: 768px) {

}

#sitemap .col_wrap {
    padding: 40px 20px;
    line-height: 2;
    background-color: #2d4390;
    /* border: 1px #cccccc solid; */
}

#sitemap .col_wrap h2 {
    margin-top: 20px;
    color: #fff;
}

#sitemap .col_wrap ul { /* ul要素にスタイルを適用 */
    padding-left: 0.8em;
}

#sitemap .col_wrap li:before {
    font-family: "Font Awesome 5 Free";
    content: '\f0da';
    font-weight: 900;
    padding-right: 10px;
    color: #fff;
}

#sitemap .col_wrap {
  display: flex;
  flex-wrap: wrap; /* 折り返しを有効にする */
}

#sitemap .col5_1,
#sitemap .col5_3 {
  width: auto; /* PCでは自動幅にする */
  flex: 1; /* 残りスペースで均等に配置 */
  padding: 0 10px; /* 左右の余白を調整 */
}

/* 6列表示にする場合 */
#sitemap .col_wrap.alpha { /* 例: col_wrap に alpha クラスがある場合 */
  display: flex;
}

#sitemap .col_wrap.alpha .col5_1 {
  width: calc(100% / 6); /* 6等分 */
  padding: 0;
}

#sitemap .col_wrap.alpha .col5_3 {
  width: calc(100% / 6); /* 6等分 */
  padding: 0;
}

/* スマホ表示 */
@media screen and (max-width: 767px) {
  #sitemap .col_wrap {
    display: block; /* 縦並びにする */
  }

  #sitemap .col5_1,
  #sitemap .col5_3 {
    width: 100%; /* スマホでは幅100% */
    padding: 0;
  }
}

/* スマホ表示 */
@media screen and (max-width: 767px) {
  #sitemap .col_wrap.alpha {
    display: block; /* 縦並びにする */
  }

  #sitemap .col_wrap.alpha .col5_1 {
    width: 100%; /* スマホでは幅100% */
    padding: 0;
  }
}
/* 既存のスタイル */
#sitemap .col_wrap a {
  color: #fff;
}

#sitemap .col5_3 nav ul {
  font-weight: bold;
}

#sitemap .col5_3 nav ul.txt_nomal {
  font-weight: normal;
  margin: 0 0 10px;
}/* --- アコーディオン (スマホのみ) --- */
#sitemap .accordionbox dt {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}

#sitemap .accordion_icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 14px;
    color: #fff;
}

#sitemap .accordion_icon.active i::before {
    content: '\f068';
}

#sitemap .accordionbox dd {
    display: none;
    margin-left: 0;
}

/* --- レスポンシブ --- */
@media screen and (min-width: 768px) {
    #sitemap .col_wrap {
        display: flex;
    }

    #sitemap .col_wrap h2 {
        margin-top: 0px;
        color: #fff;
    }

    #sitemap .col5_1 {
        width: 22%;
        /* padding: 0 10px; */
    }

    #sitemap .col5_1:last-child {
        padding-left: 20px;
    }

    #sitemap .col5_3 {
        width: 56%;
        padding: 0 20px;
        border-left: 1px #cccccc solid;
        border-right: 1px #cccccc solid;
        display: flex;
    }

    #sitemap .col5_3 div {
        width: 28%;
    }

    #sitemap .col5_1 nav + h2 { /* nav要素にスタイルを適用 */
        margin-top: 30px;
    }

    #sitemap .col5_3 div:nth-child(2) {
        width: 44%;
    }

    /* --- PCではアコーディオンを解除 --- */
    #sitemap .accordionbox dt {
        cursor: auto;
        position: static;
        padding-right: 0;
    }

    #sitemap .accordion_icon {
        display: none;
    }

    #sitemap .accordionbox dd {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    /* スマホ向けのスタイル */
    #sitemap .col5_1,
    #sitemap .col5_3 {
        width: 100%;
    }
}footer .inner {
  width: calc(100% - 10px);
}
footer div.logo a img {
  width: 20%;
  filter: drop-shadow(2px -1px 0px #fff);
}
@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 100px;
  }
  footer div.logo a img {
    width: 40%;
  }
}
footer p {
  padding: 20px 0 0;
  clear: both;
}
footer .col3_01 {
  margin-bottom: 27px;
  padding: 0;
}
footer .col3_02 {
  text-align: left;
  margin-bottom: 27px;
  padding: 0;
}
footer .col3_02 h1 {
  font-size: 1.500em;
  margin-bottom: 0;
  letter-spacing: 0.1em;
  text-align: left;
  display: block;
}
footer ul {
  display: inline-block;
  margin-bottom: 20px;
}
footer li {
  display: inline-block;
  list-style: none;
  margin-right: 27px;
  letter-spacing: 0.2em;
  line-height: 1.6;
}
footer ul a {
  color: #fff;
}
footer ul a:hover, footer ul a:focus {
  color: #fff;
}
footer .btn {
  display: inline-block;
  width: 100%;
  text-align: center;
}
footer .btn a {
  width: 70%;
  margin: auto;
  padding: 10px 40px;
  text-align: center;
  font-size: 1.063em;
  font-weight: bold;
  color: #2d4390;
  background-color: #FFFFFF;
}
footer .footer_tel {
  max-width: 350px;
  margin: auto;
  display: flex;
  align-items: center;
  margin: 27px auto 0;
  padding: 10px;
  border-radius: 5px;
  flex-direction: row;
}
.footer_tel img {
  width: 48px; /* 画像の幅 */
  height: auto; /* 高さは自動調整 */
  margin-right: 10px; /* 電話番号との間隔 */
}
.footer_tel a {
  font-size: calc(1.5rem + 1vw); /* レスポンシブに大きく表示 */
  color: #fff; /* 例: 電話番号の色 */
  text-decoration: none; /* 下線を削除 */
  white-space: nowrap; /* 電話番号が改行しないように */
  font-weight: bold;
}
/* モバイル向けにさらに調整する場合 */
@media screen and (max-width: 767px) {
  .footer_tel {
    flex-direction: column; /* 縦並びにする */
    align-items: center;
    text-align: center;
  }
  .footer_tel a {
    font-size: calc(1.8rem + 2vw);
  }
}
@media screen and (min-width: 768px) {
  footer .btn {
    width: auto;
    margin-bottom: 0px;
  }
  footer .btn {
    width: auto;
  }
  footer .btn a {
    width: 100%;
  }
}
.mar-style.main_style {
  position: absolute;
  right: 0;
  left: 0;
}

section#contact {
  margin-top: 100px
}
.human {
  position: absolute;
  bottom: 27px;
  left: 0;
  max−width: 360px;
  width: 31%;
  min-width: 150px;
}
.human img {
  width: 100%;
}
.main_img {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
.main_copy {
  min-width: 60px;
  max-width: 92px;
  width: 16%;
  position: absolute;
  bottom: 0;
  right: 20px;
  padding-bottom: 50%;
}
.top_txt {
  line-height: 2em;
  padding-bottom: 20px;
}
@media screen and (min-width: 580px) {
  .main_copy {
    max-width: 60px;
    padding-bottom: 13%;
  }
}
@media screen and (min-width: 768px) {
  .main_copy {
    max-width: 92px;
    width: 8%;
    padding-bottom: 20%;
    right: 134px;
  }
}
@media screen and (min-width: 1146px) {
  .main_copy {
    padding-bottom: 15%;
  }
}
@media screen and (min-width: 1400px) {
  .main_copy {
    padding-bottom: 20%;
  }
}
.top_copy {
  text-align: center;
  font-size: 1.48em;
  margin-bottom: 40px;
}
#plan .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#plan h2 {
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.2em;
  color: #333;
  font-weight: normal;
  font-size: 1.375em;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
}
#plan .col {
  width: calc(50% - 10px);
  margin: 20px 0px;
  font-size: 0.875em;
}
#plan .plan_img {
  position: relative;
  margin-bottom: 10px;
  padding: 5px;
  /* background-color: #a3bce2; */
  line-height: 0;
}
#plan .plice {
  /* position: absolute; */
  /* bottom: 13px; */
  /* right: 5px; */
  width: calc(100% - 10px);
  padding: 5px;
  text-align: right;
  font-size: 1.625em;
  line-height: 1;
  color: #098d75;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
  /* background: -webkit-linear-gradient(
-90deg
, #fff 180px, rgba(0,0,0,0) ); */
  background: -o-linear-gradient(-90deg, #fff 180px, rgba(0, 0, 0, 0));
  /* background: linear-gradient(
-90deg
, #fff 180px, rgba(0,0,0,0) ); */
}
@media screen and (min-width:768px) and (max-width:850px) {
  #plan .plice {}
}
#plan .plice span {
  font-size: 0.750em;
}
@media screen and (min-width: 768px) {
  #plan .row {
    display: flex;
    flex-wrap: nowrap;
  }
  #plan .col {
    width: 23%;
    margin: 20px 14px;
  }
  #plan h2 {
    font-size: 2.250em;
  }
  #plan .plice {
    font-size: 2.000em;
  }
}
#annai .col_wrap {
  background: #ecf1f8;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 70px;
}
#annai .col_wrap ul {
  margin: 0 auto;
  width: calc(100% - 20px);
}
#annai .col_wrap li {
  width: auto;
  /* padding: 8px 8px 30px; */
  background-color: #fff;
  margin: 10px auto;
  display: flex;
  flex-direction: column;
}
#annai .col_wrap ul li a p {
  padding: 8px 16px 16px;
  color: #000;
}
#annai .col_wrap h2 {
  color: #000;
  font-size: 1.563em;
  letter-spacing: 0.1em;
  font-weight: normal;
  text-align: center;
  margin: 25px auto;
}
@media screen and (min-width: 768px) {
  #annai .col_wrap {
    background-size: 110%;
  }
  #annai .col_wrap ul {
    display: flex;
    justify-content: center;
  }
  #annai .col_wrap li:nth-child(2) {}
  #annai .col_wrap li {
    max-width: 353px;
    width: 50%;
    height: auto;
    /* padding: 8px 8px 30px; */
    margin: 4px;
    background-color: #fff;
  }
}
#riyu .col_wrap {
  background-image: url(../images/top_bg_02_bu.jpg);
  padding: 1px 10px 60px;
  margin-top: 60px;
  margin-bottom: 60px;
  overflow: hidden;
}
#riyu .col_wrap .h_style01 {
  width: calc(100% - 20px);
}
#riyu .col_wrap ul {
  clear: both;
  margin-top: 40px;
}
#riyu .col_wrap li img {
  margin: 0 10px 10px;
  max-width: 220px;
}
#riyu .col_wrap li {
  width: 100%;
  text-align: center;
}
#riyu .col_wrap li:nth-child(2) {
  margin: 20px 0;
}
#riyu .col_wrap h2 {
  font-size: 1.313em;
  font-weight: normal;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #riyu .col_wrap {
    padding: 1px 10px 60px;
  }
  #riyu .col_wrap ul {
    display: flex;
    justify-content: center;
  }
  #riyu .col_wrap li {
    width: 265px;
    text-align: center;
  }
  #riyu .col_wrap li:nth-child(2) {
    margin: 0 50px;
  }
}
@media screen and (min-width:1000px) {
  #riyu .col_wrap {
    padding: 1px 5% 60px;
  }
  #riyu .col_wrap li:nth-child(2) {
    margin: 0 119px;
  }
}
.youtube {
  /* position: relative; */
  /* width: 100%; */
  /*padding-top: 56.25%;*/
}
.youtube iframe {
  /* position: absolute; */
  /* top: 0; */
  /* right: 0; */
  width: 100% !important;
  /* height: 100% !important; */
}
/* ===== News list: Modern look ===== */
#news .col_wrap{
  margin: 32px auto 96px;
  width: min(100%, 980px);
}

/* 各アイテムを行ごとに整列（モバイル：縦積み / PC：左右2カラム風の行） */
#news dl{
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 16px;
  padding: 14px 0;
  border-bottom: 1px dashed #d8dee3;
}

@media (min-width: 768px){
  #news dl{
        grid-template-columns: 250px 1fr;
        align-items: start;
        padding: 18px 0;
  }
}

/* 左カラム（日時＋カテゴリバッジ） */
#news dt{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  padding: 6px 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #39434f;
}

/* 右カラム（タイトル＋抜粋） */
#news dd{
  margin: 0;
  padding: 0;
  color: #4a5568;
}

/* タイトル＆リンク */
#news a{
  color: #0b74c7;
  text-decoration: none;
}
#news a:hover,
#news a:focus-visible{
  color: #095fa3;
  text-decoration: underline;
  outline: none;
}

/* 投稿サムネイル（thumb_list クラスに合わせる） */
#news .thumb_list{
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}
@media (max-width: 767px){
  #news .thumb_list{
    width: 100%;
    height: auto;
    margin: 8px 0 0;
  }
}

/* カテゴリーバッジ（共通） */
#news dt span{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 9999px;
  font-size: .78rem;
  line-height: 1;
  color: #fff;
  background: #2aa994; /* default */
  box-shadow: 0 4px 12px rgba(42,169,148,.25);
}

/* カテゴリー別カラー（既存 slug に合わせて上書き） */
#news dt span.media{     background-color:#e5adce; box-shadow:0 4px 12px rgba(229,173,206,.25); }
#news dt span.gakusyu{   background-color:#a3bce2; box-shadow:0 4px 12px rgba(163,188,226,.25); }
#news dt span.seminar{   background-color:#8cc98a; box-shadow:0 4px 12px rgba(140,201,138,.25); }
#news dt span.sonota{    background-color:#59c4e7; box-shadow:0 4px 12px rgba(89,196,231,.25); }
#news dt span.pal_flier{ background-color:#e3aa67; box-shadow:0 4px 12px rgba(227,170,103,.25); }

/* 日付の見栄え（dt 内の time を想定） */
#news dt time{
  font-weight: 700;
  color: #2f3a4a;
}

/* タイトル */
#news dd h2{
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.45;
  margin: 4px 0 8px;
  color: #2f3a4a;
}
#news dd h2 a{
  color: inherit;
  text-decoration: none;
}
#news dd h2 a:hover,
#news dd h2 a:focus-visible{
  color: #0b74c7;
  text-decoration: underline;
}

/* 抜粋テキスト */
#news dd p{
  margin: 0;
  font-size: .95rem;
  line-height: 1.8;
  color: #475569;
}
/* 続きを読むボタン 共通スタイル */
#news dd a.read-more, #pal_member a.read-more{
  display: inline-block;
  padding: 8px 18px;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #2fa994, #00a7e3);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  line-height: 1.4;
}

#news dd a.read-more:hover,
#news dd a.read-more:focus, #pal_member a.read-more:hover,#pal_member a.read-more:focus{
  background: linear-gradient(135deg, #00a7e3, #2fa994);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-decoration: none;
}

/* スマホ時は幅いっぱいに */
@media (max-width: 600px) {
  #news dd a.read-more, #pal_member a.read-more{
    display: block;
    text-align: center;
    width: 100%;
  }
}

/* タグリスト（.tags が出力される場合） */
#news .tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0 0;
  margin: 8px 0 0;
  list-style: none;
}
#news .tags li{
  margin: 0;
}
#news .tags a{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 9999px;
  background: #eef6f5;
  color: #227c6e;
  border: 1px solid #d1ece7;
  text-decoration: none;
  font-size: .82rem;
}
#news .tags a:hover,
#news .tags a:focus-visible{
  background: #e6f3f1;
  color: #17665a;
  outline: none;
}

/* アクセシビリティ配慮 */
@media (prefers-reduced-motion: reduce){
  #news a,
  .pagination .page-numbers{
    transition: none;
  }
}
/*セットコース*/
.set_naiyo {
  width: 100%;
}
.set_naiyo dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 80px;
}
.set_naiyo dl:nth-child(2) {
  margin-top: 0px;
}
@media screen and (min-width: 768px) {
  .set_naiyo dl:nth-child(2) {
    margin-top: 80px;
  }
}
.set_naiyo dt {
  width: 130px;
  margin-right: 20px;
  margin-bottom: 15px;
  border: 1px solid #2b3e8d;
  color: #2b3e8d;
  text-align: center;
  padding: 13px 0;
  font-size: 0.938em;
}
.set_naiyo dd {
  width: calc(100% - 150px);
  margin-bottom: 15px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .set_naiyo {
    display: flex;
    justify-content: space-between;
    max-width: 950px;
    margin: 0 auto 90px;
  }
  .set_naiyo dl {
    width: 50%;
  }
}
.set_nav {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
  align-items: stretch;
  justify-content: center;
  margin: 80px auto 100px;
}
#c22_4 .set_nav {
  width: 70%;
}
.set_nav li {
  width: 33.3333%;
}
@media screen and (min-width: 768px) {
  .set_nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
.set_nav li a {
  width: 100%;
  height: 100%;
  padding: 15px 0 25px;
  font-size: 1em;
  color: #fff;
  line-height: 1.3;
  background-image: url(../images/arrow02.png);
  background-repeat: no-repeat;
  background-position: center 90%;
  background-size: 9px auto;
  border: 2px #fff solid;
  background-color: #a3bce2;
  display: block;
}
.set_nav li span {
  display: inline-block;
  padding-top: 10px;
}
.set_nav li.bg_y a {
  background-color: #f7d983;
}
.set_nav li.bg_pu a {
  background-color: #a68bc0;
}
#c22_4 .set_nav li.bg_pu a {
  background-color: #a68bc0;
  padding: 15px 0 15px;
}
.set_nav li.bg_c393b2 a {
  background-color: #c393b2;
}
#c22_4 .set_nav li.bg_c393b2 a {
  background-color: #c393b2;
  padding: 15px 0 15px;
}
#c22_4 .set_nav li {
  width: 30%;
  display: flex;
  align-items: stretch;
}
#c22_4 .set_nav li a {
  background-image: none;
  position: relative;
  height: auto;
  border: none;
  border-left: 2px #fff solid;
  border-right: 2px #fff solid;
}
#c22_4 .set_nav.img_style li a {
  padding: 0;
  line-height: 0;
}
#c22_4 .set_nav {
  margin: 0px auto 100px;
}
#c22_4 .set_nav.img_style {
  margin: 80px auto 0px;
}
#c22_4 .set_nav li a span {
  position: relative;
}
.midashi_04l {
  font-size: 1.500em;
  margin-right: 40px;
}
.flower_wrap.set_course {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border-bottom: 1px #000 solid;
}
.flower_wrap.set_course .midashi_03l {
  font-size: 1.875em;
}
.set_naiyo.set_ditail {
  width: 100%;
  max-width: 100%;
  margin-bottom: 10px;
}
.set_naiyo.set_ditail dl {
  width: calc(100% + 10px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  margin-left: -10px;
}
.set_naiyo.set_ditail dt {
  display: flex;
  align-items: center;
  font-size: 0.688em;
  border: none;
  background-color: #2b3e8d;
  color: #fff;
  padding: 0 3px;
  margin-right: 0;
  margin-left: 10px;
  height: 55px;
  text-align: left;
  line-height: 1.3;
}
.set_naiyo.set_ditail dt.nashi {
  background-color: #8884b8;
}
.set_naiyo.set_ditail dt img {
  max-width: 40px;
  margin-right: 5px;
}
.set_naiyo.set_ditail dd span span {
  font-size: 0.813em;
}
.set_naiyo.set_ditail dd {
  width: calc(50% - 140px);
  background-color: #ecf7fc;
  text-align: center;
  height: 55px;
  font-size: 0.875em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 800px) {
  .set_naiyo.set_ditail dd {
    width: calc(33.333% - 140px);
  }
}
@media screen and (min-width: 1100px) {
  .set_naiyo.set_ditail dd {
    width: calc(25% - 140px);
  }
}
@media screen and (max-width: 600px) {
  .set_naiyo.set_ditail dd {
    width: calc(100% - 140px);
  }
}
.wide-style.bg_y02 {
  background-color: #fdfce9;
  padding: 40px 0 10px;
  margin-bottom: 120px;
}
.wide-style.bg_y02 .mar-style {
  padding: 0px;
  margin-bottom: 20px;
}
.wide-style.bg_y02 .mar-style.mar-b80 {
  margin-bottom: 80px;
}
#c66_1_2 .btn {
  clear: both;
  display: block;
  padding: 20px;
  width: 300px;
  margin: 60px auto 0;
  background-color: #2fa994;
  color: #fff;
  text-align: center;
  font-size: 1.688em;
  border-style: none;
}
#c66_1_2 .btn.back {
  clear: both;
  display: block;
  padding: 10px;
  width: 150px;
  margin: 60px auto 0;
  background-color: #666;
  color: #fff;
  text-align: center;
  font-size: 1em;
  border-style: none;
  height: 40px;
}
#c66_1_2 dl {
  border-top: 1px #cdcdcd solid;
  border-bottom: 1px #cdcdcd solid;
  margin-bottom: 20px;
}
#c66_1_2 dt {
  width: 100%;
  padding: 20px;
  background-color: #edf7fd;
  font-size: 1em;
  line-height: 1.4;
}
#c66_1_2 dd input {
  font-size: 1.000em;
}
#c66_1_2 dd span {
  display: inline-block;
  margin-top: 10px;
}
#c66_1_2 dd {
  padding: 10px 20px;
  font-size: 1em;
}
#c66_1_2 dd select {
  font-size: 0.7em;
}
#c66_1_2 dt, #c66_1_2 dd {
  border-bottom: 1px #cbcbcb solid;
}
#c66_1_2 dd:last-of-type {
  border-bottom: none;
}
#c66_1_2 dd input {
  width: 100%;
  margin-right: 10px;
  padding: 7px;
  background-color: #f7f8f8;
  border: 1px #ccc solid;
  font-size: 0.7em;
}
#c66_1_2 dd:first-of-type {
  font-size: 0.9em;
  line-height: 1.6;
}
#c66_1_2 dd:first-of-type.radio_btn input {
  width: 12px;
  height: 12px;
  margin: 0 10px 0 0px;
}
#c66_1_2 dd:first-of-type.radio_btn input:first-of-type {
  margin: 0 10px 0 0px;
}
#c66_1_2 dd textarea {
  width: 100%;
}
#c66_1_2 dd select {
  border: 1px solid #999;
  padding: 10px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  #c66_1_2 dl {
    display: flex;
    flex-wrap: wrap;
    /* border-top: 1px #000 solid; */
  }
  #c66_1_2 dt {
    width: 230px;
  }
  #c66_1_2 dt, #sec06 dd {
    display: flex;
  }
  #c66_1_2 dd {
    padding: 10px 20px 10px 20px;
    width: calc(100% - 230px);
    display: flex;
    align-items: center;
  }
  #c66_1_2 dd:first-of-type.radio_btn input {
    margin: 0 10px 0 30px;
  }
  #c66_1_2 dd input, #c66_1_2 dd textarea {
    width: 70%;
  }
  #c66_1_2 dd.che input {
    width: auto;
  }
  #c66_1_2 dd.che label:first-child {
    margin-right: 20px;
  }
  #c66_1_2 dd span {
    margin-top: 0px;
  }
  #c66_1_2 .fsmall {
    font-weight: normal;
  }
  #c66_1_2 .submit_area {
    display: flex;
    max-width: 650px;
    margin: 0 auto;
  }
  #c66_1_2 .submit_area input:hover, #c66_1_2 .submit_area input:focus {
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
  }
  #c66_1_2 dt:last-of-type, #sec06 dd:last-of-type {
    border-bottom: none;
  }
  #c66_4 dd:last-child {
    display: block;
  }
  #c66_4 dd:last-child p {
    margin-bottom: 10px;
  }
  #c66_1_2 dt:last-of-type {
    display: block;
  }
  #c66_1_2 dt:last-of-type p {
    margin-top: 10px;
    text-indent: -1em;
    margin-left: 1em;
  }
  #c66_1_2 dd:first-of-type input {
    justify-content: space-between;
    width: 70%;
  }
  #c66_1_2 dd.sep input:first-of-type {
    margin-bottom: 0px;
  }
}
#c66_1 .mar-style.bo_area {
  padding: 50px 20px 20px;
  text-align: center;
}
#c66_1 .mar-style.bo_area p {
  line-height: 2;
}
#c66_1 .mar-style.bo_area p span {
  font-size: 1.313em;
  color: #2fa994;
  font-weight: bold;
}
#c66_1 .col_wrap {
  margin: 50px auto 10px;
}
#c66_1 .col1 {
  width: 100%;
  padding: 20px 2% 110px;
  margin: 0 auto;
  margin-bottom: 10px;
  position: relative;
  line-height: 1.4;
}
#c66_1 .col1 a {
  height: 65px;
  line-height: 45px;
}
#c66_1 .col1 a:hover, #c66_1 .col1 a:focus {
  opacity: 0.5;
  transition: opacity 0.8s ease-out;
}
#c66_1 .col3_01 {
  background-color: #f7f8f8;
  float: none;
  width: 100%;
  padding: 20px 2% 110px;
  text-align: left;
  margin-bottom: 10px;
  position: relative;
  line-height: 1.4;
}
#c66_1 .col3_01 h3 {
  font-size: 1.125em;
  margin-bottom: 23px;
  letter-spacing: 0.2em;
  color: #354147;
}
#c66_1 .btn02 {
  position: absolute;
  margin: 20px auto 0;
  width: calc(100% - 40px);
  left: 0;
  bottom: 20px;
  right: 0;
}
@media screen and (min-width: 768px) {
  #c66_1 .col_wrap {
    display: flex;
    margin: 50px auto 0;
    justify-content: space-between;
  }
  #c66_1 .col1 {
    width: 33%;
  }
  #c66_1 .col3_01 {
    float: none;
    width: 32%;
    align-content: stretch;
    margin-bottom: 0;
  }
}
#c22_1_info p {
  line-height: 2em;
}
#c02_1_syacho .col_wrap {
  margin: 100px auto;
}
#c02_1_syacho .col_wrap p {
  line-height: 2em;
}
#c02_1_syacho .col_wrap div:nth-child(1) {
  margin-bottom: 40px;
}
#c02_1_syacho .col_wrap div:nth-child(1) img {
  max-width: 130px;
  margin-top: 30px;
}
#c02_1_syacho .col_wrap div:nth-child(2) {
  flex-grow: 1;
}
#c02_1_syacho .col_wrap div:nth-child(2) img {
  max-width: 263px;
}
#c22_1_info.pal a {
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  #c22_1_info.pal {
    display: flex;
  }
  #c22_1_info.pal a {
    margin-left: 20px;
  }
  #c02_1_syacho .col_wrap {
    display: flex;
    padding: 0 60px;
  }
  #c02_1_syacho .col_wrap div:nth-child(1) {
    flex-grow: 3;
    padding-right: 40px;
    margin-bottom: 0px;
  }
  #c02_1_syacho .col_wrap div:nth-child(2) img {
    max-width: 263px;
  }
}
section.c02_1_gaiyo {
  padding-top: 100px;
}
#c02_1_gaiyo dl, .c02_1_gaiyo dl {
  /* line-height: 2em; */
  /* border-bottom: 1px #666 solid; */
  /* margin-top: 30px; */
  /* margin-bottom: 0; */
}
#c02_1_gaiyo dt, .c02_1_gaiyo dt {
  /* background-color: #edf7fd; */
  /* flex-basis: 300px; */
  /* padding: 20px; */
  /* text-align: left; */
  /* border-top: 1px #666 solid; */
  /* border-right: solid 1px #666; */
  /* border-left: solid 1px #666; */
  /* display: flex; */
  /* justify-content: left; */
  align-items: left
}
#c02_1_gaiyo dd, .c02_1_gaiyo dd {
  flex-basis: calc(100% - 300px);
  padding: 20px;
  /* border-top: 1px #666 solid; */
  /* border-right: solid 1px #666; */
  /* border-left: solid 1px #666; */
  /* display: flex; */
  /* align-items: stretch; */
}
a.e_link[target="_blank"] {
  display: inline-block;
  padding-right: 16px;
  background: url(../images/link_icon.png) no-repeat right center;
}
.location dd:nth-child(6) {
  /* padding: 0; */
  /* overflow: hidden; */
}
.location dd:nth-child(6) iframe {
  width: 100%;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  #c02_1_gaiyo dl {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  #c02_1_gaiyo {
    padding: 0 60px;
  }
}
#kouji_info .col_wrap {
  margin: 120px auto;
  max-width: 700px;
}
.kouji_man01 {
  width: 100%;
  line-height: 30px;
  margin-bottom: 20px;
}
.kouji_man01 h2 {
  font-size: 1em;
  margin-bottom: 20px;
}
.kouji_man {
  width: 100%;
  text-align: center;
}
.kouji_man img {
  width: 57px;
}
@media screen and (min-width: 768px) {
  #kouji_info .col_wrap {
    display: flex;
  }
  .kouji_man01 {
    width: 85%;
  }
  .kouji_man {
    width: 15%;
    margin-top: 50px;
  }
}
/**{
 -webkit-appearance: none;
	}*/
.color_red {
  color: #FF0004;
  font-size: 0.8em;
}
.color_blue {
  color: #2d4390;
}
.color_pal {
  color: #05743c;
}
.center_layout {
  text-align: center;
  font-size: 1.1em;
  line-height: 2em;
  color: #FF0004;
  margin: 50px 0px 0px 0px;
}
dd.che input {
  width: auto;
  margin-right: 10px;
}
.mail {
  margin: 40px 0px;
  text-align: center;
}
.mail a {
  color: #00A7E3;
  text-decoration: none;
}
#syukatu_info .col_wrap {
  margin: 0 auto;
  max-width: 700px;
}
#syukatu_info .syukatsu_info_bg_2 {
  padding: 80px 0;
  background-color: #ebf6f5;
  border-top: 1px solid #cccccc;
}
#syukatu_info .syukatsu_info_bg_1 {
  padding: 80px 0;
  background-color: #ecf7fc;
  border-top: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  #syukatu_info .col_wrap {
    display: flex;
  }
}
/**08/22**/
.syukatu {
  width: 100%;
  line-height: 30px;
  margin-bottom: 20px;
  padding-right: 60px;
}
.syukatu h2 {
  font-size: 1.75em;
  margin-bottom: 20px;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Noto Serif JP", "serif";
}
.syukatu_02 {
  width: 100%;
  text-align: center;
}
.syukatu_02 img {
  margin-top: 30px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .syukatu {
    width: 100%;
    line-height: 30px;
    margin-bottom: 20px;
    padding: 0 10px;
  }
  .syukatu_02 img {
    width: 100%;
  }
}
.innerh_style01 {}
.yasuragi {
  width: 100%;
  text-align: center;
}
.yasuragi img {
  width: 50%;
}
.icon img {
  width: 8%
}
.kyuzin {
  width: 100%;
  line-height: 30px;
  margin-top: 80px;
  margin-bottom: 80px;
}
.kyuzin h2 {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.kyuzin h3 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .kyuzin {
    padding-right: 60px;
  }
}
/**08/22**/
/*==================================================
  top セレモニーが選ばれる理由
==================================================*/
/*  top セレモニーが選ばれる理由　囲み
--------------------------------------------------*/
#reason .wide-style {
  background-color: #ebf6f5;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(235, 246, 245, 1) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(235, 246, 245, 1) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(235, 246, 245, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ebf6f5', GradientType=0);
  padding: 10px 0px;
}
@media screen and (min-width: 768px) {
  #reason .wide-style {
    padding: 40px 0px;
  }
}
/*  top セレモニーが選ばれる理由　3カラム
--------------------------------------------------*/
#reason ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 60px;
}
#reason li {
  margin: 0 auto;
  width: 90%;
}
#reason .col3_re {
  margin-bottom: 20px;
}
#reason .w_box {
  background-color: #fff;
  border-radius: 10px;
  color: #2fa994;
  font-size: 24px;
  text-align: center;
  padding: 20px;
}
#reason .t_box {
  margin: 10px 0 30px;
}
#reason img {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  #reason ul {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 60px;
  }
  #reason li {
    width: 330px;
  }
  #reason .col3_re {
    margin-bottom: 40px;
  }
  #reason .w_box {
    height: 290px;
  }
  #reason .t_box {
    margin: 20px auto;
  }
}
/*  top セレモニーが選ばれる理由　詳細ボタン
--------------------------------------------------*/
#reason .de_btn {
  width: 90%;
  background-color: #3d4d8f;
  text-align: center;
  margin: 0 auto;
}
#reason .de_btn:hover, #reason .de_btn:focus {
  opacity: 0.5;
  transition: 1.0s;
}
#reason .de_btn p {
  padding: 20px 0;
  color: #fff;
}
@media screen and (min-width: 768px) {
  #reason .de_btn {
    width: 300px;
  }
}
.bl_box {
  display: inline-block;
  background-color: #3d4d8f;
  font-size: 80%;
  padding: 1px 15px;
  margin-right: 10px;
  color: #fff;
  letter-spacing: 0.1em;
}
.contents .block {
  display: inline-block;
}
/*  バナーリンク
--------------------------------------------------*/
#bnr_imgl {
  display: flex;
  gap: 0 10px;
}
@media screen and (max-width: 768px) {
  #bnr_imgl {
    flex-wrap: wrap;
  }
  #bnr_imgl li {
    width: 48%;
  }
  #bnr_imgl li a img {
    width: 48%;
    border: solid 1px #ddd;
  }
}
/*  パンくず
--------------------------------------------------*/

.breadcrumb{
    margin: 0 auto 40px;
    padding: 10px 0 10px 10px;
    position: relative;
    top: 226px;
    z-index: 100;
    margin: 0;
    background: #edf7fd;
    border-bottom: 1px solid #efefef;
    border-top: 1px solid #efefef;
}

.miyorinashi .breadcrumb{
    /* max-width: 1128px; */
    margin: 0 auto 40px;
    padding: 10px 0 10px 10px;
    position: relative;
    top: 108px;
    z-index: 100;
    margin: 0;
    background: #f4f8fa;
    border-bottom: solid 1px #eee;
}
.breadcrumb>span{
    display: block;
    max-width: 1128px;
    margin: 0 auto;
}
/*  CTAバナー
--------------------------------------------------*/

#contact .col_wrap {
  margin: 0 auto;
}
.cta_banners {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 35px 0;
  max-width: fit-content;
  margin: auto;
  align-items: center;
}
.cta_banners li {
  width: 80%;
  background: #fff;
  margin: 0;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.cta_banners li img {
  width: 100%;
  height: auto;
  display: block;
}

.cta_row2 {
  display: flex;
  gap: 0;
  width: 100%;
  padding: 0;
  background: none;
  margin: 0;
}

.cta_row2 .cta_half {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .cta_row2 {
    flex-direction: column;
    gap: 18px;
  }
  .cta_row2 .cta_half {
    width: 100%;
  }
.breadcrumb {
    top: 128px;
}
.miyorinashi .breadcrumb {
    top: 120px;
}
}
/* ベース変数 */
:root {
  --color-bg-dt: #f5fbff;
  --color-border: #e0e0e0;
  --color-text: #333;
  --color-link: #0066cc;
  --spacing: 1rem;
  --radius: 4px;
}

/* セクション内の dl 全体 */
section.c02_1_gaiyo dl {
  display: grid;
  grid-template-columns: minmax(120px, 30%) 1fr;
  gap: 0;
  margin: 2rem 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-text);
}

/* 各項目をボトムボーダーで区切る */
section.c02_1_gaiyo dl > dt,
section.c02_1_gaiyo dl > dd {
  padding: var(--spacing);
  border-bottom: 1px solid #efefef;
}

/* 用語部（タイトル）の背景・強調 */
section.c02_1_gaiyo dl > dt {
  background-color: var(--color-bg-dt);
  font-weight: 600;
  border-right: 1px solid #efefef;
}

/* 説明部のテキスト寄せ */
section.c02_1_gaiyo dl > dd {
  background-color: #fff;
  line-height: 1.8;
}
dl.location dd span {
    background: #2aa994;
    color: #fff;
    border-radius: 14px;
    padding: 4px 8px;
    margin-right: 6px;
    line-height: 2.4;
}
/* リンクのスタイル */
section.c02_1_gaiyo dl a {
  color: var(--color-link);
  text-decoration: none;
}
section.c02_1_gaiyo dl a:hover {
  text-decoration: underline;
}

/* ネストされたリストも余白を整える */
section.c02_1_gaiyo dl dd ol,
section.c02_1_gaiyo dl dd ul {
  /* margin: 0.5rem 0 0 1.5rem; */
  padding: 0;
}

/* モバイル（幅600px以下）では縦積み */
@media (max-width: 600px) {
  section.c02_1_gaiyo dl {
    grid-template-columns: 1fr;
  }
  section.c02_1_gaiyo dl > dt {
    border-right: none;
  }
}

/* もし location クラス付きで地図 iframe 等を含む場合 */
section.c02_1_gaiyo dl.location > dd {
  /* padding: 0; */
}
section.c02_1_gaiyo dl.location iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: var(--radius);
}
/* 人気の記事セクション */
.popular_articles {
  margin: 60px auto;
  padding: 20px;
  background-color: #fff;
}

.popular_articles h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  border-left: 4px solid #2fa994;
  padding-left: 12px;
  font-weight: bold;
}

/* 記事リスト */
.popular_articles ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
}

/* 各記事カード */
.popular_articles li {
  /* border: 1px solid #e0e0e0; */
  border-radius: 8px;
  /* background: #fafafa; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.popular_articles li:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

/* リンク全体をクリック可能に */
.popular_articles li a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  padding: 12px;
}

/* 記事タイトル */
.popular_articles li h4 {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0366D6;
}

.popular_articles li h4:hover {
  text-decoration: underline;
  color: #00A7E3;
}

/* サムネイル画像 */
.popular_articles li img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  margin-top: auto; /* タイトルの下に揃える */
}

/* スマホ対応 */
@media (max-width: 768px) {
  .popular_articles ul {
    grid-template-columns: 1fr;
  }
  .popular_articles li {
    margin-bottom: 16px;
  }
}
.sharedaddy.sd-sharing-enabled {
display:flex;
justify-content: center;
}