@charset "utf-8";

/*---------------------------------------------
    navigation02 ※TOP、下層共通
---------------------------------------------*/
.header-area-upper {
    padding: var(--s1);
    text-align: right;
}
.header-title {
    font-size: 1.2rem;
    display: inline-block;
    position: relative;
}
.header-title::before {
    content: "PR";
    padding: .2rem;
    color: #fff;
    background-color: #333;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: -2.4rem;
}
.header-title a {
    text-decoration: none;
}
.header-title a:hover {
    text-decoration: underline;
}
.gnavi-btn-close {
    display: none;
}
.toggle-content {
    display: none;
}
.gnavi-ctrl {
    transition: opacity 0.6s, visibility 0.6s;
    opacity: 0;
    visibility: hidden;
}
.gnavi-ctrl.is-show {
    opacity: 1;
    visibility: visible;
}
#low-page .gnavi-ctrl {
    opacity: 1;
    visibility: visible;
}
.gnavi-btn {
    width: var(--s7);
    height: var(--s6);
    background: #333;
    display: block;
    position: fixed;
    top: var(--s3);
    right: 0;
    z-index: 200;
    cursor: pointer;
}
.gnavi-btn span {
    width: var(--s4);
    height: 0.2rem;
    display: inline-block;
    background: #fff;
    position: absolute;
    left: 1.2rem;
    transform: translate(0, -50%);
    transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
    top: 1.7rem;
}
.gnavi-btn span:nth-of-type(2) {
    top: 2.4rem;
}
.gnavi-btn span:nth-of-type(3) {
    top: 3.1rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
    transform: translateY(0.7rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
    opacity: 0;
}
.gnavi-btn.is-active span:nth-of-type(3) {
    transform: translateY(-0.7rem) rotate(45deg);
}
.gnavi-btn-close {
    width: 80%;
    margin: 0 auto;
    padding: var(--s2);
    background: #333;
    display: block;
    text-align: center;
	border-radius: 100px;
}
.gnavi-btn-close__inner {
    padding: 0 0 0 var(--s3);
    display: inline-block;
    color: #fff;
    font-weight: 700;
    position: relative;
}
.gnavi-btn-close__inner::before {
    content: "";
    width: 1em;
    height: 0.2rem;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) rotate(45deg);
}
.gnavi-btn-close__inner::after {
    content: "";
    width: 1em;
    height: 0.2rem;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) rotate(135deg);
}
.gnavi-area {
    width: 100%;
    max-width: 37.5rem;
    height: 100vh;
    padding: var(--s3) var(--s1) var(--s10);
    display: block;
    background: #F5F5F5;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
}
.gnavi-title {
    min-height: var(--s6);
    margin: 0 var(--s8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}
.gnavi-pc {
    display: none;
}
.gnavi-list {
    border-bottom: 1px solid #333;
    position: relative;
}
.gnavi-list li {
    padding-left: 0;
}
.gnavi-list__item::before {
    display: none;
}
.gnavi-list__link {
    width: 100%;
    margin: 0 auto;
    padding: var(--s2) var(--s4) var(--s2) var(--s2);
    border-top: 1px solid #333;
    display: block;
    font-weight: 700;
    line-height: 2;
    text-decoration: none;
    position: relative;
}
.gnavi-list__link::after {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    background: url("img/arrow-01-black-right.svg") no-repeat center/100% auto;
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%) rotate(0);
    transition: transform 0.3s;
}
.gnavi-list__link--toggle::after {
    background-image: url("img/arrow-01-black-down.svg");
}
.gnavi-list__link--toggle.is-open::after {
    transform: translate(0, -50%) rotate(180deg);
}
.gnavi-list__sub {
    width: 100%;
    background: #fff;
}
.gnavi-list__low .gnavi-list__link {
    padding: var(--s2) var(--s4) var(--s2) var(--s4);
}
.gnavi-list__low .gnavi-list__link::after {
    content: "└";
    background: none;
    transform: translateY(-50%);
    position: absolute;
    top: 40%;
    left: 1rem;
}
.is-gnavi-open .gnavi-area {
    opacity: 1;
    transform: translateX(0);
}
    /*------------------------------------------
    Global menu settings
    */
    .navigation01-menu-area {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .header-title::before {
        left: 0;
    }

    .header-area-upper {
        padding: var(--s1) var(--s2) var(--s1) var(--s4);
    }
}


    @media screen and (max-width: 767px) {
        .header-title::before {
            left: 0;
        }

        .header-area-upper {
            padding: var(--s1) var(--s2) var(--s1) var(--s4);
        }
    }

/* ---------------------------------------------
index01(目次)
--------------------------------------------- */
.onb-index01-frame {
    width: 100%;
    background-color: var(--site-color09);
}
.onb-index01-wrap {
    margin: 0 auto;
    padding: var(--s1) var(--s3);
    border: solid 0.1rem #D0D3E0;
    background-color: transparent;
    position: relative;
}
.onb-index01-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s6);
    color: #333;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    background: url("./img/dummy-icon.png") no-repeat left center;
    background-size: 4rem auto;
    position: relative;
    cursor: pointer;
}
.onb-index01-title::before {
    content: "";
    width: 2rem;
    height: 0.3rem;
    background: #333;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translate(0, -50%);
}
.onb-index01-title::after {
    content: "";
    width: 0.3rem;
    height: 2rem;
    background: #333;
    position: absolute;
    top: 50%;
    right: 2.9rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}
.onb-index01-title.is-open::after {
    transform: translate(0, -50%) rotate(270deg);
}
.onb-index01-chapter {
    padding: var(--s2) var(--s2) var(--s2) var(--s4);
    font-weight: 700;
}
.onb-index01-chapter-h {
    margin: 0 0 0 var(--s2);
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}
.onb-index01-chapter-h a {
    display: block;
    text-decoration: none;
}
.onb-index01-chapter-h a:hover {
    opacity: .6;
}
.onb-index01-chapter-h-two {
    margin-left: var(--s2);
    position: relative;
}
.onb-index01-chapter-h-three {
    margin-left: var(--s4);
    position: relative;
}
.onb-index01-chapter-h-two::before,
.onb-index01-chapter-h-three::before {
    position: absolute;
    top: 0;
    left: -1.5em;
}
.onb-index01-chapter-h-two::before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 2rem;
    background-color: var(--site-color02);
    transform: translateY(-50%);
    top: .8em;
}
.onb-index01-chapter-h-three::before {
    content: "└";
}
.more-content {
    display: none;
}
.onb-index01-content {
    background-color: #fff;
}

/* ---------------------------------------------
related-article01(関連記事)
--------------------------------------------- */
.related-article01-frame {
    border: 1px solid var(--site-color09);
    margin: var(--s6) auto;
    padding: var(--s1)  var(--s3)  var(--s4) var(--s3);
    background: #F4F6F6;
    position: relative;
}
.related-article01-title {
    padding: var(--s2) var(--s3);
    color: #333;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    position: relative;
    border-bottom: 1px solid #333333;
}
.related-article01-list {
    padding: var(--s2) 0 var(--s2) var(--s2);
    font-weight: 700;
}
.related-article01-list li {
    margin: 0 0 0 var(--s2);
    padding-left: 1.5em;
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}
.related-article01-list li + li {
    margin-top: 10px;
}
.related-article01-list li::before {
    content: "";
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    background-color: #83dfdf;
    position: absolute;
    top: .6rem;
    left: 0;
}
.related-article01-list a {
    display: block;
    text-decoration: none;
}
.related-article01-list a:hover {
    opacity: 0.6;
}
.relations-box.relations-box--column {
    display: flex;
    gap: 10px;
}
.relations-box__pic {
    flex: 0 0 150px;
}
.is-hidden {
    display: none;
}

.related-article01-more {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 50%);
    background-color: transparent;
    width: 100%;
    height: 25%;
    position: absolute;
    bottom: -40px;
    left: 0;
    padding: 2rem 0;
}


.related-article01-more.is-closed {
    display: none;
}

.related-article01-btn {
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 100px;
    padding: 1rem 5rem 1rem 2rem;
    position: relative;
}

  .related-article01-btn::before {
    content: "";
    width: 1.8rem;
    height: .2rem;
    background: #000;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translate(0, -50%);
}
.related-article01-btn::after {
    content: "";
    width: .2rem;
    height: 1.8rem;
    background: #000;
    position: absolute;
    top: 50%;
    right: 2.3rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}
.related-article01-btn:hover {
    opacity: 0.6;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .related-article01-list {
        padding: 0;
    }
    .related-article01-list li {
        margin-left: 0;
    }
    .relations-box__pic {
        flex: 0 0 100px;
    }
	.related-article01-title {
	margin-bottom: 2rem;
	}
	.sec05 .low-left-img-catch {
		font-size: 2rem;
		text-align: left;
	}
	.sec07 .ex-contents-catch a {
		font-size: 2rem;
	}
}

/*------------------------------------------------------------
    section margin_pc
------------------------------------------------------------*/
.sec01, .sec02 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.sec03, .sec04, .sec05, .sec06, .sec07 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
    
/*------------------------------------------------------------
    section margin_sp
------------------------------------------------------------*/
@media screen and (max-width: 767px) {
.sec01, .sec02, .sec03, .sec04, .sec05 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
}
/*------------------------------------------------------------
    bg用記述
------------------------------------------------------------*/
.bg-01 {
  background: url("./img/bg-01.jpg") no-repeat top center;
  background-size: contain;
  background-attachment: fixed;
  background-position: center;
}

.bg-02 {
  background: url(./img/bg-02.jpg) no-repeat top center #efefef;
  background-size: contain;
}

.bg-03 {
    background: url(./img/bg-03.jpg) no-repeat top 350px center;
    background-size: contain;
}

.bg-06 {
  background:url(./img/bg-06.jpg) no-repeat top center;
  background-size: cover;
}


@media screen and (max-width: 767px) {
.bg-02 {
	padding-bottom: 1rem;
	}
	}
/*------------------------------------------------------------
   sec01_H2
------------------------------------------------------------*/
.sec01 .section-title04 {
color: #000;
}

.sec01 .column-small img {
    max-height: 200px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.sec01 .icon-title-area {
    display: flex;
    align-items: anchor-center;
    margin-bottom: 2rem;
    justify-content: center;
    text-align: center;
}

.section-title04 {
    margin: 5rem 0 0;
    padding-top: 4rem;
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--site-color03);
    text-align: center;
    position: relative;
    line-height: 1.6;
}

.sec01 .section-title04::after {
    content: "";
    width: 5rem;
    height: 4rem;
    background: url(./img/sec-icon.png) no-repeat top center;
    background-size: contain;
    transform: translateX(-50%);
    position: absolute;
    top: -3.2rem;
    left: 50%;
}

.sec01.cat-selection .section-title04::after {
    content:none;
}

.sec01.cat-selection .section-title04{
    margin-top:0;
    padding-top:0;
}


.section-title04::after {
    content: "";
    width: 5rem;
    height: 4rem;
    background: url(./img/sec-icon.png) no-repeat top center;
    background-size: contain;
    transform: translateX(-50%);
    position: absolute;
    top: -3.2rem;
    left: 50%;
}
.section-title04 a{
    background: url("./img/arrow-01-blg-right.svg") no-repeat center right/auto 2rem;
    display: block;
    padding-right: 5rem;
    text-decoration: none;
}

.section-title04 a:hover{
    opacity: 0.6;
}

/*------------------------------------------------------------
    SP settings
------------------------------------------------------------*/
@media screen and (max-width: 767px) {
    .section-title04 {
        font-size: 2.6rem;
        line-height: 1.5;
    }
	
	.section-title04 a {
	padding-right: 2rem;
	}
	}

/*------------------------------------------------------------
    sec01_3box column settings
------------------------------------------------------------*/
.column-small {
    padding: 0 var(--s2) var(--s2);
    background: #ffffffc2;
    box-shadow: 0px 0px 11px #c5e6ff;
}

.sec03 .column-small {
	border: 1px solid #d6d6d6;
	max-width: 322px;
	box-shadow: none;
}


.sec03 .column-small .btn-link a{
  line-height:1.6;  
}

.thb-box-full {
    width: calc(100% + var(--s4));
    margin-left: calc(var(--s2) * -1);
}
.caption-table {
    text-align: left;
    margin-top: 0.8em;
    color: var(--site-color13);
    font-size: 1rem;
    line-height: 1.4;
    word-break: break-all;
}

.caption-table a {
    text-align: left;
    margin-top: 0.8em;
    color: var(--site-color13);
    font-size: 1rem;
    line-height: 1.4;
    word-break: break-all;
}

.name {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #022257;
	line-height: 1.4;
	margin-top: -2rem;
}

.small {
	font-size: 1.6rem;
	color: #66676c;
}

.box-body01, .box-body02  {
    margin: 0;
    background-color: #fff;
}
.box-body02  {
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #d1d1d1;
}
.thb-catch {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: center;
    color: #002f7c;
}
.box-body01 span, .box-body02 span {
background: linear-gradient(transparent 70%, #FAFF59 60%);
    font-weight: 700;
}

.hover {
font-size: 1.2rem;
color: #464646;
text-align: center;
}


.cat-selection .l-center.l-stack-large {
    margin: 0;
    padding: 0;
}

.cat-selection .column-small {
    background-color: #ffffffe0;
}

.cat-selection .thb-table td {
    background: #fff;
}

.cat-selection .box-body01, .box-body02 {
    background: none;
}

.cat-selection .title-catch {
    border-bottom: 1px solid #fff;
}

.cat-selection.sec01 {
    margin: 6rem 0;
    padding: 0;
}

/*------------------------------------------------------------
   sec01_3box column settings_キャッチ
------------------------------------------------------------*/
.icon-title-area {
    background-color: #011629;
    position: relative;
}

.icon-title-obj-r {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(img/icon-title-img01.png) no-repeat center;
    background-size: 100% auto;
    color: var(--site-color03);
    border-radius: 11rem;
    position: absolute;
    top: 0;
    left: 0.6rem;
    transform: translateY(-50%);
}

.column-small:nth-child(2) .icon-title-obj-r {
    background: url(img/icon-title-img02.png) no-repeat center;
    background-size: 100% auto; 
}


.column-small:nth-child(3) .icon-title-obj-r {
    background: url(img/icon-title-img03.png) no-repeat center;
    background-size: 100% auto; 
}

.icon-title-obj-r__inner {
    text-align: center;
    font-weight: 700;
}
.icon-title-r {
    padding: 2rem;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5;
    /* margin-bottom: 2rem; */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
}
.icon-title-small {
    font-size: 2.6rem;
    color: #83dfdf;
	background: none !important;
}

}

/*------------------------------------------------------------
   sec01_3box column settings_キャッチ1
------------------------------------------------------------*/
.m-title02 {
    padding: var(--s3) 0 var(--s3);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    background-color: var(--site-color03);
    margin: -3.2rem -0.1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.m-title02 span {
    font-size: 2.6rem;
}


/*------------------------------------------------------------
   sec01_3box column settings_キャッチ2
------------------------------------------------------------*/
.title-catch {
    padding: 0 1rem 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    line-height: 1.4;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sec03 .title-catch {
    padding: 0 1rem 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: #4d4d4d;
    text-align: center;
    line-height: 1.5;
}

.sec03 .fig img {
    width: auto;
    max-height: 150px;
    display: block;
    margin: 0 auto;
}

.title-catch span {
    font-size: 1.8rem;
    color: #002f7c;
    line-height: 1.6;
    background: none !important;
    margin-top: 2rem;
}
.title-catch a {
    text-decoration: none;
    background: url(./img/arrow-01-blg-right.svg) no-repeat center right / auto 1.5rem;
    display: block;
    padding-right: 3rem;
    margin: 3rem 0 1rem;
    text-align: left;
    color: #002f7c;
}


@media screen and (max-width: 767px) {
    .sec03 .l-grid-three {
        display: block;
    }
    
    .sec03 .l-grid-three .column-small {
        width: 100%;
        max-width: max-content;
        margin-bottom: 2rem;
    }

    .sec03 .l-grid-three .column-small .btn-link {
        margin:0
        
    }
    
    .sec03 .l-grid-three .column-small .btn-link a {
        border: none;
        text-align: right;
        text-decoration: underline;
        padding: 0 var(--s2) 0 0;
        background: url(./img/arrow-01-bk-right.svg) no-repeat right center / auto 1em;
    }
    

}

/*------------------------------------------------------------
   sec01_3box column settings_table
------------------------------------------------------------*/
.thb-table {
    line-height: 1.5;
    border-collapse: collapse;
    border: 1px solid #D3D3D3;
    font-size: 1.4rem;
    margin-block: 0 !important;
}
.thb-table th,
.thb-table td {
    padding: var(--s1);
    border: 1px solid #fff;
}
.thb-table th {
    width: 35%;
    background-color: #dceef1;
    text-align: center;
}

.thb-table td {
    background: #f9f9f9;
}

/*------------------------------------------------------------
   sec01_3box column settings_popup
------------------------------------------------------------*/
.thb-tag-list-2c {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s1);
}
.thb-tag-list-2c li {
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: flex;
}
.thb-tag-list-2c li::before {
    display: none;
}
.triangle-right-bottom::after {
    content: "";
    width: 0.1rem;
    height: 0.1rem;
    border-top: .5rem solid transparent;
    border-left: .5rem solid transparent;
    position: absolute;
    right: .5rem;
    bottom: .5rem;
}
.thb-tag-colored {
    background-color: #b7f9f9;
    color: #000000;
}
.thb-tag-colored::after {
    border-right: .5rem solid #000000;
    border-bottom: .5rem solid #000000;
}
.thb-tag-colored .tag-name {
    width: 100%;
    height: 100%;
    display: flex;  
    align-items: center;
    justify-content: center;
   padding: 1rem;
}
.thb-help-content {
    width: 30rem;
    padding: 2rem;
    background: #fff;
    color: #000;
    transform: translate(-50%, -100%);
    transition: opacity 0.6s;
    visibility: hidden;
    border: 2px solid var(--site-color05);
    position: absolute;
    top: -1.2rem;
    left: 50%;
    z-index: 5;
}
.thb-help-content-area div {
    margin-bottom: 1rem;
    padding-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--site-color03);
    border-bottom: 1px solid var(--site-color03);
}
.thb-help-content-area p {
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.8;
	text-align: justify;
}


/* 吹き出し用 */
.dialog--pos-left {
    left: 2rem;
    transform: translate(0, -100%);
}
.dialog--pos-left::after {
    left: 2.8rem;
    transform: translate(0, 100%);
}
.dialog--pos-right {
    right: 2rem;
    left: auto;
    transform: translate(0, -100%);
}
.dialog--pos-right::after {
    left: auto;
    right: 2.8rem;
    transform: translate(0, 100%);
}
.dialog {
    opacity: 0;
}
.dialog.is-show {
    visibility: visible;
    opacity: 1;
}
/* SP用のボタン非表示 */
.dialog-btn-close {
    display: none;
}
/*------------------------------------------------------------
    SP settings
------------------------------------------------------------*/
@media screen and (max-width: 767px) {
    .thb-help-content {
        width: 100%;
        height: 100vh;
        padding: 0;
        background-color: rgba(0,0,0,.4);
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 300;
    }
    .thb-help-content-area {
        width: 80%;
        max-height: 80vh;
        padding: var(--s3);
        background-color: #fff;
        border: 2px solid var(--site-color05);
        overflow-y: auto;
        position: absolute;
    }
    /* 吹き出し用 */
    .dialog--pos-left {
        left: 0;
        transform: inherit;
    }
    .dialog::after {
        left: 2.8rem;
        transform: inherit;
    }
    .dialog--pos-right {
        right: 0;
        left: auto;
        transform: inherit;
    }
    .dialog::after {
        left: auto;
        right: 2.8rem;
        transform: translate(0, 100%);
    }
    /* SP用ボタンの設定 */
    .dialog-btn-close {
        display: block;
        padding: var(--s2);
        font-weight: 700;
        color: #fff;
        position: absolute;
        top: 0;
        right: 0;
    }
}

/*------------------------------------------
    詳細3選_1box column settings
------------------------------------------*/
.column-medium {
    padding: 0 var(--s4) var(--s4);
    margin-bottom: var(--s8);
    background: #fff;
}
.onb-box-full {
    width: calc(100% + var(--s8));
    margin-left: calc(var(--s4) * -1);
}
/*------------------------------------------
    SP settings
------------------------------------------*/
@media screen and (max-width: 767px) {
    .column-medium {
        padding: 0 var(--s2) var(--s4);
    }
    .onb-box-full {
        width: calc(100% + var(--s4));
        margin-left: calc(var(--s2) * -1);
    }
}

/*------------------------------------------
    詳細3選_catch
------------------------------------------*/
.onb-icon-title-frame {
    padding: var(--s4);
    background-color: #011629;
    position: relative;
}
.onb-icon-title-icon {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 4rem;
    left: 3rem;
}
.onb-icon-title-icon img {
    width: 100%;
}
.onb-icon-title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
}
.onb-icon-title .underline {
    border-bottom: 5px solid #FAFF59;
}
.onb-icon-title small {
    font-size: 2.1rem;
    border: none;
}
.onb-icon-title-catch {
    margin-top: 1.6rem;
    font-size: 2.8rem;
    display: inline-block;
    line-height: 1.5;
    border: none;
    color: #000;
    background: #fff;
    padding: var(--s1) var(--s2);
}

.sec02-catch {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 2rem 0;
    color: #25a9a9;
}

.sec02-name {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
	margin-top: -2rem;
}

.sec02 .column-medium {
    margin-bottom: var(--s8);
    margin-top: var(--s4);
}

/*------------------------------------------
    SP settings
------------------------------------------*/
@media screen and (max-width: 767px) {
	
	
.sec02-catch {
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin: 2rem 0;
    color: #25a9a9;
}

.sec02-name {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
}

	
	
    .onb-icon-title-frame {
        padding: var(--s3) var(--s2);
		
    }
    .onb-icon-title {
        font-size: 2.4rem;
    }
    .onb-icon-title small {
        font-size: 1.6rem;
    }
    .onb-icon-title-catch {
        padding: var(--s1);
        font-size: 1.8rem;
        display: block;
    }
    .onb-icon-title-icon {
        width: 6rem;
        height: 6rem;
        position: absolute;
        top: -4rem;
        left: -.5rem;
    }
}
/*------------------------------------------
    詳細3選_中央寄席画像
------------------------------------------*/
.onb-center-img {
    max-height: 60%;
    margin: 0 auto;
}

.onb-center-img img{
    max-height:400px;
    width:auto;
    display:block;
    margin:0 auto;
}

.onb-center-img02 {
    max-width: 40%;
    margin: 0 auto;
}
.sec02-center {
    line-height: 1.8;
    margin: 3rem 0;
}

/*------------------------------------------
    SP settings
------------------------------------------*/
@media screen and (max-width: 767px) {
    .onb-center-img {
        max-width: 100%;
    }  

    .l-onb-access-table img {
        max-height: 200px;
        width: auto;
        display: block;
        margin: 0 auto;
    }

   .onb-center-img img{
        max-height: 200px;
        margin-top: 1rem;	   
    }    

    .onb-center-img02{
        max-width: 100%;
    }
}
/*------------------------------------------
    詳細3選_table
------------------------------------------*/
.l-onb-flex-table {
    display: flex;
    margin-top: var(--s3);
}
.onb-flex-table {
    border-collapse: collapse;
}
.onb-flex-table th,
.onb-flex-table td {
    padding: var(--s1) var(--s2);
    border: 1px solid #fff;
}
.onb-flex-table th {
    width: 34%;
    background-color: #dceef1;
    vertical-align: middle;
    font-weight: 700;
    text-align: center;
}
.onb-flex-table td {
    background: #f9f9f9;
}
/*------------------------------------------
    SP settings
------------------------------------------*/
@media screen and (max-width: 767px) {
    .l-onb-flex-table {
        flex-direction: column;
        display: block;
    }
    .onb-flex-table + table {
        margin-top: -1px;
    }
}
/*------------------------------------------
    詳細3選_h4
------------------------------------------*/
.onb-m-title5 {
    line-height: 1.5;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin: var(--s4) 0 var(--s2);
}
.onb-m-title5 span {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 767px) {
	.onb-m-title5 {
    font-size: 2.2rem;
}
}

.onb-m-title5 span::before,
.onb-m-title5 span::after {
    content: "";
    min-width: 5%;
    height: 1px;
    background-color: #83dfdf;
    flex-grow: 1;
}
.onb-m-title5 span::before {
    margin-right: var(--s2);
}
.onb-m-title5 span::after {
    margin-left: var(--s2);
}
/*------------------------------------------
    SP settings
------------------------------------------*/
@media screen and (max-width: 767px) {
    .onb-m-title5 span::before,
    .onb-m-title5 span::after {
        width: 2rem;
    }
    .onb-m-title5 span::before {
        margin-right: var(--s1);
    }
    .onb-m-title5 span::after {
        margin-left: var(--s1);
    }
}
/*------------------------------------------
    詳細3選_特徴
------------------------------------------*/
.onb-casebox02-frame {
    margin-top: 2rem;
    padding: var(--s4);
    background: url(./img/casebox02-frame-bg.png) no-repeat top center;
    background-size: cover;
    position: relative;
}
.onb-casebox02-sub {
    padding: var(--s1) var(--s3);
    background-color: #022257;
    color: #fff;
    font-size: 1.6rem;
    transform: translateX(-50%);
    position: absolute;
    top: -1.5rem;
    left: 50%;
}
.l-onb-casebox02 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s3);
}
.l-onb-casebox02__side {
    width: calc((100% - var(--s3))*.3);
}
.l-onb-casebox02__main {
    width: 100%;
}
.onb-casebox02-imgcap {
    margin-top: 1rem;
    text-align: center;
    font-size: 1.2rem;
}
.onb-casebox02-catch {
    font-size: 2.1rem;
    font-weight: 700;
    color: #002f7c;
    line-height: 1.5;
    text-align: center;
}

@media screen and (max-width: 767px) {
	.onb-casebox02-catch {
    font-size: 2rem;
}
	
	.onb-casebox02-frame {
		padding: var(--s4) var(--s2)
	}	
	
}

.onb-casebox02-caption {
    text-align: left;
}
/*------------------------------------------
    詳細3選_h5
------------------------------------------*/
.onb-m-title6 {
    padding: .5rem 1rem .8rem 1rem;
    line-height: 1.5;
    font-size: 2.2rem;
    font-weight: 700;
    border-left: .5rem solid #002f7c;
	margin-top: 2rem;
}

@media screen and (max-width: 767px) {
	.onb-m-title6 {
    font-size: 2rem;
    margin-top: 2rem;
}
}

 /*------------------------------------------
    詳細3選_商品
------------------------------------------*/
.l-onb-access-table {
    display: flex;
    gap: var(--s3);
}
.l-onb-access-table__side {
    width: calc((100% - var(--s2))*.4);
}
.l-onb-access-table__main {
    width: calc((100% - var(--s2))*.6);
}
.onb-access-table {
    border-collapse: collapse;
}
.onb-access-table th,
.onb-access-table td {
    padding: var(--s1);
    border: 1px solid #FFF;
    font-size: 1.5rem;
}
.onb-access-table th {
    width: 25%;
    background-color: #dceef1;
    vertical-align: middle;
    font-weight: 700;
    text-align: center;
}
.onb-access-table td {
	background: #f9f9f9;
}

/*-----------------------------------------
    SP settings
------------------------------------------*/
@media screen and (max-width: 767px) {
    .l-onb-access-table {
        flex-direction: column;
    }
    .l-onb-access-table__side,
    .l-onb-access-table__main {
        width: 100%;
    }

    .l-onb-access-table__side img{
        max-height:200px;
        width:auto;
        display:block;
        margin:0 auto;
    }
}
/*-----------------------------------------
   詳細3選_事例
------------------------------------------*/
.onb-com-box01-r-frame {
    padding: var(--s4) 0;
}
.l-onb-com-box01-r {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s3);
}
.l-onb-com-box01-r__side {
    width: calc((100% - var(--s3))*.4);
}
.l-onb-com-box01-r__side img {
    max-width: 100%;
}
.l-onb-com-box01-r__main {
    width: calc((100% - var(--s3))*.6);
}
.onb-com-box01-r-catch {
    margin-bottom: var(--s2);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
    color: #002f7c;
}
.onb-com-box01-r-imgcap {
    margin-top: var(--s1);
    text-align: center;
    font-size: 1.2rem;
}
.onb-com-box01-r-caption {
    text-align-last: left;
}
/*-----------------------------------------
    SP settings
------------------------------------------*/
@media screen and (max-width: 767px) {
    .l-onb-com-box01-r {
        display: flow-root;
    }

    .sec02 .l-onb-com-box01-r {
        display:block;
    }
    
    .l-onb-com-box01-r__side {
        width: 100%;
        margin-right: var(--s2);
        margin-bottom: var(--s2);
        float: left;
    }
    .l-onb-com-box01-r__main {
        width: 100%;
    }
    .onb-com-box01-r-catch {
        font-size: 1.8rem;
    }
    .onb-com-box01-r-imgcap {
        font-size: 1rem;
    }
}
/*-----------------------------------------
    accordion
------------------------------------------*/
.acc-more-btn {
    max-width: 46rem;
  width: 100%;
    margin: var(--s5) auto;
    position: relative;
}
.acc-more-btn span {
    width: 100%;
    padding: var(--s3) var(--s6) var(--s3) var(--s5);
    border: .2rem solid #30414C;
    border-radius: 4rem;
    background: url('./img/acc-off.svg') no-repeat 95% center #fff !important;
    display: block;
    text-align: center;
    font-size: 1.8rem;
	font-weight: 700;
    transform: translate(0, 0);
    transition: transform 0.3s;
    cursor: pointer;
    z-index: 1;
}
.acc-more-btn::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #B5B5B5;
    border-width: 0 1px 1px 0;
    transform: translate(.8rem, .8rem);
    border-radius: 4rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.acc-more-btn:hover span {
    transform: translate(.8rem, .8rem);
}
.acc-more-btn.is-open span {
    background: url('./img/acc-on.svg') no-repeat 95% center #fff !important;
}
.more-content {
    display: none;
}
/*-----------------------------------------
    SP settings
------------------------------------------*/
@media screen and (max-width: 767px) {
    .acc-more-btn {
        margin-right: var(--s1);
    }
    .acc-more-btn span {
        transition: inherit;
        transform: none;
    }
    .acc-more-btn:hover span {
        transform: none;
    }
}
/*-----------------------------------------
    jirei
------------------------------------------*/
.l-pickup-contents01 {
    width: 100%;
    min-height: 52rem;
    display: flex;
    align-items: center;
    background-color: #f3f3f3;
    position: relative;
    margin-top: 6rem;
}
.l-pickup-contents01-box {
    flex: 1;
}
.l-pickup-contents01-box img {
    min-height: 52rem;
    display: block;
    width: 100%;
    object-fit: cover;
}
.l-pickup-contents01-content {
    max-width: 50rem;
    padding: 0 var(--s8);
    position: relative;
    z-index: 5;
}
.pickup-contents01-catch {
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: #002f7c;
    line-height: 1.5;
}

.pickup-contents01-catch a {
    margin-bottom: 1rem;
    font-size: 2.4rem;
    font-weight: 700;
    color: #002f7c;
    line-height: 1.5;
	text-decoration: none;
	background: url(./img/arrow-01-bk-right.svg) no-repeat center right / auto 1.5rem;
	padding-right: 4rem;
	padding-bottom: 0.5rem;
}

.btn-pickup-contents01 {
    margin: var(--s5) auto 0 auto;
}
/*-----------------------------------------
    SP settings
------------------------------------------*/
@media screen and (max-width: 767px) {
    .l-pickup-contents01 {
        min-height: inherit;
        flex-direction: column;
    }
    .l-pickup-contents01-content {
        max-width: inherit;
        padding: var(--s4) var(--s2);
    }
    .l-pickup-contents01-box img {
        min-height: inherit;
        object-fit: inherit;
    }
    
    .pickup-contents01-catch {
        font-size: 2.4rem;
    }
    .btn-pickup-contents01 {
        margin-right: var(--s1);
    }
}
/*-----------------------------------------
   shurui
------------------------------------------*/
.onb-iconbox03-frame {
    margin-top: 1.5rem;
    padding: var(--s2);
    background-color: var(--site-color06);
}
.onb-iconbox03-frame p {
    font-size: 1.4rem;
}
.onb-iconbox03-sub {
    margin-top: -3rem;
    text-align: center;
}
.onb-iconbox03-sub span {
    padding: var(--s1) var(--s2);
    display: inline-block;
    background-color: var(--site-color03);
    color: #fff;
}
.onb-iconbox03-img {
    padding-left: var(--s4);
    padding-right: var(--s4);
}
.onb-iconbox03-catch {
    padding-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--site-color03);
    line-height: 1.5;
    border-bottom: 2px solid var(--site-color17);
    text-align: center;
}
.onb-iconbox03-caption {
    text-align-last: left;
}

/*-----------------------------------------
  taisaku
------------------------------------------*/
.ex-contents {
    display: flex;
}
.ex-contents-left {
    padding: 1.6rem 4rem;
    background-color: #79c6c6;
    font-size: 2.3rem;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    background-size: 60px;
    color: #fff;
}

.ex-contents-left img{
    max-width:50px;
}

@media screen and (max-width: 767px) {
.ex-contents-left img {
max-width: 30px;
}
}

.ex-contents-left::after {
    content: "";
    width: 2rem;
    height: calc(6rem / 2);
    background-color: #79c6c6;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: -1.5rem;
}
.ex-contents-left span {
    width: 100%;
    font-size: 4.6rem;
    line-height: 1.5;
    text-align: center;
    display: block;
}
.ex-contents-right {
    padding: var(--s4) var(--s4);
    background: #f9f9f9;
}
.ex-contents-catch {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.5;
    color: #002f7c;
}

.ex-contents-catch a {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
    color: #002f7c;
	text-decoration: none;
	padding-right: 4rem;
    background: url(./img/arrow-01-bk-right.svg) no-repeat center right / auto 1.5rem;
	padding-bottom: 0.5rem;
}

/*-----------------------------------------
   SP settings
------------------------------------------*/
@media screen and (max-width: 767px) {
    .ex-contents-left {
        padding: 1.6rem;
    }
    .ex-contents-left {
        font-size: 1rem;
    }
    .ex-contents-left span {
        font-size: 2rem;
    }
    .ex-contents-catch {
        font-size: 1.6rem;
    }
    .ex-contents-right {
        padding: var(--s4) var(--s2) var(--s2) var(--s3);
    }
    .ex-contents-right p {
        font-size: 1.4rem;
    }
}

.onb-icon-head01 {
    margin-top: var(--s8);
    margin-bottom: var(--s4);
    margin-left: var(--s4);
    padding: var(--s4) var(--s2) var(--s4) var(--s12);
    line-height: 1.5;
    font-size: 2.4rem;
    font-weight: 700;
    background-color: #eef1f3;
	color: var(--site-color03);
    position: relative;
}
.onb-icon-head01::before {
    content: "";
    width: 10.5rem;
    height: 10.5rem;
    background: url('./img/icon-head-point.svg') no-repeat center center;
    background-size: cover;
    position: absolute;
    left: -4rem;
    top: -1.6rem;
}

.onb-iconbox02-catch {
    padding: 0 var(--s1) var(--s2) var(--s6);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--site-color03);
    border-bottom: 1px solid var(--site-color03);
    background: url(./img/sec-icon.png) no-repeat top left;
    background-size: 3.5rem auto;
	margin-bottom: 2rem;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .onb-icon-head01 {
        margin-left: var(--s2);
        padding: var(--s1) var(--s1) var(--s1) var(--s8);
        font-size: 1.8rem;
    }
    .onb-icon-head01::before {
        content: "";
        width: 8rem;
        height: 8rem;
        left: -2.5rem;
    }
	.onb-iconbox02-catch {
    font-size: 2rem;
}
	
}
.onb-iconbox02-frame {
	margin-top: 4rem;
	padding: var(--s4) var(--s4) 0;
    background-color: var(--site-color09);
	gap:  0;
}

.onb-iconbox02-caption {
    text-align-last: left;
}
