@charset "utf-8";


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

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


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

:root {
    --font-gothic: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    --font-mincho: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    --font-en: "Quicksand", sans-serif;

    --color-white: #fff;
    --color-red: #e4004f;
    --color-yellow: #f7b100;
    --color-beige: #fef9f0;
    --color-light-pink: #f9d2e2;
    --color-white-pink: #f9eff3;
    --color-light-yellow: #fcdf98;
     
    --color-white-gray: #f8f8f8;
    --color-light-gray: #ddd;
    --color-gray: #999;
    --color-dark-gray: #545454;
    --color-black: #595757;
    
    
    --color-text: var(--color-black);
    --color-bg: var(--color-beige);
    --color-border: var(--color-light-gray);
}


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

html { font-size: 62.5%; }

body {
    background: var(--color-bg);
	font-family: var(--font-gothic);
	color: var(--color-text);
	font-size: 1.6rem;
    text-align: left;
	line-height: 1.6;
    letter-spacing: .05em;
    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-red); text-decoration: none; }
a:active { color: var(--color-red); 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); }

.circle-img { border-radius: 50%; }

.radius10 { border-radius: 10px; }
.radius20 { border-radius: 20px; }
.radius-circle { border-radius: 50%; }

/* ----------------------------------------------------------------------
	background
---------------------------------------------------------------------- */

.bg-gradation { background-image: linear-gradient(90deg, #fceef2, #fdf4da); }

.bg-gradation-diagonal { background-image: linear-gradient(325deg, #fdf4da, #fceef2); }

.bg-white {
    background: var(--color-white);
    padding: 80px 0 80px;
    margin: 0 0 120px;
}

@media screen and (max-width: 990px) {
    .bg-white {
        padding: 40px 0 60px;
        margin: 0 0 80px;
    }
}


/* ----------------------------------------------------------------------
	background
---------------------------------------------------------------------- */

.tel-num {
    font-size: 1.8rem;
    line-height: 1.4;
}

.tel-num a {
    color: var(--color-text);
    font-size: 2.8rem;
    text-decoration: none;
}

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

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

/* btn-default */
.btn-default a {
    position: relative;
    background-image: linear-gradient(90deg, #fceef2, #fdf4da);
    text-align: center;
    text-decoration: none;
    padding: 15px 30px;
    width: 320px;
    display: inline-block;
    border-radius: 1000px;
}

.btn-default a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    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--yellow a {
    background: var(--color-yellow);
    color:  var(--color-white);
}

.btn-default--yellow a::before { background: url("../img/icon_a_default_yellow.svg") center center no-repeat; }

.btn-default--white a { background: var(--color-white); }

.btn-default--gray a {
    background: var(--color-dark-gray);
    color: var(--color-white);
}

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

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


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

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


/* btn-recruitment */
.btn-recruitment a {
    background: var(--color-red);
    color:  var(--color-white);
    text-align: center;
    text-decoration: none;
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.btn-recruitment__ja { font-size: 2rem; }

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

@media screen and (max-width: 990px) {
    .btn-recruitment a {
        background: var(--color-red);
        color:  var(--color-white);
        text-align: center;
        text-decoration: none;
        line-height: 1.3;
        padding-top: 10px;
        width: 100%;
        height: 60px;
        display: block;
        border-radius: 10px 10px 0 0;
    }

    .btn-recruitment__ja { font-size: 1.6rem; }
    
    .btn-recruitment__en { font-size: 1.4rem; }
}


/* link-blank */
.link-blank { padding-right: 18px!important; }
.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;
}

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

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


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

.fs10 { font-size: 1rem; }
.fs12 { font-size: 1.2rem; }
.fs14 { font-size: 1.4rem; }
.fs16 { font-size: 1.6rem; }
.fs18 { font-size: 1.8rem }
.fs20 { font-size: 2rem; }
.fs22 { font-size: 2.2rem; }
.fs24 { font-size: 2.4rem; }
.fs26 { font-size: 2.6rem; }
.fs28 { font-size: 2.8rem; }
.fs30 { font-size: 3rem; }

.text-block p,
.text-block ul,
.text-block dl { margin: 0 0 1em; }
.text-block p:last-child,
.text-block ul:last-child,
.text-block dl:last-child { margin: 0; }

.font-en {
    font-family: var(--font-en);
    font-weight: 400;
    letter-spacing: .05em;
}

.font-mincho {
    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: bold; }

.br { display: block; }

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

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

.marker--yellow { background: linear-gradient(transparent 50%, var(--color-light-yellow)  50%);}

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) {
    .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: 0 0 80px;
        min-width: inherit;
    }
}


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

.l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    transition: .4s;
}

.l-header.fixed {
    background-color: rgba(255,255,255,0.8);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    transition-delay: .2s;
}

.l-header-inner {
    position: relative;
    height: 130px;
    transition: .4s;
}

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

 .l-header-logo {
     position: absolute;
     top: 40px;
     left: 40px;
     z-index: 1;
     transition: .4s;
}

.l-header.fixed .l-header-logo { top: 15px; }

.l-header.fixed .l-header-logo img { width: 70px; }

@media screen and (max-width: 990px) {
    .l-header,
    .l-header.fixed {
        position: absolute;
        top: 0;
        left: 0;
    }

    .l-header-inner,
    .l-header.fixed .l-header-inner { height: 80px; }

    .l-header-logo {
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
    }

    .l-header-logo img,
    .l-header.fixed .l-header-logo img { width: 60px; }
}


.l-header-nav {
    position: absolute;
    top: 50%;
    left: 250px;
    transform: translateY(-50%);
    transition: .4s;
}

.l-header.fixed .l-header-nav { left: 160px; }

.l-header-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    display: flex;
    gap: 0 20px;
}

.l-header-btn li { width: 280px; }

.btn-contact a,
.btn-contact-center a {
    color: var(--color-white);
    text-align: center;
    text-decoration: none;
    line-height: 54px;
    height: 54px;
    display: block;
    border-radius: 1000px;
}

.btn-contact a:hover,
.btn-contact-center a:hover { opacity: 0.8; }

.btn-contact a span,
.btn-contact-center a span { position: relative; }

.btn-contact a span { padding-left: 40px; }
.btn-contact-center a span { padding-left: 36px; }

.btn-contact a span::before,
.btn-contact-center a span::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
}

.btn-contact a { background: var(--color-yellow); }
.btn-contact a span::before {
    background: url("../img/icon_contact.svg") center center no-repeat;
    background-size: 30px 22px;
    width: 30px;
    height: 22px;
}

.btn-contact-center a { background: var(--color-red); }
.btn-contact-center a span::before {
    background: url("../img/icon_contact_center.svg") center center no-repeat;
    background-size: 28px 30px;
    width: 28px;
    height: 30px;
}

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


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

.l-header-nav nav > ul > li { position: relative; }

.l-header-nav nav > ul > li > a,
.l-header-nav nav > ul > li > span {
    color: var(--color-black);
    text-decoration: none;
    line-height: 50px;
    height: 50px;
    display: block;
    cursor: pointer;
}

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

.l-header-nav nav > ul > li > a:before,
.l-header-nav nav > ul > li > a:after,
.l-header-nav nav > ul > li > span:before,
.l-header-nav nav > ul > li > span:after {
    content: "";
    position: absolute;
    bottom: 0;
	background: var(--color-red);
    width: 0;
    height: 1px;
    display: inline-block;
    transition: all 0.6s ease 0s;
}

.l-header-nav nav > ul > li > a:after,
.l-header-nav nav > ul > li > span:after { left: 50%; }

.l-header-nav nav > ul > li > a:before,
.l-header-nav nav > ul > li > span:before { right: 50%; }

.l-header-nav nav > ul > li > a:hover:after,
.l-header-nav nav > ul > li > a:hover:before,
.l-header-nav nav > ul > li > span:hover:after,
.l-header-nav nav > ul > li > span:hover:before { width: 50%; }

.l-header-nav nav ul li ul {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    display: none;
}

.l-header-nav nav ul li ul li { border-bottom: 1px dashed var(--color-border); }
.l-header-nav nav ul li ul li:last-child { border: none; }

.l-header-nav nav ul li ul li a {
    position: relative;
    text-decoration: none;
    padding: 16px 38px 16px 20px;
    display: block;
}

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

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


/* ----------------------------------------------------------------------
	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; }
}


/* ----------------------------------------------------------------------
	f-contact
---------------------------------------------------------------------- */

.f-contact {
    background-image: linear-gradient(90deg, #fceef2, #fdf4da);
    text-align: center;
    padding: 60px 0;
    margin: 0 auto 120px;
    max-width: 1200px;
    border-radius: 1000px;
}

.contact .f-contact { display: none; }

.contact .f-contact { display: none; }

.f-contact-ttl {
    color: var(--color-red);
    line-height: 1.4;
    margin: 0 0 1.6em;
}

.f-contact-ttl__en { font-size: 3.6rem; }

.f-contact-ttl__ja { font-size: 2rem; }

.f-contact-txt { margin: 0 0 1.6em; }

@media screen and (max-width: 990px) {
    .f-contact {
        background-image: linear-gradient(325deg, #fdf4da, #fceef2); 
        padding: 25px 30px 30px;
        margin: 0 30px 80px;
        border-radius: 10px;
    }

    .f-contact-ttl {
        color: var(--color-red);
        line-height: 1.4;
        margin: 0 0 1em;
    }

    .f-contact-txt {
        text-align: left;
        margin: 0 0 1.4em;
    }
}


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

.l-footer {
    text-align: center;
    padding: 0 0 30px;
}

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

.l-footer-block {
    position: relative;
    z-index: 1;
}

.l-footer-deco {
    position: absolute;
    z-index: -1px;
}

.l-footer-deco01 {
    top: 0;
    left: -30px;
}

.l-footer-deco02 {
    top: 20px;
    right: 15px;
}

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

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

.l-footer-nav {
    position: absolute;
    left: 0;
    bottom: 0;
}

.l-footer-nav a {
    position: relative;
    font-size: 1.4rem;
    text-decoration: none;
    padding-left: 10px;
}

.l-footer-nav a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url("../img/icon_a_sub_black.svg") center center no-repeat;
    background-size: 6px 10px;
    width: 6px;
    height: 10px;
}

.l-footer-copy { font-size: 1.2rem; }
 
@media screen and (max-width: 990px) {
    .l-footer {
        width: 375px;
        padding: 0 0 30px;
        margin: 0 auto;
    }

    .l-footer-deco { position: absolute; }

    .l-footer-deco01 {
        top: inherit;
        left: 4vw;
        bottom: 6vw;
    }
    .l-footer-deco01 img { width: 120px; }

    .l-footer-deco02 {
        top: 20.666vw;
        right: 6vw;
    }
     .l-footer-deco02 img { width: 70px; }
     
    .l-footer-logo { margin: -22px 0 32px; }

    .l-footer-logo-en img { width: 280px; }
    
    .l-footer-logo img { width: 86px; }

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

    .l-footer-nav {
        position: static;
        margin: 0 0 1.4em;
    }

    .l-footer-copy { font-size: 1.2rem; }
}


/* 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: 100px;
    }
    
    .l-pagetop img { width: 40px; }
    
    .one-day .l-pagetop,
    .recruitment .l-pagetop,
    .contact .l-pagetop{ bottom: 20px; }
    
    .contact-center .l-pagetop { bottom: 80px; }
}


/* ----------------------------------------------------------------------
	l-recruitment-list
---------------------------------------------------------------------- */

.l-recruitment-list {
    display: flex;
    gap: 40px;
}

.l-recruitment-list li { width: 340px; }

.l-recruitment-list li a {
    color: var(--color-text);
    text-decoration: none;
    background: var(--color-white);
    height: 100%;
    border-radius: 10px;
    display: block;
    overflow: hidden;
}

.l-recruitment-list li a:hover img { opacity: 1; }
.l-recruitment-list li a:hover { opacity: 0.8; }

.l-recruitment-list-box { padding: 20px; }

.l-recruitment-list-ttl {
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 0.4em;
}

.l-recruitment-list-txt {
    min-height: 105px;
    margin: 0 0 1em;
}

.l-recruitment-list-info dl {
    margin: 0 0 0.6em;
    display: flex;
}

.l-recruitment-list-info dl:last-child { margin: 0; }

.l-recruitment-list-info dl dt { width: 85px; }

.l-recruitment-list-btn {
    position: relative;
    color: var(--color-text);
    text-align: center;
    line-height: 50px;
    margin-top: 25px;
    justify-content: 50px;
    border: 1px solid var(--color-border);
    border-radius: 25px;
}

.l-recruitment-list-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: url("../img/icon_a_sub.svg") center center no-repeat;
    background-size: 6px 12px;
    width: 6px;
    height: 12px;
    display: block;
}

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

    .l-recruitment-list li {
        margin: 0 0 30px;
        width: 100%;
    }
    
    .l-recruitment-list li:last-child { margin: 0; }
    
    .l-recruitment-list-img img { width: 100%; }
    
    .l-recruitment-list-txt { min-height: inherit; }
    
    .l-recruitment-list-info dl dt { width: 85px; }
    
     .l-recruitment-list-info dl dd { width: calc(100% - 85px); }
     
     .l-recruitment-list-btn { margin-top: 20px; }
}


/* ----------------------------------------------------------------------
	faq
---------------------------------------------------------------------- */

.l-faq__q {
    position: relative;
    padding: 16px 30px 22px 0;
    cursor: pointer;
    transition: .4s;
}

.l-faq__box { border-bottom: 1px solid var(--color-border);  }

.l-faq__q.on { color: var(--color-red); }
.l-faq__q:hover { color: var(--color-yellow); }

.l-faq__box:first-child .l-faq__q { border-top: 1px solid var(--color-border);  }

.l-faq__q dl { display: flex; }

.l-faq__q dl dt {
    color: var(--color-red);
    font-size: 3.6rem;
    font-weight: 200;
    line-height: 1;
    width: 40px;
}

.l-faq__q dl dd {
    padding-top: 7px;
    width: calc(100% - 40px);
}

.l-faq__q .icon-plus {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.l-faq__a {
    padding: 0 0 20px 40px;
    display: none;
}

@media screen and (max-width: 990px) {
    .l-faq__q { padding: 12px 30px 16px 0; }

    .l-faq__q dl dt {
        font-size: 3rem;
        width: 35px;
    }
    
    .l-faq__q dl dd { padding-top: 5px; }
}


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

.fixed-btn {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    display: none;
}

.contact-center .fixed-btn,
.one-day .fixed-btn,
.recruitment .fixed-btn,
.contact .fixed-btn{ display: none; }

.fixed-btn li { width: 50%; }

.fixed-btn li a {
    position: relative;
    color: var(--color-white);
    font-size: 1.4rem;
    text-align: center;
    text-decoration: none;
    padding-top: 46px;
    height: 80px;
    display: block;
}

.fixed-btn li a::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background-position: center center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    display: block;
}

.fixed-btn__contact a { background: var(--color-yellow); }
.fixed-btn__contact a::before {
    background-image: url("../img/icon_contact.svg");
    background-size: 30px 22px;
}

.fixed-btn__contact-center a { background: var(--color-red); }
.fixed-btn__contact-center a::before {
    background-image: url("../img/icon_contact_center.svg");
    background-size: 28px 30px;
}

.fixed-btn__contact-center a span { letter-spacing: 0; }

@media screen and (max-width: 990px) {
    .fixed-btn { display: flex; }
}


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

/* page-ttl */
.page-ttl {
    text-align: center;
    line-height: 1.4;
    margin: 0 0 2.6em;
}

.page-ttl__en {
    color: var(--color-red); 
    font-size: 7.2rem;
    font-weight: 200;
    left: 0;
}

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

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

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


/* page-s-ttl */
.page-s-ttl {
    position: relative;
    background: url("../img/ttl_bg.svg") center top no-repeat;
    background-size: 60px 54px;
    text-align: center;
    padding: 64px 0 0;
    margin: 0 0 1.6em;
}

.page-s-ttl--cc { margin: 0 0 3em; }
.page-s-ttl--cc .page-s-ttl__en {
    position: absolute;
    left: 50%;
    bottom: -90px;
    transform: translateX(-50%);
    font-size: 6rem;
    font-weight: 200;
    letter-spacing: 0;
}

.page-s-ttl__ja {
    font-size: 2.4rem;
    font-weight: normal;
    margin: 0 0 0.2em;
}

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

@media screen and (max-width: 990px) {
    .page-s-ttl { margin: 0 0 1.6em; }
    
    .page-s-ttl--short { margin: 0 0 0.8em; }

    .page-s-ttl__ja { font-size: 2rem; }
    
    .page-s-ttl--cc { margin: 0 0 2.2em; }
    .page-s-ttl--cc .page-s-ttl__en {
        bottom: -70px;
        font-size: 5rem;
    }
}


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

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

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

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

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

.icon-plus--large {
    width: 26px;
    height: 26px;
}

.icon-plus--large::before,
.icon-plus--large::after {
    width: 26px;
    height: 2px;
}

.icon-plus--large::before,
.icon-plus--large::after { top: 12px; }


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

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

@media screen and (max-width: 990px) {
    .icon-plus--large {
        width: 18px;
        height: 18px;
    }

    .icon-plus--large::before,
    .icon-plus--large::after {
        top: 8px;
        width: 18px;
        height: 1px;
    }
}


.icon-decimal li {
    margin-left: 1.5em;
    list-style: decimal;
}


/* icon-indent */
.icon-indent li {
    text-indent: -1em;
    margin-left: 1em;
}

.icon-indent li::before { content: "・"; }

.icon-indent-space li { margin-bottom: 0.6em; }
.icon-indent-space li:last-child { margin-bottom: 0; }


/* ----------------------------------------------------------------------
	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: 40px;
    height: 40px;
    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: 40px;
	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%;
    border-top: 1px solid var(--color-border);
}

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

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

.tbl th {
    color: var(--color-red);
    font-weight: normal;
    width: 18%;
    padding-right: 20px;
}

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


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

    .tbl tbody,
    .tbl tr {
        width: 100%!important;
        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: 6px;
    left: 0;
    background: var(--color-red);
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.icon-list--yellow li::before,
.icon-list--yellow dl dt::before { background: var(--color-yellow); }

.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;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px 0;
}

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

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

.l-column02--con-center {
    margin: 0 auto;
    max-width: 1100px;
}

.l-column02__inner { width: 520px; }

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

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


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

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

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

.l-blog-list li { margin: 0 0 20px; }
.l-blog-list li:last-child { margin: 0; }

.l-blog-list li a {
    position: relative;
    background: var(--color-white);
    text-decoration: none;
    padding: 30px 80px 30px 30px;
    display: block;
    border-radius: 10px;
}

.l-blog-list li a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: url("../img/icon_a_default.svg") 10px center var(--color-dark-gray) no-repeat;
    background-size: 6px 12px;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    display: block;
    transition: 0.2s;
}

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

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

.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-gray);
	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-blue);
	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 { padding: 20px 60px 20px 20px; }

    .l-blog-list li a::before { right: 20px; }

    .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: 0 0 100px;
}


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

