@charset "utf-8";


/* ----------------------------------------------------------------------
	selection
---------------------------------------------------------------------- */

::selection { background: var(--color-orange); color: var(--color-white); }
::-moz-selection { background: var(--color-orange); color: var(--color-white); }


/* ----------------------------------------------------------------------
	root
---------------------------------------------------------------------- */

:root {
    --font-gothic: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    --font-en: "Nunito", sans-serif;
    
    --color-white: #fff;
    --color-orange: #e7310e;
    --color-yellow: #f9bd55;
    --color-beige: #fde4ba;
     
    --color-white-gray: #f8f8f8;
    --color-light-gray: #ddd;
    --color-gray: #999;
    --color-dark-gray: #545454;
    --color-black: #333;
    
    --color-text: var(--color-black);
    --color-bg: var(--color-white-gray);
    --color-border: var(--color-light-gray);
}


/* ----------------------------------------------------------------------
	html,body
---------------------------------------------------------------------- */

html { font-size: 62.5%; }

body {
	font-family: var(--font-gothic);
	color: var(--color-text);
	font-size: 1.6rem;
    text-align: left;
	line-height: 1.6;
    letter-spacing: .1em;
    font-optical-sizing: auto;
    font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: none;
}

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


/* ----------------------------------------------------------------------
	anchor
---------------------------------------------------------------------- */

a { -webkit-tap-highlight-color: rgba(0,0,0,0.3); transition: 0.3s; }
a:link { color: var(--color-text); text-decoration: underline; }
a:visited { color: var(--color-text); text-decoration: underline; }
a:hover { color: var(--color-yellow); text-decoration: none; }
a:active { color: var(--color-yellow); text-decoration: none; }
a:focus { outline: none; }
a img { transition: 0.3s; }
a:hover img { opacity: 0.8; }


/* ----------------------------------------------------------------------
	img
---------------------------------------------------------------------- */

img {
    max-width: 100%;
    height: auto;
}

.fix-img { width: 100%; }

.no-img { border: 1px solid var(--color-border); }


/* ----------------------------------------------------------------------
	btn
---------------------------------------------------------------------- */

/* btn-default */
.btn-default a {
    position: relative;
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 1.6rem;
    text-align: center;
    text-decoration: none;
    padding: 15px 30px;
    width: 320px;
    display: inline-block;
    border-radius: 10px;
}

.btn-default a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: url("../img/icon_a_default.svg") center center no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    display: block;
}

.btn-default a:hover { opacity: 0.8; }

@media screen and (max-width: 990px) {
   .btn-default a {
       padding: 17px 30px;
       width: 100%;
    }
}


/* btn-sub */
.btn-sub a { 
    position: relative;
    text-decoration: none;
    padding: 2px 0 2px  26px;
    display: inline-block;
}

.btn-sub a::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    background: url("../img/icon_a_sub.svg") center center no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    display: block;
}


/* link-blank */
.link-blank {
    position: relative;
    padding-right: 20px;
}

.link-blank::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(calc(-50% + 2px));
	background: url("../img/icon_blank.svg") right center no-repeat;
	background-size: 14px 12px;
    width: 14px;
    height: 12px;
    display: block;
}


/* link-tel */
a.link-tel {
    color: var(--color-black);
    text-decoration: none;
}

@media screen and (max-width: 990px) {
    a.link-tel { text-decoration: underline; }
}


/* ----------------------------------------------------------------------
	txt
---------------------------------------------------------------------- */

.text-block p { margin: 0 0 0.8em; }
.text-block p:last-child { margin: 0; }

.font-en {
    font-family: var(--font-en);
    letter-spacing: .1em;
}

.font-ja {
    font-family: var(--font-mincho);
    letter-spacing: .1em;
}

.left { text-align: left !important; }
.center { text-align: center !important; }
.right { text-align: right !important; }

.bold { font-weight: 500; }

.br { display: block; }

.color-orange { color: var(--color-orange); }
.color-yellow { color: var(--color-yellow); }

.marker {
    background: linear-gradient(transparent 60%, var(--color-beige)  50%);
    padding: 0 0 0.1em;
}

ul.indent li { 
    text-indent: -1em;
    margin: 0 0 0.4em 1em;
}
ul.indent li:last-child { margin-bottom: 0; }

@media screen and (max-width: 990px) {
    .text-block p { margin: 0 0 0.6em; }
    
    .sp-none { display: none; }
    
    .sp-block { display: block; }
    
    .sp-inline-block { display: inline-block; }
}


/* ----------------------------------------------------------------------
	wrapper
---------------------------------------------------------------------- */

#wrapper {
    width: 100%;
    min-width: 1240px;
    overflow: hidden;
}

@media screen and (max-width: 990px) {
    #wrapper {
        padding: 80px 0 0;
        min-width: inherit;
    }
}


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

.l-header-inner {
    position: relative;
    margin: 0 auto;
    min-width: 1240px;
    height: 140px;
}

 .l-header-logo {
     position: absolute;
     top: 70px;
     left: 80px;
     z-index: 1;
}

.l-header-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.l-header-tel {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    text-align: center;
} 


@media screen and (max-width: 1300px) {
    .l-header-tel { right: 30px; }
}

@media screen and (max-width: 990px) {
    .l-header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        background: var(--color-white);
        width: 100%;
    }
    
    .l-header.fixed { box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); }
    
    .l-header-inner {
        min-width: inherit;
        height: 80px;
    }

    .l-header-logo {
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        line-height: 1;
    }
    
    .l-header-logo img {
        width: auto;
        height: 40px;
    }

    .l-header-nav,
    .l-header-tel { display: none; }
}


/* l-header-nav */
.l-header-nav nav > ul {
    display: flex;
    gap: 0 40px;
}

.l-header-nav nav > ul > li > a {
    position: relative;
    color: var(--color-black);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    line-height: 1.8;
    padding: 20px 0 0;
    display: block;
}

.l-header-nav nav > ul > li > a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url("../img/icon_kirakira.svg") center center no-repeat;
    width: 14px;
    height: 14px;
    display: block;
}

.l-header-nav nav > ul > li > a:hover { color: var(--color-yellow); }

.l-header-nav nav > ul > li > a .font-en {    
    color: var(--color-orange);
    font-size: 1.2rem;
    font-weight: 400;
    display: block;
}


@media screen and (max-width: 1300px) {
   .l-header-nav nav > ul { gap: 0 25px; }
}

@media screen and (max-width: 990px) {
    .l-header-nav,
    .l-header-tel { display: none; }
}


/* g-nav-mega-medical */
.g-nav-mega-medical__link { margin: 0 0 1.6em; }

.g-nav-mega-medical .l-medical-nav { max-width: 1100px; }



/* ----------------------------------------------------------------------
	l-content
---------------------------------------------------------------------- */

.l-content {}

.l-content__inner {
    margin: 0 auto;
    max-width: 1100px;
}

.l-content__inner--small { max-width: 800px; }

@media screen and (max-width: 990px) {
    .l-content__inner { margin: 0 30px; }
}


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

.l-footer { padding: 120px 0 0; }

.l-footer-slide__ph img { width: 300px; }

.l-footer-philosophy-bg {
     background: var(--color-orange);
     padding: 70px 0;
}

.l-footer-philosophy-column {
    margin: 0 auto;
    max-width: 1100px;
    display: flex;
    align-items: center;
}

.l-footer-philosophy-column__inner { width: 50%; }

.l-footer-philosophy { text-align: center; }

.l-footer-medical-subject {
    color: var(--color-white);
    padding: 20px 0;
    margin: 0 auto;
    width: 500px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
}

.l-footer-medical-subject dt { width: 90px; }

.l-footer-medical-subject dd ul {
    width: 410px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2em 0.5em;
}


.l-footer-inner {
    position: relative;
    margin: 90px auto;
    max-width: 1100px;
}

.l-footer-column {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.l-footer-column__l {
    text-align: center;
    width: 320px;
}

.l-footer-logo__mark { margin: 0 0 16px; }

.l-footer-access-parking-train {
    background:  var(--color-white-gray);
    font-size: 1.5rem;

    padding: 10px 0;
    margin-top: 25px;
    border-radius: 5px;
}

.l-footer-column__r { width: 740px; }

.l-footer-reserve {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.l-footer-reserve-box { width: 250px; }

.l-footer-asscess {
    margin: 0 0 1.6em;
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.l-footer-reserve-box__txt { margin: 0 0 1em; }

.l-footer-reserve-box__tel.tel-num { text-align: left; }

.l-footer-reserve-medical-hours { width: 450px; }

.l-footer-copyright {
    position: absolute;
    top: 18px;
    right: 0;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-align: right;
}

@media screen and (max-width: 990px) {
    .l-footer { padding: 80px 0 0; }
    
    .l-footer-inner {
        margin: 0;
        padding: 50px 30px 90px;
    }

    .l-footer-philosophy-bg { padding: 40px 30px; }

    .l-footer-philosophy-column {
        margin: 0 auto;
        display: block;
    }

    .l-footer-philosophy-column__inner { width: 100%; }
    
    .l-footer-philosophy { margin: 0 0 30px; }
    .l-footer-philosophy img { width: 238px}
    
    .l-footer-medical-subject {
        padding: 15px 0 20px;
        width: 100%;
        display: block;
    }

    .l-footer-medical-subject dt {
        text-align: center;
        margin: 0 0 0.4em;
        width: auto; 
    }
    
    .l-footer-medical-subject dd ul {
        font-size: 1.5rem;
        width: auto;
        justify-content: center;
    }

    .l-footer-column { display: block; }

    .l-footer-column__l {
        text-align: center;
        width: auto;
    }

    .l-footer-logo { margin: 0 0 16px; }

    .l-footer-logo__mark img { width: 130px; }
    .l-footer-logo__name img { width: 234px; }

    .l-footer-access-parking-train { margin: 0 0 20px; }

    .l-footer-column__r { width: auto; }

    .l-footer-asscess { text-align: center; }
    
    .l-footer-asscess__address { margin: 0 0 0.6em; }

    .l-footer-reserve { display: block; }

    .l-footer-reserve-box { width: auto; }
    
    .l-footer-asscess { display: block; }

    .l-footer-reserve-box__txt { text-align: center; }

    .l-footer-reserve-box__tel.tel-num { 
        text-align: center;
        margin: 0 0 0.4em;
    }
    
     .l-footer-reserve-box__holiday {
         text-align: center;
         margin: 0 0 1em;
    }

    .l-footer-reserve-medical-hours {
        margin: 0 0 30px;
        width: auto;
    }

    .l-footer-copyright {
        position: static;
        text-align: left;
    }
}


/* pagetop */
.l-pagetop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 100;
    display: none;
}

.-l-pagetop:hover img { opacity: 0.8; }

@media screen and (max-width: 990px) {
    .l-pagetop {
        right: 20px;
        bottom: 90px;
    }
}


/* ----------------------------------------------------------------------
	l-fixed-nav
---------------------------------------------------------------------- */

.l-fixed-nav {
    position: fixed;
    top: -160px;
    left: 0;
    z-index: 10;
    background: var(--color-white);
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.l-fixed-nav .l-header-inner { height: 120px; }

.l-fixed-nav.fixed { top: 0; }

.l-fixed-nav-logo {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    line-height: 1;
}

@media screen and (max-width: 1300px) {
    .l-fixed-nav-logo { left: 30px; }
    
    .l-fixed-nav-logo img { width: 280px; }
}

@media screen and (max-width: 990px) {
    .l-fixed-nav { display: none; }
}


/* ----------------------------------------------------------------------
	l-medical-nav
---------------------------------------------------------------------- */

.l-medical-nav-lead {
    text-align: center;
    margin: 0 0 2em;
}

.l-medical-nav-lead span { display: block; }

.l-medical-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 25px;
}

.l-medical-nav--local { margin: 0 0 120px; }

.l-medical-nav li { width: 200px; }
.g-nav-mega-medical .l-medical-nav li { width: 180px; }

.l-medical-nav li a {
    position: relative;
    background: var(--color-white);
    color: var(--color-orange);
    text-align: center;
    text-decoration: none;
    padding: 46px 0 0;
    width: 200px;
    height: 200px;
    display: block;
    border-radius: 50%;
    border: 1px solid var(--color-border);
}

.g-nav-mega-medical .l-medical-nav li a {
    padding: 36px 0 0;
    width: 180px;
    height: 180px;
}

.l-medical-nav li a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background: url("../img/icon_a_sub.svg") center center no-repeat;
    background-size: cover;
    width: 20px;
    height: 20px;
    display: block;
    transition: 0.4s;
}

.g-nav-mega-medical .l-medical-nav li a::before { bottom: 15px; }

.l-medical-nav--local.l-medical-nav li a::before { transform: translateX(-50%) rotate(90deg); }

.l-medical-nav li a:hover img { opacity: 1; }
.l-medical-nav li a:hover { border: 1px solid var(--color-orange); }

.l-medical-nav__icon { margin: 0 0 10px; }

.l-medical-nav__ttl { font-size: 1.8rem; }

.l-medical-nav__txt {
    text-align: center;
    margin: 0.8em 0 0;
}

.l-medical-nav__txt span { display: block; }

.l-medical-nav__txt-pt15 { padding-top: 15px; }

@media screen and (max-width: 990px) {
    .l-medical-nav-lead {
        text-align: left;
        margin: 0 0 1.6em;
    }

    .l-medical-nav-lead span { display: inline; }
    
    .l-medical-nav { gap: 5.333vw 4vw; }
    
    .l-medical-nav li { width: calc((100vw - 4vw - 60px) / 2); }
    
     .l-medical-nav li a {
         padding: 7vw 0 0;
         width: calc((100vw - 4vw - 60px) / 2); 
         height: calc((100vw - 4vw - 60px) / 2);
    }
    .l-medical-nav li a::before {
        bottom: 3.6vw;
        width: 5.333vw;
        height: 5.333vw;
    }
    
    .l-medical-nav__icon img {
        width: auto;
        height: calc((46vw - 4vw - 60px) / 2);
    }
    
    .l-medical-nav__ttl { font-size: 4.266vw; }
    
    .l-medical-nav__txt { font-size: 3.2vw; }
    
    .l-medical-nav__txt-pt15 { padding-top: 0; }
}

/* ----------------------------------------------------------------------
	medical-hours
---------------------------------------------------------------------- */

.medical-hours-tbl table {
    background: var(--color-white);
    border-top: 2px solid var(--color-orange);
    width: 100%;
}

.medical-hours-tbl table tr { border-bottom: 1px solid var(--color-border); }

.medical-hours-tbl table th,
.medical-hours-tbl table td {
    text-align: center;
    padding: 10px 0;
}

.medical-hours-tbl table th {
    font-weight: normal;
    width: 150px;
}

.medical-hours-tbl table tr:first-child td:last-child { width: 70px; }

.medical-hours-tbl table tr:first-child td { color: var(--color-orange); }

.medical-hours-txt {
    text-align: right;
    margin: 1em 0 0;
}

@media screen and (max-width: 990px) {
    .medical-hours-tbl {
        font-size: 1.4rem;
        padding: 0;
        border-radius: 10px;
    }

    .medical-hours-tbl table th { width: 40%; }

    .medical-hours-tbl table tr:first-child td:last-child { width: 16%; }
    
    .medical-hours-txt { text-align: left; }
}

@media screen and (max-width: 375px) {
    .medical-hours-tbl { font-size: 1.3rem; }
}


/* ----------------------------------------------------------------------
	l-fixed-btn
---------------------------------------------------------------------- */

.l-fixed-btn {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 1;
    transform: translateY(-50%);
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    transition: 0.4s;
}

.l-fixed-btn li a {
    text-align: center;
    text-decoration: none;
    display: block;
}

.l-fixed-btn__tel { display: none; }

.l-fixed-btn__medical-hours a {
    color: var(--color-white);
    font-size: 1.8rem;
    text-align: center;
    writing-mode: vertical-rl;
    line-height: 64px;
    padding: 20px 0;
    width: 64px;
}

.l-fixed-btn__medical-hours a {
    background: var(--color-orange);
    height: 200px;
}

.l-fixed-btn a:hover { opacity: 0.8; }

@media screen and (max-width: 990px) {
    .l-fixed-btn {
        top: inherit;
        right: 0;
        bottom: 0;
        width: 100%;
        display: flex;
        transform: translateY(0);
        border-radius: 0;
    }

    .l-fixed-btn a {
        width: 100%;
        height: 70px;
    }

   .l-fixed-btn__tel {
       width: 72%;
       display: block;
    }
    
   .l-fixed-btn__tel a {
       background: var(--color-yellow);
       color: var(--color-text);
       font-size: 1.3rem;
       line-height: 1.3;
       padding: 15px 0 0;
    }
    
     .l-fixed-btn__tel a span {
         font-size: 2rem;
         letter-spacing: .02em;
    }
   
   .l-fixed-btn__medical-hours { width: 38%; }
   .l-fixed-btn__medical-hours a {
       font-size: 1.6rem;
       line-height: 70px;
       writing-mode: horizontal-tb;
       padding: 0;
    }
}


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

.local-nav {
    margin: 0 0 80px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.local-nav li a {
    position: relative;
    text-decoration: none;
    padding: 12px 0 12px 26px;
    display: block;
}

.local-nav li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url("../img/icon_local_nav.svg") center center no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    display: block;
    transition: 0.4s;
}


@media screen and (max-width: 990px) {
.local-nav {
    margin: 0 0 60px;
    gap: 15px 20px;
}

.local-nav li {
    width: 100%;
    border-bottom: 1px solid var(--color-black);
}

.l-home-partner .local-nav li { width: calc(50% - 10px); }

.local-nav li a { padding: 10px 0 10px 26px; }

.l-home-partner .local-nav li a { font-size: 1.4rem; }
}


/* ----------------------------------------------------------------------
	heading
---------------------------------------------------------------------- */

/* page-ttl */
.page-ttl {
    position: relative;
    background: url("../img/icon_kirakira.svg") center top no-repeat;
    background-size: 30px;
    color: var(--color-orange); 
    font-size: 2.4rem;
    font-weight: normal;
    text-align: center;
    padding: 34px 0 0.6em;
    margin: 0 0 1.2em;
}

.page-ttl::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: var(--color-yellow); 
    width: 120px;
    height: 4px;
    border-radius: 2px;
    display: block;
}

@media screen and (max-width: 990px) {
    .page-ttl { margin: 0 0 1em; }
    
    .page-ttl__ja { font-size: 2rem; }
}


/* page-s-ttl */
.page-s-ttl {
    text-align: center;
    font-weight: normal;
    padding: 0 0 0.8em;
    margin: 0 0 1.4em;
    border-bottom: 1px solid var(--color-black);
}

.page-s-ttl__en {
    color: var(--color-orange);
    font-size: 1.4rem;
}

.page-s-ttl__ja {
    font-size: 2rem;
    font-weight: normal;
}

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


/* baloon-ttl */
.baloon-ttl {
    position: relative;
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 1.8rem;
    text-align: center;
    padding: 10px 20px;
    margin: 0 auto 1.4em;
    width: 340px;
    border-radius: 10px;
}

.baloon-ttl::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -13px;
    transform: translateX(-50%);
    background: var(--color-orange);
    width: 40px;
    height: 14px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

@media screen and (max-width: 990px) {
    .baloon-ttl {
        font-size: 1.6rem;
        padding: 14px 20px;
        width: 100%;
    }
}


/* ----------------------------------------------------------------------
	tel
---------------------------------------------------------------------- */

.tel-num {
    color: var(--color-orange);
    line-height: 1.5;
}

.tel-num dt { font-size: 1.5rem; }

.tel-num dd {  font-size: 2rem; }

.tel-num dd a {
    color: var(--color-orange);
    font-size: 2.8rem;
    letter-spacing: .02em;
    text-decoration: none;
}

@media screen and (max-width: 990px) {
    .tel-num dd a { text-decoration: underline; }
}


/* ----------------------------------------------------------------------
	icon
---------------------------------------------------------------------- */

/* icon-plus */
.icon-plus {
    position: relative;
    width: 18px;
    height: 18px;
    display: block;
}

.icon-plus:before,
.icon-plus:after {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    background: var(--color-orange);
    width: 18px;
    height: 2px;
    display: block;
    transition: 0.2s;
}

.icon-plus--white:before,
.icon-plus--white:after { background: var(--color-white);}

.icon-plus:before { transform: rotate(90deg);  }

.on .icon-plus:before { transform: rotate(0); }

/* icon-square */
.icon-square {
    background: #e2c144;
    font-size: 2.8rem;
    font-style: normal;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0;
    width: 50px;
    height: 50px;
    display: block;
}


/* ----------------------------------------------------------------------
	modal
---------------------------------------------------------------------- */

.l-modal-box {
    position: relative;
    text-align: left;
    border-radius: 10px;
    padding: 60px 50px 60px;
}

.modal-hours { max-width: 600px; }

.l-modal-box__close {
	position: absolute;
	top: 30px;
	right: 30px;
    width: 30px;
    height: 30px;
    display: block;
    transition: 0.7s;
    cursor: pointer;
}

.l-modal-box__close:hover { opacity: 0.6; }

.l-modal-box__close:before,
.l-modal-box__close:after {
	content: "";
	position: absolute;
	top: 50%; 
	right: 0;
    background: var(--color-dark-gray);
	width: 30px;
	height: 2px;
    display: block;
    transform: rotate(-45deg);
}

.l-modal-box__close:before { transform: rotate(45deg); }

.l-modal-bg {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	width: 100%;
	height: 100%;
	display: block;
}

@media screen and (max-width: 990px) {
    .l-modal-box {
        padding: 60px 20px 20px;
    }

    .l-modal-box__close {
        top: 15px;
        right: 15px;
    }
}


/* ----------------------------------------------------------------------
	table
---------------------------------------------------------------------- */

.tbl {
    position: relative;
    width: 100%;
}

.tbl tr { position: relative; }

.tbl th,
.tbl td {
	text-align: left;
	padding: 25px 0;
}

.tbl th {
    color: var(--color-blue);
    width: 25%;
}

.tbl::before,
.tbl tr::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid var(--color-border);
    display: block;
}

.tbl::after,
.tbl tr::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    border-top: 1px solid var(--color-blue);
    display: block;
}

.tbl::before,
.tbl::after  {
    top: inherit;
    bottom: 0;
}

.tbl td { padding-left: 25px; }

@media screen and (max-width: 990px) {
	.tbl { display: block; }

    .tbl tbody,
    .tbl tr {
        width: 100%;
        display: block;
    }

	.tbl th,
	.tbl td {
        padding: 20px 0;
        display: block;
        width: 100%;
    }

    .tbl th { padding-bottom: 0.6em; }
    .tbl td { padding-top: 0; }
}


/* ----------------------------------------------------------------------
	list
---------------------------------------------------------------------- */

/* icon-list */
.icon-list li,
.icon-list dl dt {
    position: relative;
    padding-left: 18px;
}

.icon-list li::before,
.icon-list dl dt::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    background: var(--color-orange);
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.icon-list dl { margin: 0 0 0.8em; }
.icon-list li { margin: 0 0 0.4em; }

.icon-list dl:last-child,
.icon-list li:last-child { margin: 0; }

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

}


/* list-style */
.list-style { margin-bottom: 0.8em; }
.list-style:last-child { margin-bottom: 0; }
.list-style > li {
	margin-left: 2em;
	margin-bottom: 0.6em;
	list-style: decimal;
}

.list-style li:last-child { margin-bottom: 0; }

.list-style--latin > li { list-style: lower-latin; }
.list-style--katakana > li {
    padding-left: 5px;
    list-style: katakana;
}

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


/* ----------------------------------------------------------------------
	target
---------------------------------------------------------------------- */

.target-block {
    margin-top: -120px;
    padding-top: 120px;
}

@media screen and (max-width: 990px) {
    .target-block {
        margin-top: -80px;
        padding-top: 80px;
    }
}


/* ----------------------------------------------------------------------
	column
---------------------------------------------------------------------- */

.l-column02,
.l-column03 {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 40px;
}

.l-column02--reserve { flex-direction: row-reverse; }

.l-column02--center { align-items: center; }

.l-column02__inner { width: 520px; }

.l-column03__inner { width: calc((100% - 80px) / 3); }

.l-column__ph { margin: 0 0 20px; }

.l-column__ttl {
    color: var(--color-orange); 
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 0.6em;
}

.l-column__txt p { margin: 0 0 1em; }
.l-column__txt p:last-child { margin: 0; }

@media screen and (max-width: 990px) {
    .l-column02,
    .l-column03 { gap: 40px 0; }
    
    .l-column02__inner,
    .l-column03__inner { width: 100%; }
    
    .l-column__ph { margin: 0 0 20px; }

    .l-column__ph img { width: 100%; }
}


/* ----------------------------------------------------------------------
    l-blog
---------------------------------------------------------------------- */

.blog-ttl {
    line-height: 1.4;
    text-align: center;
    padding: 40px 0 60px;
}

.blog-ttl__en {
    color: var(--color-orange); 
    font-size: 4.6rem;
}

.blog-ttl__ja {
    font-size: 2.4rem;
    font-weight: normal;
}

@media screen and (max-width: 990px) {
    .blog-ttl { padding: 20px 0 30px; }

    .blog-ttl__en { font-size: 3.4rem; }

    .blog-ttl__ja { font-size: 1.8rem; }
}


.l-blog {
	display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

.l-blog-content { width: 800px; }

.l-blog-list li { border-bottom: 1px solid var(--color-border); }
.l-blog-list li:first-child { border-top: 1px solid var(--color-border); }

.l-blog-list li a {
    position: relative;
    color: var(--color-text); 
    text-decoration: none;
    padding: 25px 25px 25px 0;
    display: block;
}

.l-blog-list li a:hover { color: var(--color-yellow); }

.l-blog-list li a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url("../img/icon_a_sub.svg") center center no-repeat;
    width: 20px;
    height: 20px;
    display: block;
}

.l-blog-list li a dl {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.l-blog-list li a dl dt { color: var(--color-orange); }


.l-blog-article__header {
	padding: 0 0 0.8em;
	margin: 0 0 1.4em;
	border-bottom: 1px solid var(--color-border);
}

.l-blog-article__date {
	color: var(--color-orange);
	margin: 0 0 0.2em;
}

.l-blog-article__ttl {
    font-size: 1.8rem;
    font-weight: 400;
}

.l-blog-article__body p { margin: 0 0 1em; }
.l-blog-article__body p:last-child { margin: 0; }

.l-blog-sidebar { width: 230px; }

.l-blog-sidebar__box {
	padding: 0 0 40px;
	margin: 0 0 40px;
	border-bottom: 1px solid var(--color-border);
}

.l-blog-sidebar__ttl {
	color: var(--color-orange); 
	font-size: 2.6rem;
	font-weight: normal;
	margin: 0 0 0.2em;
}

.l-blog-sidebar__list li { margin: 0 0 0.6em; }
.l-blog-sidebar__list li:last-child { margin: 0; }

@media screen and (max-width: 990px) {
	.l-blog-content { width: 100%; }
    
    .l-blog-list li a dl { display: block; }

	.l-blog-article__ttl { font-size: 1.6rem; }

	.l-blog-sidebar { width: 100%; }
}


/* ----------------------------------------------------------------------
    l-sticky
---------------------------------------------------------------------- */

.l-sticky {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.l-sticky-sideber {
    position: sticky;
    top: 160px;
    left: 0;
    width: 200px;
}

.l-sticky-content { width: 800px; }

@media screen and (max-width: 1150px) {
    .l-sticky { display: block; }

    .l-sticky-sideber {
        position: static;
        width: auto;
    }

    .l-sticky-content { width: auto; }
}


.l-sticky-local-nav { margin: 0 0 120px; }

.l-sticky-local-nav li { position: relative; }

.l-sticky-local-nav li a {
    position: relative;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 40px 15px 0;
    display: block;
}

.l-sticky-local-nav li a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 11px;
    transform: translateY(-50%);
    background: url("../img/local_nav.svg") center center no-repeat;
    background-size: 12px 10px;
    width: 12px;
    height: 10px
}

.l-sticky-local-nav li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: 1px solid var(--color-border);
    display: block;
}

.l-sticky-local-nav li::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    border-top: 1px solid var(--color-blue);
    display: block;
}

@media screen and (max-width: 1150px) {
    .l-sticky-local-nav {
        margin: 0 0 80px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .l-sticky-local-nav li { width: calc((100% - 10px) / 2); }
    
    .l-sticky-local-nav li a { padding: 15px 30px 15px 0; }
    
    .l-sticky-local-nav li a::before {
        right: 4px;
        transform: rotate(90deg);
    }
    
    .l-sticky-local-nav li::after { width: 20px; }
}


/* ----------------------------------------------------------------------
    wordpress
---------------------------------------------------------------------- */

/* wpcf7 */
.wpcf7-list-item { margin-left: 0!important; }

.wpcf7-validation-errors {
	color: #d6a000;
	font-weight: bold;
	text-align: center;
	padding: 10px 15px!important;
	border: 2px solid #d6a000!important;
}

.wpcf7-response-output {
	padding: 10px 15px!important;
	margin: 2em 0 1em !important;
}

.wpcf7-mail-sent-ok { border: 2px solid #d6a000!important; }

span.wpcf7-not-valid-tip {
	color: #c00!important;
	margin: 0.6em 0 0;
}

.wpcf7-not-valid-tip { margin: 0 0 1.6em; }


/* wp-block-image */
.wp-block-image { margin: 0 0 20px; }

.wp-block-image img {
	width: 100%;
    max-width: 100%;
	height: auto;
}


/* wp-pagenavi */
.wp-pagenavi {
	text-align: center;
	margin: 0 0 100px;
}

.wp-pagenavi span,
.wp-pagenavi a {
	text-decoration: none!important;
	padding: 8px 12px;
	margin: 0 4px;
	border: 1px solid #2b5187;
}

.wp-pagenavi .current {
	background: #2b5187;
	color: #fff;
}


/* wp-pager */
.wp-pager {
	text-align: center;
	margin: 60px 0 0;
}


@media screen and (max-width: 990px) {
	.wp-block-image .alignleft,
	.wp-block-image .alignright {
		margin: 0 auto!important;
		float: none!important;
	}
}

