:root{
  --btn-gold: #d4af37;
  --btn-gold-dark: #b8922d;
  --btn-text: #111;
  --btn-shadow: rgba(0,0,0,.25);
  --btn-focus: rgba(212,175,55,.35);
}

.winterplus tr.is-gray { background: #666666; }
.winterplus a { text-decoration: underline; }

/* ───────── すべてのアコーディオンを“常に開く” ───────── */
/* 1) 隠しがちなプロパティを親子ごと解除（2段階目も含めてフル開放） */
.accordion_contents .accodion_wrapper,
.accordion_contents .toggle_contents,
.accordion_contents .toggle_txt {
  display: block !important;
  max-height: none !important;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}

/* 2) よくある「閉→開」アニメの影響をゼロに（読み込み直後に閉じ戻るのを防ぐ） */
.accordion_contents .accodion_wrapper,
.accordion_contents .toggle_contents,
.accordion_contents .toggle_txt {
  transition: none !important;
  animation: none !important;
}

/* 3) 見出しの“開いている風”の見た目を補強（任意。使ってなければ削除OK） */
.accordion_contents .toggle_btn,
.accordion_contents .toggle_btn.selected,
.accordion_contents .toggle_btn.open {
  /* 例:
  background: #f7f7f7;
  font-weight: 600;
  */
}

/* 4) よくある「.toggle_btn + .toggle_txt {display:none;}」の逆転対策 */
.toggle_btn + .toggle_txt {
  display: block !important;
}

/* 5) 万一、ID付きで強く閉じてくるCSSへの対抗（必要ならIDを実ページのラッパに合わせて） */
/* 例: #wrap や #contents など、実ページの親IDに置き換えるとさらに確実 */
#wrap .accordion_contents .toggle_txt,
#wrap .accordion_contents .accodion_wrapper,
#wrap .accordion_contents .toggle_contents {
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
}


/* a要素をボタン化（exchange.comへのリンクのみ対象） */
.item_section .text-box a[href*="exchange.com"]{
  display:inline-flex;
  align-items:center;
  gap:.5em;
padding: 1.0em 3.2em;
  border-radius:9999px;              /* pill形 */
  background: var(--btn-gold);
  color: var(--btn-text);
  border: 1px solid var(--btn-gold-dark);
  font-weight: 700;
  text-decoration: none;             /* もともとの下線を消す */
  box-shadow: 0 6px 16px var(--btn-shadow);
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, border-color .12s ease;
  cursor: pointer;
  line-height: 1;                    /* 縦位置を安定 */
  white-space: nowrap;
}

/* <u>が入っていても下線が付かないように */
.item_section .text-box a[href*="exchange.com"] u{
  text-decoration: none !important;
}


/* Hover / Active */
.item_section .text-box a[href*="exchange.com"]:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px var(--btn-shadow);
  background: linear-gradient(to bottom, #e0c25b, var(--btn-gold));
  border-color: var(--btn-gold);
}
.item_section .text-box a[href*="exchange.com"]:active{
  transform: translateY(0);
  box-shadow: 0 4px 12px var(--btn-shadow) inset, 0 4px 12px var(--btn-shadow);
}

/* キーボード操作のフォーカスリング */
.item_section .text-box a[href*="exchange.com"]:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px var(--btn-focus), 0 8px 18px var(--btn-shadow);
}


.item_section .text-box a[href*="exchange.com"]{
  color: var(--btn-text);
}

/* スマホ時は横幅に合わせて押しやすく */
@media (max-width: 600px){
  .item_section .text-box a[href*="exchange.com"]{
    display: inline-flex;
    width: 100%;
    justify-content: center;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
  }
}

/* アニメ苦手な人向け：最小化 */
@media (prefers-reduced-motion: reduce){
  .item_section .text-box a[href*="exchange.com"]{
    transition: none;
  }
}

.gourmet-title {
  font-size: 1.8em;
  color: #b22222;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.gourmet-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.gourmet-col {
  flex: 1;
  min-width: 200px;
}

.gourmet-img img {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.gourmet-name {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gourmet-desc {
  font-size: 0.95em;
  line-height: 1.6;
  color: #444;
}

.sub-headline {
  font-size: 1.4em;
  margin: 30px 0 15px;
  text-align: center;
  font-weight: bold;
  color: #333;
  border-bottom: 2px solid #ddd;
  padding-bottom: 8px;
}

.container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.column {
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  min-width: 250px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.column img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

@media screen and (max-width: 768px) {
  .column {
    flex: 1 1 100%;
  }
}

    .container1 {
      display: flex;
      align-items: center;
      gap: 80px;
      padding: 20px;
    }

    .image-box {
      flex-shrink: 0;
    }

    .image-box img {
      width: 350px;
      height: auto;
      border-radius: 10px;
    }

    .text-box {
      white-space: pre-line;
      flex: 1;
      font-size:16px;
      text-align: left;
    }

    /* スマホ対応 */
    @media (max-width: 768px) {
      .container1 {
        flex-direction: column;
        text-align: center;
        gap: 30px;        
         padding: 20px;
      }

      .image-box img {
        width: 100%;
      }
      
      
    }

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9アスペクト比 (高さ ÷ 幅 × 100) */
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

a.cart_btn {
    max-width: 320px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    font-weight: bold;
    line-height: 1;
    display: block;
    color: #fff;
    box-sizing: border-box;
    background-color: #003c91;
    font-size: 1.8rem;
    line-height: 1.3;
    padding: 1rem;
    vertical-align: middle;
    margin-top: 4rem;
}
a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.c-course{
align-items:center;border-radius:60px;color:#fff;display:flex;font-size:3.2vw;font-weight:700;height:5.0666666667vw;justify-content:center;width:9.8666666667vw}

    .c-course {
        font-size: .875rem;
        height: 22px;
        width: 39px;
    }
}

.c-course {
    align-items: center;
    border-radius: 60px;
    color: #fff;
    display: flex
;
    font-size: 3.2vw;
    font-weight: 700;
    height: 5.0666666667vw;
    justify-content: center;
    width: 9.8666666667vw;
}

.c-course.--s{background-color:#6978af}
.c-course.--t{background-color:#1967a9}
.c-course.--a{background-color:#46a97a}
.c-course.--b{background-color:#a0ba54}
.c-course.--c{background-color:#dbb42b}
.c-course.--n{background-color:#da8f27}
.c-course.--d{background-color:#e0701f}
.c-course.--e{background-color:#8c314b}
.c-course.--g{background-color:#aa8e51}
.c-course.--l{background-color:#ec6e7c}
.c-course__wrap{display:flex;gap:1.3333333333vw}

@media (min-width:768px){

.c-course__wrap{flex-wrap:wrap;gap:5px}

}

 .c-course__wrap{display:flex;flex-wrap:wrap;}
 
.scroll-notice {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: none; /* 初期状態は非表示 */
}

.table-wrapper {
    overflow-x: auto; /* 横スクロール可能に */
    position: relative;
}


.sp-only {
    display: none; /* デフォルトでは非表示 */
}

        /* .winterplus Table Style */
        .winterplus {
            font-size:13px;
            width: 100%;
            border-collapse: collapse;
            font-family: Arial, sans-serif;
            background-color: #f0f8ff; /* アイスブルーの背景色 */
            color: #333; /* 文字色 */
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .winterplus th, .winterplus td {
            padding: 12px 15px;
            border: 1px solid #b3e5fc; /* 境界線の色 */
            text-align: center;
        }

        .winterplus th {
            background-color: #0099cc; /* 濃いブルーのヘッダー */
            color: white;
            font-weight: bold;
            text-transform: uppercase;
            border-bottom: 2px solid #007bb2; /* ヘッダーの強調線 */
        }

        .winterplus tr:nth-child(even) {
            /*background-color: #e0f7ff;*/
        }

        .winterplus tr:hover {
            background-color: #ccf2ff; /* 行ホバー時の淡い青色 */
            transition: background-color 0.3s ease;
        }

        .winterplus td {
            position: relative;
        }

        .winterplus td::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
            opacity: 0.1;
            pointer-events: none;
        }

        .winterplus caption {
            caption-side: bottom;
            padding: 10px;
            font-style: italic;
            color: #666;
        }

/* アコーディオン のスタイル */
.accordion {
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* アコーディオンの見出しスタイル */
.accordion .title {
  background-color: #f5f5f5;
  padding: 10px;
  cursor: pointer;
  display: block;
}

/* アコーディオンのコンテンツスタイル */
.accordion .content {
  padding: 10px;
  display: none;
}

/* ラジオボタンを非表示にする */
.accordion input[type="radio"] {
  display: none;
}

/* ラジオボタンが選択されたときのコンテンツの表示 */
.accordion input[type="radio"]:checked ~ .content {
  display: block;
}


    /* スタイルの設定 */
    body {
      margin: 0;
      padding: 0;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
    }

    .column {
      flex: 1 1 25%;
      padding: 10px;
      box-sizing: border-box;
    }

    .column img {
      width: 95%;
      height: auto;
    }

    .column h3 {
      margin-top: 10px;
    }



ul.cp_list {
	padding: 0.5em;
	list-style: none;
}
ul.cp_list li {
	position: relative;
	padding: 0.5em 1em 0.5em 2.3em;
	margin-bottom:5px;
	border-bottom: 1px solid #125289;
}
ul.cp_list li:after,
ul.cp_list li:before {
	content:'';
	position: absolute;
	transform: rotate(45deg);
}
ul.cp_list li:before {
	top: 0.7em;
	left: 0.2em;
	width: 12px;
	height: 12px;
	border:2px solid #125289;
}
ul.cp_list li:after {
	top: 0.9em;
	left: 0.7em;
	width: 14px;
	height: 14px;
	background: #125289;
	transform: rotate(60deg);
}
    


section.item_section:last-of-type {
    margin-bottom: 5rem !important;
}

.img_trimming2 a {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100%;
}

@font-face {
  font-family: 'fontello';
  src: url('https://www.ticketport.co.jp/lp/common/css/fontello/font/fontello.eot?63389225');
  src: url('https://www.ticketport.co.jp/lp/common/css/fontello/font/fontello.eot?63389225#iefix') format('embedded-opentype'),
       url('https://www.ticketport.co.jp/lp/common/css/fontello/font/fontello.woff2?63389225') format('woff2'),
       url('https://www.ticketport.co.jp/lp/common/css/fontello/font/fontello.woff?63389225') format('woff'),
       url('https://www.ticketport.co.jp/lp/common/css/fontello/font/fontello.ttf?63389225') format('truetype'),
       url('https://www.ticketport.co.jp/lp/common/css/fontello/font/fontello.svg?63389225#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

.news_contents {
    width: 61.6666%;
    padding: 4rem 0;
}

#shiharai::before {
    display: block;
    height: 22rem;
    margin-top: -22rem;
    content: "";
}

#hikiwatashi::before {
    display: block;
    height: 22rem;
    margin-top: -22rem;
    content: "";
}

#henpin::before {
    display: block;
    height: 22rem;
    margin-top: -22rem;
    content: "";
}

.rc-headline__subHeadline {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 0;
    font-size: 26px;
    font-weight: 600;
    color: #004c80;
    text-align: center;
    background-color: #a1d3e6;
    margin-top: 40px;
}

.rc-headline__subHeadline3 {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 0;
    font-size: 26px;
    font-weight: 600;
    color: #492e00;
    text-align: center;
    background-color: #ffa200;
    margin-top: 40px;
}

.rc-headline__subHeadline2 {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 0;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    background-color: #126096;
    margin-top: 40px;
}

.rc-headline__subHeadline4 {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 0;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    background-color: #126096;
    margin-top: 40px;
}


.rc-headline__subHeadline3 {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 0;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    background-color: #0092d7;
    margin-top: 40px;
}

.rc-headline__subHeadline4 {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 0;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background-color: #7eb72a;
    margin-top: 40px;
}

.rc-headline__subHeadline5 {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 0;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background-color: #f08c14;
    margin-top: 40px;
}


.rc-headline__headline::after {
    position: absolute;
    top: -47px;
    left: calc(50% - 19px);
    display: block;
    width: 39px;
    height: 24px;
    content: "";

    background-repeat: no-repeat;
    background-size: contain;
}


.rc-headline__headline::after5 {
    position: absolute;
    top: -47px;
    left: calc(50% - 19px);
    display: block;
    width: 39px;
    height: 24px;
    content: "";

    background-repeat: no-repeat;
    background-size: contain;
}




section.item_section .contents {
    margin-bottom: 0rem;
    width: 23.0888%;
}

.img_trimming1 {
    margin-bottom: 2rem;
}
.img_trimming1 {
    width: 100%;
    position: relative;
}


.img_trimming1:before {
    content: "";
    display: block;
    padding-top: 40%;
}

.rc-headline__headline {
    position: relative;
    margin-bottom: 32px;
    font-size: 36px;
    color: #492e00;
    letter-spacing: 1.8px;
    text-align: center;
}



.rc-headline__headline > a {
    color: #004c80;
    text-decoration: none;
    transition: 0.3s;
}

.banner_space_div{
 text-align:center;
}

.banner_space{
 width:80%;
}

.telicon{
vertical-align: top;
}

section.item_section .contents3 {
    margin-bottom: 0rem;
    width: 32.0888%;
}


.rc-headline__headline2 {
    position: relative;
    margin-bottom: 32px;
    font-size: 36px;
    color: #887a5f;
    letter-spacing: 1.8px;
    text-align: center;
}

.rc-headline__headline3 {
    font-size: 25px;
}

.rc-headline__subHeadline::after {
    position: absolute;
    bottom: -15px;
    left: 50%;
    display: block;
    width: 32px;
    height: 16px;
    align:center;
    content: "";
    background-image: url(https://www.ticketport.co.jp/assets/images/headline-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateX(-50%);
}

.rc-headline__subHeadline2::after {
    position: absolute;
    bottom: -15px;
    left: 50%;
    display: block;
    width: 32px;
    height: 16px;
    align:center;
    content: "";
    background-image: url(https://www.ticketport.co.jp/assets/images/headline-arrow2.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateX(-50%);
}

.rc-headline__subHeadline3::after {
    position: absolute;
    bottom: -15px;
    left: 50%;
    display: block;
    width: 32px;
    height: 16px;
    align:center;
    content: "";
    background-image: url(https://ji0073pesta02.blob.core.windows.net/public/any/image/2024/04/660bcd25f2194.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateX(-50%);
}

.rc-headline__subHeadline5::after {
    position: absolute;
    bottom: -15px;
    left: 50%;
    display: block;
    width: 32px;
    height: 16px;
    align:center;
    content: "";
    background-image: url(https://ji0073pesta02.blob.core.windows.net/public/any/image/2024/09/66fa0dd3ead30.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateX(-50%);
}



.item_section{
    background-color: #ffffff !important;
}

.flex1 {
    flex-wrap: wrap;
    justify-content: space-between;
}

.fax_moji {
    font-size:12px;

}

.gift_banner{
    padding-bottom:40px;
}

section.item_section {
    margin: 0 auto 0rem;
}

section.item_section .contents1 {

    width: 32.0888%;
}

.corporation {
    padding: 20px;
    font-size:20px;
    background: #f5f1e9;
    margin: 0 0 55px 0;
    line-height: 1.5;
    text-align: left;
}


.corporation2 {
    padding: 20px;
    font-size:20px;
    background: #f5f1e9;
    margin: 0 0 15px 0;
    line-height: 1.5;
    text-align: left;
}

.corporation3 {
    padding: 20px;
    font-size:20px;
    background: #fffde6;
    margin: 0 0 15px 0;
    line-height: 1.5;
    text-align: left;
}


.number_box {
    padding: 0 0 20px 0;
    width: 100%;
    background: #fff;
    margin: 15px auto 0px;
    display: inline-block;
    text-align: center;
    background: #f5f1e9;
}

.title {
    width: auto;
    background: #555555;
    color: #ffffff;
    padding: 10px 20px;
}

.number_box .number li {
    display: inline-table;
    font-size: 30px;
    color: #004b85;
    line-height:10px;
    padding: 30px 28px 10px 28px;
    margin: 0;
    width: 25.1%;
    /* float: left; */
}

 .number_box .btn li {
    display: inline-block;
    padding: 10px 10px;
}

.icon-tel:before {
    content: '\e803';
}

.icon-fax:before {
    content: '\e809';
}

.btn a {
    width:50%;
    display: block;
    margin-top: 20px;
    height: 100%;
    text-decoration: none;
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    box-shadow: 5px 5px 0px 0px #dedede;
}

.button_info2 {
    line-height: 20px;
    background-color: #126096;
    color: #ffffff;
    width: auto;
    height: 100%;
    padding: 10px 80px;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    /* opacity: .8; */
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    /* font-size: 120%; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* text-shadow: 1px 1px 1px rgb(127 127 127 / 30%); */
}

.number_box .btn li {
    display: inline-block;
    padding: 10px 10px;
}

section.item_section .contents2 {
    margin-bottom: 0rem;
    width: 100%;
}

.img_trimming2:before {
    content: "";
    display: block;
    /* padding-top: 100%; */
}


.img_trimming2 a {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
}

.img_trimming1 a {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
}

.img_trimming2 a {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100%;

}

dl.news_contents {
    width: 61.6666%;
    padding: 4rem 0;
}

.img_trimming{
  position: relative;
}
.top-left {
  position: absolute;
  top: 5px;
  left: 5px;
}


.ranking-columns-label1 {
    padding-top: 5px;
    background: #ab9352 ;
    background-size: auto 0.7vw;
    position: absolute;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    box-sizing: border-box;
    top: -20px;
    left: 0;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    line-height: 1.7;
}

.ranking-columns-label2 {
    padding-top: 5px;
    background: #8da1ab;
    background-size: auto 0.7vw;
    position: absolute;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    box-sizing: border-box;
    top: -20px;
    left: 0;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    line-height: 1.7;
}

.ranking-columns-label3 {
    padding-top: 5px;
    background: #c2917e;
    background-size: auto 0.7vw;
    position: absolute;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    box-sizing: border-box;
    top: -20px;
    left: 0;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    line-height: 1.7;
}

.ranking-columns-label4 {
    padding-top: 5px;
    background: #666 ;
    background-size: auto 0.7vw;
    position: absolute;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    box-sizing: border-box;
    top: -20px;
    left: 0;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    line-height: 1.7;
}

.brand {
    color: white;
    text-align: left;
    padding: 1%;
    padding-left: 5%;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.brand2 {
    color: white;
    text-align: left;
    padding: 1%;
    padding-left: 5%;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.brand5 {
    color: white;
    text-align: left;
    padding: 1%;
    padding-left: 5%;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.brand7 {
    color: white;
    text-align: left;
    padding: 1%;
    padding-left: 5%;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.brand8 {
    color: white;
    text-align: left;
    padding: 1%;
    padding-left: 5%;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.brand9 {
    color: white;
    text-align: left;
    padding: 1%;
    padding-left: 5%;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.brand10 {
    color: white;
    text-align: left;
    padding: 1%;
    padding-left: 5%;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.brand11 {
    color: white;
    text-align: left;
    padding: 1%;
    padding-left: 5%;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.brand12 {
    color: white;
    text-align: left;
    padding: 1%;
    padding-left: 5%;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.brand13 {
    color: white;
    text-align: left;
    padding: 1%;
    padding-left: 5%;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.brand14 {
    color: white;
    text-align: left;
    padding: 1%;
    padding-left: 5%;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.brand15 {
    color: white;
    text-align: left;
    padding: 1%;
    padding-left: 5%;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.brand16 {
    color: white;
    text-align: left;
    padding: 1%;
    padding-left: 5%;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.brand17 {
    color: white;
    text-align: left;
    padding: 1%;
    padding-left: 5%;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}


.cate01 {
    background-color: #bd042f;
}

.cate02 {
    background-color: #f66719;
}

.cate03 {
    background-color: #f66719;
}

.cate04 {
    background-color: #ef93b6;
}

.cate05 {
    background-color: #74a29f;
}

.cate06 {
    background-color: #eb3b3b;
}

.cate07 {
    background-color: #fea27d;
}

.cate08 {
    background-color: #003c91;
}

.cate09 {
    background-color: #78b9e3;
}

.cate10 {
    background-color: #0c2965;
}

.cate11 {
    background-color: #c9492e;
}

.cate12 {
    background-color: #bc2222;
}

.cate13 {
    background-color: #ff8add;
}

.cate14 {
    background-color: #ff8add;
}
.cate15 {
    background-color: #81bfa1;
}
.cate16 {
    background-color: #eb7689
}

.cate17 {
    background-color: #00b1dd
}

table {
    border-top: 1px solid #4f4d47;
    border-right: 1px solid #4f4d47;
    width: 100%;
    border-spacing: 0;
    margin: 0 auto;
}
th, td {
    border-bottom: 1px solid #4f4d47;
    border-left: 1px solid #4f4d47;
    text-align: center;
    padding: 5px;
}
th { background-color: #74a29f; color: #000;}
td {text-align:left;}


ol.sample1{
  counter-reset:list;
  list-style-type:none;
  font: 14px/1.6 'arial narrow', sans-serif;
  padding: 0;
}
ol.sample1 li{
  position:relative;
  line-height: 30px;
  margin: 7px 20px 20px 40px;
  padding-left:10px;
  font-size:14px;
  border-bottom:solid 1px #ffb600;
}
ol.sample1 li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: -30px;
  width: 30px;
  height: 32px;
  background: #ffb600;
  text-align: center;
  color: #fff;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {

    .scroll-notice {
        display: block; /* SP画面で案内を表示 */
    }

    .sp-only {
        display: block; /* SP画面で表示 */
    }

    .winterplus {
        display: block;
        overflow-x: auto; /* 横スクロールを可能にする */
    }

    .winterplus th, .winterplus td {
        padding: 10px; /* 狭い画面で余白を少し縮小 */
        white-space: nowrap; /* テキストが折り返されないように */
    }

.news_contents {
    width: 100%;
    margin-bottom: 3rem;
    padding: 0;
}

.corporation2 {
    padding: 20px;
    font-size: 15px;
    background: #f5f1e9;
    margin: 0 0 15px 0;
    line-height: 1.5;
    text-align: left;
}

.banner_space{
 width:100%;
}

.img_trimming1 .img {

    max-width: 70%;

}


.rc-headline__headline2 {
    font-size: 14px;
    line-height:20px;

}

.rc-headline__headline3 {
    font-size: 17px;
}

section.item_section .contents3 {
    width: 47.0149%;
    margin-bottom: 3rem;
}

.corporation {
    padding: 20px;
    font-size: 15px;
    background: #f5f1e9;
    margin: 0 0 15px 0;
    line-height: 1.5;
    text-align: left;
    font-weight: bold;
}

.rc-headline__subHeadline {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 0;
    font-size: 20px;
    font-weight: 600;
    color: #004c80;
    text-align: center;
    background-color: #a1d3e6;
}

.rc-headline__subHeadline2 {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    background-color: #126096;
}

.number_box .number li {
    display: inline-table;
    font-size: 27px;
    color: #004b85;
    padding: 30px 55px 0px 55px;
    margin: 0;
    width: 70.1%;
    /* float: left; */
}

.rc-headline__headline {
    position: relative;
    margin-bottom: 32px;
    font-size: 18px;
    color: #004c80;
    letter-spacing: 1.8px;
    text-align: center;
}

.rc-headline__headline2 {
    position: relative;
    margin-bottom: 32px;
    font-size: 20px;
    color: #887a5f;
    letter-spacing: 1.8px;
    text-align: center;
}

section.item_section .contents1 {
    margin-bottom: 0rem;
    width: 98.0888%;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

section.item_section .contents {
    width: 47.0149%;
    margin-bottom: 3rem;
}

#shiharai::before {
    display: block;
    height: 22rem;
    margin-top: -22rem;
    content: "";
}

#hikiwatashi::before {
    display: block;
    height: 22rem;
    margin-top: -22rem;
    content: "";
}

#henpin::before {
    display: block;
    height: 22rem;
    margin-top: -22rem;
    content: "";
}

.contetns{
  position: relative;
}
.top-left {
  position: absolute;
  top: 25px;
  left: 25px;
}


.ranking-columns-label1 {
    padding-top: 5px;
    background: #ab9352 ;
    background-size: auto 0.7vw;
    position: absolute;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    box-sizing: border-box;
    top: -40px;
    left: -20px;

    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    line-height: 1.7;
}

.ranking-columns-label2 {
    padding-top: 5px;
    background: #8da1ab;
    background-size: auto 0.7vw;
    position: absolute;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    box-sizing: border-box;
    top: -40px;
    left: -20px;

    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    line-height: 1.7;
}

.ranking-columns-label3 {
    padding-top: 5px;
    background: #c2917e;
    background-size: auto 0.7vw;
    position: absolute;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    box-sizing: border-box;
    top: -40px;
    left: -20px;

    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    line-height: 1.7;
}

.ranking-columns-label4 {
    padding-top: 5px;
    background: #666 ;
    background-size: auto 0.7vw;
    position: absolute;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    box-sizing: border-box;
    top: -40px;
    left: -20px;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    line-height: 1.7;
}



}


    /* メディアクエリを使用して、画面の幅が600px未満の場合にカラムの幅を100%にする */
    @media screen and (max-width: 600px) {
      .column {
        flex: 1 1 100%;
      }
      
.corporation {
    font-size: 15px;
    background: #f5f1e9;
    margin: 0 0 15px 0;
    line-height: 1.5;
    text-align: left;
    font-weight: bold;
}

.-inBlock {
    display: inline-block;
}
      

.rc-headline__subHeadline3 {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    background-color: #0092d7;
    margin-top: 40px;
    padding: 10px;
}      
      
    }
