@charset "UTF-8";

/* ======================================================
* style.css
* ------------------------------------------------------
  ・全体
  ・header／menu
  ・mv
  ・contents-area
  ・section-area
  ・Pick up
  ・News
  ・2列コンテンツ
  ・4列コンテンツ（画像あり）
  ・4列コンテンツ（画像なし・ボタンあり）
  ・footer
  ・TOPへ戻るボタン
  ・パンくず
  ・下層コンテンツ一覧
  ・下層記事
  ・下層活動報告画像
  ・芳名録
  ・サイトマップ
  ・CKeditor



====================================================== */

/* ---------------------
    全体
-----------------------*/
html {
    font-size: 62.5%;
    color: #282828;
    overflow-x: hidden;
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    letter-spacing: 0.025em;
    scroll-behavior: smooth;
}
body {
    font-size: 1.6rem;
    margin: 0;
    overflow: hidden;
}
* {
    box-sizing: border-box;
}
#wrapper {
    width: 100%;
    margin: auto;
}
.content-wrapper {
    /* padding: 0 20px; */
    margin: 0 60px;
    /* max-width: 1200px; */
}
img {
    max-width: 100%;
    object-fit: cover;
    height: auto;
    line-height: 0;
    vertical-align: bottom;
}
a {
    color: #403999;
    text-decoration: none;
    transition: all 0.3s;
}
a:hover {
    opacity: .7;
}

h2 {
    font-size: 5.0rem;
    font-weight: normal;
}
h3 {
    font-size: 1.5em;
}
strong {
    font-weight: bold;
}

@media print, screen and (max-width: 768px) {
    .content-wrapper {
        margin: 0 20px;
    }
    h2 {
        font-size: 2.8rem;
    }
}

/* @media print, screen and (max-width: 414px) {
    h2 {
        font-size: 2.8rem;
    }
} */


/* ---------------------
      header／menu
-----------------------*/
#header {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.inner {
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

/* 学校ロゴ */
.header-mainlogo {
    margin-left: 20px;
}
.header-mainlogo:hover {
    opacity: 0.7;
}

/* グロナビメニュー（PC） */
.header-nav {
    display: flex;
    flex-direction: column;
}
.lower-nav {
    display: flex;
    height: 80px;
}
#global-nav {
    align-items: center;
}
.header-col {
    display: flex;
}
.header-col .header-uni-logo:hover {
    opacity: 0.7;
}
.header-nav-list {
    margin-right: 30px;
    font-weight: 600;
    line-height: 20px;
    padding: 30px 0;
}
.header-nav-list:last-child {
    margin-right: 0;
}
.header-nav-list a {
    color: #333;
    text-decoration: none;
}
.header-nav-list > a:hover {
    border-bottom: 2px solid #36328f;
    padding-bottom: 10px;
    opacity: 0.7;
}
.header-donate-btn {
    margin: auto 30px;
}
.header-donate {
    background: linear-gradient(25deg, #fcd736, #ff7e00);
    border-radius: 8px;
    color: #FFF;
    padding: 16px 16px;
    text-align: center;
    margin: 0;
}
.header-donate:hover {
    opacity: 0.7;
}

/* ハンバーガー */
#header .inner .col {
    display: none;
}

/* サブメニュー */
.header-nav-list .subnav-clear-wrapper {
    top: 100%;
    position: absolute;
    z-index: 900;
    /* display: none; */
    visibility: hidden;/*デフォルトでは非表示の状態にしておく*/
    opacity: 0;
    transform: translateX(0); /* js側で（グロナビメニューの幅 / 2）-215（サブメニューの幅の中央値）を取得*/
    transition: all 0.3s;
}
.header-nav-list-hover {
    background-color: #fff;
    border-radius: 1rem;
    box-sizing: border-box;
    color: #333;
    font-weight: normal;
    padding: 20px;
    top: 100%;
    width: 430px;
    transform: translateY(20px);
    border: 2px solid #403999;
}
/* グロナビメニューホバー時にサブメニューを表示 */
.header-col li:hover .subnav-clear-wrapper {
    /* display: block; */
    visibility: visible;
    opacity: 1;
}
.header-col li:hover .header-nav-list-hover {
    display: inline-block;
}
.header-nav-list-hover-flex {
    display: flex;
    flex-direction: column;
}
.header-nav-list-hover-flex li {
    border-bottom: 1px dashed #777 ;
    margin-bottom: 20px;
    padding-bottom: 20px;
    line-height: 2rem;
}
/* 最後のリストの下線と余白を削除 */
.header-nav-list-hover-flex li:last-child {
    border-style: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.header-nav-list-hover-flex li a {
    display: block;
    max-width: 600px;
    position: relative;
    transition: font-weight 0.3s ease;
}
.header-nav-list-hover-flex li a::before {
    content: '';
    border-bottom: 0.1em solid #36328f;
    color: #333;
    line-height: 1;
    position: absolute;
    top: calc((100% - 1.6px) / 2);
    /*top: 0.55em;*/
    right: 5%;
    width: 1em;
    transition: right .3s;
}
.header-nav-list-hover-flex li a::after {
    content: '';
    width: 0.5em;
    height: 0.5em;
    border: 0.1em solid #36328f;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: 5%;
    box-sizing: border-box;
    transition: right .3s;
}
.header-nav-list-hover-flex li a:hover {
    color: #36328f;
    opacity: unset;
}
.header-nav-list-hover-flex li a:hover::before,
.header-nav-list-hover-flex li a:hover::after {
    right: 5px;
}

.header-nav-list-hover h3 {
    text-align: center;
    margin: 30px auto ;
}
#global-nav-sp {
    display: none;
}

/* グロナビメニュー（SP） */
#global-nav-sp {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}
#global-nav-sp ul{
    height:80%;
    overflow: auto;
    margin-bottom:50px;
}

@media print, screen and (min-width: 1401px) {
    #header {
        position: relative;
        width: 100%;
        background: #ffffff;
    }
    #header.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    #header > .inner {
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        align-items: center;
    }

}

@media print, screen and (max-width: 1400px) {
    #header .inner .header-nav .header-col ,#global-nav-sp {
        display: none;
        position: relative;
        z-index:9998;
    }
    #header .inner .col .header-nav-btn .btn .btn-icon {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 50px;
        height: 3px;
        background: #0a2044;
        transition: .2s;
        transform: translate(-50%, -50%);
    }
    #header > .inner > .col .header-nav-btn .btn .btn-icon:before,
    #header > .inner > .col .header-nav-btn .btn .btn-icon:after {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 50px;
        height: 3px;
        background: #0a2044;
        transition: .3s;
    }
    #header > .inner > .col .header-nav-btn .btn .btn-icon:before {
        margin-top: -16px;
    }
    #header > .inner > .col .header-nav-btn .btn .btn-icon:after {
        margin-top: 12px;
    }
    #header > .inner > .col .header-nav-btn .btn {
        display: inline-block;
        position: relative;
        width: 46px;
        height: 50px;
        margin: 0 20px;
    }
    .header-donate-btn {
        margin: auto;
    }
    #header > .inner > .header-col:first-of-type {
        margin: 0 auto 0 0;
    }
    #header > .inner > .col > .header-nav-btn .btn .is-open {
        background: transparent;
    }
    #header > .inner > .col .header-nav-btn .btn .is-open:before,
    #header > .inner > .col .header-nav-btn .btn .is-open:after {
        margin-top: 0;
    }
    #header > .inner > .col .header-nav-btn .btn .is-open:before {
        transform: rotate(-45deg);
    }
    #header > .inner > .col .header-nav-btn .btn .is-open:after {
        transform: rotate(-135deg);
    }

    /* ハンバーガーメニュー */
    #header > #global-nav-sp > ul > li > ul {
        display: none;
    }
    #header > #global-nav-sp > ul > li > ul .nav-list-title {
        display: block;
        font-size: 16px;
        max-width: 650px;
        margin: 0 auto;
        padding: 10px 10px;
    }
    #header > #global-nav-sp > ul {
        background-color: #fff;
        color: #333;
        padding: 20px 0;
        position: absolute;
        width: 100%;
    }
    #header > #global-nav-sp > ul > li .title {
        max-width: 800px;
        display: flex;
        justify-content: space-between;
        border-bottom: none;
        margin: 0 auto;
        padding: 20px 30px;
        cursor: pointer;
        line-height: 2;
    }
    #header > #global-nav-sp > ul ul li a {
        color: #333;
        position: relative;
        display: block;
        font-size: 1.4rem;
        max-width: 600px;
        margin: 0 auto;
        padding: 10px 40px 10px 20px;
        line-height: 1.5;
    }

    /* お礼とご報告の【御礼】 */
    #header > #global-nav-sp > ul ul p {
        display: block;
        font-size: 1.4rem;
        max-width: 600px;
        margin: 0 auto;
        padding: 10px 40px 10px 20px;
        line-height: 1.5;
    }
    #header > #global-nav-sp > ul ul ul li a {
        position: relative;
        display: block;
        font-size: 1.4rem;
        max-width: 600px;
        margin: 0 auto;
        padding: 10px 50px 10px 40px;
        line-height: 1.5;
    }

    /* → */
    #header > #global-nav-sp > ul ul li a::before {
        content: '';
        border-bottom: 2px solid #36328f;
        color: #333;
        line-height: 1;
        position: absolute;
        top: 50%;
        right: 1.7em;
        width: 1em;
        margin-top: -1px;
        transform: translateY(-50%);
    }
    #header > #global-nav-sp > ul ul li a::after {
        content: '';
        width: 8px;
        height: 8px;
        border: 0;
        border-top: 2px solid #36328f;
        border-right: 2px solid #36328f;
        transform: rotate(45deg);
        position: absolute;
        top: 50%;
        right: 25px;
        margin-top: -6px;
    }
    /* ＋ */
    #header > #global-nav-sp > ul > li .title .btn {
        flex: 0 0 40px;
        position: relative;
        cursor: pointer;
    }
    #header > #global-nav-sp > ul > li .title .btn:before,
    #header > #global-nav-sp > ul > li .title .btn:after {
        position: absolute;
        top: 30%;
        left: 50%;
        width: 2px;
        height: 16px;
        content: "";
        background-color: #36328f;
    }
    #header > #global-nav-sp > ul > li .title .btn:after {
        transform: rotate(90deg);
    }
    #header > #global-nav-sp > ul > li .title a {
        color: #333;
        -webkit-flex: 1 1 1px;
        flex: 1 1 1px;
    }
    /* − */
    #header > #global-nav-sp > ul > li .title .btn.is-open:before {
        opacity: 0;
    }
    #header > #global-nav-sp > ul > li .title .arrow {
        flex: 0 0 40px;
        position: relative;
        cursor: pointer;
    }
    #header > #global-nav-sp > ul > li .title .arrow:before {
        content: '';
        border-bottom: 2px solid #36328f;
        color: #333;
        line-height: 1;
        position: absolute;
        top: 50%;
        left: 30%;
        width: 16px;
        transform: translateY(-50%);
    }
    #header > #global-nav-sp > ul > li .title .arrow:after {
        content: '';
        width: 8px;
        height: 8px;
        border: 0;
        border-top: 2px solid #36328f;
        border-right: 2px solid #36328f;
        transform: rotate(45deg);
        position: absolute;
        top: 35%;
        left: 40%;
    }
    #header {
        position: relative;
        width: 100%;
        background: #ffffff;
    }
    #header.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    #header > .inner {
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        align-items: center;
    }

    /* ハンバーガー */
    #header .inner .col {
        display: block;
    }
}

@media print, screen and (max-width: 768px) {
    #header > .inner > .header-col .header-donate {
        font-size: 0.8rem;
        padding: 12px 12px;
    }
    #header .inner .col .header-nav-btn .btn .btn-icon {
        width: 30px;
        height: 2px;
    }
    #header > .inner > .col .header-nav-btn .btn .btn-icon:before,
    #header > .inner > .col .header-nav-btn .btn .btn-icon:after {
        width: 30px;
        height: 2px;
    }
    #header > .inner > .col .header-nav-btn .btn .btn-icon:before {
        margin-top: -12px;
    }
    #header > .inner > .col .header-nav-btn .btn .btn-icon:after {
        margin-top: 10px;
    }
    #header .inner .col .header-nav-btn .btn {
        margin-left: 10px;
    }
    #header > .inner > .col .header-nav-btn .btn .is-open:before {
        top: 11px;
    }
    #header > .inner > .col .header-nav-btn .btn .is-open:after {
        top: -11px;
    }
    .header-mainlogo {
        width: 150px;
    }
    .header-nav-btn {
        margin: 0;
    }
    #header > #global-nav-sp > ul ul li a {
        margin: 0 50px;
        max-width: none;
    }
    #header > #global-nav-sp > ul > li > ul .nav-list-title {
        margin: 0 20px 0 50px;
    }

    /* お礼とご報告の【御礼】 */
    #header > #global-nav-sp > ul ul p {
        margin: 0 50px;
    }
    #header > #global-nav-sp > ul ul ul li a {
        margin: 0 50px;
    }
}

@media print, screen and (max-width: 470px) {
    #header > #global-nav-sp > ul > li .title {
        padding: 20px;
    }
    #header > #global-nav-sp > ul ul li a {
        margin: 0 15px;
    }
    /* お礼とご報告の【御礼】 */
    #header > #global-nav-sp > ul ul p {
        margin: 0 20px;
    }
    #header > #global-nav-sp > ul ul ul li a {
        margin: 0 15px 0 25px;
    }
}

@media print, screen and (max-width: 393px) {
    .header-mainlogo {
        width: 100px;
        margin: 20px 0 20px 20px;
    }
    .header-donate {
        font-size: 1.2rem;
        padding: 12px 12px;
    }
}


/* ---------------------
    mv
-----------------------*/
.slick-image {
    margin: 0 auto;
}
.slick-slide .main-img {
    max-width: 100%;
    object-fit: cover;
    width: 100%;
    height: 560px;
}
.slick-content {
    -ms-transform: translate(0%,-120%);
    -webkit-transform: translate(0%,-120%);
    background: rgba(64, 57, 153, 0.9);
    box-sizing: border-box;
    margin: 0;
    padding: 70px 100px;
    position: absolute;
    left: 0;
    transform: translate(0%,-120%);
    z-index: 150;
}
.slick-content p {
    color: #ffffff;
    font-size: 3.0rem;
    font-weight: bold;
    margin: 0 0 30px;
    text-shadow: 4px 6.928px 8px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}
.slick-content h2 {
    color: #ffffff;
    font-size: 6.0rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 4px 6.928px 8px rgba(0, 0, 0, 0.3);
}
.slick-slide .sub-img {
    position: absolute;
    object-fit: cover;
    right: 0;
    bottom: 10px;
}

/* Go Forward表示のため */
.slick-outer {
    margin: 0 0 30px;
}

/* テキスト */
.slick-outer .slick-content-sp {
    display: none; /* 非表示 */
}

/*dots style*/
.slick-dots{
    bottom: -30px !important;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    background: #453288;
    opacity: 0.75!important;
}
.slick-dots li button:before {
    content:''!important;
    width: 15px!important;
    height: 15px!important;
    background: #333;
    border-radius: 50%;
}
.slick-dots li.slick-active button:before{
    background: #453288!important;
    opacity: 1!important;
}

/* @media print, screen and (max-width: 1440px) {
    .slick-content h2 {
        font-size: 5.5rem;
    }
    .slick-content p {
        font-size: 2.0rem;
    }
}
@media print, screen and (max-width: 970px) {
    .slick-content {
        padding: 20px 40px;
    }
} */
@media print, screen and (max-width: 768px) {
    .slick-slide .main-img {
        height: 430px;
    }
    /* タイトル */
    .slick-content {
        padding: 20px 30px;
        transform: translate(0%,-250%);
        -ms-transform: translate(0%,-250%);
        -webkit-transform: translate(0%,-250%);
    }
    .slick-content h2 {
        font-size: 3rem;
    }
    .slick-content p {
        font-size: 1.7rem;
        margin: 0 0 20px;
    }
    /* Go Forward */
    .slick-slide .sub-img {
        max-width: 250px;
        transform: translate(0%,-30%);
        -ms-transform: translate(0%,-30%);
        -webkit-transform: translate(0%,-30%);
    }
    /* テキスト */
    .slick-outer .slick-content-sp {
        display: block; /* 表示 */
        color: #fff;
        position: absolute;
        top: 5%;
        right: 5%;
        /* transform: translate(0%,-120%); */
    }
    .slick-outer .slick-content-sp ul {
        display: flex;
        flex-direction: column;
    }
    .slick-outer .slick-content-sp ul li{
        padding: 1rem;
        line-height: 1.5;
    }
}

/* 393pxだと崩れるため600pxで変更 */
@media print, screen and (max-width: 600px) {
    .slick-slide .main-img {
        height: 280px;
    }
    /* タイトル */
    .slick-content {
        transform: translate(0%,-150%);
        -ms-transform: translate(0%,-150%);
        -webkit-transform: translate(0%,-150%);
    }
    .slick-content h2 {
        font-size: 2.5rem;
    }
    /* テキスト */
    .slick-outer .slick-content-sp {
        max-width: 280px;
        right: 0;
    }
    .slick-outer .slick-content-sp ul {
        flex-direction: row;
        flex-wrap: wrap;
        font-size: 1rem;
    }
    .slick-outer .slick-content-sp ul li {
        padding: 5px;
    }
}
@media print, screen and (max-width: 393px) {
    /* Go Forward */
    .slick-slide .sub-img {
        max-width: 150px;
        transform: translate(0%,-50%);
        -ms-transform: translate(0%,-50%);
        -webkit-transform: translate(0%,-50%);
    }
}


/* ---------------------
    Pick up
-----------------------*/
.home .cmn-container01 {
    padding-top: 50px;
}
/* PC幅でカルーセルの右側をはみ出すために左側のみ余白を設定 */
.home .cmn-container01 .content-wrapper {
    margin: 0 0 0 5%;
}
.pickup {
    display: flex;
    position: relative;
    margin: 0 0 50px;
}
.pickup-title{
    display: flex;
    flex-direction: column;
    margin-right: 60px;
    min-width: 250px;
}
.pickup-title .title {
    font-size: 6.8rem;
    font-weight: bold;
    color: #36328f;
    margin: 0 0 20px;
}
.pickup-title .subtitle {
    font-size: 2.4rem;
    font-weight: bold;
    color: #36328f;
    margin: 0;
}

/* カルーセルの右側にはみ出した部分は非表示に */
.pickup-slider-wrapper {
    overflow: hidden;
}
.idx_type {
    display: flex;
}

/* slick */
.pickup-slider-wrapper .slick-list {
    overflow: visible;
    padding: 0 10% 0 0 !important;
}
.item-list .slick-track {
    display: flex;
  }
.idx_type .slick-slide {
    height: auto !important;
    padding: 10px; /*jsで自動で次のコンテンツを表示するようにしたら3コンテンツになる。自動部分をfalseにすると幅がおかしくなる*/
}
.item-list .slick-prev {
    left: 0;
    background: url("img/arrow_left_on.png");
    background-position: center;
    background-size: contain;
    width: 45px;
    height: 45px;
}
.item-list .slick-next {
    right: 0;
    background: url("img/arrow_right_on.png");
    background-position: center;
    background-size: contain;
    width: 45px;
    height: 45px;
}

.idx_type .idx_type_content {
    background-color: #fff;
}
.idx_type .idx_type_content .type_content_inner {
    color: #333;
    display: flex;
    flex-direction: column;
}
.idx_type .idx_type_content .type_content_inner a {
    color: #282828;
}

.idx_type .idx_type_content .idx_type_img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}
.idx_type .idx_type_content .idx_type_img img {
    width: 100%;
    height: 100%;
    max-height: 300px; /* 画像の見切れ防止のため */
}
.idx_type .idx_type_content .type_content_txt h3 {
    margin-bottom: 30px;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.5;
}
.idx_type .idx_type_content .type_content_txt:hover {
    opacity: .7;
}
.idx_type .idx_type_content .type_content_txt p {
    line-height: 1.75;
}

@media print, screen and (max-width: 1300px) {
    .idx_type .idx_type_content .btn_btm {
        margin-right: 20px;
        margin-left: 20px;
    }
}

@media print, screen and (max-width: 960px) {
    .home .cmn-container01 .content-wrapper {
        margin: 0;
    }
    .pickup {
        flex-direction: column;
    }
    .pickup-title {
        flex-direction: row;
        align-items: center;
        margin: 0 5% 30px;
    }
    .pickup-title .title {
        font-size: 5.2rem;
        margin: 0 20px 0 0;
        padding: 0;
        text-align: center;
    }
    .pickup-title .subtitle {
        font-size: 1.8rem;
    }

    /* slick */
    .pickup-slider-wrapper .slick-list {
        padding: 0 5% !important;
    }

    .idx_type .idx_type_content + .idx_type_content {
        /*margin-top: 20px;*/
    }
    .idx_type .idx_type_content .idx_type_img img {
        max-height: 200px;
    }
    .idx_type .idx_type_content .type_content_txt h3 {
        font-size: 2.2rem;
    }
    .idx_type .idx_type_content .type_content_txt {
        margin: 0;
    }
}

@media print, screen and (max-width: 393px) {
    .idx_type .idx_type_content .idx_type_img img {
        height: 250px;
    }
    .pickup-title {
        margin: 0 5% 20px;
    }
    .pickup-title .title {
        font-size: 3.0rem;
        margin: 0 10px 0 0;
    }
    .pickup-title .subtitle {
        font-size: 1.4rem;
    }
    .idx_type .idx_type_content .type_content_txt h3 {
        font-size: 2.0rem;
    }
}


/* ---------------------
    News
-----------------------*/
.home .cmn-container02 {
    padding: 50px 0 70px;
    background-color: #f2f2f2;
}
.news {
    display: flex;
    justify-content: space-between;
    margin: 0 0 50px;
}
.news-title {
    display: flex;
    flex-direction: column;
    margin-right: 60px;
    min-width: 250px;
}
.news-title .title {
    font-size: 6.8rem;
    font-weight: bold;
    color: #36328f;
    margin: 0 0 20px;
}
.news-title .subtitle {
    font-size: 2.4rem;
    font-weight: bold;
    color: #36328f;
    margin: 0;
}
.news-content-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1300px;
}
.flex-grow {
    flex-grow: 1;
}
.news-list {
    height: 300px;
    overflow-y: scroll;
}
.news-list .card {
    display: flex;
}
.news-list .card:hover {
    color: #514cbf;
}
.news-list .list {
    border-top: 1px dashed #ccc;
    padding: 30px 0 ;
}
.news-list .list a {
    color: #282828;
    display: block;
}
.news-list .list a:hover {
    opacity: unset;
}
.news-list .list:last-child {
    border-bottom: 1px dashed #ccc;
}
.news-list .date {
    display: block;
    margin-right: 20px;
    width: 150px;
    line-height: 1.7;
}
.news-list .list-title {
    display: inline-block;
    text-align: left;
    line-height: 1.7;
}
.news .news-btn {
    color: #333;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    max-width: 370px;
    margin: 20px 0 0;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}
.news .news-btn:hover {
    color: #514cbf;
    border-bottom: 1px solid #514cbf;
}
.news .news-btn a {
    color: #333;
}
/* .news .news-btn::after {
    content: '';
	width: 0;
	transition: all 0.3s ease;
	border-bottom: 1px solid #36328f;
	display: block;
    padding-top: 20px;
} */
/* .news .news-btn:hover::after {
    width: 100%;
    border-bottom: 1px solid #514cbf;
} */
.news-btn a img {
    object-fit: contain;
}
.news-btn:hover {
    color: #514cbf;
}
.news-btn a:hover {
    color: #514cbf;
    opacity: unset;
}
.news-btn a p {
    margin: 0;
    padding-right: 20px;
    position: relative;
}
.news-btn a p::before {
    content: '';
    border-bottom: 2px solid currentColor;
    color: #333;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    transform: translateY(-50%);
}
.news-btn a p::after {
    content: '';
    width: 0.55em;
    height: 0.55em;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: -0.05em;
    box-sizing: border-box;
}
.news-btn a p:hover::before {
    border-color: #514cbf;
    transition: all 0.3s;
}
.news-btn a p:hover::after {
    border-color: #514cbf;
    transition: all 0.3s;
}

@media print, screen and (max-width: 768px) {
    .news {
        flex-direction: column;
    }
    .news-title {
        flex-direction: row;
        align-items: center;
        margin: 0 0 30px;
    }
    .news-title .title {
        font-size: 5.2rem;
        margin: 0 20px 0 0;
        padding: 0;
        text-align: center;
    }
    .news-title .subtitle {
        font-size: 1.8rem;
    }
    .news-list {
        height: 300px;
    }
    .news-list .date {
        margin: 0;
    }
    .news .news-btn {
        max-width: 250px;
    }
}

@media print, screen and (max-width: 393px) {
    .news-list .card {
        flex-direction: column;
    }
    .news-title .title {
        font-size: 3.0rem;
        margin: 0 10px 0 0;
    }
    .news-title .subtitle {
        font-size: 1.4rem;
    }
    .news-list {
        height: 480px;
    }
    .news .news-btn {
        max-width: 200px;
    }
}


/* ---------------------
    2列コンテンツ
-----------------------*/
.home .cmn-container03 {
    padding: 50px 0;
}
.col2-card {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 60px; /* コンテンツの間 */
}
.col2-card-item {
    display: grid; /* カードの高さを揃える */
    grid-row: span 5; /* 子要素の数 */
    grid-template-rows: subgrid;
    gap: 0;
}
.col2-card-img-area {
    aspect-ratio: 3/2;
    margin-bottom: 50px;
}
.col2-card-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.col2-card-title {
    font-size: 2.8rem;
    font-weight: bolder;
    line-height: 1.7;
    margin-bottom: 40px;
}
.col2-card-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 20px;
}
.col2-card-text {
    line-height: 2;
}
.col2-card .col2-card-item .col2-card-btn-wrapper {
    max-width: 70%;
    width: 100%;
    margin: 30px 0 0 auto;
}
.col2-card .col2-card-item .col2-card-btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 50px;
    position: relative;
    background: #fff;
    border-bottom: 1px solid #333;
    box-sizing: border-box;
    padding: 0 50px 0 25px;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
}
.col2-card .col2-card-item .col2-card-btn:before {
    content: '';
    border-bottom: 2px solid currentColor;
    color: #333;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 25px;
    width: 20px;
    transform: translateY(-50%);
}
.col2-card .col2-card-item .col2-card-btn:after {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    position: absolute;
    /* top: 50%; */ /* コメントアウトすることで整った */
    right: 25px;
}
.col2-card .col2-card-item .col2-card-btn:hover {
    background-color: rgba(81, 76, 191, 0.1); /* #514cbfの薄い色（透明度90%） */
    opacity: unset;
}

@media screen and (max-width: 768px) {
    .home .cmn-container03 {
        padding: 80px 0;
    }
    .col2-card {
        grid-template-columns: 1fr; /* 1列にする */
    }
    .col2-card-title {
        font-size: 2.1rem;
        margin-bottom: 30px;
    }
    .col2-card-subtitle {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 393px) {
    .col2-card .col2-card-item .col2-card-btn-wrapper {
        max-width: 80%;
        margin: 10px 0 0 auto;
    }
}


/* ---------------------
    4列コンテンツ（画像あり）
-----------------------*/
.home .cmn-container04 {
    padding: 50px 0;
    background-color: #f2f2f2;
}
.col4-card {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    /* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
    gap: 40px; /* コンテンツの間 */
}
.col4-card-item {
    display: grid; /* カードの高さを揃える */
    grid-row: span 3; /* 子要素の数 */
    grid-template-rows: subgrid;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    transition-duration: 0.3s;
}
.col4-card-item:hover {
    /*opacity: .7;*/
}
.col4-card-item a {
    color: #282828;
}
.col4-card-img-area {
    aspect-ratio: 3/2;
    margin-bottom: 20px;
}
.col4-card-img-area img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.col4-card-title {
    font-size: 2.2rem;
    font-weight: bolder;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 20px;
}
.col4-card-text {
    line-height: 2;
    margin-bottom: 20px;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .home .cmn-container04 {
        padding: 80px 0;
    }
    .col4-card {
        grid-template-columns: repeat(2, 1fr); /* 2列にする */
        gap: 30px;
    }
    .col4-card-title {
        font-size: 2.1rem;
    }
}


/* ---------------------
    4列コンテンツ（画像なし・ボタンあり）
-----------------------*/
.home .cmn-container05 {
    padding: 50px 0;
}
.col4b-card {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    /* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
    gap: 40px; /* コンテンツの間 */
}
.col4b-card-item {
    display: grid; /* カードの高さを揃える */
    grid-row: span 3; /* 子要素の数 */
    grid-template-rows: subgrid;
    gap: 0;
}
.col4b-card .col4b-card-item .col4b-card-title {
    font-size: 2.2rem;
    font-weight: bolder;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.col4b-card .col4b-card-item .col4b-card-text {
    line-height: 2;
}
.col4b-card .col4b-card-item .col4b-card-btn-wrapper {
    max-width: 85%;
    width: 100%;
    margin: 30px auto;
}
.col4b-card .col4b-card-item .col4b-card-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    position: relative;
    background: #fff;
    border: 1px solid #333;
    box-sizing: border-box;
    padding: 0 40px 0 25px;
    color: #333;
    font-size: 16px;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
    border-radius: 10px;
}
.col4b-card .col4b-card-item .col4b-card-btn:after {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -6px;
}
.col4b-card .col4b-card-item .col4b-card-btn:hover {
    background-color: rgba(81, 76, 191, 0.1); /* #514cbfの薄い色（透明度90%） */
    opacity: unset;
}

@media screen and (max-width: 768px) {
    .home .cmn-container05 {
        padding: 80px 0;
    }
    .col4b-card {
        grid-template-columns: repeat(2, 1fr); /* 2列にする */
    }
}

@media screen and (max-width: 393px) {
    .home .cmn-container05 {
        padding: 80px 0;
        margin-bottom: 80px;
    }
    .col4b-card {
        grid-template-columns: 1fr; /* 2列にする */
    }
    .col4b-card-title {
        font-size: 1.8rem;
    }
}


/* ---------------------
    footer
-----------------------*/
#footer {
    font-size: 1.5rem;
    position: relative;
    margin-top: 80px;
}
.footer-nav {
    background-color: #323232;
    padding: 40px 20px;
    margin: 0 auto;
    box-sizing: border-box;
    color: white;
}
.footer-nav-inner-wrap {
    max-width: 1300px;
    margin: 0 auto;
}
.footer-nav-inner {
    display: flex;
    flex-wrap: wrap;
}
.footer-nav-inner-wrap .title {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    border-bottom: solid 1px #777;
    padding-bottom: 15px;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.footer-nav-inner-wrap .FAQ {
    padding-bottom: 31px; /* タイトルがない場合に下線の高さを揃える */
}
.footer-col .footer-col-wrap .arrow {
    position: relative;
}
.footer-col .footer-col-wrap .arrow::after {
    position: absolute;
    color: #9891ff;
    top: 30%;
    right: 0;
    transform: translateY(-50%);
    font-family: FontAwesome;
    content: '\f105';
}
.footer-nav-inner-wrap .arrow .title:hover {
    color:#9891ff;
}
.footer-col {
    width: calc((100% / 4) * 1);
}
.footer-col-wrap {
    padding: 0 15px;
    margin-top: 30px;
}
.footer-col-list {
    display: flex;
}
.footer-col ul li{
    position: relative;
    padding-left: 1em;
    margin-bottom: 10px;
}
.footer-col ul li:before {
    border-radius: 50%; /*丸くする*/
    width: 5px; /*点の幅*/
    height: 5px; /*点の高さ*/
    display: block;
    position: absolute; /*絶対配置*/
    left: 0; /*点の位置*/
    top: 0.4em; /*点の位置*/
    content: "";
    background: #9891ff; /*点の色*/
    }
.footer-col ul li a {
    color: #fff;
    line-height: 1.5;
}
.footer-col ul li a:hover {
    color: #9891ff;
}

/* お礼とご報告の【御礼】 */
.footer-col ul p {
    line-height: 1.5;
    margin-bottom: 10px;
}
.footer-col ul ul li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 10px;
}
.footer-col ul ul li:before {
    border-radius: 50%; /*丸くする*/
    width: 5px; /*点の幅*/
    height: 5px; /*点の高さ*/
    display: block;
    position: absolute; /*絶対配置*/
    left: 1em; /*点の位置*/
    top: 0.4em; /*点の位置*/
    content: "";
    background: #9891ff; /*点の色*/
    }
.footer-col ul ul li a {
    line-height: 1.5;
}

/* FAQなど */
.footer-other {
    border-top: 1px solid #777;
    padding-top: 20px;
}

/* フッターサブナビ */
.footer-sub-nav-wrap {
    color: #fff;
    background-color: #323232;
    padding: 20px 0;
}
.footer-sub-nav {
    font-size: 1.4rem;
    padding-bottom: 20px;
}
.footer-sub-nav ul {
    display: flex;
    justify-content: center;
}
.footer-sub-nav li a {
    position: relative;
    display: inline-block;
    padding: 0 25px 0 0;
}
.footer-sub-nav li:last-of-type a {
    padding: 0;
}
.footer-sub-nav li a:after {
    position: absolute;
    background-color: darkgray;
    content: "";
    height: 14px;
    vertical-align: middle;
    width: 2px;
    top: 2px;
    right: 10px;
}
.footer-sub-nav li:last-of-type a::after {
    display: none;
}
.footer-sub-nav li a:hover {
    text-decoration: underline;
}
.footer-sub-nav li:last-of-type a {
    margin-right: 0;
}
#copyright {
    text-align: center;
}
#copyright small {
    font-size: 1.2rem;
}
.footer-nav-sp {
    display: none;
}

@media print, screen and (max-width: 1160px) {
    #footer .footer-nav {
        display: none;
    }
    .footer-nav-sp {
        display: block;
        background-color: #323232;
        padding: 50px 20px 60px;
        box-sizing: border-box;
        margin: 0 auto;
        color: white;
    }
    #footer .footer-nav-sp > ul > li {
        max-width: 800px;
        margin: 0 auto;
    }
    #footer .footer-nav-sp > ul > li > ul {
        display: none;
        margin: 0 30px;
    }
    #footer .footer-nav-sp > ul > li > ul > li {
        width: 100%;
    }

    /* ＋ */
    #footer .footer-nav-sp > ul > li .title .btn {
        flex: 0 0 40px;
        position: relative;
        cursor: pointer;
    }
    #footer .footer-nav-sp > ul > li .title {
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        margin: 0;
        padding: 20px 5px;
        border-style: none;
        cursor: pointer;
    }
    #footer .footer-nav-sp > ul > li .title a:not(.title-link) {
        -webkit-flex: 1 1 1px;
        flex: 1 1 1px;
        padding: 20px 0;
    }
    #footer > .footer-nav-sp > ul > li .title .btn:before,
    #footer > .footer-nav-sp > ul > li .title .btn:after {
        position: absolute;
        /*top: 30%;*/
        left: 50%;
        width: 2px;
        height: 16px;
        content: "";
        background-color: #fff;
    }
    #footer > .footer-nav-sp > ul > li .title .btn:after {
        transform: rotate(90deg);
    }

    /* − */
    #footer .footer-nav-sp > ul > li .open .btn:before {
        opacity: 0;
    }

    /* → */
    #footer .footer-nav-sp > ul > li .title .arrow {
        flex: 0 0 40px;
        position: relative;
        cursor: pointer;
    }
    #footer .footer-nav-sp > ul > li .title .title-link {
        color: #fff;
        -webkit-flex: 1 1 1px;
        flex: 1 1 1px;
    }
    #footer .footer-nav-sp > ul > li .title .arrow:before {
        position: absolute;
        content: "";
        width: 10px;
        height: 10px;
        border: 0;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        top: 20%;
        right: 40%;
    }

    /* アコーディオン内の→ */
    #footer .footer-nav-sp > ul ul li a {
        color: #fff;
        display: block;
        position: relative;
        font-size: 1.4rem;
        margin: 0 auto;
        padding: 10px 60px 10px 20px;
        line-height: 1.5;
    }
    #footer .footer-nav-sp > ul ul li a::before {
        content: '';
        border-bottom: 2px solid currentColor;
        color: #fff;
        line-height: 1;
        position: absolute;
        top: 50%;
        right: 10%;
        width: 1em;
        transform: translateY(-50%);
        margin-top: -1px;
    }
    #footer .footer-nav-sp > ul ul li a::after {
        position: absolute;
        content: "";
        width: 8px;
        height: 8px;
        border: 0;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        top: 50%;
        right: 10%;
        margin-top: -6px;
    }

    /* お礼とご報告の【御礼】 */
    #footer .footer-nav-sp ul li ul p {
        font-size: 14px;
        padding: 10px 20px;
    }
    #footer .footer-nav-sp ul li ul ul li a  {
        margin-left: 30px;
    }
}

@media print, screen and (max-width: 768px) {
    #footer .footer-mainlogo {
        text-align: center;
        margin-bottom: 30px;
    }
    #footer .footer-nav-sp {
        padding: 20px 20px 40px;
    }
    #footer .footer-sub-nav-wrap {
        padding: 50px 20px 20px;
    }
}

@media print, screen and (max-width: 440px) {
    #footer .footer-nav-sp > ul > li > ul {
        margin: 0;
    }
}


/* ---------------------
    TOPへ戻るボタン
-----------------------*/
.footer-pagetop {
    position: fixed;
    bottom: 10px;
    right: 50px;
    cursor: pointer;
    margin-bottom: 30px;
}
.footer-pagetop a {
    bottom: 10px;
    display: block;
    width: 46px;
    height: 46px;
    overflow: hidden;
    background: url("img/goto top.png") 0 0 no-repeat;
    background-size: contain;
    text-indent: 100%;
    white-space: nowrap;
    margin: 0 0 0 auto;
}

@media screen and (max-width: 768px) {
    .footer-pagetop {
      right: 20px;
    }
  }


/* ---------------------
    パンくず
-----------------------*/
/* パンくず
--------------------------------------------------------- */
.label {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 65px;
    padding: 10px;
    background: #8298AF;
    color: white;
}
.label p {
    font-size: 1.8rem;
    margin: 0;
    background: #8298AF;
    color: white;
}
#breadcrumbs {
    font-size: 1.4rem;
}
#breadcrumbs ul {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 5px 30px;
}
#breadcrumbs ul li {
    display: inline-block;
}
#breadcrumbs ul li a, #breadcrumbs ul li a:visited {
    color: #282828;
    text-decoration: none;
    outline: none;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}
#breadcrumbs ul li:before {
    display: inline-block;
    width: 6px;
    height: 1em;
    margin: 0 12px .1em 7px;
    background: url("img/icon-arrow-right01-black01.png") 50% 50% no-repeat;
    background-size: contain;
    vertical-align: middle;
    content: "";
}
#breadcrumbs ul li:first-of-type:before {
    display: none;
}

@media print, screen and (max-width: 768px) {
    #breadcrumbs {
        padding: 10px;
    }
}

/* ---------------------
    CKeditor（プロジェクト詳細で使用）
-----------------------*/
.clearfix {
    zoom: 1;
}
/* .clearfix:before {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
} */
.clearfix:after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

/* template2（左：テキスト　右：画像）
-------------------------------------------------------- */
.template2 {
	margin: 10px 0;
}
.template2 > div {
	margin-bottom: 15px;
}
.template2 > div > .temp2_title {
	display: inline-block;
	padding: 5px 0 10px 0;
	font-size: 150%;
}
.template2 > div > .temp2_img {
	width: 29%;
	padding-left: 20px;
	padding-bottom: 20px;
	float: right;
}
.template2 > div > .temp2_img > img {
	width: 100%;
}
.template2 > div > .temp2_img > .temp2_cap {
	font-size: 85%;
	width: 100%;
	margin: 10px 0 20px 0;
	text-align: justify;
	text-justify: inter-ideograph;
}
@media print, screen and (max-width: 555px) {
	.template2 > div > .temp2_title {
		display: block;
		margin-bottom: 10px;
	}
	.template2 > div > .temp2_img {
		width: 100%;
		padding: 0;
	}
	.template2 > div > .temp2_img > img {
		width: 100%;
		padding: 10px;
	}
}


/* template24（画像1枚中央揃え）
-------------------------------------------------------- */
.template24 {
	width: 100%;
	text-align: center;
}
.template24 > .temp24_img {
	display: inline-block;
}
.template24 > .temp24_img > img {
	max-width: 100%;
}
.template24 > .temp24_img > .temp24_cap {
	font-size: 85%;
	margin: 10px 0 20px 0;
	text-align: justify;
	text-justify: inter-ideograph;
}
@media print, screen and (max-width: 555px) {
	.template24 > .temp24_img > img {
		width: 100%;
	}
}



/* ---------------------
    下層コンテンツ一覧
-----------------------*/
.c-box-list02 {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 20px;
}
.c-box-list02__item {
    -webkit-box-shadow: 5px 5px rgba(0, 0, 0, .1);
    position: relative;
    margin: 0 20px 20px 0;
    box-shadow: 5px 5px rgba(0, 0, 0, .1);
    background: #fff;
    width: calc((100% - 60px) / 4.001);
    color: #333;
}
.c-box-list02 .c-box-list02__item::before {
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: .2s ease-in-out;
    border: 2px solid #403999;
    content: "";
}
.c-box-list02 a.c-box-list02__item:hover::before {
    opacity: 1;
}
.c-box-list02 .c-box-list02__item {
    -webkit-box-shadow: 5px 5px rgba(0, 0, 0, .1);
    position: relative;
    margin: 0 20px 20px 0;
    box-shadow: 5px 5px rgba(0, 0, 0, .1);
    background: #fff;
    width: calc((100% - 60px) / 4.001);
    color: #333;
}
.c-box-list02 .c-box-list02__item:nth-child(4n) {
    margin-right: 0;
}
.c-box-list02 .c-box-list02__item:hover {
    opacity: 1;
}
.c-box-list02__title {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    margin: 0;
    padding: 20px;
    font-weight: bold;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.5;
}
.c-article {
    line-height: 2;
    margin-bottom: 60px;
}
@media (min-width: 415px) and (max-width: 768px) {
    .c-box-list02 .c-box-list02__item {
        margin: 0 20px 20px 0;
        width: calc((100% - 20px) / 2.001);
    }
    .c-box-list02 .c-box-list02__item:nth-child(2n) {
        margin-right: 0;
    }
}
@media (max-width: 414px) {
    .c-box-list02 .c-box-list02__item {
        margin: 0 0 10px;
        width: 100%;
    }
}



/* ---------------------
    下層記事
-----------------------*/
/* ページタイトル（背景あり）
-------------------------------------------------------- */
    .tpl-page-title {
        position: relative;
        width: 100%;
        height: 240px;
        /*background-image: url("img/第二中央校舎.jpg");*/
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        object-fit: cover;
        margin-bottom: 60px;
    }
    .tpl-page-title::before {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #03325e;
        opacity: 0.7;
    }
    .tpl-page-title .mv-ttl {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }
    .tpl-page-title .mv-ttl h1 {
        position: absolute;
        font-size: 4.4rem;
        line-height: 1.5;
        color: #fff;
        margin: 0 5%;
    }
    @media only screen and (max-width: 740px) {
        .tpl-page-title {
            height: 180px;
            background-image: url("img/第二中央校舎.jpg");
            margin-bottom: 45px;
        }
        .tpl-page-title .mv-ttl h1 {
            font-size: 3.2rem;
        }
    }

/* 全体
-------------------------------------------------------- */
.cmn-w1100 {
    margin: 0 auto;
    max-width: 1100px;
    padding: 60px 20px;
}

.cmn-title01 {
    font-size: 5rem;
    font-weight: normal;
    line-height: 1.5;
    padding-bottom: 10px;
    margin: 120px 0 0;
    text-align: center;
}
/* .cmn-w1100 h1 {
	font-size: 5rem;
    font-weight: normal;
    line-height: 1.5;
    padding-bottom: 10px;
	margin-bottom: 80px;
	text-align: center;
} */
.cmn-w1100 h2 {
    border-bottom: solid 1px #403999;
    font-size: 3.4rem;
    font-weight: normal;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-top: 60px;
    margin-bottom: 30px;
}
.cmn-w1100 h2:first-child {
    margin-top: 0;
}
.cmn-w1100 h3 {
    font-size: 2.4rem;
    font-weight: lighter;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-top: 30px;
}
.cmn-w1100 h4 {
    font-size: 1.8rem;
    font-weight: lighter;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-top: 10px;
}

@media print, screen and (max-width: 768px) {
    #tpl-contents .tpl-inner-wrap {
        padding: 0 20px;
    }
    .cmn-w1100 {
        padding: 45px 0;
    }
    .cmn-title01 {
        font-size: 3.8rem;
        margin: 80px 0 0;
    }
    /* .cmn-w1100 h1 {
        font-size: 3.8rem;
        margin-bottom: 60px;
    } */
    .cmn-w1100 h2 {
        font-size: 2.8rem;
    }
    .cmn-w1100 h3 {
        font-size: 2.0rem;
    }
}

/* 記事
-----------------------*/
.cmn-w1100 .article {
    line-height: 2;
}
.cmn-w1100 .article ul {
    list-style: disc;
    padding-left: 20px;
}
.cmn-w1100 .article ol {
    list-style: decimal;
    padding-left: 20px;
}



/*==================
下層　button
==================*/
.left {
    margin-right: auto;
    margin-left: 0;
}
.right {
    margin-right: 0;
    margin-left: auto;
}
.center {
    margin-right: auto;
    margin-left: auto;
}
.lower_btn_purple {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}
.lower_btn_purple a {
    position: relative;
    border: 1px solid #403999;
    background-color: #fff;
    padding: 15px 50px 15px 15px;
    color: #403999;
    border-radius: 5px;
    box-shadow: none;
    max-width: 500px;
}
.lower_btn_purple a:after {
    content: '';
    width: 8px !important;
    height: 8px !important;
    border: 0;
    border-top: 2px solid #403999;
    border-right: 2px solid #403999;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -6px;
    background-image: none !important;
}
.lower_btn_purple a:hover {
    background-color: rgba(81, 76, 191, 0.1);
}
.btn_common a {
    display: block;
    font-size: 1.6rem;
    text-align: left;
    text-decoration: none !important;
}
.btn_external-link {
    position: relative;
}
.btn_external-link:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
    content: "";
    background-image: url("img/icon_window.png");
    background-repeat: no-repeat;
    background-size: contain;
    filter: brightness(0) saturate(100%) invert(9%) sepia(42%) saturate(5876%) hue-rotate(264deg) brightness(101%) contrast(87%);
    font-size: 2.0rem;
    margin: 0 0 0 10px;
}

/* .tpl-btn
-----------------------*/
.tpl-btn {
	display: inline-block;
	letter-spacing: normal;
	width: 80px;
	text-align: center;
	font-size: 12px;
	padding-bottom: 5px;
}

@media screen and (max-width: 740px) {
	.tpl-btn {
		width: auto;
		min-width: 50px;
		vertical-align: top;
		margin: 0 5px;
		padding-bottom: 10px;
		box-sizing: border-box;
	}
}

.tpl-btn a {
	display: block;
	padding: 1px;
	position: relative;
}

.tpl-btn a::before {
	content: "";
	display: block;
	height: 1px;
	width: 20px;
	background-color: white;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	transform: rotate(0deg);
	border: none;
	transition-property: transform, opacity;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.tpl-btn a::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	opacity: 0.4;
	transform: scaleY(0);
	transition-property: transform;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 740px) {
	.tpl-btn a {
		display: table;
		width: 100%;
	}
}

.tpl-btn a:hover {
	text-decoration: none;
}

@media screen and (min-width: 741px) {
	.tpl-btn a:hover::before {
		opacity: 0;
		transform: translateX(20px);
	}
	.tpl-btn a:hover::after {
		transform: scaleY(1);
	}
}

.tpl-btn a span {
	display: block;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	padding: 0 5px;
	box-sizing: border-box;
	font-size: 16px;
	font-family: "Sawarabi Mincho",游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
}

@media screen and (max-width: 740px) {
	.tpl-btn a span {
		line-height: 1.2;
		display: table-cell;
		vertical-align: middle;
		padding-top: 5px;
		padding-bottom: 5px;
	}
}

/* .tpl-btn.large
-----------------------*/
.tpl-btn.large {
	width: 100%;
	font-size: 15px;
	padding-bottom: 0;
	margin: 0;
}

.tpl-btn.large a {
	height: 70px;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: center;
	/* Safari */
	justify-content: center;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
}

.tpl-btn.large a span {
	line-height: 1.375;
	/* padding: 0 10px; */ /*2023.04.25追加*/
}

@media screen and (max-width: 740px) {
	.tpl-btn.large a span {
		font-size: 14px;
	}
}
/* .tpl-btn--blue
-----------------------*/
.tpl-btn--blue a {
	background: #403999;
	color: #FFF;
	box-sizing: border-box;
}
.tpl-btn--blue a:hover {
	color: #FFF !important ;
}
/* [ 中央配置ボタン ]
-----------------------*/
.tpl-btn-wrap--center {
	text-align: center;
}

.tpl-btn-wrap--center .tpl-btn.large {
	width: 360px;
}

@media screen and (max-width: 740px) {
	.tpl-btn-wrap--center .tpl-btn.large {
		width: 100%;
		min-width: 0;
	}
}

.padT-m {
    padding-top: 50px !important;
}


/*[ ビュレットなし ]
-----------------------*/
.tpl-link {
	color: #333;
}

@media screen and (max-width: 750px) {
	.tpl-link {
		font-size: 14px;
	}
}

/*[ ビュレット有り ]
-----------------------*/
.tpl-link--cursor {
	padding-left: 15px;
	position: relative;
}

.tpl-link--cursor::before, .tpl-link--cursor::after {
	position: absolute;
	top: 0.8em;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.tpl-link--cursor::before {
	width: 5px;
	height: 5px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (max-width: 740px) {
	.tpl-link--cursor {
		padding-left: 15px;
	}
}

/* .icon-blank
-----------------------*/
/*.icon-blank {*/
/*	display: inline-block;*/
/*	width: 12px;*/
/*	height: 11px;*/
/*	background: url("img/別ウィンドウマーク.png") no-repeat;*/
/*	vertical-align: middle;*/
/*	margin: 0 0 0 5px;*/
/*	position: relative;*/
/*}*/

.tpl-btn .icon-blank {
	display: inline-block;
    width: 12px;
    height: 11px;
    background: url("img/g__icon_blank_white.png") no-repeat;
	vertical-align: middle;
	margin: 0 0 0 10px;
}

@media screen and (max-width: 740px) {
	.icon-blank {
		background-size: 10px auto;
		top: -1px;
	}
}


/*==================
下層　芳名
==================*/
/*--------受賞者・寄附者芳名帳ボタン------*/
.houmei_sec .wrapper {
    width: 980px;
    margin: 0px auto 0 auto;
}

.houmei_area {
    margin: 50px auto 0 auto;
}

.houmei_list {
    margin-bottom: 50px;
}

.c_main_title1 .page-title {
    font-size: 50px;
    padding: 100px 0;
    text-align: center;
}

.c_sub_section_btn {
    display: flex;
    margin: 150px 0 100px;
}

.c_sub_section_text {
    margin-bottom: 50px;
}

.c_sub_section_btn .c_donator_btn {
    border: solid 1px #422161;
    padding: 10px;
    width: 100%;
    text-align: center;
    margin-right: 10px;
    display: inline-block;
    color: #422161;
    text-decoration: none;
}
.c_sub_section_btn .c_donator_btn:last-child {
    margin-right: 0;
}
/*
.c_donator_btn a {
	color: #422161;
	text-decoration: none;
	width: 100%;
}
*/
.c_donator_btn:hover {
    background: #f2ecf8;
}

.c_sub_section_link {
    display: block;
    margin: 60px 0 100px;
}
.c_donator_link {
    margin: 0;
    background: url(../images/icon-arrow-right-purple.svg) 0 0.5em no-repeat;
    background-size: 5px auto;
    padding-left: 10px;
}


@media print, screen and (max-width: 768px) {

    .houmei_sec .wrapper {
        float: none;
        width: 100%;
        padding: 0 20px;
    }

    .c_main_title1 .page-title {
        font-size: 40px;
        padding: 60px 0;
    }

    .c_sub_section {
        display: block;
    }

    .c_sub_section_btn {
        margin: 100px 0 60px;
    }

    .c_donator_btn {
        padding: 10px 0;
        text-align: center;
        margin-bottom: 10px;
    }
    .c_donator_btn a {
        color: #422161;
        text-decoration: none;
    }
} /*  @media (max-width: 768px)  */

@media print, screen and (max-width: 426px) {

    /*--------受賞者・寄附者芳名帳ボタン------*/
    .br_sp {
        display: block;
    }

    .c_sub_section {
        display: block;
    }

}


/* ---- 寄附者芳名帳 ---- */
.donor_title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.donor_list_wrapper p {
    margin: 20px 0 60px;
}
.donor_sub_title {
    font-size: 18px;
    border-bottom: solid 1px #403999;
    margin-top: 60px;
    padding-bottom: 8px;
}

.year_btn_list {
    display: flex;
    flex-wrap: wrap;
    max-width: 980px;
    margin: 0 auto
}
.year_btn {
    border: solid 1px #403999;
    padding: 6px 10px;
    margin: 10px 10px 0 10px;
    width: 8%;
    text-align: center;
}
.year_btn:hover {
    background: rgba(81, 76, 191, 0.2);
}
.year {
    font-size: 40px;
    padding: 80px 0 40px;
    text-align: center;
}
.donor_btn_list, .donor_btn_sub_list {
    display: flex;
    justify-content: space-between;
}
.year_btn_list a, .donor_btn_sub_list a, .donor_order_list a, .houmei_btn a{
    color: #403999;
    text-decoration: none;
}

.donor_btn {
    border: solid 1px #403999 !important;
    padding: 20px 20px;
    width: 100%;
    text-align: center;
    margin-right: 20px;
}
.donor_btn:last-child {
    margin-right: 0;
}
.donor_btn:hover {
    background: rgba(81, 76, 191, 0.2);
}
.donor_btn a {
    color: #403999;
    text-decoration: none;
}

.donor_btn_sub_list {
    margin-top: 40px;
}
.donor_order_list {
    display: flex;
    flex-wrap: wrap;
    /*max-width: 480px;*/
    margin: 40px auto 0 0;
}

.donor_order_list a {
    /*height: 46px;*/
    box-sizing: border-box;
}

.donor_order_list a:last-child {
    /*height: 70px;*/
}

.donor_order_list_item, .kana-change2 {
    min-width: 50px;
    border: solid 1px #403999;
    padding: 10px 10px;
    text-align: center;
    margin: 0 10px 10px 0;
    box-sizing: border-box;
    line-height: 1.5;
}
.donor_order_list_item:hover, .kana-change2:hover {
    background: rgba(81, 76, 191, 0.2);
}
.donor_order_list_item a, .kana-change2 a {
    color: #403999;
    text-decoration: none;
}

.houmei_btn {
    display: flex;
    flex-wrap: wrap;
    /*max-width: 480px;*/
    margin: 10px auto 0 0;
}

.kana-change2{
    background: rgba(81, 76, 191, 0.2);
}

.kana-change2:hover{
    background-color: rgba(81, 76, 191, 0.5)!important;
    color: #403999;
}


.col-item{
    margin-top: 10px;
}

.hit{
    background-color: rgba(81, 76, 191, 0.5)!important;
    color: #403999;
}
/* ---- 受賞者芳名帳 ---- */

.award_title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}
.award_table_text {
    margin-bottom: 30px;
}
.award_table, .award_table tr, .award_table th, .award_table td {
    border: solid 1px #000;
    text-align: center;
    padding: 6px 0;
}

.award_table, .award_table td:nth-of-type(1) {
    text-align: left;
}

.award_table, .award_table td {
    text-align: right;
    padding: 10px 20px;
}

.award_table {
    table-layout: fixed;
    width: 90%;
    margin: 60px auto 0;
}

.award_table th {
    background: #ededed;
}

.award_sub_title {
    font-size: 24px;
    border-bottom: solid 1px #403999;
    margin-top: 60px;
    padding-bottom: 8px;
}
.award_sub_text {
    margin-top: 20px;
}
.award_btn_list {
    display: flex;
    flex-wrap: wrap;
    max-width: 980px;
    margin: 0 auto;
}
.award_btn_sub_list {
    display: flex;
}

.award_btn {
    border: solid 1px #403999;
    padding: 10px 10px;
    text-align: center;
    margin: 0 auto;
}
.award_btn:last-child {
    margin-right: 0;
}
.award_sub_btn {
    border: solid 1px #403999;
    padding: 10px 10px;
    width: 100%;
    text-align: center;
    margin-right: 10px;
}
.award_sub_btn:last-child {
    margin-right: 0;
}
.award_btn:hover, .award_sub_btn:hover {
    background: rgba(81, 76, 191, 0.2);
}
.award_btn_list a, .award_btn_sub_list a, .donor_order_list a, .houmei_btn a{
    color: #403999;
    text-decoration: none;
}

/* 受賞者芳名帳、寄附者芳名帳共通 */
.donor_btn_sub_list {
    display: flex;
    margin-top: 40px;
    width: 100%;
}

/* ---- 芳名帳ボタンスタイル ---- */
.donor_sub_title {
    font-size: 18px;
    border-bottom: solid 1px #403999;
    margin-top: 60px;
    padding-bottom: 8px;
}
.houmei-btn {
    max-width: 800px;
    margin:0 auto;
}
.houmei-btn p {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #403999;
    text-align: center;
    text-decoration: none;
    color: #403999;
}
.houmei-btn p:hover {
    background-color: rgba(81, 76, 191, 0.5);
    color: #403999;
    text-decoration: none;
}
.hit{
    background-color: rgba(81, 76, 191, 0.5)!important;
    color: #403999;
}

.houmei-btn .fund-change a {
    width: 100px;
}
.houmei-btn .kana-change a {
    margin: 0 3px 3px 0;
    background-color: rgba(81, 76, 191, 0.2);
}
/*
.donor_order_list {
	display: flex;
	flex-wrap: wrap;
	max-width: 485px;
	margin: 40px auto 0;
}
*/
@media print, screen and (max-width: 768px) {
    .year_btn_list {
        max-width: 100%;
    }
    .year_btn {
        min-width: 70px;
    }
    .award_table, .award_table tr, .award_table th, .award_table td {
        padding: 6px 16px;
    }

    .award_btn_list a{
        padding: 13px 15px;
        line-height: 1.5;
    }
}
@media print, screen and (max-width: 426px) {
    .award_btn {
        margin: 0 20px 20px 0;
    }
    .donor_btn {
        /*height: 70px;*/
        line-height: 1.5;
    }
}

/* テーブル */
.cmn-w1100 .name_list {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #333;
    margin: 30px 0;
}
.cmn-w1100 .name_list th,
.cmn-w1100 .name_list td{
    padding: 20px;
    border: 1px solid #333 !important;
}
.cmn-w1100 .name_list td{
    border: none !important;
}
.cmn-w1100 .name_list th{
    background-color: #f0f0f0;
    font-weight: bold;
    vertical-align: top;
    width: 100px;
}


/* ---------------------
    【下層】活動報告画像
-----------------------*/
.article-card-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.article-card-wrapper .article-col3-card {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    /* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
    gap: 10px;
    place-items: center;
}
.article-card-wrapper .article-col3-card-item {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    gap: 0;
    overflow: hidden;
    background-color: #fff;
    transition-duration: 0.3s;
}
.article-card-wrapper .article-col3-card-img-area {
    margin-bottom: 10px;
}
.article-card-wrapper .article-col3-card-img-area img {
    width: auto;
    height: 300px;
    object-fit: cover;
}
.article-card-wrapper .article-col3-card-title {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
}

@media (max-width: 800px) {
    .article-card-wrapper {
        max-width: 460px;
    }
    .article-card-wrapper .article-col3-card {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .article-card-wrapper .article-col3-card {
        grid-template-columns: 1fr;
    }
}

/*==================
サイトマップ
==================*/
.site-map-sub-title01 {
    margin: 60px 0 35px;
    font-size: 3.4rem;
    text-align: left;
    line-height: 1.5;
    border-bottom: 1px solid #403999;
    padding-bottom: 10px;
}
.site-map-sub-title01 > a {
    color: #282828;
    padding-right: 35px;
    background: #ffffff url("img/icon-arrow-right01-black01.png") calc(100% - 10px) 50% no-repeat;
    background-size: 10px auto;
}
.site-map-sub-title01 > a:hover {
    border-bottom: 1px solid #403999;
    color: #514cbf;
    opacity: unset;
}
.site-map-list {
    margin-left: 10px;
    margin-bottom: 0;
}
.site-map-list li {
    background: url("img/icon-arrow-right01-black01.png") 0 0.4em no-repeat;
    background-size: 8px auto;
    /*background-position-y: .4em;*/
    margin-top: 10px;
    padding-left: 1em;
    line-height: 1.5;
}
.site-map-list li > a {
    color: #282828;
    font-size: 115%;
}
.site-map-list li > a:hover {
    border-bottom: 1px solid #403999;
    color: #514cbf;
    opacity: unset;
}
.site-map-list {
    display: inline-block;
    vertical-align: top;
    width: 24%;
}
@media print, screen and (max-width: 1016px) {
    .site-map-list {
        width: 47%;
    }
}
@media print, screen and (max-width: 750px) {
    .site-map-sub-title01 {
        font-size: 2.5rem;
    }
}
@media print, screen and (max-width: 414px) {
    .site-map-list {
        width: 95%;
    }
}




/* ---------------------
    CKeditor
-----------------------*/
/* template（概要テーブル）
-------------------------------------------------------- */
.outline table {
    line-height: 2;
    width :auto;
  }
.outline table th {
    border: none;
    background-color: unset;
    padding: 0;
    min-width: 65px;
}
.outline table td {
    border: none;
    padding: 0 0 0 20px;
}

  /* リンク */
.template a {
    color: #403999;
    padding: 0 0 0 15px;
    background: url("img/icon-arrow-right01-black01.png") 0 0.3em no-repeat;
    background-size: 6px auto;
    cursor: pointer;
}


/* 画像モーダル表示
--------------------------------------------------------- */
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden; -webkit-transform: translate3d(0,0,0);}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#fff; opacity: 0.9; filter: alpha(opacity = 90);}
#colorbox{outline:0;}
#cboxContent{margin-top:32px; overflow:visible; background:#000;}
.cboxIframe{background:#fff;}
#cboxError{padding:50px; border:1px solid #ccc;}
#cboxLoadedContent{background:#000; padding:1px;}
#cboxLoadingGraphic{background:url(../images/loading.gif) no-repeat center center;}
#cboxLoadingOverlay{background:#000;}
#cboxTitle{position:absolute; top:-22px; left:0; color:#000;}
#cboxCurrent{position:absolute; top:-22px; right:205px; text-indent:-9999px;}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; text-indent:-9999px; width:20px; height:20px; position:absolute; top:-20px; background:url(../images/controls.png) no-repeat 0 0;}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

#cboxPrevious{background-position:0px 0px; right:44px;}
#cboxPrevious:hover{background-position:0px -25px;}
#cboxNext{background-position:-25px 0px; right:22px;}
#cboxNext:hover{background-position:-25px -25px;}
#cboxClose{background-position:-50px 0px; right:0;}
#cboxClose:hover{background-position:-50px -25px;}
.cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious{right:66px;}
.cboxSlideshow_on #cboxSlideshow{background-position:-75px -25px; right:44px;}
.cboxSlideshow_on #cboxSlideshow:hover{background-position:-100px -25px;}
.cboxSlideshow_off #cboxSlideshow{background-position:-100px 0px; right:44px;}
.cboxSlideshow_off #cboxSlideshow:hover{background-position:-75px -25px;}



#cboxOverlay {
    background: rgba(0,0,0, .7);
}
#cboxLoadedContent {
    background: #fff;
}
#cboxLoadedContent {
    padding: 0;
    overflow: auto;
    -moz-box-shadow: 0px 1px 10px #000000;
    -webkit-box-shadow: 0px 1px 10px #000000;
    box-shadow: 0px 1px 10px #000000;
}
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose , #cboxTitle {
    top: -30px;
}
#colorbox, #cboxOverlay, #cboxWrapper {
    overflow: visible ;
}
#cboxTitle {
    color: #fff;
}
#inline-content {/* インラインを使用する時のみ */
    margin: 20px;
}
#ajax-wrap {/* ajaxを使用する時のみ */
    margin: 20px;
}

