/*-- common --*/
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: bottom;
}
a {
    color: #333333;
    text-decoration: none;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
html {
    font-size: 10px;
}
body {
    font-family: 'Noto Serif JP', serif;
    background-color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
}
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
h2 span,
h3 span,
h4 span {
    display: inline-block;
}
img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
	.wrapper img {
		image-rendering: pixelated;
	}
}
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
/*-- header --*/
#header {
    width: 100%;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 0 10px #8B8B8B;
}
h1 {
    font-size: 0.9rem;
    white-space: nowrap;
}
#header .header_inner {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    padding: 0 20px;
}
#header .header-logo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
}
#header .header-logo img {
    width: 100%;
    max-width: 204px;
}
#header .phone {
    margin: 10px 18px 10px 14px;
}
#header .phone img {
    width: 100%;
    max-width: 310px;
}
#header .request {
    width: 90px;
    height: 90px;
    text-align: center;
    background: #B52D2D;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#header .request:hover {
    background: #CE3131;
}
#header .request img {
    width: 45%;
    margin-bottom: 10px;
}
#header .request span {
    font-size: 1.2rem;
    text-align: center;
    color: #fff;
}

/*-- nav --*/
#g-nav.panelactive {
    position:fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
}
#g-nav-list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    background: linear-gradient(to top, rgba(184, 213, 131, 0.99) 0%, rgba(115, 142, 65, 1) 100%);
}
#g-nav.panelactive #g-nav-list {
    display: block; 
}
#g-nav ul {
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-left: 19px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: column;
}
#g-nav.panelactive ul {
    opacity: 1;
}
#g-nav.panelactive ul li {
    position: relative;
    width: 30%;
    margin-top: 33px;
    text-align: left;
    white-space: nowrap;
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .1s;
    animation-fill-mode: forwards;
    opacity: 0;
}
#g-nav.panelactive ul li:first-child {
    margin-top: 0;
}
#g-nav.panelactive ul li::before {
    content: '';
    width: 9px;
    height: 9px;
    background: #fff;
    position: absolute;
    top: 45%;
}
@keyframes gnaviAnime {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
#g-nav li {
    text-align: center; 
    list-style: none;
}
#g-nav li a {
    display: block;
    padding-left: 19px;
    margin-left: 13px;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}

.openbtn {
    position: relative;
    cursor: pointer;
    width: 90px;
    height: 90px;
    z-index: 9999;
    overflow: hidden;
}
.openbtn .openbtn-area {
    transition: all .4s;
}
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 25px;
    height: 3px;
    border-radius: 2px;
    background: #63676A;
    width: 45%;
}
.openbtn span:nth-of-type(1) {
    top: 25px;	
}
.openbtn span:nth-of-type(2) {
    top: 43px;
}
.openbtn span:nth-of-type(3) {
    top: 61px;
}
.openbtn.active .openbtn-area {
    transform: rotateX(360deg);
}
.openbtn.active span:nth-of-type(1) {
    top: 34px;
    left: 23px;
    transform: translateY(6px) rotate(-135deg);
    width: 50%;
    background: #fff;
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 46px;
    left: 23px;
    transform: translateY(-6px) rotate(135deg);
    width: 50%;
    background: #fff;
}

/*-- present --*/
.present {
    margin-top: 100px;
}
.present h3 {
    width: 700px;
    margin: 0px auto;
    padding: 17px 10px;
    background: #455161;
    font-size: clamp(22px, 2.6vw, 26px);
    font-weight: 700;
    color: #fff;
    text-align: center;
}
.present .box-001 {
    width: 700px;
    margin: 0px auto;
    padding: 20px 55px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, .16);
}
.present p.t-001 {
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    margin: 0px auto;
    line-height: calc(30 / 16);
}
.present .box-002 {
    text-align: center;
}
.present .btn {
    margin-top: 45px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    border-radius:30px;
    border: 1px solid #fff;
    padding: 16px 130px;
    text-align: center;
    outline: none;
    transition: ease .2s;
    background: #C44949;
}
.present .btn span {
    position: relative;
    z-index: 3;
    color:#fff;
    font-size: 1.4rem;
    font-weight: 500;
}
.present .btn:hover span{
    color:#C44949;
}
.present .bgcenterout:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #fff;
    border: 1px solid #C44949;
    border-radius:30px;
    width: 100%;
    height: 100%;
    transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 0);
    transform-origin:center;
}
.present .bgcenterout:hover:before{
    transform:scale(1, 1);
}

/*-- banner --*/
.banner {
    padding: 80px 0px;
}
ul.banner-001 {
    max-width: 1200px;
    margin: 0px auto;
    text-align: center;
}
.banner li {
    display: inline-block;
    display: inline;
    zoom: 1;
}
.banner li img {
    width: 230px;
    margin: 10px;
}

/*-- contact --*/
#contact {
    max-width: 1000px;
    width: 90%;
    margin: 0px auto 50px;
    padding-top: 50px;
    border-top: solid 1px #CECECE;
}
#contact .phone {
    text-align: center;
}
#contact .phone img {
    width: 90%;
    max-width: 424px;
}

/*-- footer --*/
.footer {
    width: 100%;
    padding: 36px 0px 123px;
    background: #99B46D;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer .logo {
    width: 90%;
    max-width: 260px;
    margin: 0 auto 34px;
}
.footer a {
    color: #fff;
}
.footer .footer-link li {
    display: inline-block;
}
.footer .footer-link a::after {
    content: '|';
    padding: 0 2px;
}
.footer .footer-link li:last-of-type a::after {
    display: none;
}
.footer ul.footer-link {
    width: 90%;
    max-width: 940px;
    text-align: center;
    margin: 0px auto 22px;
    line-height: 1.8;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
}
.footer p.footer-text-004 {
    font-size: 1.4rem;
    text-align: center;
    letter-spacing: 0.15em;
    color: #fff;
    line-height: 1.5;
    padding: 0 2px;
}
.footer p.footer-text-004 span{
    display: inline-block;
}

/*-- fixed-footer フッタータブ --*/
#fixed-footer {
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px;
    background-color: #FDF2C0;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 37px;
}
#fixed-footer .image {
    width: 100%;
    max-width: 370px;
}
#fixed-footer .image.contact:hover {
    opacity: 0.5;
    cursor: pointer;
    transition: 0.2s;
}
/*-- fixed-footer フッタータブ end --*/

/*-- thanks --*/
#thanks .mailsend {
    text-align: center;
    margin: 100px auto;
}

/*-- wrapper --*/
.wrapper {
    background: url(../images/bg_paper.png);
    background-repeat: repeat;
    padding: 100px 20px 120px;
}

/*-- index --*/
.topmain {
    width: 100%;
    margin-top: 90px;
}
.topmain div picture {
    width: 100%;
    aspect-ratio: 1100 / 700;
}
#index .block {
    width: 100%;
    max-width: 900px;
    padding: 60px clamp(40px, 6.3vw, 70px) 50px;
    margin: 0 auto;
    border-radius: 7px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}
#index .block::before,
#index .block::after {
    position: absolute;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
#index .block::before {
    top: 0;
    left: 0;
    width: 219px;
    height: 193px;
    background-image: url(../images/bg_index_01.png);
    opacity: 0.2;
}
#index .block::after {
    bottom: 0;
    right: 0;
    width: 286px;
    height: 214px;
    background-image: url(../images/bg_index_02.png);
    background-color: #9ABD77;
    background-blend-mode: multiply;
    opacity: 0.3;
}
#index .block-001 {
    background-color: #9ABD77;
}
#index .block-002 {
    background-color: #89A5D1;
    margin-top: 100px;
}
#index .block-002::after {
    bottom: 0;
    right: 0;
    width: 286px;
    height: 267px;
    background-image: url(../images/bg_index_03.png);
    background-color: #89A5D1;
    opacity: 0.15;
}
#index .block-003 {
    background-color: #9C8FC6;
    margin-top: 100px;
}
#index .block-003::after {
    bottom: 0;
    right: 0;
    width: 286px;
    height: 267px;
    background-image: url(../images/bg_index_04.png);
    background-color: #9C8FC6;
    opacity: 0.15;
}
#index .block-004 {
    background-color: #DEC4A1;
    margin-top: 100px;
}
#index .block-004::after {
    bottom: 0;
    right: 0;
    width: 286px;
    height: 267px;
    background-image: url(../images/bg_index_05.png);
    background-color: #DEC4A1;
    opacity: 0.25;
}
#index h2 {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: calc(46 / 32);
    letter-spacing: 0.1em;
    color: #ffffff;
    text-align: center;
}
#index h3 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: calc(31 / 22);
    color: #8EB566;
    background-color: #fff;
    padding: 10px;
    border-radius: 3px;
    margin-top: 22px;
    max-width: 760px;
}
#index .inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
#index .left {
    width: 51.8%;
    max-width: 394px;
}
#index .right {
    width: 48.2%;
    padding-left: 4%;
}
#index .right p.t-003 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: calc(34 / 18);
    text-align: start;
}
#index .btn {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    border-radius:37px;
    border: 1px solid #fff;
    width: 388px;
    margin-top: 50px;
    padding: 24px 10px;
    text-align: center;
    outline: none;
    transition: ease .2s;
}
#index .btn span {
    position: relative;
    z-index: 3;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color:#fff;
    padding-left: 1.5em;
}
#index .btn:hover span{
    color:#8EB566;
}
#index .bgcenterout:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #fff;
    border: 1px solid #8EB566;
    border-radius:37px;
    width: 100%;
    height: 100%;
    transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 0);
    transform-origin:center;
}
#index .bgcenterout:hover:before{
    transform:scale(1, 1);
}
#index .block-002 h3 {
    color: #89A5D1;
}
#index .block-002 .bgcenterout:before {
    border: 1px solid #89A5D1;
}
#index .block-002 .btn:hover span{
    color: #89A5D1;
}
#index .block-003 h3 {
    color: #9C8FC6;
}
#index .block-003 .bgcenterout:before {
    border: 1px solid #9C8FC6;
}
#index .block-003 .btn:hover span{
    color: #9C8FC6;
}
#index .block-004 h3 {
    color: #DEC4A1;
}
#index .block-004 .bgcenterout:before {
    border: 1px solid #DEC4A1;
}
#index .block-004 .btn:hover span{
    color: #DEC4A1;
}
/*-- news --*/
#index .news {
    width: 100%;
    margin: 0px auto 50px;
    padding: 100px 0px;
    background-size: cover;
    background-image: url(../images/bg_index_06.jpg);
    background-repeat: no-repeat;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;    
}
#index .news .box-001 {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 55px 80px 74px;
    background: rgba(255, 255, 255, 0.85);
}
#index .news h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    color: #504444;
}
#index .news dl dd {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: left;
    padding: 22px 0px 43px clamp(120px, 15vw, 150px);
    line-height: calc(31 / 16);
}
#index .news dl {
    padding: 0px;
    margin: 32px 0px 0px;
    color: #333333;
    border-top: dotted 1px #707070;
    border-bottom: dotted 1px #707070;
}
#index .news dl dt {
    font-size: 1.4rem;
    font-weight: 500;
    padding-top: 27px;
    padding-left: clamp(10px, 4vw, 65px);
    position: absolute;
}
#index .news p.subtext{
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 30px;
    line-height: calc(30 / 16);
}


/*-- jumokuso --*/
/*-- eitaibo --*/
/*-- goshibo --*/
/*-- feature --*/
/*-- access --*/
/*-- inquiry --*/
.main {
    aspect-ratio: 1100 / 440;
    margin-top: 90px;
}
.box-inner {
    max-width: 900px;
    width: 100%;
    padding: 60px clamp(42px, 7vw, 70px) 100px;
    background-color: #fff;
    margin: 0px auto;
    box-shadow: 0 0 5px rgba(0, 0, 0, .15);
}
.inner-box-001 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 15px;
    margin-top: 25px;
}
.inner-box-002 {
    width: 100%;
    margin-top: 40px;
}
.inner-box-002.link a {
    display: block;
    width: 100%;
}
.inner-box-002.link:hover {
    opacity: 0.5;
    transition: 0.2s;
}
.inner-box-003 {
    width: 100%;
    margin-top: 40px;
}
.description {
    position: absolute;
    bottom: 13px;
    right: 16px;
    font-size: clamp(1.8rem, 2.3vw, 2.3rem);
    font-weight: 500;
    color: #fff;
    background-color: rgba(0, 0, 0, .51);
}
p.t-001 {
    font-size: clamp(1.6rem, 1.8vw, 1.8rem);
    font-weight: 500;
    line-height: calc(34 / 18);
    text-align: start;
    margin-top: 20px;
}
figcaption {
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.05em;
    margin-top: 20px;
}
.block-001 .box-inner h2 {
    max-width: 760px;
    margin: 60px auto 0;
    text-align: center;
    font-size: clamp(1.8rem, 2.2vw, 2.2rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: calc(31 / 22);
    color: #fff;
    background-color: #9ABD77;
    padding: 10px;
    border-radius: 3px;
}
.block-001 .box-inner h2:first-of-type {
    margin: 0px auto 0;
}
#eitaibo .block-001 .box-inner h2 {
    background-color: #89A5D1;
}
#feature .block-001 .box-inner h2 {
    background-color: #DEC4A1;
}
#access .block-001 .box-inner h2 {
    background-color: #797979;
}
#goshibo .block-001 .box-inner h2 {
    background-color: #9C8FC6;
}
#inquiry .block-001 .box-inner h2 {
    background-color: #6F9FA0;
}

/* price */
.pricebox {
    width: 100%;
    padding: 22px clamp(12px, 1.8vw, 18px) 0;
    background-color: rgba(167, 197, 137, 0.15);
    position: relative;
}
.pricebox::after {
    position: absolute;
    z-index: 0;
    bottom: 0;
    right: 0;
    content: '';
    width: clamp(50px, 15.6vw, 120px);
    height: clamp(60px, 18.7vw, 144px);
    background-image: url(../images/bg_jumokuso_01.png);
    background-repeat: no-repeat;
    background-size: cover;
}
#eitaibo .pricebox {
    padding: 22px clamp(12px, 1.8vw, 18px) 12px;
    background-color: rgba(152, 176, 214, 0.1);
    border-radius: 3px;
}
#eitaibo .pricebox::after {
    width: clamp(55px, 17.1vw, 132px);
    height: clamp(42px, 13.2vw, 102px);
    background-image: url(../images/bg_eitaibo_01.png);
}
#goshibo .pricebox {
    background-color: rgba(167, 157, 205, 0.15);
}
#goshibo .pricebox::after {
    width: clamp(50px, 15.6vw, 120px);
    height: clamp(60px, 18.7vw, 144px);
    background-image: url(../images/bg_goshibo_01.png);
}
.price-label {
    font-size: clamp(2rem, 2.4vw, 2.4rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-align: center;
    padding: 4px 0 7px;
    background-color: rgba(154, 189, 119, 0.85);
    border-radius: 3px;
}
#eitaibo .price-label {
    background-color: rgba(137, 165, 209, 0.85);
}
#goshibo .price-label {
    background-color: rgba(156, 143, 198, 0.85);
}

.pricebox-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
#eitaibo .pricebox-inner {
    border-bottom: 2px solid rgba(165, 185, 215, 0.85);
}
.price-circle {
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
    font-size: clamp(2rem, 2.9vw, 2.9rem);
    font-weight: 600;
    color: #98B0D6;
    width: clamp(64px, 9vw, 90px);
    height: clamp(64px, 9vw, 90px);
    border-radius: 50%;
    border: 1px solid rgba(152, 176, 214, 0.85);
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
p.t-price {
    font-size: clamp(9.6rem, 13.6vw, 13.6rem);
    letter-spacing: -0.03em;
    font-weight: 600;
    color: #A7C589;
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-top: -20px;
}
#eitaibo p.t-price {
    font-size: clamp(8rem, 11.6vw, 11.6rem);
    letter-spacing: 0;
    font-weight: 600;
    color: #98B0D6;
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-left: 10px;
    white-space: nowrap;
}
#goshibo p.t-price {
    color: #A79DCD;
}
p.t-price span {
    font-size: clamp(2.4rem, 3.4vw, 3.4rem);
    font-weight: 700;
    letter-spacing: 0;
    color: #63676A;
    margin-left: 3px;
}
#eitaibo p.t-price span {
    margin-left: 6px;
}
#eitaibo .pricebox ul {
    margin-top: 13px;
}
#eitaibo .pricebox ul li {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0;
    color: #484848;
    line-height: calc(25 / 16);
}
#eitaibo .hidden {
    visibility: hidden;
}
#eitaibo .inner-box-004 {
    width: 100%;
    padding: 7px;
    margin-top: 40px;
    background-color: rgba(165, 185, 219, 0.15);
}
#eitaibo .image-box {
    width: 100%;
    height: 100%;
    padding: 18px 8px;
    background-color: transparent;
    border: 2px solid #fff;
}
#eitaibo .image-box figcaption {
    margin-top: 4px;
}
.desc-list {
    margin-top: 20px;
}
.desc-list li {
    font-size: clamp(1.5rem, 1.8vw, 1.8rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: calc(35 / 18);
    color: #333333;
    list-style: none;
    margin-top: 0.3em;
}
.desc-list li:first-of-type {
    margin-top: 0;
}
.desc-list li::before {
    display: inline-block;
    content: '●';
    font-size: 1em;
    color: #B7CF9D;
}
#eitaibo .desc-list li::before {
    color: #A5B9DB;
}
#goshibo .desc-list li::before {
    color: #A89DCD;
}
.annotation-box {
    width: 100%;
    max-width: 760px;
    padding: 20px 10px 0;
    margin: 40px auto 0;
    border: 1px solid #333333;
    border-radius: 3px;
    text-align: center;
}
#eitaibo .annotation-box {
    padding: 12px 10px 15px;
}
.annotation {
    font-size: 1.4rem;
    font-weight: 500;;
    letter-spacing: 0.05em;
    line-height: calc(31 / 16);
    margin-top: 0;
}
.annotation.big {
    font-size: clamp(1.8rem, 2.3vw, 2.3rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: calc(31 / 14);
    color: #A7C589;
    list-style: none;
    margin-bottom: 20px;
}
#eitaibo .annotation.big {
    color: #A5B9DB;
}

/*-- goshibo --*/
#goshibo .pet {
    width: fit-content;
    display: flex;
    align-items: center;
    margin-top: clamp(-220px, -22vw, -70px);
    margin-left: clamp(16px, 5vw, 50px);
}
#goshibo .pet .circle {
    font-size: clamp(1.4rem, 4.3vw, 4.3rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    width: clamp(32px, 10.2vw, 102px);
    height: clamp(32px, 10.2vw, 102px);
    margin-top: clamp(19px, 6vw, 60px);
    margin-right: clamp(3px, 0.8vw, 8px);
    display: grid;
    place-items: center;
    background-color: #E4BED8;
    border-radius: 50%;
}
#goshibo .pet .price {
    font-size: clamp(5.7rem, 18vw, 18rem);
    font-weight: 600;
    color: #E0B3D2;
    display: flex;
    align-items: baseline;
}
#goshibo .pet .price span {
    font-size: clamp(1.5rem, 4.8vw, 4.8rem);
    font-weight: 700;
    color: #63676A;
    margin-left: clamp(3px, 0.8vw, 8px);
}

/*-- feature --*/
#feature .box-overview {
    width: 100%;
    margin: 60px auto 0;
    padding: 40px clamp(60px, 8vw, 80px) 50px;
    background-color: rgba(255, 221, 175, 0.2);
    border-radius: 3px;
}
#feature table.overview {
    max-width: 100%;
    border-collapse: collapse;
    margin: auto;
}
#feature table.overview tr {
    border-bottom: 1px solid #D5D5D5;
}
#feature table.overview tr:first-of-type {
    border-bottom: none;
}
#feature table.overview th.title {
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
    font-size: clamp(1.9rem, 2.4vw, 2.4rem);
    font-weight: 600;
    color: #656565;
    text-indent: 0%;
    letter-spacing: 0.05em;
    text-align: center;
    padding-bottom: 40px;
}
#feature table.overview th.title span {
    display: inline-block;
}
#feature table.overview th {
    width: 35%;
    padding: 0px;
    text-indent: 3%;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
    font-size: clamp(1.6rem, 1.8vw, 1.8rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #333333;
    text-align: left;
    vertical-align: middle;
}
#feature table.overview td {
    width: 70%;
    padding: 0;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: calc(38 / 16);
    color: #333333;
}

/* access */
#access figure.relative {
    position: relative;
}
#access .description {
    position: absolute;
    bottom: 13px;
    right: 16px;
    font-size: clamp(1.6rem, 1.8vw, 1.8rem);
    font-weight: 500;
    color: #fff;
    width: fit-content;
    padding: 3px 5px;
    background-color: rgba(0, 0, 0, .51);
}

#access .block-001 .p-002 {
    width: 100%;
    margin: 30px auto 0;
}
#access .carnavi-box {
    width: 100%;
    background-color: #FFDEDE;
    padding: 10px;
    margin-top: 68px;
}
#access .carnavi-inner {
    background-color: #ffffff;
    border-radius: 13px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .27);
}
#access .carnavi {
    font-size: clamp(16px, 1.9vw, 19px);
    color: #333333;
    line-height: calc(37 / 25);
    text-align: center;
    width: 100%;
    padding: 20px 0;
    margin-left: 6px;
}
#access .carnavi span {
    display: inline-block;
}
#access .carnavi span.large {
    font-size: clamp(19px, 2.2vw, 22px);
    font-weight: 700;
    letter-spacing: calc(22px * 0.05);
    color: #EF4047;
}
.googlemap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56%; 
    margin-top: 50px;
}
.googlemap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#access .block-001 p.t-003 {
    margin: 15px 0px 0px;
    text-align: center;
}