@charset "UTF-8";
/* ///////////////////////////////////////////////
PC基準 1920px
//////////////////////////////////////////////// */

html {
    overflow-x: hidden;
}
body {
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    background: #fff;
    color: #343434;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: #343434;
    display: inline-block;
}


/* ///////////////////////////////////////////////
header
//////////////////////////////////////////////// */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 99;
    margin: 0 auto;
    box-shadow: 0px 0px 33.6px 1.4px rgba(136, 136, 136, 0.24);
      
}
.header-inner {
    display: flex;
    align-items: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.header-inner-top {
    width: 100%;
    height: 5.21vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header h1 {
    width: 25.36vw;
    margin-left: 0.94vw;
    margin-top: 0.63vw;
}
.tel-link {
    display: flex;
    align-items: flex-start;
    gap: 0.52vw;
}
.tel-link img {
    width: 4.01vw;
}
.tel-txt-wrap .txt {
    font-size: 0.83vw;
    line-height: 1;
    letter-spacing: 0.07em;
}
.tel-txt-wrap .no {
    font-size: 2.48vw;
    font-weight: 700;
    color: #3474d4;
    line-height: 1;
    letter-spacing: -0.03em;
}
.header-inner-top ul {
    display: flex;
    align-items: center;
}
.holiday {
    width: 7.46vw;
    margin-left: 0.63vw;
    border: 1px solid #3474d4;
    box-sizing: border-box;
}
.time {
    width: 12.93vw;
    margin-left: 0.52vw;
    border: 1px solid #3474d4;
    box-sizing: border-box;
}
.holiday .txt-1,
.time .txt-1 {
    background: #3474d4;
    color: #FFF;
    font-size: 1.04vw;
    height: 1.67vw;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.07em;
}
.holiday .txt-2,
.time .txt-2 {
    color: #3474d4;
    font-size: 1.04vw;
    height: 1.72vw;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f18d03;
    color: #FFF;
    font-size: 1.25vw;
    font-weight: 700;
    letter-spacing: 0.03em;
    width: 20.21vw;
    height: 4.06vw;
    border-radius: 2.03vw;
    margin-left: 0.78vw;
    margin-right: 1.04vw;
}
.contact-link .img-1 {
    width: 1.41vw;
    margin-right: 0.68vw;
}
.contact-link .img-2 {
    width: 0.45vw;
    margin-left: 0.78vw;
}
.header-inner-top ul {
    display: flex;
    align-items: center;
}
.header-inner-bottom-wrap {
    width: 100%;
    height: 3.23vw;
}
.header-inner-bottom {
    width: 100%;
    height: 3.23vw;
}
.header-inner-bottom ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    font-size: 0.94vw;
    letter-spacing: 0.05em;
}
.header-inner-bottom ul li:first-child {
    margin-right: 2.29vw;
}
.header-inner-bottom ul li:nth-child(2) {
    margin-right: 2.19vw;
}
.header-inner-bottom ul li:nth-child(3) {
    margin-right: 2.4vw;
}
.header-inner-bottom ul li:nth-child(4) {
    margin-right: 1.88vw;
}
.header-inner-bottom ul li:nth-child(5) {
    margin-right: 1.72vw;
}


@media screen and (max-width:768px) { 
    .header {
        height: 18vw;
        position: relative;
    }
    .header-inner {
        height: 18vw;
    }
    .header h1 {
        width: 70vw;
        margin-left: 2vw;
        margin-top: 2vw;
    }
    .header ul {
        display: initial;
    }
    .header ul li{
        font-size: 4vw;
    }
    .header ul li:nth-child(-n+4)::before {
        display: none;
    }
    .header ul li:nth-child(4)::after {
        display: none;
    }
    .header-inner-top {
        height: initial;
    }
    .tel-link {
        display: flex !important;
        gap: 1vw;
    }
    .tel-txt-wrap .no {
        font-size: 8vw;
    }
    .tel-txt-wrap .txt {
        font-size: 3vw;
    }
    .tel-link img {
        width: 12vw;
    }
}
/*  ----------------------------------------------------------

hamburger

----------------------------------------------------------  */
nav.gnav-sp {
	display: block;
	position: fixed;
	top: 0;
    right: -100vw;
	bottom: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
	background: #fff;	
}
.open nav.gnav-sp {
	top: 0;
    left: 0;
	opacity: 1;
	z-index: 99999;
}
.gnav-sp-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
    background: #FFF;
}
.gnav-sp-wrap > div {
	width: 100%;
}
.gnav-sp-menu {
	margin-bottom: 3rem;
}
.gnav-sp-menu li {
	font-size: 1.2rem;
	text-align: center;
    margin: 0 auto;
    width: max-content;
}
.gnav-sp-menu li span {
	font-family: 'Arvo', serif;
	display: block;
	font-size: 2rem;
}
.gnav-sp-menu li a {
	display: block;
	padding: 4vw;
	white-space: nowrap;
}
.gnav-sp .insta {
	display: block;
	text-align: center;
	font-size: 3.2rem;
}
.gnav-sp .tel {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 2rem;
}
.gnav-sp .tel dt {
	color: #000;
}
.gnav-sp .tel a {
	color: var(--main-color);
}
/* toggle */
.toggle-btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 14vw;
	height: 14vw;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
	background: var(--main-color);
}
.toggle-btn span {
	display: block;
	position: absolute;
	left: 0;
	width: 10vw;
	height: 0.3vw;
	background-color: #3E3A39;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 5vw;
}
.toggle-btn span:nth-child(2) {
	top: 7.6vw;
}
.toggle-btn span:nth-child(3) {
	top: 10.6vw;
}
.open .toggle-btn span {
	background-color: #3E3A39;
}
.open .toggle-btn span:nth-child(1) {
	-webkit-transform: translateY(3.5vw) rotate(-45deg);
	transform: translateY(3.5vw) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	-webkit-transform: translateY(-2vw) rotate(45deg);
	transform: translateY(-2vw) rotate(45deg);
}
/* mask */
#mask {
	display: none;
	transition: all .5s;
}
.open #mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0);
	opacity: 0.8;
	z-index: 2;
	cursor: pointer;
}


/* ///////////////////////////////////////////////
kv
//////////////////////////////////////////////// */
.kv {
    background: url(../images/bg-kv.jpg) no-repeat center / cover;
    height: 31.25vw;
    position: relative;
    margin-top: 8.44vw;
    max-width: 100%;
    box-shadow: 0px 0px 23.04px 0.96px rgba(136, 136, 136, 0.16);
}
.kv-staff {
    width: 48.96vw;
    height: 31.25vw;
    object-fit: cover;
    filter: drop-shadow(0px 0px 23.04px rgba(136, 136, 136, 0.16));
    position: absolute;
    top: 0;
    right: 0;  
}
.kv-txt-wrap {
    position: absolute;
    top: 6.73vw;
    left: 9.95vw;
    z-index:2;
    letter-spacing: 0.025em;
    text-shadow: 
        2px 3px 10px rgba(255, 255, 255, 1), 
        -3px 3px 10px rgba(255, 255, 255, 1), 
        2px -3px 13px rgba(255, 255, 255, 1), 
        -2px -3px 10px rgba(255, 255, 255, 1);
}
.kv-txt-1 {
    font-size: 2.61vw;
    font-weight: 500;
    line-height: 1.666;
}
.kv-txt-1 .big {
    font-size: 3.48vw; 
    font-weight: 700;
    color: #f18d03;
}
.kv-txt-1 .no {
    font-weight: 900;
}
.kv-txt-1 .color {
    color: #f18d03;
}
.kv-txt-1-2 {
    font-size: 1.82vw;
    font-weight: 500;
    margin-top: 2.81vw;
    line-height: 1;
}
.kv-txt-wrap-2 {
    position: absolute;
    top: 26.61vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 63.44vw;
    height: 10.52vw;
    z-index:2;
    border-radius: 2.08vw;
    background-color: rgba(255, 255, 255 ,0.902);
    box-shadow: 0px 0px 7.68px 0.32px rgba(136, 136, 136, 0.24);
}
.kv-txt-wrap-2-inner {
    display: flex;
    align-items: center;
    padding: 1.88vw 0.89vw 1.04vw 0.83vw;
    gap: 0.63vw;
}
.kv-txt-wrap-2 .wrap-left {
    display: flex;
}
.kv-tel .txt-1 {
    font-size: 1.88vw;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-left: 4vw;
    white-space: nowrap;
}
.kv-tel .tel-txt-wrap .txt {
    font-size: 0.95vw;
}
.kv-tel .tel-link img {
    width: 4.58vw;
}
.kv-tel .tel-txt-wrap .no {
    font-size: 2.83vw;
}
.kv-txt-wrap-2 .holiday {
    height: 3.39vw;
    margin-top: 3.2vw;
    margin-left: -3.6vw;
}
.time-head {
    width: 30.11vw;
    height: 2.55vw;
    background: #3474d4;
    display: flex;
    align-items: center;
    color: #FFF;
    font-size: 1.47vw;
}
.time-head .txt-1 {
    letter-spacing: 0;
    width: 9.9vw;
    text-align: center;
}
.time-head .txt-2 {
    letter-spacing: -0.13em;
}
.time-body {
    background: #FFF;
    display: flex;
    align-items: center;
    font-size: 1.47vw;
    color: #3474d4;
}
.time-body .txt-1 {
    letter-spacing: 0;
    width: 9.9vw;
    text-align: center;
    flex-shrink: 0;
    border-top: 1px solid #3474d4;
    box-sizing: border-box;
    color: #343434;
}
.time-body .txt-2 {
    letter-spacing: -0.13em;
    border-top: 1px solid #3474d4;
    box-sizing: border-box;
    width: 100%;
}
.wrap-right {
    border: 1px solid #3474d4;
}

@media screen and (max-width:768px) {
    .kv {
        background: url(../images/bg-kv.jpg) no-repeat top left / cover;
        
        height: 155vw;
        margin-top: initial;
    }
    .kv-txt-wrap {
        position: absolute;
        top: 58vw;
        left: 4vw;
        text-shadow: 
            2px 3px 5px rgba(255, 255, 255, 1), 
            -3px 3px 5px rgba(255, 255, 255, 1), 
            2px -3px 5px rgba(255, 255, 255, 1), 
            -2px -3px 5px rgba(255, 255, 255, 1);
    }
    .kv-txt-1 .big {
        font-size: 8vw;
    }
    .kv-txt-1 {
        font-size: 6vw;
    }
    .kv-txt-1 span {
        font-size: 6vw;
    }
    .kv-txt-1-2 {
        font-size: 3vw;
        margin-top: 3vw;
    }
    .kv-staff {
        width: 100vw;
        height: auto;
    }
    .kv-txt-2-wrap {
        gap: 1vw;
        font-size: 4vw;
        align-items: flex-start;
    }
    .kv-txt-wrap-2 {
        position: absolute;
        top: 105vw;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 94vw;
        height: initial;
    }
    .kv-txt-wrap-2-inner {
        flex-direction: column;
        padding: 3vw 1vw;
        gap: 0.63vw;
    }
    .kv-tel .tel-txt-wrap .no {
        font-size: 8vw;
    }
    .kv-tel .txt-1 {
        font-size: 4vw;
        margin-left: 11vw;
        white-space: initial;
    }
    .kv-tel .tel-txt-wrap .txt {
        font-size: 2.7vw;
    }
    .kv-tel .tel-link img {
        width: 12vw;
    }
    .kv-txt-wrap-2 .holiday {
        height: 14vw;
        margin-top: 3.2vw;
        margin-left: 2vw;
        width: 24vw;
    }
    .holiday .txt-1, .time .txt-1 {
        font-size: 3vw;
        height: 7vw;
    }
    .holiday .txt-2, .time .txt-2 {
        font-size: 3vw;
        height: 7vw;
    }
    .time-head {
        width: 90vw;
        height: 7vw;
        font-size: 4vw;
    }
    .time-head .txt-1 {
        width: 30vw;
    }
    .time-body .txt-1 {
        width: 30vw;
    }
    .time-body {
        font-size: 4vw;
    }
}
/* ///////////////////////////////////////////////
about
//////////////////////////////////////////////// */
.about {
    background: url(../images/bg-about.png) no-repeat top center / contain;
}
.about-inner {
    width: 63.54vw;
    padding-top: 10.05vw;
    padding-bottom: 4.11vw;
    margin: 0 auto;
}
.about h2 {
    font-size: 2.6vw;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1;
    text-align: center;
}
.about h2 span {
    font-size: 3.75vw;
    margin: 2.08vw auto 0;
    display: block;
    border-bottom: 0.42vw solid #8fcdeb;
    width: 27.4vw;
    text-align: center;
    padding-bottom: 0.94vw;
}
.about-txt-1 {
    font-size: 2.08vw;
    letter-spacing: 0.025em;
    line-height: 1.75;
    text-align: center;
    margin-top: 2.86vw;
}
.about-img-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2.19vw;
    margin-top: 2.6vw;
}
.about-img-wrap img {
    filter: drop-shadow(0px 0px 23.4px rgba(136, 136, 136, 0.16));
}
@media screen and (max-width:768px) {
    .about-inner {
        width: 90vw;
        padding-top: 15vw;
        padding-bottom: 15vw;
    }
    .about h2 {
        font-size: 4.6vw;
        line-height: 1.3;
    }
    .about h2 span {
        font-size: 8vw;
        margin: 2.08vw auto 0;
        width: 63vw;
        padding-bottom: 1.5vw;
        border-bottom: 0.6vw solid #8fcdeb;
    }
    .about-txt-1 {
        font-size: 4vw;
        margin-top: 3vw;
    }
    .about-img-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 3vw;
        margin-top: 6vw;
    }
}


/* ///////////////////////////////////////////////
reason
//////////////////////////////////////////////// */
.reason {
    background: #e0f1fa;
}
.reason-inner {
    width: 72.92vw;
    padding-top: 9.43vw;
    padding-bottom: 7.66vw;
    margin: 0 auto;
}
.reason h2 {
    font-size: 2.6vw;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.4;
    text-align: center;
}
.reason h2 span {
    font-size: 3.75vw;
    text-align: center;
    font-weight: 700;
}
.reason-card-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.86vw;
    row-gap: 2.6vw;
    margin-top: 5.99vw;
}
.reason-card-wrap .card {
    border-radius: 2.08vw;
    min-height: 38.44vw;
    filter: drop-shadow(0px 0px 23.04px rgba(136, 136, 136, 0.16));
    background: #fffefe;
    position: relative;
}
.reason-card-wrap .card .txt-1 {
    font-size: 1.88vw;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1.555;
    margin-top: 1vw;
    margin-left: 1.51vw;
    margin-right: 1.51vw;
}
.reason-card-wrap .card .txt-2 {
    font-size: 1.35vw;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.65;
    margin: 1.04vw 1.51vw 1vw;
}
.reason-card-wrap .card .txt-2 span {
    background: linear-gradient(transparent 45%, #fff000 0%);
    display: inline;
    width: 100%;
    height: 0.99vw;
}
.reason-card-wrap .card .txt-2.l-space-5 {
    letter-spacing: 0.005em;
}
.reason-card-wrap .card .txt-3 {
    font-size: 1.46vw;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1;
    color: #3474d4;
    background: #fffefe;
    border-radius: 0.52vw 0.52vw 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7.4vw;
    height: 3.02vw;
    position: absolute;
    top: 13.4vw;
    left: 1.2vw;
}
@media screen and (max-width:768px) {
    .reason-inner {
        width: 90vw;
        padding-top: 15vw;
        padding-bottom: 10vw;
        margin: 0 auto;
    }
    .reason h2 span {
        font-size: 8vw;
    }
    .reason h2 {
        font-size: 4.6vw;
    }
    .reason-card-wrap {
        grid-template-columns: 1fr;
        gap: 3vw;
        row-gap: 8vw;
        margin-top: 10vw;
    }
    .reason-card-wrap .card {
        border-radius: 8.48vw;
        min-height: initial;
    }
    .reason-card-wrap .card .txt-1 {
        font-size: 5vw;
        margin-top: 3vw;
        margin-left: 3vw;
        margin-right: 3vw;
    }
    .reason-card-wrap .card .txt-2 {
        font-size: 4vw;
        margin: 3vw 3vw 8vw;
    }
    .reason-card-wrap .card .txt-3 {
        font-size: 4.3vw;
        border-radius: 1vw 1vw 0 0;
        width: 17vw;
        height: 6vw;
        top: 59.7vw;
        left: 3vw;
    }
}
/* ///////////////////////////////////////////////
risk
//////////////////////////////////////////////// */
.risk {
    background: #FFF;
}
.risk-inner {
    width: 72.92vw;
    padding-top: 7.81vw;
    padding-bottom: 5.21vw;
    margin: 0 auto;
}
.risk h2 {
    font-size: 2.6vw;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.4;
    text-align: center;
}
.risk h2 span {
    font-size: 3.75vw;
    text-align: center;
    font-weight: 700;
}
.risk-wrap {
    margin-top: 3.13vw;
}
.risk-wrap figure {
    position: relative;
}
.risk-wrap .risk-txt-wrap {
    height: 11.66vw;
    position: absolute;
    bottom: -1.04vw;
    left: 0;
}
.risk-wrap .risk-txt-wrap.wrap-1 {
    width: 17.5vw;
}
.risk-wrap .risk-txt-wrap.wrap-2 {
    width: 21.04vw;
}
.risk-wrap .risk-txt-wrap.wrap-3 {
    width: 51.41vw;
}
.risk-wrap .risk-txt-wrap .txt-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3474d4;
    color: #FFF;
    font-size: 2.29vw;
    letter-spacing: 0.025em;
    font-weight: 700;
    height: 4.32vw;
    line-height: 1;
    border-radius: 0.52vw 0.52vw 0 0;
}
.risk-wrap .risk-txt-wrap .txt-2 {
    font-size: 3.75vw;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1;
    color: #3474d4;
    background: #fffefe;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 7.34vw;
    border-radius: 0 0 0.52vw 0.52vw;
}
.risk-wrap-title {
    font-size: 1.88vw;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.16vw solid #3474d4;
    border-radius: 0.52vw;
    color: #3474d4;
    width: max-content;
    height: 4.32vw;
    box-sizing: border-box;
    padding: 0 1.72vw 0 2.55vw;
}
.risk-wrap-title.title-1 {
    margin-top: 2.6vw;
}
.risk-wrap-title.title-2 {
    margin-top: 2.86vw;
}
.risk-wrap .txt-3 {
    font-size: 1.35vw;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.653;
    background: #FFF;
    margin-top: 2.08vw;
}
.risk-wrap .txt-3 span {
    background: linear-gradient(transparent 45%, #fff000 0%);
    display: inline;
    width: 100%;
    height: 0.99vw;
}
.mt-90 {
    margin-top: 4.69vw
}
@media screen and (max-width:768px) {
    .risk-inner {
        width: 90vw;
        padding-top: 15vw;
        padding-bottom: 10vw;
    }
    .risk h2 {
        font-size: 4.6vw;
    }
    .risk h2 span {
        font-size: 8vw;
    }
    .risk-wrap .risk-txt-wrap .txt-1 {
        font-size: 4vw;
        height: 6vw;
        border-radius: 1vw 1vw 0 0;
    }
    .risk-wrap .risk-txt-wrap .txt-2 {
        font-size: 5vw;
        height: 8vw;
        border-radius: 0 0 1vw 1vw;
    }
    .risk-wrap .risk-txt-wrap.wrap-1 {
        width: 29.5vw;
    }
    .risk-wrap .risk-txt-wrap.wrap-2 {
        width: 32vw;
    }
    .risk-wrap .risk-txt-wrap.wrap-3 {
        width: 67vw;
    }
    .risk-wrap .risk-txt-wrap {
        height: 14vw;
        bottom: -1.2vw;
    }
    .risk-wrap-title {
        font-size: 4.4vw;
        border: 1px solid #3474d4;
        border-radius: 1vw;
        height: 11vw;
        padding: 0 2vw 0 2.55vw;
    }
    .risk-wrap-title.title-1 {
        margin-top: 6vw;
    }
    .risk-wrap-title.title-2 {
        margin-top: 6vw;
    }
    .risk-wrap .txt-3 {
        font-size: 4vw;;
        margin-top: 3vw;
    }
    .mt-90 {
        margin-top: 14vw;
    }
    

}
/* ///////////////////////////////////////////////
price
//////////////////////////////////////////////// */
.price {
    background: url(../images/bg-price.png) no-repeat top center / contain;
}
.price-inner {
    width: 72.92vw;
    padding-top: 7.81vw;
    padding-bottom: 8.54vw;
    margin: 0 auto;
}
.price h2 {
    font-size: 3.75vw;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1.4;
    text-align: center;
}
.price-title {
    font-size: 3.65vw;
    letter-spacing: 0.025em;
    line-height: 1;
    color: #3474d4;
    font-weight: 700;
    border-top: 0.26vw solid #3474d4;
    border-bottom: 0.26vw solid #3474d4;
    padding-top: 1.77vw;
    padding-bottom: 1.56vw;
    text-align: center;
    margin-top: 4.95vw;
}
.price-title.etc {
    font-size: 2.08vw;
}
.price-wrap {
    margin-top: 3.39vw;
}
.price-card {
    border-radius: 2.08vw;
    background: #fffefe;
    filter: drop-shadow(0px 0px 23.04px rgba(136, 136, 136, 0.16));
}
.price-card:nth-of-type(n+2) {
    margin-top: 3.91vw;
}
.price-card .title {
    background: #3474d4;
	text-align: center;
    color: #FFF;
    font-size: 2.6vw;
    letter-spacing: 0.025em;
    height: 9.61vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2.08vw 2.08vw 0 0;
}
.price-card .inner-wrap {
    display: flex;
    gap: 1.56vw;
}
.price-card .inner-wrap img {
    width: 22.34vw;
    margin-left: 4.95vw;
    margin-top: 2.08vw;
    margin-bottom: 1.51vw;
}
.price-card .inner-wrap .txt-wrap {
    margin-top: 2.08vw;
}
.price-card .inner-wrap .txt-wrap-inner {
    display: flex;
    align-items: center;
    gap: 1.3vw;
}
.price-card .inner-wrap .txt-wrap-inner .txt-1 {
    font-size: 1.35vw;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1;
    color: #3474d4;
    background: #fffefe;
    border: 0.16vw solid #3474d4;
    border-radius: 0.52vw;
    width: 6.82vw;
    height: 5.69vw;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.price-card .inner-wrap .txt-wrap-inner .txt-1.line-1 {
    height: 3.6vw;
}
.price-card .inner-wrap .txt-wrap-inner .txt-1.line-3 {
    height: 7.91vw;
}
.price-card .inner-wrap .txt-wrap-inner .txt-1.line-4 {
    height: 11.19vw;
}
.mt-38 {
    margin-top: 1.98vw;
}
.price-card .inner-wrap .txt-wrap-inner .txt-2 {
    font-size: 1.35vw;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.653;
}
.price-card .inner-wrap .txt-wrap-inner .txt-2 .money {
    font-size: 1.77vw;
}
.price-card .txt-loan {
    font-size: 1.35vw;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1;
    color: #3474d4;
    background: #fffefe;
    border: 0.16vw solid #3474d4;
    border-radius: 0.52vw;
    width: 26.12vw;
    height: 3.59vw;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 1.15vw auto 0;
}
.price-table-wrap {
    width: 58.07vw;
    margin: 1.93vw auto 0;
    padding-bottom: 3.75vw;
}
.price-table-wrap .name {
    font-size: 1.7vw;
    font-weight: 700;
    padding-bottom: 0.5vw;
}
.price-table-wrap .name-margin {
    margin-top: -4vw;
}
.price-table {
    width: 100%;
}
.price-table td {
    height: 4.17vw;
    vertical-align: middle;
    text-align: center;
    font-size: 1.35vw;
    font-weight: 500;
    letter-spacing: 0;
}
.price-table .color td {
    background: #e0f1fb;
    border-left: 2px solid #fffefe;
    border-right: 2px solid #fffefe;
}
.price-etc-wrap {
    width: 51.35vw;
    margin: 3.44vw auto 0;
}
.price-etc-table {
    width: 100%;
}
.price-etc-table td {
    height: 4.17vw;
    vertical-align: middle;
    text-align: center;
    font-size: 1.35vw;
    font-weight: 500;
    letter-spacing: 0;
}
.price-etc-table .color td {
    background: #e0f1fb;
    border-left: 2px solid #fffefe;
    border-right: 2px solid #fffefe;
}
@media screen and (max-width:768px) {
    .price-inner {
        width: 90vw;
        padding-top: 15vw;
        padding-bottom: 15vw;
    }
    .price h2 {
        font-size: 8vw;
    }
    .price-title {
        font-size: 7.2vw;
        border-top: 1px solid #3474d4;
        border-bottom: 1px solid #3474d4;
        padding-top: 3vw;
        padding-bottom: 3vw;
        margin-top: 8vw;
    }
    .price-card .title {
        font-size: 5vw;
        height: 25vw;
        border-radius: 3vw 3vw 0 0;
    }
    .price-card .inner-wrap {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .price-card .inner-wrap img {
        width: 90%;
        margin: 6vw auto 3vw;
    }
    .price-card .inner-wrap .txt-wrap-inner {
        gap: 1vw;
        width: 90%;
        margin: 3vw auto 0;
        flex-direction: column;
        align-items: flex-start;
        
    }
    .price-card .inner-wrap .txt-wrap-inner .txt-1 {
        font-size: 4vw;
        font-weight: 700;
        border: 1px solid #3474d4;
        border-radius: 1vw;
        width: 15vw;
        height: 10vw;
    }
    .price-card .inner-wrap .txt-wrap-inner .txt-2 {
        font-size: 4vw;
    }
    .price-card .inner-wrap .txt-wrap-inner .txt-1.line-1 {
        height: 10vw;
    }
    .price-card .inner-wrap .txt-wrap-inner .txt-1.line-3 {
        height: 10vw;
    }
    .price-card .inner-wrap .txt-wrap-inner .txt-1.line-4 {
        height: 10vw;
    }
    .price-card .inner-wrap .txt-wrap-inner .txt-2 .money {
        font-size: 4.8vw;
    }
    .price-wrap {
        margin-top: 15vw;
    }
    .price-card:nth-of-type(n+2) {
        margin-top: 8vw;
    }
    .price-card .inner-wrap .txt-wrap {
        margin-top: 0vw;
        margin-bottom: 6vw;
    }
    .mt-38 {
        margin-top: 3vw;
    }
    .price-card .txt-loan {
        font-size: 4vw;
        border-radius: 1vw;
        width: 90%;
        height: 10vw;
        margin: 1.15vw auto 0;
    }
    .price-table-wrap {
        width: 100%;
        margin: 6vw auto 0;
        padding-bottom: 6vw;
    }
    .price-table td {
        height: 11vw;
        font-size: 4vw;
    }
    .price-title.etc {
        font-size: 5vw;
    }
    .price-etc-wrap {
        width: 90vw;
        margin: 6vw auto 0;
    }
    .price-etc-table td {
        height: 11vw;
        font-size: 4vw;
    }
    .price-table-wrap .name {
        font-size: 4vw;
        padding-bottom: 1vw;
    }
    .price-table-wrap .name-margin {
        margin-top: -6vw;
    }

}
/* ///////////////////////////////////////////////
pay
//////////////////////////////////////////////// */
.pay {
    background: #e0f1fa;
}
.pay-inner {
    width: 72.92vw;
    padding-top: 8.39vw;
    padding-bottom: 5.94vw;
    margin: 0 auto;
}
.pay h2 {
    font-size: 3.75vw;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1;
    text-align: center;
}
.pay-wrap {
        border-radius: 2.08vw;
        background: #fffefe;
        filter: drop-shadow(0px 0px 23.04px rgba(136, 136, 136, 0.16));
        width: 54.01vw;
        margin: 0 auto;
}
.pay-wrap-1 {
    height: 9.06vw;
    margin-top: 6.3vw;
}
.pay-wrap-2 {
    height: 16.35vw;
    margin-top: 2.76vw;
    display: flex;
}
.pay-wrap-3 {
    height: 38.14vw;
    margin-top: 2.97vw;
}
.pay-wrap-4 {
    height: 71.55vw;
    margin-top: 2.71vw;
}
.pay-title {
    font-size: 1.88vw;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1;
    color: #3474d4;
    padding-top: 2.34vw;
    padding-left: 2.66vw;
}
.pay-txt {
    font-size: 1.35vw;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.65;
    padding-top: 0.94vw;
    padding-left: 2.66vw;
    padding-right: 2.19vw;
}
.pay-catd-icon {
    width: 13.85vw;
    margin-top: 1.88vw;
    margin-left: 1.46vw;
}
.pay-loan-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0.63vw;
    width: 47.76vw;
    margin: 2.2vw auto 0;
}
.pay-loan-card {
    background-color: #e0f1fb;
    border-radius: 0.52vw;
    height: 14.9vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.pay-loan-card .title {
    font-size: 1.88vw;
    letter-spacing: 0.025em;
    font-weight: 700;
    color: #3474d4;
    line-height: 1;
    margin-top: 8.18vw;
}
.pay-loan-card .txt {
    font-size: 1.25vw;
    letter-spacing: 0.025em;
    font-weight: 500;
    text-align: center;
    margin-top: 0.38vw;
}
.pay-loan-card .img-1 {
    width: 5.89vw;
    position: absolute;
    top: 1.61vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.pay-loan-card .img-2 {
    width: 4.11vw;
    position: absolute;
    top: 1.67vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.pay-loan-card .img-3 {
    width: 4.9vw;
    position: absolute;
    top: 2.4vw;
    left: 46%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.pay-loan-card .img-4 {
    width: 4.84vw;
    position: absolute;
    top: 2.6vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.pay-meyasu {
    font-size: 1.56vw;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.025em;
    margin-top: 2.34vw;
    margin-left: 2.19vw;
}
.pay-meyasu-title {
    font-size: 1.56vw;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.025em;
    margin-top: 2.34vw;
    margin-left: 2.19vw;
    margin-right: 2.19vw;
    border-bottom: 1px solid #3474d4;
    padding-bottom: 0.68vw;
}
.pay-meyasu-txt {
    font-size: 1.35vw;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.025em;
    margin-top: 0.99vw;
    margin-left: 2.19vw;
    margin-right: 2.19vw;
}
.pay-meyasu-note {
    font-size: 1.15vw;
    font-weight: 500;
    line-height: 1.68;
    letter-spacing: 0.025em;
    margin-top: 2.59vw;
    margin-left: 2.19vw;
    margin-right: 2.19vw;
}
.pay-meyasu-note p {
    margin-left:1em;
    text-indent:-1em;
}
@media screen and (max-width:768px) {
    .pay-inner {
        width: 90vw;
        padding-top: 15vw;
        padding-bottom: 10vw;
        margin: 0 auto;
    }
    .pay h2 {
        font-size: 8vw;
        line-height: 1.3;
    }
    .pay-wrap {
        border-radius: 3vw;
        width: 90vw;
    }
    .pay-wrap-1,
    .pay-wrap-2,
    .pay-wrap-3,
    .pay-wrap-4 {
        height: initial;
        margin-top: 10vw;
    }
    .pay-title {
        font-size: 5vw;
        padding-top: 6vw;
        padding-left: 3vw;
    }
    .pay-txt {
        font-size: 4vw;
        font-weight: 500;
        letter-spacing: 0.025em;
        line-height: 1.65;
        padding: 3vw 3vw 6vw;
    }
    .pay-catd-icon {
        width: 76vw;
        margin-top: 7vw;
        margin-left: 0vw;
        margin-right: 3vw;
    }
    .pay-loan-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1vw;
        width: 90%;
        margin: 3vw auto 0;
        padding-bottom: 6vw;
    }
    .pay-loan-card .title {
        font-size: 4.4vw;
        margin-top: 24vw;
    }
    .pay-loan-card .txt {
        font-size: 4vw;
        margin-top: 1vw;
    }
    .pay-loan-card {
        border-radius: 1vw;
        height: 46vw;
    }
    .pay-loan-card .img-1 {
        width: 19vw;
        top: 4vw;
    }
    .pay-loan-card .img-2 {
        width: 12.11vw;
        top: 4.67vw;
    }
    .pay-loan-card .img-3 {
        width: 17.9vw;
        top: 5.4vw;
    }
    .pay-loan-card .img-4 {
        width: 15.84vw;
        top: 5.6vw;
    }
    .pay-meyasu {
        font-size: 4.2vw;
        margin-top: 3vw;
        margin-left: 3vw;
    }
    .pay-meyasu-title {
        font-size: 4.2vw;
        margin: 6vw 3vw 0;
        padding-bottom: 1vw;
    }
    .pay-meyasu-txt {
        font-size: 4vw;
        margin: 4vw 3vw 0;
    }
    .pay-meyasu-note {
        font-size: 3vw;
        margin: 4vw 3vw 0;
        padding-bottom: 6vw;
    }
}

/* ///////////////////////////////////////////////
flow
//////////////////////////////////////////////// */
.flow {
    background: #FFF;
}
.flow-inner {
    width: 72.92vw;
    padding-top: 8.39vw;
    padding-bottom: 5.94vw;
    margin: 0 auto;
}
.flow h2 {
    font-size: 3.75vw;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1;
    text-align: center;
}
.flow-tel-wrap {
    display: flex;
    margin: 0vw 1.51vw 0.63vw;
    gap: 0.21vw;
}
.flow-tel-wrap img {
    width: 3.18vw;
    flex-shrink: 0;
}
.flow-tel-wrap a {
    font-size: 2.55vw;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #3474d4;
    flex-shrink: 0;
}
.flow-time-wrap {
    display: flex;
    margin: 0vw 1.51vw 0.78vw;
    font-size: 1.04vw;
}
.flow-time-wrap .time-title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6.82vw;
    height: 1.77vw;
    background: #3474d4;
    color: #FFF;
    letter-spacing: 0.07em;
    
}
.flow-time-wrap .time-txt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12.97vw;
    height: 1.77vw;
    border: 1px solid #3474d4;
    box-sizing: border-box;
    letter-spacing: 0.01em;
    color: #3474d4;
}
.flow .reason-card-wrap .contact-link .txt-1 {
    color: #FFF;
    font-size: 1.25vw;
    margin: 0;
}
.flow .contact-link {
    margin: 0 auto 1.51vw;
}
.flow .reason-card-wrap .card {
    min-height: 36.09vw;
    width: 22.4vw;
}
.flow .reason-card-wrap .card .txt-2 {
    margin: 1.04vw 1.21vw 1vw;
}
@media screen and (max-width:768px) {
    .flow h2 {
        font-size: 8vw;
    }
    .flow .reason-card-wrap .card {
        min-height: initial;
        width: 100%;
    }
    .flow .reason-card-wrap .card .txt-2 {
        margin: 3vw 3vw 6vw;
    }
    .flow-tel-wrap {
        margin: 0vw 3vw 2vw;
        gap: 1vw;
    }
    .flow-tel-wrap a {
        font-size: 11vw;
    }
    .flow-tel-wrap img {
        width: 11vw;
    }
    .flow-time-wrap .time-title {
        width: 20vw;
        height: 8vw;
    }
    .flow-time-wrap .time-txt {
        width: 62vw;
        height: 8vw;
    }
    .flow-time-wrap {
        display: flex;
        margin: 0vw 3vw 5vw;
        font-size: 4vw;
    }
    .flow .contact-link {
        margin: 0 auto 6vw;
    }
    .contact-link {
        width: 90%;
        height: 12vw;
        border-radius: 6vw;
    }
    .flow .reason-card-wrap .contact-link .txt-1 {
        font-size: 4vw;
    }
    .contact-link .img-1 {
        width: 5vw;
        margin-right: 2vw;
    }
    .contact-link .img-2 {
        width: 1.45vw;
        margin-left: 2vw;
    }
}
/* ///////////////////////////////////////////////
access
//////////////////////////////////////////////// */
.access {
    background: url(../images/bg-price.png) no-repeat top center / contain;
}
.access-inner {
    width: 72.92vw;
    padding-top: 12.08vw;
    padding-bottom: 12.45vw;
    margin: 0 auto;
}
.access h2 {
    font-size: 3.75vw;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1.4;
    text-align: center;
}
.access-img-wrap {
    display: grid;
    grid-template-columns: 33.96vw 33.96vw;
    gap: 5.05vw;
    margin: 7.29vw auto 0;
}
.access-img-wrap .title {
    font-size: 2.08vw;
    font-weight: 700;
    letter-spacing: 0.025em;
    color: #3474d4;
    text-align: center;
    margin-bottom: 1.56vw;
}
.swiper img {
    filter: drop-shadow(0px 0px 23.04px rgba(136, 136, 136, 0.16));
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    text-align: center;
    margin-top: 1.72vw;
}
.swiper-pagination-bullet {
    width: 1.15vw;
    height: 1.15vw;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.63vw;
}
.swiper-pagination-bullet-active {
    background: #3474d4;
}
.access-img-comment {
    font-size: 1.35vw;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-align: center;
    line-height: 1;
    margin-top: 2.86vw;
}
.access-time-wrap {
    display: flex;
    gap: 1.04vw;
    width: 67.47vw;
    margin: 4.27vw auto 0;
    justify-content: center;
}
.access .time-head {
    width: 53.74vw;
    height: 4.55vw;
    font-size: 1.56vw;
}
.access .time-head .txt-2, 
.access .time-body .txt-2 {
    letter-spacing: 0.4em;
    height: 4.55vw;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.access .time-body {
    font-size: 1.56vw;
}
.access .time-body .txt-1,
.access .time-head .txt-1 {
    width: 15.36vw;
    height: 4.55vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-right: 1px solid #FFF;
    box-sizing: border-box;
}
.access .time-body .txt-1 {
    border-right: 1px solid #3474d4;
    color: #343434;
}
.access .holiday {
    width: 12.66vw;
    margin-left: 0;
}
.access .holiday .txt-1, .access .time .txt-1 {
    font-size: 1.56vw;
    height: 4.55vw;
}
.access .holiday .txt-2, .access .time .txt-2 {
    font-size: 1.56vw;
    height: 9.1vw;
}
.access iframe {
    width: 100%;
    height: 19.22vw;
    margin-top: 1.67vw;
}
.access-adress-wrap {
    display: flex;
    margin-top: 3.18vw;
    margin-left: 2.81vw;
    gap: 1.35vw;
}
.access-adress-wrap img {
    width: 26.77vw;
    height: 100%;
    flex-shrink: 0;
}
.access-adress-wrap p {
    font-size: 1.35vw;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 0.88;
    border-left: 1px solid #000;
    padding-left: 1.09vw;
}
@media screen and (max-width:768px) {
    .access-inner {
        width: 90vw;
        padding-top: 15vw;
        padding-bottom: 15vw;
    }
    .access h2 {
        font-size: 8vw;
    }
    .access-img-wrap {
        display: grid;
        grid-template-columns: 90vw;
        gap: 10vw;
        margin: 15vw auto 0;
    }
    .access-img-wrap .title {
        font-size: 5vw;
        margin-bottom: 3vw;
    }
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
        margin-top: 0;
    }
    .swiper-pagination-bullet {
        width: 2vw;
        height: 2vw;
    }
    .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 2vw;
    }
    .access-img-comment {
        font-size: 4vw;
        margin-top: 4vw;
        line-height: 1.4;
    }
    .access-time-wrap {
        gap: 3vw;
        width: 100%;
        margin: 6vw auto 0;
        flex-direction: column;
    }
    .access .time-head {
        width: 90vw;
        height: 7vw;
        font-size: 3.4vw;
    }
    .access .time-head .txt-2, .access .time-body .txt-2 {
        letter-spacing: 0.1em;
        height: 11vw;
    }
    .access .time-body .txt-1, .access .time-head .txt-1 {
        width: 23vw;
        height: 11vw;
    }
    .access .time-body {
        font-size: 3.4vw;
    }
    .access .holiday .txt-1, .access .time .txt-1 {
        font-size: 4vw;
        height: 11vw;
    }
    .access .holiday .txt-2, .access .time .txt-2 {
        font-size: 4vw;
        height: 11vw;
    }
    .access .holiday {
        width: 36vw;
        margin: 0 auto;
    }
    .access iframe {
        height: 80vw;
        margin-top: 6vw;
    }
    .access-adress-wrap p {
        font-size: 4vw;
        border-top: 1px solid #000;
        padding-top: 2vw;
        border-left: none;
        padding-left: 0;
        line-height: 1.4;
    }
    .access-adress-wrap {
        flex-direction: column;
        margin-top: 6vw;
        margin-left: 0vw;
        gap: 3vw;
    }
    .access-adress-wrap img {
        width: 90vw;
    }
}



/* ///////////////////////////////////////////////
doctor
//////////////////////////////////////////////// */
.doctor {
    background: #e0f1fa;
}
.doctor-inner {
    width: 100%;
    padding-top: 7.5vw;
    padding-bottom: 4.58vw;
    margin: 0 auto;
}
.doctor h2 {
    font-size: 3.75vw;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1;
    text-align: center;
}
.doctor-wrap {
    display: flex;
    width: 78.13vw;
    margin: 5.16vw 0 0 13.54vw;
}
.doctor-wrap img {
    width: 21.25vw;
    height: 100%;
}
.doctor-wrap .txt-1 {
    font-size: 1.35vw;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.65;
}
.doctor-wrap .prof-wrap {
    display: flex;
    margin-top: 3.91vw;
}
.doctor-wrap .prof-wrap-left {
    width: 32.14vw;
    flex-shrink: 0;
}
.doctor-wrap .title {
    font-size: 1.35vw;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1;
    color: #3474d4;
    background: #FFF;
    border: 1px solid #3474d4;
    border-radius: 1.58vw;
    width: 11.51vw;
    height: 3.18vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.82vw;
}
.doctor-wrap .txt {
    font-size: 1.25vw;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.79;
    margin-left: 2.76vw;
}
.doctor-wrap .txt span {
    margin-left: 1.82vw;
}
@media screen and (max-width:768px) {
    .doctor-inner {
        padding-top: 15vw;
        padding-bottom: 10vw;
    }
    .doctor h2 {
        font-size: 8vw;
    }
    .doctor-wrap {
        display: flex;
        flex-direction: column-reverse;
        width: 90vw;
        margin: 15vw auto 0;
    }
    .doctor-wrap img {
        width: 100%;
    }
    .doctor-wrap .txt-1 {
        font-size: 4vw;
        margin-top: 3vw;
    }
    .doctor-wrap .prof-wrap {
        flex-direction: column;
        margin-top: 4vw;
        gap: 3vw;
    }
    .doctor-wrap .title {
        font-size: 5vw;
        border-radius: 6vw;
        width: 37vw;
        height: 11vw;
        margin-bottom: 3vw;
    }
    .doctor-wrap .prof-wrap-left {
        width: 100%;
    }
    .doctor-wrap .txt {
        font-size: 4vw;
        margin-left: 4vw;
    }

}
/* ///////////////////////////////////////////////
contact
//////////////////////////////////////////////// */
.contact {
    background: url(../images/bg-price.png) no-repeat top center / contain;
}
.contact-inner {
    width: 72.92vw;
    padding-top: 12.03vw;
    padding-bottom: 3.13vw;
    margin: 0 auto;
}
.contact h2 {
    font-size: 3.75vw;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1;
    text-align: center;
    line-height: 1.11;
}
.contact-txt-1 {
    font-size: 1.67vw;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.34;
    text-align: center;
    margin: 4.06vw auto 0;
    white-space: nowrap;
}
form {
    margin-top: 4.69vw;
}



.CMS-FORM-GROUP p {
    display: block;
    font-size: min(1.5vw,20px);
    }
  
  .CMS-FORM-GROUP br {
    display: none;
  }

  .CMS-FORM-INPUT-LABEL,
  .CMS-FORM-EMAIL-LABEL,
.CMS-FORM-TEXTAREA-LABEL,
.CMS-FORM-DATE-LABEL,
.CMS-FORM-RADIO-LABEL  {
    width: 22.4vw;
    display: inline-flex;
    font-size: 1.67vw;
    font-weight: 500;
    letter-spacing: 0;
    position: relative;
    flex-shrink: 0;
    margin-top: 1vw;
    margin-bottom: 2vw;
  }

.CMS-FORM-INPUT,
.CMS-FORM-EMAIL,
.CMS-FORM-DATE {
    width: 46.6vw;
    height: 4.4vw;
    box-shadow: inset 0px 0px 5.7px 0.3px rgba(0, 0, 0, 0.08);
    border: none;
    padding: 0 1.3vw;
    font-size: 1.67vw;
    background: #f9f9f9;
}
.CMS-FORM-INPUT::placeholder,
.CMS-FORM-EMAIL::placeholder,
.CMS-FORM-DATE::placeholder,
.FORM-TEXT-AREA::placeholder {
   color: #9c9c9c;
}
.FORM-TEXT-AREA {
    width: 46.6vw;
    height: 18.36vw;
    box-shadow: inset 0px 0px 5.7px 0.3px rgba(0, 0, 0, 0.08);
    border: none;
    padding: 1.46vw 1.3vw;
    font-size: 1.67vw;
    background: #f9f9f9;
}
  
.CMS-FORM-RADIO {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
    row-gap: min(0.69vw,10px);
    align-items: center;
}
.CMS-FORM-RADIO input {
    width: 8%;
}
.CMS-FORM-RADIO label {
    width: 91%;
    font-size: min(1.25vw,18px);
    font-weight: 700;
    letter-spacing: 0.07em;
}
.CMS-FORM-TEXTAREA {
    width: min(42.57vw,613px);
    height: min(9.79vw,141px);
    border: min(0.21vw,3px) solid #DBDBDB;
    padding: 0;
    font-size: min(1.25vw,18px);
}
.CMS-FORM-GROUP {
    display: flex;
    gap: min(2.15vw,31px);
    border-top: 1px solid #eae8e8;
    padding-top: 2.03vw;
    padding-bottom: 2.45vw; 
    align-items: center;
}
.CMS-FORM-GROUP:last-of-type {
    border: none;
}
.CMS-FORM-GROUP .title {
    margin-left: 8.44vw;
}



.required {
    margin-right: 1.5vw;
    width: 5.83vw;
    height: 2.55vw;
    background: #3474d4;
    color: #FFF;
    font-size: 1.67vw;
    font-weight: 700;
    letter-spacing: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.82vw;

}
.not-required {
    margin-right: 1.5vw;
    width: 5.83vw;
    height: 2.55vw;
    background: #cbcbcb;
    color: #FFF;
    font-size: 1.67vw;
    font-weight: 700;
    letter-spacing: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.82vw;
}
.CMS-FORM-GROUP input[type="submit"] {
    background: #3474d4;
    color: #FFF;
    width: 36.3vw;
    height: 6.56vw;
    border: none;
    margin:  0 auto;
    font-size: 2.08vw;
    letter-spacing: 0;
    border-radius: 3.28vw;
}

.CMS-FORM-B2 input{
    background: #3474d4;
    color: #FFF;
    width: 36.3vw;
    height: 6.56vw;
    border: none;
    margin:  0 auto;
    font-size: 2.08vw;
    letter-spacing: 0;
    border-radius: 3.28vw;
}



.CMS-FORM-TOP a{
    background: #3474d4;
    color: #FFF;
    width: 36.3vw;
    height: fit-content;
    padding: 10px;
    border: none;
    margin:  0 auto;
    font-size: 2.08vw;
    letter-spacing: 0;
    border-radius: 3.28vw;
    font-size: 16px;
}

.CMS-FORM-B, .CMS-FORM-B2, .CMS-FORM-TOP{
    display: block;
    margin: 0 auto;
    text-align: center;
    position: relative;
    width: max-content;
    margin: 1.46vw auto 0 !important;
    padding: 0;
    border-top: none;
}

.CMS-FORM-B .wpcf7-spinner{
    display: none;
}


.CMS-FORM-B::after {
    content: "";
    background : #27569d;
    position: absolute;
    top: 0.63vw;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 3.28vw;
}

.CMS-FORM-B2::after {
    content: "";
    background : #27569d;
    position: absolute;
    top: 0.63vw;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 3.28vw;
}


.CMS-FORM-B::before {
    content: "";
    background: url(../images/icon-btn-arrow.png) no-repeat top center / contain ;
    position: absolute;
    top: 3.1vw;
    right: 12vw;
    width: 0.43vw;
    height: 0.72vw;
}

.CMS-FORM-B2::before {
    content: "";
    background: url(../images/icon-btn-arrow_r.png) no-repeat top center / contain ;
    position: absolute;
    top: 3.1vw;
    left: 12vw;
    width: 0.43vw;
    height: 0.72vw;
}



.CMS-FORM-B:hover {
    top: 0.63vw;
}
.CMS-FORM-B2:hover {
    top: 0.63vw;
}

.CMS-FORM-B:hover::after {
    display: none;
}
.CMS-FORM-B2:hover::after {
    display: none;
}


.submit-wrap {
    position: relative;
    width: max-content;
    margin: min(1.81vw,26px) auto 0;
}
.submit-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: min(4.58vw,66px);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background: url(../images/icon-btn.png) no-repeat;
    background-size: contain;
    width: min(0.53vw,7.6px);
    height: min(1.04vw,15px);
}
.form-date-wrap-2 {
    display: flex;
    flex-direction: column;
    gap: 1.35vw;

}
.form-date-wrap {
    display: flex;
    align-items: center;
    gap: 1.61vw;
}
.form-date-wrap span {
    font-size: 1.67vw;
    font-weight: 500;
    letter-spacing: 0;
    width: 9.95vw;
    margin-right: 1vw;
}
.form-date-wrap input {
    width: 35vw;
}
.privacy-wrap {
    width: 53.29vw;
    height: 4.32vw;
    margin: 0 auto;
    background: #e0f1fa;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.73vw;
    font-size: 1.35vw;
    letter-spacing: 0;
    color: #353535;
    padding: 1vw;
}
.privacy-wrap br{
display: none;
}

.privacy-wrap .is_sp{
    display: none;
    }

.privacy-wrap a {
    text-decoration: underline;
    display: inline;
}
.privacy-check {
    width: 1.46vw;
    height: 1.46vw;
    margin-right: .5vw;
}
.form-note {
    font-size: 1.35vw;
    letter-spacing: 0;
    line-height: 1.65;
    text-align: center;
    margin-top: 2.55vw;
}
@media screen and (max-width:768px) { 
    .contact {
        padding: 10vw 0 20vw;
    }
    .contact h2 {
        font-size: 7.8vw;
        line-height: 1.3;
    }
    .contact-inner {
        width: 90vw;
        margin: 10vw auto 0;
    }
    .contact-txt-1 {
        font-size: 4vw;
        margin: 15vw auto 0;
        white-space: initial;
    }
    .CMS-FORM-GROUP {
        /* flex-direction: column; */
        gap: 3vw;
        align-items: center;
    }

    .CMS-FORM-GROUP p {
        font-size:18px;
        }

    .CMS-FORM-INPUT,
    .CMS-FORM-EMAIL,
    .CMS-FORM-DATE {
        width: 97%;
        height: 11vw;
        font-size: 18px;
    }
    .CMS-FORM-INPUT-LABEL,
    .CMS-FORM-EMAIL-LABEL,
    .CMS-FORM-TEXTAREA-LABEL,
    .CMS-FORM-DATE-LABEL,
    .CMS-FORM-RADIO-LABEL {
        width: 100%;
        font-size: 5vw;
        margin-top: 6vw;
    }
    .required {
        top: 0vw;
        width: 14vw;
        height: 7vw;
        font-size: 4vw;
    }
    .not-required {
        top: 0vw;
        width: 14vw;
        height: 7vw;
        font-size: 4vw;;
    }



    .CMS-FORM-TEXTAREA {
        width: 100%;
        height: 40vw;
        font-size: 18px;
    }
    .CMS-FORM-GROUP:nth-of-type(n + 2) {
        margin-top: 3vw;
        display: block;
    }
    .CMS-FORM-GROUP input[type="submit"] {
        width: 70vw;
        height: 13vw;
        font-size: 5vw;
        border-radius: 7vw;
    }

    .CMS-FORM-GROUP input {
        height: 13vw;
        font-size: 5vw;
    }




.CMS-FORM-B2 input{
        display: block;
        text-align: center;
        position: relative;
        width: 70vw;
        margin: 1.46vw auto 0 !important;
        padding: 0;
        border-top: none;
        border-radius: 7vw;
        font-size: 5vw;

                height: 13vw;
    }

    .CMS-FORM-B2::after {
        content: "";
        background : #27569d;
        position: absolute;
        top: 0.63vw;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        border-radius: 3.28vw;
    }
    
    .CMS-FORM-B2::before {
        content: "";
        background: url(../images/icon-btn-arrow_r.png) no-repeat top center / contain ;
        position: absolute;
        left: 12vw;
        z-index: 1;
    }
    
    
    .submit-wrap::after {
        right: 5vw;
        width: 1.6vw;
        height: 3.2vw;
    }
    .privacy-note {
        font-size: 2vw;
        white-space: initial;
        margin:5vw auto 0;
    }
    .privacy {
        width: initial;
        height: 50vw;
        margin: 10vw auto 0;
        border: 0.2rem solid #ccc;
        padding: 2vw;
        overflow: auto;
        font-size: 3vw;
        letter-spacing: 0.03em;
        line-height: 1.6;
    }
    .CMS-FORM-RADIO label {
        font-size: 4vw;
    }
    .CMS-FORM-RADIO {
        gap: 4%;
        row-gap: 6vw;
    }
    .CMS-FORM-RADIO input {
        width: 4vw;
    }
    form {
        margin-top: 15vw;
    }
    .CMS-FORM-GROUP .title {
        margin-left: 16vw;
    }
    .form-date-wrap span {
        font-size: 4vw;
        width: 24vw;
    }
    .form-date-wrap input {
        width: 61vw;
    }
    .FORM-TEXT-AREA {
        width: 97%;
        height: 50vw;
        padding: 1.46vw 1.3vw;
        font-size: 18px;
        background: #f9f9f9;
    }
    .privacy-wrap {
        width: 100%;
        height: 20vw;
        gap: 1vw;
        font-size: 4vw;
        text-align: center;
    }

    .privacy-wrap .is_sp{
        display: block;
        }

    .privacy-check {
        width: 4.46vw;
        height: 4.46vw;
        flex-shrink: 0;
    }
    .CMS-FORM-B {
        margin: 6vw auto 0 !important;
    }


    .CMS-FORM-B2 {
        margin: 6vw auto 0 !important;
    }

    .CMS-FORM-TOP a{
        border-radius: 7vw;
        font-size: 14px;
    }


    .CMS-FORM-B::before {
        top: 6.1vw;
        right: 12vw;
        width: 4vw;
        height: 2vw;
    }

    .CMS-FORM-B2::before {
        top: 6.1vw;
        right: 12vw;
        width: 4vw;
        height: 2vw;
    }


    .CMS-FORM-B::after {
        content: "";
        background: #27569d;
        position: absolute;
        top: 1.5vw;
        border-radius: 7vw;
    }

    .CMS-FORM-B2::after {
        content: "";
        background: #27569d;
        position: absolute;
        top: 1.5vw;
        border-radius: 7vw;
    }

    .CMS-FORM-B:hover {
        top: 1.5vw;
    }
    .form-note {
        font-size: 4vw;
        margin-top: 8vw;
        text-align: center;
    }

}  
/* ///////////////////////////////////////////////
footer
//////////////////////////////////////////////// */
footer {
    background: #27569d;
    height: 4.06vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
small {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    margin: 0 auto;
    display: block;
    color: #FFF;
}
@media screen and (max-width:768px) { 
    footer {
        height: 14vw;
        padding-bottom: 10vw;
    }
    small {
        font-size: 14px;;
    }
}
/* ///////////////////////////////////////////////
thanx
//////////////////////////////////////////////// */
.thanx-inner {
    width: min(69.44vw,1000px);
    margin: 0 auto;
    text-align: center;
    font-size: min(1.67vw,24px);
    line-height: 2;
    padding: min(8.4vw,121px) 0;
}
.thanx {
    background: #FFF;
    padding-top: min(8.4vw,121px);
    padding-bottom: 4vw;
}
.thanx .footer-link-wrap {
    margin: 3vw auto 0;
    width: max-content;
}

@media screen and (max-width:768px) { 
    .thanx-inner {
        width: 90vw;
        font-size: 4vw;
        line-height: 2;
        padding: 15vw 0;
    }
    .thanx .footer-link-wrap {
        width: 60vw;
    }
}

/* ///////////////////////////////////////////////
fixed
//////////////////////////////////////////////// */
@media screen and (max-width:768px) { 
    .fixed {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        display: none;
        z-index: 10;
    }
    .fixed a {
        width: 100vw;
        margin: 0 auto;
        border-radius: 0;

    }
    .fixed .contact-link .txt-1 {
        font-size: 4vw;
    }
}
/* ///////////////////////////////////////////////
privacy
//////////////////////////////////////////////// */
.privacy-inner {
    padding: 15vw 10vw
}
.privacy-inner p {
    font-size: 16px;
    line-height: 1.7;
}
.p_badd {
    margin-bottom: 30px;
}
@media screen and (max-width:768px) { 
    .privacy-inner {
        padding: 10vw 4vw
    }
}
/* ///////////////////////////////////////////////
common
//////////////////////////////////////////////// */
.sp {
    display: block;
}
.pc {
    display: none;
}
.pc-flex {
    display: none;
}
.dot {
    width: 12.11vw;
    margin: 0 auto;
}
.p-relative {
    position: relative;
}
a:hover,
input  {
    transition: 0.3s;
}
a:hover {
    opacity: 0.7;
}

.fadeInUp {
    -webkit-animation: fadeInUp 0.5s ease;
    animation: fadeInUp 0.5s ease;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
  
.fade {
    opacity: 0;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (min-width:769px) {
    .sp {
        display: none;
    }
    .pc {
        display: block;
    }
    .pc-flex {
        display: flex;
    }
    a[href^="tel:"] {
        pointer-events: none
    }
    .dot {
        width: 68px;
    }
}
.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
  border: 1px solid #eb6100;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #eb6100;
  background: #fff;
}

a.btn--radius {
  border-radius: 100vh;
}
.btn,
a.btn,
button.btn {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  margin: 0 auto;
  margin-top: 24px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.5rem;
}



