@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,600;1,14..32,600&family=Lato:wght@400;700&family=Questrial&family=Zen+Kaku+Gothic+New:wght@500;700&display=swap");

/*---------------------------------------------
 * 基本要素
 *--------------------------------------------*/
html {
    font-size: 100%;
    scroll-behavior: auto;
}

/* スマホ(768px以下) */
@media screen and (max-width: 768px) {
    html {
        font-size: 87.5%;
    }
}

ol,
ul {
    list-style: none;
}

a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: 0.7s;
            transition: 0.7s;
}

body {
    color: #1e2c59;
    font-family: "Zen kaku Gothic New", sans-serif !important;
    font-weight: 500;
    letter-spacing: 0.03em;
    overflow-x: hidden;
}

img {
    height: auto;
}

/*---------------------------------------------
 * ヘッダー要素
 *--------------------------------------------*/
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

header a {
    color: #1e2c59;
}

header a:hover {
    color: #ac529a;
}

header.active {
    background: #fff;
}

/*---------------------------------------------
 * Bootstrapスタイルカスタム
 *--------------------------------------------*/
.row {
    margin: 0;
}

.col {
    padding: 0;
}

/*---------------------------------------------
 * お問い合わせボタン
 *--------------------------------------------*/
.t-btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 190px;
    min-height: 50px;
    padding: 8px;
    background: -webkit-gradient(linear, right top, left top, from(#b75ba5), to(#5e5ab9));
    background:  linear-gradient(to left, #b75ba5 0%, #5e5ab9 100%);
    border-radius: 100px;
    color: #fff;
    font-weight: bold;
    font-size: 0.9375rem;
    gap: 10px;
    overflow: hidden;
    -webkit-box-align: center;
       -ms-flex-align: center;
          align-items: center;
      justify-content: center;
           text-align: center;
       vertical-align: middle;
    z-index: 1;
}

.t-btn::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #1e2c59;
    content: "";
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
            transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}

.t-btn:hover {
    color: #fff;
}

.t-btn:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1); 
}

.t-btn > .bi-envelope-fill {
    font-size: 19.9688px;
}

/*---------------------------------------------
 * ナビゲーションバー
 *--------------------------------------------*/
.t-navbar,
.t-navbar > .t-navbar-collapse,
.t-navbar > .t-navbar-collapse > .t-navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -ms-flex-align: center;
          align-items: center;
     -webkit-box-pack: justify;
        -ms-flex-pack: justify;
      justify-content: space-between;
}

.smonly {
    display: none;
}

.t-navbar {
    width: 100%;
    height: auto;
    padding: 30px 40px;
}

.t-navbar > .t-brand {
    max-width: 115px;
}

.t-navbar > .t-brand > a {
    display: block;
}

.t-navbar > .t-brand > a > img {
    width: 100%;
}

.t-navbar > .t-navbar-collapse > .t-navbar-nav {
    margin-bottom: 0;
    padding: 0;
    gap: 40px;
}

.t-navbar > .t-navbar-collapse > .t-navbar-nav > .t-nav-item {
    position: relative;
    padding: 13px 0;
}

.t-navbar > .t-navbar-collapse > .t-navbar-nav > .t-nav-item > .t-nav-link {
    font-size: 0.9375rem;
    font-weight: bold;
}

.t-navbar > .t-navbar-collapse > .t-navbar-nav > .t-nav-item:has(.t-btn) {
    padding: 0;
}

.t-navbar > .t-navbar-collapse > .t-navbar-nav > .t-nav-item > .t-btn {
    margin-left: 10px;
}

/* 840px以下 */
@media screen and (max-width: 840px) {
    .t-navbar {
        padding: 30px 20px;
    }
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .t-navbar {
        min-height: 62px;
        padding: 10px 20px;
    }
    
    .t-navbar:has(.open) {
        background: #fff;
    }
    
    .t-navbar:not(:has(.open)) {
        background: transparent;
    }
    
    .t-navbar > .t-brand {
        max-width: 150px;
    }
    
    .t-navbar > .t-navbar-toggler {
        position: fixed;
        display: block;
        width: 30px;
        height: 25px;
        top: 18px;
        right: 20px;
        font-weight: bold;
        text-align: center;
        z-index: 100;
    }
    
    .t-navbar > .t-navbar-toggler > span,
    .t-navbar > .t-navbar-toggler > span::before,
    .t-navbar > .t-navbar-toggler > span::after {
        position: absolute;
        display: block;
        width: 30px;
        height: 2px;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        background: #1e2c59;
        content: "";
    }
    
    .t-navbar > .t-navbar-toggler > span::before {
        top: 11px;
    }
    
    .t-navbar > .t-navbar-toggler > span::after {
        top: 22px;
    }
    
    #chkNavbar {
        display: none;
    }
    
    #chkNavbar:checked ~ .t-navbar-toggler > span {
        background: none;
    }
    
    #chkNavbar:checked ~ .t-navbar-toggler > span::before {
        top: 10px;
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
    }
    
    #chkNavbar:checked ~ .t-navbar-toggler > span::after {
        top: 10px;
        -webkit-transform: rotate(-45deg);        
                transform: rotate(-45deg);
    }
    
    .t-navbar > .t-navbar-collapse {
        position: fixed;
        width: 100%;
        height: 100%;
        top: -100%;
        left: 0;
        padding: 100px 30px 60px;
        background: #fff;
        gap: 30px;
        overflow-y: scroll;
        -webkit-box-direction: normal;
           -ms-flex-direction: column;
               flex-direction: column;
             -webkit-box-pack: start;
                -ms-flex-pack: start;
              justify-content: flex-start;
           -webkit-box-orient: vertical;
        z-index: -1;
    }
    
    .t-navbar > .t-navbar-collapse > .t-navbar-nav {
        width: 100%;
        gap: 0;
        -webkit-box-direction: normal;
           -ms-flex-direction: column;
               flex-direction: column;
           -weblit-box-orient: vertical;
    }
    
    .t-navbar > .t-navbar-collapse > .t-navbar-nav > .t-nav-item {
        width: 100%;
        padding: 0;
        border-top: 1px solid #b2bcdb;
    }
    
    .t-navbar > .t-navbar-collapse > .t-navbar-nav > .t-nav-item > .t-nav-link {
        position: relative;
        display: block;
        padding: 15px 0;
        pointer-events: none;
    }
    
    /* アクセスと問い合わせ以外 */
    .t-navbar > .t-navbar-collapse > .t-navbar-nav > .t-nav-item > .t-nav-link:has(+ .t-dropdown-menu)::before {
        position: absolute;
        width: 15px;
        height: 15px;
        top: 30%;
        right: 0;
        background: none;
        border-style: solid;
        border-width: 3px 3px 0 0;
        content: "";
         -webkit-transform: rotate(135deg);
                 transform: rotate(135deg);
        -webkit-transition: 0.3s;
                transition: 0.3s;
    }
    
    .t-navbar > .t-navbar-collapse > .t-navbar-nav > .t-nav-item.open > .t-nav-link::before {
         -webkit-transform: rotate(-45deg);
                 transform: rotate(-45deg);
    }
    
    /* アクセス */
    .t-navbar > .t-navbar-collapse > .t-navbar-nav > .t-nav-item > .t-nav-link:not(:has(+ .t-dropdown-menu, > .bi))::before {
        position: absolute;
        width: 20px;
        height: 20px;
        top: 10%;
        right: 0;
        content: "\F138";
        font-family: "bootstrap-icons";
        font-size: 24px;
    }
    
    /* 問い合わせ */
    .t-navbar > .t-navbar-collapse > .t-navbar-nav > .t-nav-item > .t-btn {
        display: flex;
        width: 100%;
        margin: 25px 0;
        line-height: 19.6875px;
    }
    
    .t-navbar > .t-navbar-collapse > .t-navbar-nav > .t-nav-item > .t-btn > .bi-envelope-fill {
        vertical-align: middle;
    }
}

/*---------------------------------------------
 * ドロップダウンメニュー
 *--------------------------------------------*/
.t-dropdown-menu {
    position: absolute;
    display: none;
    top: 100%;
    left: 50%;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    width: 165px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

.t-dropdown-menu::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, right top, from(#b75ba5), to(#5e5ab9)) border-box border-box;
    background: linear-gradient(90deg, #b75ba5 0%, #5e5ab9 100%) border-box border-box;
    border-radius: 5px;
    border: 1px solid transparent;
    content: "";
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
            mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) border-box;
            mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: exclude;
            mask-composite: exclude;
    z-index: -1;
}

.t-dropdown-menu > li > .t-dropdown-item {
    display: block;
    padding: 7px 20px;
    font-size: 0.9375rem;
    text-align: center;
    white-space: nowrap;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .t-dropdown-menu {
        position: static;
        width: 100%;
        padding: 10px 0 25px;
        border: none;
        border-radius: 0;
        -webkit-transform: none;
                transform: none;
    }
    
    .t-dropdown-menu:before {
        display: none;
    }
    
    .t-dropdown-menu > li:not(:last-child) {
        margin-bottom: 15px;
    }
    
    .t-dropdown-menu > li > .t-dropdown-item {
        position: relative;
        padding: 0 30px 0 14px;
        text-align: left;
    }
    
    .t-dropdown-menu > li > .t-dropdown-item::after {
        position: absolute;
        display: block;
        width: 7px;
        height: 7px;
        top: 50%;
        left: 0;
        background: -webkit-gradient(linear, right top, left top, from(#b75ba5), to(#5e5ab9));
        background:  linear-gradient(to left, #b75ba5 0%, #5e5ab9 100%);
        content: "";
        border-radius: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    }
}

/*---------------------------------------------
 * フッター
 *--------------------------------------------*/
footer {
    margin-top: -70px;
    padding-top: 170px;
    background: #1e2c59;
    color: #fff;
    
}

footer > .row {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

footer > .row > .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: none;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    -webit-box-pack: justify;
      -ms-flex-pack: justify;
    justify-content: space-between;    
}

footer > .row > .col:first-child {
    margin-bottom: 75px;
    -webkit-box-align: start;
       -ms-frex-align: start;
          align-items: flex-start;
}

footer > .row > .col:last-child {
    padding: 55px 0;
    border-top: 1px solid #2e3c69;
    -webkit-box-align: center;
       -ms-frex-align: center;
          align-items: center;
}

footer > .row > .col > .t-footer-info {
    margin-bottom: 50px;
}

footer > .row > .col > .t-footer-info > h2 {
    margin-bottom: 20px;
}

footer > .row > .col > .t-footer-info > h2 > a {
    font-family: "Questrial", sans-serif;
    font-size: 1.5rem;
}

footer > .row > .col > .t-footer-info > h2 > a > span  {
    color: #ac529a;
}

footer > .row > .col > .t-footer-info > p {
    margin-bottom: 20px;
    font-size: 0.9375rem;
    line-height: 2;
}

footer > .row > .col > .t-footer-info > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
    gap: 15px;
    -webkit-box-align: center;
       -ms-frex-align: center;
          align-items: center;
}

footer > .row > .col > .t-footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
}

footer > .row > .col:first-child > .t-footer-nav {
    margin-bottom: 0;
    gap: 80px;    
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
       -ms-frex-align: start;
          align-items: flex-start;
      -webit-box-pack: end;
        -ms-flex-pack: end;
      justify-content: flex-end;
}

footer > .row > .col:last-child > .t-footer-nav {
    margin-bottom: 20px;
    gap: 30px;
    -webkit-box-align: center;
       -ms-frex-align: center;    
          align-items: center;
}

footer > .row > .col > .t-footer-nav > .t-nav-item > ul {
    padding-left: 0;
}

footer > .row > .col > .t-footer-nav > .t-nav-item a {
    display: inline-block;
    margin-bottom: 10px;
    background-image: -webkit-gradient(linear, left top, right top, from(#ac529a), to(#ac529a));
    background-image: linear-gradient(90deg, #ac529a, #ac529a);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    -webkit-transition: background-size 0.6s;
            transition: background-size 0.6s;
}

footer > .row > .col > .t-footer-nav > .t-nav-item a {
   color: #b2bcdb;
   font-size: 0.9375rem;
}

footer > .row > .col > .t-footer-nav > .t-nav-item a:hover {
    background-size: 100% 1px;
    color: #ac529a;
    -webkit-transition: 0.7s;
            transition: 0.7s;    
}

footer > .row > .col > .t-footer-nav > .t-nav-item > h3,
footer > .row > .col > .t-footer-nav > .t-nav-item > h3 > a {
    margin-bottom: 0;
    color: #fff;
    font-family: "Lato", sans-serif;
    font-size: 1.1125rem;
}

footer > .row > .col > .t-footer-nav > .t-nav-item > h3 {
    margin-bottom: 20px;
}

footer > .row > .col > small {
    font-family: "Lato", sans-serif;
    font-size: 0.875rem;
}

footer > .t-footer-arrow-up {
    position: fixed;
    bottom: 40px;
    right: 40px;
}

footer > .t-footer-arrow-up > i {
    color: #1e2c59;
    font-size: 40px;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    footer {
        margin-top: -50px;
        padding-top: 80px;
    }

    footer > .row {
           -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
           -ms-flex-direction: column;
               flex-direction: column;
    }
    
    footer > .row > .col > .t-footer-info {
        width: 100%;
        text-align: center;
    }

    footer > .row > .col > .t-footer-info > ul {
        -webit-box-pack: center;
          -ms-flex-pack: center;
        justify-content: center;
    }
    
    footer > .row > .col {
           -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
           -ms-flex-direction: column;
               flex-direction: column;        
    }
    
    footer > .row > .col:first-child {
        margin-bottom: 20px;
    }

    footer > .row > .col:last-child {
        padding: 20px 0;
    }
    
    footer > .row > .col:first-child > .t-footer-nav {
        width: 100%;
        gap: 40px 80px;
        -webit-box-pack: start;
          -ms-flex-pack: start;
        justify-content: flex-start;
    }

    footer > .row > .col:last-child > .t-footer-nav {
        width: 100%;
        gap: 10px 20px;
            flex-wrap: wrap;
        -ms-flex-wrap: wrap;
    }
    
    footer > .row > .col:last-child > .t-footer-nav > .t-nav-item > a {
        margin-bottom: 0;
    }
    
    footer > .t-footer-arrow-up {
        bottom: 20px;
        right: 20px;
    }
}

/*---------------------------------------------
 * アイコン
 *--------------------------------------------*/
.ti {
    position: absolute;
    padding-bottom: 50%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    z-index: -1
}

.ti.ti-circle-dot {
    width: 38.3%;
    max-width: 400px; 
    top: -110px;
    left: 0;
    background-image: url("../image/circle-dot.svg");
}

.ti.ti-circle-dot2 {
    width: 281px;
    height: 279px;
    right: 72px;
    bottom: 33px;
    padding: 0;
    background-image: url("../image/circle-dot2.svg");
    z-index: -1;
}

.ti.ti-circle-dot3 {
    width: 361px;
    height: 259px;
    top: -240px;
    left: -240px;
    background-image: url("../image/circle-dot3.svg");
    z-index: 0;
}

.ti.ti-circle-dot-quarter {
    width: 203px;
    height: 162px;
    right: 150px;
    bottom: 0;
    padding: 0;
    background-image: url("../image/circle-dot-quarter.svg");
    border-radius: 0 0 30px 0;
    z-index: 1;
}

.ti.ti-circle-donut {
    width: 327px;
    height: 328px;
    left: -320px;
    bottom: -300px;
    padding: 0;
    background-image: url("../image/circle-donut.svg");
}

.ti.ti-flower {
    width: 11.1%;
    max-width: 115px;
    top: 210px;
    left: 85px;
    background-image: url("../image/flower.svg");
    z-index: 1;
}

.ti.ti-flower2 {
    width: 7.7%;
    max-width: 110px;
    top: 70px;
    right: 410px;
    background-image: url("../image/flower2.svg");
    z-index: 1;
}

.ti.ti-flower2-stickout {
    width: 110px;
    height: 110px;
    left: -412px;
    bottom: -41px;
    padding: 0;
    background-image: url("../image/flower2.svg");
}

.ti.ti-flower3 {
    width: 40px;
    height: 40px;
    background-image: url("../image/flower3.svg");
    z-index: 1;
}

.ti.ti-flower4 {
    width: 110px;
    height: 110px;
    background-image: url("../image/flower4.svg");
    z-index: 1;
}

.ti.ti-flower5 {
    width: 180px;
    height: 172px;
    bottom: 0;
    right: -20px;
    padding: 0;
    background-image: url("../image/flower5.svg");
}

.ti.ti-flower6 {
    width: 60px;
    height: 57px;
    top: 50%;
    left: 50%;
    background-image: url("../image/flower6.svg");
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 1;
}

.ti.ti-circle-semi {
    width: 24%;
    max-width: 250px;
    top: 170px;
    right: 0;
    background-image: url("../image/circle-semi.svg");
}

.ti.ti-circle-semi2 {
    width: 30.7%;
    max-width: 260px;
    bottom: -20%;
    left: 90px;
    background-image: url("../image/circle-semi2.svg");
    background-position: bottom;
    z-index: 1;
}

.ti.ti-circle-semi3 {
    width: 30%;
    max-width: 300px;
    bottom: 130px;
    right: -120px;
    background-image: url("../image/circle-semi3.svg");
    background-position: bottom;
    z-index: -1;
}

.ti.ti-circle-semi4 {
    width: 350px;
    height: 350px;
    left: -50px;
    bottom: -160px;
    padding: 0;
    background-image: url("../image/circle-semi4.svg");
    z-index: -1;
}

.ti.ti-circle-semi5 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    padding: 0;
    background-image: url("../image/circle-semi5.svg");
    z-index: 1;
}

.ti.ti-circle-triumph {
    position: relative;
    display: inline-block;
    width: 130px;
    height: 130px;
    background-image: url("../image/circle-triumph2.0.svg");
    z-index: 1;
}

.ti.ti-triangle {
    width: 6.5%;
    max-width: 67px;
    top: 340px;
    right: 170px;
    background-image: url("../image/triangle.svg");
}

.ti-ti-triangle-small {
    width: 60px;
    height: 60px;
    top: -70px;
    right: 0;
    padding: 0;
    background-image: url("../image/triangle-small.svg");
}

.ti.ti-triangle2 {
    width: 9.6%;
    max-width: 80px;
    left: 280px;
    bottom: 35px;
    background-image: url("../image/triangle2.svg");
    background-position: bottom;
    z-index: 1;
}

.ti.ti-triangle3 {
    width: 7.1%;
    max-width: 80px;
    right: -100px;
    bottom: 151px;
    background-image: url("../image/triangle3.svg");
    background-position: bottom;
}

.ti.ti-triangle4 {
    width: 80px;
    height: 80px;
    top: 0;
    right: 0;
    padding: 0;
    background-image: url("../image/triangle4.svg");
    z-index: 1;
}

.ti.ti-stripe {
    width: 19%;
    max-width: 120px;
    top: -50px;
    right: 10px;
    background-image: url("../image/stripe.svg");
    z-index: 1;
}

.ti.ti-tel {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 31px;
    padding: 0;
    background-image: url("../image/tel.svg");
    vertical-align: middle;
    z-index: 1;
}

.ti.ti-map {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 0;
    background-image: url("../image/map.svg");
    vertical-align: middle;
    z-index: 1;
}

.ti.ti-mail {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 0;
    background-image: url("../image/mail.svg");
    vertical-align: middle;
    z-index: 1;
}

.ti.ti-arrow-right {
    width: 24px;
    height: 20px;
    top: 50%;
    right: 0;
    padding: 0;
    background-image: url("../image/arrow-right.svg");
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.ti.ti-arrow-right-small {
    width: 40px;
    height: 40px;
    padding: 0;
    background-image: url("../image/arrow-right-small.svg");
}

.ti.ti-arrow-right-white {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 13px;
    padding: 0;
    background-image: url("../image/arrow-right-white.svg");
    vertical-align: middle;
    z-index: 1;
}

.ti.ti-arrow-right-grad {
    width: 30px;
    height: 30px;
    padding: 0;
    background-image: url("../image/arrow-right-grad.svg");
    z-index: 1;
}

.ti.ti-arrow-up {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 0;
    background-image: url("../image/arrow-up.svg");
    vertical-align: middle;
    z-index: 1;
}

.ti.ti-crown {
    width: 23px;
    height: 20px;
    top: -8px;
    left: 114px;
    background-image: url("../image/crown.svg");
}

.ti.ti-scrollbar {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
    top: 20px;
    overflow: hidden;
}

/* 1200px以下 */
@media screen and (max-width: 1200px) {
    .ti.ti-flower2 {
        top: 50px;
        right: 300px;
    }
}

/* 1180px以下 */
@media screen and (max-width: 1180px) {
    .ti.ti-circle-semi3 {
        max-width: 200px;
        right: 50px;
        bottom: 200px;
    }

    .ti.ti-triangle3 {
        max-width: 50px;
        right: 50px;
        bottom: 200px;
    }
}

/* 1040px以下 */
@media screen and (max-width: 1040px) {
    .ti.ti-circle-semi2 {
        max-width: 150px;
        left: 40px;
        bottom: -80px;
    }

    .ti.ti-triangle2 {
        max-width: 50px;
        left: 140px;
        bottom: 20px;
    }
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .ti.ti-circle-dot {
        width: 30%;
        max-width: 120px;
        top: 50px;
        left: 60px;
    }

    .ti.ti-circle-dot2 {
        width: 100px;
        height: 100px;
        bottom: -30px;
        right: 10px;
    }
    
    .ti.ti-circle-dot3 {
        width: 150px;
        top: -110px;
        left: -40px;
    }
    
    .ti.ti-circle-dot-quarter {
        width: 70px;
        height: 56px;
        right: 30px;
        border-radius: 0 0 10px 0;
    }

    .ti.ti-circle-triumph {
        width: 100px;
        height: 100px;
    }

    .ti.ti-circle-donut {
        width: 100px;
        height: 100px;
        left: 20px;
        bottom: -130px;
    }

    .ti.ti-flower {
        width: 8%;
        max-width: 30px;
        top: 120px;
        left: 70px;
    }
    
    .ti.ti-flower2 {
        width: 8%;
        max-width: 50px;
        top: 30px;
        right: 100px;
    }

    .ti.ti-flower2-stickout {
        width: 40px;
        height: 40px;
        left: -10px;
        bottom: -50px;
    }

    .ti.ti-flower5 {
        width: 40px;
        height: 38px;
        right: -10px;
        bottom: -40px;
    }

    .ti.ti-circle-semi {
        width: 22%;
        max-width: 80px;
        top: 90px;
        right: 20px;
    }

    .ti.ti-circle-semi2 {
        width: 40%;
        max-width: 150px;
        left: 10px;
        bottom: -11.6%;
    }
    
    .ti.ti-circle-semi3 {
        width: 27%;
        max-width: 100px;
        right: 30px;
        bottom: 170px;
    }
    
    .ti.ti-circle-semi4 {
        width: 100px;
        height: 100px;
        left: -15px;
        bottom: -45px;
    }

    .ti.ti-circle-semi5 {
        width: 100px;
        height: 100px;
        top: -15px;
        right: -15px;
    }

    .ti.ti-triangle {
        width: 6%;
        max-width: 20px;
        top: 140px;
        right: 70px;
    }

    .ti.ti-triangle-small {
        width: 40px;
        height: 40px;
        top: -70px;
        right: 20px;
    }

    .ti.ti-triangle2 {
        width: 14%;
        max-width: 50px;
        left: 100px;
        bottom: 20px;
    }
    
    .ti.ti-triangle3 {
        width: 8%;
        max-width: 30px;
        right: 30px;
        bottom: 170px;
    }

    .ti.ti-triangle4 {
        width: 30px;
        height: 30px;
        top: -30px;
        right: 50px;
    }

    .ti.ti-stripe {
        width: 22%;
        max-width: 80px;
        top: auto;
        bottom: -46%;
    }
}

/*---------------------------------------------
 * フェードアップアニメーション
 *--------------------------------------------*/
.t-fadeup {
    opacity: 0;
    -webkit-transition-duration: 0.6s;
            transition-duration: 0.6s;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
}

.t-fadeup.active {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
}

/*---------------------------------------------
 * スクロールアニメーション
 *--------------------------------------------*/
.t-scroll-down {
    position: absolute;
    width: 16px;
    height: 140px;
    right: 30px;
    bottom: 20px;
    z-index: 1;
}

.t-scroll-down > span {
    display: block;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 0.7rem;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);   
}

.t-scroll-down > .ti.ti-scrollbar::before {
    position: absolute;
    display: block;
    width: 1px;
    height: 70px;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    content: "";
    -webkit-animation: t-scroll-down 2s ease-in-out infinite;
            animation: t-scroll-down 2s ease-in-out infinite;
}

@-webkit-keyframes t-scroll-down {
    0% {
        height: 0;
        top: 15%;
    }
    30% {
        height: 100%;
    }
    100% {
        top: 100%;
    }
}

@keyframes t-scroll-down {
    0% {
        height: 0;
        top: 15%;
    }
    30% {
        height: 100%;
    }
    100% {
        top: 100%;
    }
}

/*---------------------------------------------
 * 回転アニメーション
 *--------------------------------------------*/
.t-rotate-right {
    -webkit-animation: t-rotate-right 12s infinite linear;
            animation: t-rotate-right 12s infinite linear;
}

@-webkit-keyframes t-rotate-right {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(260deg);        
    }
}

@keyframes t-rotate-right {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(260deg);        
    }
}

/*---------------------------------------------
 * スライドアップアニメーション
 *--------------------------------------------*/
.t-slide-up {
    display: -webkit-box;
    display: -ms-frexbox;
    display: flex;
        -webkit-animation: t-slide-up 20s infinite linear;
                animation: t-slide-up 20s infinite linear;
       -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
              will-change: transform;
}

@-weblit-keyframes t-slide-up {
    0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    }
}

@keyframes t-slide-up {
    0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    }
}

/*---------------------------------------------
 * ページヘッダー
 *--------------------------------------------*/
.t-page-header {
    position: relative;
    max-width: 1045px;
    margin: 0 auto;
    padding: 180px 0 100px;
}

.t-page-header > h1 {
    margin-bottom: 0;
    color: #1e2c59;
    font-size: 1.125rem;
    font-weight: bold;
    text-align: center;
}

.t-page-header > h1 > span {
    display: block;
    margin-bottom: 30px;
    font-family: "Lato", sans-serif;
    font-size: 4.5rem;
    font-weight: normal;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .t-page-header {
        max-width: 700px;
        padding: 100px 20px 40px;
    }

    .t-page-header > h1 {
        font-size: 1rem;
    }

    .t-page-header > h1 > span {
        margin-bottom: 20px;
        font-size: 2.2rem;
    }
}

/*---------------------------------------------
 * パンくずリスト
 *--------------------------------------------*/
main > nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;    
}

.t-breadcrumb {
    display: -webkit-box;
    display: -ms-frexbox;
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
    color: #1e2c59;
    font-size: 0.9375em;
    gap: 20px;
    -webkit-box-align: center;
       -ms-frex-align: center;
          align-items: center;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.t-breadcrumb > .t-breadcrumb-item:not(:has(> a > .bi))::before {
    margin-right: 20px;
    content: ">";
}

.t-breadcrumb > .t-breadcrumb-item > a > .bi-house-door-fill {
    display: block;
    width: 19.9688px;
    background: -webkit-gradient(linear, right top, left top, from(#b75ba5), to(#5e5ab9));
    background:  linear-gradient(to left, #b75ba5 0%, #5e5ab9 100%);
    font-size: 19.9688px;
    line-height: 22.5px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .t-breadcrumb {
        font-size: 0.8em;
        gap: 10px;
    }
    
    .t-breadcrumb > .t-breadcrumb-item:not(:has(> a > .bi))::before {
        margin-right: 10px;
    }
}

/*---------------------------------------------
 * バッジ
 *--------------------------------------------*/
.t-badge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 100px;
    height: 24px;
    margin-left: auto;
    padding: 0 10px;
    background: #1e2c59;
    border-radius: 5px;
    color: #fff;
    font-family: "Lato", sans-serif;
    font-size: 0.8125rem;
    -webkit-box-align: center;
       -ms-flex-align: center;
          align-items: center;
      -webit-box-pack: center;
        -ms-flex-pack: center;
      justify-content: center;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .t-badge {
        width: 100px;
        margin: 20px auto 0;
    }
}

/*---------------------------------------------
 * リストグループ
 *--------------------------------------------*/
.t-list-group {
    width: 100%;
    min-height: 300px;
    margin-bottom: 0;
    padding: 30px;
    border: 1px solid #d8e5ef;
    border-radius: 20px;
}

.t-list-group > .t-list-group-item {
    margin-bottom: 10px;
    padding-left: 20px;
    color: #1e2c59;
    font-size: 0.9375rem;
    line-height: 2;
}

.t-list-group > .t-list-group-item.active {
    padding: 15px 25px;
    margin: 0 0 20px;
    background: #1e2c59;
    border-radius: 10px;
    color: #fff;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.2;
}

.t-list-group > .t-list-group-item:not(:first-child)::before { 
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: -20px;
    margin-right: 10px;
    background: url("../image/check.svg") no-repeat;
    content: "";
}

.t-list-group > .t-list-group-item:last-child {
    margin-bottom: 0;
}

/* ロードマップリストグループ */
.t-list-group:has(.t-list-group-item-title) {
    padding: 0;
    border: none;
}

.t-list-group:has(.t-list-group-item-title) > .t-list-group-item {
    display: -webkit-box;
    display: -ms-frexbox;
    display: flex;
    padding: 15px;
    margin: 0;
    background: #fff;
    border-radius: 10px;
    color: #1e2c59;
    font-size: 1rem;
    line-height: inherit;
}

.t-list-group:has(.t-list-group-item-title) > .t-list-group-item:not(:first-child)::before {
    content: none;
}

.t-list-group:has(.t-list-group-item-title) > .t-list-group-item:not(:last-child) {
    margin-bottom: 20px;
}

.t-list-group:has(.t-list-group-item-title) > .t-list-group-item > .t-list-group-item-title {
    display: -weblit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 90px;
    height: 30px;
    margin-right: 10px;
    padding: 0 10px;
    background: -webkit-gradient(linear, right top, left top, from(#b75ba5), to(#5e5ab9));
    background:  linear-gradient(to left, #b75ba5 0%, #5e5ab9 100%);
    border-radius: 15px;
    color: #fff;
    font-family: "Lato", sans-serif;
    font-weight: bold;
    -webkit-box-align: center;
       -ms-flex-align: center;
          align-items: center;
      -webit-box-pack: center;
        -ms-flex-pack: center;
      justify-content: center;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .t-list-group {
        min-height: auto;
        padding: 20px;
    }

    .t-list-group > .t-list-group-item:not(:first-child)::before {
        height: 7px;
    }
    
    /* ロードマップリストグループ */
    .t-list-group:has(.t-list-group-item-title) > .t-list-group-item {
           -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
           -ms-flex-direction: column;
               flex-direction: column;
    }
    
    .t-list-group:has(.t-list-group-item-title) > .t-list-group-item > .t-list-group-item-title {
        width: 90px;
        margin-bottom: 10px;
    }
}

/*---------------------------------------------
 * 順序付きリストグループ
 *--------------------------------------------*/
.t-ol-group {
    width: 100%;
    padding-left: 0;
    counter-reset: number;
    list-style: none;
}

.t-ol-group > .t-ol-group-item {
    position: relative;
    padding-left: 1rem;
    font-size: 1.5rem;    
}

.t-ol-group > .t-ol-group-item::before {
    counter-increment: number;
    content: counter(number) ") ";
}

.t-ol-group > .t-ol-group-item > p {
    margin: 1rem;
    font-size: 1rem;
}

.t-ol-group > .t-ol-group-item > ul {
    font-size: 1rem;
    list-style: disc;
}

/*---------------------------------------------
 * ニュースリストグループ
 *--------------------------------------------*/
.t-news-group {
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
}

.t-news-group > .t-news-item:not(:last-child) {
    margin-bottom: 45px;
}

.t-news-group > .t-news-item {
    padding-bottom: 45px;
    border-bottom: 1px solid #f0f5f9;
}

.t-news-group > .t-news-item > .t-badge {
    display: inline-block;
    min-width: 130px;
    margin: 0 20px 30px 0;
    font-family: inherit;
    text-align: center;
}

.t-news-group > .t-news-item > time {
    color: #1e2c59;
    font-family: "Lato", sans-serif;
    font-size: 0.9375rem;
    font-weight: bold;
}

.t-news-group > .t-news-item > .t-news-link {
    position: relative;
    display: block;
    padding-right: 80px;
}

.t-news-group > .t-news-item > .t-news-link > h3 {
    margin-bottom: 0;
    color: #1e2c59;
    font-size: 1rem;
    line-height: 2.2;
}

.t-news-group > .t-news-item > .t-news-link > h3 > span {
    background-image: -webkit-gradient(linear, left top, right top, from(#ac529a), to(#ac529a));
    background-image:  linear-gradient(90deg, #ac529a, #ac529a);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    -webkit-transition: background-size 0.6s;
            transition: background-size 0.6s;    
}

.t-news-group > .t-news-item > .t-news-link > h3 > span:hover {
    background-size: 100% 1px;
    color: #ac529a;
    -webkit-transition: 0.7s;
            transition: 0.7s;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .t-news-group > .t-news-item:not(:last-child) {
        margin-bottom: 30px;
    }
    
    .t-news-group > .t-news-item {
        padding-bottom: 30px;
    }

    .t-news-group > .t-news-item > .t-badge {
        margin-bottom: 10px;
        line-height: 24px;
    }
    
    .t-news-group > .t-news-item > .t-news-link {
        padding-right: 35px;
    }
}

/*---------------------------------------------
 * ニュースモーダル
 *--------------------------------------------*/
.t-news-modal > .modal-dialog > .modal-content > .modal-header {
    background: #1e2c59;
}

.t-news-modal > .modal-dialog > .modal-content > .modal-header > .modal-title {
    color: #fff;
    font-size: 1rem;
    line-height: 2.2;
}

.t-news-modal > .modal-dialog > .modal-content > .modal-header > .modal-title > time {
    margin-right: 1rem;
}

.t-news-modal > .modal-dialog > .modal-content > .modal-body a {
    background-image: -webkit-gradient(linear, left top, right top, from(#ac529a), to(#ac529a));
    background-image:  linear-gradient(90deg, #ac529a, #ac529a);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    -webkit-transition: background-size 0.6s;
            transition: background-size 0.6s;    
}

.t-news-modal > .modal-dialog > .modal-content > .modal-body a:hover {
    background-size: 100% 1px;
    color: #ac529a;
    -webkit-transition: 0.7s;
            transition: 0.7s;
}

.t-news-modal > .modal-dialog > .modal-content > .modal-footer > .t-btn {
    min-width: 100px;
    border: none;
}

/*---------------------------------------------
 * カード
 *--------------------------------------------*/
.t-card {
    width: 100%;
    min-height: 190px;
    padding: 30px 25px;
    background: #fff;
    border: 1px solid #d8e5ef;
    border-radius: 10px;
    color: #1e2c59;
}

/* ご挨拶ページ 委員会活動 */
.t-card:not(:has(.t-img))::after {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
    background: url("../image/flower3.svg") no-repeat;
    background-size: 100%;
    content: "";
}

.t-card > .t-card-header {
    display: block;
    color: #ac529e;
    font-family: "Lato", sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.t-card:has(.t-img) > .t-card-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -40px;
        -webkit-box-align: center;
           -ms-flex-align: center;
              align-items: center;
       -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
}

.t-card > .t-card-body > .t-img {
    max-height: 180px;
}

.t-card > .t-card-body > h3 {
    margin: 20px 0;
    font-size: 1.25rem;
    font-weight: bold;
}

.t-card > .t-card-body > h3 > span {
    font-size: 1.125rem;
}

.t-card > .t-card-body p {
    margin: 0;
}

/* サービスページ サービス */
.t-card:has(.t-img):has(.t-card-body + .t-card-body) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

.t-card:has(.t-img):has(.t-card-body + .t-card-body) > .t-card-header + .t-card-body {
    margin-top: 40px;
    margin-left: -47px;
}

.t-card:has(.t-img):has(.t-card-body + .t-card-body) > .t-card-header + .t-card-body + .t-card-body {
    -webit-box-pack: center;
      -ms-flex-pack: center;
    justify-content: center;
    line-height: 2;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .t-card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        min-height: auto;
        padding: 20px 10px;
           -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
           -ms-flex-direction: column;
               flex-direction: column;
    }
    
    .t-card::after {
        width: 30px;
        height: 30px;
        right: 10px;
    }
    
    .t-card > .t-card-header {
        font-size: 2rem;
    }
    
    .t-card > .t-card-body {
        min-height: 101px;
    }
    
    .t-card > .t-card-body > h3 {
        font-size: 1.2rem;
    }
    
    .t-card > .t-card-body p {
        margin: auto 0 0;
    }

    .t-card:has(.t-img) > .t-card-body > h3 {
        font-size: 1.25rem;
    }
    
    .t-card:has(.t-img) > .t-card-body > p {
        line-height: 2;
    }

    /* サービスページ サービス */
    .t-card:has(.t-img):has(.t-card-body + .t-card-body) > .t-card-header + .t-card-body {
        margin: 0;
    }
    
    .t-card:has(.t-img):has(.t-card-body + .t-card-body) > .t-card-header + .t-card-body + .t-card-body > p {
        line-height: 1.7;
    }
}

/*---------------------------------------------
 * カードグループ
 *--------------------------------------------*/
.t-card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 0;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    -webit-box-pack: justify;
      -ms-flex-pack: justify;
    justify-content: space-between;
}

.t-card-group > .t-card-group-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(50% - 30px);
        -webkit-box-align: center;
           -ms-flex-align: center;
              align-items: center;
       -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
}

.t-card-group > .t-card-group-item:first-child {
    padding-top: 60px;
}

.t-card-group > .t-card-group-item > .t-card {
    padding: 0;
    background-color: transparent;
    border: none;
}

.t-card-group > .t-card-group-item > .t-card > .t-card-header {
    border-radius: 20px;
    overflow: hidden;
}

.t-card-group > .t-card-group-item > .t-card > .t-card-body {
    margin: 0;
}

.t-card-group > .t-card-group-item > .t-card > .t-card-body > .t-card-link {
    position: relative;
}

.t-card-group > .t-card-group-item > .t-card > .t-card-body > .t-card-link::after {
    display: block;
    position: absolute;
    width: 0;
    height: 1px;
    left: 0;
    bottom: 20px;
    content: "";
    background-color: #ac529a;
    -webkit-transition: 0.4s all;
            transition: 0.4s all;
}

.t-card-group > .t-card-group-item > .t-card > .t-card-body > .t-card-link:hover {
    color: #ac529a;    
}

.t-card-group > .t-card-group-item > .t-card > .t-card-body > .t-card-link:hover::after {
    width: 100%;
}

.t-card-group > .t-card-group-item > .t-card > .t-card-body > .t-card-link > h3 {
    margin: 30px auto 20px;
    padding-bottom: 4px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.t-card-group > .t-card-group-item > .t-card > .t-card-body > .t-card-link > h3 > i {
    margin-left: 20px;
}

.t-card-group > .t-card-group-item > .t-card .t-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition-duration: 0.7s;
            transition-duration: 0.7s;
}

.t-card-group > .t-card-group-item > .t-card .t-img:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .t-card-group > .t-card-group-item {
        width: 100%;
    }

    .t-card-group > .t-card-group-item:first-child {
        margin-bottom: 60px;
        padding-top: 0;
    }

    .t-card-group > .t-card-group-item > .t-card > .t-card-body > .t-card-link > h3 {
        margin: 20px auto;
    }

    .t-card-group > .t-card-group-item > .t-card > .t-card-body > p {
        line-height: 1.5;
    }
}

/*---------------------------------------------
 * テーブル
 *--------------------------------------------*/
.t-table > tbody > tr > th {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    white-space: nowrap;
}

.t-table > tbody > tr > th,
.t-table > tbody > tr > td {
    position: relative;
    min-width: 100px;
    padding: 1.5em 0.5em;
    line-height: 1.7;
}

.t-table > tbody > tr > td img {
    max-width: 100%;
    margin-bottom: 1rem;
    border-radius: 30px;
}

.t-table > tbody > tr > td a {
    text-decoration-line: underline;
    text-decoration-thickness: 0.5px;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .t-table > tbody > tr > td img {
        border-radius: 20px;
    }
}

/*---------------------------------------------
 * 動画
 *--------------------------------------------*/
.t-movie {
    position: relative;
    width: 100%;
    height: 240px;
    margin: 100px auto;
    background: url("../image/movie.png");
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.t-movie > .t-movie-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
       -ms-flex-align: center;
          align-items: center;
      -webit-box-pack: center;
        -ms-flex-pack: center;
      justify-content: center;
        -o-object-fit: cover;
           object-fit: cover;
}

.t-movie > .t-movie-link:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1)
}

.t-movie > .t-movie-link > h3 {
    margin-bottom: 0;
    color: #1e2c59;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.t-movie > .t-movie-link > h3 > span {
    display: block;
    margin-bottom: 20px;
    font-family: "Lato", sans-serif;
    font-size: 3rem;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .t-movie {
        margin: 60px auto;
    }

    .t-movie > .t-movie-link > h3 {
        font-size: 1.2rem;
    }

    .t-movie > .t-movie-link > h3 > span {
        font-size: 2.5rem;
    }
}

/*---------------------------------------------
 * セクション
 *--------------------------------------------*/
section.row {
    padding: 120px 0 140px;
}

section.row .col {
    position: relative;
}

/* カラム数が1つに摘要 */
section.row .col:only-of-type {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

section.row > .col > h2 {
    margin-bottom: 40px;
    color: #1e2c59;
    font-size: 1.125rem;
    font-weight: bold;
}

section.row > .col > h2 > span {
    margin-right: 20px;
    font-family: "Lato", sans-serif;
    font-size: 4rem;
    font-weight: normal;
}

section.row > .col > p {
    margin-bottom: 0;
    color: #1e2c59;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.9;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #detail.row  {
        padding: 60px 0;
    }
    
    section.row > .col > h2 {
        margin-bottom: 20px;
        font-size: 1rem;
    }
    
    section.row > .col > h2 > span {
        margin-right: 10px;
        font-size: 2.5rem;
    }
}

/*---------------------------------------------
 * 全ページ お問い合わせセクション 
 *--------------------------------------------*/
#contact.row {
    position: relative;
    width: 1345px;
    height: 424px;
    padding: 140px 0;
    background: url("../image/contact.png") no-repeat;
    background-size: cover;
    border-radius: 0 80px 80px 0;
    z-index: 1;
}

#contact.row > .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
       -ms-flex-align: start;
          align-items: flex-start;
      -webit-box-pack: justify;
        -ms-flex-pack: justify;
      justify-content: space-between;
}

#contact.row > .col > h2 > span {
    display: block;
    margin: 0 0 20px 0;
    font-family: "Questrial", sans-serif;
}

#contact.row > .col > h2 > span::after {
    color: #ac529a;
    content: "*"
}

#contact.row > .col > .t-card-body > .t-btn {
    width: 340px;
    height: 80px;
    margin: 20px 0;
    font-size: 1.125rem;
}

#contact.row > .col > .t-card-body > .t-btn-tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Lato", sans-serif;
    font-size: 3rem;
    font-weight: bold;
    gap: 5px;
    -webkit-box-align: center;
       -ms-flex-align: center;
          align-items: center;
}

#contact.row > .col > .t-card-body:has(.t-btn-tel) > h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

/* 1000px以下 */
@media screen and (max-width: 1000px) {
    #contact.row {
        width: auto;
        height: auto;
    }

    #contact.row > .col {
        gap: 60px;
           -ms-flex-wrap: wrap;
               flex-wrap: wrap;
        -webkit-box-pack: center;
           -ms-flex-pack: center;
         justify-content: center;
    }
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #contact.row {
        padding: 40px 0;
        border-radius: 0 60px 60px 0;
    }
    
    #contact.row > .col {
        gap: 0;
           -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
           -ms-flex-direction: column;
               flex-direction: column;
    }
    
    #contact.row > .col > h2 {
        margin-bottom: 0;
    }

    #contact.row > .col > h2 > span {
        margin: 0 0 10px 0;
    }
}

/*---------------------------------------------
 * ホームページ スライダーセクション
 *--------------------------------------------*/
#home.swiper {
    position: relative;
    padding: 110px 0 0 40px;
    overflow: hidden;
}

#home.swiper > .swiper-wrapper {
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
}

#home.swiper > .swiper-wrapper > .swiper-slide {
    width: auto !important;
}

#home.swiper > .swiper-wrapper > .swiper-slide::before {
    position: absolute;
    width: 100%;
    height: 60%;
    left: 0;
    bottom: 0;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 0%), -webkit-linear-gradient(right, #b75ba5 0%, #5e5ab9 100%);
    background:      -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 0%),      -o-linear-gradient(right, #b75ba5 0%, #5e5ab9 100%);
    background:         linear-gradient(to top, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 0%),         linear-gradient(to left, #b75ba5 0%, #5e5ab9 100%);
    border-radius: 0 0 30px 30px;
    content: "";
    -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(black), to(rgba(0, 0, 0, 0)));
    -webkit-mask-image:  linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 100%);
            mask-image: -webkit-gradient(linear, left bottom, left top, from(black), to(rgba(0, 0, 0, 0)));
            mask-image:  linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 100%);
}

#home.swiper > .swiper-wrapper > .swiper-slide > img {
    max-width: 900px;
    border-radius: 30px;
}

#home.swiper > .t-swiper-message {
    position: absolute;
    left: 90px;
    bottom: 50px;
    color: #fff;
    font-weight: bold;
    z-index: 1;
}

#home.swiper > .t-swiper-message > h1 {
    font-size: 1.5rem;
}

#home.swiper > .t-swiper-message > h1 > span {
    display: block;
    margin-bottom: 1rem;
    font-size: 3.25rem;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #home.swiper {
        padding: 60px 0 0 10px;
    }

    #home.swiper > .swiper-wrapper > .swiper-slide {
        aspect-ratio: 16 / 9;
    }

    #home.swiper > .swiper-wrapper > .swiper-slide > img {
        width: 100%;
        height: 100%;
        border-radius: 40px;
        -o-object-fit: cover;
           object-fit: cover;
    }

    #home.swiper > .t-swiper-message {
        bottom: 20px;
        left: 20px;
    }

    #home.swiper > .t-swiper-message > h1 {
        font-size: 1rem;
    }

    #home.swiper > .t-swiper-message > h1 > span {
        font-size: 1.8rem;
    }
}

/*---------------------------------------------
 * ホームページ オープニングセクション 
 *--------------------------------------------*/
#home-opening.row {
    position: relative;
    padding: 110px 0 150px;
    overflow: hidden;
}

#home-opening.row > .col:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1180px;
    margin: 0 auto 100px;
    padding: 0 20px;
    gap: 40px;
    -webkit-box-align: start;
       -ms-flex-align: start;
          align-items: flex-start;
}

#home-opening.row > .col:first-child > h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 230px;
    font-family: "Lato", sans-serif;
    font-size: 1.125rem;
    font-weight: bold;
    text-align: center;
       -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
}

#home-opening.row > .col:first-child > h2 > span {
    position: relative;
    margin: 0;
    font-size: 1.875rem;
    line-height: 1;
}

#home-opening.row > .col:first-child > h2 > span::before,
#home-opening.row > .col:first-child > h2 > span::after {
    position: absolute;
    width: 35px;
    height: 115px;
    top: 0;
    content: "";
}

#home-opening.row > .col:first-child > h2 > span::before {
    left: 0;
    background: url("../../../img/leaf-left.svg") no-repeat;    
}

#home-opening.row > .col:first-child > h2 > span::after {
    right: 0;
    background: url("../../../img/leaf-right.svg") no-repeat;
}

#home-opening.row > .col:first-child > h2 > span > strong {
    position: relative;
    font-size: 5.375rem;
}

#home-opening.row > .col:first-child > .t-card-body {
    width: calc(100% - 270px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
       -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
}

#home-opening.row > .col:first-child > .t-card-body > p {
    margin-bottom: 45px;
    color: #1e2c59;
    font-size: 1.125rem;
    line-height: 2.1;
}

#home-opening.row > .col:first-child > .t-card-body > .t-btn {
    width: 190px;
}

#home-opening.row > .col:last-child {
    flex: none;
}

#home-opening.row > .col:last-child > .t-card-body {
    position: relative;
}

#home-opening.row > .col:last-child > .t-card-body:first-child > .t-img {
    position: relative;
    width: 100%;
    left: -30px;
    padding-right: 120px;
}

#home-opening.row > .col:last-child > .t-card-body:last-child {
    bottom: -140px;
    right: 0;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #home-opening.row {
        padding: 60px 0 40px;
    }

    #home-opening.row > .col:first-child {
        margin-bottom: 60px;
        gap: 20px;
           -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
           -ms-flex-direction: column;
               flex-direction: column;
    }

    #home-opening.row > .col:first-child > h2 {
        margin: 0 auto 20px;
    }

    #home-opening.row > .col:first-child > .t-card-body {
        width: 100%;
    }

    #home-opening.row > .col:first-child > .t-card-body > p {
        margin-bottom: 20px;
    }

    #home-opening.row > .col:last-child > .t-card-body:first-child > .t-img {
        padding-right: 0;
    }

    #home-opening.row > .col:last-child > .t-card-body:last-child {
        bottom: 0;
    }
}

/*---------------------------------------------
 * ホームページ サービスセクション 
 *--------------------------------------------*/
#home-service.row {
    position: relative;
    padding-top: 0;
}

#home-service.row > .col > .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
    gap: 30px;
       -ms-flex-wrap: wrap;
           flex-wrap: wrap;
    -webkit-box-pack: start;
       -ms-flex-pack: start;
     justify-content: flex-start;
}

#home-service.row > .col > .row > .col {
    flex: none;
    width: calc(33.333% - 20px);
}

#home-service.row > .col > .t-btn {
    width: 190px;
    margin: 60px auto 0;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #home-service.row {
        padding: 40px 0;
    }

    #home-service.row > .col > .row {
        gap: 0;
           -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
           -ms-flex-direction: column;
               flex-direction: column;
    }

    #home-service.row > .col > .row > .col {
        width: 100%;
        max-width: 340px;
        min-height: 100%;
        margin: 0 auto 60px;
    }
    
    #home-service.row > .col > .row > .col:last-child {
        margin-bottom: 0;
    }

    #home-service.row > .col > .t-btn {
        margin: 40px auto 0;
    }
}

/*---------------------------------------------
 * ホームページ 会社情報セクション 
 *--------------------------------------------*/
#home-company.row {
    position: relative;
    padding: 140px 0;
    background: #f0f5f9;
    border-radius: 80px 0 0 80px;
    overflow: hidden;
}

#home-company.row > .col > h2 > span {
    font-family: "Questrial", sans-serif;
}

#home-company.row > .col > h2 > span > i {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 26px;
    top: -20px;
    left: auto;
    padding-bottom: 0;
}

#home-company.row > .col > p {
    margin-bottom: 70px;
}

#home-company.row > .col > .t-movie > i {
    right: 20px;
    bottom: 20px;
}

#home-company.row > .col > .row {
    position: relative;
}

#home-company.row > .col > .row > .col {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px;
    padding: 0;
    background: #fff;
    border-radius: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

#home-company.row > .col > .row > .col > .t-card-body {
    position: relative;
    height: 440px;
}

#home-company.row > .col > .row > .col > .t-card-body:first-child {
    width: 55.263%;
    padding: 60px;
    color: #1e2c59;
}

#home-company.row > .col > .row > .col > .t-card-body:last-child {
    width: 44.737%;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
}

#home-company.row > .col > .row > .col > .t-card-body > h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
}

#home-company.row > .col > .row > .col > .t-card-body > h2 > span {
    display: block;
    font-family: "Questrial", sans-serif;
    font-size: 3.125rem;
    line-height: 75px;
}

#home-company.row > .col > .row > .col > .t-card-body > h2 > span > i {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    top: -16px;
    left: auto;
    padding-bottom: 0;
}

#home-company.row > .col > .row > .col > .t-card-body > p {
    margin-bottom: 40px;
    font-size: 1.25rem;
}

#home-company.row > .col > .row > .col > .t-card-body > .t-btn {
    width: 160px;
}

#home-company.row > .col > .row > .col > .t-card-body > .t-rotate {
    position: absolute;
    right: 50px;
    bottom: 50px;
}

#home-company.row > .col > .row > .col > .t-card-body > .t-slide-up > .t-img {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

#home-company.row > .col > .row > p {
    padding: 0;
    color: #1e2c59;
    font-size: 1.125rem;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #home-company.row {
        padding: 80px 0 40px;
    }
    
    #home-company.row > .col > h2 > span > i {
        width: 20px;
        height: 20px;
        top: -10px;
    }

    #home-company.row > .col > p {
        margin-bottom: 40px;
    }

    #home-company.row > .col > .t-movie > i {
        right: 10px;
        bottom: 10px;
    }

    #home-company.row > .col > .row > .col {
        margin-bottom: 20px;
           -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
           -ms-flex-direction: column;
               flex-direction: column;   
    }
    
    #home-company.row > .col > .row > .col > .t-card-body:first-child {
        width: 100%;
        height: auto;
        padding: 40px 20px;
    }
    
    #home-company.row > .col > .row > .col > .t-card-body:last-child {
        width: 100%;
        height: 300px;
        border-radius: 0 0 20px 20px;
    }
    
    #home-company.row > .col > .row > .col > .t-card-body > h2 {
        margin-bottom: 10px;
        font-size: 2rem;
    }

    #home-company.row > .col > .row > .col > .t-card-body > h2 > span {
        margin-bottom: 20px;
        font-size: 2.5rem;
        line-height: 52.5px;
    }

    #home-company.row > .col > .row > .col > .t-card-body > h2 > span > i {
        width: 10px;
        height: 10px;
        top: -14px;
    }
    
    #home-company.row > .col > .row > .col > .t-card-body > p {
        font-size: 1rem;
    }

    #home-company.row > .col > .row > .col > .t-card-body > .t-rotate {
        bottom: 20px;
        left: 220px;
        right: auto;
    }

    #home-company.row > .col > .row > p {
        font-size: 1rem;
    }
}

/*---------------------------------------------
 * ホームページ ニュースセクション 
 *--------------------------------------------*/
#home-news.row {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1180px;
    margin: 0 auto;
    padding: 140px 20px;
    -webkit-box-pack: justify;
       -ms-flex-pack: justify;
     justify-content: space-between;
}

#home-news.row > .col {
    position: relative;
    flex: none;
}

#home-news.row > .col:first-child {
    width: 21.5%;
    padding: 80px 0 220px;
}

#home-news.row > .col:last-child {
    width: 73.6%;
}

#home-news.row > .col:first-child > h2 {
    margin-bottom: 60px;
    font-size: 1.125rem;
    font-weight: bold;
}
#home-news.row > .col:first-child > h2 > span {
    display: block;
    margin: 0 0 20px 0;
    font-family: "Lato", sans-serif;
    font-size: 4rem;
    font-weight: normal;    
}

#home-news.row > .col:first-child > .t-btn {
    width: 160px;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #home-news.row {
        padding: 80px 0;
    }

    #home-news.row > .col {
           -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
           -ms-flex-direction: column;
               flex-direction: column;   
    }
    
    #home-news.row > .col:first-child,
    #home-news.row > .col:last-child {
        width: 100%;
        padding: 0 20px;
    }
    
    #home-news.row > .col:first-child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 40px;
        gap: 40px;
        -webkit-box-align: center;
           -ms-flex-align: center;
              align-items: center;
        -webkit-box-direction: row;
           -ms-flex-direction: row;
               flex-direction: row;   
    }
    
    #home-news.row > .col:first-child > h2 {
        margin-bottom: 0;
        font-size: 1rem;
        
    }
    
    #home-news.row > .col:first-child > h2 > span {
        margin-bottom: 10px;
        font-size: 2.5rem;
    }
}

/*---------------------------------------------
 * 個人情報保護方針ページ / 個人情報取扱いページ
 *--------------------------------------------*/
#privacy.row > .col > p {
    margin-bottom: 20px;
}

#privacy.row > .col > .t-card-body {
    margin-bottom: 60px;
}

#privacy.row > .col > .t-card-body > h3 {
    margin-bottom: 20px;
}

#privacy.row > .col > .t-card-body > h3 > span {
    font-family: "Lato", sans-serif;
}

#privacy.row > .col > .t-card-body > h3 > span::after {
    margin-right: 10px;
    content: ".";
}

#privacy.row > .col > .t-card-body > p {
    margin-left: 1rem;
}

#privacy.row > .col > .t-card-body > .t-ol-group > .t-ol-group-item > ul {
    margin-bottom: 1rem;
}

#privacy.row > .col > .t-card-body > .t-ol-group > .t-ol-group-item > .table-responsive {
    -ms-overflow-style: none;
       scrollbar-width: none;
}

#privacy.row > .col > .t-card-body > .t-ol-group > .t-ol-group-item > .table-responsive > .t-table {
    margin: 1rem;
}

#privacy.row > .col > .t-card-body > .t-ol-group > .t-ol-group-item > .table-responsive > .t-table > tbody > tr > th,
#privacy.row > .col > .t-card-body > .t-ol-group > .t-ol-group-item > .table-responsive > .t-table > tbody > tr > td {
    padding: 5px;
    color: inherit;
    font-size: 0.9rem;
}

#privacy.row > .col > .t-card-body > .t-ol-group > .t-ol-group-item > .table-responsive > .t-table > tbody > tr > th:first-child {
    width: 300px;
}


/* 768px以下 */
@media screen and (max-width: 768px) {
    #privacy.row {
        padding: 40px 0;
    }

    #privacy.row > .col > .t-card-body > .t-ol-group > .t-ol-group-item > .table-responsive > .t-table > tbody > tr,
    #privacy.row > .col > .t-card-body > .t-ol-group > .t-ol-group-item > .table-responsive > .t-table > tbody > tr > th,
    #privacy.row > .col > .t-card-body > .t-ol-group > .t-ol-group-item > .table-responsive > .t-table > tbody > tr > td {
        border: none;
    }

    #privacy.row > .col > .t-card-body > .t-ol-group > .t-ol-group-item > .table-responsive > .t-table > tbody > tr > th,
    #privacy.row > .col > .t-card-body > .t-ol-group > .t-ol-group-item > .table-responsive > .t-table > tbody > tr > td {
        display: block;
    }    
}

/*---------------------------------------------
 * ごあいさつページ ごあいさつセクション 
 *--------------------------------------------*/
#greet.row {
    padding: 160px 0 180px;
}

#greet.row > .col {
    flex: none;
}

#greet.row > .col:first-child {
    width: 45%;
    z-index: 1;
}

#greet.row > .col:last-child {
    flex: 1;
    margin-top: -77px;
    margin-left: -107.594px;
    min-height: 780px;
    background: #f0f5f9;
    border-radius: 80px 0 0 80px;
    color: #1e2c59;
}

#greet.row > .col > .t-img {
    width: 100%;
}

#greet.row > .col > .t-greet-message {
    width: 66.14%;
    margin-top: 117.5px;
    margin-left: 143.5px;
}

#greet.row > .col > .t-greet-message > p {
    font-size: 0.9375rem;
    line-height: 2;
}

#greet.row > .col > .t-greet-message > p:not(:last-child) {
    margin-bottom: 50px;
}

#greet.row > .col > .t-greet-message > .t-greet-sign {
    display: -webkit-box;
    display: -ms-frexbox;
    display: flex;
    gap: 15px;
          align-items: center;
    -webkit-box-align: center;
       -ms-flex-align: center;
     -webkit-box-pack: end;
        -ms-flex-pack: end;
      justify-content: flex-end;
}

#greet.row > .col > .t-greet-message > .t-greet-sign > p {
    margin-bottom: 0;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #greet.row {
        padding: 40px 0;
    }
    
    #greet.row > .col {
        flex: none;
    }

    #greet.row > .col:first-child {
        width: 100%;
        margin-bottom: 40px;
    }
    
    #greet.row > .col:last-child {
        height: auto;
        min-height: auto;
        margin: 0;
        padding: 40px 20px 80px;
        border-radius: 60px 0 0 60px;
    }
    
    #greet.row > .col > .t-greet-message {
        width: 100%;
        margin: 0;
    }
    
    #greet.row > .col > .t-greet-message > p:not(:last-child) {
        margin-bottom: 20px;
    }
}

/*---------------------------------------------
 * ごあいさつページ ビジョンセクション 
 *--------------------------------------------*/
#greet-vision.row {
    margin-top: -56px;
    padding-top: 0;
}

#greet-vision.row > .col > h2 > span {
    font-family: "Questrial", sans-serif;
}

#greet-vision.row > .col > h2 > span > i {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 26px;
    top: -20px;
    left: auto;
    padding-bottom: 0;
}

#greet-vision.row > .col > p {
    margin-bottom: 60px;
}

#greet-vision.row > .col > .row {
    display: -webkit-box;
    display: -ms-frexbox;
    display: flex;
    gap: 40px;
     -webkit-box-pack: justify;
        -ms-flex-pack: justify;
      justify-content: space-between;
}

#greet-vision.row > .col > .row > .col {
    min-height: 300px;
    flex: none;
}

#greet-vision.row > .col > .row > .col:first-child {
    max-width: 480px;
    min-height: 300px;
}

#greet-vision.row > .col > .row > .col:last-child {
    max-width: 620px;
    min-height: 300px;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #greet-vision.row {
        margin: 0 auto;
        padding: 60px 0 40px;
    }
    
    #greet-vision.row > .col {
        padding: 0 20px;
    }

    #greet-vision.row > .col > h2 > span > i {
        top: -12px;
        width: 14px;
        height: 14px;
    }

    #greet-vision.row > .col > p {
        margin-bottom: 40px;
    }

    #greet-vision.row > .col > .row {
           -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
           -ms-flex-direction: column;
               flex-direction: column;
    }
    
    #greet-vision.row > .col > .row > .col:first-child,
    #greet-vision.row > .col > .row > .col:last-child {
        max-width: 100%;
        min-height: auto;
        padding: 0;
    }
}

/*---------------------------------------------
 * ごあいさつページ ロードマップセクション 
 * 会社情報ページ　 本社所在地セクション
 *--------------------------------------------*/
#greet-roadmap.row,
#detail-access.row {
    position: relative;
    padding: 120px 0 140px;
    background: #f0f5f9;
    border-radius: 80px 0 0 80px;
    overflow: hidden;
}

#greet-roadmap.row > .ti.ti-circle-dot,
#detail-access.row > .ti.ti-circle-dot {
    width: 31.3%;
    max-width: 450px;
    top: -170px;
    left: auto;
    right: 40px;
    z-index: 0;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #greet-roadmap.row {
        padding: 40px 0;
        border-radius: 60px 0 0 60px;
    }
    
    #greet-roadmap.row > .ti.ti-circle-dot {
        width: 32%;
        max-width: 150px;
        top: -50px;
        right: 10px;
    }
}

/*---------------------------------------------
 * ごあいさつページ 委員会活動セクション 
 *--------------------------------------------*/
#greet-committee.row {
    overflow: hidden;
}

#greet-committee.row > .col > .row:first-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 60px 0 100px;
    gap: 30px;
       -ms-flex-wrap: wrap;
           flex-wrap: wrap;
    -webkit-box-pack: start;
       -ms-flex-pack: start;
     justify-content: flex-start;
}

#greet-committee.row > .col > .row:first-of-type > .col {
    flex: none;
    width: calc(33.333% - 20px);
}

#greet-committee.row > .col > .row:last-of-type > .col {
    padding: 0;
}

#greet-committee.row > .col > .row:last-of-type > .col > p {
    margin: 0;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #greet-committee.row {
        padding: 40px 0;
    }

    #greet-committee.row > .col > .row:first-of-type {
        margin: 40px 0;
        gap: 10px;
    }

    #greet-committee.row > .col > .row:first-of-type > .col {
        width: calc(50% - 5px);
    }
}

/*---------------------------------------------
 * 会社情報ページ 詳細セクション 
 *--------------------------------------------*/
#detail.row {
    padding-bottom: 100px;
}

#detail.row > .col > .t-table > tbody > tr > td:has(.ti-stripe) > img {
    padding-top: 40px;
}

#detail.row > .col > .t-table > tbody > tr > td > .ti-stripe {
    top: 10px;
    left: 0;
}

#detail.row > .col > .t-table > tbody > tr > td > .text-center {
    position: relative;
}

#detail.row > .col > .t-table > tbody > tr > td > .text-center > .ti-flower4 {
    top: -80px;;
    right: -44px;
}

#detail.row > .col > .t-table > tbody > tr > td > .row > .col {
    text-align: center;
}

#detail.row > .col > .t-table > tbody > tr > td  p > span {
    display: block;
    font-size: 0.875em;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #detail.row > .col > .t-table > tbody > tr > td:has(.ti-stripe) > img {
        padding-top: 6px;
    }

    #detail.row > .col > .t-table > tbody > tr > td > .ti-stripe {
        max-width: 40px;
    }
    
    #detail.row > .col > .t-table > tbody > tr > td > .text-center > .ti-flower4 {
        top: -34px;
        right: -6px;
        max-width: 36px;
    }
}

/* 600px以下 */
@media screen and (max-width: 600px) {
    #detail.row > .col > .t-table > tbody > tr > td > .row > .col {
        flex: none;
    }
}

/*---------------------------------------------
 * 会社情報ページ アクセスセクション 
 *--------------------------------------------*/
#detail-access.row {
    margin-bottom: 100px;
}

#detail-access.row > .col > iframe {
    margin-bottom: 32px;
    border-radius: 4px;
}

#detail-access.row > .col > .t-list-group > .t-list-group-item > .t-list-group-item-title {
    min-width: 110px;
}

/*---------------------------------------------
 * サービスページ, 技術者情報ページ
 *--------------------------------------------*/
#service-businesssystem.row,
#engineer-specialty.row {
    position: relative;
    padding: 120px 0 140px;
    background: #f0f5f9;
    border-radius: 80px 0 0 80px;
    overflow: hidden;
}

#service-businesssystem.row > .ti.ti-circle-dot,
#engineer-specialty.row > .ti.ti-circle-dot {
    width: 31.3%;
    max-width: 450px;
    top: -170px;
    left: auto;
    right: 40px;
    z-index: 0;
}

#service-financialsystem.row p + .t-card,
#service-businesssystem.row p + .t-card,
#service-infrastructuressisystem.row p + .t-card {
    margin-top: 60px;
}

#engineer-skills.row > .col > .table-responsive {
       scrollbar-width: none;
    -ms-overflow-style: none;
}

#engineer-specialty.row > .col > .t-table > tbody > tr > th,
#engineer-specialty.row > .col > .t-table > tbody > tr > td {
    background: #f0f5f9;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #service-financialsystem.row,
    #service-businesssystem.row,
    #service-infrastructuressisystem.row,
    #engineer-field.row,
    #engineer-specialty.row,
    #engineer-skills.row {
        padding: 40px 0;
    }

    #service-businesssystem.row > .ti.ti-circle-dot,
    #engineer-specialty.row > .ti.ti-circle-dot {
        width: 32%;
        max-width: 150px;
        top: -50px;
        right: 10px;
    }

    #service-financialsystem.row p + .t-card,
    #service-businesssystem.row p + .t-card,
    #service-infrastructuressisystem.row p + .t-card {
        margin-top: 40px;
    }
}

/*---------------------------------------------
 * 企業情報ページ　プロファイルセクション
 *--------------------------------------------*/
#profile.row {
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
}

#profile.row > .col:first-child {
    flex: none;
    max-width: 100%;
    padding-bottom: 140px;
}

#profile.row > .col:first-child > .t-card-body {
    position: relative;
    border-radius: 30px;
}

#profile.row > .col:first-child > .t-card-body > .t-card-text > h2 {
    position: absolute;
    left: 120px;
    bottom: 50px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 1;
}

#profile.row > .col:first-child > .t-card-body > .t-card-text > h2 > span {
    display: block;
    font-size: 2.5rem;
}

#profile.row > .col:first-child > .t-card-body > .t-card-text::before {
    position: absolute;
    width: 100%;
    height: 60%;
    left: 0;
    bottom: 0;
    border-radius: 0 0 80px 0;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 0%), -webkit-linear-gradient(right, #b75ba5 0%, #5e5ab9 100%);
    background:      -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 0%),      -o-linear-gradient(right, #b75ba5 0%, #5e5ab9 100%);
    background:         linear-gradient(to top, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 0%),         linear-gradient(to left, #b75ba5 0%, #5e5ab9 100%);
    color: #fff;
    content: "";
    -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(black), to(rgba(0, 0, 0, 0)));
    -webkit-mask-image:  linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 100%);
            mask-image: -webkit-gradient(linear, left bottom, left top, from(black), to(rgba(0, 0, 0, 0)));
            mask-image:  linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 100%);    
    z-index: 1;
}

#profile.row > .col:first-child > .t-card-body > .t-img {
    position: relative;
    width: 100%;
    border-radius: 0 0 80px 0;
}

#profile.row > .col:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1180px;
    margin: 0 auto 100px;
    padding: 0 20px;
    gap: 40px;
    -webkit-box-align: start;
       -ms-flex-align: start;
          align-items: flex-start;
}

#profile.row > .col:last-child > h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 230px;
    font-family: "Lato", sans-serif;
    font-size: 1.125rem;
    font-weight: bold;
    text-align: center;
       -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
}

#profile.row > .col:last-child > h2 > span {
    position: relative;
    margin: 0;
    font-size: 1.875rem;
    line-height: 1;
}

#profile.row > .col:last-child > h2 > span::before,
#profile.row > .col:last-child > h2 > span::after {
    position: absolute;
    width: 35px;
    height: 115px;
    top: 0;
    content: "";
}

#profile.row > .col:last-child > h2 > span::before {
    left: 0;
    background: url("../../../img/leaf-left.svg") no-repeat;    
}

#profile.row > .col:last-child > h2 > span::after {
    right: 0;
    background: url("../../../img/leaf-right.svg") no-repeat;
}

#profile.row > .col:last-child > h2 > span > strong {
    position: relative;
    font-size: 5.375rem;
}

#profile.row > .col:last-child > .t-card-body {
    width: calc(100% - 270px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
       -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
}

#profile.row > .col:last-child > .t-card-body > p {
    margin-bottom: 45px;
    color: #1e2c59;
    font-size: 1.125rem;
    line-height: 2.1;
}

#profile.row > .col:last-child > .t-card-body > .t-btn {
    width: 190px;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #profile.row {
        padding: 40px 0;
    }

    #profile.row > .col:first-child {
        padding-bottom: 40px;
    }

    #profile.row > .col:first-child > .t-card-body {
        border-radius: 0;
    }
    
    #profile.row > .col:first-child > .t-card-body > .t-card-text::before {
        border-radius: 0;
    }
    
    #profile.row > .col:first-child > .t-card-body > .t-card-text > h2 {
        left: 10px;
        bottom: 10px;
        font-size: 1rem;
    }

    #profile.row > .col:first-child > .t-card-body > .t-card-text > h2 > span {
        font-size: 1.5rem;
    }
    
    #profile.row > .col:first-child > .t-card-body > .t-img {
        width: 100%;
        height: 100%;
        border-radius: 0;
        -o-object-fit: cover;
           object-fit: cover
    }

    #profile.row > .col:last-child {
        margin-bottom: 60px;
        gap: 20px;
           -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
           -ms-flex-direction: column;
               flex-direction: column;
    }

    #profile.row > .col:last-child > h2 {
        margin: 0 auto 20px;
    }

    #profile.row > .col:last-child > .t-card-body {
        width: 100%;
    }

    #profile.row > .col:last-child > .t-card-body > p {
        margin-bottom: 20px;
    }    
}

/*---------------------------------------------
 * 企業情報ページ　ヘッドラインセクション
 *--------------------------------------------*/
#profile-headline.row {
    position: relative;
    margin: 0 0 120px;
    padding: 120px 0 140px;
    background: #f0f5f9;
    border-radius: 80px 0 0 80px;
    overflow: hidden;    
}

#profile-headline.row  > .ti.ti-circle-dot {
    width: 31.3%;
    max-width: 450px;
    top: -170px;
    left: auto;
    right: 40px;
    z-index: 0;
}

#profile-headline.row > .col > h2 > span {
    font-family: "Questrial", sans-serif;
}

#profile-headline.row > .col > h2 > span > i {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 26px;
    top: -20px;
    left: auto;
    padding-bottom: 0;
}

#profile-headline.row > .col > .row  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
       -ms-flex-wrap: wrap;
           flex-wrap: wrap;
    -webkit-box-pack: start;
       -ms-flex-pack: start;
     justify-content: flex-start;
}

#profile-headline.row > .col > .row > .col {
    flex: none;
    width: calc(33.333% - 20px);
}

#profile-headline.row > .col > .row > .col > .t-card > .t-card-body > p {
    margin: 0 0 20px;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #profile-headline.row {
        margin-bottom: 40px;
        padding: 80px 0 40px;
    }

    #profile-headline.row > .col > h2 > span > i {
        top: -12px;
        width: 14px;
        height: 14px;
    }

    #profile-headline.row > .ti.ti-circle-dot {
        width: 32%;
        max-width: 150px;
        top: -50px;
        right: 10px;
    }

    #profile-headline.row > .col > .row {
        margin: 40px 0;
        gap: 10px;
    }

    #profile-headline.row > .col > .row > .col {
        width: 100%;
    }

    #profile-headline.row > .col > .row > .col > .t-card > .t-card-body > .t-btn {
        min-width: 100%;
    }
}

/*---------------------------------------------
 * 経営理念ページ　マネジメントセクション
 * 経営計画ページ
 *--------------------------------------------*/
#management.row {
    position: relative;
    overflow: hidden;
}

#management.row > .col {
    flex: none;
    max-width: 100%;
    padding: 0;
}

#management.row > .col > .t-card-body {
    position: relative;
    border-radius: 30px;
}

#management.row > .col > .t-card-body > .t-card-text::before {
    position: absolute;
    width: 100%;
    height: 60%;
    left: 0;
    bottom: 0;
    border-radius: 0 0 80px 0;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 0%), -webkit-linear-gradient(right, #b75ba5 0%, #5e5ab9 100%);
    background:      -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 0%),      -o-linear-gradient(right, #b75ba5 0%, #5e5ab9 100%);
    background:         linear-gradient(to top, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 0%),         linear-gradient(to left, #b75ba5 0%, #5e5ab9 100%);
    color: #fff;
    content: "";
    -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(black), to(rgba(0, 0, 0, 0)));
    -webkit-mask-image:  linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 100%);
            mask-image: -webkit-gradient(linear, left bottom, left top, from(black), to(rgba(0, 0, 0, 0)));
            mask-image:  linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 100%);    
    z-index: 1;
}

#management.row > .col > .t-card-body > .t-card-text > h2 {
    position: absolute;
    left: 120px;
    bottom: 50px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 1;
}

#management.row > .col > .t-card-body > .t-card-text > h2 > span {
    display: block;
    font-size: 2.5rem;
}

#management.row > .col > .t-card-body > .t-img {
    position: relative;
    width: 100%;
    border-radius: 0 0 80px 0;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #management.row {
        padding: 40px 0;
    }

    #management.row > .col {
        padding: 0;
    }

    #management.row > .col > .t-card-body {
        border-radius: 0;
    }
    
    #management.row > .col > .t-card-body > .t-card-text::before {
        border-radius: 0;
    }
    
    #management.row > .col > .t-card-body > .t-card-text > h2 {
        left: 10px;
        bottom: 10px;
        font-size: 1rem;
    }
    
    #management.row > .col > .t-card-body > .t-card-text > h2 > span {
        font-size: 1.5rem;
    }
    
    #management.row > .col > .t-card-body > .t-img {
        width: 100%;
        height: 100%;
        border-radius: 0;
        -o-object-fit: cover;
           object-fit: cover
    }
}

/*---------------------------------------------
 * 経営理念ページ　トライアンフ憲章セクション
 * 経営計画ページ　
 *--------------------------------------------*/
#management-charter.row {
    padding-top: 0;
}

#management-charter.row > .col > h2 > span {
    font-size: 3.9rem;
}

#management-charter.row > .col > .t-list-group {
    margin: 60px 0;
}

#management-charter.row > .col > .t-list-group > .t-list-group-item > .t-list-group-item-title {
    height: 35px;
    margin-top: -5px; 
    font-size: 1.5rem;
}

#management-charter.row > .col > .t-list-group > .t-list-group-item > .t-badge {
    max-width: 55%;
    height: auto;
    background: inherit;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

#management-charter.row > .col > .t-list-group > .t-list-group-item > ul {
    margin-left: 100px;
    list-style: disc;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #management-charter.row {
        padding: 40px 0;
    }

    #management-charter.row > .col > h2 > span {
        font-size: 2rem;
    }

    #management-charter.row > .col > .t-list-group {
        margin: 40px 0;
    }

    #management-charter.row > .col > .t-list-group > .t-list-group-item {
        padding: 15px 0;
    }

    #management-charter.row > .col > .t-list-group > .t-list-group-item > .t-badge {
        width: 100%;
        max-width: 100%;
        margin: 20px 0 0;
        padding: 0;
    }

    #management-charter.row > .col > .t-list-group > .t-list-group-item > ul {
        margin: 10px 0 0;
    }
}

/*---------------------------------------------
 * 沿革ページ　沿革セクション
 * 決算ページ
 *--------------------------------------------*/
.t-page-header > .ti.ti-circle-semi4 {
    left: -200px;
    bottom: -400px;
}

#history.row {
    position: relative;
    margin: 220px 0 200px;
    padding: 140px 0;
    background: #f0f5f9;
    border-radius: 80px 0 0 80px;
    overflow: hidden;
}

#history.row > .col > .t-table > tbody > tr > th,
#history.row > .col > .t-table > tbody > tr > td {
    background: #f0f5f9;
}

#history.row > .col > .t-table > tbody > tr > th {
    width: 200px;
}

#contact.row {
    z-index: auto;
}

#contact.row > .ti.ti-flower2-stickout {
    top: -160px;
    left: auto;
    bottom: auto;
}

#contact.row > .ti.ti-circle-donut {
    top: -140px;
    left: 100px;;
    bottom: auto;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .t-page-header > .ti.ti-circle-semi4 {
        left: -15px;
        bottom: -125px;
    }

    #history.row {
        margin: 60px 0;
        padding: 60px 0;
    }

    #history.row > .col > .ti.ti-triangle4 {
        top: -10px;
    }

    #history.row > .col > .t-table > tbody > tr > th {
        width: auto;
    }
    
    #contact.row > .ti.ti-flower2-stickout {
        top: -60px;
    }
    
    #contact.row > .ti.ti-circle-donut {
        top: -40px;
        left: 40px;
    }
}

/*---------------------------------------------
 * 採用情報ページ　リクルートセクション
 * 採用条件ページ
 * 教育・人財育成ページ
 * 福利厚生・健康管理ページ
 * 子育てサポートページ
 *--------------------------------------------*/
#recruit.row {
    position: relative;
    overflow: hidden;
}

#recruit.row > .col {
    flex: none;
    max-width: 100%;
    padding: 0;
}

#recruit.row > .col > .t-card-body {
    position: relative;
}

#recruit.row > .col > .t-card-body > .t-img {
    position: relative;
    width: 100%;
    left: -30px;
    padding-right: 120px;
}

#recruit.row > .col > .t-card-body:last-child {
    bottom: -140px;
    right: 0;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #recruit.row {
        padding: 40px 0;
    }

    #recruit.row > .col > .t-card-body > .t-img {
        padding-right: 0;
    }

    #recruit.row > .col > .t-card-body:last-child {
        bottom: 0;
    }
}

/*---------------------------------------------
 * 採用情報ページ　コンディションセクション
 * 採用条件ページ
 * 人材・育成ページ
 * 福利厚生・健康管理ページ
 * 子育てサポートページ
 *--------------------------------------------*/
#recruit-condition.row {
    padding: 0;
}

#recruit-condition.row > .col > .t-card-body {
    margin-bottom: 60px;
}

#recruit-condition.row > .col > .t-card-body > ul {
    list-style: disc;
}

#recruit-condition.row > .col > .t-btn {
    width: 190px;
    margin: 60px auto;
}

#recruit-condition.row > .col > .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 60px 0;
    gap: 30px;
       -ms-flex-wrap: wrap;
           flex-wrap: wrap;
    -webkit-box-pack: start;
       -ms-flex-pack: start;
     justify-content: flex-start;
}

#recruit-condition.row > .col > .row > .col {
    flex: none;
    width: calc(50% - 20px);
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #recruit-condition.row > .col > h2 {
        margin-bottom: 40px;
    }

    #recruit-condition.row > .col > h2 > span {
        display: block;
    }

    #recruit-condition.row > .col > .row {
        margin: 60px 0 0;
        gap: 0;
           -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
           -ms-flex-direction: column;
               flex-direction: column;
    }
    
    #recruit-condition.row > .col > .row > .col {
        width: 100%;
        max-width: 340px;
        min-height: 100%;
        margin: 0 auto 60px;
    }
}

/*---------------------------------------------
 * 採用情報ページ　インフォーメーションセクション
 * 採用条件ページ　募集要項セクション
 * 教育・人財育成ページ
 * 福利厚生・健康管理ページ
 * 子育てサポートページ
 *--------------------------------------------*/
#recruit-infomation.row,
#recruit-requirements.row {
    position: relative;
    margin: 0 0 120px;
    background: #f0f5f9;
    border-radius: 80px 0 0 80px;
    overflow: hidden;
}

#recruit-infomation.row > .ti.ti-circle-dot,
#recruit-requirements.row > .ti.ti-circle-dot {
    width: 31.3%;
    max-width: 450px;
    top: -170px;
    left: auto;
    right: 40px;
    z-index: 0;
}

#recruit-infomation.row > .col > h2 > span,
#recruit-requirements.row > .col > h2 > span {
    font-family: "Questrial", sans-serif;
}

#recruit-infomation.row > .col > h2 > span > i {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 26px;
    top: -20px;
    left: auto;
    padding-bottom: 0;
}

#recruit-infomation.row > .col > .row,
#recruit-requirements.row > .col > .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
       -ms-flex-wrap: wrap;
           flex-wrap: wrap;
    -webkit-box-pack: start;
       -ms-flex-pack: start;
     justify-content: flex-start;
}

#recruit-infomation.row > .col > .row > .col > .t-card > .t-card-body > p,
#recruit-requirements.row > .col > .row > .col > .t-card > .t-card-body > p {
    margin: 0 0 20px;
}

#recruit-infomation.row > .col > .table-responsive,
#recruit-requirements.row > .col > .table-responsive {
       scrollbar-width: none;
    -ms-overflow-style: none;
}

#recruit-infomation.row > .col > .table-responsive > .t-table > tbody > tr > th,
#recruit-infomation.row > .col > .table-responsive > .t-table > tbody > tr > td,
#recruit-requirements.row > .col > .table-responsive > .t-table > tbody > tr > th,
#recruit-requirements.row > .col > .table-responsive > .t-table > tbody > tr > td {
    min-width: auto;
    background: #f0f5f9;
}

#recruit-infomation.row > .col > .table-responsive > .t-table > tbody > tr > td:nth-child(-n+1) {
    white-space: nowrap;
}

#recruit-infomation.row > .col > .table-responsive + .row,
#recruit-requirements.row > .col > .table-responsive + .row {
    margin-top: 120px;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #recruit-infomation.row,
    #recruit-requirements.row {
        margin-bottom: 40px;
        padding: 80px 0 40px;
    }

    #recruit-infomation.row > .ti.ti-circle-dot,
    #recruit-requirements.row > .ti.ti-circle-dot {
        width: 32%;
        max-width: 150px;
        top: -50px;
        right: 10px;
    }
    
    #recruit-requirements.row > .col > h2 > span {
        display: block;
    }

    #recruit-infomation.row > .col > h2 > span > i {
        top: -12px;
        width: 14px;
        height: 14px;
    }
    
    #recruit-infomation.row > .col > .row {
        margin: 40px 0;
        gap: 10px;
    }
    
    #recruit-requirements.row > .col > .table-responsive + .row {
        margin-top: 30px;
    }
    
    #recruit-infomation.row > .col > .table-responsive > .t-table > tbody > tr > td:nth-child(-n+1) {
        white-space: normal;
    }
}

/*---------------------------------------------
 * 子育てサポートページ　くるみんセクション
 *--------------------------------------------*/
#recruit-kurumin.row {
    padding: 0 0 140px;
}

#recruit-kurumin.row > .col > .t-list-group {
    margin: 60px 0;
}

#recruit-kurumin.row > .col > .t-list-group > .t-list-group-item > .t-list-group-item-title {
    height: 35px;
    margin-top: -5px; 
    font-size: 1.5rem;
}

#recruit-kurumin.row > .col > .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
       -ms-flex-wrap: wrap;
           flex-wrap: wrap;
    -webkit-box-pack: start;
       -ms-flex-pack: start;
     justify-content: flex-start;
}

#recruit-kurumin.row > .col > .row > .col > .t-card > .t-card-body > p {
    margin: 0 0 20px;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #recruit-kurumin.row {
        margin-bottom: 40px;
        padding: 80px 0 40px;
    }
    
    #recruit-kurumin.row > .col > .t-list-group > .t-list-group-item > .t-list-group-item-title {
        width: 200px;
    }
}

/*---------------------------------------------
 * お問い合わせページ　メールフォームセクション
 *--------------------------------------------*/
#mailform.row > .col .col-form-label {
    text-align: right;
}

#mailform.row > .col :is(p, input:not([type="number"]), textarea){
    margin: 0 0 20px;
}

#mailform.row > .col .input-group {
    width: 440px;
    margin: 0 0 20px;
}

#mailform.row > .col .t-btn {
    border: none;
}

#mailform.row > .col > form > .row:last-child > .col-sm-10 > p {
    font-size: 0.9rem;
}

#mailform.row > .col > form > .t-table > tbody > tr > td > .t-btn {
    display: inline-block;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    #mailform.row {
        padding: 80px 0 40px;
    }
    
    #mailform.row > .col .col-form-label {
        text-align: left;
    }
}