@charset "utf-8";

/*-----------------------
    common.css
------------------------*/

/*----- font -----*/

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

/*----- reset -----*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%;
	vertical-align: baseline; background: transparent;
}
body {
	line-height: 1; color: #555;
	font-family: "メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","MS P Gothic","Osaka","Hiragino Kaku Gothic Pro", Verdana,Arial, Helvetica, sans-serif; 
	-webkit-text-size-adjust: none;
}
ol, ul { list-style: none; }

:focus { outline: 0; }
img { max-width: 100%; }

/* tables still need 'cellspacing="0"' in the markup */
table { border-collapse: collapse; border-spacing: 0; }

/*----- common -----*/

:root {
  --text: #161616;
  --text_hover: #999;
  --white: #fff;
  --beige: #f9f9f8;
  --beige_text: #e8dfd2;    
  --green: #125c31;
  --brown: #271d17;
  --red: #cf0000;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: var(--beige);
    letter-spacing: 1px;
}
@media screen and (max-width: 1260px){
    body {
        letter-spacing: 0;
    }
}

/* for CMS */
body:has(#wrapper){display:block;}
body:has(#wrapper)::after {position:relative;z-index:auto;pointer-events:all;opacity:1;background:none;}

a {
	transition: .5s;
}
a:hover{
	text-decoration: none;
}

.ojf img {
    width: 100%;
    object-fit: cover;
}
a .ihb {
    overflow: hidden;
}
a .ihb img {
    transition: .5s;
}
a:hover .ihb img {
    transform: scale(1.05);
}

button,
button:focus {
    outline: none;
}

/* PC時Tel発信無効化 */
@media screen and (min-width: 769px){
    
    a[href^="tel"] {
        pointer-events: none;
    }
    
}

/*--- fadein ---*/

/* for CMS */
#wrapper .fadein{opacity:1;}

.fadein {
    opacity: 0;
    transform: translate(0, 60px);
    transition: all 1s;
}
.fadein.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}
.fadein_first {
    animation-name: fadeIn1s;
    animation-delay: 1s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(60px);
    opacity: 0;
}
@keyframes fadeIn1s {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }    
}

/*----- wrap -----*/

.wrap {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
}
.wrap_wide {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
}
.wrap_narrow {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 30px;
}

@media screen and (max-width: 767px){

    .wrap,
    .wrap_wide,
    .wrap_narrow {
        padding: 0 6vw;
    }
    
}

/*----- header -----*/

.header {
    position: fixed;
    z-index: 9997;
    top: 0;
    left: 0;
    width: 100%;
    height: 135px;
    background: var(--beige);
    display: flex;
    justify-content: space-between;
}
.header .title {
    margin-left: 6vw;
}
.header .title .catch {
    margin: 20px 0 30px;
}
.header .title .logo {
    position: relative;
    z-index: 9999;
    width: 200px;
}

.header .menu .ul {
    display: flex;
    align-items: center;
    margin-top: 75px;
}
.header .menu .ul .li {
    margin-right: 30px;
}
.header .menu .ul .li a {
    color: var(--text);
}
.header .menu .ul .li a:hover {
    color: var(--text_hover);
}
.header .menu .ul .li.h_contact a {
    padding: 10px 50px;
    background: var(--green);
    border-radius: 30px;
    color: var(--white);
}
.header .menu .ul .li.h_contact a:hover {
    opacity: .8;
}

.header .menu {
    display: flex;
    align-items: center;
}
.header .menu .sns {
    display: flex;
    margin: 60px 60px 0 0;
    gap: 0 15px;
}
.header .menu .sns .icon {
    position: relative;
    top: 8px;
}

.header .lang {
    position: absolute;
    top: 15px;
    right: 60px;
    font-size: 16px;
}
.header .lang a {
    color: var(--text);
}
.header .lang .ja {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 142px;
    padding: 10px;
    font-weight: 500;
    cursor: pointer;
}
.header .lang .ja::after {
    display: block;
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    right: 15px;
    width: 6px;
    height: 6px;
    border-top: solid 2px var(--text);
    border-right: solid 2px var(--text);
    transform: rotate(135deg);    
}
.header .lang .lang_btns {
    border: 1px solid var(--text);
    border-bottom: none;
	display: none;
}
.header .lang .lang_btn a {
    display: flex;
    align-items: center;
    width: 140px;
    padding: 10px 0 10px 15px;
    background: var(--white);
    border-bottom: 1px solid var(--text);
    gap: 0 15px;
}
.header .lang .lang_btn a .flag {
    width: 26px;
}

@media screen and (min-width: 768px){
    .sp_menu {
        display: block!important;
    }
    .spbtn {
        display: none!important;
    }
}
@media screen and (min-width: 768px) and (max-width: 1500px){
   
    .header .title {
        margin-left: 30px;
    }
    .header .title .logo {
        width: 160px;
    }
    .header .menu .ul .li {
        margin-right: 4vw;
    }
    .header .menu .sns {
        margin-right: 30px;
    }
    .header .lang {
        right: 30px;
    }
    
}
@media screen and (min-width: 768px) and (max-width: 1260px){
    
    .header {
        height: 10vw;
    }
    .header .title .catch {
        margin: 1.5vw 0;
    }
    .header .title .logo {
        width: 14vw;
    }

    .header .menu .ul {
        margin-top: 5.75vw;
    }
    .header .menu .ul .li {
        margin-right: 2vw;
    }
    .header .menu .ul .li.h_contact a {
        padding: 1vw 2vw;
    }
    
    .header .menu .sns {
        margin: 2vw 30px 0 0;
        gap: 0 1vw;
    }
    .header .menu .sns .icon {
        top: 2vw;
        width: 3vw;
    }

    .header .lang {
        top: 0;
        right: 30px;
        font-size: 15px;
    }
    
}
@media screen and (max-width: 767px){
    
    .header {
        height: 60px;
        display: block;
    }
    .header .title {
        margin-left: 6vw;
    }
    .header .title .catch {
        display: none;
    }
    .header .title .logo {
        width: 100px;
    }

    .header .sp_menu {
        position: absolute;
        z-index: 9996;
        top: 60px;
        left: 0;
        width: 100%;
    }
    .header .menu {
        background: var(--beige);
        padding: 30px 0;
    }
    .header .menu .ul {
        display: block;
        margin-top: 0;
        text-align: center;
    }
    .header .menu .ul .li {
        margin: 15px;
        padding: 10px;
    }
    .header .menu .ul .li.h_contact {
        margin-top: 30px;
    }
    .header .menu .ul .li.h_contact a {
        padding: 10px 50px;
    }
    
    .header .menu {
        display: block;
    }
    .header .menu .sns {
        display: flex;
        justify-content: center;
        margin: 20px 0 0;
    }
    .header .menu .sns .icon {
        top: 0;
    }

    .header .lang {
        position: relative;
        top: 0;
        right: auto;
    }
    .header .lang .ja {
        width: 100%;
        padding: 20px 10px 10px 0;
    }
    .header .lang .ja::after {
        top: calc(50% + 2px);
        right: calc(50% - 50px);
    }
    .header .lang .lang_btn a {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }
    
}

/*----- nav -----*/

@media screen and (max-width: 767px){

    .spbtn {
        position: absolute;
        top: 10px;
        right: 6vw;
        display: block;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }
    .spbtn > div {
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 100%;
        height: 2px;
        background: #000;
        transition: .2s;
    }
    .spbtn > div:nth-of-type(1) {
        top: 8px;
    }
    .spbtn > div:nth-of-type(3) {
        top: 32px;
    }
    .spbtn.active > div {
        top: 50%;
        transform: rotate(37.5deg);
    }
    .spbtn.active > div:nth-of-type(2) {
        display: none;
    }
    .spbtn.active > div:nth-of-type(3) {
        top: 50%;
        transform: rotate(-37.5deg);
    }
    
}

/*----- footer -----*/

.footer {
    padding: 100px 0 75px;
    background: url("/system_panel/uploads/images/bg_horse.png") no-repeat;
    background-position: left -50px bottom;
    background-size: 1089px auto;
}

.f_contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.f_contact .title {
    width: 25%;
}
.f_contact .conts {
    width: 72.5%;
}
.f_contact .conts .ul {
    max-width: 1000px;
    background: var(--white);
    padding: 60px 0;
    display: flex;
}
.f_contact .conts .ul .li {
    width: 50%;
    padding-bottom: 10px;
    text-align: center;
}
.f_contact .conts .ul .li:nth-of-type(2) {
    border-left: 1px solid var(--green);
}
.f_contact .conts .ul .li .ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    color: var(--green);
    font-size: 27px;
    font-weight: 500;
}
.f_contact .conts .ul .li .ttl .icon {
    margin-right: 10px;
}
.f_contact .conts .ul .li .tel a {
    padding: 10px 0 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: var(--green);
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 2px;
}
.f_contact .conts .ul .li .tel p:nth-of-type(2) {
    font-size: 37px;
    margin-left: 5px;
}
.f_contact .conts .ul .li .m_btn {
    margin-top: 20px;
}

.f_info {
    padding: 150px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.f_info .title {
    width: 45%;
}
.f_info .title .logo {
    width: 200px;
    margin-bottom: 30px;
}
.f_info .title .pm a {
    color: var(--text);
}
.f_info .title .address br.sp {
	display: none;
}
.f_info .title .ul {
    display: flex;
    margin-top: 30px;
}
.f_info .title .ul .li {
    margin-right: 20px;
    width: 30px;
}
.f_info .title .ul .li a:hover {
    opacity: .8;
}
.f_info .conts {
    width: 50%;
}
.f_info .conts .ul {
    display: flex;
    flex-wrap: wrap;
    width: 480px;
    margin: 0 auto;
}
.f_info .conts .ul .li {
    width: 50%;
    margin-top: 40px;
}
.f_info .conts .ul .li a {
    color: var(--text);
}
.f_info .conts .ul .li :hover {
    color: var(--text_hover);
}
.f_info .conts .btns {
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: 80px 0 0;
}
.f_info .conts .btns .f_btn {
    width: 48%;
}
.f_info .conts .btns .f_btn a {
    display: block;
    padding: 25px 20px 25px 0;
    background: var(--brown);
    border-radius: 5px;
    color: var(--white);
    text-align: center;
    font-size: 16px;
}
.f_info .conts .btns .f_btn:nth-of-type(2) a {
    background: var(--green);
}
.f_info .conts .btns .f_btn a:hover {
    opacity: .8;
}
.f_info .conts .btns .f_btn:nth-of-type(2).m_arrow_small a:after {
    border-top-color: var(--green);
    border-right-color: var(--green);
}

@media screen and (min-width: 768px) and (max-width: 1500px){
	
	.f_info .title {
		padding-left: 33px;
	}
	.f_info .conts .btns {
		width: 100%;
	}

}
@media screen and (min-width: 768px) and (max-width: 1260px){

	.footer {
		padding: 7.5vw 0 6vw;
		background-position: left -4vw bottom;
		background-size: 75vw auto;
	}

	.f_contact .title {
		width: 27%;
	}
	.f_contact .conts {
		width: 72.5%;
	}
	.f_contact .conts .ul {
		max-width: 100%;
		padding: 4vw 0;
	}
	.f_contact .conts .ul .li {
		padding-bottom: 1vw;
	}

	.f_contact .conts .ul .li .ttl {
		padding: 1vw 0;
		font-size: 2vw;
	}
	.f_contact .conts .ul .li .ttl .icon {
		width: 3vw;
		margin-right: 1vw;
	}
	.f_contact .conts .ul .li .tel a {
		padding: 1vw 0 2vw;
		font-size: 1.8vw;
		letter-spacing: .2vw;
	}
	.f_contact .conts .ul .li .tel p:nth-of-type(2) {
		font-size: 3vw;
		margin-left: .5vw;
	}
	.f_contact .conts .ul .li .m_btn {
		margin-top: 2vw;
	}

	.f_info {
		padding: 10vw 0 0;
	}
	.f_info .title {
		padding-left: 0;
	}
	.f_info .title .logo {
		width: 16vw;
		margin-bottom: 3vw;
	}
	.f_info .title .ul {
		margin-top: 2.5vw;
	}
	.f_info .title .ul .li {
		margin-right: 2vw;
		width: 2.5vw;
	}
	.f_info .conts .ul {
		width: 100%;
	}
	.f_info .conts .ul .li {
		margin-top: 3.5vw;
	}
	.f_info .conts .btns {
		margin: 6vw 0 0;
	}
	.f_info .conts .btns .f_btn {
		width: 60%;
	}
	.f_info .conts .btns .f_btn:nth-of-type(2)  {
		width: 38%;
	}
	.f_info .conts .btns .f_btn a {
		padding: 2vw 3vw 2vw 0;
		font-size: 1.33vw;
	}

}
@media screen and (max-width: 767px){
	
	.footer {
		padding: 50px 0 30px;
		background-position: left -5vw bottom;
		background-size: 100% auto;
	}

	.f_contact {
		display: block;
	}
	.f_contact .title {
		width: 100%;
	}
	.f_contact .conts {
		width: 100%;
	}
	.f_contact .conts .ul {
		margin-top: 20px;
		padding: 20px 5vw;
		display: block;
	}
	.f_contact .conts .ul .li {
		width: 100%;
		padding-bottom: 10px;
	}
	.f_contact .conts .ul .li:nth-of-type(2) {
		margin-top: 30px;
		padding-top: 20px;
		border-left: none;
		border-top: 1px solid var(--green);
	}
	.f_contact .conts .ul .li .ttl {
		padding: 10px 0;
		font-size: 18px;
	}
	.f_contact .conts .ul .li .ttl .icon {
		margin-right: 10px;
		width: 30px;
	}
	.f_contact .conts .ul .li .tel a {
		padding: 10px 0 20px;
		font-size: 20px;
		letter-spacing: 1px;
	}
	.f_contact .conts .ul .li .tel p:nth-of-type(2) {
		font-size: 32px;
		margin-left: 5px;
	}
	.f_contact .conts .ul .li .m_btn {
		margin-top: 20px;
	}

	.f_info {
		padding: 30px 0 0;
		display: block;
	}
	.f_info .title {
		width: 100%;
	}
	.f_info .title .logo {
		width: 160px;
		margin: 30px auto 20px;
	}
	.f_info .title .ul {
		display: flex;
		justify-content: center;
		margin-top: 30px;
	}
	.f_info .title .ul .li {
		margin: 0 15px;
	}
	.f_info .title .address.pm {
		font-size: min(3.75vw,15px);
		text-align: center;
	}
	.f_info .title .address br.sp {
		display: inline-block;
	}
	.f_info .conts {
		width: 100%;
	}
	.f_info .conts .ul {
		display: none;
	}
	.f_info .conts .btns {
		display: block;
		width: 100%;
		margin: 30px 0 0;
	}
	.f_info .conts .btns .f_btn {
		width: min(400px,100%);
		margin: 0 auto 15px;
	}
	.f_info .conts .btns .f_btn a {
		padding: 25px 20px 25px 0;
		font-size: min(4vw,15px);
	}

}


/*----- main -----*/

.main {
	margin-top: 135px;
}

.bg_brown {
    background: url("/system_panel/uploads/images/bg_brown.jpg");
}

.m_fv {
    display: flex;
    justify-content: flex-end;
}
.m_fv .inner {
    position: relative;
    width: calc(100% - 6vw - 200px - 2.5vw);    
}
.m_fv .inner .pic img {
    border-radius: 5px 0 0 5px;
    height: 250px;
}
.m_fv .title {
    position: absolute;
    left: -2vw;
    bottom: 30px;
    display: flex;
    align-items: center;
    padding: 15px 40px;
    background: var(--brown);
    color: var(--white);
}
.m_fv .title .ttl {
    font-size: 23px;
    font-weight: 500;
}
.m_fv .title .en {
    font-size: 17px;
    margin: 5px 0 0 20px;
}

.p {
    font-size: 16px;
}
.pm {
    font-size: 16px;
    line-height: 2.25;
}
.ps {
    font-size: 15px;
}
.m_center {
    text-align: center;
}
.m_red {
    color: var(--red);
}

.m_ttl {
    margin-bottom: 20px;
    color: var(--green);
    font-size: 37px;
    line-height: 1.75;
}
.m_sub {
    margin: -10px 0 40px;
    font-size: 20px;
    font-weight: 500;
}

.m_title {
    text-align: center;
    margin-bottom: 30px;
}
.m_title .m_mark {
    width: 40px;
    margin: 0 auto 15px;
}
.m_title .ttl {
    color: var(--green);
    font-size: 50px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 2px;
}
.m_title .subttl {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
}
.m_title.m_left {
    text-align: left;
}

.m_btn {
    margin-top: 45px;
}
.m_btn a {
    display: inline-block;
    padding: 15px 50px;
    background: var(--green);
    border-radius: 50px;
    color: var(--white);
}
.m_btn a:hover {
    opacity: .8;
}
.m_btn.m_map a {
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
.m_btn.m_map a .icon {
    margin: 3px 10px 0 0;
    width: 20px;
}

.m_arrow a,
.m_arrow_small a {    
    position: relative;
}
.m_arrow a:before,
.m_arrow a:after,
.m_arrow_small a:before,
.m_arrow_small a:after {
    position: absolute;
    content: '';
	transition: .5s;
}
.m_arrow a:before,
.m_arrow_small a:before {
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    top: calc(50% - 10px);
    right: 24px;
}
.m_arrow a:after,
.m_arrow_small a:after {
    width: 6px;
    height: 6px;
    border-top: solid 2px var(--text);
    border-right: solid 2px var(--text);
    transform: rotate(45deg);
    top: calc(50% - 2px);
    right: 34px;
}
.m_arrow_small a:before {
    top: calc(50% - 10px);
    right: 20px;
}
.m_arrow a:hover:before {
    right: 14px;
}
.m_arrow a:hover:after {
    right: 24px;
}
.m_arrow_small a:after {
    right: 28px;
}
.m_arrow_small a:hover:before {
    right: 10px;
}
.m_arrow_small a:hover:after {
    right: 18px;
}

.m_box {
    display: inline-block;
    margin-top: 45px;    
    padding: 30px 40px;
    background: var(--white);
}
.m_box .title {
    position: relative;
    margin: -50px 0 10px;
    text-align: center;
}
.m_box .ttl {
    display: inline-block;
    width: 270px;
    padding: 10px;
    background: var(--green);
    border-radius: 50px;
    color: var(--white);
}

.scroll_x {
    display: flex;
    justify-content: flex-end;
    animation: flowing 10s linear infinite;
    transform:translateX(100%);
}

@keyframes flowing {
  0% { transform:translateX(0); }
  100% { transform:translateX(-100%); }
}

@media screen and (min-width: 768px) and (max-width: 1500px){
    
    .m_fv .inner {
        width: calc(100% - 30px - 160px - 2.5vw);    
    }
    
}
@media screen and (min-width: 768px) and (max-width: 1260px){

	.main {
		margin-top: 10vw;
	}
    
    .m_fv .inner {
        width: calc(100% - 30px - 14vw - 2.5vw);    
    }
    .m_fv .inner .pic img {
        height: 22vw;
    }
    .m_fv .title {
        left: -2vw;
        bottom: 2.75vw;
        padding: 1.5vw 3.5vw;
    }
    .m_fv .title .ttl {
        font-size: 2vw;
    }
    .m_fv .title .en {
        font-size: 1.6vw;
        margin: .5vw 0 0 2vw;
    }   

	.p {
		font-size: 1.5vw;
	}
	.pm {
		font-size: 1.5vw;
		line-height: 2;
	}
    .ps {
        font-size: 1.4vw
    }

    .m_ttl {
        margin-bottom: 2vw;
        font-size: 3vw;
    }
    .m_sub {
        margin: -1vw 0 4vw;
        font-size: 1.8vw;
    }
	.m_title {
		margin-bottom: 2.5vw;
	}
	.m_title .m_mark {
		width: 3vw;
		margin: 0 auto 2vw;
	}
	.m_title .ttl {
		font-size: 4vw;
		letter-spacing: .2vw;
	}
    .m_title .subttl {
        margin-top: 1vw;
        font-size: 1.875vw;
    }

	.m_btn {
		margin-top: 3.6vw;
	}
	.m_btn a {
		padding: 1.5vw 4vw;
		font-size: 1.5vw;
	}
    .m_btn.m_map a {
        width: 20vw;
        padding: 1.5vw;
    }
    .m_btn.m_map a .icon {
        margin: .2vw 1vw 0 0;
        width: 1.8vw;
    }

	.m_arrow a:before,
	.m_arrow_small a:before {
		width: 2.4vw;
		height: 2.4vw;
		top: calc(50% - 1.2vw);
		right: 2.4vw;
	}
	.m_arrow a:after,
	.m_arrow_small a:after {
		width: .6vw;
		height: .6vw;
		top: calc(50% - .3vw);
		right: 3.4vw;
	}
    .m_arrow a:hover:before {
        right: 1.4vw
    }
    .m_arrow a:hover:after {
        right: 2.4vw;
    }
	.m_arrow_small a:before {
		width: 2vw;
		height: 2vw;
		top: calc(50% - 1vw);
		right: 2vw;
	}
	.m_arrow_small a:after {
		right: 2.8vw;
	}

    .m_box {
        margin-top: 4vw;    
        padding: 2vw 3vw;
    }
    .m_box .title {
        margin: -4vw 0 1vw;
    }
    .m_box .ttl {
        width: 24vw;
        padding: 1vw;
    }

}
@media screen and (max-width: 767px){
    
	.main {
		margin-top: 60px;
	}

    .m_fv {
        display: block;
    }
    .m_fv .inner {
        width: 100%;    
    }
    .m_fv .inner .pic img {
        height: 160px;
        border-radius: 0;
    }
    .m_fv .title {
        left: 0;
        bottom: 15px;
        padding: 10px 25px;
    }
    .m_fv .title .ttl {
        font-size: 20px;
    }
    .m_fv .title .en {
        font-size: 15px;
        margin: 5px 0 0 15px;
    }   
    
	.p {
		font-size: 15px;
	}
	.pm {
		font-size: 15px;
		line-height: 2;
	}
    .ps {
        font-size: 13px;
    }

    .m_ttl {
        margin-bottom: 15px;
        font-size: 21px;
    }
    .m_sub {
        margin: -5px 0 25px;
        font-size: 17px;
    }
	.m_title {
		margin-bottom: 20px;
	}
	.m_title .m_mark {
		width: 25px;
		margin: 0 auto 14px;
	}
	.m_title .ttl {
		font-size: 25px;
	}
    .m_title .subttl {
        font-size: 16px;
    }

	.m_btn {
		margin: 30px auto 0;
        text-align: center;
	}
	.m_btn a {
		padding: 15px 30px;
		font-size: min(3.75vw,15px);
	}
    .m_btn.m_map a {
        margin: auto;
    }

    .m_box {
        display: block;
        width: min(400px,100%);
        margin: 30px auto 0;    
        padding: 20px 5vw;
    }
    .m_box .title {
        margin: -30px 0 10px;
    }
    .m_box .ttl {
        width: 240px;
    }
    
    
    
    .sp_left {
        text-align: left!important;
    }
    
}
@media screen and (min-width: 479px){
    
	.m_title .ttl br {
		display: none;
	}
    
}
