<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*------------------------------------------------------------
	index
------------------------------------------------------------*/
.loading {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #fff;
	z-index: 40000;
	display: block;
	-webkit-perspective: 500px;
	perspective: 500px;
}

.slideout {
	opacity: 0;
	-webkit-transition: all .8s;
	transition: all .8s;
	z-index: -1;
}

.loading img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    animation: rorate 4s linear infinite;
    margin: -20px 0 0 -20px;
}

@keyframes rorate {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}
.mainVisual {
    height: 530px;
    display: flex;
    align-items: center;
	position: relative;
	overflow: hidden;
}

.mainVisual .mv-img {
	display: flex;
    width: 100%;
    overflow: hidden;
    position: absolute;
    height: 100%;
	z-index: -1;
	top: 0;
	left: 0;
}

.mainVisual .mv-img img {
	max-width: inherit;
}

/* 1つ目の画像 */
.mainVisual .mv-img img:first-child {
  -webkit-animation: loop 100s -50s linear infinite;
  animation: loop 100s -50s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

/* 2つ目の画像 */
.mainVisual .mv-img img:last-child {
  -webkit-animation: loop2 100s  linear infinite;
  animation: loop2 100s linear infinite;
}

/*アニメーション*/
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
.mainVisual .mv-btn {
	position: absolute;
    right: 10%;
    bottom: 20px;
}
.mainVisual h2 {
    margin: 0 auto;
    width: 1106px;
    color: #1b1b1b;
    font-family: "游明朝", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W6", serif;
    font-feature-settings: "palt";
    font-weight: 400;
    line-height: 1.82;
    text-shadow: 5px 5px 10px #fff, 5px 0px 10px #fff, 0px 5px 10px #fff;
    transform: translateY(26px);
}
.mainVisual h2 small {
    display: block;
    font-size: 2.3rem;
    letter-spacing: 0.2em;
}
.mainVisual h2 span {
    font-size: 3.7rem;
    letter-spacing: 0.2em;
    border-bottom: 1px solid #000;
}
#main .medcaBox h3 {
    margin-bottom: 57px;
}
#main .medcaBox ul {
    margin-top: -39px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#main .medcaBox li {
    margin: 39px 25px 0;
    font-size: 1.8rem;
    line-height: 1.1;
    border-radius: 50%;
    overflow: hidden;
	padding-bottom: 2px;
}
#main .medcaBox li:first-child {
    margin: 39px 30px 0 270px;
}
#main .medcaBox li:nth-child(2) {
    margin: 39px 270px 0 30px;
}
#main .medcaBox li a {
    display: block;
    position: relative;
    text-align: center;
    letter-spacing: -0.05em;
}
#main .medcaBox li a span {
    padding-bottom: 14px;
    width: 100%;
    height: 90px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    position: absolute;
    left: 0;
    bottom: -2px;
    font-feature-settings: "palt";
    box-sizing: border-box;
    background-color: #eee;
	transition: .5s;
}
#main .medcaBox li:first-child span, #main .medcaBox li:nth-child(2) span {
    height: 100px;
    font-size: 3rem;
    letter-spacing: 0.2em;
}
#main .medcaBox li:nth-child(2) span {
    flex-direction: column;
}
#main .medcaBox li a small {
    font-size: 1.8rem;
    letter-spacing: 0;
}
#main .caseBox {
    padding-bottom: 130px;
    background: #f7f7f7 url("../../image/case_bg.png") no-repeat right top;
}
#main .caseBox h3 {
    margin-bottom: 35px;
}
#main .caseBox p.title {
    margin-bottom: 52px;
    line-height: 1.88;
    text-align: center;
}
#main .caseBox ul {
    margin: -20px 0 56px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#main .caseBox li {
    margin-top: 20px;
    width: 280px;
}
#main .caseBox li a {
    display: block;
	transition: .3s;
}
#main .caseBox li .phoBox {
    margin-bottom: 7px;
    text-align: center;
    position: relative;
    height: 200px;
    overflow: hidden;
}
#main .caseBox li .phoBox img {
	transition: .5s;
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    max-width: none;
    height: 220px;
}
#main .caseBox li .txtBox time {
    margin-bottom: 6px;
    display: inline-block;
}
#main .caseBox li .txtBox p {
    padding-left: 3.9em;
    text-indent: -3.9em;
    line-height: 1.25;
}
#main .caseBox li .txtBox span {
    margin-right: 12px;
    padding: 1px 8px;
    border: 1px solid #000;
}
#main .caseBox .comBtn a {
    padding-left: 50px;
    width: 450px;
    background-position: right 22px center;
}
#main .caseBox .comBtn a:hover {
    background-position: right 16px center;
}
#main .reason {
    margin-bottom: 132px;
}
#main .reason h3 {
    margin: 0 auto 60px;
    width: 1200px;
}
#main .reason ul {
    display: flex;
    flex-wrap: wrap;
}
#main .reason li {
    width: 50%;
    min-height: 450px;
    background: url("../../image/reason_bg01.jpg") no-repeat right bottom / cover;
}
#main .reason li:nth-of-type(2) {
    background: url("../../image/reason_bg02.jpg") no-repeat left bottom / cover;
}
#main .reason li:nth-of-type(3) {
    background: url("../../image/reason_bg03.jpg") no-repeat right top / cover;
}
#main .reason li:nth-of-type(4) {
    background: url("../../image/reason_bg04.jpg") no-repeat left top / cover;
}
#main .reason li .stepInn {
    padding: 114px 0 63px 80px;
    width: 377px;
    height: 100%;
    font-feature-settings: "palt";
    letter-spacing: 0.08em;
    box-sizing: border-box;
}
#main .reason li:nth-of-type(2n-1) .stepInn {
    margin-left: auto;
    padding: 114px 80px 63px 4px;
}
#main .reason li h4 {
    margin-bottom: 30px;
    position: relative;
    font-family: "游明朝", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W6", serif;
    font-size: 3rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
    z-index: 2;
}
#main .reason li h4 span {
    position: absolute;
    top: -130px;
    left: 165px;
    color: rgba(255, 255, 200, 0.9);
    font-family: 'Oswald', sans-serif;
    font-size: 18rem;
    font-weight: 400;
    z-index: -1;
}
#main .reason li p {
    text-align: justify;
    line-height: 1.6;
}
#main .message {
    min-height: 900px;
    color: #fff;
    background: url("../../image/message_bg.jpg") no-repeat left top / cover;
}
#main .message .content {
    padding: 0 50px 0 55px;
    box-sizing: border-box;
}
#main .message h3 {
    margin-bottom: 56px;
}
#main .message h3 span {
    color: #fff;
    letter-spacing: 0.2em;
}
#main .message .imgBox .textBox {
    width: 548px;
}
#main .message .imgBox .textBox p {
    margin-bottom: 80px;
    font-family: "游明朝", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W6", serif;
    font-size: 1.8rem;
    font-weight: lighter;
    font-feature-settings: "palt";
    line-height: 1.67;
    letter-spacing: 0.08em;
    text-align: justify;
}
#main .message .imgBox .comBtn {
    display: flex;
    align-items: center;
}
#main .message .imgBox .comBtn li {
    background-color: #fff;
}
#main .message .imgBox .comBtn li:first-of-type {
    margin-right: 32px;
}
#main .message .imgBox .photoBox {
    width: 439px;
    text-align: right;
}
#main .message .imgBox .photoBox img {
    margin-bottom: 10px;
}
#main .message .imgBox .photoBox span {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    font-family: "游明朝", "YuMincho", "Hiragino Mincho Pro", "MS PMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W6", serif;
}
#main .message .imgBox .photoBox small {
    font-size: 1.8rem;
}
#main .information {
    padding: 100px 0 145px;
    min-height: 1580px;
    box-sizing: border-box;
    background: url("../../image/info_bg01.png") no-repeat left -20px, url("../../image/info_bg02.png") no-repeat right top;
}
#main .information .infoList {
    margin: 0 auto 100px;
    width: 1100px;
    display: flex;
    justify-content: space-between;
}
#main .information .insBox ul {
    display: flex;
}
#main .information h3 {
    margin-bottom: 54px;
}
#main .information .infoList .calendar {
    width: 550px;
}
#main .information .infoList .facebook {
    width: 480px;
}
#main .information .insBox ul li {
    width: 333px;
}
#main .contact {
    padding-bottom: 94px;
    background-color: #ebda82;
}
#main .contact h3 {
    margin-bottom: 62px;
    color: #fff;
}
#main .contact h3 span {
    font-size: 3rem;
}
#main .contact h3::before {
    background-color: #fff;
}
#main .contact .contactList {
    margin-left: 122px;
    width: 990px;
}
#main .contact li:first-of-type {
    margin-right: 47px;
}
#main .contact li:first-of-type::before {
    position: absolute;
    top: -102px;
    left: -60px;
    content: url(../../image/contact_img01.png);
}
#main .contact li:nth-of-type(2) {
    margin-right: 30px;
}
#main .contact li:last-of-type::before {
    position: absolute;
    top: -106px;
    right: -35px;
    content: url(../../image/contact_img02.png);
}
#main .contact li:first-of-type span {
    display: block;
    line-height: 2.1;
    text-align: right;
}
#main .map {
    min-height: 390px;
    position: relative
}
#main .map iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
}
@media all and (min-width: 897px) {
    #main .topLink a:hover {
        border: none;
    }
    #main .fixBtnList li a:hover {
        opacity: 0.7;
    }
    #main .medcaBox li a:hover span {
        background-color: #ebda82;
    }
    #main .caseBox li a:hover {
        opacity: 0.7;
    }
}
@media all and (max-width: 896px) {
    .mainVisual {
        padding: 0;
        min-height: 400px;
		height: 400px;
        box-sizing: border-box;
        /*background-image: url("../../image/main_bg_sp.jpg");*/
    }
    .mainVisual h2 {
		margin: 0;
		width: auto;
		line-height: 1.7;
		text-shadow: 1px 1px 2px #FFF, -1px 1px 2px #FFF, -1px -1px 2px #FFF, -1px -1px 2px #FFF, 1px 1px 2px #FFF, -1px 1px 2px #FFF, -1px -1px 2px #FFF, -1px -1px 2px #FFF;
		transform: translateY(0);
		position: absolute;
		text-align: center;
		width: 100%;
		bottom: 20px;
    }
    .mainVisual h2 small {
        display: block;
        font-size: 2rem;
        letter-spacing: 0.13em;
    }
    .mainVisual h2 span {
        font-size: 3rem;
        letter-spacing: 0.13em;
        border-bottom: none;
    }
	.mainVisual .mv-img img {
		height: 400px;
	}
	
	.mainVisual .mv-btn {
		position: absolute;
		right: 5%;
		bottom: 120px;
		width: 120px;
	}

	.mainVisual .mv-btn img {
		height: auto;
	}

    #main .bgBox {
        margin-bottom: 52px;
        padding: 41px 0 70px;
        min-height: inherit;
        background: none;
        background: url(../../image/medca_bg01_sp.png) no-repeat left 415px / 165px auto, url(../../image/medca_bg02_sp.png) no-repeat right bottom / 109px auto;
    }
    #main .topLink {
        margin-bottom: 53px;
        padding: 25px 10px 30px;
        font-weight: normal;
        line-height: 1.43;
        box-shadow: none;
        background: url("../../image/top_bg_sp.jpg") no-repeat left top / cover;
    }
    #main .topLink p {
        margin-bottom: 15px;
        font-size: 2.1rem;
        letter-spacing: 0.15em;
    }
    #main .topLink a {
        padding: 0;
        display: inline-block;
        font-size: 1.4rem;
        font-weight: 700;
        border-bottom: none;
    }
    #main .topLink a img {
        width: 11px;
    }
    #main .topLink a em {
        position: relative;
        border-bottom: 2px solid #ebd087;
    }
    #main .topLink a span {
        margin-left: 0;
        position: absolute;
        bottom: -6px;
        right: -14px;
        transform: none;
    }
    #main .medcaBox {
        margin: 0 auto;
        width: 98%;
        max-width: 550px;
    }
    #main .medcaBox h3 {
        margin-bottom: 60px;
    }
    #main .medcaBox ul {
        margin: -22px -10px 0;
    }
    #main .medcaBox li {
        margin: 22px 2.316% 0;
        width: 28.7%;
        font-size: 1.2rem;
        box-shadow: 0 3px 2px rgba(120, 120, 120, 0.3);
    }
    #main .medcaBox li:first-child {
        width: 41%;
        margin: 20px 12px 0 0;
    }
    #main .medcaBox li:nth-child(2) {
        width: 41%;
        margin: 20px 0 0 12px;
    }
    #main .medcaBox li a span {
        padding-bottom: 6px;
        height: 46%;
    }
    #main .medcaBox li:first-child span, #main .medcaBox li:nth-child(2) span {
        height: 33%;
        font-size: 1.5rem;
    }
    #main .medcaBox li a small, #main .medcaBox li a em {
        font-size: 0.9rem;
    }
    #main .caseBox {
        margin-bottom: 50px;
        padding-bottom: 65px;
        position: relative;
        background: #f7f7f7 url("../../image/case_bg01_sp.png") no-repeat left 147px / 142px auto;
    }
    #main .caseBox .content {
        position: relative;
        z-index: 2
    }
    #main .caseBox::after {
        position: absolute;
        right: 0;
        bottom: -5px;
        content: url("../../image/case_bg02_sp.png")
    }
    #main .caseBox h3 {
        margin: 0 -10px;
        padding-bottom: 25px;
        background-color: #fff;
    }
    #main .caseBox p.title {
        margin: 24px 0 48px;
        font-size: 1.4rem;
    }
    #main .caseBox ul {
        margin: -20px auto 52px;
        width: 83%;
        min-width: 294px;
        display: block;
    }
    #main .caseBox li {
        margin-top: 44px;
        width: auto;
        font-size: 1.4rem;
    }
    #main .caseBox li .txtBox time {
        letter-spacing: -0.08em;
    }
    #main .caseBox li .txtBox p {
        letter-spacing: -0.06em;
    }
    #main .caseBox li .txtBox span {
        margin-right: 5px;
    }
    #main .caseBox .comBtn a {
        padding: 10px 30px 9px 10px;
        width: 68%;
        max-width: 300px;
        font-size: 1.5rem;
        background-size: 12px auto;
        background-position: right 14px center;
    }
    #main .reason {
        margin: 0 10px 100px;
    }
    #main .reason h3 {
        margin: 0 -10px 28px;
        width: auto;
    }
    #main .reason h3 span {
        letter-spacing: 0.07em;
    }
    #main .reason ul {
        display: block;
    }
    #main .reason li {
        margin-bottom: 43px;
        width: auto;
        min-height: auto;
        position: relative;
        background: none !important;
    }
    #main .reason li .stepInn {
        padding: 0 10px !important;
        width: auto;
        height: auto;
    }
    #main .reason li:first-of-type .stepInn ,
    #main .reason li:nth-child(3) .stepInn {
        text-align: right;
    }
    #main .reason li:nth-of-type(2n-1) .stepInn {
        padding: 0;
    }
    #main .reason li .stepInn .photo {
        margin: 0 -20px -30%;
        width: auto;
    }
    #main .reason li h4 {
        margin-bottom: 15px;
        position: relative;
        font-size: 2.4rem;
        line-height: 1.25;
		text-shadow: 1px 1px 2px #FFF, -1px 1px 2px #FFF, -1px -1px 2px #FFF, -1px -1px 2px #FFF, 1px 1px 2px #FFF, -1px 1px 2px #FFF, -1px -1px 2px #FFF, -1px -1px 2px #FFF;
    }
    #main .reason li:nth-of-type(2n) h4 {
        display: inline-block;
        text-align: left;
    }
    #main .reason li h4 span {
        position: absolute;
        top: -60px;
        left: 0px;
        font-size: 9rem;
        color: rgba(235, 218, 130, 0.8);
	    text-shadow: none;
    }
    #main .reason li:first-of-type h4 span ,
    #main .reason li:nth-child(3) h4 span {
        left: inherit;
        right: 0px;
    }
    #main .reason li p {
        margin-right: 0;
        padding: 25px;
        position: relative;
        font-size: 1.4rem;
        line-height: 1.86;
        letter-spacing: 0.075em;
        background-color: rgba(235, 218, 130, 0.8);
        box-sizing: border-box;
    }
    #main .message {
        margin-bottom: 50px;
        min-height: inherit;
        background: none;
    }
    #main .message .content {
        padding: 0;
    }
    #main .message h3 {
        margin-bottom: 26px;
    }
    #main .message h3 span {
        font-size: 3rem !important;
    }
    #main .message .imgBox {
        margin: 0 -10px;
        padding-bottom: 53px;
        flex-wrap: nowrap;
        flex-direction: column-reverse;
        background-color: #F7F7F7;
    }
    #main .message .imgBox .textBox {
        margin: 0 auto;
        width: 76%;
    }
    #main .message .imgBox .textBox p {
        margin-bottom: 35px;
        font-size: 1.4rem;
        font-weight: 700;
        color: #333;
        line-height: 1.86;
    }
    #main .message .imgBox .photoBox {
        margin-bottom: 20px;
        padding-bottom: 17px;
        width: 100%;
        text-align: center;
        background: url("../../image/message_bg_sp.jpg") no-repeat left top / cover;
    }
    #main .message .imgBox .photoBox img {
        margin-bottom: 6px;
        width: 59%;
    }
    #main .message .imgBox .photoBox &gt; span {
        margin-right: 20%;
        font-size: 1.2rem;
        display: block;
        text-align: right;
    }
    #main .message .imgBox .photoBox small {
        font-size: 0.9rem;
    }
    #main .message .imgBox .comBtn {
        display: block;
    }
    #main .message .imgBox .comBtn li {
        background: none;
    }
    #main .message .imgBox .comBtn li:not(:last-of-type) {
        margin: 0 0 20px 0;
    }
    #main .message .imgBox .comBtn a {
        padding: 9px 45px 10px 20px;
        font-size: 1.5rem;
        background-size: 12px auto;
        background-position: right 15px center;
    }
    #main .information {
        margin-bottom: 100px;
        padding: 0;
        min-height: inherit;
        background: none;
    }
    #main .information .infoList {
        margin: 0;
        padding-bottom: 50px;
        width: auto;
        display: block;
        position: relative;
    }
    #main .information .infoList::before {
        position: absolute;
        left: 0;
        bottom: -7px;
        content: url("../../image/info_bg02_sp.png");
    }
    #main .information h3 {
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
    }
    #main .information .infoList li:first-of-type {
        padding-bottom: 50px;
        background: url("../../image/info_bg01_sp.jpg") no-repeat left top / cover;
    }
    #main .information .infoList div {
        margin: 0 auto !important;
        width: 95% !important;
        position: relative;
        text-align: center;
        z-index: 2;
    }
    #main .information .insBox ul {
        flex-wrap: wrap;
    }
    #main .information .insBox ul li {
        width: 50%;
        text-align: center;
    }
    #main .contact {
        padding-bottom: 0;
        background-color: #fff;
    }
    #main .contact .content {
        margin: 0;
    }
    #main .contact .contactList {
        margin: 0;
        width: auto;
    }
    #main .contact h3 {
        margin-bottom: 28px;
        color: #ebd087;
    }
    #main .contact h3 span {
        font-size: 2.5rem;
        letter-spacing: 0.07em;
    }
    #main .contact h3::before {
        background-color: #ebda82;
    }
    #main .map {
        height: auto;
        min-height: 265px;
    }
}
@media all and (-ms-high-contrast:none) {
    #main .fixBtnList li a {
        padding: 0 15px;
    }
    #main .caseBox li .txtBox span {
        padding: 4px 8px 0;
    }
}</pre></body></html>