/*
Theme Name: main2026
Theme URI: 
Description: 
Author: ailylab
Author URI: 
Version: 1.0.0
*/

img[src=""] {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 70%;
    border: 1px solid #eee;
}
img[src=""]:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 24px;
    white-space: nowrap;
    content: "※画像準備中※";
}

/****************************************
1.Setting
*****************************************/
html, body, div, span, a, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, address, em, img, dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figcaption, figure, footer, header, menu, nav, section, time, video {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    color: #000;
    font-size: 1.6em; /* 16px */
    font-family: "Noto Sans Japanese", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    overflow-x: hidden;
    line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}

a {
    color: #359ddd;
}

a:hover {
    color: #76b6dd;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

p {
    line-height: 1.75;
}

figcaption {
    padding: 0.5em;
    text-align: center;
}

a:hover > figure > img {
    opacity: 0.8;
}

table {
    width: 100%;
    border-collapse: collapse;
}

address {
    font-style: normal;
}

.cf:after {
    display: block;
    clear: both;
    content: "";
}

@media screen and (max-width: 767px) {
    .for-pc {
        display: none !important;
    }
}
@media screen and (min-width: 768px) {
    .for-sp {
        display: none !important;
    }
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

.if_wrapper {
    position: relative;
    padding-bottom: 56.25%;
}
.if_wrapper iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* .pagination {
    display: flex;
    justify-content: center;
    margin: 60px 0px 0px;
} */

/* .pagination > a,
.pagination > span {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 2em;
    height: 2em;
    margin: 30px 0.5em 0px;
    border: 1px solid #0046ae;
    font-weight: bold;
} */

/* .pagination > a:link,
.pagination > a:visited,
.pagination > a:active,
.pagination > a:hover {
    color: #034aa6;
    text-decoration: none;
}
.pagination > .prev,
.pagination > .next {
    border: 1px solid transparent;
    background-color: transparent;
}
.pagination > .prev:before,
.pagination > .next:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.5em;
    height: 0.5em;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
}
.pagination > .prev:before {
    transform: translateX(-50%) translateY(-50%) rotate(225deg);
}
.pagination > .next:before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
} */

/* .pagination > .current {
    background-color: #0046ae;
    color: #fff;
} */

/* .link_prev,
.link_next {
    position: relative;
    padding: 0px 1em;
} */

/* .link_prev {
    float: left;
}
.link_next {
    float: right;
} */

/* .link_prev:before,
.link_next:after {
    position: absolute;
    top: 50%;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
}
.link_prev:before {
    left: 0px;
    transform: translateY(-50%) rotate(225deg);
}
.link_next:after {
    right: 0px;
    transform: translateY(-50%) rotate(45deg);
} */

/* .breadcrumb {
    display: flex;
    padding: 1em 0px;
    list-style: none;
}
.breadcrumb > li {
    position: relative;
    font-size: 14px;
}
.breadcrumb > li:nth-of-type(n + 2) {
    padding: 0px 0px 0px 2.5em;
}
.breadcrumb > li:nth-of-type(n + 2):before {
    position: absolute;
    top: 50%;
    left: 1em;
    width: 0.5em;
    height: 0.5em;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid #dedede;
    border-top: 2px solid #dedede;
    content: "";
} */


/*-------------------------------

  フェイドインアニメーション

  -------------------------------*/

.effect-fade {
    opacity : 0;
    transform : translateY(60px);
    transition: .6s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.effect-fade.js-active {
    opacity : 1;
    transform : translateY(0);
}


/*-------------------------------

  ページトップボタン

  -------------------------------*/

#btn_scroll_top {
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 999;
    transform: translate3d(0,0,0);
    transition:  0.35s;
}
#btn_scroll_top.js-hidden {
    transform: translate3d(0,100%,0);
}
#btn_scroll_top a {
    display: block;
    height: 60px;
    width: 60px;
    background-color: #dd3345;
    line-height: 60px;
    text-decoration: none;
    z-index: 100;
    position: relative;
}
@media screen and (max-width: 767px) {
    #btn_scroll_top a {
        width: 50px;
        height: 50px;
    }
}
#btn_scroll_top a:hover {
    background-color: #d4051a;
}
#btn_scroll_top a::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25%) rotate(-45deg);
}
#btn_scroll_top span {
    display: block;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

/*-------------------------------

  共通パーツ

  -------------------------------*/

.container {
    max-width: 1180px;
    width: 90%;
    margin: 0 auto;
}
.home .container {
    max-width: 1260px;
}

  
/*-------------------------------

  ヘッダー（共通）

  -------------------------------*/

.header {
    position: relative;
    z-index: 999;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 50px;
    padding-right: 14px;
}
@media screen and (max-width: 767px) {
    .header-inner {
        height: 35px;
        padding-right: 11px;
        background-color: transparent;
        position: absolute;
        top: 0;
        right: 0;
    }
}
@media screen and (max-width: 767px) {
    .header-nav {
        display: none;
    }
}
.header-nav_list {
    display: flex;
}
.header-nav_item {
    list-style-type: none;
}
.header-nav_item:nth-child(n+2) {
    margin-left: 16.4px;
}
.header-nav_item > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32.6px;
    height: 32.6px;
    border-radius: 50%;
    background-color: #dd3345;
    text-align: center;
    transition: .2s;
}
.header-nav_item > a:hover {
    background-color: #d48e95;
}

.header-btn {
    /* ボタンの初期スタイルリセット */
    outline: none;
    border: none;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
    appearance: none;
    
    width: 35px;
    height: 30px;
    margin-left: 24.7px;
}
@media screen and (max-width: 767px) {
    .header-btn {
        width: 20px;
        height: 100%;
        padding-top: 5px;
    }
}
.header-btn_bar {
    display: block;
    height: 6px;
    background-color: #dd3345;
    transition: .2s;
}
@media screen and (max-width: 767px) {
    .header-btn_bar {
        background-color: #fff;
        height: 3px;
    }
}
.header-btn:hover .header-btn_bar {
    background-color: #d48e95;
}
.header-btn_bar:nth-child(n+2) {
    margin-top: 6px;
}

.header-toggle {
    background-color: #333;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    box-shadow: 15px 0 10px -10px rgba(0,0,0,0.3) inset;
    transition: .5s;
    z-index: 20;
}
@media screen and (max-width: 767px) {
    .header-toggle {
        width: 80%;
    }
}
.header-toggle.js-show {
    transform: translateX(-100%);
}
.header-toggle ul {
    color: #fff;
}
.header-toggle li {
    list-style-type: none;
    border-bottom: 1px solid rgba(255,255,255,.2);
}
.header-toggle a {
    display: block;
    min-width: 400px;
    padding: 1em 2em;
    background-color: #333;
    color: inherit;
    text-decoration: none;
    transition: .3s;
    box-shadow: 15px 0 10px -10px rgba(0,0,0,0.3) inset;
    font-weight: 200;
    letter-spacing: .2em;
}
@media screen and (max-width: 767px) {
    .header-toggle a {
        min-width: 0;
        font-size: 14px;
    }
}
.header-toggle a:hover {
    background-color: #dd3345;
}
.header-toggle_close {
    text-align: right;
}

.header-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: .5s;
    pointer-events: none;
    opacity: 0;
    z-index: 10;
}
.header-overlay.js-show {
    background-color: rgba(0,0,0,.5);
    pointer-events: auto;
    opacity: 1;
}

/*-------------------------------

  フロントページ

  -------------------------------*/

/* メインビジュアル */
.mv {
    position: relative;
    height: calc(100vh - 100px);
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .mv {
        height: 100vh;
    }
}
.mv_bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.mv_bg-01,
.mv_bg-02,
.mv_bg-03,
.mv_bg-04 {
    height: calc(100vh - 100px);
}
@media screen and (max-width: 767px) {
    .mv_bg-01,
    .mv_bg-02,
    .mv_bg-03,
    .mv_bg-04 {
        height: 100vh;
    }
}

.mv_bg-01 {
    background: url(./images/top/header1.PNG) no-repeat center center / cover;
}
@media screen and (max-width: 767px) {
    .mv_bg-01 {
        background-image: url(./images/top/header1_sp.jpeg);
    }
}
.mv_bg-02 {
    background: url(./images/top/header2.PNG) no-repeat center center / cover;
}
@media screen and (max-width: 767px) {
    .mv_bg-02 {
        background-image: url(./images/top/header2_sp.jpeg);
    }
}
.mv_bg-03 {
    background: url(./images/top/header3.PNG) no-repeat center center / cover;
}
@media screen and (max-width: 767px) {
    .mv_bg-03 {
        background-image: url(./images/top/header3_sp.jpeg);
    }
}
.mv_bg-04 {
    background: url(./images/top/mv_img-04.jpg) no-repeat center center / cover;
}
@media screen and (max-width: 767px) {
    .mv_bg-04 {
        background-image: url(./images/top/mv_img-04-sp.jpg);
    }
}
.mv_text-main {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.mv_text-main .container {
    height: 100%;
    position: relative;
    width: 65%;
}
@media screen and (max-width: 767px) {
    .mv_text-main .container {
        width: 90%;
    }
}
.mv_text-main img {
    display: block;
    width: 40.3%;
    position: absolute;
    right: 0;
    top: 42%;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .mv_text-main img {
        width: 50%;
        top: 51%;
    }
}
.mv_text-sub {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.mv_text-sub img {
    position: absolute;
    top: 3.39%;
    left: 4.67%;
    width: 15.5%;
}
@media screen and (max-width: 767px) {
    .mv_text-sub img {
        width: 41%;
        right: 0;
        bottom: 11.4%;
        left: 0;
        margin: auto auto 0;
    }
}
.mv_scroll {
    display: block;
    width: 122px;
    height: 122px;
    margin: 0 auto;
    background: url(./images/top/mv_scroll.png) no-repeat center center / contain;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateY(45%);
}
@media screen and (max-width: 767px) {
    .mv_scroll {
        width: 61px;
        height: 61px;
    }
}

.mv_rotate {
    width: 25%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(45%, -50%);
}
@media screen and (max-width: 767px) {
    .mv_rotate {
        display: none;
    }
}
.mv_rotate_frame {
    padding-top: 100%;
    position: relative;
    z-index: 0;
}
.mv_rotate_frame::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(./images/top/rotate_frame.svg) no-repeat center center / 100% 100%;
    z-index: 1;
    pointer-events: none;
}

.mv_rotate_frame_border-outer {
    width: 70.71%;
    height: 70.71%;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: rotate(45deg);
}

.mv_rotate_frame_corner-01,
.mv_rotate_frame_corner-02,
.mv_rotate_frame_corner-03,
.mv_rotate_frame_corner-04 {
    border-width: 26px;
    border-style: solid;
    border-radius: 50%;
    position: absolute;
    transition: .5s;
    cursor: pointer;
}
.mv_rotate_frame_corner-01 {
    border-color: transparent rgba(255,255,255,.5) transparent transparent;
    left: 0;
    bottom: 0;
    transform: translate(-50%, 50%) rotate(-45deg);
}
.mv_rotate_frame_corner-01.js-current {
    border-right-color: rgba(221, 51, 69, .4);
    border-width: 65px;
}
.mv_rotate_frame_corner-02 {
    border-color: transparent transparent rgba(255,255,255,.5) transparent;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.mv_rotate_frame_corner-02.js-current {
    border-bottom-color: rgba(221, 51, 69, .4);
    border-width: 65px;
}
.mv_rotate_frame_corner-03 {
    border-color: transparent transparent transparent rgba(255,255,255,.5);
    right: 0;
    top: 0;
    transform: translate(50%, -50%) rotate(-45deg);
}
.mv_rotate_frame_corner-03.js-current {
    border-left-color: rgba(221, 51, 69, .4);
    border-width: 65px;
}
.mv_rotate_frame_corner-04 {
    border-color: rgba(255,255,255,.5) transparent transparent transparent;
    right: 0;
    bottom: 0;
    transform: translate(50%, 50%) rotate(-45deg);
}
.mv_rotate_frame_corner-04.js-current {
    border-top-color: rgba(221, 51, 69, .4);
    border-width: 65px;
}

.mv_rotate_inner,
.mv_rotate_person1,
.mv_rotate_person2,
.mv_rotate_person3,
.mv_rotate_person4,
.mv_rotate_person1 > img,
.mv_rotate_person2 > img,
.mv_rotate_person3 > img,
.mv_rotate_person4 > img {
    transition: .5s;
}
.mv_rotate_person1 {
    display: block;
    width: 28px;
    position: absolute;
    left: 13px;
    top: 0;
    transform: translate(-50%, -100%);
}
.js-current .mv_rotate_person1 {
    left: 32.5px;
}
.mv_rotate_person1 > img {
    display: block;
    width: 100%;
    transform-origin: center bottom;
}
.mv_rotate_person2 {
    display: block;
    width: 41.8px;
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translate(-50%, -100%);
}
.js-current .mv_rotate_person2 {
    top: 32.5px;
}
.mv_rotate_person2 > img {
    display: block;
    width: 100%;
    transform-origin: center bottom;
}
.mv_rotate_person3 {
    display: block;
    width: 34.7px;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translate(50%, -100%);
}
.js-current .mv_rotate_person3 {
    right: 32.5px;
}
.mv_rotate_person3 > img {
    display: block;
    width: 100%;
    transform-origin: center bottom;
}
.mv_rotate_person4 {
    display: block;
    width: 19px;
    position: absolute;
    bottom: 13px;
    left: 50%;
    transform: translate(-50%, 0);
}
.js-current .mv_rotate_person4 {
    bottom: 32.5px;
}
.mv_rotate_person4 > img {
    display: block;
    width: 100%;
    transform-origin: center bottom;
}

.mv_rotate_point {
    width: 56px;
    height: 56px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: .6%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.mv_rotate_point::after {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    margin: auto;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
/* .mv_rotate_frame_border-inner {
    width: 60%;
    height: 60%;
    margin: auto;
    border: 1px solid rgba(255,255,255,.39);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
} */

/* Pro Golfer for Life */
@media screen and (max-width: 767px) {
    .top-pro .container {
        width: 80%;
    }
}

.top-pro_inner {
    margin-top: 85px;
    padding-top: 17px;
    padding-bottom: 134px;
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 767px) {
    .top-pro_inner {
        margin-top: 49px;
        padding-top: 39px;
        padding-bottom: 18px;
    }
}
.top-pro_inner::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 59.5%;
    background: url(./images/top/pro_bg-pc.jpg) no-repeat center center / cover;
    z-index: -1;
}
@media screen and (max-width: 767px) {
    .top-pro_inner::before {
        height: 400px;
        background: url(./images/top/pro_bg-sp.jpg) no-repeat center top / cover;
        left: 0;
    }
}
.top-pro_heading {
    color: #dd3345;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 72px;
    letter-spacing: .05em;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .top-pro_heading {
        margin-bottom: 292px;
        font-size: 30px;
    }
}
.top-pro_heading::after {
    content: '';
    display: block;
    width: 348px;
    height: 5px;
    margin: .666em auto 0;
    background-color: #000;
}
@media screen and (max-width: 767px) {
    .top-pro_heading::after {
        width: 174px;
        height: 2.5px;
    }
}
.top-pro_text-first {
    margin-top: 2em;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.333;
    letter-spacing: .2em;
}
@media screen and (max-width: 767px) {
    .top-pro_text-first {
        padding-top: 7px;
        font-size: 24px;
        letter-spacing: .1em;
        line-height: 1.625;
        text-align: center;
    }
}
.top-pro_text-second {
    margin-top: 3.31em;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.75;
    letter-spacing: .2em;
}
@media screen and (max-width: 767px) {
    .top-pro_text-second {
        margin-top: 11px;
        font-size: 11px;
        letter-spacing: .05em;
        text-align: center;
    }
}


/* 戦績とNEWS */
.result-news-box {
    margin-top: 101px;
}
@media screen and (max-width: 767px) {
    .result-news-box {
        margin-top: 37px;
    }
}
.result-news-box > .container {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    .result-news-box > .container {
        display: block;
        width: 80%;
    }
}
.result-news-box_left {
    width: 47.6%;
}
@media screen and (max-width: 767px) {
    .result-news-box_left {
        width: 100%;
    }
}
.result-news-box_right {
    width: 47.6%;
}
@media screen and (max-width: 767px) {
    .result-news-box_right {
        width: 100%;
    }
}

/* 戦績 */
.top-results_inner {
    background-color: #dd3345;
    padding-bottom: 12.5px;
}
@media screen and (max-width: 767px) {
    .top-results_inner {
        padding-bottom: 6px;
    }
}
.top-results_heading {
    padding: .25em .9em .25em;
    position: relative;
    font-weight: 500;
    color: #fff;
    font-size: 36px;
    letter-spacing: .15em;
}
@media screen and (max-width: 767px) {
    .top-results_heading {
        font-size: 18px;
    }
}
.top-results_heading::after {
    content: '';
    display: block;
    width: 124px;
    height: 40px;
    border-top: 20px solid transparent;
    border-right: 62px solid #000;
    border-bottom: 20px solid #000;
    border-left: 62px solid transparent;
    position: absolute;
    right: 0;
    bottom: 0;
}
@media screen and (max-width: 767px) {
    .top-results_heading::after {
        width: 62px;
        height: 20px;
        border-width: 10px 31px;
    }
}
.top-results_list {
    border-bottom: 4px solid #000;
}
@media screen and (max-width: 767px) {
    .top-results_list {
        border-bottom-width: 2px;
    }
}
.top-results_list ol {
    height: 27.5em;
    font-size: 15.5px;
    overflow-y: auto;
    text-align: center;
    background-color: #f7f7f7;
}
@media screen and (max-width: 767px) {
    .top-results_list ol {
        height: 22em;
        font-size: 10px;
    }
}
.top-results_list li {
    display: flex;
    align-items: center;
    height: 2.5em;
	height:4em;
    padding-left: 5%;
	padding-right:5%;
    text-align: left;
}
@media screen and (max-width: 767px) {
    .top-results_list li {
		/*height:2em;*/
        height: 4em;
		padding-left:4%;
		padding-right:4%;
    }
}
.top-results_list li > span:nth-child(1) {
    width: 10%;
}
.top-results_list li > span:nth-child(2) {
    width: 90%;
}

.top-results_list li:nth-child(odd) {
    background-color: #DFE0E0;
}
.top-results_list li:nth-child(even) {
    background-color: #FFFFFF;
}

/* NEWS */
.top-news {
    height: 100%;
}
@media screen and (max-width: 767px) {
    .top-news {
        margin-top: 49px;
    }
}
.top-news_inner {
    /* display: flex;
    flex-direction: column; */
    height: 100%;
    padding: 17.36px 8.333% 0;
    background-color: #FFD8D3;
}
@media screen and (max-width: 767px) {
    .top-news_inner {
        height: 262px;
        padding-top: 6px;
    }
}
.top-news_heading {
    font-weight: 400;
    font-family: 'Anton', sans-serif;
    color: #dd3345;
    font-size: 42px;
    letter-spacing: .05em;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .top-news_heading {
        font-size: 18px;
    }
}
.top-news_list {
    font-size: 16.67px;
    letter-spacing: .2em;
	overflow-x: hidden; 
	overflow-y: scroll; 
	max-height: 400px;
	padding-right: 10px;
}
@media screen and (max-width: 767px) {
    .top-news_list {
        font-size: 9px;
		overflow-x: hidden; 
		overflow-y: auto; 
		max-height: 200px;
    }
}
.top-news_item {
    list-style-type: none;
}
.top-news_item {
    margin-top: 2em;
}
@media screen and (max-width: 767px) {
    .top-news_item {
        margin-top: 1.8em;
    }
}
.top-news_item span {
    margin-right: 2em;
    color: #FF8A86;
}
.top-news_item a {
    text-decoration: none;
    color: inherit;
}

/* 所属 */
.top-affiliation {
    height: 600px;
    margin-top: 176px;
    background: url(./images/top/affiliation_bg.jpg) no-repeat center bottom / cover;
    position: relative;
}
@media screen and (max-width: 767px) {
    .top-affiliation {
        height: 331px;
        margin-top: 45.5px;
        padding-bottom: 80px;
        background-clip: content-box;
    }
}
.top-affiliation_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 51.2%;
    height: 247px;
    margin: auto 0 auto auto;
    background: url(./images/top/affiliation_inner_bg.png) no-repeat center center / 100% 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
@media screen and (max-width: 767px) {
    .top-affiliation_inner {
        width: 90%;
        height: 123.5px;
        margin: 0 auto;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
    }
}
.top-affiliation_inner img {
    margin-left: 8.98%;
    margin-top: 20px;
    width: 360px;
}
@media screen and (max-width: 767px) {
    .top-affiliation_inner img {
        width: 180px;
        margin-top: 30px;
    }
}
.top-affiliation_inner p {
    margin-left: 8.98%;
    margin-top: 1.666em;
    font-size: 24px;
    letter-spacing: .2em;
    font-weight: 500;
    text-indent: .3em;
}
@media screen and (max-width: 767px) {
    .top-affiliation_inner p {
        font-size: 12px;
    }
}

/* SPONSOR */
.top-sponsor_inner {
    padding-top: 100px;
}
@media screen and (max-width: 767px) {
    .top-sponsor_inner {
        padding-top: 42px;
    }
}
.top-sponsor_heading {
    color: #dd3345;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 42px;
    letter-spacing: .05em;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .top-sponsor_heading {
        font-size: 24px;
    }
}
.top-sponsor_heading::after {
    content: '';
    display: block;
    width: 111.772px;
    height: 1.8362px;
    margin: .786em auto 0;
    background-color: #000;
}
@media screen and (max-width: 767px) {
    .top-sponsor_heading::after {
        width: 55.8px;
        height: 1.1px;
    }
}
.top-sponsor_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 51px;
    padding: 0 4.6875%;
}
@media screen and (max-width: 767px) {
    .top-sponsor_list {
        margin-top: 40px;
        margin-bottom: -15.9px;
        padding: 0 8.7%;
    }
}
.top-sponsor_list_item {
    display: block;
    width: 22.5%;
    text-align: center;
    font-size: 18px;
    letter-spacing: .2em;
    font-weight: 500;
}
@media screen and (max-width: 767px) {
    .top-sponsor_list_item {
        width: 47%;
        margin-bottom: 20px;
        font-size: 13px;
    }
}
.top-sponsor_list_item:nth-child(4n+2),
.top-sponsor_list_item:nth-child(4n+3),
.top-sponsor_list_item:nth-child(4n+4) {
    margin-left: 3%;
}
@media screen and (max-width: 767px) {
    .top-sponsor_list_item:nth-child(even) {
        margin-left: 6%;
    }
}
/* スポンサー募集 */
.top-recruit {
    margin-top: 183px;
}
@media screen and (max-width: 767px) {
    .top-recruit {
        margin-top: 36.44px;
    }
}
@media screen and (max-width: 767px) {
    .top-recruit .container {
        width: 80%;
    }
}
.top-recruit_inner {
    height: 705px;
    padding: 0 4.84%;
    background: url(./images/top/recruit.png) no-repeat center center / contain;
    position: relative;
}
@media screen and (max-width: 767px) {
    .top-recruit_inner {
        height: 279px;
        background: none;
    }
}
.top-recruit_box {
    width: 602px;
    height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto 8.5% auto auto;
    padding: 0 5.9% 0 8.5%;
    background: url(./images/top/recruit_box_bg-top.png) no-repeat center top / 100% auto,
                url(./images/top/recruit_box_bg-bottom.png) no-repeat center bottom / 100% auto;
    background-color: rgba(255,255,255,.85);
    box-shadow: 3px 4px 5px 2px rgba(0,0,0,.2);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 5%;
    left: 0;
}
@media screen and (max-width: 767px) {
    .top-recruit_box {
        width: 100%;
        height: 100%;
        margin: 0;
        background: none;
        border-top: 10px solid #dd3345;
        border-bottom: 10px solid #dd3345;
        box-shadow: 2px 2px 4px 2px rgba(0,0,0,.2);
    }
}
.top-recruit_heading {
    margin-top: 1em;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: .2em;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .top-recruit_heading {
        margin-top: 1em;
        font-size: 18px;
    }
}
.top-recruit_text {
    margin-top: 2em;
    margin-bottom: 2em;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: .2em;
}
@media screen and (max-width: 767px) {
    .top-recruit_text {
        font-size: 11px;
        letter-spacing: 0;
    }
}
.top-recruit_btn {
    text-align: center;
}
.top-recruit_btn > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 61px;
    min-width: 256px;
    background-color: #000;
    color: #fff;
    font-weight: 100;
    font-size: 19.3px;
    letter-spacing: .2em;
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .top-recruit_btn > a {
        min-width: 128px;
        height: 30.5px;
        font-family: 'Anton', sans-serif;
        font-weight: 400;
        font-size: 20px;
        letter-spacing: 0;
        transform: scaleX(.9);
    }
}

/* パララックス2 */
.top-parallax-02 {
    height: 700px;
    margin-top: 52px;
    background: url(./images/top/parallax-02.jpg) no-repeat center bottom / cover;
}
@media screen and (max-width: 767px) {
    .top-parallax-02 {
        height: 250px;
        margin-top: 64px;
    }
}

/* ツイッターとインスタグラム */
.twitter-instagram-box {
    margin-top: -77px;
}
@media screen and (max-width: 767px) {
    .twitter-instagram-box {
        margin-top: -53px;
    }
}
.twitter-instagram-box_inner {
    padding-top: 55px;
    background-color: rgba(255,255,255,.8);
}
@media screen and (max-width: 767px) {
    .twitter-instagram-box_inner {
        padding-top: 37px;
    }
}
.twitter-instagram-box_inner {
    display: flex;
    justify-content: space-around;
}
@media screen and (max-width: 767px) {
    .twitter-instagram-box_inner {
        display: block;
    }
}
.twitter-instagram-box_left {
    width: 46%;
}
@media screen and (max-width: 767px) {
    .twitter-instagram-box_left {
        width: 92%;
        margin: 0 auto;
    }
}
.twitter-instagram-box_right {
    width: 46%;
}
@media screen and (max-width: 767px) {
    .twitter-instagram-box_right {
        width: 92%;
        margin: 0 auto;
    }
}

/* ツイッター */
.top-twitter_heading,
.top-instagram_heading {
    position: relative;
    margin-bottom: 26.41px;
}
@media screen and (max-width: 767px) {
    .top-twitter_heading,
    .top-instagram_heading {
        margin-bottom: 24.5px;
    }
}
.top-twitter_heading::before,
.top-instagram_heading::before {
    content: '';
    display: block;
    height: 3px;
    border-top: 3px solid #dd3345;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .top-twitter_heading::before,
    .top-instagram_heading::before {
        border-width: 2px;
    }
}
.top-twitter_heading img,
.top-instagram_heading img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
    .top-twitter_heading img {
        width: 17.2px;
    }
    .top-instagram_heading img {
        width: 15.05px;
    }
}
.top-twitter_heading::after,
.top-instagram_heading::after {
    content: '';
    display: table;
    margin: 0 auto;
    width: 65.18px;
    height: 65.18px;
    border-radius: 50%;
    background-color: #dd3345;
}
@media screen and (max-width: 767px) {
    .top-twitter_heading::after,
    .top-instagram_heading::after {
        width: 32.5px;
        height: 32.5px;
    }
}
.top-twitter_box {
    padding-top: 100%;
    position: relative;
}
.top-twitter_box_inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 14px;
    left: 0;
    overflow-y: auto;
}

/* インスタグラム */
@media screen and (max-width: 767px) {
    .top-instagram {
        margin-top: 37px;
    }
}
.top-instagram_box {
    padding-top: 100%;
    position: relative;
}
.top-instagram_box_inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
}


/* BLOG */
.top-blog {
    margin-top: 93px;
}
@media screen and (max-width: 767px) {
    .top-blog {
        margin-top: 34px;
    }
}
.top-blog_heading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.9em;
    background-color: #868686;
    color: #fff;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 42px;
    letter-spacing: .05em;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .top-blog_heading {
        height: 3.54em;
        font-size: 12px;
        letter-spacing: .2em;
        font-family: "Noto Sans Japanese", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
        font-weight: 500;
    }
}
.top-blog_text-top {
    margin-top: 55px;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: .2em;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .top-blog_text-top {
        margin-top: 43px;
        font-size: 12px;
    }
}
.top-blog_archive {
    display: flex;
    justify-content: space-around;
    justify-content: center;
    margin-top: 63px;
}
@media screen and (max-width: 767px) {
    .top-blog_archive {
        display: block;
        margin-top: 30px;
    }
}
.top-blog_archive_item {
    list-style-type: none;
    width: 26.5%;
}
@media screen and (max-width: 767px) {
    .top-blog_archive_item {
        width: auto;
        padding: 5%;
    }
}
.top-blog_archive_item:nth-child(n+2) {
    margin-left: 7%;
}
@media screen and (max-width: 767px) {
    .top-blog_archive_item:nth-child(n+2) {
        margin-left: 0;
        border-top: 1px solid #8A8A8A;
    }
}
.top-blog_archive_item_link {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: .5s;
}
@media screen and (max-width: 767px) {
    .top-blog_archive_item_link {
        padding-left: 115px
    }
}
.top-blog_archive_item_link:hover {
    color: inherit;
    opacity: .8;
}
.top-blog_archive_item_link::after {
    content: '>';
    position: absolute;
    right: 0;
    bottom: 0;
    font-weight: 100;
    font-size: 19px;
    letter-spacing: .2em;
}
@media screen and (max-width: 767px) {
    .top-blog_archive_item_link::after {
        font-size: 10px;
    }
}
.top-blog_archive_item_thumbnail {
    text-align: center;
}
.top-blog_archive_item_thumbnail img {
    width: 215px;
    height: auto;

}
@media screen and (max-width: 767px) {
    .top-blog_archive_item_thumbnail {
        position: absolute;
        top: 4px;
        left: 0;
    }
    .top-blog_archive_item_thumbnail img {
        width: 92px;
    }
}
.top-blog_archive_item_heading {
    margin-top: 1.8em;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: .2em;
}
@media screen and (max-width: 767px) {
    .top-blog_archive_item_heading {
        margin-top: 0;
        font-size: 12px;
    }
}
.top-blog_archive_item_excerpt {
    margin-top: 2.1em;
    font-weight: 100;
    letter-spacing: .2em;
    font-size: 14px;
}
@media screen and (max-width: 767px) {
    .top-blog_archive_item_excerpt {
        margin-top: 1em;
        font-size: 9px;
    }
}
.top-blog_archive_item_date {
    margin-top: 2.26em;
    color: #8A8A8A;
    font-weight: 100;
    letter-spacing: .2em;
    font-size: 18px;
}
@media screen and (max-width: 767px) {
    .top-blog_archive_item_date {
        margin-top: 1em;
        font-size: 9px;
    }
}

/* PROFILE */
.top-profile {
    margin-top: 190px;
}
@media screen and (max-width: 767px) {
    .top-profile {
        margin-top: 67.5px;
    }
}
.top-profile_box {
    text-align: center;
}
.top-profile_box_top {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 400px;
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 767px) {
    .top-profile_box_top {
        height: 200px;
    }
}
.top-profile_box_top_inner {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    padding-top: 67.5px;
    background-color: rgba(255,255,255,.8);
}
@media screen and (max-width: 767px) {
    .top-profile_box_top_inner {
        width: 83.9%;
        padding-top: 45px;
    }
}
.top-profile_heading {
    color: #dd3345;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 42px;
    letter-spacing: .05em;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .top-profile_heading {
        font-size: 21px;
    }
}
.top-profile_heading::after {
    content: '';
    display: block;
    width: 2px;
    height: 99px;
    margin: 76.5px auto 0;
    border-right: 2px solid #000;
}
@media screen and (max-width: 767px) {
    .top-profile_heading::after {
        width: 1px;
        height: 49px;
        margin-top: 38px;
    }
}
.top-profile_box_top_bg {
    width: 50%;
    margin: 0 auto 0 0;
    background: url(./images/top/profile_box_top_bg.jpg) no-repeat center center / cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
@media screen and (max-width: 767px) {
    .top-profile_box_top_bg {
        width: auto;
        background-image: url(./images/top/profile_box_top_bg-sp.jpg);
    }
}
.top-profile_box_bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 400px;
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 767px) {
    .top-profile_box_bottom {
        height: 200px;
    }
}
.top-profile_box_bottom_inner {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    padding: 24px 0 50px;
    background-color: rgba(255,255,255,.8);
}
@media screen and (max-width: 767px) {
    .top-profile_box_bottom_inner {
        width: 83.9%;
        padding: 10px 0 14px;
    }
}
.top-profile_box_text-01 {
    font-size: 24px;
    letter-spacing: .2em;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .top-profile_box_text-01 {
        font-size: 12px;
    }
}
.top-profile_box_text-02 {
    margin-top: .125em;
    font-size: 80px;
    letter-spacing: .2em;
    font-weight: 100;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .top-profile_box_text-02 {
        font-size: 40px;
    }
}
.top-profile_box_text-03 {
    margin-top: 1.2em;
    font-size: 21.67px;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .top-profile_box_text-03 {
        font-size: 10.8px;
    }
}
.top-profile_box_text-04 {
    margin-top: 2.5em;
    font-size: 18px;
    letter-spacing: .2em;
}
@media screen and (max-width: 767px) {
    .top-profile_box_text-04 {
        font-size: 9px;
    }
}
.top-profile_box_bottom_bg {
    width: 50%;
    margin: 0 0 0 auto;
    background: url(./images/top/profile_box_bottom_bg.PNG) no-repeat center center / cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
@media screen and (max-width: 767px) {
    .top-profile_box_bottom_bg {
        width: auto;
        background-image: url(./images/top/profile_box_bottom_bg-sp.jpg);
    }
}
.top-profile_second_text {
    max-width: 772px;
    width: 100%;
    margin: 54px auto 0;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: .2em;
}
@media screen and (max-width: 767px) {
    .top-profile_second_text {
        width: 81.3%;
        margin-top: 14px;
        font-size: 10px;
        letter-spacing: 0;
    }
}
.top-profile_second_list {
    display: flex;
    justify-content: space-between;
    max-width: 864px;
    width: 100%;
    margin: 85px auto 0;
}
@media screen and (max-width: 767px) {
    .top-profile_second_list {
        margin-top: 36px;
    }
}
.top-profile_second_list_item {
    list-style-type: none;
    width: 29.74%;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .top-profile_second_list_item {
        width: 31.5%;
    }
}
.top-profile_second_list_item p:nth-child(1) {
    font-weight: 300;
    font-size: 16px;
    letter-spacing: .2em;
}
@media screen and (max-width: 767px) {
    .top-profile_second_list_item p:nth-child(1) {
        font-size: 9px;
    }
}
.top-profile_second_list_item p:nth-child(1)::after {
    content: '';
    display: block;
    width: 44px;
    height: 2px;
    margin: 13px auto 0;
    border-top: 2px solid #000;
}
@media screen and (max-width: 767px) {
    .top-profile_second_list_item p:nth-child(1)::after {
        width: 14px;
        height: 1.1px;
        margin-top: 9px;
    }
}
.top-profile_second_list_item p:nth-child(2) {
    margin-top: 23px;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: .2em;
    white-space: nowrap;
}
@media screen and (max-width: 767px) {
    .top-profile_second_list_item p:nth-child(2) {
        margin-top: 9px;
        font-size: 9px;
        letter-spacing: .1em;
    }
}
.top-profile_second_list_item img {
    margin-top: 43px;
}
@media screen and (max-width: 767px) {
    .top-profile_second_list_item img {
        margin-top: 10px;
    }
}

/* MESSAGE */
.top-message {
    margin-top: 173px;
}
@media screen and (max-width: 767px) {
    .top-message {
        margin-top: 34px;
    }
    .top-message .container {
        width: 100%;
    }
}

.top-message_inner {
    display: flex;
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 767px) {
    .top-message_inner {
        flex-direction: column;
    }
}
.top-message_box {
    width: 795px;
    height: 544px;
    margin-top: 116px;
    margin-right: -152px;
    padding: 51px 61px 0 76px;
    background-color: rgba(255,255,255,.8);
}
@media screen and (max-width: 767px) {
    .top-message_box {
        width: 93.33%;
        height: auto;
        margin: -200px auto 0;
        padding: 23px 26px;
        order: 2;
    }
}
.top-message_heading {
    font-weight: 500;
    font-size: 36px;
    letter-spacing: .2em;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .top-message_heading {
        font-size: 20px;
    }
}
.top-message_text {
    margin-top: 82px;
    letter-spacing: .2em;
    font-weight: 200;
}
@media screen and (max-width: 767px) {
    .top-message_text {
        margin-top: 32px;
        font-size: 11px;
        letter-spacing: 0;
    }
}
.top-message_bg {
    flex-grow: 1;
    height: 721px;
    background: url(./images/top/message_bg.jpg) no-repeat center center / cover;
    position: relative;
    z-index: -1;
}
@media screen and (max-width: 767px) {
    .top-message_bg {
        order: 1;
        height: 444.5px;
        background-position: center top;
    }
}
.top-message_text-bottom {
    margin-top: 153px;
    text-align: center;
    letter-spacing: .2em;
    font-weight: 300;
}
@media screen and (max-width: 767px) {
    .top-message_text-bottom {
        margin-top: 70px;
        font-size: 9px;
    }
}


/*-------------------------------

  フッター（共通）

  -------------------------------*/

.footer {
    margin-top: 125px;
    background: url(./images/common/footer.PNG) no-repeat center center / cover;
    position: relative;
    z-index: 0;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .footer {
        margin-top: 40px;
        background: url(./images/common/footer_bg-sp.jpg) no-repeat left center / cover;
    }
}
.footer_box-01 {
    border-top: 91px solid rgba(0,0,0,.55);
    background-clip: padding-box;
    background-color: rgba(221, 51, 69, .48);
}
@media screen and (max-width: 767px) {
    .footer_box-01 {
        border-top-width: 45px;
    }
}
.footer_box-01_inner {
    width: 323px;
    height: 168px;
    margin-left: auto;
    padding-top: 18px;
}
@media screen and (max-width: 767px) {
    .footer_box-01_inner {
        display: table;
        width: auto;
        height: 84px;
        padding: 8px;
    }
}
.footer_box-01_inner p:nth-child(1) {
    font-size: 14px;
    font-weight: 100;
}
@media screen and (max-width: 767px) {
    .footer_box-01_inner p:nth-child(1) {
        font-size: 12px;
    }
}
.footer_box-01_inner p:nth-child(2) {
    margin-top: 16px;
    font-size: 24px;
    letter-spacing: .2em;
    font-weight: 100;
}
@media screen and (max-width: 767px) {
    .footer_box-01_inner p:nth-child(2) {
        margin-top: 6px;
        font-size: 16px;
    }
}
.footer_box-01_inner p:nth-child(3) {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 100;
}
@media screen and (max-width: 767px) {
    .footer_box-01_inner p:nth-child(3) {
        margin-top: 0;
        font-size: 9px;
    }
}
.footer_box-02 {
    background-color: rgba(0,0,0,.55);
}
.footer_box-02_inner {
    height: 428px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 52px;
}
@media screen and (max-width: 767px) {
    .footer_box-02_inner {
        height: auto;
        align-items: stretch;
        flex-direction: column;
        flex-wrap: nowrap;
        padding-bottom: 13px;
    }
}
.footer_box-02_left {
    padding-left: 49px;
}
@media screen and (max-width: 767px) {
    .footer_box-02_left {
        order: 2;
        display: flex;
        align-items: flex-start;
        padding-left: 0;
        margin-top: 30px;
    }
}
.footer_box-02_left img {
    width: 147.666px;
    padding-left: 4.44px;
}
@media screen and (max-width: 767px) {
    .footer_box-02_left img {
        width: 73.8px;
        padding-left: 22px;
    }
}
.footer_box-02_left p {
    margin-top: 30px;
    color: #fff;
    font-weight: 100;
    font-size: 14px;
    letter-spacing: .2em;
}
@media screen and (max-width: 767px) {
    .footer_box-02_left p {
        margin-top: 0;
        margin-left: auto;
        font-size: 7px;
    }
}
.footer_box-02_right {
    width: 323px;
}
@media screen and (max-width: 767px) {
    .footer_box-02_right {
        order: 1;
        width: auto;
        margin-top: 15px;
    }
}
.footer_box-02_nav-page {
    font-size: 14px;
    font-weight: 100;
}
@media screen and (max-width: 767px) {
    .footer_box-02_nav-page {
        text-align: center;
    }
}
.footer_box-02_nav-page li {
    list-style-type: none;
}
.footer_box-02_nav-page li:nth-child(n+2) {
    margin-top: .4em;
}
.footer_box-02_nav-page a {
    text-decoration: none;
    color: inherit;
    transition: .2s ease;
}
.footer_box-02_nav-page a:hover {
    color: #dd3345;
}
.footer_box-02_nav-page a::after {
    content: '>';
    margin-left: .5em;
}
.footer_box-02_nav-sns {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .footer_box-02_nav-sns {
        display: none;
    }
}
.footer_box-02_nav-sns ul {
    display: flex;
}
.footer_box-02_nav-sns li {
    list-style-type: none;
}
.footer_box-02_nav-sns li:nth-child(n+2) {
    margin-left: 16.4px;
}
.footer_box-02_nav-sns li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32.6px;
    height: 32.6px;
    border-radius: 50%;
    background-color: #dd3345;
    text-align: center;
}
.footer_box-02_bottom {
    width: 100%;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: .05em;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .footer_box-02_bottom {
        order: 3;
        margin-top: 10px;
    }
}

/*-------------------------------

  投稿ページ

  -------------------------------*/

.mv-page {
    height: 450px;
    margin-top: -50px;
    position: relative;
    background: url(./images/blog/mv_bg.jpg) no-repeat center center / cover;
}
@media screen and (max-width: 767px) {
    .mv-page {
        height: 250px;
        margin-top: 0;
    }
}
.post-type-archive-news .mv-page,
.single-news .mv-page {
    background: url(./images/news/mv_bg.jpg) no-repeat center center / cover;
}
.mv-page_text {
    display: flex;
    align-items: center;
    height: 60px;
    background-color: rgba(221, 51, 69, .8);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    color: #fff;
    font-size: 20px;
    opacity: 0;
    transition: 1.0s ease 2.5s;
}
.post-type-archive-news .mv-page_text,
.single-news .mv-page_text {
    background-color: rgba(28,109,0,0.5);
}
/* @keyframes opacityAnimation {
    0% { }
    100% { opacity: 1; }
} */
.mv-page_text.animate {
    /* animation: opacityAnimation 1.0s ease forwards 2.5s; */
    opacity: 1;
}

.page-heading {
    display: flex;
    align-items: center;
    height: 81px;
    background-color: #f5f5f5;
}
.page-heading_text {
    font-weight: 300;
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    .breadcrumb {
        margin-bottom: 20px;
        border-bottom: 1px solid #ddd;
    }
}
.breadcrumb ul {
    display: flex;
    align-items: center;
    padding: 40px 0;
}
@media screen and (max-width: 767px) {
    .breadcrumb ul {
        padding: 20px 0;
    }
}
.breadcrumb li {
    list-style-type: none;
    font-weight: 100;
    font-size: 12px;
}
.breadcrumb li:nth-child(n+2)::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin: 0 .7em;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: scale(.6) rotate(45deg);
}
.breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: .2s ease;
}
.breadcrumb a:hover {
    color: #dd3345;
}
.breadcrumb_icon-home {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(./images/common/icon-home.png) no-repeat center center / contain;
    transform: translateY(1px);
    transition: .2s ease;
}
.breadcrumb a:hover .breadcrumb_icon-home {
    background-image: url(./images/common/icon-home-hover.png);
}

@media screen and (max-width: 767px) {
    .post-type-archive-news .post-list .container {
        margin-top: -20px;
        width: 100%;
    }
}
.post-list_heading {
    display: flex;
    align-items: center;
    height: 59px;
    margin-bottom: 22px;
    border: 1px solid #ddd;
    padding: 0 23px;
    box-shadow: 0 -5px 0 0 #000000;
    font-weight: 200;
    font-size: 18px;
}
@media screen and (max-width: 767px) {
    .post-list_heading {
        padding: 0 20px;
        font-size: 16px;
        height: 45px;
    }
}
.post-list_heading > * {
    font-weight: inherit;
    font-size: 1em;
}
.post-list_heading_link {
    margin-left: auto;
    color: inherit; 
    font-size: 14px;
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .post-list_heading_link {
        font-size: 12px;
    }
}
.post-list_heading_link:hover {
    color: #dd3345;
}
.post-list_heading_link::after {
    content: '>';
    display: inline-block;
    margin-left: 1em;
    transform: scaleY(1.8);
    color: #000;
    font-weight: 100;
}
.post-type-archive-news .post-list_item {
    border: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
    .post-type-archive-news .post-list_item {
        border: none;
        border-bottom: 1px solid #ddd;
    }
}
.post-type-archive-news .post-list_item:nth-child(n+2) {
    border-top: none;
}
.post-type-archive-news .post-list_item_link {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 24px;
}
@media screen and (max-width: 767px) {
    .post-type-archive-news .post-list_item_link {
        padding: 20px;
    }
}
.post-type-archive-news .post-list_item_link:hover {
    color: inherit;
    background-color: #f5f5f5;

    transition: .2s ease;
}
.post-type-archive-news .post-list_item_heading {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    word-break: break-all;
}
@media screen and (max-width: 767px) {
    .post-type-archive-news .post-list_item_heading {
        font-size: 15px;
    }
}
.post-type-archive-news .post-list_item_heading > * {
    font-weight: inherit;
}
.post-type-archive-news .post-list_item_date {
    margin-top: 8px;
    color: #999;
    font-size: 12px;
    font-weight: 300;
}
.post-entry_inner {
    border: 1px solid #ddd;
    padding: 50px;
    margin: 0 0 50px 0;
    position: relative;
}
@media screen and (max-width: 767px) {
    .post-entry_inner {
        border: none;
        padding: 0;
    }
}
.post-entry_meta {
    display: table;
    margin: -51px 0 45px 0;
    padding: 9px 20px 11px;
    background: #dd3345;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .post-entry_meta {
        margin: 0 0 18px 0;
    }
}
.single-news .post-entry_meta {
    background-color: #008c8c;
}
.post-entry_meta p {
    line-height: inherit;
}
.post-entry_meta span {
    font-size: 12px;
    color: #fff;
}
.post-entry_meta span:nth-child(n+2) {
    padding-left: 1em;
}
.post-entry_title {
    color: #000;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 400;
    margin: 0 0 45px 0;
}
@media screen and (max-width: 767px) {
    .post-entry_title {
        font-size: 18px;
        margin: 0 0 20px 0;
    }
}

.post-entry_content {
    color: #666;
}

.post-entry_content a {
    color: #dd3345;
}
.post-entry_content a:hover {
    color: #dd3345;
    text-decoration: underline;
}

/* ----------------------------------------------------------------------
 WordPress プリセットスタイル
---------------------------------------------------------------------- */
/* alignment */
.post-entry_content .alignright { float:right; }
.post-entry_content .alignleft { float:left; }
.post-entry_content .aligncenter { display:block; margin-left:auto; margin-right:auto; margin-bottom:7px; }
.post-entry_content blockquote.alignleft, .post-entry_content img.alignleft { margin:7px 24px 7px 0; }
.post-entry_content .wp-caption.alignleft { margin:7px 14px 7px 0; }
.post-entry_content blockquote.alignright, .post-entry_content img.alignright { margin:7px 0 7px 24px; }
.post-entry_content .wp-caption.alignright { margin:7px 0 7px 14px; }
.post-entry_content blockquote.aligncenter, .post-entry_content img.aligncenter, .post-entry_content .wp-caption.aligncenter { margin-top:7px; margin-bottom:7px; }


/* text and headline */
.post-entry_content p { line-height:2.4; margin:0 0 2em 0; }
.post-entry_content h1, .post-entry_content h2, .post-entry_content h3, .post-entry_content h4, .post-entry_content h5, .post-entry_content h6 { clear:both; line-height:1.4;  margin:0 0 10px 0; padding:10px 0 0 0; }
.post-entry_content h1 { font-size:150%; }
.post-entry_content h2 { font-size:140%; }
.post-entry_content h3 { font-size:130%; }
.post-entry_content h4 { font-size:120%; }
.post-entry_content h5 { font-size:110%; }
.post-entry_content h6 { font-size:100%; }


/* image */
.post-entry_content img[class*="align"], .post-entry_content img[class*="wp-image-"], .post-entry_content img[class*="attachment-"], .post-entry_content img.size-full, .post-entry_content img.size-large, .post-entry_content .wp-post-image, .post-entry_content img
 { height:auto; max-width:100%; }


/* list */
.post-entry_content li, .post-entry_content dt, .post-entry_content dd { line-height:2.4; }
.post-entry_content ul, .post-entry_content ol, .post-entry_content dl { margin-bottom:24px; }
.post-entry_content ol { list-style:decimal outside none; margin-left:1.5em; }
.post-entry_content ul { list-style:circle outside none; margin-left:1.3em; } 
.post-entry_content li > ul, .post-entry_content li > ol { margin-bottom:0; }
.post-entry_content dt { font-weight:bold; }
.post-entry_content dd { margin-bottom:1em; }


/* table */
.post-entry_content table { margin:0 0 24px 0; width:100% !important; }
.post-entry_content td, .post-entry_content th { border:1px solid #bbb; padding:10px 15px; line-height:2.4; background:#fff; }
.post-entry_content th { background:#ddd; font-weight:normal; }
/* table style */
.post-entry_content table.table_no_border th, .post-entry_content table.table_no_border td { border:none; padding-left:0; }
.post-entry_content table.table_border_horizontal th, .post-entry_content table.table_border_horizontal td { border-left:none; border-right:none; padding-left:0; }


/* block quote */
.post-entry_content blockquote { margin:0 0 25px 0; padding:27px 30px 0; border:1px solid #ccc; box-shadow:0px 4px 0px 0px #f2f2f2; position:relative; }
.post-entry_content blockquote:before { content: '"'; font-style:italic; font-size:30px; font-weight:normal; line-height:40px; width:30px; height:30px; position:absolute; top:5px; left:10px; color:#5cbcd7; }
.post-entry_content blockquote:after { content: '"'; font-style:italic; font-size:30px; font-weight:normal; text-align:left; line-height:60px; width:30px; height:30px; position:absolute; bottom:7px; right:-2px; color:#5cbcd7; }
.post-entry_content blockquote cite { border-top:1px dotted #aaa; display:block; padding:20px 0 0 0; font-style:italic; text-align:right; font-size:90%; }


/* captions */
.post-entry_content .wp-caption {
  margin-bottom:24px; background:#fff; border:1px solid #ccc; padding:5px; max-width:100%;
  -webkit-border-radius:5px; border-radius:5px;
  -webkit-box-sizing:border-box; box-sizing:border-box;
}
.post-entry_content .wp-caption-text { text-align:center; font-size:12px; font-style:italic; line-height:1.5; margin:9px auto; }
.post-entry_content .wp-caption img[class*="wp-image-"] { display:block; margin:0 auto; }


/* gallery */
.gallery { margin-bottom:20px; }
.gallery a img { border: 0 !important; }
.gallery-item { float:left; margin:0 4px 4px 0; overflow:hidden; position:relative; }
.gallery-columns-1 .gallery-item { max-width:100%; }
.gallery-columns-2 .gallery-item { max-width:48%; max-width:-webkit-calc(50% - 4px); max-width:calc(50% - 4px); }
.gallery-columns-3 .gallery-item { max-width:32%; max-width:-webkit-calc(33.3% - 4px); max-width:calc(33.3% - 4px); }
.gallery-columns-4 .gallery-item { max-width:23%; max-width:-webkit-calc(25% - 4px); max-width:calc(25% - 4px); }
.gallery-columns-5 .gallery-item { max-width:19%; max-width:-webkit-calc(20% - 4px); max-width:calc(20% - 4px); }
.gallery-columns-6 .gallery-item { max-width:15%; max-width:-webkit-calc(16.7% - 4px); max-width:calc(16.7% - 4px); }
.gallery-columns-7 .gallery-item { max-width:13%; max-width:-webkit-calc(14.28% - 4px); max-width:calc(14.28% - 4px); }
.gallery-columns-8 .gallery-item { max-width:11%; max-width:-webkit-calc(12.5% - 4px); max-width:calc(12.5% - 4px); }
.gallery-columns-9 .gallery-item { max-width: 9%; max-width:-webkit-calc(11.1% - 4px); max-width:calc(11.1% - 4px); }
.gallery-columns-10 .gallery-item { max-width: 7%; max-width:-webkit-calc(9.4% - 0px); max-width:calc(9.4% - 0px); }
.gallery-columns-1 .gallery-item:nth-of-type(1n), .gallery-columns-2 .gallery-item:nth-of-type(2n), .gallery-columns-3 .gallery-item:nth-of-type(3n), .gallery-columns-4 .gallery-item:nth-of-type(4n), .gallery-columns-5 .gallery-item:nth-of-type(5n), .gallery-columns-6 .gallery-item:nth-of-type(6n), .gallery-columns-7 .gallery-item:nth-of-type(7n), .gallery-columns-8 .gallery-item:nth-of-type(8n), .gallery-columns-9 .gallery-item:nth-of-type(9n), .gallery-columns-10 .gallery-item:nth-of-type(10n) { margin-right:0; }
.gallery-caption {
  background-color:rgba(0, 0, 0, 0.7); color:#fff; font-size:12px; line-height:1.5; margin:0; max-height:50%;
  opacity:0; padding:6px 8px; position:absolute; bottom:0; left:0; text-align:left; width:100%;
  -webkit-box-sizing:border-box; box-sizing:border-box;
}
.gallery-caption:before { content: ""; height:100%; min-height:49px; position:absolute; top:0; left:0; width:100%; }
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption, .gallery-columns-10 .gallery-caption { display: none; }


/* etc */
.post-entry_content .wp-smiley { border:0; margin-bottom:0; margin-top:0; padding:0; }
.post-entry_content address { margin:0 0 24px 0; line-height:2.2; }
.post-entry_content pre { border-left:5px solid #7fc120; font-size:12px; margin:0 0 27px 0; line-height:25px; background:url(img/common/pre.gif) repeat left top; padding:0 17px; overflow:auto; }
.post-entry_content .sticky { }
.post-entry_content .mejs-container { margin: 12px 0 25px; }


/* パスワード保護 */
.c-pw__desc, .c-pw__desc p { line-height:2.5; }
.c-pw__desc p { margin-bottom:16px; }
.c-pw__btn { box-sizing: border-box; color: #fff; display: inline-block; padding: 13px 20px; font-size:14px; text-align:center; line-height:1; }
.c-pw__btn:hover { background: #333; color: #fff; }
.c-pw__btn--register { min-width: 160px; margin-bottom:32px; }
.c-pw__btn--submit { min-width: 100px; border:0; cursor:pointer; }
.c-pw .c-pw__btn:hover { text-decoration: none; } 
.c-pw__box { border:1px solid #ddd; background:#f5f5f5; padding: 25px 36px; display:inline-block; margin-bottom:40px; box-sizing: border-box; }
.c-pw__box .c-pw__box-desc { line-height:1.2; margin-bottom: 20px; }
.c-pw__box-label { margin-right: 14px; }
.c-pw__box-input { border:1px solid #ddd; box-shadow:none; height:40px; width:250px; margin-right: 13px; flex: 1; box-sizing: border-box; padding: 0 10px; }

.post-entry_content .c-pw__btn, .post-entry_content .c-pw__btn:hover { color: #fff; }

@media screen and (max-width: 767px) {
    .post-entry_content {
        font-size: 13px;
    }

    /* text and headline */
    .post-entry_content p { line-height:2; }
    
    /* list */
    .post-entry_content li, .post-entry_content dt, .post-entry_content dd { line-height:2; }
    
    
    /* table */
    .post-entry_content td, .post-entry_content th { line-height:2; }
    
    
    /* パスワード保護 */
    .c-pw__desc, .c-pw__desc p { line-height:2; }

}



.single-post .post-list_inner,
.blog .post-list_inner,
.category .post-list_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 1px 0 0 1px;
}
.single-post .post-list_item,
.blog .post-list_item,
.category .post-list_item {
    width: 25%;
    margin-left: -1px;
    margin-top: -1px;
    border: 1px solid #ddd;
    align-self: stretch;
}
@media screen and (max-width: 767px) {
    .single-post .post-list_item,
    .blog .post-list_item,
    .category .post-list_item {
        width: 50%;
    }
}
.single-post .post-list_item_thumbnail,
.blog .post-list_item_thumbnail,
.category .post-list_item_thumbnail {
    display: block;
    width: 100%;
    position: relative;
    transition: .5s;
}
.single-post .post-list_item_thumbnail:hover,
.blog .post-list_item_thumbnail:hover,
.category .post-list_item_thumbnail:hover {
    opacity: .5;
}
.blog .post-list_item_thumbnail img,
.single-post .post-list_item_thumbnail img,
.category .post-list_item_thumbnail img {
    width: 100%;
    height: auto;
}
.single-post .post-list_item_title-area,
.blog .post-list_item_title-area,
.category .post-list_item_title-area {
    padding: 20px 33px 30px;
}
@media screen and (max-width: 767px) {
    .single-post .post-list_item_title-area,
    .blog .post-list_item_title-area,
    .category .post-list_item_title-area {
        padding: 15px 18px 20px;
    }
}
.single-post .post-list_item_title,
.blog .post-list_item_title,
.category .post-list_item_title {
    color: inherit;
    text-decoration: none;
}
.single-post .post-list_item_title > *,
.blog .post-list_item_title > *,
.category .post-list_item_title > * {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    max-height: 54px;
    overflow: hidden;
    word-break: break-all;
    transition: .2s ease;
}
@media screen and (max-width: 767px) {
    .single-post .post-list_item_title > *,
    .blog .post-list_item_title > *,
    .category .post-list_item_title > * {
        font-size: 14px;
    }
}
.single-post .post-list_item_title > *:hover,
.blog .post-list_item_title > *:hover,
.category .post-list_item_title > *:hover {
    color: #dd3345;
}
.single-post .post-list_item_meta,
.blog .post-list_item_meta,
.category .post-list_item_meta {
    color: #999;
    font-size: 12px;
    margin-top: 10px;
    font-weight: 300;
    line-height: 1.5;
}
.single-post .post-list_item_meta a,
.blog .post-list_item_meta a,
.category .post-list_item_meta a {
    color: inherit;
    text-decoration: none;
    transition: .2s ease;
}
.single-post .post-list_item_meta a:hover,
.blog .post-list_item_meta a:hover,
.category .post-list_item_meta a:hover {
    color: #dd3345;
}
.single-post .post-list_item_meta span:nth-child(1)::after,
.single-post .post-list_item_meta a:nth-child(1)::after,
.blog .post-list_item_meta span:nth-child(1)::after,
.blog .post-list_item_meta a:nth-child(1)::after,
.category .post-list_item_meta span:nth-child(1)::after,
.category .post-list_item_meta a:nth-child(1)::after {
    content: '|';
    margin: 0 .7em;
}
@media screen and (max-width: 767px) {
    .single-post .post-list_item_meta span:nth-child(1)::after,
    .single-post .post-list_item_meta a:nth-child(1)::after,
    .blog .post-list_item_meta span:nth-child(1)::after,
    .blog .post-list_item_meta a:nth-child(1)::after,
    .category .post-list_item_meta span:nth-child(1)::after,
    .category .post-list_item_meta a:nth-child(1)::after {
        content: '\A';
        white-space: pre;
    }
}

.post-navigation .screen-reader-text {
    display: none;
}
.post-navigation .nav-links {
    display: flex;
    margin-top: 3em;
}
.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
    width: calc(50% + 1px);
    border: 1px solid #ddd;
}
.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
    display: flex;
    height: 110px;
    align-items: center;
    padding: 0 2em;
    color: inherit;
    text-decoration: none;
    transition: .2s ease;
}
@media screen and (max-width: 767px) {
    .post-navigation .nav-links .nav-previous a,
    .post-navigation .nav-links .nav-next a {
        height: 50px;
        padding: 0 1em;
        font-size: 12px;
        justify-content: center;
        text-align: center;
        position: relative;
    }
}
.post-navigation .nav-links .nav-previous a:hover,
.post-navigation .nav-links .nav-next a:hover {
    background-color: #f7f7f7;
    color: inherit;
}
.post-navigation .nav-links .nav-previous {
    margin-right: -1px;
}
.post-navigation .nav-links .nav-previous a::before {
    content: '<';
    margin-right: 2em;
    font-weight: 100;
    transform: scaleY(1.8);
    color: #111;
}
@media screen and (max-width: 767px) {
    .post-navigation .nav-links .nav-previous a::before {
        margin-right: 0;
        position: absolute;
        top: 50%;
        left: 1em;
        transform: translateY(-50%) scaleY(1.8);
    }
}
.post-navigation .nav-links .nav-next {
    margin-left: auto;
}
.post-navigation .nav-links .nav-next a {
    transition: .2s ease;
}
.post-navigation .nav-links .nav-next a::after {
    content: '>';
    margin-left: auto;
    font-weight: 100;
    transform: scaleY(1.8);
    color: #111;
}
@media screen and (max-width: 767px) {
    .post-navigation .nav-links .nav-next a::after {
        margin-left: 0;
        position: absolute;
        top: 50%;
        right: 1em;
        transform: translateY(-50%) scaleY(1.8);
    }
}

.single-news .post-list_inner {
    margin-top: -23px;
}
@media screen and (max-width: 767px) {
    .single-news .post-list_inner {
        margin-top: -22px;
    }
}
.single-news .post-list_item_link {
    display: flex;
    align-items: center;
    background-color: #fafafa;
    height: 55px;
    margin-top: -1px;
    border: 1px solid #ddd;
    padding: 0 23px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: .2s ease;
}
@media screen and (max-width: 767px) {
    .single-news .post-list_item_link {
        margin-top: 0;
        border: none;
        border-bottom: 1px solid #ddd;
        height: auto;
        padding: 11px 0;
        background-color: #fff;
        flex-wrap: wrap;
    }
}
.single-news .post-list_item_link:hover {
    background-color: #fff;
}
.single-news .post-list_item_date {
    display: block;
    color: #999;
    font-size: 12px;
    width: 85px;
}
@media screen and (max-width: 767px) {
    .single-news .post-list_item_date {
        width: 100%;
    }
}
.single-news .post-list_item_title {
    display: block;
    word-break: break-all;
    font-weight: 200;
}
@media screen and (max-width: 767px) {
    .single-news .post-list_item_title {
        width: 100%;
        font-size: 14px;
    }
}
.single-news .post-list_item_link:hover .post-list_item_title {
    color: #dd3345;
}

/* コメント欄 */
.comment-template {
    font-weight: 200;
}
@media screen and (max-width: 767px) {
    .comment-template {
        font-size: 14px;
    }
}

.comment-template a {
    color: inherit;
    text-decoration: none;
}
.comment-template a:hover {
    color: #dd3345;
}

.comment-reply-title,
.comment-notes {
    display: none;
}

.comment-respond {
    margin-top: 30px;
    border: 1px solid #ccc;
    padding: 15px;
}

.comment-respond label {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    font-size: 11px;
    color: #888;
    font-weight: 100;
}
.comment-respond input,
.comment-respond textarea {
    display: block;
    width: 100%;
    border: 1px solid #ccc;
    padding: 5px 0;
    color: #777;
}
.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    margin-bottom: 12px;
}
.comment-respond input[type="submit"] {
    background: #ccc;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    width: 200px;
    height: 50px;
    margin: 15px auto 0;
    display: block;
    transition: .2s ease-in-out;
}
.comment-respond input[type="submit"]:hover {
    background-color: #dd3345;
}
#comments {
    margin-top: 60px;
    font-weight: 400;
}
@media screen and (max-width: 767px) {
    #comments {
        font-size: 16px;
    }
}
.commentlist .comment {
    margin-top: 30px;
}
.commentlist .children {
    padding-left: 2em;
}

@media screen and (max-width: 450px) {
	.news-breadcrumb li:nth-child(2) {
		width:130px;
		text-align:center;
	}
	.news-breadcrumb li:nth-child(2) a {
		display:inline-block;
	}
	.news-breadcrumb li:nth-child(3) {
		overflow:hidden;
		text-overflow:ellipsis;
		white-space:nowrap;
	}
}

@media screen and (min-width: 1025px) {
	.pc-br {
		display:block;
	}
}

/* --- 2026.03.19追記 --- */
/* --- スポンサーロゴ（スマホ閲覧用）を縦並びにする --- */
@media screen and (max-width: 767px) {
    .top-sponsor_list {
        flex-direction: column !important; /* 縦並びを強制 */
    }

    .top-sponsor_list_item {
        width: 80% !important;           /* 幅を広げる */
        margin-left: 0 !important;        /* 左のズレをなくす */
        margin-right: 0 !important;
        margin-bottom: 30px !important;   /* ロゴ同士の上下間隔 */
        display: block !important;
        margin-left: auto !important;     /* 中央寄せ */
        margin-right: auto !important;
    }
}