@charset "UTF-8";

/* fead系 */
.fead-order>* {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}

.fead-order>.mv {
    opacity: 1;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* radius */
.br100 {
    overflow: hidden;
    border-radius: 100%;
}

.br1em {
    overflow: hidden;
    border-radius: 1em;
}

.br5px {
    overflow: hidden;
    border-radius: 5px;
}

.p1em {
    padding: 1em;
}

.p15em {
    padding: 1.5em;
}

/* box */
.gray-box {
    height: 100%;
    padding: 50px;
    background-color: #e7e7e7;
}

/*  sectionの余白(padding)  */
.section__larger {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section__large {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section__medium {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section__small {
    padding-top: 30px;
    padding-bottom: 30px;
}

[class*="section__"].__top {
    padding-bottom: 0;
}

[class*="section__"].__bottom {
    padding-top: 0;
}

/*  sectionの余白(margin)  */
.section__larger_m {
    margin-top: 100px;
    margin-bottom: 100px;
}

.section__large_m {
    margin-top: 80px;
    margin-bottom: 80px;
}

.section__medium_m {
    margin-top: 60px;
    margin-bottom: 60px;
}

.section__small_m {
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .section__larger {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .section__large {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section__medium {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .section__small {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .section__larger_m {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .section__large_m {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .section__medium_m {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .section__small_m {
        margin-top: 18px;
        margin-bottom: 18px;
    }
}

/* ##### A-BiSUスライダー uk-slideshow ##### */
/* .uk-slidenav-position {
    height: 100%;
} */

.uk-slideshow {
/*     height: 100% !important; */
    overflow: hidden;
    position: relative;
}

.uk-slideshow::after {
    content: "";
    display: block;
    padding-top: 210vh;
}

.uk-slideshow li {
    width: 100%;
/*     height: 100% !important; */
    position: absolute;
    top: 0;
}

.uk-slideshow li>div {
    height: 100% !important;
}

.uk-slideshow img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    font-family: "object-fit: cover; object-position: center center;";
}

.uk-dotnav>*>* {
    width: 10px;
    height: 10px;
}

.uk-dotnav .uk-active>* {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.uk-dotnav li a:hover {
    opacity: 1;
}

.uk-dotnav-contrast>*>* {
    background: #ccc;
}

.uk-dotnav-contrast>.uk-active>* {
    background: #565656;
}

.uk-position-bottom {
    bottom: -30px;
}

/* ハンバーガーメニューと overlay */
/* .hamburger {
    display: none;
}

@media (max-width: 1024px) {
    .overlay {
        width: 100%;
        height: 100%;
        display: none;
        background-color: rgba(0, 0, 0, 0.3);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 4;
    }

    .hamburger {
        width: 60px;
        height: 60px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 10px;
        cursor: pointer;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
        position: absolute;
        top: 10px;
        left: -70px;
        z-index: 5;
    }

    .hamburger a,
    .hamburger:hover,
    .hamburger:focus {
        opacity: 1;
    }

    .menu-trigger {
        width: 100%;
        height: 100%;
        display: inline-block;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
        position: relative;
    }

    .menu-trigger span {
        width: 100%;
        height: 3px;
        display: inline-block;
        background-color: #fff;
        -webkit-box-shadow: 0 0 2px 0 black;
        box-shadow: 0 0 2px 0 black;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
        position: absolute;
        left: 0;
    }

    .menu-trigger span:nth-of-type(1) {
        top: 0;
    }

    .menu-trigger span:nth-of-type(2) {
        -webkit-transform: translate(0, -100%);
        transform: translate(0, -100%);
        top: 50%;
    }

    .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }

    .hamburger .text {
        font-size: 10px;
        color: #d0cec2;
        letter-spacing: 0.1em;
        text-align: center;
    }

    .hamburger .close {
        display: none;
    }

    .active .hamburger .close {
        display: block;
    }

    .active .hamburger .open {
        display: none;
    }

    .active .menu-trigger {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    .active .menu-trigger span {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .active .menu-trigger span:nth-of-type(1) {
        -webkit-transform: translate(0, 24px) rotate(-45deg);
        transform: translate(0, 24px) rotate(-45deg);
    }

    .active .menu-trigger span:nth-of-type(2) {
        -webkit-transform: translate(0, -100%) rotate(45deg);
        transform: translate(0, -100%) rotate(45deg);
    }

    .active .menu-trigger span:nth-of-type(3) {
        opacity: 0;
    }

    .active .overlay {
        display: block;
    }
}

@media (max-width: 599px) {
    .hamburger {
        width: 40px;
        height: 40px;
        padding: 0;
        top: 10px;
        left: -45px;
    }

    .active .hamburger {
        padding: 0;
    }

    .active .menu-trigger span:nth-of-type(1) {
        -webkit-transform: translate(0, 16px) rotate(-45deg);
        transform: translate(0, 16px) rotate(-45deg);
    }
} */

/* 背景に画像 */
.bg-parent {
    position: relative;
}

.bg-content {
    position: relative;
    z-index: 1;
}

.bg-content.orange {
    background-color: rgb(254 132 34 / 64%);
}

.bg-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.bg-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

.bg-parent.opa .bg-image img {
    opacity: 0.5;
}

[data-element-id] .bg-parent{
  padding: 100px;
}

[data-element-id] .bg-content{
  width: fit-content;
  margin: auto;
  padding: 0;
}

/* flexでコンテンツを上下左右中央揃え */
.centering {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* float */
.up-f-left {
    float: left;
}

.up-f-right {
    float: right;
}

/*  column-count  */
[class*="column-"]>* {
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}

.column-none {
    -webkit-column-count: auto;
    -moz-column-count: auto;
    column-count: auto;
}

.column-gap-5 {
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

.column-gap-10 {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.column-gap-15 {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

.column-gap-20 {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.column-gap-25 {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
}

.column-gap-30 {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.column-gap-35 {
    -webkit-column-gap: 35px;
    -moz-column-gap: 35px;
    column-gap: 35px;
}

.column-gap-40 {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
}

.column-gap-45 {
    -webkit-column-gap: 45px;
    -moz-column-gap: 45px;
    column-gap: 45px;
}

.column-gap-50 {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
}

@media (max-width: 1024px) {
    .column-none\@tb {
        -webkit-column-count: auto;
        -moz-column-count: auto;
        column-count: auto;
    }

    .column-gap-5\@tb {
        -webkit-column-gap: 5px;
        -moz-column-gap: 5px;
        column-gap: 5px;
    }

    .column-gap-10\@tb {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }

    .column-gap-15\@tb {
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }

    .column-gap-20\@tb {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .column-gap-25\@tb {
        -webkit-column-gap: 25px;
        -moz-column-gap: 25px;
        column-gap: 25px;
    }

    .column-gap-30\@tb {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }

    .column-gap-35\@tb {
        -webkit-column-gap: 35px;
        -moz-column-gap: 35px;
        column-gap: 35px;
    }

    .column-gap-40\@tb {
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
    }

    .column-gap-45\@tb {
        -webkit-column-gap: 45px;
        -moz-column-gap: 45px;
        column-gap: 45px;
    }

    .column-gap-50\@tb {
        -webkit-column-gap: 50px;
        -moz-column-gap: 50px;
        column-gap: 50px;
    }
}

@media (max-width: 599px) {
    .column-none\@sp {
        -webkit-column-count: auto;
        -moz-column-count: auto;
        column-count: auto;
    }

    .column-gap-5\@sp {
        -webkit-column-gap: 5px;
        -moz-column-gap: 5px;
        column-gap: 5px;
    }

    .column-gap-10\@sp {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }

    .column-gap-15\@sp {
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }

    .column-gap-20\@sp {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .column-gap-25\@sp {
        -webkit-column-gap: 25px;
        -moz-column-gap: 25px;
        column-gap: 25px;
    }

    .column-gap-30\@sp {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }

    .column-gap-35\@sp {
        -webkit-column-gap: 35px;
        -moz-column-gap: 35px;
        column-gap: 35px;
    }

    .column-gap-40\@sp {
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
    }

    .column-gap-45\@sp {
        -webkit-column-gap: 45px;
        -moz-column-gap: 45px;
        column-gap: 45px;
    }

    .column-gap-50\@sp {
        -webkit-column-gap: 50px;
        -moz-column-gap: 50px;
        column-gap: 50px;
    }
}

/* fontawesome6 */
.fontawesome6 a::before {
    content: "\f0f1";
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* border-radius */
.radius1em {
    border-radius: 1em;
}

.radius5 {
    border-radius: 5px;
}

.radius10 {
    border-radius: 10px;
}

.radius15 {
    border-radius: 15px;
}

.radius20 {
    border-radius: 20px;
}

.radius25 {
    border-radius: 25px;
}

.radius30 {
    border-radius: 30px;
}

.of-hidden {
    overflow: hidden;
}

/* letter-spacing */
.up-ls-1 {
    letter-spacing: 1px;
}

.up-ls-2 {
    letter-spacing: 2px;
}

.up-ls-3 {
    letter-spacing: 3px;
}

.up-ls-4 {
    letter-spacing: 4px;
}

.up-ls-5 {
    letter-spacing: 5px;
}

/* ----------下層共通---------- */

/* ##### パンくずリスト breadcrumbs ##### */
.breadcrumbs {
    padding-top: 1em;
}

.breadcrumbs-list li {
    display: inline;
    flex-shrink: 0;
}

.breadcrumbs-list li.breadcrumbs-thispage {
    flex-shrink: 1;
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage,
.breadcrumbs-list li.breadcrumbs-thispage {
    font-size: 14px;
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage {
    font-weight: bold;
}


.breadcrumbs-list li.breadcrumbs-thispage::before {
    content: "";
    width: 0.8em;
    height: 0.8em;
    display: inline-block;
    margin: 0 1em 0 0.5em;
    border-top: 2px solid #473d2f;
    border-right: 2px solid #473d2f;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.breadcrumbs-list li.breadcrumbs-prevpage a::before {
    content: "";
    width: 0.8em;
    height: 0.8em;
    display: inline-block;
    margin: 0 1em 0 0.5em;
    border-top: 2px solid #473d2f;
    border-right: 2px solid #473d2f;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* 動的リンク */
.aside-container .wrap {
    height: 100%;
}

.aside-container .wrap .title {
    padding: 1em;
}

.aside-container .wrap li a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 1em;
    line-height: 1.6;
    border-bottom: 1px solid #e7e7e7;
}

/* ページネーション */
.pagenation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.pagenation li {
    width: 50px;
    height: 50px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 10px;
}

.pagenation li a,
.pagenation li .now {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    text-align: center;
    border-radius: 10px;
}

.pagenation li.prev a::before,
.pagenation li.next a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #000;
}

.pagenation li.prev a::before {
    content: "\f104";
}

@media (max-width: 599px) {
    .pagenation li {
        width: 40px;
        height: 40px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-right: 5px;
    }
}

/* お問い合わせフォーム */
.must {
    margin-left: 10px;
    padding: 3px 10px;
    font-size: 12px;
    color: #fff;
    line-height: 1;
    text-align: center;
    background-color: #007a00;
}

.contact-item {
    padding: 20px 0;
}

.contact-item dd input,
.contact-item dd textarea {
    width: 100%;
    padding: 10px;
}

.contact-item dd textarea {
    height: 150px;
}

.contact-item .radiobtn {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}

.contact-item .radiobtn input {
    width: initial;
}

/* fead-text02 */
.fead-text02 {
    display: block;
    overflow: hidden;
    opacity: 0;
}

[data-element-id].fead-text02 {
    opacity: 1;
}

.fead-text02.mv {
    opacity: 1;
    -webkit-transition: 0s;
    transition: 0s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.fead-text02 .str {
    min-width: 5px;
    display: inline-block;
    opacity: 0;
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
}

.fead-text02 .str.textin {
    opacity: 1;
    -webkit-transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

/* 改行 */
.reader1 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.reader2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;

    -webkit-line-clamp: 2;
}

.skew-bg {
    position: relative;
    z-index: 0;
}

.skew-bg::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #f7f7f6;
    -webkit-transform: skew(0deg, -5deg);
    transform: skew(0deg, -5deg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* 会社概要などのテーブルで使用 */
.list-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list-table dt {
    width: 25%;
    display: block;
    padding: 1em;
    color: #000;
    border: 1px solid #eaecec;
}

.list-table dd {
    width: 10%;
    display: block;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 1em;
    color: #000;
    border: 1px solid #eaecec;
}

table {
    width: 100%;
    border: none;
    border-collapse: collapse;
}

td,
th {
    border: none;
}

td,
th {
    border: none;
}

td,
th {
    border-top: 1px solid #fff;
}

td:first-child,
th:first-child {
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}

td:first-child,
th:first-child {
    border-left: none;
}

tr:first-child td,
tr:first-child th {
    border-top: none;
}

.list-table-wrap.another .list-table dt,
.list-table-wrap.another .list-table dd {
    border: 1px solid;
}

.pattern02 tr:first-child td,
.pattern02 tr:first-child th {
    border-top: 1px solid #fff;
}

.pattern02 tr:last-child td {
    border-bottom: 1px solid #fff;
}

.pattern02 tr th:first-child,
.pattern02 tr td:first-child {
    text-align: left;
}

@media (max-width: 599px) {
    .list-table dt {
        width: 35%;
    }
}

/* お問い合わせフォーム */
.contact-form {
    padding: 0 8%;
}

.contact-form input[type="text"],
.contact-form textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid #bfbfbf;
    border-radius: 5px;
}

.contact-form .yubnbangou input {
    width: 50%;
}

.contact-form .content input {
    min-height: 300px;
}

.contact-form textarea {
    height: 200px;
}

.contact-form dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: wrap;
    flex-direction: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2% 0;
}

.contact-form dt {
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: bold;
}

.contact-form dt .require-icon {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    margin-top: 5px;
    margin-left: 0.5em;
    padding: 1px 10px;
    font-size: 10px;
    color: #ccc;
    line-height: 1.6;
    border: 2px solid #ccc;
}

.contact-form dd {
    width: 70%;
}

.contact-form select {
    width: 100%;
    padding: 20px;
    border: 1px solid #bfbfbf;
    border-radius: 5px;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form .select-wrap {
    position: relative;
}

.contact-form .select-wrap:after {
    content: "▼";
    font-size: 10px;
    color: #bfbfbf;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    right: 10px;
}

.confirm .contact-form .select-wrap:after {
    content: none;
}

.contact-form .yubinbangou {
    width: 50%;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .contact-form {
        padding: 0;
    }

    .contact-form dt {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .contact-form dt .require-icon {
        display: block;
        margin-left: 0;
    }
}

@media (max-width: 599px) {
    .contact-form dl {
        display: block;
    }

    .contact-form dt {
        width: 100%;
        -webkit-box-orient: initial;
        -webkit-box-direction: initial;
        -ms-flex-direction: initial;
        flex-direction: initial;
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
        margin-bottom: 0.5em;
        padding-left: 0;
        padding-right: 0;
    }

    .contact-form dd {
        width: 100%;
    }

    .contact-form input[type="text"],
    .contact-form textarea {
        padding: 10px;
        border-radius: 3px;
    }

    .contact-form select {
        padding: 10px;
        border-radius: 3px;
    }
}

/* 「ブログ詳細ぺージ」見出し用CSS */
.detail-content h2 {
    margin: 1.5em 0 1em;
    padding: 0.2em 0.5em;
    font-weight: bold;
    font-size: clamp(1.375rem, 1.15rem + 0.97vw, 1.875rem);
    border-bottom: 2px solid #8090ae;
}

.detail-content h3 {
    margin: 1.5em 0 1em;
    padding-left: 0.5em;
    font-size: clamp(1.25rem, 1.02rem + 0.97vw, 1.75rem);
    border-left: 10px solid #8090ae;
}

.detail-content h4 {
    margin: 1.5em 0 1em;
    padding: 0.2em;
    font-weight: bold;
    font-size: clamp(1.125rem, 0.9rem + 0.97vw, 1.625rem);
    border-bottom: 2px dotted #8090ae;
}

.detail-content ol {
    list-style: auto;
    list-style-position: outside;
    margin: 1em 0;
    padding-left: 2em;
}

.detail-content ul {
    list-style: inherit;
    list-style-position: outside;
    margin: 1em 0;
    padding-left: 2em;
}

.list-case-info dt {
    width: 30%;
}

.detail-content iframe[src*="youtube"] {
    aspect-ratio: 16 / 9;
}

/* ポルタの語源（桜のようなデザイン） */
.porta-img-container-wrap {
    width: 48%;
}

.porta-img-container {
    width: 600px;
    height: 600px;
    margin: 0 auto;
    color: #fff;
    position: relative;
    z-index: 1;
}

.porta-img-container .square {
    width: 45%;
    position: relative;
    z-index: 2;
}

.porta-img-container .square::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.porta-img-container .square .square-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
    background-color: red;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.porta-img-container .square .square-inner .text {
    font-size: 30px;
    color: #fff;
}

.porta-img-container .item-p {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
}

.porta-img-container .item-o {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 0;
}

.porta-img-container .item-r {
    position: absolute;
    bottom: 0;
    right: 13%;
}

.porta-img-container .item-t {
    position: absolute;
    bottom: 0;
    left: 13%;
}

.porta-img-container .item-a {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
}

.porta-text-container {
    width: 48%;
}

@media (max-width: 599px) {
    .porta-img-container {
        width: 360px;
        height: 360px;
        position: relative;
        z-index: 1;
    }

    .porta-img-container .inner-circle::before {
        font-size: 1em;
    }
}

/* faq */
