@charset "UTF-8";

/*--------------------------------------------------
**************************************************
共通
**************************************************
--------------------------------------------------*/
.pc_only {
    display: none !important;
}

#wpadminbar {
    display: none;
}

html {
    margin-top: 0 !important;
    font-size: 14px;
}

body {
    background: #E8E5E0;
    color: #32463D;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    margin: 0;
}

img {
    width: 100%;
}


ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}

ol {
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}


h1 {
    margin-block-start: 0;
    margin-block-end: 0;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-block-start: 0;
    margin-block-end: 0;
}

h3 {
    margin-block-start: 0;
    margin-block-end: 0;
}

h4 {
    margin-block-start: 0;
    margin-block-end: 0;
}

a {
    text-decoration: none;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
}

input[type="text" i],
input[type="email" i],
input[type="tel" i],
input[type="number" i],
input[type="date" i],
input[type="time" i],
input[type="datetime-local" i],
input[type="month" i],
input[type="week" i],
input[type="url" i],
input[type="search" i],
input[type="color" i],
input[type="file" i],
input[type="range" i],
input[type="password" i],
input[type="hidden" i],
input[type="image" i],
input[type="submit" i],
input[type="reset" i],
input[type="button" i],
input[type="checkbox" i],
input[type="radio" i],
input[type="file" i],
input[type="range" i],
input[type="password" i],
input[type="hidden" i],
input[type="image" i],
input[type="submit" i],
input[type="reset" i],
input[type="button" i] {
    padding-block: 0;
    padding-inline: 0;
    border: unset;
}

.orange {
    color: #FF8A2B;
}

.black {
    color: #222222;
}

/*--------------------------------------------------
**************************************************
ヘッダー
**************************************************
--------------------------------------------------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10000;
    background-color: rgba(232, 229, 224, 0.9);
}

header .header_inner {
    display: flex;
    width: calc(100% - 20px);
    height: 50px;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

header .header_inner .sait-name {
    width: 100%;
}

header .header_inner .sait-name a {
    display: block;
    text-decoration: none;
    color: #32463D;
    transition: opacity 0.3s ease;
}

header .header_inner .sait-name a:hover {
    opacity: 0.7;
}

header .header_inner .sait-name .name {
	font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

header .header_inner .sait-name a .supervisor {
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 36px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #FF8A2B;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(2) {
    margin: 3px 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(30deg);
    background: #32463D;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-30deg);
    background: #32463D;
}

#mobileMenu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #E8E5E0;
    padding: 30px 0 0 0;
    box-sizing: border-box;
    z-index: 1000;
}

#mobileMenu.active {
    display: block;
}

#mobileMenu .name {
    font-size: 24px;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #32463D;
    padding: 0 30px;
    box-sizing: border-box;
}

#mobileMenu li {
    position: relative;
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #32463D;
    padding: 0 30px;
    box-sizing: border-box;
}

#mobileMenu li::before {
    position: absolute;
    content: "";
    top: 0;
    right: 20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #32463D;
    border-right: 0;
    transition: border-left-color 0.3s ease;
    margin: auto;
}

#mobileMenu li a {
    display: block;
    text-decoration: none;
    font-size: 14px;
    line-height: 50px;
    color: #32463D;
}

#mobileMenu li.icon-on a {
    display: flex;
    align-items: center;
}

#mobileMenu li.icon-on a .icon-wrap {
    display: flex;
    margin-right: 10px;
}

#mobileMenu::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    bottom: 0;
    background: #32463D;
}

#mobileMenu .nav-img {
    position: relative;
    display: flex;
    width: calc(100% - 55px);
    justify-content: flex-end;
    margin-top: 30px;
}

#mobileMenu .nav-img .img-wrap {
    width: 123px;
}

#mobileMenu .nav-img .img-wrap img {
    object-fit: unset;
}


.line-btn {
    width: 320px;
    height: 50px;
    margin: 0 auto;
}

.line-btn a {
    display: flex !important;
    width: 100%;
    height: 100%;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    color: #32463D;
    border: 1px solid #32463D;
    background: #ffffff;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 4px 0px rgb(34 34 34 / 50%);
    transition: opacity 0.3s ease;
    box-sizing: border-box;
}

.line-btn a:hover {
    opacity: 0.7;
}

.icon-wrap.white {
    display: none;
}

.line-btn .icon-wrap {
    width: 26px;
    height: 24.92px;
    margin-right: 10px;
}


/*--------------------------------------------------
**************************************************
フッター
**************************************************
--------------------------------------------------*/
footer {
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 50px 0;
}

.footer-wrap {
    display: block;
}

.footer-wrap a {
    display: block;
    text-decoration: none;
    color: #32463D;
}

.footer-wrap .sait-name {
    width: calc(100% - 40px);
    margin: 0 auto 20px auto;
}

.footer-wrap .sait-name .name {
    font-size: 24px;
}

.footer-wrap .sait-name .supervisor {
    font-size: 16px;
}

.footer-wrap .main-nav {
    display: block;
    border-top: 1px solid #32463D;
}

.footer-wrap .main-nav ul {}

.footer-wrap .main-nav .nav-top li {
    position: relative;
    height: 50px;
    padding-left: 20px;
    font-size: 14px;
    line-height: 50px;
    border-bottom: 1px solid #32463D;
}

.footer-wrap .main-nav .nav-top li::before {
    position: absolute;
    content: "";
    top: 0;
    right: 20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #32463D;
    border-right: 0;
    transition: border-left-color 0.3s ease;
    margin: auto;
}

.footer-wrap .main-nav .nav-bottom {
    display: flex;
    width: calc(100% - 55px);
    align-items: center;
    flex-wrap: wrap;
    margin: 30px auto 0 auto;
}

.footer-wrap .main-nav .nav-bottom li {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    font-size: 12px;
    line-height: 1.8;
    box-sizing: border-box;
    margin-right: 20px;
}

.footer-wrap .main-nav .nav-bottom li::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    top: 0;
    left: 0;
    bottom: 0;
    background: #32463D;
    margin: auto;
}

.copyright {
    font-size: 14px;
    margin-top: 30px;
    text-align: center;
}

/* パンくずリスト */
.breadcrumb {
    position: relative;
    padding: 5px 0;
    z-index: 5;
}

.breadcrumb-inner {
    padding: 0 15px;
}

.breadcrumb-nav {
    font-size: 12px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-list .breadcrumb-link {
    text-decoration: none;
    color: #32463D;
}

.breadcrumb-separator {
    display: flex;
    width: 8px;
    height: 8px;
    border-top: 1px solid #32463D;
    border-right: 1px solid #32463D;
    transform: rotate(45deg);
    align-items: center;
    margin: 0 6px;
}

/*--------------------------------------------------
**************************************************
バナー
**************************************************
--------------------------------------------------*/
.banner {
    position: relative;
}

.banner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 28px);
    bottom: 28px;
    background: #32463D;
}

.banner .banner-wrap {
    position: relative;
    padding: 50px 0 5px 0;
    box-sizing: border-box;
}

.banner .banner-wrap .title-wrap {
    width: calc(100% - 55px);
    margin: 0 auto;
}

.banner .banner-wrap .title-wrap .text {
    color: #ffffff;
}

.banner .banner-wrap .button-wrap {
    display: flex;
    margin-top: 50px;
    flex-direction: column;
    align-items: center;
}

.banner .banner-wrap .button-wrap .line-btn.mail {
    margin-top: 20px;
}

.banner .banner-wrap .img-wrap {
    position: relative;
    width: 238px;
    margin: 30px auto 0 auto;
}

/*--------------------------------------------------
**************************************************
共通
**************************************************
--------------------------------------------------*/
.category-wrap {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0px 10px;
    border-radius: 20px;
    background: #FF8A2B;
    font-size: 16px;
    color: #ffffff;
    box-sizing: border-box;
}

/* ページヘッダー */
.page-header {
    position: relative;
    background: #32463D;
    width: 100%;
    height: 200px;
    margin-top: 50px;
    box-sizing: border-box;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: #E8E5E0;
}

.page-header-inner {
    display: flex;
    width: calc(100% - 40px);
    height: 100%;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
}

.page-header-inner h1 {
    font-size: 24px;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-align: left;
}

.page-header-inner p {
    font-size: 20px;
    text-align: left;
    letter-spacing: 0.1em;
}

.page-header .page-header-img {
    position: absolute;
    display: flex;
    width: calc(100% - 40px);
    left: 0;
    right: 0;
    bottom: 9px;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 auto;
}

.page-header .page-header-img .page-img-wrap.left {
    width: 166px;
    height: 25px;
}

.page-header .page-header-img .page-img-wrap.right {
    width: 110px;
    height: 62.7px;
}

.complement {
    display: flex;
    width: 320px;
    height: 224px;
    background: #FF8A2B;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    font-size: 16px;
    color: #ffffff;
    padding: 0 20px;
    margin: 20px auto;
    box-sizing: border-box;
}

.prompt {
    display: flex;
    width: calc(100% - 55px);
    flex-direction: column;
    font-size: 20px;
    margin: 30px auto 0px auto;
}

.prompt .prompt-icon {
    max-width: 558px;
    width: 100%;
}

@media screen and (min-width: 400px) {
    .complement {
        width: calc(100% - 40px);
        height: auto;
        min-height: 120px;
        margin: 0 auto;
        padding: 20px 50px;
        box-sizing: border-box;
    }

    .prompt {
        width: calc(100% - 40px);
        max-width: 600px;
        margin: 30px auto 20px auto;
    }
}



/*--------------------------------------------------
**************************************************
ページネーション（統一スタイル）
**************************************************
--------------------------------------------------*/
.pagination {
    display: flex;
    margin-top: 30px;
}

.pagination__item {
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    margin-right: 20px;
}

.pagination .page-numbers {
    display: flex;
    width: 100%;
    height: 100%;
    line-height: 40px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #32463D;
    font-weight: 600;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #FF8A2B;
    color: #ffffff;
    border-color: #FF8A2B;
}

.arrow {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.arrow--prev {
    background-image: url('../imgs/ol-arrow.svg');
}

.arrow--next {
    background-image: url('../imgs/or-arrow.svg');
}

/* ホバー時の画像切り替え */
.pagination__item a:hover .arrow--prev {
    background-image: url('../imgs/wl-arrow.svg');
}

.pagination__item a:hover .arrow--next {
    background-image: url('../imgs/wr-arrow.svg');
}

.pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: #666;
    cursor: default;
}

.pagination .page-numbers.dots:hover {
    background: transparent;
    color: #666;
}

/* ページネーションが非表示の時のスペース問題を解決 */
.pagination:empty {
    display: none;
}

.pagination .page-numbers:empty {
    display: none;
}

/*--------------------------------------------------
**************************************************
スライドエリア
**************************************************
--------------------------------------------------*/

.feature {
    position: relative;
    margin-top: 50px;
}

.feature::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 452px;
    bottom: 0;
    background: #32463D;
}

.feature-inner {
    position: relative;
    margin: 0 auto;
}

.feature .title-wrap {
    width: calc(100% - 55px);
    margin: 0 auto 30px auto;
}

.title-wrap .text {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.feature-btn,
.pattern-btn,
.report-btn {
    display: flex;
    width: calc(100% - 20px);
    justify-content: center;
    margin: 0 auto;
}

.feature-btn a,
.pattern-btn a,
.report-btn a {
    position: relative;
    display: flex;
    width: 320px;
    height: 70px;
    font-size: 16px;
    color: #FF8A2B;
    text-decoration: none;
    border: 1px solid #FF8A2B;
    margin-bottom: 80px;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.feature-btn a::before,
.pattern-btn a::before,
.report-btn a::before {
    position: absolute;
    content: "";
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #FF8A2B;
    border-right: 0;
    transition: border-left-color 0.3s ease;
}

.feature-btn a:hover,
.pattern-btn a:hover,
.report-btn a:hover {
    background-color: #FF8A2B;
    color: #FFFFFF;
    border-color: #FF8A2B;
}

.feature-btn a:hover::before,
.pattern-btn a:hover::before,
.report-btn a:hover::before {
    border-left-color: #FFFFFF;
}


.feature-inner .btn-wrap {
    position: relative;
    margin-top: 60px;
}

.slide-area {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 400px;
    position: relative;
    display: block !important;
    visibility: visible !important;
    display: flex !important;
    justify-content: center !important;
}

.slide-area .feature-cont {
    width: 320px !important;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0 10px;
    display: block !important;
    visibility: visible !important;
}


.slick-slide {
    width: 320px !important;
    opacity: 1;
    transition: .3s ease;
    display: block !important;
    float: left;
    height: auto;
    margin: 0 10px;
}

.slick-center {
    opacity: 1;
    transform: scale(1.02);
    z-index: 2;
}

.slick-active {
    display: block !important;
    opacity: 1 !important;
}

.slick-track {
    display: flex !important;
    visibility: visible !important;
    align-items: center;
    justify-content: center;
}

.slick-list {
    display: block !important;
    visibility: visible !important;
    overflow: hidden;
    text-align: center;
}

.slide-area .feature-cont a.feature-cont-wrap {
    display: block;
    width: 100%;
    text-decoration: none;
}

.slide-area .feature-cont .img-wrap {
    min-height: 160px;
    height: 100%;
    border-radius: 20px;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.slide-area .feature-cont .category-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.slide-area .feature-cont a.feature-cont-wrap .date-wrap {
    font-size: 14px;
    color: #F5F5F5;
    text-align: right;
}

.slide-area .feature-cont .text-wrap {
    text-align: left;
}

.slide-area .feature-cont .text-wrap .text {
    font-size: 16px;
    color: #F5F5F5;
    margin-bottom: 10px;
}

.hashtag {
    font-size: 14px;
    color: #BEBEBE;
    margin-right: 10px;
}

.custom-slick-prev,
.custom-slick-next {
    position: absolute;
    top: -50px;
    background-color: transparent;
    border: 1px solid #FF8A2B;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 19px 20px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.custom-slick-prev {
    background-image: url('/wp-content/themes/so/imgs/arrow-left.svg');
    right: 60px;
}

.custom-slick-next {
    background-image: url('/wp-content/themes/so/imgs/arrow-right.svg');
    right: 10px;
}

.custom-slick-prev:hover,
.custom-slick-next:hover {
    background-color: #FF8A2B;
    border-color: #FF8A2B;
}

.custom-slick-prev:hover {
    background-image: url('/wp-content/themes/so/imgs/arrow-left-w.svg');
}

.custom-slick-next:hover {
    background-image: url('/wp-content/themes/so/imgs/arrow-right-w.svg');
}

ul.slick-dots {
    display: none !important;
}

/* スマホ時のスライドセンター配置 */
@media screen and (max-width: 768px) {
    .slide-area {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .slick-list {
        text-align: center !important;
        width: 100% !important;
        padding: 0 20px !important;
    }

    .slick-track {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    .slick-slide {
        width: 320px !important;
        margin: 0 15px !important;
        text-align: center !important;
    }

    .slide-area .feature-cont {
        margin: 0 15px !important;
    }
}

/* 375px以下の画面幅でのスライド画像サイズ調整 */
@media screen and (max-width: 375px) {
    .slide-area {
        padding: 20px 0 !important;
    }

    .slick-list {
        padding: 0 15px !important;
    }

    .slide-area .feature-cont {
        width: 320px !important;
        margin: 0 5px !important;
    }

    .slide-area .feature-cont .img-wrap {
        width: 320px !important;
        height: 160px !important;
        min-height: 160px !important;
    }

    .slide-area .feature-cont .img-wrap img {
        width: 100% !important;
        height: 160px !important;
        object-fit: cover;
    }

    .slick-slide {
        width: 320px !important;
        margin: 0 10px !important;
    }

    .slide-area .feature-cont {
        margin: 0 10px !important;
    }

}