@charset "UTF-8";

/* Vertical rhythm */
/* ============================================ */
.p-column p,
.p-column table,
.p-column blockquote,
.p-column address,
.p-column pre,
.p-column iframe,
.p-column form,
.p-column figure,
.p-column dl {
    margin: 0;
}


/* Lists (enumeration) */
/* ============================================ */
.p-column ul,
.p-column ol {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
.p-column a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
.p-column code,
.p-column kbd,
.p-column samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: inherit;
    /* 2 */
}



/************************************************************
*  Foundation
*  baseのスタイルを定義。HTMLタグに対してスタイルをかける
*************************************************************/
html {
    font-size: 62.5%;
}

body {
    font-size: 16px;
    font-size: 1.6rem;
		letter-spacing: 0.05em;
    /* 
    position: relative;
    z-index: 10; */
}
.p-column {
	font-family: 游ゴシック medium, yu gothic medium, 游ゴシック, yu gothic, メイリオ, meiryo, ヒラギノ角ゴ pro, hiragino kaku gothic pro, sans-serif;
	color: #000;
	line-height: 1.6;
}
/*********************************************************************************
*  Layout
*  flexを定義
**********************************************************************************/
.l-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.l-flex--jcsb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.l-flex--jcc {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.l-flex--aic {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.l-flex--ais {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.l-flex--col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/*********************************************************************************
*  Layout
*  innerを定義
**********************************************************************************/
.l-inner {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.l-inner--smallPadding {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.l-inner--small {
    width: min(700px, 100%);
    margin: 0 auto;
}

.p-column__slider {
    display: none !important;
}

a..p-column__listLink,
.p-column__listLink {
    transition: all .3s ease;
}

a.p-column__listLink:hover,
.p-column__listLink:hover {
    opacity: 1;
    background: #FFFFFF;
    color: #B12028;
    text-decoration: none;
}

.p-column__singleCats .p-column__list .p-column__listItem:last-of-type {
    display: none !important;
}

/* #ac_related_article {
    display: none !important;
} */

.temp-none {
    display: none !important;
}

a.c-btn,
.c-btn {
    display: inline-block;
    width: min(350px, 100%);
    background-color: #fff;
    border: 1px solid #B12028;
    border-radius: 100px;
    text-align: center;
    color: #B12028;
    line-height: 1.4;
    padding: 16.4px 40px;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 18px;
    font-size: 1.8rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

a.c-btn::after,
.c-btn::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 2px #B12028;
    border-right: solid 2px #B12028;
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

a.c-btn:hover,
.c-btn:hover {
    text-decoration: none;
    background-color: #B12028;
    color: #fff;
    opacity: 1;
}

.c-btn:hover::after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    right: 20px;
}

.c-btn--red {
    color: #fff;
    border: 1px solid #e17912;
    background: -webkit-gradient(linear, left top, left bottom, from(#ee7800), to(#f26100));
    background: linear-gradient(#ee7800 0%, #f26100 100%);
    padding: 34px 40px 34px 77px;
    width: min(600px, 100%);
    font-size: 22px;
    font-size: 2.2rem;
}

.c-btn--red::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}

.c-btn--red::after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    right: 30px;
}

.c-btn--red:hover::after {
    right: 25px;
}

.c-btn--red::before {
    background: url(../images/icon-mail.webp);
    background-size: cover;
}

.c-btn--red:hover {
    background: #ffe1e1;
    color: #e17912;
}

.c-btn--red:hover::after {
    border-top: solid 2px #e17912;
    border-right: solid 2px #e17912;
}

.c-btn--red::before {
    left: 25px;
}

.c-btn--smallRed {
    color: #fff;
    border: 1px solid #e17912;
    background: -webkit-gradient(linear, left top, left bottom, from(#ee7800), to(#f26100));
    background: linear-gradient(#ee7800 0%, #f26100 100%);
    width: min(400px, 100%);
    font-size: 18px;
    font-size: 1.8rem;
    font-family: 游ゴシック medium, yu gothic medium, 游ゴシック, yu gothic, メイリオ, meiryo, ヒラギノ角ゴ pro, hiragino kaku gothic pro, sans-serif;
    font-weight: normal;
    padding: 20.5px 40px 20.5px 77px;
    line-height: 1.5;
}

.c-btn--smallRed::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}

.c-btn--smallRed::after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    right: 30px;
}

.c-btn--smallRed:hover::after {
    right: 25px;
}

.c-btn--smallRed::before {
    background: url(../images/icon-mail.webp);
    background-size: cover;
}

.c-btn--smallRed:hover {
    background: #ffe1e1;
    color: #e17912;
}

.c-btn--smallRed:hover::after {
    border-top: solid 2px #e17912;
    border-right: solid 2px #e17912;
}

.c-btn--smallRed::before {
    left: 20px;
}

.c-btn--smallBlue {
    color: #fff;
    width: min(400px, 100%);
    font-size: 18px;
    font-size: 1.8rem;
    font-family: 游ゴシック medium, yu gothic medium, 游ゴシック, yu gothic, メイリオ, meiryo, ヒラギノ角ゴ pro, hiragino kaku gothic pro, sans-serif;
    font-weight: normal;
    border: 1px solid #B12028;
    background: -webkit-gradient(linear, left top, left bottom, from(#B12028), to(#B12028));
    background: linear-gradient(to bottom, #B12028, #B12028);
    padding: 17px 59px 17px 77px;
    line-height: 1.4;
}

.c-btn--smallBlue::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}

.c-btn--smallBlue::after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    right: 30px;
}

.c-btn--smallBlue:hover::after {
    right: 25px;
}

.c-btn--smallBlue::before {
    background: url(../images/icon-tel--blue.webp);
    background-size: cover;
    left: 20px;
}

.c-btn--smallBlue::after {
    display: none;
}

.c-btn--smallBlue:hover {
    color: #B12028;
    background: #e1e5fd;
}

.c-btn--smallBlue:hover::after {
    border-top: solid 2px #B12028;
    border-right: solid 2px #B12028;
}

.c-head {
    color: #B12028;
    font-size: 40px;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 33px;
}

.c-head--brd {
    font-size: 30px;
    font-size: 3rem;
    margin-bottom: 60px;
    position: relative;
}

.c-head--brd::before {
    content: "";
    width: 100px;
    height: 2px;
    background-color: #B12028;
    position: absolute;
    bottom: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.c-head--brdLeft {
    line-height: 1.65;
    text-align: left;
    border-left: 4px solid #B12028;
    margin-bottom: 40px;
    padding-left: 20px;
    font-size: 24px;
    font-size: 2.4rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.c-head--hyphen {
    position: relative;
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 20px;
    position: relative;
    color: #B12028;
    padding-left: 30px;
    font-weight: bold;
}

.c-head--hyphen::before {
    content: "";
    width: 15px;
    height: 2px;
    background: #B12028;
    position: absolute;
    top: 17px;
    left: 0;
}

.c-head--fillBg {
    color: #fff;
    background-color: #B12028;
    padding: clamp(12px, 1.4vw, 14px) 15px;
    margin-bottom: clamp(20px, 3vw, 30px);
    line-height: 1.6;
    font-size: clamp(18px, 2vw, 20px);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.c-head--underLine {
    position: relative;
    color: #B12028;
    padding-left: clamp(12px, 1.5vw, 15px);
    line-height: 1.6;
    margin-bottom: clamp(25px, 3vw, 30px);
    font-size: clamp(16px, 1.8vw, 18px);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.c-head--underLine::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: clamp(1px, 0.2vw, 2px);
    background-color: #B12028;
}

.c-head--leftLine {
    position: relative;
    padding-left: clamp(20px, 2.5vw, 25px);
    margin-bottom: clamp(7px, 1vw, 10px);
    color: #B12028;
    line-height: 1.6;
    font-size: clamp(16px, 1.8vw, 18px);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.c-head--leftLine::before {
    content: "";
    width: clamp(10px, 1.5vw, 15px);
    height: 2px;
    background: #B12028;
    position: absolute;
    top: 12px;
    left: 0;
}

.c-head--topLine {
    font-size: clamp(18px, 2vw, 20px);
    min-height: 50px;
    padding: 15px 15px 17px;
    color: #B12028;
    border-top: 2px solid #B12028;
    background-color: rgba(177,32,40,.04);
    margin-bottom: clamp(20px, 3vw, 30px);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.c-head--strong {
    position: relative;
    margin-bottom: clamp(7px, 1vw, 10px);
    color: #000000;
    line-height: 1.6;
    font-size: clamp(14px, 1.8vw, 16px);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.c-txt {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 2;
}

.c-txt--lhLarge {
    line-height: 2.2;
}

.c-txt--lhSmall {
    line-height: 1.8;
}

.c-txt--large {
    font-size: clamp(16px, 1.8vw, 18px);
}

.c-news__listItem {
    border-bottom: 1px solid #00452f;
}

.c-news__listItem:hover .c-news__listLink {
    background: rgba(177,32,40,.04);
}

.c-news__listLink {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding: 17px 50px 17px 17px;
    display: block;
    position: relative;
}

.c-news__listLink::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: solid 2px #B12028;
    border-right: solid 2px #B12028;
    position: absolute;
    right: 21px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.c-news__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 45px;
    margin-bottom: 10px;
}

.c-news__date {
    font-size: 18px;
    color: #B12028;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.c-news__tag {
    border-radius: 15px;
    background: #B12028;
    width: min(150px, 100%);
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 4px 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.c-news__tag--release {
    background: #006dc1;
}

.c-news__tag--media {
    background: #23827f;
}

.c-news__head {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.c-pagination {
    margin: 0 auto;
}

.c-pagination__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

.c-pagination__link {
    display: inline-block;
    font-size: 24px;
    color: #e17912;
    position: relative;
}

.c-pagination__link:not(.current):not(.dots):not(.next):not(.prev)::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #e17912;
    position: absolute;
    bottom: 6px;
    opacity: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.c-pagination__link:not(.current):not(.dots):not(.next):not(.prev):hover::before {
    opacity: 0;
}

.c-pagination__link.current {
    color: #B12028;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.c-pagination__link.dots {
    letter-spacing: -1px;
    color: #B12028;
}

.c-pagination__link.dots::before {
    content: "…";
    display: inline-block;
}

.c-pagination__link.next,
.c-pagination__link.prev {
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #B12028;
    position: relative;
    margin-left: 10px;
}

.c-pagination__link.next::before,
.c-pagination__link.prev::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    left: 45%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.c-pagination__link.next:hover,
.c-pagination__link.prev:hover {
    opacity: 0.8;
}

.c-pagination__link.prev {
    margin-left: 0;
    margin-right: 10px;
}

.c-pagination__link.prev::before {
    -webkit-transform: translate(-50%, -50%) rotate(225deg);
    transform: translate(-50%, -50%) rotate(225deg);
    left: 55%;
}
.c-pagination__link:hover {
    text-decoration: none;
}

.c-qa {
    margin: 3px;
    border-radius: 6px;
    border: 2px solid #B12028;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    line-height: 1.6;
    background: #B12028;
    overflow: hidden;
}

.c-qa+.c-qa {
    margin-top: 30px;
}

.c-qa__cont::before,
.c-qa__btn::before {
    position: absolute;
    top: calc(50% - 21px);
    left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
    font-weight: bold;
}

.c-qa__btn {
    display: block;
    position: relative;
    padding: 26px 40px 26px 75px;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    background-color: #B12028;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.c-qa__btn:hover {
    background-color: #0c7e56;
}

.c-qa__btn.js--accordion-open .c-qa__icon {
    background-color: #7b7f9c;
}

.c-qa__btn.js--accordion-open .c-qa__icon::before {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
}

.c-qa__btn::before {
    content: "Q";
    color: #fff;
    background: #B12028;
}

.c-qa__cont {
    display: none;
    color: #000;
    position: relative;
    padding: 20px 40px 20px 75px;
    font-size: 16px;
    line-height: 1.8;
    background: #fff;
}

.c-qa__cont::before {
    content: "A";
    color: #B12028;
    background: rgba(177,32,40,.04);
}

.c-qa__icon {
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.c-qa__icon::before,
.c-qa__icon::after {
    position: absolute;
    content: "";
    display: block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background: #fff;
    top: 50%;
    right: 5px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 4px;
}

.c-qa__icon::before {
    right: -5px;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.c-search {
    position: relative;
}

input.c-search__txt {
    width: min(800px, 65.1041666667vw);
    font-size: 16px;
    border: 1px solid rgba(177,32,40,.3);
    border-radius: 6px;
    padding: 11px 50px 11px clamp(10px, 2vw, 20px);
    background: #fff;
    outline: none;
}

input.c-search__submit {
    position: absolute;
    top: 0;
    right: 0;
    background: url(../img/common/icon_search.svg) center no-repeat;
    width: 50px;
    height: 100%;
}

.c-search input::-webkit-input-placeholder {
    color: rgba(153, 153, 153, .6) 99;
}

.c-search input::-moz-placeholder {
    color: rgba(153, 153, 153, .6) 99;
}

.c-search input::-ms-input-placeholder {
    color: rgba(153, 153, 153, .6) 99;
}

.c-search input::placeholder {
    color: rgba(153, 153, 153, .6) 99;
}

/************************************************************
*  Component
*  目次のスタイル
*************************************************************/
.c-toc {
    border: 1px solid #B12028;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

span[data-href] {
    cursor: pointer;
    color: #000;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

span[data-href]:hover {
    opacity: 0.7;
}


.c-toc__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.c-toc__lead {
    font-size: clamp(16px, 1.8vw, 18px);
    color: #B12028;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
    padding: clamp(10px, 2.3vw, 23px) clamp(10px, 2vw, 20px);
    cursor: pointer;
    transition: all .3s ease;
}

.c-toc__lead:hover {
    background: #B12028;
    color: #FFFFFF;
}

.c-toc__lead.js--accordion-open .c-toc__leadIcon::before {
    content: "[▲閉じる]";
}

.c-toc__leadIcon::before {
    content: "[▼表示する]";
    display: inline-block;
    color: #B12028;
    font-family: 游ゴシック medium, yu gothic medium, 游ゴシック, yu gothic, メイリオ, meiryo, ヒラギノ角ゴ pro, hiragino kaku gothic pro, sans-serif;
    font-weight: normal;
    transition: all .3s ease;
}

.c-toc__lead:hover .c-toc__leadIcon::before {
    color: #FFFFFF;
}

.c-toc__cont {
    display: none;
    padding: clamp(15px, 2vw, 20px) clamp(10px, 1.5vw, 15px) ;
    counter-reset: h2_i 0;
}

.c-toc__cont.js--accordion-open {
    display: block;
}

.c-toc__link {
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    font-size: clamp(14px, 1.6vw, 16px);
    color: #B12028;
    position: relative;
    padding-left: clamp(20px, 3vw, 30px);
    margin-bottom: 5px;
}

.c-toc__link::before {
    cursor: auto;
    cursor: initial;
    color: #000;
    position: absolute;
    left: 0;
    display: inline-block;
}

.c-toc__cont>.c-toc__link::before {
    counter-increment: h2_i 1;
    content: counter(h2_i) ".";
}

.c-toc__list>.c-toc__link::before {
    counter-increment: h3_i 1;
    content: counter(h3_i) ".";
}

.c-toc__list {
    counter-reset: h3_i 0;
    padding-left: clamp(20px, 3vw, 30px);
    position: relative;
    margin-bottom: 5px;
}

.p-ctaBox {
    background-color: #fffbf1;
    text-align: center;
    border: #e3d1a2 solid 1px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.p-ctaBox--borderNone {
    border: none;
}

.p-ctaBox__majorHead {
    border-bottom: 1px solid #e3d1a2;
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
}

.p-ctaBox__majorHead__bigTxt {
    font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
    font-weight: 600;
    font-size: 40px;
    color: #B12028;
}

.p-ctaBox__majorHead__bigTxt.--small-l {
    line-height: 1.5;
}

.p-ctaBox__majorHead__smTxt {
    font-weight: bold;
    font-size: 18px;
    line-height: 36px;
    text-align: center;
    color: #B12028;
}

.p-ctaBox__majorHead__smTxt.--small-l {
    line-height: 1.5;
}

.p-ctaBox__majorHead__smTxt--em {
    color: #e17912;
}

.p-ctaBox__txt {
    font-weight: 500;
    font-size: 18px;
    line-height: 34px;
    color: #000;
    width: 95%;
    margin: 0 auto;
}

.p-ctaBox__ctaContents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 95%;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.p-columnBox__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}

.p-columnBox__flex.--gapMiddle {
    gap: clamp(25px, 3vw, 30px);
}

.p-columnBox__flex.--gapLarge {
    gap: clamp(20px, 4vw, 40px);
}

.p-columnBox__flexItem {
    width: min(530px, 100%);
}

.p-columnBox__flexItem.--small {
    width: min(280px, 100%);
}

.p-columnBox__txt {
    flex: 1;
    font-size: 14px;
}

.p-columnBox__shadow {
    -webkit-box-shadow: 0 10px 20px rgba(0, 72, 49, .2);
    box-shadow: 0 10px 20px rgba(0, 72, 49, .2);
}

.p-tagStyles *:not([class*=c-]):not([class*=p-]) {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 2;
}

.p-tagStyles *.bold:not([class*=c-]):not([class*=p-]),
.p-tagStyles b:not([class*=c-]):not([class*=p-]),
.p-tagStyles strong:not([class*=c-]):not([class*=p-]) {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.p-tagStyles section:not([class*=c-]):not([class*=p-]):not([class*=u-]) {
    margin-bottom: clamp(40px, 5vw, 50px);
}

.p-tagStyles p:not([class*=c-]):not([class*=p-]) {
    margin-bottom: clamp(20px, 2.5vw, 25px);
}

.p-tagStyles img:not([class*=c-]):not([class*=u-]):not([class^=p-]) {
    width: auto;
}

.p-tagStyles a:not([class*=c-]):not([class*=p-]) {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    text-decoration: underline;
    color: #e17912;
}

.p-tagStyles a:not([class*=c-]):not([class*=p-]):hover {
    opacity: 0.8;
    text-decoration: none;
}

.p-tagStyles a.link:not([class*=c-]):not([class*=p-]) {
    display: block;
    border-top: 1px solid #B12028;
    border-bottom: 1px solid #B12028;
    color: #B12028;
    padding: clamp(10px, 1.5vw, 15px) clamp(15px, 2vw, 20px);
    text-decoration: none;
    position: relative;
}

.p-tagStyles a.link:not([class*=c-]):not([class*=p-])+.link {
    border-top: none;
}

.p-tagStyles a.link:not([class*=c-]):not([class*=p-])::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #B12028;
    border-left: 0;
    border-bottom: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.p-tagStyles a.link:not([class*=c-]):not([class*=p-]):hover {
    opacity: 0.7;
}

.p-tagStyles a.link:not([class*=c-]):not([class*=p-]):hover::after {
    right: 15px;
}

.p-tagStyles h2:not([class*=c-]):not([class*=p-]) {
    color: #fff;
    background-color: #B12028;
    padding: clamp(12px, 1.4vw, 14px) 15px;
    margin-bottom: clamp(20px, 3vw, 30px);
    line-height: 1.6;
    font-size: clamp(18px, 2vw, 20px);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.p-tagStyles h3:not([class*=c-]):not([class*=p-]) {
    position: relative;
    color: #B12028;
    padding-left: clamp(12px, 1.5vw, 15px);
    line-height: 1.6;
    margin-bottom: clamp(25px, 3vw, 30px);
    font-size: clamp(16px, 1.8vw, 18px);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.p-tagStyles h3:not([class*=c-]):not([class*=p-])::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: clamp(1px, 0.2vw, 2px);
    background-color: #B12028;
}

.p-tagStyles h4:not([class*=c-]):not([class*=p-]) {
    position: relative;
    padding-left: clamp(20px, 2.5vw, 25px);
    margin-bottom: clamp(7px, 1vw, 10px);
    color: #B12028;
    line-height: 1.6;
    font-size: clamp(16px, 1.8vw, 18px);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
    font-size: clamp(14px, 1.6vw, 16px);
}

.p-tagStyles h4:not([class*=c-]):not([class*=p-])::before {
    content: "";
    width: clamp(10px, 1.5vw, 15px);
    height: 2px;
    background: #B12028;
    position: absolute;
    top: 12px;
    left: 0;
}

.p-tagStyles details:not([class*=c-]):not([class*=p-]) {
    margin-bottom: clamp(8px, 2.5vw, 10px);
    border: 1px solid #B12028;
}

.p-tagStyles details:not([class*=c-]):not([class*=p-])[open] summary::before {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}

.p-tagStyles summary:not([class*=c-]):not([class*=p-]) {
    cursor: pointer;
    display: block;
    position: relative;
    list-style: none;
    padding: clamp(8px, 1.08vw, 10.8px) clamp(30px, 4vw, 40px) clamp(8px, 1.08vw, 10.8px) clamp(12px, 1.5vw, 15px);
    background-color: rgba(177,32,40,.04);
    color: #B12028;
    line-height: 1.6;
    font-size: clamp(16px, 1.8vw, 18px);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
    transition: all .3s ease;
}

.p-tagStyles summary:not([class*=c-]):not([class*=p-])::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #B12028;
    border-left: 0;
    border-bottom: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateY(-50%) rotate(135deg);
    transform: translateY(-50%) rotate(135deg);
    z-index: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.p-tagStyles summary:not([class*=c-]):not([class*=p-]):hover {
    background-color: #B12028;
    color: #FFFFFF;
}
.p-tagStyles summary:not([class*=c-]):not([class*=p-]):hover::before {
    border-color: #FFFFFF;
}
.p-tagStyles summary:not([class*=c-]):not([class*=p-])::-webkit-details-marker {
    display: none;
}

.p-tagStyles summary:not([class*=c-]):not([class*=p-])+div {
    padding: clamp(12px, 1.5vw, 15px) clamp(15px, 2vw, 20px);
}

.p-tagStyles ul:not([class*=c-]):not([class*=p-]) {
    margin-bottom: clamp(20px, 2.5vw, 25px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 40px;
}

.p-tagStyles ul:not([class*=c-]):not([class*=p-]) li:not([class*=c-]):not([class*=p-]) {
    width: calc(50% - 20px);
    position: relative;
    color: #3b4043;
    padding-left: clamp(13px, 1.8vw, 18px);
    line-height: 1.6;
    margin-bottom: 0;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.p-tagStyles ul:not([class*=c-]):not([class*=p-]) li:not([class*=c-]):not([class*=p-])::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    width: clamp(5px, 0.8vw, 8px);
    height: clamp(5px, 0.8vw, 8px);
    background-color: #B12028;
    border-radius: 50%;
}

.p-tagStyles ul.checkbox:not([class*=c-]):not([class*=p-]) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
    padding: clamp(15px, 2.8vw, 20px);
    background-color: rgba(177,32,40,.04);
}

.p-tagStyles ul.checkbox:not([class*=c-]):not([class*=p-]) li:not([class*=c-]):not([class*=p-]) {
    width: 100%;
    color: #B12028;
    padding-left: clamp(20px, 2.8vw, 28px);
}

.p-tagStyles ul.checkbox:not([class*=c-]):not([class*=p-]) li:not([class*=c-]):not([class*=p-])::before {
    border-radius: 0;
    border-radius: initial;
    color: #fff;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: 5px;
    height: 9px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 2;
    left: 6px;
    top: 6px;
}

.p-tagStyles ul.checkbox:not([class*=c-]):not([class*=p-]) li:not([class*=c-]):not([class*=p-])::after {
    content: "";
    display: block;
    position: absolute;
    background-color: #B12028;
    left: 0;
    top: 3px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    z-index: 1;
}

.p-tagStyles .scroll-hint-text:not([class*=c-]):not([class*=p-]) {
    font-size: 10px;
    line-height: 1;
}

.p-tagStyles table:not([class*=c-]):not([class*=p-]) {
    border-collapse: collapse;
    width: 100%;
    color: #fff;
    border: 1px solid #c7c7c7;
}

.p-tagStyles th:not([class*=c-]):not([class*=p-]),
.p-tagStyles td:not([class*=c-]):not([class*=p-]) {
    font-size: clamp(14px, 1.6vw, 16px);
    vertical-align: middle;
    text-align: center;
    border-right: 1px solid #c7c7c7;
    border-bottom: 1px solid #c7c7c7;
}

.p-tagStyles th:not([class*=c-]):not([class*=p-]) {
    width: clamp(150px, 18vw, 180px);
    height: clamp(40px, 6vw, 60px);
    background: #B12028;
    line-height: 1.3;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.p-tagStyles tbody tr th:not([class*=c-]):not([class*=p-]),
.p-tagStyles thead tr th:first-child:not([class*=p-]) {
    position: sticky;
    z-index: 2;
    left: 0;
}

.p-tagStyles thead th:not([class*=c-]):not([class*=p-]) {
    background: #B12028;
}

.p-tagStyles thead th:not([class*=c-]):not([class*=p-]):first-child {
    background: #B12028;
}

.p-tagStyles thead th:not([class*=c-]):not([class*=p-]).red {
    background: #e17912;
}

.p-tagStyles tbody tr td:not([class*=c-]):not([class*=p-]) {
    color: #000;
    background-color: #fff;
}

.p-tagStyles tbody tr td:not([class*=c-]):not([class*=p-]).red {
    background: #fff4e9;
    color: #e17912;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.p-tagStyles tbody tr td:not([class*=c-]):not([class*=p-]).circle {
    position: relative;
}

.p-tagStyles tbody tr td:not([class*=c-]):not([class*=p-]).circle::before {
    content: "";
    background-color: #e17912;
    width: clamp(10px, 1.5vw, 15px);
    height: clamp(10px, 1.5vw, 15px);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.p-column__slider {
    width: min(1140px, 87.6923076923vw);
    margin: 0 auto;
}

.p-column__sliderItem {
    margin: 0 min(20px, 1.5384615385vw) 25px;
    position: relative;
    -webkit-box-shadow: 0 10px 20px rgba(0, 72, 49, .2);
    box-shadow: 0 10px 20px rgba(0, 72, 49, .2);
    overflow: hidden;
}

.p-column__sliderItem:hover .p-column__sliderImg {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.p-column__sliderImg {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.p-column__sliderBox {
    position: absolute;
    bottom: 0;
    background: rgba(255, 255, 255, .85);
    width: 100%;
    height: min(105px, 11.71875vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px 20px;
}

.p-column__sliderBoxTxt {
    font-size: min(18px, 2.34375vw);
    color: #B12028;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 5px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.p-column__sliderLead {
    font-size: min(14px, 3.2vw);
    color: #B12028;
    text-align: right;
    position: relative;
    padding-right: 11px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.p-column__sliderLead::before {
    content: "";
    position: absolute;
    top: 7px;
    right: 0;
    display: inline-block;
    vertical-align: middle;
    color: currentColor;
    line-height: 1;
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateX(-25%) rotate(45deg);
    transform: translateX(-25%) rotate(45deg);
}

.p-column__sliderArrowOuter {
    cursor: pointer;
    width: min(80px, 6.1538461538vw);
    height: min(80px, 6.1538461538vw);
    border-radius: 50%;
    background-color: #B12028;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    width: min(60px, 10.6666666667vw);
    height: min(60px, 10.6666666667vw);
}

.p-column__sliderArrowOuter:hover {
    opacity: 0.8;
}

.p-column__sliderArrowOuter.--prev {
    left: -6.5%;
}

.p-column__sliderArrowOuter.--next {
    right: -6.5%;
}

.p-column__sliderArrowOuter.--next {
    right: -5.5%;
}

.p-column__sliderArrowOuter.--prev {
    left: -5.5%;
}

.p-column__slider--max2 .p-column__sliderArrowOuter.--next {
    right: -2.5%;
}

.p-column__slider--max2 .p-column__sliderArrowOuter.--prev {
    left: -2.5%;
}

.p-column__sliderArrow {
    display: block;
    width: min(12px, 0.9230769231vw);
    height: min(12px, 0.9230769231vw);
    border-top: solid min(2px, 0.1538461538vw) #fff;
    border-right: solid min(2px, 0.1538461538vw) #fff;
    position: absolute;
    left: 50%;
    top: 43%;
    left: 50%;
    top: calc(50% - 5px);
}

.p-column__sliderArrow.--prev {
    -webkit-transform: translate(-50%) rotate(-135deg);
    transform: translate(-50%) rotate(-135deg);
}

.p-column__sliderArrow.--next {
    -webkit-transform: translate(-50%) rotate(45deg);
    transform: translate(-50%) rotate(45deg);
}

.p-column__slider--none {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    gap: 30px;
}

.p-column__slider--none .p-column__sliderItem {
    max-width: 340px;
    width: calc(50% - 15px) !important;
    margin: 0 !important;
}

.p-column__searchFlex {
    background-color: rgba(177,32,40,.04);
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.p-column__searchLead {
	margin: 0;
	font-size: clamp(16px, 1.8vw, 18px);
	color: #B12028;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-weight: bold;
}

.p-column__searchKeyword {
    display: none;
}

.p-column__searchKeywordTxt {
    font-size: min(20px, 4.2666666667vw);
    color: #fff;
    background-color: #B12028;
    text-align: center;
    padding: min(20px, 3.2vw) min(20px, 3.2vw) min(20px, 3.2vw) min(30px, 5.3333333333vw);
    position: relative;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.p-column__searchKeywordTxt::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: currentColor;
    line-height: 1;
    width: min(12px, 2.1333333333vw);
    height: min(12px, 2.1333333333vw);
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateY(-25%) rotate(135deg);
    transform: translateY(-25%) rotate(135deg);
    position: absolute;
    top: calc(50% - 4px);
    right: min(30px, 2.6666666667vw);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.p-column__searchKeywordTxt.js--accordion-open::before {
    -webkit-transform: translateY(-25%) rotate(315deg);
    transform: translateY(-25%) rotate(315deg);
    top: 50%;
}

.p-column__searchCont {
    display: none;
    background: #f5f6f8;
    padding: 20px;
}

.p-column__lay {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 60px;
}

.p-column__lay__in:first-of-type {
    max-width: 760px;
    width: 76%;
}

.p-column__lay__in:last-of-type {
    max-width: 280px;
    width: 28%;
}

.p-column__card {
    border-bottom: 1px solid #ccc;
}

.p-column__card.--brdNone {
    border: medium none currentColor;
    border: initial;
}

.p-column__cardOuter {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #B12028;
    padding: clamp(15px, 2vw, 20px);
    margin-bottom: clamp(20px, 2.5vw, 25px);
}

.p-column__cardFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
}

.p-column__cardImgWrap {
    width: min(250px, 100%);
    overflow: hidden;
}

.p-column__cardImgWrap:hover .p-column__cardImg {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.p-column__cardImg {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.p-column__cardCont {
    width: min(480px, 100%);
}

.p-column__cardContLink:hover .p-column__cardHead {
    text-decoration: underline;
}

a.p-column__cardContLink:hover {
    text-decoration: none;
}

.p-column__cardDate {
    font-size: clamp(10px, 1.4vw, 14px);
    color: #909090;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.p-column__cardDateHypen::before {
    content: "|";
    padding: 0 5px;
}

.p-column__cardHead {
    color: #000000;
    font-size: clamp(14px, 1.8vw, 18px);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.p-column__cardTxt {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.p-column__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
}

.p-column__listItem {
    background: #B12028;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #B12028;
    line-height: 1;
}

.p-column__listItem > a {
    color: #FFFFFF;
}

.p-column__listLink {
    display: inline-block;
    color: #fff;
    padding: 5px 9px;
    line-height: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: clamp(12px, 1.4vw, 14px);
}

.p-column__listLink.--large {
    font-size: 14px;
}

.p-column__listLink:hover {
    color: #B12028;
}

.p-column__listLink--big {
    padding: 6px 12px;
}

.p-column__taxMv {
    background: #B12028;
    background-size: cover;
    background-position: right;
    width: 100%;
    padding: clamp(26px, 5.6vw, 56px) 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.p-column__taxMvInner {
    padding: 0 clamp(20px, 4vw, 40px);
}

.p-column__taxMvSubHead {
    position: relative;
    padding-left: clamp(25px, 3vw, 30px);
    margin-bottom: clamp(5px, 0.7vw, 7px);
    color: #fff;
    font-size: clamp(16px, 2.4vw, 24px);
    font-weight: bold;
}

.p-column__taxMvSubHead::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: calc(50% - 2px);
    background-color: #fff;
    width: 15px;
    height: 2px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.p-column__taxMvHead {
    line-height: 1.4;
    color: #fff;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: bold;
}

.p-column__singleHead {
    position: relative;
    color: #000000;
    line-height: 1.6;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
    font-size: clamp(20px, 3vw, 30px);
    padding-left: 0;
    margin-bottom: clamp(20px, 3.5vw, 35px);
}

.p-column__singleHead::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: clamp(1px, 0.2vw, 2px);
    background-color: #B12028;
}

.p-column__singleHead::after {
    bottom: -15px;
}

.p-column__singleFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}
.p-column__singleThumb {
	width: fit-content;
	margin-inline: auto;
}

.p-column__singleDate {
    font-size: clamp(12px, 1.4vw, 14px);
    color: #909090;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
		white-space: nowrap;
}

.p-column__singleSns {
    width: 18px;
    display: inline-block;
}

.p-column__singleSns:hover {
    opacity: 0.8;
}

.p-column__singleAnchors {
    border-top: 1px solid #000000;
    padding-top: 15px;
    margin-bottom: clamp(50px, 12vw, 120px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.p-column__singleAnchor {
    width: 33.3333333333%;
    text-align: center;
}

.p-column__singleAnchor.--prev {
    text-align: left;
}

.p-column__singleAnchor.--next {
    text-align: right;
}

a.p-column__singleAnchorLink {
    font-size: clamp(14px, 1.6vw, 16px);
    color: #B12028;
    text-decoration: underline;
}

.p-column__singleAnchorLink:hover {
    text-decoration: none;
    opacity: 0.8;
}

.p-column__singleAnchorLink.--prev::before,
.p-column__singleAnchorLink.--next::after {
    content: "";
    display: inline-block;
    position: relative;
    top: 2px;
    width: clamp(10px, 1.3vw, 13px);
    height: clamp(10px, 1.3vw, 13px);
    border: 2px solid #B12028;
    border-left: 0;
    border-bottom: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.p-column__singleAnchorLink.--prev::before {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    margin-right: 5px;
}

.p-column__singleAnchorLink.--next::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 5px;
}

.p-column__singleCats {
    background-color: #f5f6f8;
    padding: clamp(15px, 2vw, 20px) clamp(15px, 1.8vw, 18px);
}

.p-column__singleCatsHead {
    color: #B12028;
    font-size: clamp(15px, 1.8vw, 18px);
    margin-bottom: clamp(20px, 2.5vw, 25px);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}
.p-column__link {
	margin-top: auto;
	display: flex;
	gap: 10px;
	justify-content: center;
}
.p-column__link p {
	width: calc(50% - 5px);
}
.p-column__link a {
	display: block;
	padding: 10px;
	border-radius: 100px;
	border: solid 2px var(--fast-red);
	display: block;
	position: relative;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
}
.p-column__link a::after {
	content: "";
	width: 8px;
	height: 8px;
	transform: translate( 0, -50%) rotate( 45deg );
	border-top: solid 2px;
	border-right: solid 2px;
	position: absolute;
	right: 15px;
	top: 50%;
	transition: .3s;
}
.p-column__link a:hover::after {
	right: 10px;
}
.p-column__link01 a {
	color: var(--white);
	background-color: var(--fast-red);
}
.p-column__link02 a {
	color: var(--fast-red);
	background-color: var(--white);
}

@media screen and (max-width: 767px) {
	.p-column__link {
		flex-direction: column;
		align-items: center;
	}
	.p-column__link p {
		width: 80%;
	}
}


/************************************************************
*  Project
*  columnのサイドナビ
*************************************************************/


.p-sideNav__list.--silver {
    background-color: rgba(177,32,40,.04);
}
.p-sideNav__list__in {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px;
}
.p-sideNav__list__in + .p-sideNav__list__in {
	margin-top: 20px;
	padding-top: 20px;
	border-top: solid 1px rgba(177,32,40,.3);
} 
.p-sideNav__bnr:hover {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.1" /><feFuncG type="linear" slope="1.1" /><feFuncB type="linear" slope="1.1" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
}

.p-sideNav__popItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 15px;
    position: relative;
}

.p-sideNav__popItem:not(:last-of-type) {
    border-bottom: 1px solid #cccccc;
}

.p-sideNav__popItem:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50px;
    z-index: 2;
    -webkit-transform: translate(0%, 50%);
    transform: translate(0%, 50%);
    border: 1px solid;
    color: #fff;
    font-size: 16px;
}

.p-sideNav__popItem:hover {
    text-decoration: underline;
}

.p-sideNav__popItem:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.p-sideNav__popItem__thumb {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
    position: relative;
    overflow: hidden;
    margin-left: 10px;
}

.p-sideNav__popItem__thumb img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.p-sideNav__popItem__cont {
    -webkit-box-flex: 6;
    -ms-flex: 6;
    flex: 6;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.3;
    text-align: left;
    color: #000000;
    margin-right: 5px;
}

.p-sideNav .p-sideNav__popItem:nth-of-type(1)::before {
    content: "1";
    border-color: #ffd35a;
    background-color: #c9970d;
}

.p-sideNav .p-sideNav__popItem:nth-of-type(2)::before {
    content: "2";
    border-color: #d1d6ef;
    background-color: #9da0af;
}

.p-sideNav .p-sideNav__popItem:nth-of-type(3)::before {
    content: "3";
    border-color: #fbb679;
    background-color: #bc7a3f;
}

.p-sideNav__btn {
    display: inline-block;
    width: min(260px, 100%);
    background-color: #fff;
    border: 1px solid #B12028;
    border-radius: 100px;
    text-align: center;
    color: #B12028;
    line-height: 1.6;
    padding: 11.2px 35px;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 18px;
    font-size: 1.8rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
}

.p-sideNav__btn::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 2px #B12028;
    border-right: solid 2px #B12028;
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.p-sideNav__btn:hover {
    background-color: #B12028;
    color: #fff;
}

.p-sideNav__btn:hover::after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    right: 20px;
}

.p-sideNav__btn.--smallRed {
    color: #fff;
    width: min(300px, 100%);
    padding: 10px 30px 10px 59px;
    line-height: 1.5;
    border: 1px solid #e17912;
    background: -webkit-gradient(linear, left top, left bottom, from(#ee7800), to(#f26100));
    background: linear-gradient(#ee7800 0%, #f26100 100%);
    width: min(400px, 100%);
    font-size: 18px;
    font-size: 1.8rem;
    font-family: 游ゴシック medium, yu gothic medium, 游ゴシック, yu gothic, メイリオ, meiryo, ヒラギノ角ゴ pro, hiragino kaku gothic pro, sans-serif;
    font-weight: normal;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 22px 40px 22px 77px;
    line-height: 1.5;
}

.p-sideNav__btn.--smallRed::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    left: 15px;
}

.p-sideNav__btn.--smallRed::after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    right: 20px;
}

.p-sideNav__btn.--smallRed:hover::after {
    right: 15px;
}

.p-sideNav__btn.--smallRed::before {
    background: url(../images/icon-mail.webp);
    background-size: cover;
}

.p-sideNav__btn.--smallRed:hover {
    background: #ffe1e1;
    color: #e17912;
}

.p-sideNav__btn.--smallRed:hover::after {
    border-top: solid 2px #e17912;
    border-right: solid 2px #e17912;
}

.p-sideNav__btn.--smallRed::before {
    left: 20px;
}

.p-sideNav__btn.--smallBlue {
    color: #fff;
    width: min(300px, 100%);
    padding: 10px 30px 10px 59px;
    line-height: 1.5;
    width: min(400px, 100%);
    font-size: 18px;
    font-size: 1.8rem;
    font-family: 游ゴシック medium, yu gothic medium, 游ゴシック, yu gothic, メイリオ, meiryo, ヒラギノ角ゴ pro, hiragino kaku gothic pro, sans-serif;
    font-weight: normal;
    font-size: 16px;
    font-size: 1.6rem;
    border: 1px solid #B12028;
    background: -webkit-gradient(linear, left top, left bottom, from(#B12028), to(#B12028));
    background: linear-gradient(to bottom, #B12028, #B12028);
    padding: 12px 35px 12px 59px;
    line-height: 1.4;
}

.p-sideNav__btn.--smallBlue::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    left: 15px;
}

.p-sideNav__btn.--smallBlue::after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    right: 20px;
}

.p-sideNav__btn.--smallBlue:hover::after {
    right: 15px;
}

.p-sideNav__btn.--smallBlue::before {
    background: url(../images/icon-tel--blue.webp);
    background-size: cover;
    left: 20px;
}

.p-sideNav__btn.--smallBlue::after {
    display: block;
}

.p-sideNav__btn.--smallBlue:hover {
    color: #B12028;
    background: #e1e5fd;
}

.p-sideNav__btn.--smallBlue:hover::after {
    border-top: solid 2px #B12028;
    border-right: solid 2px #B12028;
}


/************************************************************
*  Utility
*  汎用的なスタイルを定義
*************************************************************/
/* 下線
--------------------------------------------------------------------------------------- */
.u-external_link {
    -webkit-transition: 0.3s ease !important;
    transition: 0.3s ease !important;
    text-decoration: underline !important;
}

.u-external_link:hover {
    opacity: 0.8 !important;
    text-decoration: none !important;
}

/* 透過
--------------------------------------------------------------------------------------- */
.u-hover {
    -webkit-transition: 0.3s !important;
    transition: 0.3s !important;
}

.u-hover:hover {
    opacity: 0.8 !important;
}

/* PC/SP 非表示
--------------------------------------------------------------------------------------- */
.u-sp_none {
    display: block !important;
}

.u-pctab_none {
    display: none !important;
}

.u-tab_none {
    display: block !important;
}

.u-sptab_none {
    display: block !important;
}

.u-pc_none {
    display: none !important;
}

/* 横幅・縦幅
--------------------------------------------------------------------------------------- */
.u-w-auto {
    width: auto !important;
}

.u-h-auto {
    height: auto !important;
}

.u-w0 {
    width: 0% !important;
}

.u-w5 {
    width: 5% !important;
}

.u-w10 {
    width: 10% !important;
}

.u-w15 {
    width: 15% !important;
}

.u-w20 {
    width: 20% !important;
}

.u-w25 {
    width: 25% !important;
}

.u-w30 {
    width: 30% !important;
}

.u-w35 {
    width: 35% !important;
}

.u-w40 {
    width: 40% !important;
}

.u-w45 {
    width: 45% !important;
}

.u-w50 {
    width: 50% !important;
}

.u-w55 {
    width: 55% !important;
}

.u-w60 {
    width: 60% !important;
}

.u-w65 {
    width: 65% !important;
}

.u-w70 {
    width: 70% !important;
}

.u-w75 {
    width: 75% !important;
}

.u-w80 {
    width: 80% !important;
}

.u-w85 {
    width: 85% !important;
}

.u-w90 {
    width: 90% !important;
}

.u-w95 {
    width: 95% !important;
}

.u-w100 {
    width: 100% !important;
}

.u-w0 {
    height: 0% !important;
}

.u-w5 {
    height: 5% !important;
}

.u-w10 {
    height: 10% !important;
}

.u-w15 {
    height: 15% !important;
}

.u-w20 {
    height: 20% !important;
}

.u-w25 {
    height: 25% !important;
}

.u-w30 {
    height: 30% !important;
}

.u-w35 {
    height: 35% !important;
}

.u-w40 {
    height: 40% !important;
}

.u-w45 {
    height: 45% !important;
}

.u-w50 {
    height: 50% !important;
}

.u-w55 {
    height: 55% !important;
}

.u-w60 {
    height: 60% !important;
}

.u-w65 {
    height: 65% !important;
}

.u-w70 {
    height: 70% !important;
}

.u-w75 {
    height: 75% !important;
}

.u-w80 {
    height: 80% !important;
}

.u-w85 {
    height: 85% !important;
}

.u-w90 {
    height: 90% !important;
}

.u-w95 {
    height: 95% !important;
}

.u-w100 {
    height: 100% !important;
}

/* ドットリスト（・）
--------------------------------------------------------------------------------------- */
.u-list_dot li {
    position: relative !important;
    padding-left: 15px !important;
    padding-left: 1.5rem !important;
    text-align: left !important;
    font-size: clamp(14px, 3.5vw, 16px) !important;
}

.u-list_dot li+li {
    margin-top: 5px !important;
}

.u-list_dot li::before {
    content: "・" !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.u-list_dot li.dot_none::before {
    display: none !important;
}

.u-list_dot--big li {
    font-size: clamp(14px, 3.5vw, 20px) !important;
}

.u-list_dot--big li+li {
    margin-top: 8px !important;
}

.u-list_dot--big li+* {
    margin-bottom: 8px !important;
}

/* 注釈リスト（※）
--------------------------------------------------------------------------------------- */
*+.u-list_notes,
*+.u-list_notes--small {
    margin-top: 0.8em !important;
    gap: 5px !important;
}

.u-list_notes li,
.u-list_notes--small li,
.u-notes {
    position: relative !important;
    list-style: none !important;
    padding: 0 0 0 1.2em !important;
    margin-bottom: 0 !important;
    background-image: none !important;
    /* TODO タブレット最適化後に削除*/
    font-size: clamp(13px, 1.4vw, 14px) !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    top: auto !important;
    left: auto !important;
}

.u-list_notes li::before,
.u-list_notes--small li::before,
.u-notes::before {
    content: "※" !important;
    position: absolute !important;
    display: inline-block !important;
    background: none !important;
    top: auto !important;
}

.u-notes+.u-notes {
    margin-top: 3px !important;
}

.u-notes--big {
    font-size: clamp(13px, 3.5vw, 20px) !important;
}

.u-list_notes--block li {
    display: block !important;
}

.u-notes--block {
    display: block !important;
}

.u-notes--fs16 {
    font-size: clamp(13px, 3.5vw, 16px) !important;
}

.u-list_num {
    counter-reset: listNum 0;
}

.u-list_numItem {
    font-size: clamp(14px, 3.5vw, 16px) !important;
    position: relative !important;
    padding-left: clamp(16px, 3.5vw, 18px) !important;
}

.u-list_numItem::before {
    content: counter(listNum) ".";
    counter-increment: listNum 1 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.u-list_numItem+.u-list_numItem {
    margin-top: 5px !important;
}

/* テキストインデント
--------------------------------------------------------------------------------------- */
.u-txt-indent {
    text-indent: -1em !important;
    padding-left: 1em !important;
}

/* テキストホバー
--------------------------------------------------------------------------------------- */
.u-txt-underline {
    display: inline-block !important;
    text-decoration: underline !important;
}

.u-txt-underline:hover {
    text-decoration: none !important;
}

/* text-align
--------------------------------------------------------------------------------------- */
.u-align-c {
    text-align: center !important;
}

.u-align-l {
    text-align: left !important;
}

.u-align-r {
    text-align: right !important;
}

/* 揃え
--------------------------------------------------------------------------------------- */
.u-margin-l {
    margin: 0 auto 0 0 !important;
}

.u-margin-c {
    margin: 0 auto !important;
}

.u-margin-r {
    margin: 0 0 0 auto !important;
}

/* 文字色
--------------------------------------------------------------------------------------- */
.u-color-white {
    color: #fff !important;
}

.u-color-black {
    color: #000 !important;
}

.u-color-baseWhite {
    color: #f5f6f8 !important;
}

.u-color-baseLightGray {
    color: rgba(177,32,40,.04) !important;
}

.u-color-mainNavy {
    color: #B12028 !important;
}

.u-color-mainNavy2 {
    color: #B12028 !important;
}

.u-color-mainLightNavy {
    color: #3a4278 !important;
}

.u-color-mainLightNavy2 {
    color: #7b80a2 !important;
}

.u-color-accentRed {
    color: #e17912 !important;
}

.u-color-accentGold {
    color: #a6b506 !important;
}

.u-color-accentGreen {
    color: #23827f !important;
}

/* 背景色
--------------------------------------------------------------------------------------- */
.u-bgc-white {
    background-color: #fff !important;
}

.u-bgc-black {
    background-color: #000 !important;
}

.u-bgc-baseWhite {
    background-color: #f5f6f8 !important;
}

.u-bgc-baseLightGray {
    background-color: rgba(177,32,40,.04) !important;
}

.u-bgc-mainNavy {
    background-color: #B12028 !important;
}

.u-bgc-mainNavy2 {
    background-color: #B12028 !important;
}

.u-bgc-mainLightNavy {
    background-color: #3a4278 !important;
}

.u-bgc-accentRed {
    background-color: #e17912 !important;
}

.u-bgc-accentGold {
    background-color: #a6b506 !important;
}

.u-bgc-accentGreen {
    background-color: #23827f !important;
}

/* ボーダー
--------------------------------------------------------------------------------------- */
.u-border_current {
    border-bottom: 1px solid currentColor !important;
}

.u-border_gray {
    border-bottom: 1px solid #ccc !important;
}

.u-border_lightGray {
    border: 1px solid #d3dbe6 !important;
}

/* フォント
--------------------------------------------------------------------------------------- */
.u-ff-yugoshic {
    font-family: 游ゴシック medium, yu gothic medium, 游ゴシック, yu gothic, メイリオ, meiryo, ヒラギノ角ゴ pro, hiragino kaku gothic pro, sans-serif !important;
}

.u-ff-yugoshic-bold {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif !important;
    font-weight: bold !important;
}

.u-ff-yumincho {
    font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif !important;
}

.u-ff-yumincho-bold {
    font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif !important;
    font-weight: bold !important;
}

.u-fs10 {
    font-size: 10px !important;
}

.u-fs11 {
    font-size: 11px !important;
}

.u-fs12 {
    font-size: 12px !important;
}

.u-fs13 {
    font-size: 13px !important;
}

.u-fs14 {
    font-size: 14px !important;
}

.u-fs15 {
    font-size: 15px !important;
}

.u-fs16 {
    font-size: 16px !important;
}

.u-fs17 {
    font-size: 17px !important;
}

.u-fs18 {
    font-size: 18px !important;
}

.u-fs19 {
    font-size: 19px !important;
}

.u-fs20 {
    font-size: 20px !important;
}

.u-fs21 {
    font-size: 21px !important;
}

.u-fs22 {
    font-size: 22px !important;
}

.u-fs23 {
    font-size: 23px !important;
}

.u-fs24 {
    font-size: 24px !important;
}

.u-fs25 {
    font-size: 25px !important;
}

.u-fs26 {
    font-size: 26px !important;
}

.u-fs27 {
    font-size: 27px !important;
}

.u-fs28 {
    font-size: 28px !important;
}

.u-fs29 {
    font-size: 29px !important;
}

.u-fs30 {
    font-size: 30px !important;
}

.u-mt0 {
    margin-top: 0px !important;
}

.u-mb0 {
    margin-bottom: 0px !important;
}

.u-mr0 {
    margin-right: 0px !important;
}

.u-ml0 {
    margin-left: 0px !important;
}

.u-mt5 {
    margin-top: 5px !important;
}

.u-mb5 {
    margin-bottom: 5px !important;
}

.u-mr5 {
    margin-right: 5px !important;
}

.u-ml5 {
    margin-left: 5px !important;
}

.u-mt10 {
    margin-top: 10px !important;
}

.u-mb10 {
    margin-bottom: 10px !important;
}

.u-mr10 {
    margin-right: 10px !important;
}

.u-ml10 {
    margin-left: 10px !important;
}

.u-mt15 {
    margin-top: 15px !important;
}

.u-mb15 {
    margin-bottom: 15px !important;
}

.u-mr15 {
    margin-right: 15px !important;
}

.u-ml15 {
    margin-left: 15px !important;
}

.u-mt20 {
    margin-top: 20px !important;
}

.u-mb20 {
    margin-bottom: 20px !important;
}

.u-mr20 {
    margin-right: 20px !important;
}

.u-ml20 {
    margin-left: 20px !important;
}

.u-mt25 {
    margin-top: 25px !important;
}

.u-mb25 {
    margin-bottom: 25px !important;
}

.u-mr25 {
    margin-right: 25px !important;
}

.u-ml25 {
    margin-left: 25px !important;
}

.u-mt30 {
    margin-top: 30px !important;
}

.u-mb30 {
    margin-bottom: 30px !important;
}

.u-mr30 {
    margin-right: 30px !important;
}

.u-ml30 {
    margin-left: 30px !important;
}

.u-mt35 {
    margin-top: 35px !important;
}

.u-mb35 {
    margin-bottom: 35px !important;
}

.u-mr35 {
    margin-right: 35px !important;
}

.u-ml35 {
    margin-left: 35px !important;
}

.u-mt40 {
    margin-top: 40px !important;
}

.u-mb40 {
    margin-bottom: 40px !important;
}

.u-mr40 {
    margin-right: 40px !important;
}

.u-ml40 {
    margin-left: 40px !important;
}

.u-mt45 {
    margin-top: 45px !important;
}

.u-mb45 {
    margin-bottom: 45px !important;
}

.u-mr45 {
    margin-right: 45px !important;
}

.u-ml45 {
    margin-left: 45px !important;
}

.u-mt50 {
    margin-top: 50px !important;
}

.u-mb50 {
    margin-bottom: 50px !important;
}

.u-mr50 {
    margin-right: 50px !important;
}

.u-ml50 {
    margin-left: 50px !important;
}

.u-mt55 {
    margin-top: 55px !important;
}

.u-mb55 {
    margin-bottom: 55px !important;
}

.u-mr55 {
    margin-right: 55px !important;
}

.u-ml55 {
    margin-left: 55px !important;
}

.u-mt60 {
    margin-top: 60px !important;
}

.u-mb60 {
    margin-bottom: 60px !important;
}

.u-mr60 {
    margin-right: 60px !important;
}

.u-ml60 {
    margin-left: 60px !important;
}

.u-mt65 {
    margin-top: 65px !important;
}

.u-mb65 {
    margin-bottom: 65px !important;
}

.u-mr65 {
    margin-right: 65px !important;
}

.u-ml65 {
    margin-left: 65px !important;
}

.u-mt70 {
    margin-top: 70px !important;
}

.u-mb70 {
    margin-bottom: 70px !important;
}

.u-mr70 {
    margin-right: 70px !important;
}

.u-ml70 {
    margin-left: 70px !important;
}

.u-mt75 {
    margin-top: 75px !important;
}

.u-mb75 {
    margin-bottom: 75px !important;
}

.u-mr75 {
    margin-right: 75px !important;
}

.u-ml75 {
    margin-left: 75px !important;
}

.u-mt80 {
    margin-top: 80px !important;
}

.u-mb80 {
    margin-bottom: 80px !important;
}

.u-mr80 {
    margin-right: 80px !important;
}

.u-ml80 {
    margin-left: 80px !important;
}

.u-mt85 {
    margin-top: 85px !important;
}

.u-mb85 {
    margin-bottom: 85px !important;
}

.u-mr85 {
    margin-right: 85px !important;
}

.u-ml85 {
    margin-left: 85px !important;
}

.u-mt90 {
    margin-top: 90px !important;
}

.u-mb90 {
    margin-bottom: 90px !important;
}

.u-mr90 {
    margin-right: 90px !important;
}

.u-ml90 {
    margin-left: 90px !important;
}

.u-mt95 {
    margin-top: 95px !important;
}

.u-mb95 {
    margin-bottom: 95px !important;
}

.u-mr95 {
    margin-right: 95px !important;
}

.u-ml95 {
    margin-left: 95px !important;
}

.u-mt100 {
    margin-top: 100px !important;
}

.u-mb100 {
    margin-bottom: 100px !important;
}

.u-mr100 {
    margin-right: 100px !important;
}

.u-ml100 {
    margin-left: 100px !important;
}

.u-mt105 {
    margin-top: 105px !important;
}

.u-mb105 {
    margin-bottom: 105px !important;
}

.u-mr105 {
    margin-right: 105px !important;
}

.u-ml105 {
    margin-left: 105px !important;
}

.u-mt110 {
    margin-top: 110px !important;
}

.u-mb110 {
    margin-bottom: 110px !important;
}

.u-mr110 {
    margin-right: 110px !important;
}

.u-ml110 {
    margin-left: 110px !important;
}

.u-mt115 {
    margin-top: 115px !important;
}

.u-mb115 {
    margin-bottom: 115px !important;
}

.u-mr115 {
    margin-right: 115px !important;
}

.u-ml115 {
    margin-left: 115px !important;
}

.u-mt120 {
    margin-top: 120px !important;
}

.u-mb120 {
    margin-bottom: 120px !important;
}

.u-mr120 {
    margin-right: 120px !important;
}

.u-ml120 {
    margin-left: 120px !important;
}

.u-mt125 {
    margin-top: 125px !important;
}

.u-mb125 {
    margin-bottom: 125px !important;
}

.u-mr125 {
    margin-right: 125px !important;
}

.u-ml125 {
    margin-left: 125px !important;
}

.u-mt130 {
    margin-top: 130px !important;
}

.u-mb130 {
    margin-bottom: 130px !important;
}

.u-mr130 {
    margin-right: 130px !important;
}

.u-ml130 {
    margin-left: 130px !important;
}

.u-mt135 {
    margin-top: 135px !important;
}

.u-mb135 {
    margin-bottom: 135px !important;
}

.u-mr135 {
    margin-right: 135px !important;
}

.u-ml135 {
    margin-left: 135px !important;
}

.u-mt140 {
    margin-top: 140px !important;
}

.u-mb140 {
    margin-bottom: 140px !important;
}

.u-mr140 {
    margin-right: 140px !important;
}

.u-ml140 {
    margin-left: 140px !important;
}

.u-mt145 {
    margin-top: 145px !important;
}

.u-mb145 {
    margin-bottom: 145px !important;
}

.u-mr145 {
    margin-right: 145px !important;
}

.u-ml145 {
    margin-left: 145px !important;
}

.u-mt150 {
    margin-top: 150px !important;
}

.u-mb150 {
    margin-bottom: 150px !important;
}

.u-mr150 {
    margin-right: 150px !important;
}

.u-ml150 {
    margin-left: 150px !important;
}

.u-mt155 {
    margin-top: 155px !important;
}

.u-mb155 {
    margin-bottom: 155px !important;
}

.u-mr155 {
    margin-right: 155px !important;
}

.u-ml155 {
    margin-left: 155px !important;
}

.u-mt160 {
    margin-top: 160px !important;
}

.u-mb160 {
    margin-bottom: 160px !important;
}

.u-mr160 {
    margin-right: 160px !important;
}

.u-ml160 {
    margin-left: 160px !important;
}

.u-mt165 {
    margin-top: 165px !important;
}

.u-mb165 {
    margin-bottom: 165px !important;
}

.u-mr165 {
    margin-right: 165px !important;
}

.u-ml165 {
    margin-left: 165px !important;
}

.u-mt170 {
    margin-top: 170px !important;
}

.u-mb170 {
    margin-bottom: 170px !important;
}

.u-mr170 {
    margin-right: 170px !important;
}

.u-ml170 {
    margin-left: 170px !important;
}

.u-mt175 {
    margin-top: 175px !important;
}

.u-mb175 {
    margin-bottom: 175px !important;
}

.u-mr175 {
    margin-right: 175px !important;
}

.u-ml175 {
    margin-left: 175px !important;
}

.u-mt180 {
    margin-top: 180px !important;
}

.u-mb180 {
    margin-bottom: 180px !important;
}

.u-mr180 {
    margin-right: 180px !important;
}

.u-ml180 {
    margin-left: 180px !important;
}

.u-mt185 {
    margin-top: 185px !important;
}

.u-mb185 {
    margin-bottom: 185px !important;
}

.u-mr185 {
    margin-right: 185px !important;
}

.u-ml185 {
    margin-left: 185px !important;
}

.u-mt190 {
    margin-top: 190px !important;
}

.u-mb190 {
    margin-bottom: 190px !important;
}

.u-mr190 {
    margin-right: 190px !important;
}

.u-ml190 {
    margin-left: 190px !important;
}

.u-mt195 {
    margin-top: 195px !important;
}

.u-mb195 {
    margin-bottom: 195px !important;
}

.u-mr195 {
    margin-right: 195px !important;
}

.u-ml195 {
    margin-left: 195px !important;
}

.u-mt200 {
    margin-top: 200px !important;
}

.u-mb200 {
    margin-bottom: 200px !important;
}

.u-mr200 {
    margin-right: 200px !important;
}

.u-ml200 {
    margin-left: 200px !important;
}

.u-mt205 {
    margin-top: 205px !important;
}

.u-mb205 {
    margin-bottom: 205px !important;
}

.u-mr205 {
    margin-right: 205px !important;
}

.u-ml205 {
    margin-left: 205px !important;
}

.u-mt210 {
    margin-top: 210px !important;
}

.u-mb210 {
    margin-bottom: 210px !important;
}

.u-mr210 {
    margin-right: 210px !important;
}

.u-ml210 {
    margin-left: 210px !important;
}

.u-mt215 {
    margin-top: 215px !important;
}

.u-mb215 {
    margin-bottom: 215px !important;
}

.u-mr215 {
    margin-right: 215px !important;
}

.u-ml215 {
    margin-left: 215px !important;
}

.u-mt220 {
    margin-top: 220px !important;
}

.u-mb220 {
    margin-bottom: 220px !important;
}

.u-mr220 {
    margin-right: 220px !important;
}

.u-ml220 {
    margin-left: 220px !important;
}

.u-mt225 {
    margin-top: 225px !important;
}

.u-mb225 {
    margin-bottom: 225px !important;
}

.u-mr225 {
    margin-right: 225px !important;
}

.u-ml225 {
    margin-left: 225px !important;
}

.u-mt230 {
    margin-top: 230px !important;
}

.u-mb230 {
    margin-bottom: 230px !important;
}

.u-mr230 {
    margin-right: 230px !important;
}

.u-ml230 {
    margin-left: 230px !important;
}

.u-mt235 {
    margin-top: 235px !important;
}

.u-mb235 {
    margin-bottom: 235px !important;
}

.u-mr235 {
    margin-right: 235px !important;
}

.u-ml235 {
    margin-left: 235px !important;
}

.u-mt240 {
    margin-top: 240px !important;
}

.u-mb240 {
    margin-bottom: 240px !important;
}

.u-mr240 {
    margin-right: 240px !important;
}

.u-ml240 {
    margin-left: 240px !important;
}

.u-mt245 {
    margin-top: 245px !important;
}

.u-mb245 {
    margin-bottom: 245px !important;
}

.u-mr245 {
    margin-right: 245px !important;
}

.u-ml245 {
    margin-left: 245px !important;
}

.u-mt250 {
    margin-top: 250px !important;
}

.u-mb250 {
    margin-bottom: 250px !important;
}

.u-mr250 {
    margin-right: 250px !important;
}

.u-ml250 {
    margin-left: 250px !important;
}

.u-mt255 {
    margin-top: 255px !important;
}

.u-mb255 {
    margin-bottom: 255px !important;
}

.u-mr255 {
    margin-right: 255px !important;
}

.u-ml255 {
    margin-left: 255px !important;
}

.u-mt260 {
    margin-top: 260px !important;
}

.u-mb260 {
    margin-bottom: 260px !important;
}

.u-mr260 {
    margin-right: 260px !important;
}

.u-ml260 {
    margin-left: 260px !important;
}

.u-mt265 {
    margin-top: 265px !important;
}

.u-mb265 {
    margin-bottom: 265px !important;
}

.u-mr265 {
    margin-right: 265px !important;
}

.u-ml265 {
    margin-left: 265px !important;
}

.u-mt270 {
    margin-top: 270px !important;
}

.u-mb270 {
    margin-bottom: 270px !important;
}

.u-mr270 {
    margin-right: 270px !important;
}

.u-ml270 {
    margin-left: 270px !important;
}

.u-mt275 {
    margin-top: 275px !important;
}

.u-mb275 {
    margin-bottom: 275px !important;
}

.u-mr275 {
    margin-right: 275px !important;
}

.u-ml275 {
    margin-left: 275px !important;
}

.u-mt280 {
    margin-top: 280px !important;
}

.u-mb280 {
    margin-bottom: 280px !important;
}

.u-mr280 {
    margin-right: 280px !important;
}

.u-ml280 {
    margin-left: 280px !important;
}

.u-mt285 {
    margin-top: 285px !important;
}

.u-mb285 {
    margin-bottom: 285px !important;
}

.u-mr285 {
    margin-right: 285px !important;
}

.u-ml285 {
    margin-left: 285px !important;
}

.u-mt290 {
    margin-top: 290px !important;
}

.u-mb290 {
    margin-bottom: 290px !important;
}

.u-mr290 {
    margin-right: 290px !important;
}

.u-ml290 {
    margin-left: 290px !important;
}

.u-mt295 {
    margin-top: 295px !important;
}

.u-mb295 {
    margin-bottom: 295px !important;
}

.u-mr295 {
    margin-right: 295px !important;
}

.u-ml295 {
    margin-left: 295px !important;
}

.u-mt300 {
    margin-top: 300px !important;
}

.u-mb300 {
    margin-bottom: 300px !important;
}

.u-mr300 {
    margin-right: 300px !important;
}

.u-ml300 {
    margin-left: 300px !important;
}

.u-pt0 {
    padding-top: 0px !important;
}

.u-pb0 {
    padding-bottom: 0px !important;
}

.u-pl0 {
    padding-left: 0px !important;
}

.u-pr0 {
    padding-right: 0px !important;
}

.u-pt5 {
    padding-top: 5px !important;
}

.u-pb5 {
    padding-bottom: 5px !important;
}

.u-pl5 {
    padding-left: 5px !important;
}

.u-pr5 {
    padding-right: 5px !important;
}

.u-pt10 {
    padding-top: 10px !important;
}

.u-pb10 {
    padding-bottom: 10px !important;
}

.u-pl10 {
    padding-left: 10px !important;
}

.u-pr10 {
    padding-right: 10px !important;
}

.u-pt15 {
    padding-top: 15px !important;
}

.u-pb15 {
    padding-bottom: 15px !important;
}

.u-pl15 {
    padding-left: 15px !important;
}

.u-pr15 {
    padding-right: 15px !important;
}

.u-pt20 {
    padding-top: 20px !important;
}

.u-pb20 {
    padding-bottom: 20px !important;
}

.u-pl20 {
    padding-left: 20px !important;
}

.u-pr20 {
    padding-right: 20px !important;
}

.u-pt25 {
    padding-top: 25px !important;
}

.u-pb25 {
    padding-bottom: 25px !important;
}

.u-pl25 {
    padding-left: 25px !important;
}

.u-pr25 {
    padding-right: 25px !important;
}

.u-pt30 {
    padding-top: 30px !important;
}

.u-pb30 {
    padding-bottom: 30px !important;
}

.u-pl30 {
    padding-left: 30px !important;
}

.u-pr30 {
    padding-right: 30px !important;
}

.u-pt35 {
    padding-top: 35px !important;
}

.u-pb35 {
    padding-bottom: 35px !important;
}

.u-pl35 {
    padding-left: 35px !important;
}

.u-pr35 {
    padding-right: 35px !important;
}

.u-pt40 {
    padding-top: 40px !important;
}

.u-pb40 {
    padding-bottom: 40px !important;
}

.u-pl40 {
    padding-left: 40px !important;
}

.u-pr40 {
    padding-right: 40px !important;
}

.u-pt45 {
    padding-top: 45px !important;
}

.u-pb45 {
    padding-bottom: 45px !important;
}

.u-pl45 {
    padding-left: 45px !important;
}

.u-pr45 {
    padding-right: 45px !important;
}

.u-pt50 {
    padding-top: 50px !important;
}

.u-pb50 {
    padding-bottom: 50px !important;
}

.u-pl50 {
    padding-left: 50px !important;
}

.u-pr50 {
    padding-right: 50px !important;
}

.u-pt55 {
    padding-top: 55px !important;
}

.u-pb55 {
    padding-bottom: 55px !important;
}

.u-pl55 {
    padding-left: 55px !important;
}

.u-pr55 {
    padding-right: 55px !important;
}

.u-pt60 {
    padding-top: 60px !important;
}

.u-pb60 {
    padding-bottom: 60px !important;
}

.u-pl60 {
    padding-left: 60px !important;
}

.u-pr60 {
    padding-right: 60px !important;
}

.u-pt65 {
    padding-top: 65px !important;
}

.u-pb65 {
    padding-bottom: 65px !important;
}

.u-pl65 {
    padding-left: 65px !important;
}

.u-pr65 {
    padding-right: 65px !important;
}

.u-pt70 {
    padding-top: 70px !important;
}

.u-pb70 {
    padding-bottom: 70px !important;
}

.u-pl70 {
    padding-left: 70px !important;
}

.u-pr70 {
    padding-right: 70px !important;
}

.u-pt75 {
    padding-top: 75px !important;
}

.u-pb75 {
    padding-bottom: 75px !important;
}

.u-pl75 {
    padding-left: 75px !important;
}

.u-pr75 {
    padding-right: 75px !important;
}

.u-pt80 {
    padding-top: 80px !important;
}

.u-pb80 {
    padding-bottom: 80px !important;
}

.u-pl80 {
    padding-left: 80px !important;
}

.u-pr80 {
    padding-right: 80px !important;
}

.u-pt85 {
    padding-top: 85px !important;
}

.u-pb85 {
    padding-bottom: 85px !important;
}

.u-pl85 {
    padding-left: 85px !important;
}

.u-pr85 {
    padding-right: 85px !important;
}

.u-pt90 {
    padding-top: 90px !important;
}

.u-pb90 {
    padding-bottom: 90px !important;
}

.u-pl90 {
    padding-left: 90px !important;
}

.u-pr90 {
    padding-right: 90px !important;
}

.u-pt95 {
    padding-top: 95px !important;
}

.u-pb95 {
    padding-bottom: 95px !important;
}

.u-pl95 {
    padding-left: 95px !important;
}

.u-pr95 {
    padding-right: 95px !important;
}

.u-pt100 {
    padding-top: 100px !important;
}

.u-pb100 {
    padding-bottom: 100px !important;
}

.u-pl100 {
    padding-left: 100px !important;
}

.u-pr100 {
    padding-right: 100px !important;
}

.u-cg0 {
    -webkit-column-gap: 0px !important;
    -moz-column-gap: 0px !important;
    column-gap: 0px !important;
}

.u-cg0 {
    -webkit-column-gap: 0px !important;
    -moz-column-gap: 0px !important;
    column-gap: 0px !important;
}

.u-cg5 {
    -webkit-column-gap: 5px !important;
    -moz-column-gap: 5px !important;
    column-gap: 5px !important;
}

.u-cg5 {
    -webkit-column-gap: 5px !important;
    -moz-column-gap: 5px !important;
    column-gap: 5px !important;
}

.u-cg10 {
    -webkit-column-gap: 10px !important;
    -moz-column-gap: 10px !important;
    column-gap: 10px !important;
}

.u-cg10 {
    -webkit-column-gap: 10px !important;
    -moz-column-gap: 10px !important;
    column-gap: 10px !important;
}

.u-cg15 {
    -webkit-column-gap: 15px !important;
    -moz-column-gap: 15px !important;
    column-gap: 15px !important;
}

.u-cg15 {
    -webkit-column-gap: 15px !important;
    -moz-column-gap: 15px !important;
    column-gap: 15px !important;
}

.u-cg20 {
    -webkit-column-gap: 20px !important;
    -moz-column-gap: 20px !important;
    column-gap: 20px !important;
}

.u-cg20 {
    -webkit-column-gap: 20px !important;
    -moz-column-gap: 20px !important;
    column-gap: 20px !important;
}

.u-cg25 {
    -webkit-column-gap: 25px !important;
    -moz-column-gap: 25px !important;
    column-gap: 25px !important;
}

.u-cg25 {
    -webkit-column-gap: 25px !important;
    -moz-column-gap: 25px !important;
    column-gap: 25px !important;
}

.u-cg30 {
    -webkit-column-gap: 30px !important;
    -moz-column-gap: 30px !important;
    column-gap: 30px !important;
}

.u-cg30 {
    -webkit-column-gap: 30px !important;
    -moz-column-gap: 30px !important;
    column-gap: 30px !important;
}

.u-cg35 {
    -webkit-column-gap: 35px !important;
    -moz-column-gap: 35px !important;
    column-gap: 35px !important;
}

.u-cg35 {
    -webkit-column-gap: 35px !important;
    -moz-column-gap: 35px !important;
    column-gap: 35px !important;
}

.u-cg40 {
    -webkit-column-gap: 40px !important;
    -moz-column-gap: 40px !important;
    column-gap: 40px !important;
}

.u-cg40 {
    -webkit-column-gap: 40px !important;
    -moz-column-gap: 40px !important;
    column-gap: 40px !important;
}

.u-cg45 {
    -webkit-column-gap: 45px !important;
    -moz-column-gap: 45px !important;
    column-gap: 45px !important;
}

.u-cg45 {
    -webkit-column-gap: 45px !important;
    -moz-column-gap: 45px !important;
    column-gap: 45px !important;
}

.u-cg50 {
    -webkit-column-gap: 50px !important;
    -moz-column-gap: 50px !important;
    column-gap: 50px !important;
}

.u-cg50 {
    -webkit-column-gap: 50px !important;
    -moz-column-gap: 50px !important;
    column-gap: 50px !important;
}

.u-cg55 {
    -webkit-column-gap: 55px !important;
    -moz-column-gap: 55px !important;
    column-gap: 55px !important;
}

.u-cg55 {
    -webkit-column-gap: 55px !important;
    -moz-column-gap: 55px !important;
    column-gap: 55px !important;
}

.u-cg60 {
    -webkit-column-gap: 60px !important;
    -moz-column-gap: 60px !important;
    column-gap: 60px !important;
}

.u-cg60 {
    -webkit-column-gap: 60px !important;
    -moz-column-gap: 60px !important;
    column-gap: 60px !important;
}

.u-cg65 {
    -webkit-column-gap: 65px !important;
    -moz-column-gap: 65px !important;
    column-gap: 65px !important;
}

.u-cg65 {
    -webkit-column-gap: 65px !important;
    -moz-column-gap: 65px !important;
    column-gap: 65px !important;
}

.u-cg70 {
    -webkit-column-gap: 70px !important;
    -moz-column-gap: 70px !important;
    column-gap: 70px !important;
}

.u-cg70 {
    -webkit-column-gap: 70px !important;
    -moz-column-gap: 70px !important;
    column-gap: 70px !important;
}

.u-cg75 {
    -webkit-column-gap: 75px !important;
    -moz-column-gap: 75px !important;
    column-gap: 75px !important;
}

.u-cg75 {
    -webkit-column-gap: 75px !important;
    -moz-column-gap: 75px !important;
    column-gap: 75px !important;
}

.u-cg80 {
    -webkit-column-gap: 80px !important;
    -moz-column-gap: 80px !important;
    column-gap: 80px !important;
}

.u-cg80 {
    -webkit-column-gap: 80px !important;
    -moz-column-gap: 80px !important;
    column-gap: 80px !important;
}

.u-cg85 {
    -webkit-column-gap: 85px !important;
    -moz-column-gap: 85px !important;
    column-gap: 85px !important;
}

.u-cg85 {
    -webkit-column-gap: 85px !important;
    -moz-column-gap: 85px !important;
    column-gap: 85px !important;
}

.u-cg90 {
    -webkit-column-gap: 90px !important;
    -moz-column-gap: 90px !important;
    column-gap: 90px !important;
}

.u-cg90 {
    -webkit-column-gap: 90px !important;
    -moz-column-gap: 90px !important;
    column-gap: 90px !important;
}

.u-cg95 {
    -webkit-column-gap: 95px !important;
    -moz-column-gap: 95px !important;
    column-gap: 95px !important;
}

.u-cg95 {
    -webkit-column-gap: 95px !important;
    -moz-column-gap: 95px !important;
    column-gap: 95px !important;
}

.u-cg100 {
    -webkit-column-gap: 100px !important;
    -moz-column-gap: 100px !important;
    column-gap: 100px !important;
}

.u-cg100 {
    -webkit-column-gap: 100px !important;
    -moz-column-gap: 100px !important;
    column-gap: 100px !important;
}

@media screen and (max-width: 1500px) {
    body {
        margin: 0;
    }
}

@media screen and (max-width: 1300px) {
    body {
        margin: 0;
    }

    .p-column__sliderItem {
        margin: 0 5px 25px;
    }

    .p-column__sliderBox {
        padding: min(15px, 0.3125vw) 20px;
    }

    .p-column__sliderArrowOuter.--next {
        right: -6.5%;
    }

    .p-column__sliderArrowOuter.--prev {
        left: -6.5%;
    }

}

@media screen and (max-width: 1024px) {

    .l-flex-tabblock {
        display: block;
    }

    .l-main {
        margin-top: 90px;
    }

    .l-main--recruit {
        margin-top: 80px;
    }

    .p-column__sliderArrowOuter {
        width: 4.8828125vw;
        height: 4.8828125vw;
    }

    .p-column__sliderArrowOuter.--prev {
        left: -5%;
    }

    .p-column__sliderArrowOuter.--next {
        right: -5%;
    }

    .p-column__sliderArrowOuter.--next {
        right: -6%;
    }

    .p-column__sliderArrowOuter.--prev {
        left: -6%;
    }

    .p-column__sliderArrow {
        width: 0.9765625vw;
        height: 0.9765625vw;
    }

    .p-column__searchFlex {
        margin-bottom: 20px;
    }

    .p-column__searchKeyword {
        display: block;
    }

    .p-column__lay {
        gap: initial;
    }

    .p-column__lay__in:last-of-type {
        display: none;
    }

    .p-column__lay__in:first-of-type,
    .p-column__lay__in:last-of-type {
        max-width: none;
        max-width: initial;
        width: 100%;
    }


    .u-pctab_none {
        display: block !important;
    }

    .u-tab_none {
        display: none !important;
    }

    .u-sptab_none {
        display: none !important;
    }

    .u-tab-w-auto {
        width: 100% !important;
    }
}

@media screen and (max-width: 780px) {
    body {
        margin: 0;
    }

    .p-column__singleAnchorLink.--prev::before,
    .p-column__singleAnchorLink.--next::after {
        top: 0;
    }
}

@media screen and (max-width: 767px) {
    body {
        margin: 0;
    }

    input.c-search__txt {
        width: 100%;
    }

    .p-column__searchFlex {
        display: block;
    }

    .p-column__searchLead {
        text-align: center;
        margin-bottom: 10px;
    }

}
@media screen and (max-width: 640px) {

    .sa {
        -webkit-transition: all 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
        transition: all 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .l-flex--spjcsb {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .l-flex--spjcc {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .l-flex--spaic {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .l-flex--spais {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }

    .l-flex-spblock {
        display: block;
    }

    .l-main {
        margin-top: 60px;
    }

    .l-main--recruit {
        margin-top: 60px;
    }

    .c-btn {
        width: min(260px, 100%);
        font-size: 1.6rem;
        padding: 11.2px 35px;
        line-height: 1.6;
    }

    .c-btn--red {
        width: min(300px, 100%);
        padding: 10px 30px 10px 59px;
        line-height: 1.5;
    }

    .c-btn--red::before {
        width: 40px;
        height: 40px;
        left: 15px;
    }

    .c-btn--red::after {
        right: 20px;
    }

    .c-btn--red:hover::after {
        right: 15px;
    }

    .c-btn--smallRed {
        width: min(300px, 100%);
        padding: 10px 30px 10px 59px;
        line-height: 1.5;
    }

    .c-btn--smallRed::before {
        width: 40px;
        height: 40px;
        left: 15px;
    }

    .c-btn--smallRed::after {
        right: 20px;
    }

    .c-btn--smallRed:hover::after {
        right: 15px;
    }

    .c-btn--smallRed {
        font-size: 1.6rem;
    }

    .c-btn--smallBlue {
        width: min(300px, 100%);
        padding: 10px 30px 10px 59px;
        line-height: 1.5;
    }

    .c-btn--smallBlue::before {
        width: 40px;
        height: 40px;
        left: 15px;
    }

    .c-btn--smallBlue::after {
        right: 20px;
    }

    .c-btn--smallBlue:hover::after {
        right: 15px;
    }

    .c-btn--smallBlue {
        font-size: 1.6rem;
    }

    .c-btn--smallBlue {
        padding: 8.5px 35px 8.5px 59px;
    }

    .c-btn--smallBlue::after {
        display: block;
    }

    .c-head {
        line-height: 1.5;
        font-size: 2.4rem;
        margin-bottom: 15px;
    }

    .c-head--brd {
        margin-bottom: 50px;
        font-size: 1.8rem;
    }

    .c-head--brd::before {
        bottom: -15px;
        width: 80px;
    }

    .c-head--brdLeft {
        font-size: 2rem;
        margin-bottom: 20px;
        padding-left: 14px;
    }

    .c-head--hyphen {
        margin-bottom: 20px;
        font-size: 1.8rem;
        padding-left: 18px;
    }

    .c-head--hyphen::before {
        width: 10px;
        top: 12px;
    }

    .c-mv-outer {
        height: 250px;
    }

    .c-mv-outer__breadcrumb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .c-mv-outer__breadcrumb [property=itemListElement]:after {
        margin: 0 4px;
    }

    .c-mv__head__ttl {
        line-height: 1.3;
    }

    .c-txt {
        line-height: 1.75;
    }

    .c-txt--lhLarge {
        line-height: 2;
    }

    .c-txt--lhSmall {
        line-height: 1.6;
    }

    .c-news__listLink {
        overflow: hidden;
        padding: 15px 43px 15px 10px;
    }

    .c-news__flex {
        gap: 12px;
    }

    .c-news__date {
        font-size: 14px;
    }

    .c-news__tag {
        font-size: 12px;
        padding: 2px 10px;
        width: min(125px, 100%);
    }

    .c-news__head {
        font-size: 14px;
        text-overflow: initial;
        white-space: normal;
        white-space: initial;
    }

    .c-pagination__link {
        font-size: 18px;
    }

    .c-pagination__link:not(.current):not(.dots):not(.next):not(.prev)::before {
        bottom: 5px;
    }

    .c-pagination__link.dots::before {
        content: "";
    }

    .c-pagination__link.next,
    .c-pagination__link.prev {
        width: 36px;
        height: 36px;
        margin-left: 7px;
    }

    .c-pagination__link.next::before,
    .c-pagination__link.prev::before {
        width: 10px;
        height: 10px;
    }

    .c-pagination__link.prev {
        margin-right: 7px;
    }

    .c-qa+.c-qa {
        margin-top: 15px;
    }

    .c-qa__cont::before,
    .c-qa__btn::before {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 15px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .c-qa__btn {
        font-size: 14px;
        line-height: 2;
        padding: 15px 40px 15px 57px;
    }

    .c-qa__cont {
        font-size: 13px;
        padding: 15px 20px 15px 57px;
        min-height: 76px;
    }

    .c-qa__cont::before {
        top: 30px;
    }

    .c-qa__icon {
        right: 10px;
    }

    .c-qa__icon::before,
    .c-qa__icon::after {
        width: 15px;
        height: 3px;
    }

    .c-qa__icon::before {
        right: -2px;
    }

    .c-breadcrumb {
        overflow-x: scroll;
    }

    .c-breadcrumb__inner {
        width: 100%;
        white-space: nowrap;
    }

    .c-breadcrumb [property=itemListElement]:after {
        margin: 0 4px;
    }

    .p-ctaBox__majorHead {
        border-bottom: 0;
        border-bottom: initial;
    }

    .p-ctaBox__majorHead__bigTxt {
        font-size: 20px;
    }

    .p-ctaBox__majorHead__smTxt {
        font-size: 14px;
    }

    .p-ctaBox__txt {
        line-height: 24px;
        font-size: 14px;
    }

    .p-ctaBox__ctaContents {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
    }

    .p-columnBox__flex {
        display: block;
    }

    .p-columnBox__flex.--reverse {
        gap: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .p-columnBox__flexItem {
        width: 100%;
    }

    .p-columnBox__flexItem.--small {
        width: 100%;
    }

    .p-tagStyles *:not([class*=c-]):not([class*=p-]) {
        line-height: 1.8;
    }

    .p-tagStyles img:not([class*=c-]):not([class*=u-]):not([class^=p-]) {
        width: 100%;
    }

    .p-tagStyles summary:not([class*=c-]):not([class*=p-])::before {
        width: 7px;
        height: 7px;
        right: 15px;
    }

    .p-tagStyles ul:not([class*=c-]):not([class*=p-]) {
        gap: 5px 0;
    }

    .p-tagStyles ul:not([class*=c-]):not([class*=p-]) li:not([class*=c-]):not([class*=p-]) {
        width: 100%;
    }

    .p-tagStyles ul.checkbox:not([class*=c-]):not([class*=p-]) li:not([class*=c-]):not([class*=p-])::before {
        left: 1px;
    }

    .p-tagStyles ul.checkbox:not([class*=c-]):not([class*=p-]) li:not([class*=c-]):not([class*=p-])::after {
        left: -5px;
    }

    .p-tagStyles .js--scroll-hint {
        overflow: auto;
    }

    .p-tagStyles table:not([class*=c-]):not([class*=p-]) {
        table-layout: fixed;
        width: 530px;
    }

    .p-tagStyles th:not([class*=c-]):not([class*=p-]),
    .p-tagStyles td:not([class*=c-]):not([class*=p-]) {
        font-size: 14px;
    }

    .p-tagStyles tbody tr td:not([class*=c-]):not([class*=p-]).circle::before {
        width: 10px;
        height: 10px;
    }

    .p-column__slider {
        width: 100%;
    }

    .p-column__sliderItem {
        margin: 0 7.5px 25px;
    }

    .p-column__sliderBox {
        padding: 15px 20px;
        height: 95px;
    }

    .p-column__sliderBoxTxt {
        font-size: 16px;
    }

    .p-column__sliderArrowOuter {
        width: 13.3333333333vw;
        height: 13.3333333333vw;
        top: 53%;
    }

    .p-column__sliderArrowOuter.--prev {
        left: 0;
    }

    .p-column__sliderArrowOuter.--next {
        right: 0;
    }

    .p-column__sliderArrowOuter {
        width: 10.6666666667vw;
        height: 10.6666666667vw;
        top: 45%;
    }

    .p-column__sliderArrowOuter.--next {
        right: 5px;
    }

    .p-column__sliderArrowOuter.--prev {
        left: 5px;
    }

    .p-column__sliderArrow {
        width: 3.2vw;
        height: 3.2vw;
        border-top: solid 0.5333333333vw #fff;
        border-right: solid 0.5333333333vw #fff;
        top: 38%;
    }

    .p-column__sliderArrow {
        top: 37%;
    }

    .p-column__slider--none {
        gap: 10px !important;
    }

    
    .p-column__slider--none .p-column__sliderItem {
        width: calc(50% - 5px) !important;
    }
    
    .p-column__slider--none .p-column__sliderItem.p-column__sliderItem--single {
        width: 86.5% !important;
    }

    .p-column__slider--none .p-column__sliderItem.p-column__sliderItem--single .p-column__sliderBox {
        padding: 15px 20px !important;
        height: 95px !important;
    }

    .p-column__slider--none .p-column__sliderItem.p-column__sliderItem--single .p-column__sliderBoxTxt {
        font-size: 16px !important;
    }

    .p-column__slider--none .p-column__sliderBox {
        padding: 5px 20px !important;
        height: 70px !important;
    }

    .p-column__slider--none .p-column__sliderBoxTxt {
        font-size: 12px !important;
    }

    .p-column__lay {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: initial;
    }

    .p-column__lay__in:last-of-type {
        display: block;
    }

    .p-column__card {
        gap: 10px;
    }

    .p-column__cardFlex {
        gap: 10px;
    }

    .p-column__cardImgWrap {
        width: 32vw;
    }

    .p-column__cardCont {
        width: calc(100% - 34.66667vw);
    }

    .p-column__cardDateHypen {
        display: block;
    }

    .p-column__cardDateHypen::before {
        display: none;
    }

    .p-column__listLink {
        padding: 4px 9px;
    }

    .p-column__singleHead::after {
        bottom: -10px;
    }

    .p-sideNav__bnr:hover {
        filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
        -webkit-filter: brightness(1);
        filter: brightness(1);
    }

    .p-sideNav__popItem__cont {
        max-width: none;
        max-width: initial;
    }

    .p-sideNav__btn.--smallRed {
        padding: 10px 30px 10px 59px;
    }

    .p-sideNav__btn.--smallBlue {
        padding: 8.5px 35px 8.5px 59px;
    }

    .u-sp_none {
        display: none !important;
    }

    .u-tab_none {
        display: block !important;
    }

    .u-pc_none {
        display: block !important;
    }

    .u-w-auto {
        width: 100% !important;
    }

    .u-sp-w0 {
        width: 0% !important;
    }

    .u-sp-w5 {
        width: 5% !important;
    }

    .u-sp-w10 {
        width: 10% !important;
    }

    .u-sp-w15 {
        width: 15% !important;
    }

    .u-sp-w20 {
        width: 20% !important;
    }

    .u-sp-w25 {
        width: 25% !important;
    }

    .u-sp-w30 {
        width: 30% !important;
    }

    .u-sp-w35 {
        width: 35% !important;
    }

    .u-sp-w40 {
        width: 40% !important;
    }

    .u-sp-w45 {
        width: 45% !important;
    }

    .u-sp-w50 {
        width: 50% !important;
    }

    .u-sp-w55 {
        width: 55% !important;
    }

    .u-sp-w60 {
        width: 60% !important;
    }

    .u-sp-w65 {
        width: 65% !important;
    }

    .u-sp-w70 {
        width: 70% !important;
    }

    .u-sp-w75 {
        width: 75% !important;
    }

    .u-sp-w80 {
        width: 80% !important;
    }

    .u-sp-w85 {
        width: 85% !important;
    }

    .u-sp-w90 {
        width: 90% !important;
    }

    .u-sp-w95 {
        width: 95% !important;
    }

    .u-sp-w100 {
        width: 100% !important;
    }

    .u-sp-w0 {
        height: 0% !important;
    }

    .u-sp-w5 {
        height: 5% !important;
    }

    .u-sp-w10 {
        height: 10% !important;
    }

    .u-sp-w15 {
        height: 15% !important;
    }

    .u-sp-w20 {
        height: 20% !important;
    }

    .u-sp-w25 {
        height: 25% !important;
    }

    .u-sp-w30 {
        height: 30% !important;
    }

    .u-sp-w35 {
        height: 35% !important;
    }

    .u-sp-w40 {
        height: 40% !important;
    }

    .u-sp-w45 {
        height: 45% !important;
    }

    .u-sp-w50 {
        height: 50% !important;
    }

    .u-sp-w55 {
        height: 55% !important;
    }

    .u-sp-w60 {
        height: 60% !important;
    }

    .u-sp-w65 {
        height: 65% !important;
    }

    .u-sp-w70 {
        height: 70% !important;
    }

    .u-sp-w75 {
        height: 75% !important;
    }

    .u-sp-w80 {
        height: 80% !important;
    }

    .u-sp-w85 {
        height: 85% !important;
    }

    .u-sp-w90 {
        height: 90% !important;
    }

    .u-sp-w95 {
        height: 95% !important;
    }

    .u-sp-w100 {
        height: 100% !important;
    }

    .u-spalign-c {
        text-align: center !important;
    }

    .u-spalign-l {
        text-align: left !important;
    }

    .u-spalign-r {
        text-align: right !important;
    }

    .u-spmargin-l {
        margin: 0 auto 0 0 !important;
    }

    .u-spmargin-c {
        margin: 0 auto !important;
    }

    .u-spmargin-r {
        margin: 0 0 0 auto !important;
    }

    .u-spfs10 {
        font-size: 10px !important;
    }

    .u-spfs11 {
        font-size: 11px !important;
    }

    .u-spfs12 {
        font-size: 12px !important;
    }

    .u-spfs13 {
        font-size: 13px !important;
    }

    .u-spfs14 {
        font-size: 14px !important;
    }

    .u-spfs15 {
        font-size: 15px !important;
    }

    .u-spfs16 {
        font-size: 16px !important;
    }

    .u-spfs17 {
        font-size: 17px !important;
    }

    .u-spfs18 {
        font-size: 18px !important;
    }

    .u-spfs19 {
        font-size: 19px !important;
    }

    .u-spfs20 {
        font-size: 20px !important;
    }

    .u-spfs21 {
        font-size: 21px !important;
    }

    .u-spfs22 {
        font-size: 22px !important;
    }

    .u-spfs23 {
        font-size: 23px !important;
    }

    .u-spfs24 {
        font-size: 24px !important;
    }

    .u-spfs25 {
        font-size: 25px !important;
    }

    .u-spfs26 {
        font-size: 26px !important;
    }

    .u-spfs27 {
        font-size: 27px !important;
    }

    .u-spfs28 {
        font-size: 28px !important;
    }

    .u-spfs29 {
        font-size: 29px !important;
    }

    .u-spfs30 {
        font-size: 30px !important;
    }

    .u-spmt0 {
        margin-top: 0px !important;
    }

    .u-spmb0 {
        margin-bottom: 0px !important;
    }

    .u-spmr0 {
        margin-right: 0px !important;
    }

    .u-spml0 {
        margin-left: 0px !important;
    }

    .u-spmt5 {
        margin-top: 5px !important;
    }

    .u-spmb5 {
        margin-bottom: 5px !important;
    }

    .u-spmr5 {
        margin-right: 5px !important;
    }

    .u-spml5 {
        margin-left: 5px !important;
    }

    .u-spmt10 {
        margin-top: 10px !important;
    }

    .u-spmb10 {
        margin-bottom: 10px !important;
    }

    .u-spmr10 {
        margin-right: 10px !important;
    }

    .u-spml10 {
        margin-left: 10px !important;
    }

    .u-spmt15 {
        margin-top: 15px !important;
    }

    .u-spmb15 {
        margin-bottom: 15px !important;
    }

    .u-spmr15 {
        margin-right: 15px !important;
    }

    .u-spml15 {
        margin-left: 15px !important;
    }

    .u-spmt20 {
        margin-top: 20px !important;
    }

    .u-spmb20 {
        margin-bottom: 20px !important;
    }

    .u-spmr20 {
        margin-right: 20px !important;
    }

    .u-spml20 {
        margin-left: 20px !important;
    }

    .u-spmt25 {
        margin-top: 25px !important;
    }

    .u-spmb25 {
        margin-bottom: 25px !important;
    }

    .u-spmr25 {
        margin-right: 25px !important;
    }

    .u-spml25 {
        margin-left: 25px !important;
    }

    .u-spmt30 {
        margin-top: 30px !important;
    }

    .u-spmb30 {
        margin-bottom: 30px !important;
    }

    .u-spmr30 {
        margin-right: 30px !important;
    }

    .u-spml30 {
        margin-left: 30px !important;
    }

    .u-spmt35 {
        margin-top: 35px !important;
    }

    .u-spmb35 {
        margin-bottom: 35px !important;
    }

    .u-spmr35 {
        margin-right: 35px !important;
    }

    .u-spml35 {
        margin-left: 35px !important;
    }

    .u-spmt40 {
        margin-top: 40px !important;
    }

    .u-spmb40 {
        margin-bottom: 40px !important;
    }

    .u-spmr40 {
        margin-right: 40px !important;
    }

    .u-spml40 {
        margin-left: 40px !important;
    }

    .u-spmt45 {
        margin-top: 45px !important;
    }

    .u-spmb45 {
        margin-bottom: 45px !important;
    }

    .u-spmr45 {
        margin-right: 45px !important;
    }

    .u-spml45 {
        margin-left: 45px !important;
    }

    .u-spmt50 {
        margin-top: 50px !important;
    }

    .u-spmb50 {
        margin-bottom: 50px !important;
    }

    .u-spmr50 {
        margin-right: 50px !important;
    }

    .u-spml50 {
        margin-left: 50px !important;
    }

    .u-spmt55 {
        margin-top: 55px !important;
    }

    .u-spmb55 {
        margin-bottom: 55px !important;
    }

    .u-spmr55 {
        margin-right: 55px !important;
    }

    .u-spml55 {
        margin-left: 55px !important;
    }

    .u-spmt60 {
        margin-top: 60px !important;
    }

    .u-spmb60 {
        margin-bottom: 60px !important;
    }

    .u-spmr60 {
        margin-right: 60px !important;
    }

    .u-spml60 {
        margin-left: 60px !important;
    }

    .u-spmt65 {
        margin-top: 65px !important;
    }

    .u-spmb65 {
        margin-bottom: 65px !important;
    }

    .u-spmr65 {
        margin-right: 65px !important;
    }

    .u-spml65 {
        margin-left: 65px !important;
    }

    .u-spmt70 {
        margin-top: 70px !important;
    }

    .u-spmb70 {
        margin-bottom: 70px !important;
    }

    .u-spmr70 {
        margin-right: 70px !important;
    }

    .u-spml70 {
        margin-left: 70px !important;
    }

    .u-spmt75 {
        margin-top: 75px !important;
    }

    .u-spmb75 {
        margin-bottom: 75px !important;
    }

    .u-spmr75 {
        margin-right: 75px !important;
    }

    .u-spml75 {
        margin-left: 75px !important;
    }

    .u-spmt80 {
        margin-top: 80px !important;
    }

    .u-spmb80 {
        margin-bottom: 80px !important;
    }

    .u-spmr80 {
        margin-right: 80px !important;
    }

    .u-spml80 {
        margin-left: 80px !important;
    }

    .u-spmt85 {
        margin-top: 85px !important;
    }

    .u-spmb85 {
        margin-bottom: 85px !important;
    }

    .u-spmr85 {
        margin-right: 85px !important;
    }

    .u-spml85 {
        margin-left: 85px !important;
    }

    .u-spmt90 {
        margin-top: 90px !important;
    }

    .u-spmb90 {
        margin-bottom: 90px !important;
    }

    .u-spmr90 {
        margin-right: 90px !important;
    }

    .u-spml90 {
        margin-left: 90px !important;
    }

    .u-spmt95 {
        margin-top: 95px !important;
    }

    .u-spmb95 {
        margin-bottom: 95px !important;
    }

    .u-spmr95 {
        margin-right: 95px !important;
    }

    .u-spml95 {
        margin-left: 95px !important;
    }

    .u-spmt100 {
        margin-top: 100px !important;
    }

    .u-spmb100 {
        margin-bottom: 100px !important;
    }

    .u-spmr100 {
        margin-right: 100px !important;
    }

    .u-spml100 {
        margin-left: 100px !important;
    }

    .u-spmt105 {
        margin-top: 105px !important;
    }

    .u-spmb105 {
        margin-bottom: 105px !important;
    }

    .u-spmr105 {
        margin-right: 105px !important;
    }

    .u-spml105 {
        margin-left: 105px !important;
    }

    .u-spmt110 {
        margin-top: 110px !important;
    }

    .u-spmb110 {
        margin-bottom: 110px !important;
    }

    .u-spmr110 {
        margin-right: 110px !important;
    }

    .u-spml110 {
        margin-left: 110px !important;
    }

    .u-spmt115 {
        margin-top: 115px !important;
    }

    .u-spmb115 {
        margin-bottom: 115px !important;
    }

    .u-spmr115 {
        margin-right: 115px !important;
    }

    .u-spml115 {
        margin-left: 115px !important;
    }

    .u-spmt120 {
        margin-top: 120px !important;
    }

    .u-spmb120 {
        margin-bottom: 120px !important;
    }

    .u-spmr120 {
        margin-right: 120px !important;
    }

    .u-spml120 {
        margin-left: 120px !important;
    }

    .u-spmt125 {
        margin-top: 125px !important;
    }

    .u-spmb125 {
        margin-bottom: 125px !important;
    }

    .u-spmr125 {
        margin-right: 125px !important;
    }

    .u-spml125 {
        margin-left: 125px !important;
    }

    .u-spmt130 {
        margin-top: 130px !important;
    }

    .u-spmb130 {
        margin-bottom: 130px !important;
    }

    .u-spmr130 {
        margin-right: 130px !important;
    }

    .u-spml130 {
        margin-left: 130px !important;
    }

    .u-spmt135 {
        margin-top: 135px !important;
    }

    .u-spmb135 {
        margin-bottom: 135px !important;
    }

    .u-spmr135 {
        margin-right: 135px !important;
    }

    .u-spml135 {
        margin-left: 135px !important;
    }

    .u-spmt140 {
        margin-top: 140px !important;
    }

    .u-spmb140 {
        margin-bottom: 140px !important;
    }

    .u-spmr140 {
        margin-right: 140px !important;
    }

    .u-spml140 {
        margin-left: 140px !important;
    }

    .u-spmt145 {
        margin-top: 145px !important;
    }

    .u-spmb145 {
        margin-bottom: 145px !important;
    }

    .u-spmr145 {
        margin-right: 145px !important;
    }

    .u-spml145 {
        margin-left: 145px !important;
    }

    .u-spmt150 {
        margin-top: 150px !important;
    }

    .u-spmb150 {
        margin-bottom: 150px !important;
    }

    .u-spmr150 {
        margin-right: 150px !important;
    }

    .u-spml150 {
        margin-left: 150px !important;
    }

    .u-sppt0 {
        padding-top: 0px !important;
    }

    .u-sppb0 {
        padding-bottom: 0px !important;
    }

    .u-sppr0 {
        padding-right: 0px !important;
    }

    .u-sppl0 {
        padding-left: 0px !important;
    }

    .u-sppt5 {
        padding-top: 5px !important;
    }

    .u-sppb5 {
        padding-bottom: 5px !important;
    }

    .u-sppr5 {
        padding-right: 5px !important;
    }

    .u-sppl5 {
        padding-left: 5px !important;
    }

    .u-sppt10 {
        padding-top: 10px !important;
    }

    .u-sppb10 {
        padding-bottom: 10px !important;
    }

    .u-sppr10 {
        padding-right: 10px !important;
    }

    .u-sppl10 {
        padding-left: 10px !important;
    }

    .u-sppt15 {
        padding-top: 15px !important;
    }

    .u-sppb15 {
        padding-bottom: 15px !important;
    }

    .u-sppr15 {
        padding-right: 15px !important;
    }

    .u-sppl15 {
        padding-left: 15px !important;
    }

    .u-sppt20 {
        padding-top: 20px !important;
    }

    .u-sppb20 {
        padding-bottom: 20px !important;
    }

    .u-sppr20 {
        padding-right: 20px !important;
    }

    .u-sppl20 {
        padding-left: 20px !important;
    }

    .u-sppt25 {
        padding-top: 25px !important;
    }

    .u-sppb25 {
        padding-bottom: 25px !important;
    }

    .u-sppr25 {
        padding-right: 25px !important;
    }

    .u-sppl25 {
        padding-left: 25px !important;
    }

    .u-sppt30 {
        padding-top: 30px !important;
    }

    .u-sppb30 {
        padding-bottom: 30px !important;
    }

    .u-sppr30 {
        padding-right: 30px !important;
    }

    .u-sppl30 {
        padding-left: 30px !important;
    }

    .u-sppt35 {
        padding-top: 35px !important;
    }

    .u-sppb35 {
        padding-bottom: 35px !important;
    }

    .u-sppr35 {
        padding-right: 35px !important;
    }

    .u-sppl35 {
        padding-left: 35px !important;
    }

    .u-sppt40 {
        padding-top: 40px !important;
    }

    .u-sppb40 {
        padding-bottom: 40px !important;
    }

    .u-sppr40 {
        padding-right: 40px !important;
    }

    .u-sppl40 {
        padding-left: 40px !important;
    }

    .u-sppt45 {
        padding-top: 45px !important;
    }

    .u-sppb45 {
        padding-bottom: 45px !important;
    }

    .u-sppr45 {
        padding-right: 45px !important;
    }

    .u-sppl45 {
        padding-left: 45px !important;
    }

    .u-sppt50 {
        padding-top: 50px !important;
    }

    .u-sppb50 {
        padding-bottom: 50px !important;
    }

    .u-sppr50 {
        padding-right: 50px !important;
    }

    .u-sppl50 {
        padding-left: 50px !important;
    }

    .u-sppt55 {
        padding-top: 55px !important;
    }

    .u-sppb55 {
        padding-bottom: 55px !important;
    }

    .u-sppr55 {
        padding-right: 55px !important;
    }

    .u-sppl55 {
        padding-left: 55px !important;
    }

    .u-sppt60 {
        padding-top: 60px !important;
    }

    .u-sppb60 {
        padding-bottom: 60px !important;
    }

    .u-sppr60 {
        padding-right: 60px !important;
    }

    .u-sppl60 {
        padding-left: 60px !important;
    }

    .u-sppt65 {
        padding-top: 65px !important;
    }

    .u-sppb65 {
        padding-bottom: 65px !important;
    }

    .u-sppr65 {
        padding-right: 65px !important;
    }

    .u-sppl65 {
        padding-left: 65px !important;
    }

    .u-sppt70 {
        padding-top: 70px !important;
    }

    .u-sppb70 {
        padding-bottom: 70px !important;
    }

    .u-sppr70 {
        padding-right: 70px !important;
    }

    .u-sppl70 {
        padding-left: 70px !important;
    }

    .u-sppt75 {
        padding-top: 75px !important;
    }

    .u-sppb75 {
        padding-bottom: 75px !important;
    }

    .u-sppr75 {
        padding-right: 75px !important;
    }

    .u-sppl75 {
        padding-left: 75px !important;
    }

    .u-sppt80 {
        padding-top: 80px !important;
    }

    .u-sppb80 {
        padding-bottom: 80px !important;
    }

    .u-sppr80 {
        padding-right: 80px !important;
    }

    .u-sppl80 {
        padding-left: 80px !important;
    }

    .u-sppt85 {
        padding-top: 85px !important;
    }

    .u-sppb85 {
        padding-bottom: 85px !important;
    }

    .u-sppr85 {
        padding-right: 85px !important;
    }

    .u-sppl85 {
        padding-left: 85px !important;
    }

    .u-sppt90 {
        padding-top: 90px !important;
    }

    .u-sppb90 {
        padding-bottom: 90px !important;
    }

    .u-sppr90 {
        padding-right: 90px !important;
    }

    .u-sppl90 {
        padding-left: 90px !important;
    }

    .u-sppt95 {
        padding-top: 95px !important;
    }

    .u-sppb95 {
        padding-bottom: 95px !important;
    }

    .u-sppr95 {
        padding-right: 95px !important;
    }

    .u-sppl95 {
        padding-left: 95px !important;
    }

    .u-sppt100 {
        padding-top: 100px !important;
    }

    .u-sppb100 {
        padding-bottom: 100px !important;
    }

    .u-sppr100 {
        padding-right: 100px !important;
    }

    .u-sppl100 {
        padding-left: 100px !important;
    }

    .u-sppt105 {
        padding-top: 105px !important;
    }

    .u-sppb105 {
        padding-bottom: 105px !important;
    }

    .u-sppr105 {
        padding-right: 105px !important;
    }

    .u-sppl105 {
        padding-left: 105px !important;
    }

    .u-sppt110 {
        padding-top: 110px !important;
    }

    .u-sppb110 {
        padding-bottom: 110px !important;
    }

    .u-sppr110 {
        padding-right: 110px !important;
    }

    .u-sppl110 {
        padding-left: 110px !important;
    }

    .u-sppt115 {
        padding-top: 115px !important;
    }

    .u-sppb115 {
        padding-bottom: 115px !important;
    }

    .u-sppr115 {
        padding-right: 115px !important;
    }

    .u-sppl115 {
        padding-left: 115px !important;
    }

    .u-sppt120 {
        padding-top: 120px !important;
    }

    .u-sppb120 {
        padding-bottom: 120px !important;
    }

    .u-sppr120 {
        padding-right: 120px !important;
    }

    .u-sppl120 {
        padding-left: 120px !important;
    }

    .u-sppt125 {
        padding-top: 125px !important;
    }

    .u-sppb125 {
        padding-bottom: 125px !important;
    }

    .u-sppr125 {
        padding-right: 125px !important;
    }

    .u-sppl125 {
        padding-left: 125px !important;
    }

    .u-sppt130 {
        padding-top: 130px !important;
    }

    .u-sppb130 {
        padding-bottom: 130px !important;
    }

    .u-sppr130 {
        padding-right: 130px !important;
    }

    .u-sppl130 {
        padding-left: 130px !important;
    }

    .u-sppt135 {
        padding-top: 135px !important;
    }

    .u-sppb135 {
        padding-bottom: 135px !important;
    }

    .u-sppr135 {
        padding-right: 135px !important;
    }

    .u-sppl135 {
        padding-left: 135px !important;
    }

    .u-sppt140 {
        padding-top: 140px !important;
    }

    .u-sppb140 {
        padding-bottom: 140px !important;
    }

    .u-sppr140 {
        padding-right: 140px !important;
    }

    .u-sppl140 {
        padding-left: 140px !important;
    }

    .u-sppt145 {
        padding-top: 145px !important;
    }

    .u-sppb145 {
        padding-bottom: 145px !important;
    }

    .u-sppr145 {
        padding-right: 145px !important;
    }

    .u-sppl145 {
        padding-left: 145px !important;
    }

    .u-sppt150 {
        padding-top: 150px !important;
    }

    .u-sppb150 {
        padding-bottom: 150px !important;
    }

    .u-sppr150 {
        padding-right: 150px !important;
    }

    .u-sppl150 {
        padding-left: 150px !important;
    }
}

@media screen and (max-width: 1140px) {
    .l-inner {
        padding: 0px 20px;
    }

    .p-column__searchFlex {
        padding-right: 20px;
        padding-left: 20px;
    }

    .p-column__lay {
        padding: 0px 20px;
    }
}

@media screen and (max-width: 1120px) {
    .l-inner--smallPadding {
        padding: 0px 10px;
    }
}

@media screen and (max-width: 740px) {
    .l-inner--small {
        padding: 0px 20px;
    }
}

.c-insta-list {
    display: flex;
    justify-content: center;
    gap: 2px;
}
.c-insta-list li {
    width: calc((100% - 2px * 2) / 3);
    aspect-ratio: 1/1;
}
.c-insta-list li[data-izimodal-open] {
	cursor: pointer;
}
.c-insta-list li a.c-insta-link {
    display: block;
		height: 100%;
}
.c-insta-list li img,
.c-insta-list li video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: top;
}
/* 240827 シングルカラム用調整 */
.c-insta-list.single{
    justify-content:center;
}
.c-insta-list.single li{
    width: min(100%, 500px);
}
/* 240827 シングルカラム用調整 ここまで */

.c-insta-modal {
	height: calc( 85vh -  70px );
	overflow: auto;
	background-color: var(--white);
	padding: 15px;
	display: flex;
	flex-direction: column;
	text-align: center;
	letter-spacing: 0;
	font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.c-insta-modal_cont {
	margin-inline: auto;
	max-width: 100%;
	height: min(calc(100% - 55px), 90%);
	aspect-ratio: 1/1;
}
.c-insta-modal_cont img,
.c-insta-modal_cont video {
	width: 100%;
	height: 100%;
	object-fit: contain;
	vertical-align: top;
}
.c-insta-modal .c-insta-modal_btn {
	display: inline-block;
	width: fit-content;
	margin: auto auto 0;
	padding: 10px 30px;
	border: solid 2px #A68A8F;
	background-color: #A68A8F;
	color: var(--white);
	font-size: clamp( 14px, 2vw, 20px);
	font-weight: 600;
	transition: .3s;
}
.c-insta-modal .c-insta-modal_btn:hover {
	opacity: 1;
	text-decoration: none;
	background-color: var(--white);
	color: #A68A8F;
}

.u-youtube-embedded iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
}

.u-movie {
    width: min(100%,500px);
    margin: 0 auto;
}
.u-movie video {
    width: 100%;
}
.p-ambassador_comment {
	padding: 10px 25px 15px;
	background-color: #F7F1F3;
	line-height: 1.8;
	position: relative;
	z-index: 0;
}

.p-ambassador_comment::after {
	content: "";
	background-color: var(--white);
	border-radius: 5px;
	position: absolute;
	top: 0;
	left: 15px;
	right: 15px;
	bottom: 10px;
	z-index: -1;
}


/* コラム内予約導線 */
.c-banner-reserve {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .c-banner-reserve {
    padding: 0;
  }
}

/* カウントダウン導線 */
.p-column_countdown {
	width: fit-content;
	margin: clamp( 20px, 3vw, 30px) auto clamp( 30px, 4vw, 40px);
}


/* コラムスライダー */
.c-slick_outer {
  background-color: #fff;
  padding: 15px 0 20px;
  box-shadow: 0 3px 6px 1px rgb(0 0 0 / 20%);
}

.c-slick {
  width: calc(100% - 70px);
  margin-inline: auto;
}

.c-slick_item {
  margin-inline: 5px;
}

.c-slick_item--modal {
  cursor: pointer;
  position: relative;
}

.c-slick_item--modal:hover {
  opacity: .8;
}

.c-slick_item--modal::before {
  content: '';
  position: absolute;
  top: 5px;
  right: 6px;
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #000;
  opacity: .5;
}

.c-slick_item--modal::after {
  content: '';
  background: url(../img/common/icon_search_modal.svg) no-repeat;
  position: absolute;
  top: 10px;
  right: 11px;
  z-index: 2;
  width: 20px;
  height: 20px;
  background-size: cover;
}

/* ドット */
.c-slick_dots {
  width: fit-content;
  margin-top: 20px !important;
  margin-inline: auto !important;
  display: flex;
  gap: clamp(10px, 1.5vw, 15px);
}

.c-slick_dots li {
  width: 10px;
  height: 10px;
}

.c-slick_dots button {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: var(--fast-red);
  text-indent: -9999px;
  opacity: .3;
}

.c-slick_dots button:hover {
	opacity: .6;
}

.c-slick_dots li.slick-active button {
	opacity: 1;
}

/* 矢印 */
.c-slick_prev,
.c-slick_next {
  position: absolute;
  top: calc(50% - 21px);
  display: block;
  cursor: pointer;
}

.c-slick_prev:hover,
.c-slick_prev:focus,
.c-slick_next:hover,
.c-slick_next:focus {
  opacity: 0.7
}

.c-slick .c-slick_prev,
.c-slick .c-slick_next {
	width: 20px;
	height: 20px;
	opacity: 1;
	transition: .4s;
	transform: rotate(45deg);
	border: 1px solid #000000;
}

.c-slick .c-slick_prev {
	left: -20px;
	border-top: transparent;
	border-right: transparent;
}

.c-slick .c-slick_next {
	right: -20px;
	border-bottom: transparent;
	border-left: transparent;
}

.c-slick .c-slick_prev:hover,
.c-slick .c-slick_next:hover {
  content: "";
	opacity: .4;
}

@media screen and (max-width: 640px) {
  .c-slick_outer {
    padding: 10px 0 20px;
  }
  
  .c-slick {
    width: 100%;
  }

  .slick-list {
    padding: 0 5px;
  }

  .c-slick_item {
    margin-inline: 5px;
  }

  .c-slick_dots {
    margin-top: 25px !important;
  }

  .c-slick .c-slick_prev,
  .c-slick .c-slick_next {
    /* width: 20px;
    height: 20px; */
    border-width: 2px;
    top: unset;
    bottom: -3px;
  }

  .c-slick .c-slick_prev {
    left: 20px;
  }

  .c-slick .c-slick_next {
    right: 20px;
  }

  .c-slick_item--modal::before {
    width: 25px;
    height: 25px;
    top: 3px;
    right: 3px;
  }

  .c-slick_item--modal::after {
    width: 15px;
    height: 15px;
    top: 8.5px;
    right: 8.5px;
  }
}



.c-insta-modal.--small {
  height: initial !important;
}

.c-insta-modal_cont.--small {
    margin-bottom: 15px;
    aspect-ratio: initial;
}

/* 250509 イエベブルべ比較用横並び */
.p-columnBox__comparison {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}
.p-columnBox__comparison.--gapMiddle {
    gap: clamp(25px, 3vw, 30px);
}
.p-columnBox__comparisonItem {
    width: min(530px, 100%);
}

/* h3-colorchange start */
.p-tagStyles .p-columnBox__comparisonItem h3:not([class*=c-]):not([class*=p-])::after {
    content: none;
}
.p-tagStyles .p-columnBox__comparisonItem h3 {
    padding: .6em;
    text-align:center;
}
.p-tagStyles .p-columnBox__comparisonItem.ylw h3 {
    background-color: #f5f596;
    color: #3b4043;
}
.p-tagStyles .p-columnBox__comparisonItem.blue h3 {
    background-color: #a2dae6;
    color: #3b4043;
}
/* end */

ul.c-comparison {
    margin-bottom: clamp(20px, 2.5vw, 25px);
}
ul.c-comparison li {
    position: relative;
    color: #3b4043;
    padding-left: clamp(13px, 1.8vw, 18px);
    line-height: 1.6;
    margin-bottom: 8px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
ul.c-comparison li::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 10px;
    width: clamp(5px, 0.8vw, 8px);
    height: clamp(5px, 0.8vw, 8px);
    background-color: #B12028;
    border-radius: 50%;
}
.u-ff-yugoshic-bold::after{content:"…";margin:0 .4em;}
/* 250509 イエベブルべ比較用 ここまで */
