@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
/* font-family: 'Noto Serif JP', serif; */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* font-family: 'Noto Sans JP', sans-serif; */

body {
    font-family: "Noto Serif JP", serif;
    font-size: 15px;
    color: #d4cbc6;
    background: #001b2d;
}
@media (max-width: 1024px) {
  body {
    font-size: 14px;
}
}

.f-02{
  font-family: "Noto Sans JP", sans-serif;
}

/* 共通コンテンツ間隔 */
.area {
    padding-top: 80px;
    padding-bottom: 80px;
}
.area.new{
  padding-top: 120px;
    padding-bottom: 120px;
}
@media (max-width: 599px) {
    .area,
    .area.new{
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.pagettl {
    padding: 0.5em;
        font-weight: 300;
    font-size: 36px;
    color: #fff;
    line-height: 1;
    text-align: center;
    background: #221815;
        font-family: "Noto Sans JP", sans-serif;
}
/**
ヘッダー
header
*/
.header {
    padding: 10px 0 0;
}
.header .contents {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px;
}
.header .logo img {
    width: 230px;
}
.header .link-btn-area {
    height: 130px;
}
.header .link-btn {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.header .link-btn.fix {
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 8%;
    right: 10px;
    z-index: 10;
}
.header .link-btn.fix li {
    margin-bottom: 10px;
}
.header .link-btn a,
.header .link-btn .a {
        width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    font-size: 24px;
    color: #deb04e;
    text-align: center;
    border: solid 2px #deb04e;
    border-radius: 50%;
    background: #001b2d;
    cursor: pointer;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}
.header .link-btn .a:hover {
    opacity: 0.6;
}
.header .link-btn .tel a {
    width: 100%;
    height: auto;
    margin-right: 0;
    padding: 0;
    font-weight: bold;
    font-size: 30px;
    line-height: 1;
    border: none;
    border-radius: 10px;
    background: none;
}
.header .link-btn .tel a i {
    margin-right: 10px;
}
.header .link-btn.fix a,
.header .link-btn.fix .a {
    margin-right: 0;
}
.header .right .txt {
    margin-right: 10px;
    line-height: 120%;
}
.header .right .txtin {
    display: block;
}
.header .right .tel a,
.header .right .tel .a {
    font-weight: bold;
    font-size: 30px;
}
.header .right .tel a:before {
    content: "\f879";
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 24px;
}
.btn-toggle {
    position: relative;
}
.btn-toggle .activebox {
    width: 300px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    opacity: 0;
    transition: 0.5s;
    transform: translate(-50%, 0);
    position: absolute;
    top: 120%;
    left: 40%;
    z-index: 101;
}
.link-btn.fix .btn-toggle .activebox {
    transform: translate(-100%, -50%);
    top: 50%;
    left: -10%;
}
.btn-toggle .activebox .sub {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 20px;
    color: #221815;
    text-align: center;
}
.btn-toggle.active .activebox {
    visibility: visible;
    opacity: 1;
    cursor: auto;
}
.close-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 35px;
    letter-spacing: 0;
    border: 2px solid;
    border-radius: 5px;
    background: #deb04e;
    cursor: pointer;
    position: absolute;
    top: -16px;
    right: -16px;
}
@media (max-width: 1024px) {
    .header {
        padding: 5px 0;
    }
    .header .logo img {
        max-width: 100px;
    }
    .header .right {
        display: none;
    }
}
/*ホームビジュアル（トップ）*/
.homevisual {
    max-height: 830px;
    overflow: hidden;
    position: relative;
}
.homevisual::before {
    content: "";
    width: 100%;
    height: 30%;
    background: #001b2d;
    background: -moz-linear-gradient(180deg, rgba(0,27,45,0) 0%, rgba(0,27,45,1) 30%, rgba(0,27,45,1) 70%, rgba(0,27,45,0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,27,45,0) 0%, rgba(0,27,45,1) 30%, rgba(0,27,45,1) 70%, rgba(0,27,45,0) 100%);
    background: linear-gradient(180deg, rgba(0,27,45,0) 0%, rgba(0,27,45,1) 30%, rgba(0,27,45,1) 70%, rgba(0,27,45,0) 100%);
    position: absolute;
    top: -20%;
    left: 0;
    z-index: 1;
}
.homevisual::after {
    content: "";
    width: 100%;
    height: 30%;
    background: #001b2d;
    background: -moz-linear-gradient(180deg, rgba(0,27,45,0) 0%, rgba(0,27,45,1) 30%, rgba(0,27,45,1) 70%, rgba(0,27,45,0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,27,45,0) 0%, rgba(0,27,45,1) 30%, rgba(0,27,45,1) 70%, rgba(0,27,45,0) 100%);
    background: linear-gradient(180deg, rgba(0,27,45,0) 0%, rgba(0,27,45,1) 30%, rgba(0,27,45,1) 70%, rgba(0,27,45,0) 100%);
    position: absolute;
    bottom: -20%;
    left: 0;
    z-index: 1;
}
.homevisual .img {
    min-height: 300px;
    position: relative;
}
.homevisual .img:before {
    content: "";
    display: block;
    padding-top: 65%;
    position: relative;
    z-index: -1;
}
.homevisual .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;

/*IE対策*/
    font-family: "object-fit: cover; object-position: 50% 50%;";
    position: absolute;
    top: 0;
    left: 0;
}
/*IE対策*/
.homevisual .head {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}
.homevisual .head .ttl {
    margin-bottom: 50px;
    font-weight: 500;
    font-size: 46px;
    color: #221815;
    line-height: 1.8;
}
.homevisual .head .btn01 a {
        width: 180px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1em 0.5em;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 28px;
    border: solid 3px #00a0e9;
    border-radius: 10px;
    background: #004ea2;
    color: #fff;
}
.homevisual .head .btn01 a .sb {
    font-size: 90%;
    color: #00a0e9;
}
.homevisual .head .btn02 a {
        width: 180px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1em 0.5em;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
    color: #ddae4f;
    border: solid 3px #ddae4f;
    border-radius: 10px;
    background: #001c2e;
}
@media (max-width: 599px) {
    .homevisual .head .ttl {
        font-size: 28px;
    }
}

.gnav {
    padding: 10px 0;
    position: relative;
    z-index: 100;
}
.gnav.fixed {
    width: 100%;
    height: auto;
    background: #001b2d;
    box-shadow: 0 0 5px 0 #999;
    cursor: pointer;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
}
.gnav .wrap {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}
.gnav .navlogo {
    display: none;
}
.gnav .navlogo img {
    max-height: 40px;
}
.gnav .list01 {
    width: 100%;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gnav .item01 {
    font-size: 16px;
    text-align: center;
}
.gnav .item01>a,
.gnav .item01 .itemin {
    display: block;
    padding: 5px;
    cursor: pointer;
}
.gnav .item01.-parent {
    position: relative;
}
.gnav .item01.-parent:hover .list02 {
    visibility: visible;
    opacity: 1;
}
.gnav .list02 {
    width: 200px;
    visibility: hidden;
    padding-top: 10px;
    background: rgba(255,255,255,0.8) content-box;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: 100%;
    left: 50%;
}
.gnav .item02 a {
    display: block;
    padding: 5px;
}
@media (max-width: 1024px) {
    .gnav {
        width: 100%;
        max-width: 300px;
        height: 100%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        padding: 50px 10px;
        background: rgba(0,27,45,0.9);
        -webkit-transition: -webkit-transform ease 0.5s;
        transition: -webkit-transform ease 0.5s;
        transition: transform ease 0.5s;
        transition: transform ease 0.5s, -webkit-transform ease 0.5s;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        position: fixed;
        top: 0;
        right: 0;
    }
    .gnav.action {
        -webkit-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
        z-index: 250;
    }
    .gnav .wrap {
        padding-bottom: 100px;
    }
    .gnav .navlogo {
        width: 100%;
        display: block;
        margin-bottom: 20px;
        padding-right: 40px;
        font-weight: bold;
        font-size: 20px;
    }
    .gnav .item01 {
        width: 100%;
        min-height: 40px;
        margin: 0 0 10px 0;
        text-align: left;
    }
    .gnav .list02 {
        visibility: visible;
        padding-top: 0;
        padding-left: 20px;
        background: none;
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        position: relative;
        top: 0;
        left: 0;
    }
    .gnav .list02 a {
        padding: 2px 0 2px 20px;
        position: relative;
    }
    .gnav .list02 a:before {
        content: "";
        width: 10px;
        height: 1px;
        display: block;
        background: #000;
        position: absolute;
        top: 13px;
        left: 0;
    }
}
[data-element-id] .gnav.fixed {
    position: relative;
}
/* ハンバーガーメニュー  */
.toggle {
    width: 42px;
    height: 42px;
    display: none;
    background: #ddae4f;
    opacity: 0.8;
    cursor: pointer;
    position: fixed !important;
    top: 0px;
    right: 0px;
    z-index: 251;
}
.toggle .bar {
    width: 28px;
    height: 2px;
    display: block;
    margin-top: -1px;
    padding: 0;
    text-indent: 9999px;
    background: #001c2e;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    position: absolute;
    top: 50%;
    left: 7px;
}
.toggle .bar:before,
.toggle .bar:after {
    content: "";
    width: 28px;
    height: 2px;
    display: block;
    background: #001c2e;
    position: absolute;
    left: 0;
}
.toggle .bar:before {
    top: -10px;
}
.toggle .bar:after {
    top: 10px;
}
.toggle.active .bar {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.toggle.active .bar:after,
.toggle.active .bar:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
    left: 0;
}
@media (max-width: 1024px) {
    .toggle {
        display: block !important;
    }
}
.overlay {
    overflow: hidden;
}
.overlay:after {
    content: "";
    width: 100%;
    height: 100vh;
    background: #000;
    opacity: 0.3;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 249;
}

.m-ttl {
    margin-bottom: 50px;
    font-size: 64px;
    line-height: 1;
    color: #d4cbc6;
}

.sec-01{
  padding-bottom: 180px;
}

.sec-01 .box {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.sec-01 .box .m-ttl {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 30px;
}
.sec-01 .card li .item {
    padding: 30px 15px;
    text-align: center;
    background: #552e31;
}
.sec-01 .card li:nth-of-type(2) .item {
    background: #1f2a66;
}
.sec-01 .card li:nth-of-type(3) .item {
    background: #133c36;
}
.sec-01 .card .s-name {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 34px;
    font-weight: 600;
    color: #d4cbc6;
}
.sec-01 .card .img {
    margin-bottom: 10px;
}
.sec-01 .card .btn-sd {
    color: #deb04e;
}
.sec-01 .text-box {
    width: 105%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sec-01 .text-box .ttl {
    width: 30%;
    margin-top: -10%;
    text-align: center;
    position: relative;
    z-index: 1;
}
.sec-01 .text-box .tex{
  position: relative;
    z-index: 1;
    width: 68%;
}
.sec-01 .text-box .ttl .m-ttl {
    font-size: 54px;
}
.sec-01 .text-box .ttl::after {
    content: "";
       width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #221815;
    transform: translate(-50%,-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}
.sec-01 .text-box .text {
    width: 73%;
}
.sec-01 .num-area {
    position: relative;
}
.sec-01 .num-area li {
    position: absolute;
    top: -55px;
    left: 0;
    z-index: 1;
}
.sec-01 .num-area li:nth-of-type(2) {
    top: 50px;
    left: 27%;
}
.sec-01 .num-area li:nth-of-type(3) {
    top: 15px;
    left: 55%;
}
.sec-01 .num-area li:nth-of-type(4) {
    top: 190px;
    left: 78%;
}

.sec-01 .num-area .num-box {
    width: 320px;
    height: 320px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 30px;
    border-radius: 50%;
    background: #3e3a39;
    position: relative;
}

.sec-01 .num-area .num-box .ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 1;
    color: #d4cbc6;
    margin-bottom: 20px;
}

.sec-01 .num-area .num-box .num {
    font-size: 120px;
    color: #221815;
    line-height: 1;
    transform: translateX(-50%);
    position: absolute;
    top: 5%;
    left: 50%;
    z-index: 0;
}

.sec-01 .num-area .num-box .text {
    line-height: 2;
    text-align: center;
    z-index: 1;
    font-size: 16px;
}

.sec-02 {
    padding-top: 200px;
    color: #221815;
    background: #eae5e3;
}

.sec-02 .m-ttl{
  color: #001b2d;
}

.sec-02 .num {
    margin-bottom: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 34px;
}

.sec-02 .num .ruby-bottom {
    display: block;
    font-size: smaller;
    font-size: 50%;
    line-height: 1;
    text-align: center;
    position: relative;
    top: 15px;
}
.sec-02 .num ruby{
  line-height: 0;
}

.clip-area {
    margin-left: 5px;
}

.clip-area .ttl {
   width: 102%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    margin-left: -5px;
    padding: 8px 0px;
    font-weight: bold;
    letter-spacing: -1px;
    font-size: 20px;
    font-weight: 400;
    background: #81292d;

    -webkit-clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

.clip-area .ttl span{
  font-size: 65%;
}

.clip-area li:last-child .ttl {
    clip-path: none;
}

.sec-04 {
    background: #221815;
}

.sec-04 .clip-area .ttl {
    color: #221815;
    background: #deae4e;
}

.sec-05 {
    background: #eae5e3;
}

.sec-05 .course-area {
    margin: 40px 0 20px;
}

.sec-05 .m-ttl {
    color: #221815;
    text-align: center;
}
.sec-05 .sb-ttl {
    margin-bottom: 36px;
    padding: 0.5em;
    padding-left: 0;
    font-size: 28px;
    color: #deb04e;
    background: rgb(30,18,16);
    background: -moz-linear-gradient(90deg, rgba(30,18,16,1) 0%, rgba(30,18,16,0.7819502801120448) 60%, rgba(30,18,16,0.21612394957983194) 80%, rgba(30,18,16,0.022846638655462215) 100%);
    background: -webkit-linear-gradient(90deg, rgba(30,18,16,1) 0%, rgba(30,18,16,0.7819502801120448) 60%, rgba(30,18,16,0.21612394957983194) 80%, rgba(30,18,16,0.022846638655462215) 100%);
    background: linear-gradient(90deg, rgba(30,18,16,1) 0%, rgba(30,18,16,0.7819502801120448) 60%, rgba(30,18,16,0.21612394957983194) 80%, rgba(30,18,16,0.022846638655462215) 100%);
    position: relative;
    z-index: 1;
}
.sec-05 .sb-ttl::after {
    content: "";
    width: 100vw;
    height: 100%;
    margin-left: calc(100% - 100vw);
    background: rgb(30,18,16);
    position: absolute;
    top: 0;
    left: -100%;
    z-index: -1;
}

.sec-05 li .card {
    height: 100%;
    max-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1em;
    text-align: center;
    background: #552e31;
}

.sec-05 li .card.item02 {
    background: #1f2a66;
}

.sec-05 li .card.item03 {
    background: #133c36;
}

.sec-05 li .card.item04 {
    background: #3e3a39;
}

.sec-05 li .card .ttl {
    font-size: 32px;
}

.sec-06 .img {
    overflow: hidden;
    border-radius: 15px;
}

.sec-06 .name {
    font-size: 22px;
}

.sec-06 .name .en {
    font-size: 50%;
}

@media (max-width: 1024px) {
    .gnav .navlogo img {
        max-height: 70px;
    }
    .header .contents {
        margin-bottom: 0;
    }
    .header .link-btn-area {
        width: 100%;
        height: auto;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 100;
    }
    .header .link-btn {
        width: 100%;
        flex-wrap: nowrap;
    }
    .header .link-btn li {
        width: 100%;
    }
    .homevisual .head .ttl {
        font-size: 24px;
    }
    .header .link-btn a,
    .header .link-btn .a {
        width: 100%;
        height: 100%;
        margin-right: 0;
        padding: 0.5em;
        font-size: 16px;
        border-radius: 0px;
    }
    .header .link-btn .a {
        border-left: none;
        border-right: none;
    }
    .btn-toggle .activebox {
        padding: 10px;
        top: -100px;
        left: 50%;
    }
    .header .link-btn .tb-item i {
        font-size: 20px;
    }
    .pagettl{
      font-size: 24px;
    }
    .homevisual .head .btn02 a{
      font-size: 24px;
    }
    .homevisual .head .btn01 a{
      font-size: 22px;
    }
      
    .sec-01 .text-box .tex{
      width: 100%
    }
    .sec-01 .text-box .ttl::after{
      width: 380px;
        height: 380px;
    }
    .sec-01 .card .s-name {
        font-size: 20px;
    }
    .sec-01 .text-box {
        width: 100%;
        flex-wrap: wrap;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .sec-01 .text-box .ttl {
        width: 100%;
        margin-top: 0;
        margin-bottom: 30px;
    }
    .sec-01 .num-area .num-box .num{
          font-size: 100px;
    }
    .sec-01 .num-area ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .sec-01 .num-area li,
    .sec-01 .num-area li:nth-of-type(2),
    .sec-01 .num-area li:nth-of-type(3),
    .sec-01 .num-area li:nth-of-type(4) {
        margin: 1%;
        position: relative;
        top: initial;
        left: initial;
    }
    .sec-02 {
        padding-top: 80px;
    }
    .m-ttl,
    .sec-01 .text-box .ttl .m-ttl {
        font-size: 38px;
    }
    .sec-05 .sb-ttl {
        font-size: 24px;
    }
    .sec-05 li .card .ttl {
        font-size: 24px;
    }
    .clip-area .ttl {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 599px) {
  .homevisual .head .btn01 a,
  .homevisual .head .btn02 a{
        width: 150px;
            font-size: 18px;
            padding: 0.5em;
  }
.sec-01 .text-box .ttl::after{
  width: 340px;
    height: 340px;
}
    .homevisual .img:before {
        padding-top: 130%;
    }
    .homevisual .img {
        min-height: auto;
    }
    .homevisual .head .ttl {
        font-size: 18px;
    }
    .homevisual .head {
        top: 60%;
    }
    .pagettl {
        font-size: 16px;
    }
    .sec-01 {
      padding-bottom: 50px;
    }
    .m-ttl,
    .sec-01 .text-box .ttl .m-ttl {
        font-size: 34px;
    }
    .sec-01 .box{
      flex-wrap: wrap;
    }
    .sec-01 .box .m-ttl {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 30px;
    }
    .sec-01 .card .btn-sd {
        margin-top: 30px;
    }
    .sec-01 .text-box {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .sec-01 .num-area li {
        width: 48%;
    }
    .sec-01 .num-area .num-box {
        width: 100%;
        height: 100%;
        padding: 30px 15px;
        border-radius: 10px;
    }
    .sec-01 .num-area .num-box .text {
        text-align: left;
    }
    .sec-01 .num-area ul {
        align-items: flex-start;
    }
    .sec-01 .num-area .num-box .ttl {
        margin-bottom: 30px;
        font-size: 20px;
    }
    .sec-01 .num-area .num-box .text{
      font-size: 14px;
    }
    .sec-01 .num-area .num-box .num {
        top: 1%;
    }
    .clip-area .ttl{
      font-size: 16px;
      height: 58px;
    }
    .sec-04 .clip-area .ttl{
          flex-wrap: wrap;
              height: 58px;
              font-size: 16px;
    }
    .sec-05 .sb-ttl {
        font-size: 20px;
    }
    .sec-05 li .card .ttl {
        margin-bottom: 10px;
    }
    .sec-05 li .card {
        max-height: initial;
    }
    .sec-05 .sb-ttl{
       background: -moz-linear-gradient(90deg, rgba(30,18,16,1) 0%, rgba(30,18,16,78%) 90%, rgba(30,18,16,50%) 95%, rgba(30,18,16,0.022846638655462215) 100%);
    background: -webkit-linear-gradient(90deg, rgba(30,18,16,1) 0%, rgba(30,18,16,78%) 90%, rgba(30,18,16,50%) 95%, rgba(30,18,16,0.022846638655462215) 100%);
      background: linear-gradient(90deg, rgba(30,18,16,1) 0%, rgba(30,18,16,78%) 90%, rgba(30,18,16,50%) 95%, rgba(30,18,16,0.022846638655462215) 100%);
    }
    .sec-06 {
        padding-bottom: 100px;
    }
}

[data-element-id] .sec-01 .num-area .num-box .num{
  position: absolute!important;
}
[data-element-id] .header .link-btn-area{
  margin-bottom: 220px;
}
[data-element-id] .btn-toggle .activebox{
      visibility: visible;
    opacity: 1;
    cursor: auto;
        top: 110%;
}
[data-element-id] .up-d-none {
  display: block;
  border: solid 2px #008000;
  position: relative;
  width: 100%;
}
[data-element-id] .up-d-none:after {
  display: block;
  content: "PC用";
  color: #fff;
  font-weight: 700;
  background: #008000;
  text-align: center;
  font-size: 12px;
}
[data-element-id] .header .link-btn a,
[data-element-id] .header .link-btn .a{
      flex-wrap: wrap;   
      width: 150px;
    height: 150px;
}
[data-element-id] .header .link-btn .tel a {
    width: 100%;
    height: auto;
}
[data-element-id] .sec-02 .num .ruby-bottom{
  top: 0;
}
[data-element-id] .sec-02 .num ruby {
    line-height: 1;
}
[data-element-id] .fead-order>* {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

/* 2024/08/29 */
.blog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blog-list li {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.blog-list a {
    display: block;
    padding-bottom: 20px;
}

.blog-list .blog-date {
    margin-bottom: 10px;
    display: inline-block;
}

.blog-list .new, .diary-list .new {
    display: inline-block;
    color: red;
    margin-left: 7px;
    font-weight: bold;
    display: none;
    font-family: 'Noto Serif', serif;
}

[data-element-id].blog-list>div{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.arrowarrr{
  list-style-type: none;
}

.footer-con01 {
  color: #000;
}
}
