/* ===================
Reset CSS
==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    color: #fff;
}
a:hover {
    opacity: 0.8;
}
a.no-u-line {
    text-decoration: none;
}
.no-u-line a {
    text-decoration: none;
}
ul {
	padding-left: 40px;
}
ol {
	padding-left: 40px;
}
header ul, header ol, nav.menu ul, nav.menu ol, footer ul, footer ol {
    list-style-type: none;
    padding-left: 0;
}
header a, nav.menu a, footer a {
    text-decoration: none;
}

/* ===================
Common styles
==================== */
/* font-size */
html {
    font-size: 16px; /* 16pxを基準サイズに設定 */
}
body {
    font-size: 1rem; /* 16px (基本フォントサイズ) */
}
.font-xsmall {
    font-size: 0.625rem !important; /* 10px */
}
.font-small {
    font-size: 0.75rem !important; /* 12px */
}
.font-xsdefault  {
    font-size: 0.875rem !important; /* 14px */
}
.font-default {
    font-size: 1rem !important; /* 16px (デフォルトサイズ) */
}
.font-medium {
    font-size: 1.125rem !important; /* 18px */
}
.font-large {
    font-size: 1.25rem !important; /* 20px */
}
.font-xlarge {
    font-size: 1.375rem !important; /* 22px */
}
.font-xxlarge {
    font-size: 1.625rem !important; /* 26px */
}

/* line-height */
.lineheight-s {
    line-height: 1.6;
}

/* font-weight */
.font-bold {
    font-weight: bold;
}
.font-normal {
    font-weight: normal;
}
/* font-color */
.font-white {
    color: #fff;
}
.font-gray {
    color: #777777;
}
.font-gold {
    color: #9D8564;
}

/* img */
.fluid-img {
    max-width: 100%;
    height: auto;
}

/* Align */
.align-c {
    text-align: center;
}
.align-l {
    text-align: left;
}
.align-r {
    text-align: right;
}
.v-align-m {
    vertical-align: middle;
}
.v-align-t {
    vertical-align: top;
}
.v-align-b {
    vertical-align: bottom;
}
.v-align-tb {
    vertical-align:text-bottom;
}
@media (max-width: 428px) {
    .align-sp-c {
        text-align: center !important;
    }
    .align-sp-l {
        text-align: left !important;
    }
    .align-sp-r {
        text-align: right !important;
    }
}

.no-wrap {
    white-space: nowrap;
}

/* width */
.w-100 {
    width: 100%;
}
.w-75-res {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}
.w-75-res-l {
    width: 75%;
}
.w-50-res {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
.w-50-res-l {
    width: 50%;
}
@media (min-width: 429px) and (max-width: 960px) {
    .w-50-res, .w-50-res-l {
        width: 80%;
    }
}
@media (max-width: 428px) {
    .w-75-res, .w-75-res-l, .w-50-res, .w-50-res-l {
        width: 100%;
    }
}
.w-800px-res {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.w-65-res {
    width: 65%;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 960px) {
    .w-65-res {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Top Margin */
.m-t-0 { margin-top: 0px; }
.m-t-5 { margin-top: 5px; }
.m-t-10 { margin-top: 10px; }
.m-t-15 { margin-top: 15px; }
.m-t-20 { margin-top: 20px; }
.m-t-25 { margin-top: 25px; }
.m-t-30 { margin-top: 30px; }
.m-t-35 { margin-top: 35px; }
.m-t-40 { margin-top: 40px; }
.m-t-45 { margin-top: 45px; }
.m-t-50 { margin-top: 50px; }
/* Left Margin */
.m-l-0 { margin-left: 0px; }
.m-l-5 { margin-left: 5px; }
.m-l-10 { margin-left: 10px; }
.m-l-15 { margin-left: 15px; }
.m-l-20 { margin-left: 20px; }
.m-l-25 { margin-left: 25px; }
.m-l-30 { margin-left: 30px; }
.m-l-35 { margin-left: 35px; }
.m-l-40 { margin-left: 40px; }
.m-l-45 { margin-left: 45px; }
.m-l-50 { margin-left: 50px; }
/* Bottom Margin */
.m-b-0 { margin-bottom: 0px; }
.m-b-5 { margin-bottom: 5px; }
.m-b-10 { margin-bottom: 10px; }
.m-b-15 { margin-bottom: 15px; }
.m-b-20 { margin-bottom: 20px; }
.m-b-25 { margin-bottom: 25px; }
.m-b-30 { margin-bottom: 30px; }
.m-b-35 { margin-bottom: 35px; }
.m-b-40 { margin-bottom: 40px; }
.m-b-45 { margin-bottom: 45px; }
.m-b-50 { margin-bottom: 50px; }
/* Right Margin */
.m-r-0 { margin-right: 0px; }
.m-r-5 { margin-right: 5px; }
.m-r-10 { margin-right: 10px; }
.m-r-15 { margin-right: 15px; }
.m-r-20 { margin-right: 20px; }
.m-r-25 { margin-right: 25px; }
.m-r-30 { margin-right: 30px; }
.m-r-35 { margin-right: 35px; }
.m-r-40 { margin-right: 40px; }
.m-r-45 { margin-right: 45px; }
.m-r-50 { margin-right: 50px; }

@media (max-width: 428px) {
    /* Top Margin */
    .m-t-sp-0 { margin-top: 0px; }
    .m-t-sp-5 { margin-top: 5px; }
    .m-t-sp-10 { margin-top: 10px; }
    .m-t-sp-15 { margin-top: 15px; }
    .m-t-sp-20 { margin-top: 20px; }
    .m-t-sp-25 { margin-top: 25px; }
    .m-t-sp-30 { margin-top: 30px; }
    .m-t-sp-35 { margin-top: 35px; }
    .m-t-sp-40 { margin-top: 40px; }
    .m-t-sp-45 { margin-top: 45px; }
    .m-t-sp-50 { margin-top: 50px; }
    /* Left Margin */
    .m-l-sp-0 { margin-left: 0px; }
    .m-l-sp-5 { margin-left: 5px; }
    .m-l-sp-10 { margin-left: 10px; }
    .m-l-sp-15 { margin-left: 15px; }
    .m-l-sp-20 { margin-left: 20px; }
    .m-l-sp-25 { margin-left: 25px; }
    .m-l-sp-30 { margin-left: 30px; }
    .m-l-sp-35 { margin-left: 35px; }
    .m-l-sp-40 { margin-left: 40px; }
    .m-l-sp-45 { margin-left: 45px; }
    .m-l-sp-50 { margin-left: 50px; }
    /* Bottom Margin */
    .m-b-sp-0 { margin-bottom: 0px; }
    .m-b-sp-5 { margin-bottom: 5px; }
    .m-b-sp-10 { margin-bottom: 10px; }
    .m-b-sp-15 { margin-bottom: 15px; }
    .m-b-sp-20 { margin-bottom: 20px; }
    .m-b-sp-25 { margin-bottom: 25px; }
    .m-b-sp-30 { margin-bottom: 30px; }
    .m-b-sp-35 { margin-bottom: 35px; }
    .m-b-sp-40 { margin-bottom: 40px; }
    .m-b-sp-45 { margin-bottom: 45px; }
    .m-b-sp-50 { margin-bottom: 50px; }
    /* Right Margin */
    .m-r-sp-0 { margin-right: 0px; }
    .m-r-sp-5 { margin-right: 5px; }
    .m-r-sp-10 { margin-right: 10px; }
    .m-r-sp-15 { margin-right: 15px; }
    .m-r-sp-20 { margin-right: 20px; }
    .m-r-sp-25 { margin-right: 25px; }
    .m-r-sp-30 { margin-right: 30px; }
    .m-r-sp-35 { margin-right: 35px; }
    .m-r-sp-40 { margin-right: 40px; }
    .m-r-sp-45 { margin-right: 45px; }
    .m-r-sp-50 { margin-right: 50px; }
}

/* Top Padding */
.p-t-0 { padding-top: 0; }
.p-t-5 { padding-top: 5px; }
.p-t-10 { padding-top: 10px; }
.p-t-15 { padding-top: 15px; }
.p-t-20 { padding-top: 20px; }
.p-t-25 { padding-top: 25px; }
.p-t-30 { padding-top: 30px; }
.p-t-35 { padding-top: 35px; }
.p-t-40 { padding-top: 40px; }
.p-t-45 { padding-top: 45px; }
.p-t-50 { padding-top: 50px; }
/* Left Padding */
.p-l-0 { padding-left: 0; }
.p-l-5 { padding-left: 5px; }
.p-l-10 { padding-left: 10px; }
.p-l-15 { padding-left: 15px; }
.p-l-20 { padding-left: 20px; }
.p-l-25 { padding-left: 25px; }
.p-l-30 { padding-left: 30px; }
.p-l-35 { padding-left: 35px; }
.p-l-40 { padding-left: 40px; }
.p-l-45 { padding-left: 45px; }
.p-l-50 { padding-left: 50px; }
/* Bottom Padding */
.p-b-0 { padding-bottom: 0; }
.p-b-5 { padding-bottom: 5px; }
.p-b-10 { padding-bottom: 10px; }
.p-b-15 { padding-bottom: 15px; }
.p-b-20 { padding-bottom: 20px; }
.p-b-25 { padding-bottom: 25px; }
.p-b-30 { padding-bottom: 30px; }
.p-b-35 { padding-bottom: 35px; }
.p-b-40 { padding-bottom: 40px; }
.p-b-45 { padding-bottom: 45px; }
.p-b-50 { padding-bottom: 50px; }
/* Right Padding */
.p-r-0 { padding-right: 0; }
.p-r-5 { padding-right: 5px; }
.p-r-10 { padding-right: 10px; }
.p-r-15 { padding-right: 15px; }
.p-r-20 { padding-right: 20px; }
.p-r-25 { padding-right: 25px; }
.p-r-30 { padding-right: 30px; }
.p-r-35 { padding-right: 35px; }
.p-r-40 { padding-right: 40px; }
.p-r-45 { padding-right: 45px; }
.p-r-50 { padding-right: 50px; }

/* All Padding */
.p-0 { padding: 0px; }
.p-5 { padding: 5px; }
.p-10 { padding: 10px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }

/* Media Queries for small screens */
@media (max-width: 428px) {
    /* Top Padding for small devices */
    .p-t-sp-0 { padding-top: 0px; }
    .p-t-sp-5 { padding-top: 5px; }
    .p-t-sp-10 { padding-top: 10px; }
    .p-t-sp-15 { padding-top: 15px; }
    .p-t-sp-20 { padding-top: 20px; }
    .p-t-sp-25 { padding-top: 25px; }
    .p-t-sp-30 { padding-top: 30px; }
    .p-t-sp-35 { padding-top: 35px; }
    .p-t-sp-40 { padding-top: 40px; }
    .p-t-sp-45 { padding-top: 45px; }
    .p-t-sp-50 { padding-top: 50px; }
    /* Left Padding for small devices */
    .p-l-sp-0 { padding-left: 0px; }
    .p-l-sp-5 { padding-left: 5px; }
    .p-l-sp-10 { padding-left: 10px; }
    .p-l-sp-15 { padding-left: 15px; }
    .p-l-sp-20 { padding-left: 20px; }
    .p-l-sp-25 { padding-left: 25px; }
    .p-l-sp-30 { padding-left: 30px; }
    .p-l-sp-35 { padding-left: 35px; }
    .p-l-sp-40 { padding-left: 40px; }
    .p-l-sp-45 { padding-left: 45px; }
    .p-l-sp-50 { padding-left: 50px; }
    /* Bottom Padding for small devices */
    .p-b-sp-0 { padding-bottom: 0px; }
    .p-b-sp-5 { padding-bottom: 5px; }
    .p-b-sp-10 { padding-bottom: 10px; }
    .p-b-sp-15 { padding-bottom: 15px; }
    .p-b-sp-20 { padding-bottom: 20px; }
    .p-b-sp-25 { padding-bottom: 25px; }
    .p-b-sp-30 { padding-bottom: 30px; }
    .p-b-sp-35 { padding-bottom: 35px; }
    .p-b-sp-40 { padding-bottom: 40px; }
    .p-b-sp-45 { padding-bottom: 45px; }
    .p-b-sp-50 { padding-bottom: 50px; }
    /* Right Padding for small devices */
    .p-r-sp-0 { padding-right: 0px; }
    .p-r-sp-5 { padding-right: 5px; }
    .p-r-sp-10 { padding-right: 10px; }
    .p-r-sp-15 { padding-right: 15px; }
    .p-r-sp-20 { padding-right: 20px; }
    .p-r-sp-25 { padding-right: 25px; }
    .p-r-sp-30 { padding-right: 30px; }
    .p-r-sp-35 { padding-right: 35px; }
    .p-r-sp-40 { padding-right: 40px; }
    .p-r-sp-45 { padding-right: 45px; }
    .p-r-sp-50 { padding-right: 50px; }
    /* All Padding */
    .p-sp-0 { padding: 0px; }
    .p-sp-5 { padding: 5px; }
    .p-sp-10 { padding: 10px; }
    .p-sp-20 { padding: 20px; }
    .p-sp-30 { padding: 30px; }
}

/* 別窓リンク */
.external-link {
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-right: 28px;
}
.external-link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 6px;
    width: 15px; /* アイコンの幅 */
    height: 12px; /* アイコンの高さ */
    border: 1px solid #fff;
    transform: translateY(-50%) translateX(2px); /* 垂直方向に中央揃え、横方向に2pxずらす */
}
.external-link::before {
    content: '';
    position: absolute;
    top: 58%;
    right: 0px;
    width: 15px; /* アイコンの幅 */
    height: 12px; /* アイコンの高さ */
    border: 1px solid #fff;
    transform: translateY(-50%); /* 垂直方向に中央揃え */
}
/* 同窓リンク */
.internal-link {
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-right: 25px;
}
.internal-link::after {
    content: '>>'; /* 視覚的な矢印 */
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}

/* CVボタン */
.cmn-cvButton-res, .cmn-cvButton-100, .cmn-cvButton {
    border: 1px solid #fff;
    padding: 15px 12px;
    text-align: center;
    text-decoration: none;
}
.cmn-cvButton {
    display: inline-block;
}
.cmn-cvButton-100 {
    display: block;
}
.cmn-cvButton-res {
    display: inline-block;
    min-width: 340px;
}
/* Campaignボタン */
.cpn-cvButton {
    border: 4px double #9D8564;
    text-decoration: none;
    display: block;
    color: #9D8564;
    padding: 8px 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.cpn-cvButton .external-link::after, .cpn-cvButton .external-link::before {
    border: 1px solid #9D8564;
}
@media (max-width: 428px) {
    .cmn-cvButton-res {
        display: block;
        min-width: auto;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .cpn-cvButton {
        display: block;
    }
}




/* ===================
Basic styles
====================== */
body {
    font-family: Arial, sans-serif;
    line-height: 2;
    background-color: #000000;
    color: #fff;
    padding-top: 101px;
}
@media (max-width: 428px) {
    body {
        padding-top: 71px;
    }
}

/* ===Header=== */
header {   
    z-index: 100;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #303030;
    border-bottom: 1px solid #fff;
}
.innerHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 20px 20px;
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
}

.logo {
    margin: 0;
    line-height: 0;
    padding-right: 10px;
}
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 26px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Hamburger menu transformation */
.hamburger.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}

@media (max-width: 428px) {
    .inner-header {
        padding: 10px 20px;
    }
    .logo img {
        height: 30px;
    }
    .hamburger {
        width: 24px;
        height: 20px;
    }
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* ハンバーガーメニュー内 */
.menu {
    display: none;
    position: absolute;
    top: 101px;
    right: 0px;
    background-color: #303030;
    padding: 20px 20px 30px 20px;
    max-height: 100vh; /* スクロールするための最大高さ */
    overflow-y: auto; /* 縦スクロールを許可 */
    overflow-x: auto; /* 横スクロールを許可 */
}
@media (max-width: 428px) {
    .menu {
        top: 51px;
    }
}
.menu.active {
    display: block;
    z-index: 101;
}

.headerMenu, .headerCvArea, .headerLinks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap:0 20px;
}
.headerMenu li, .headerCvArea li, .headerLinks li {
    flex: 1 0 calc(50% - 20px); /* 2カラムに設定 */
    text-align: center;
}
.headerMenu {
    margin: 0 0 30px 0;
}
.headerMenu li {
    padding: 15px 0;
}
.headerMenu::after {
    content: ''; /* 2カラム左寄せ保つための空ボックス */
    flex: 1 0 calc(50% - 20px);
    visibility: hidden; /* 空のボックスを見えなくする */
}

.headerLinks {
    margin:0 0 20px 0;
}

.headerCvArea {
    margin-bottom: 40px;
}

.headerSnsArea {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap:34px;
}

.headerLineFriends, .footerLineFriends {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap:0 10px;
    max-width: 360px;
    margin: 30px auto 0 auto;
    border: 1px solid #777777;
    padding: 12px 20px 15px 20px;
}
.headerLineFriends dt, .footerLineFriends dt {
    line-height: normal;
}
.headerLineFriends dd, .footerLineFriends dd {
    font-size: 12px;
}

/* ===Footer=== */
footer {
    border-top:2px solid #fff ;
    min-height: 200px;
}
.footerTop {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    max-width: 1240px;
    margin: 0 auto;
}

.footerLogo {
    width: 16%;
    text-align: center;
    padding-right: 4%;
}
.footerMenu {
    width: 28%;
    display: flex;
    flex-wrap: wrap;
    padding:0 2% 0 0;
    gap: 32px 15px;
}
.footerMenu li {
    flex: 1 0 calc(50% - 15px); /* 2カラムに設定に15pxのgap */
}

.footerCv-Sns {
    width: 50%;
}
.footerCvArea {
    display: flex;
    flex-wrap: wrap;
    gap:0 20px;
    margin:0 0 30px 0;
}
.footerCvArea li {
    flex: 1 0 calc(50% - 20px); /* 2カラムに設定に20pxのgap */
}
.footerSnsArea {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap:34px;
}

@media (max-width: 428px) {
    .footerTop {
        display: block;
    }
    .footerLogo, .footerMenu, .footerCv-Sns {
        width: 100%;
    }
    .footerLogo {
        margin-bottom: 30px;
    }
    .footerMenu {
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 30px;
    }
    .footerMenu::after {
        content: '';
        flex: 1 0 calc(50% - 20px);
        visibility: hidden;
      }
    .footerCvArea {
        margin-bottom: 40px;
    }
}
@media (min-width: 429px) and (max-width: 768px) {/* タブレット (小) */
    .footerLogo, .footerMenu {
        width: 50%;
        padding-bottom: 30px;
    }

    .footerCv-Sns {
        width: 100%;
    }
}

.footerBottom {
    padding: 30px 20px;
    border-top: 1px solid #777777;
}
.innerFooterBottom {
    max-width: 1240px;
    margin: 0 auto;
}
.footerBottomLinks {
    text-align: right;
    margin:0 0 10px 0;
}
.footerBottomLinks li {
    display: inline;
    padding: 0 0 0 10px;
}
.footerBottom address {
    font-style: normal;
    margin-bottom: 15px;
}
.copyright {
    color: #777777;
}

@media (max-width: 428px) {
    .footerBottomLinks {
        display: flex;
        gap:0 10px;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
    }
    .footerBottomLinks li {
        display: block;
    }
    .footerBottom address {
        text-align: center;
    }
}

/* pageTop */
#pageTop {
    display: none; /* 初期状態で非表示 */
    position: fixed;
    bottom: 20px; /* スクロール時に固定位置を設定 */
    right: 20px; /* スクロール時に固定位置を設定 */
    z-index: 1000; /* 他の要素の上に表示 */
}
#pageTop a:hover {
    opacity: 1;
}



/* ===================
Editor common CSS
==================== */
main {
    /*max-width: 1260px;
    margin: 0 auto;
    padding: 30px 14px;*/
}

/* 表示非表示 */
.hidden-pc {
    display: none;
}
.hidden-sp {
    display: block;
}
@media (max-width: 428px) {
    .hidden-pc {
        display: block;
    }
    .hidden-sp {
        display: none;
    }
}

/* 初期設定：全て非表示 */
    .mobile-only, .tablet-only, .pc-narrow-only, .pc-wide-only {
    display: none; /* 初期設定で全て非表示 */
}

/* ① スマホ用 */
@media (max-width: 428px) {
    .mobile-only {
        display: block; /* スマホ専用表示 */
    }
}

/* ② タブレット用 */
@media (min-width: 429px) and (max-width: 960px) {
    .tablet-only {
        display: block; /* タブレット専用表示 */
    }
}

/* ③ PC（狭）用 */
@media (min-width: 961px) and (max-width: 1280px) {
    .pc-narrow-only {
        display: block; /* PC（狭）専用表示 */
    }
}

/* ④ PC（広）用 */
@media (min-width: 1281px) {
    .pc-wide-only {
        display: block; /* PC（広）専用表示 */
    }
}

/* 要素 */
.disp-i {
    display: inline;
}
.disp-b {
    display: block;
}
.disp-ib {
    display: inline-block;
}

/* タイトル */
h2 {
    font-size: 1.429rem;
}
h3 {
    font-size: 1.286rem;
}

.title-u-line {
    display: inline-block;
    border-bottom: 2px solid #9D8564;
    padding: 0 12px 5px 12px;
    margin-bottom: 20px;
    min-width: 380px;
}
.title-u-line-100 {
    border-bottom: 2px solid #9D8564;
    padding: 0 12px 5px 12px;
    margin-bottom: 20px;
}
@media (max-width: 428px) {
    .title-u-line {
        min-width: 240px;
    }
}
.title-u-line-100 {
    border-bottom: 2px solid #9D8564;
    padding: 0 12px 5px 12px;
    margin-bottom: 20px;
}
.title-l-line {
    border-left: 2px solid #9D8564;
    padding-left: 8px;
}
.title-l-line-b {
    border-left: 6px solid #9D8564;
    padding-left: 10px;
    margin-bottom: 20px;
}

/* background */
.background-gray {
    background-color: #303030;
}
.background-gray.background-c-pad {
    width: 100%;
    padding: 30px 100px;
}
@media (max-width: 800px) {
    .background-gray.background-c-pad {
        padding: 20px 6%;
    }
}

/* column */
.column-2 {/* 2カラム */
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    justify-content: center;
}
.column-2 .column-item {
    flex: 1 0 calc(50% - 30px);
}
.column-2::after {
    content: '';
    flex: 1 0 calc(50% - 30px);
    visibility: hidden;
  }

.column-2-1 {/* PC2カラム SP1カラム */
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    justify-content: center;
}
.column-2-1 .column-item {
    flex: 1 0 calc(50% - 30px);
}
.column-2-1::after {
    content: '';
    flex: 1 0 calc(50% - 30px);
    visibility: hidden;
}
  
.column-3-1 {/* PC3カラム SP1カラム */
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    justify-content: center;
}
.column-3-1 .column-item {
    flex: 1 0 calc(33.33% - 30px);
}
.column-3-1::after {
    content: '';
    flex: 1 0 calc(33.33% - 30px);
    visibility: hidden;
  }

@media (max-width: 428px) {
    .column-2-1, .column-3-1  {
        flex-direction: column;
    }

}

.column-2_1-2 {/* 2カラム(1:2) */
    display: grid;
    grid-template-columns: 2fr 1fr; /* 2:1 の比率 */
    gap: 10px;
}
.column-2_2-1 {/* 2カラム(1:2) */
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1:2 の比率 */
    gap: 10px;
}

/* table */
.basic-table {
    border-collapse: collapse;
}
.basic-table th, .basic-table td {
    border: 1px solid #777777;
    padding: 15px;
}
.noborder-table th, .noborder-table td {
    border: none !important;
}
.noborder-table {
    border-collapse: collapse;
}
.noborder-table th, .noborder-table td {
    border: none !important;
}

/* 枠線ボックス */
.bordered-box {
    border: 1px solid #777777;
}
/* 枠線角丸ボックス */
.border-radius-box {
    border: 1px solid #777777;
    border-radius: 25px; 
}

/* 左右逆のボックス */
.order1-res {
    order: 1;
}
@media (max-width: 428px) {
    .order1-res {
        order: 0;
    }
}

/* 罫線 */
hr.default-hr {
    border: none;
    border-top: 1px solid #9D8564;
}

/* google  map */
.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 アスペクト比のため */
    height: 0;
    overflow: hidden;
  }
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* news-items読み込み */
.news-items a {
    text-decoration: none;
}
.news-items .news-items-ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.news-items .news-items-li {
    display: flex;
    flex-wrap: nowrap;
    align-items:flex-start;
    margin-bottom: 5px;
}
.news-items .news-items-time {
    display: block;
    color: #777777;
    font-size: 0.857rem;
    flex-basis: 100px; /* 日付の固定幅 */
    min-width: 100px;
    max-width: 100px;
    margin-right: 10px;
}
.news-items .news-items-time-p {
    flex-grow: 1; /* コンテンツ部分が残りの幅を使用 */
    word-wrap: break-word;
}
@media (max-width: 428px) {
    .news-items .news-items-li {
        flex-direction: column;
        margin-bottom: 12px;
        height: auto;
    }
    .news-items .news-items-time {
        margin-right: 0;
        margin-bottom: 2px;
        flex-basis: auto;
    }
    .news-items .news-items-time-p {
        flex-grow: 0; /* コンテンツ部分の成長を無効 */
        width: auto; 
    }
}
.news-items-viewmore {
    padding-top: 5px;
    text-align: right;
}
.news-items-viewmore a {
    text-decoration: none;
}




/* ===================
Home
==================== */
#home :where(figure) {/*wpで持っているfigureのmbをリセット（#homeのみ）*/
    margin-bottom: 0;
}

#home .container1800 {
    max-width: 1828px;
    margin: 0 auto;
    padding: 30px 14px 0px 14px;
}

#home .container {
    max-width: 1188px;
    margin: 0 auto;
    padding: 0px 14px 30px 14px;
}
#home .lessonpro-img-res img  {
    width: 210px;
}
@media (max-width: 428px) {
    #home .lessonpro-img-res img  {
        width: 120px;
    }
}

#home .profile-image-base img  {
    width: 210px;
}
@media (max-width: 428px) {
    #home .profile-image-base img  {
        width: 130px;
    }
}