@charset "UTF-8";
/* Noto Sans------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;900&display=swap');
/* Zen Maru Gothic------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;500;700;900&display=swap');

/* all ------------------------*/
body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', '\30D2\30E9\30AE\30CE\89D2\30B4 ProN W3', 'Meiryo', '\30e1\30a4\30ea\30aa', sans-serif;
    color: #333333;
    line-height: 1.4;
    letter-spacing: 0;
}
#wrapper {
    overflow: hidden;
}
@media (max-width: 767px) {
    .pcOnly {
        display: none !important;
    }
}
@media (min-width: 768px) {
    .spOnly {
        display: none !important;
    }
}

/* fadeIn ------------------------*/
.fadeIn.active {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.fadeIn {
    opacity: 0;
    transition: all 1s ease;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
}

/* section ------------------------*/
.section-kv,
.section-h3 {
    width: 100%;
}
.section-inner {
    max-width: calc(930px + 10.7%);
    padding: 56px /*5.35%*/ 25px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}
.section-title {
    margin-bottom: 32px;
    text-align: center;
}
.section-title img {
    margin-left: auto;
    margin-right: auto;
}
.section-img {
    text-align: center;
}
.section-img img {
    margin-left: auto;
    margin-right: auto;
}
.section-img__title {
    max-width: 480px;
    width: 100%;
    display: block;
    margin: 0 auto 24px;
}
.section-lead {
    font-size: 20px;
    color: #232F3F;
    text-align: center;
    line-height:1.6;
}
.section-link a {
    font-size: 16px;
    color: #008DEC;
    line-height: 1.2;
}
.section-link a:hover {
    opacity: 0.8;
}
.section-link a {
    position: relative;
}
.section-link a::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/icon_05.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
}
.section-button {
    display: block;
    position: relative;
    background-color: /*#457ABC*/rgba(244,57,133,1);
    font-family: 'Zen Maru Gothic', serif;
    font-size: 24px;
    font-weight: 600;
    color: #FFF;
    max-width: 469px;
    height: 80px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 6px;
    text-decoration: none;
    filter: drop-shadow(0px 2px 5px rgba(0,0,0,0.6));
}
.section-button::before {
    position: absolute;
	top: 0;
	bottom: 0;
	right: 24px;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 22px;
	height: 22px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
    border: solid 2px #FFF;
}
.section-button::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 34px;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.section-button:hover {
    opacity: 0.8;
}
.section-note {
    display: inline-block;
    font-size: 14px;
    color: #666666;
    padding-left: 1em;
    position: relative;
}
.section-note::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}
.ztype::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 20px;
        max-width: 100%;
    }
    .section-title img {
        max-width: 100%;
        max-height: 44px;
    }
.section-inner .section-title--lg{

	padding:18px 0 0 ;
}
    .section-title.section-title--lg img {
        max-height: 78px;
    }
    .section-title.section-title--lg img {
        max-width: 80%;
    }

    .section-img img {
        max-width: 100%;
    }
    .section-img.section-img--date img {
        width: 100%;
        max-width: 343px;
    }
    .section-lead {
        font-size: 14px;
    }
    .section-link a {
        font-size: 14px;
    }
    .section-button {
        font-size: 18px;
        max-width: 335px;
        height: 58px;
        border-radius: 6px;
    }
    .section-button::before {
        top: 0;
        bottom: 0;
        right: 17px;
        width: 20px;
        height: 20px;
    }
    .section-button::after {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 27px;
        width: 6px;
        height: 6px;
    }
    .section-note {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

/* column ------------------------*/
.section-column {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

/* parts ------------------------*/
.section-parts {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.section-parts::before, .section-parts::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
}
.section-period .section-parts::before, .section-period .section-parts::after {
    width: 79px;
    height: 547px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -10;
}
/* kv ------------------------*/
.section-kv {
	background: repeating-linear-gradient(rgba(11,199,212,.6), rgba(11,199,212,.6) 90px, rgba(11,199,212,.8) 90px, rgba(11,199,212,.8) 180px);
	padding:.2rem 0 .5rem;


	}
.section-kv__img {
    width: 100%;
    max-width: 100%;
    position: relative;
    margin: 0 auto -12px;
    padding: 15px 0 0;
    text-align: center;
}
.section-kv__img img {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

/* section-period ------------------------*/
.section-period {
    position: relative;
  background-color: #ffffff;
  background-image: linear-gradient(90deg, #0769d51a 1px, transparent 1px), linear-gradient(#0769d51a 1px, transparent 1px);
  background-position: -27px 58px;
  background-size: 41px 41px;
}
.section-period .section-inner {
    padding-top: 48px;
    padding-bottom: 100px;
}
.section-period .section-title {
    margin-bottom: 13px;
}
.section-period .section-img {
    margin-bottom: 36px;
}
.section-period .section-lead {
    color: #232F3F;
    font-weight: bold;
    margin-bottom: 24px;
}
.section-period .section-lead__large {
    text-align: center;
    color: #232F3F;
    font-size: 25px;
    font-weight: bold;
    line-height: 48px;
    margin-bottom: 30px;
    margin-top:-10px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0 10px
    
    
}
.section-period .section-lead__large span {
    font-size: 30px;
    font-weight: bold;
}
.section-period .section-lead__large strong {
    font-family: 'Zen Maru Gothic', serif;
    font-size: 60px;
    font-weight: bold;
    
}
.section-period .section-lead__marker {
    color:rgba(244,57,133,1);
    text-decoration: underline;
    text-decoration-color: rgba(244,57,133,.3);
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}
.section-period .section-img {
    margin-bottom: 32px;
}
.section-period .section-button {
    margin-bottom: 16px;
}
.section-period .section-note {
    display: block;
    text-align: center;
    padding: 0;
}
.section-period .section-note::before {
    content: none;
}
@media (max-width: 767px) {
    .section-kv__img {
        padding: 5px 10px 0;
    }
    .section-period::before, .section-period::after {
        content: none;
    }
    .section-period .section-inner {
        padding-top: 36px;
        padding-bottom: 94px;
    }
    .section-period .section-lead {
        margin-bottom: 8px;
    }
    .section-period .section-lead__large {
        font-size: 22px;
        line-height: 35px;
        margin-bottom: 20px;
    }
    .section-period .section-lead__large span {
        font-size: 24px;
    }
    .section-period .section-lead__large strong {
        font-size: 41px;
    }
    .section-period .section-img {
        margin-bottom: 17px;
    }
    .section-period .section-button {
        margin-bottom: 10px;
        padding: 0 40px;
    }
}

/* section-method ------------------------*/
.section-method {
    position: relative;
}
.section-method .section-inner {
    padding-top: 46px;
    padding-bottom: 115px;
}
.section-method .section-lead {
    margin-bottom: 24px;
}
.section-method .section-lead span {
    font-weight: bold;
    line-height: 28px;
}
.section-method .section-lead__marker {
    text-decoration: underline;
    text-decoration-color: #FEEC93;
    text-decoration-thickness: 4px;
    text-underline-offset: 4px;
}
.section-method .section-lead__marker strong {
    color: /*#F88E03*/rgba(255,53,127,.3);
    
    
    font-size: 24px;
    font-weight: bold;
}
.section-method .section-img {
    margin-bottom: 24px;
}
.section-method .section-column .section-img {
    max-width: 200px;
}
.section-method .section-scroll + .section-link {
    text-align: center;
    margin-bottom: 32px;
}
.section-method .section-note {
    margin-bottom: 8px;
}
.section-method .section-note {
    padding-left: 2em;
    margin-bottom: 8px;
}
.section-method .section-note:nth-last-of-type(4)::before {
    content: "※1";
}
.section-method .section-note:nth-last-of-type(3)::before {
    content: "※2";
}
.section-method .section-note:nth-last-of-type(2)::before {
    content: "※3";
}
@media (max-width: 767px) {
    .section-method::before {
        content: none;
    }
    .section-method::after {
        content: none;
    }
    .section-method .section-inner {
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .section-method .section-lead span {
        font-size: 16px;
    }
    .section-method .section-lead__marker {
        text-decoration-thickness: 2px;
    }
    .section-method .section-lead__marker strong {
        font-size: 22px;
    }
    .section-method .section-scroll {
        margin: 0 calc(50% - 50vw);
        margin-bottom: 15px;
        width: 100vw;
        padding: 0 5.35% 10px;
    }
    .simplebar-track {
        background: #ECF4F2;
        border-radius: 10px;
        margin: 0 36px;
    }
    .simplebar-track.simplebar-horizontal {
        height: 14px;
    }
    .simplebar-track .simplebar-scrollbar.simplebar-visible::before{
        opacity:1;
    }
    .simplebar-track .simplebar-scrollbar::before{
        background: #232F3F;
        margin: 2px 4px;
    }
    .section-method .section-img {
        margin: 0 20px 10px 0;
        margin-bottom: 0;
    }
    .section-method .section-column {
        width: 640px;
        margin: 0 auto;
    }
    .section-method .section-column .section-img {
        max-width: 200px;
        margin-bottom: 10px;
    }
    .section-method .section-scroll + .section-link {
        margin-bottom: 24px;
    }
    .section-method .section-note {
        margin-bottom: 6px;
    }
}


/* section-flow ------------------------*/
.section-flow {
    background-color: #E5F7F7;
}
.section-flow .section-inner {
    padding-top: 100px;
    padding-bottom: 60px;
}
.section-flow .section-title {
    margin-top: -130px;
}
.section-flow__unit {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: solid 2px #FFF;
}
.section-flow__item {
    padding: 18px 40px;
    border-radius: 6px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 14px;
    line-height: 28px;
}
.section-flow__item span {
    font-family: 'Zen Maru Gothic', serif;
    font-size: 28px;
    font-weight: bold;
    margin: 0 2px;
    line-height: 35px;
}
.section-flow__item strong {
    font-size: 44px;
    font-weight: bold;
}
.section-column .section-flow__item {
    width: 49%;
    font-size: 16px;
}
.section-column .section-flow__item span {
    font-size: 24px;
}
.section-column .section-flow__item strong {
    font-size: 36px;
    font-weight: bold;
}
.section-flow__item--white {
    background-color: #FFF;
    color: #232F3F;
}
.section-flow__item--white span {
    color: #232F3F;
}
.section-flow__item--pink {
    background-color: #232F3F;
    color: #FFF;
}
.section-flow__item--pink span {
    color: #F8F83E;
}

.section-flow__box {
    background-color: #FFF;
    border-radius: 6px;
    margin-bottom: 27px;
    position: relative;
}
.section-flow__box::after {
    content: "";
    position: absolute;
    border-top: 17px solid #fff;
    border-right: 17.5px solid transparent;
    border-left: 17.5px solid transparent;
    left: 50%;
    bottom: -16px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.cclor::after {
    content: "";
    position: absolute;
    border-top: 17px solid #CBEFEF;
    border-right: 17.5px solid transparent;
    border-left: 17.5px solid transparent;
    left: 50%;
    bottom: -16px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.section-flow__title {
    background-color: #CBEFEF;
    border-radius: 6px 6px 0 0;
    color: #232F3F;
    font-size: 17px;
    font-weight: bold;
    padding: 8px 16px 8px 38px;
    position: relative;
}
.section-flow__box:nth-of-type(3)  .section-flow__title {
    padding: 8px 29px 8px 38px;
}
.section-flow__title span {
    position: relative;
}
.section-flow__title span::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -28px;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: 15px;
}
.section-flow__box:nth-of-type(1) .section-flow__title span::before {
    background-image: url(../images/icon_01.png);
}
.section-flow__box:nth-of-type(2) .section-flow__title span::before {
    background-image: url(../images/icon_02.png);
}
.section-flow__box:nth-of-type(3) .section-flow__title span::before {
    background-image: url(../images/icon_03.png);
}
.section-flow__box:nth-of-type(4) .section-flow__title span::before {
    background-image: url(../images/icon_03.png);
}
.section-flow__inner {
    padding: 12px 38px 14px;
}
.section-flow__lead {
    font-size: 14px;
    color: #232F3F;
    margin-bottom: 12px;
    font-weight:600;
}
.section-flow__box:nth-of-type(2) .section-flow__lead, .section-flow__box:nth-of-type(3) .section-flow__lead {
    margin: 0;
}
.section-flow__lead span {
    display: block;
    color: #F88E03;
    font-weight: bold;
}
.section-flow__box .section-note {
    margin-bottom: 8px;
}
.section-flow__box .section-note:last-of-type {
    margin-bottom: 0;
}
.section-flow__box .section-link {
    margin-bottom: 8px;
}
.section-flow__box .section-link:last-of-type {
    margin-bottom: 0px;
}
.section-flow .section-img {
    border-radius: 6px;
    box-shadow: 6px 6px rgba(66, 101, 108, 0.12);
}
.section-flow__box--top {
    margin-top: 60px;
}
.section-flow__box--bottom {
    margin-bottom: 0;
}
.section-flow__box--bottom::after {
    content: none;
}
.section-flow__box--bottom .section-flow__inner {
    padding-bottom: 30px;
}
.section-flow__box--bottom .section-flow__title {
    background-color: #01AEBF;
    color: #FFF;
    text-align: center;
    font-size: 25px;
    padding: 8px 38px;
}
.section-flow__box--bottom .section-flow__lead {
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}
@media (max-width: 767px) {
    .section-flow .section-inner {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .section-flow .section-title {
        margin-top: -140px;
        margin-bottom: 40px;
    }
    .section-flow__box--top {
        margin-top: 30px;
    }
    .section-flow__unit {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .section-flow__unit .section-column {
        display: block;
    }
    .section-column .section-flow__item {
        width: 100%;
        line-height: 24px;
    }
    .section-flow__title {
        font-size: 14px;
    }
    .section-flow__title span::before {
        top: 0;
        width: 20px;
        height: 20px;
    }
    .section-flow__inner {
        padding: 12px 29px 14px;
    }
    .section-flow__lead {
        font-size: 14px;
    }
    .section-flow__box .section-note {
        margin-bottom: 6px;
    }
    .section-flow__box--bottom .section-flow__inner {
        padding-bottom: 20px;
    }
    .section-flow__box--bottom .section-flow__title {
        font-size: 20px;
    }
    .section-flow__box--bottom .section-flow__lead {
        margin-top: 16px;
    }



}

/* section-subject ------------------------*/
.section-subject {
background-color: #E5F7F7;
}
.section-subject .section-inner {
    padding-top: 46px;
    padding-bottom: 46px;
    text-align: center;
    position: relative;
}
.section-subject .section-title {
    margin-top: -76px;
}
.section-subject .section-lead {
    font-weight: bold;
    margin-bottom: 16px;
}
.section-subject .section-link {
    margin-bottom: 32px;
}
.section-subject .section-button {
    margin-bottom: 16px;
}
.section-subject .section-note {
    margin-bottom: 16px;
}
.section-subject .section-note:last-of-type {
    padding: 0;
    margin-bottom: 0;
}
.section-subject .section-note:last-of-type::before {
    content: none;
}
@media (max-width: 767px) {
    .section-subject {
        background-color: #E7EDF2;
    }
    .section-subject .section-inner {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .section-subject .section-title {
        margin-top: -103px;
    }
    .section-subject .section-lead {
        margin-bottom: 12px;
    }
    .section-subject .section-link {
        margin-bottom: 24px;
    }
    .section-subject .section-button {
        margin-bottom: 8px;
        padding: 0 40px;
    }
}

/* section-notes ------------------------*/
.section-notes .section-inner {
    padding-top: 110px;
}
.section-notes__inner {
    margin-bottom: 32px;
}
.section-notes__inner span{
	display:block;
	margin-top:10px;
	font-size:.9rem;
	color:#78818A;
}


.section-notes__inner:last-of-type {
    margin-bottom: 0;
}
.section-notes .section-lead {
    text-align: left;
    font-weight: bold;
    margin-bottom: 12px;
}
.section-notes .section-note {
    margin-bottom: 8px;
}

.section-notes__inner .section-note {
	display:block;
	margin:0px 0;
}

.section-notes .section-note:last-of-type {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .section-notes .section-inner {
        padding-top: 75px;
    }
    .section-notes .section-lead {
        margin-bottom: 8px;
    }
}

/* section-inquiry ------------------------*/
.section-inquiry .section-inner {
    padding-top: 0;
    padding-bottom: 24px;
}
.section-inquiry__box {
    background-color: #F4F7F7;
    text-align: center;
    padding: 24px 0;
    margin-bottom: 16px;
}
.section-inquiry__lead {
    font-size: 16px;
    line-height: 1.2;
    font-weight: bold;
    color: #03374D;
}
.section-inquiry__lead:last-of-type {
    font-size: 14px;
}
.section-inquiry__tel {
    font-size: 40px;
    line-height: 2;
    color: #03374D;
    text-decoration: none;
    display: inline-block;
}
.section-inquiry .section-lead {
    text-align: left;
    margin-bottom: 16px;
}
.section-inquiry .section-note {
    margin-bottom: 8px;
}
.section-inquiry .section-note:last-of-type {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .section-inquiry .section-inner {
        padding-bottom: 8px;
    }
    .section-inquiry__box {
        margin-bottom: 23px;
    }
    .section-inquiry .section-lead {
        margin-bottom: 11px;
    }
}

/* fixed ------------------------*/
.fixed {
    position:fixed;
    z-index: 99;
    left: 0;
    bottom: 0;
    padding: 12px;
    box-sizing: border-box;
    background-color: #fff;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: all 1s ease;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
}
.fixed.active {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.fixed__button {
    display: block;
    position: relative;
    background-color: rgba(244,57,133,1);
    font-family: 'Zen Maru Gothic', serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    max-width: 340px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    border-radius: 6px;
    text-decoration: none;
    filter: drop-shadow(0px 2px 5px rgba(0,0,0,0.6));
}
.fixed__button::before {
    position: absolute;
	top: 0;
	bottom: 0;
	right: 16px;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 18px;
	height: 18px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
    border: solid 2px #FFF;
}
.fixed__button::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.fixed__button:hover {
    opacity: 0.8;
}
.fixed .annotation__text {
    color: #1A1A1A;
    font-size: 10px;
    margin-top: 5px;
}
@media (max-width: 767px) {
    .fixed {
        padding: 9px;
    }
    .fixed__button {
        font-size: 14px;
        max-width: 303px;
        height: 34px;
    }
    .fixed__button::before {
        right: 12px;
        width: 16px;
        height: 16px;
    }
    .fixed__button::after {
        width: 6px;
        height: 6px;
        right: 19px;
        top: calc(50% - 16px);
    }
}

.fixed-pagetop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
}
.fixed-pagetop a {
	border: none;    
}
.fixed-pagetop {
    transition: all 1s ease;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.fixed-pagetop.active {
    -webkit-transform: translateY(-106px);
    -moz-transform: translateY(-106px);
    -ms-transform: translateY(-106px);
    -o-transform: translateY(-106px);
    transform: translateY(-106px);
}
@media (max-width: 767px) {
    .fixed-pagetop.active {
        -webkit-transform: translateY(-86px);
        -moz-transform: translateY(-86px);
        -ms-transform: translateY(-86px);
        -o-transform: translateY(-86px);
        transform: translateY(-86px);
    }
}


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

追加コード

-----------------------------------------------------------*/
.code_section{
    font-size: 14px;
    color: #666666;
    margin:0 0 -100px;
}
@media (max-width: 767px) {
.code_section{
	margin:0 0 -70px;
	}

}

.code_section ol{
	counter-reset: number;
	margin:30px 0 ;
}
.code_section li{
	margin:7px 0 7px 0px;
	position:relative;
	counter-reset: listnum;
}
.code_section li:before{
	content:"";
	counter-increment: number;
	content: '' counter(number) '.';

}
.code_section li span{
	font-weight:700;
}
.call-number_section{
	border:1px solid #ccc;
	padding:10px;
	color: #666666;
	margin:30px 0 0;
}

.call-number_flex{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	
}

.call-number_section dl{
	width:calc(80% / 2);
	display:flex;
	margin:-5px 0 -10px;
	align-items:center;
	padding:10px;
	font-size: 14px;

}
.call-number_section dl dt{
	padding:5px 0 0 0;
	font-size: 14px;
}
.call-number_section dl dd{
	font-size:30px;
	margin:0 0 0 10px;
}
.call-number_text{
	text-align:center;
	margin:15px 0 10px 0;
	font-size: 14px;
}



.stacia_cre_card{
	margin:30px 0 ;
	display:flex;
	justify-content:center;
}
.stacia_cre_card dl{
	align-items:center;
	max-width:600px;
	padding:10px 15px;

}
.stacia_cre_card dl img{
	max-width:100%;
}
.stacia_cre_card dl dd{
	font-size: 14px;

}
@media (max-width: 767px) {
.stacia_cre_card{
	margin:30px 0 ;
	display:block;
	}
.stacia_cre_card dl{
	display:flex;
	align-items:center;
	text-align:left;
	padding:10px 0px;
	max-width:90%;
	margin: 0 auto;
	}
.stacia_cre_card dl img{
	max-width:160px;
	}
.stacia_cre_card dl dd{
	margin: 0 20px;
	font-size: 15px;
	
	}

}


@media (max-width: 767px) {
.code_section{
    font-size: 12px;
	}
.code_section li span{
	display:block;

  padding-left: .8em;
	}
	
.call-number_flex{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
}

.call-number_section dl{
	width:calc(90% / 2);
	display:block;
	margin:5px;
	text-align:center;
	padding:0px;
	font-size: 14px;
}
.call-number_section dl dt{
	padding:5px 0 0 0;
	font-size: 12px;
}
.call-number_section dl dd{
	font-size:20px;
	margin:0 0 0 0px;
}
.call-number_text{
	text-align:center;
	margin:10px 0 5px 0;
	font-size: 14px;
}


}

.soto{
	margin:30px 0 0;
}

@media screen and (max-width: 980px) {
.soto {
/*	overflow-x:scroll;*/
	max-width:90%;
	margin: 20px auto 40px;
	padding:0 0 25px;

}

/*table自体を程よい幅に　*/
table.jyokentable_cp{
	width:800px;
	margin:-120px 0 120px;
}

table.point_table{
	width:100%;
}
table.point_table th{
	width:15%;
}
table.jyokentable_cp td:first-child {
	/*少しサイズを調整*/
	width:10%;
	height:.5em;
	/*先頭列を左に固定*/
	position:sticky;
	left:0;
	background:#fff;
	border:1px solid #999;
	}

}

.jyokentable_cp{
	border:1px solid #999;
	width:100%;
	font-size:.9rem;
	background:#fff;
}
.jyokentable_cp .cr{
	padding:.5em;
	background:#f9f9f9;
	text-align:center;
	border:1px solid #999;
}
.jyokentable_cp .cr_day{
	padding:.5em;
	background:#F6F3EA;
	text-align:center;
	border:1px solid #999;
}
.jyokentable_cp td{
	padding:.5em 1em;
	border:1px solid #999;
	text-align:center;
}
.cpMain_div{
	margin:30px 0 60px;
}
.cpMain_div ul {
	margin: 40px auto;
	font-size:1.3em;
}
.cpMain_div li{
	margin: 5px 0 ;
	counter-increment: cnt;
	text-indent: 0em;
	padding-left:0em;
	
}
.cpMain_div li::before {
	content: "【"counter(cnt)"】";
}

.ssname{
	font-size:12px;
	display:block;
	margin:-30px auto 0px;
}
@media screen and (max-width: 980px) {
.cpMain_div ul {
	margin: 40px auto;
	font-size:1.05em;
}

}

.credit_title{
	font-size:.9rem;
	text-align:center;
	margin: 0px 0 10px;
}

.credit_list{
	background:#fff;
	padding:40px 20px;
}
.credit_list_detail{
	display:flex;
	justify-content:center;
	flex-wrap:wrap;

}
.credit_list_detail div{
	width:calc(90% / 3);
	margin:0px 10px 30px 10px;

}
@media screen and (max-width: 980px) {
.credit_list{
	padding:40px 10px;
}
.credit_list_detail div{
	width:calc(90% / 2);
	margin:10px 5px;
	text-align:center;

	}
}

.credit_list_detail div img{
	max-width:100%;
}
@media screen and (max-width: 980px) {
.credit_list_detail div img{
	max-width:100px;
	}
}

.credit_list_detail div dt{
	text-align:center;
	margin:0 0 10px;
	font-size:1rem;
	color:#222E3F;
	font-weight:500;
	border-bottom:#222E3F 1px dotted;
	padding: 0 0 5px;
}
@media screen and (max-width: 980px) {
.credit_list_detail div dt{
	font-size:.9rem;
	}
}

.stacia_pink{

	margin: 0px auto;
	border:1px solid #BF4DA5;
	padding:15px;
/*	background:#FDFBFD;*/
	background:#fff;
	box-sizing: border-box;
}


.stacia_pink dt{
	color:#BF4DA5;
	font-size:1.3em;
}
.stacia_pink dd{
	margin:10px 0 ;
	text-indent:-1em;
	padding-left:1em;
}
.stacia_pink dd::before{
	content:"○";
	padding-right:5px;
}

.contact_number{
	margin: 0px auto 30px;
	max-width:400px;
}

.contact_number dl{
	display:flex;
	justify-content:center;
	align-items:center;
}
.contact_lbl_nums{
	background:#01AEBF;
	color:#fff;
	padding:2px 13px 5px;
	display:block;
	margin: 0 10px 0 0;
	text-align:center;
	font-size:1rem;
}
.font-large{
	font-size:2em;
}

.margin_up{
	margin:10px 0 5px!important ;

}
.margin_up02{
	margin:40px 0!important ;
}
.larg_font{
	font-size:2.5rem;
}

.contactyojcb{
	text-align:center;
	margin:30px 0 ;
}

.contactyojcb a{
	font-weight:500;
	font-size:1.1rem;
	color:#333;
}


.new_list li::before{
	content:"・";
}
.section-inner .event-img{
	text-align:center;
	margin:0 auto 20px;
	max-width:700px;
	padding-left:10px;
}
.event-img img{
	max-width:100%;
}

@media screen and (max-width: 980px) {
.section-inner .event-img{
	margin:0 auto 20px;
	padding-left:0px;
	}
}
.komemark{
	text-align:center;
	margin:-20px 0 20px;
	font-size:1rem;
}
@media screen and (max-width: 980px) {
.komemark{
	text-align:center;
	margin:-15px 0 20px;
	font-size:.8rem;
	}
}
.balloon1 {
  position: relative;
  display: block;
  margin: 1.5em auto 0em;
  padding: 7px 10px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 20px;
  background: #F43985;
  max-width:150px;
  text-align:center;
  border-radius:5px;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #F43985;
}
.section-bg{
	background:url(../images/left.png) no-repeat 0% 100%,
	url(../images/right.png) no-repeat 100% 100% ;
	background-size:160px ,120px;
}
@media screen and (max-width: 780px) {
.section-bg{
	background:url(../images/left.png) no-repeat 0% 30%,
	 url(../images/right.png) no-repeat 98% 30% ;
	 background-size:65px ,50px;
}
}

.spoint-logo{

}
