@charset "utf-8";

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

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%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}

body {
    line-height: 1;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    vertical-align: top;
}


/*==============================================*/
/*  PC  */
/*==============================================*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    /* --maincolor: #50B4AF;
    --maincolor-hsl: 177,40%,51%;
    --maincolor-h: 177;
    --maincolor-s: 40%;
    --maincolor-l: 51%;
    --subcolor-hsl: calc( 250 - var(--maincolor-h)),var(--maincolor-s),var(--maincolor-l); */

    /* 20260324 ロゴ画像の色味が#50B4AF→#1e4c96になったため変更 */
    /* 20260425 ロゴ画像の色味が#1e4c96→#006a99になったため変更 */
    --maincolor: #006a99;
    --maincolor-hsl: 198, 100%, 30%;
    --maincolor-h: 198;
    --maincolor-s: 100%;
    --maincolor-l: 30%;
    --subcolor-hsl: 177, 40%, 51%;
    --maincolor-light: #94cded;
    --maincolor-light-hsl: 202, 71%, 75%;
}

html {
  scroll-padding-top: 120px;
  scroll-behavior: smooth;
}

@media (min-width: 960px) {
    html {
        scroll-padding-top: 140px;
    }
}

body {
    font-size: 17px;
    line-height: 1.9;
    font-feature-settings: 'palt' 1;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.1em;
    font-family: "Noto Sans JP", sans-serif;
}

.lower p {
    margin-bottom: 1em;
}

.lower p:last-child {
    margin-bottom: 0;
}

.disIB {
    display: inline-block !important;
}

.mg_center {
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
}

@media (min-width: 960px) {
    body {
        font-size: 18px;
    }

    .pc_hide {
        display: none !important;
    }
}

@media (min-width: 560px) and (max-width: 959px) {
    .tb_hide {
        display: none !important;
    }

    .tb_mg_center {
        margin-left: auto;
        margin-right: auto;
        max-width: fit-content;
    }
}

@media (max-width: 559px) {
    .sp_hide {
        display: none !important;
    }

    .sp_mg_center {
        margin-left: auto;
        margin-right: auto;
        max-width: fit-content;
    }
}

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

@media (min-width: 1240px) {
    .tel {
        pointer-events: none;
    }
}

.taC {
    text-align: center;
}

.mb30 {
    margin-bottom: 30px;
}

h2 {
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}

ol:not([class])>li {
    list-style: decimal;
    margin-left: 40px;
}

*:has(> wbr) {
    word-break: keep-all;
    overflow-wrap: anywhere;
}

sup {
    font-size: 80%;
    vertical-align: super;
    letter-spacing: 0;
    margin-right: 0.4em;
}

strong {
    font-weight: bold;
}

/*  ヘッダー  */
.header {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 5px;
    z-index: 100;
    background: #fff;
    /*  height: 65px;*/
    gap: 0 30px;
}

.header__left {
    padding-left: 5px;
}

.header__logo {
    padding-left: 10px;
    padding-bottom: 5px;
}

.header__logo img {
    /*  width: 22vw;*/
    width: 280px;
}

.header__h1 {
    font-size: 12px;
    color: hsl(var(--maincolor-h), var(--maincolor-s), calc(var(--maincolor-l) - 10%));
    text-align: left;
    margin-bottom: 4px;
}

.header__center {
    margin-left: auto;
    padding-bottom: 5px;
}

.header__nav>ul {
    display: grid;
    grid-template-columns: repeat(6, auto);
    text-align: center;
}

.header__nav>ul>li {
    padding: 4px 20px;
    position: relative;
    font-size: 14px;
    list-style: none;
}

.header__nav>ul>li::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background: hsla(var(--maincolor-hsl), 0.5);
}

.header__nav>ul>li:last-child {
    padding-right: 0;
}

.header__nav>ul>li:last-child::after {
    content: none;
}

.header__nav>ul>li a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s;
}

.header__nav>ul>li a:hover {
    opacity: 0.7;
}

@media (max-width: 1419px) {
    .header__nav {
        display: none;
    }
}

.header__tel {
    padding: 5px 24px;
    border-radius: 40px;
    border: 1px solid hsla(var(--maincolor-hsl), 1);
    color: hsla(var(--maincolor-hsl), 1);
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    max-width: fit-content;
    margin: 10px 0 7px auto;
    line-height: 1.2;
}

.header__tel__text {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0;
    text-box-trim: trim-both;
}

.header__tel__arrow {
    position: relative;
    height: 12px;
    width: 12px;
    margin: 0 20px 0 10px;
}

.header__tel__arrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid hsla(var(--maincolor-hsl), 1);
    border-right: 1px solid hsla(var(--maincolor-hsl), 1);
    rotate: 45deg;
}

.header__tel__number a {
    color: hsla(var(--maincolor-hsl), 1);
    text-decoration: none;
    font-size: 33.75px;
    font-weight: 500;
    position: relative;
    text-box-trim: trim-both;
}

.header__tel__number a .header__tel__number__inner {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    text-box-trim: trim-end;
}

.header__tel__number a .header__tel__number__inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 27.5px;
    mask: url(../img/common/ico_phone.svg) 50% 50% / contain no-repeat;
    background: hsla(var(--maincolor-hsl), 1);
}

@media (min-width: 960px) {
    .header__right {
        white-space: nowrap;
        grid-template-columns: repeat(3, 86px);
    }
}

@media (max-width: 1319px) {
    .header__tel {
        grid-template-columns: auto 1fr;
        justify-content: center;
    }

    .header__tel__number {
        grid-row: 2 / 3;
        grid-column: 1 / 3;
    }

    .header__tel__arrow {
        margin: 0 0 5px 10px;
    }

    .header__tel__arrow::before {
        rotate: 135deg;
    }
}

@media (max-width: 1100px) {
    .header__tel {
        display: none;
    }
}

.header__right {
    display: grid;
    grid-template-columns: repeat(3, 86px);
    font-size: 18px;
    height: 86px;
    letter-spacing: 0;
    align-self: start;
}

.header__contact>a,
.header__yoyaku>a,
.h__hamburger {
    color: #fff;
    display: grid;
    align-items: center;
    grid-template-rows: 40px auto;
    padding: 10px 5px 4px;
    text-align: center;
    text-decoration: none;
    justify-content: center;
    height: 100%;
}

.header__contact a {
    background: hsl(var(--subcolor-hsl));
    border-radius: 0 0 0 30px;
}

.header__contact a:hover {
    opacity: 0.7;
}

.header__yoyaku>a {
    background: #8DA5A0;
}

.header__yoyaku a:hover {
    opacity: 0.7;
}

.h__hamburger {
    background: hsla(var(--maincolor-hsl), 1);
}

.h__hamburger:hover {
    opacity: 0.7;
}

.header__contact img,
.header__yoyaku img {
    margin: auto;
    height: 35px;
}

@media(max-width: 1039px) {
    .header__left {
        flex-basis: 280px;
        height: 72px;
    }
}

@media(max-width: 959px) {
    .header {
        height: 76px;
        padding: 0 0 0 15px;
    }

    .header__center {
        flex-basis: 0;
    }

    .header__left {
        flex-basis: 280px;
        height: 64px;
    }

    .header__logo {
        padding-left: 0;
        padding-bottom: 0;
        height: 100%;
    }

    .header__logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .header__h1 {
        display: none;
    }

    .header__contact>a,
    .header__yoyaku>a {
        font-size: 14px;
        grid-template-rows: auto auto;
        height: 76px;
        align-items: center;
        padding: 9px 4px 8px;
    }

    .header__contact img,
    .header__yoyaku img {
        width: 24px;
    }

    .header__contact {
        display: none;
    }
}

@media(max-width: 559px) {
    .header {
        gap: 0 2vw;
        padding: 0 0 0 15px;
    }

    .header__left {
        flex-basis: unset;
        flex-basis: calc(100% - 170px);
        height: 64px;
    }
}


/*ハンバーガーメニュー*/
.h__hamburger {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding-top: 46px;
    text-align: center;
}

/*3本線*/
.h__hamburger__icon,
.h__hamburger__icon::before,
.h__hamburger__icon::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 100;
    top: 20px;
    bottom: 0;
    width: 32px;
    height: 3px;
    background: #fff;
    cursor: pointer;
    border-radius: 5px;
}

.h__hamburger__icon {
    translate: 20px;
}

.h__hamburger__icon:before {
    top: 10px;
}

.h__hamburger__icon:after {
    top: 20px;
}

/*中身*/
/*チェックボックスにチェックが入ったら表示*/
#h__hamburger__menu:checked~.h__hamburger .h__hamburger__icon {
    background: transparent;
}

#h__hamburger__menu:checked~.h__hamburger .h__hamburger__icon::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px;
    z-index: 999;
    background: #fff;
}

#h__hamburger__menu:checked~.h__hamburger .h__hamburger__icon::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 10px;
    z-index: 999;
    background: #fff;
}

#h__hamburger__menu:checked~.h__nav__background {
    display: block;
    /*カバーを表示*/
    opacity: .8;
}

#h__hamburger__menu:checked~nav {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
}

.h__hamburger .h__hamburger__icon,
.h__hamburger .h__hamburger__icon::before,
.h__hamburger .h__hamburger__icon::after,
.h__hamburger {
    /* height: 32px; */
}

@media (min-width: 960px) {
    .h__hamburger {
        /* height: 25px; */
    }
}

@media (max-width: 959px) {
    .header__right {
        height: 76px;
        /*
    width: 76px;
    flex-basis: 76px;
    grid-template-columns: auto;
*/
        width: 152px;
        flex-basis: 152px;
        grid-template-columns: 1fr 1fr;
    }

    .h__hamburger {
        padding: 43px 0 0;
        font-size: 14px;
        height: 76px;
    }

    .h__hamburger__icon {
        left: 50%;
        translate: -50% 0;
    }

    .h__hamburger__icon,
    .h__hamburger__icon::before,
    .h__hamburger__icon::after {
        width: 36px;
    }
}

/*  サイドバー  */
#sidebar__flag~.sidebar_contents .sidebar_contents_box {
    -webkit-transform: translateX(101vw);
    -ms-transform: translateX(101vw);
    -moz-transform: translateX(101vw);
    -o-transform: translateX(101vw);
    transform: translateX(101vw);
    -webkit-transition-duration: .4s;
    -o-transition-duration: .4s;
    -moz-transition-duration: .4s;
    transition-duration: .4s;
}

#sidebar__flag:checked~.sidebar_contents .sidebar_contents_box {
    -webkit-transform: translateX(0vw);
    -ms-transform: translateX(0vw);
    -moz-transform: translateX(0vw);
    -o-transform: translateX(0vw);
    transform: translateX(0vw);
}

.sidebar_contents {
    position: fixed;
    left: 0;
    top: 0;
    height: 0;
    width: 100%;
    z-index: 110;
}

.sidebar_contents_box {
    position: relative;
}

.sidebar_contents_box_inner {
    height: 100vh;
    width: 100%;
    z-index: 10;
    background: hsla(var(--maincolor-hsl), 0.95);
    padding: 90px 20px 20px;
    overflow-y: auto;
    gap: 0 2vw;
    color: #fff;
}

.sidebar_menu_close {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 100px;
    right: 20px;
    cursor: pointer;
    z-index: 100;
}

@media (max-width: 959px) {
    .sidebar_contents_box_inner {
        overflow-y: scroll;
    }
}

@media (max-width: 767px) {
    .sidebar_menu_close {
        top: 20px;
    }
}

.sidebar_menu_close:hover {
    opacity: 0.7;
}

.sidebar_menu_close>span {
    border-top: 3px solid #fff;
    width: 100%;
    height: 0;
    position: absolute;
    top: 50%;
    left: 50%;
}

.sidebar_menu_close>span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.sidebar_menu_close>span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.sidebar__contents__link__wrap {
    max-width: fit-content;
    margin: 10px auto 40px;
    padding: 0 3.75%;
    font-size: 16px;
}

.sidebar__contents__link__title {
    padding-bottom: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    position: relative;
    font-family: "Zen Maru Gothic", sans-serif;
}

.sidebar__contents__link {
    margin-bottom: 40px;
    list-style: none;
}

.sidebar__contents__link>li>a,
.sidebar__contents__link>li>span {
    color: #fff;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #fff;
    padding: 10px 40px 10px 25px;
    position: relative;
}

.sidebar__contents__link>li>a:hover {
    opacity: 0.7;
}

.sidebar__contents__link a::before,
.sidebar__contents__link>li>span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

.sidebar_contents_header_logo_inner {
    text-decoration: none;
    height: 100%;
}

.sidebar_contents_header_logo a {
    color: #fff;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    display: grid;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: bold;
}

.sidebar_contents_header_logo a:hover {
    opacity: 0.7;
}

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

.sidebar_contents__mark {
    height: 100%;
}

.sidebar_contents__text {
    line-height: 1.2;
    padding-left: 15px;
}

.sidebar_contents_header_logo .sidebar_contents__en {
    font-size: 18.4px;
    display: block;
    letter-spacing: 0.05em;
}

.sidebar_contents_header_logo .sidebar_contents__jp {
    font-size: 45.5px;
    display: block;
    letter-spacing: 0.13em;
}

.sidebar__contents__link>li>a,
.sidebar__contents__link>li>span {
    white-space: nowrap;
}

@media (max-width: 959px) {
    .sidebar_contents__text {
        white-space: nowrap;
    }
}

@media (max-width: 559px) {
    .sidebar_contents_header_logo a {
        grid-template-columns: auto auto;
    }

    .sidebar_contents__mark {
        width: 9.7vw;
        height: auto;
    }

    .sidebar_contents__text {
        padding-left: 1.7vw;
    }

    .sidebar_contents_header_logo .sidebar_contents__en {
        font-size: 2.85vw;
    }

    .sidebar_contents_header_logo .sidebar_contents__jp {
        font-size: 6.4vw;
    }
}

@media (min-width: 560px) {
    .sidebar__contents__link {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 0 40px;
    }
}

@media (min-width: 960px) {
    .sidebar_contents_header_logo {
        height: 100px;
        white-space: nowrap;
        font-size: 250%;
    }

    .sidebar__contents__link {
        grid-template-columns: repeat(4, 1fr);
    }

    .sidebar_contents__text {
        white-space: nowrap;
        line-height: 1.2;
    }

    .sidebar_nav {
        display: grid;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}


.sidebar__contents__contacts {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 20px;
    font-size: 28px;
    line-height: 1;
    justify-content: center;
    margin-bottom: 40px;
}

.sidebar__contents__tel {
    display: grid;
    align-items: center;
}

.sidebar__contents__tel a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding-left: 1.7em;
    position: relative;
}

.sidebar__contents__tel a::before {
    content: "";
    position: absolute;
    width: 1.4em;
    left: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    mask: url(img/common/ico_phone.svg) 0 50% / contain no-repeat;
}

.sidebar__contents__tel__text {
    /* font-weight: bold; */
    font-size: 55%;
    display: block;
    /* text-align: center; */
}

.sidebar__contents__mail a,
.sidebar__contents__mail>span {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding-left: 2.4em;
    position: relative;
    height: 100%;
    display: grid;
    align-items: center;
    background: #fff;
    color: #91C5C0;
    border-radius: 4px;
    padding-top: 16px;
    padding-bottom: 18px;
    padding-right: 15px;
    font-size: 20px;
}

.sidebar__contents__mail a::before,
.sidebar__contents__mail>span::before {
    content: "";
    position: absolute;
    width: 1.5em;
    left: 0.4em;
    top: 0;
    bottom: 0;
    background: #91C5C0;
    mask: url(img/common/ico_calender.svg) 0 50% / contain no-repeat;
}


.sidebar__contents__time {
    max-width: 500px;
    margin: 0 auto 40px;
    letter-spacing: 0;
}

.sidebar__contents__time table {
    width: 100%;
    margin-bottom: 10px;
}

.sidebar__contents__time th,
.sidebar__contents__time td {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    line-height: 1.2;
    vertical-align: middle;
}

@media (max-width: 559px) {
    .sidebar__contents__contacts {
        grid-template-columns: auto;
    }

    .sidebar__contents__time th,
    .sidebar__contents__time td {
        padding-left: 5px;
        padding-right: 5px;
    }

    .sidebar__contents__mail {
        max-width: fit-content;
        margin: auto;
    }
}

@media (min-width: 960px) {
    .sidebar__contents__bottom {
        display: grid;
        grid-template-columns: auto auto;
        align-items: start;
        max-width: fit-content;
        margin: auto;
        gap: 0 60px;
        direction: rtl;
    }

    .sidebar__contents__contacts {
        grid-template-columns: unset;
        grid-template-rows: auto auto;
        direction: ltr;
        margin-bottom: 0;
        margin-left: auto;
    }

    .sidebar__contents__time {
        direction: ltr;
    }

    .sidebar__contents__time__notice {
        font-size: 16px;
    }
}

@supports (display: contents) {
    @media (min-width: 960px) {
        .sidebar__contents__bottom {
            justify-content: space-between;
        }

        .sidebar__contents__time {
            display: contents;
        }

        .sidebar__contents__time>* {
            direction: ltr;
        }

        .sidebar__contents__time__notice {
            grid-column: 1 / 3;
            grid-row: 2 / 3;
        }
    }
}

/*  フッター  */
.footer {
/*    background: hsla(var(--maincolor-hsl), 0.1);*/
  background: hsla(var(--maincolor-hsl), 1);
  padding: 70px 0 60px;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
}

.footer_wave {
  margin-bottom: -2px;
}
.wave-animation-container {
  position: relative;
  width: 100%;
  height: 80px;
  background-color: transparent;
  line-height: 0;
}
.waves {
  position: relative;
  width: 100%;
  height: 80px;
  /* 上のセクションと密着させる */
  vertical-align: bottom;
  /* rotate: 180deg; */
}

/* アニメーションの速度と動き（ゆったりめ） */
.parallax > use {
  animation: move-forever 20s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }

@keyframes move-forever {
  0% { transform: translate3d(-90px,0,0); }
  100% { transform: translate3d(85px,0,0); }
}

.footer_inner {
    max-width: 1345px;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 0 56px;
    justify-content: center;
    padding: 0 20px 40px;
}

.footer_logo {
    margin-bottom: 25px;
}

.footer_box_info th {
    padding-right: 60px;
    padding-bottom: 35px;
    text-align: left;
    font-weight: normal;
}

/*
.footer_box_info td {
    color: rgba(34, 24, 24, 1);
}
*/

.footer_box_info td a {
    color: inherit;
    text-decoration: none;
}

.footer_box_contacts {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 0;
    margin-bottom: 20px;
}

.footer_box_contact_tel a {
    background: #fff;
    text-decoration: none;
    padding: 7px 20px;
    display: block;
    line-height: 1.2;
    height: 85px;
}

.footer_box_contact_tel_sub {
    color: hsla(var(--maincolor-hsl), 1);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.footer_box_contact_tel_main {
    color: rgba(34, 24, 24, 1);
    padding-left: 52px;
    display: block;
    position: relative;
    font-family: yu-mincho-pr6n, sans-serif;
    letter-spacing: 0;
    font-size: 40px;
}

.footer_box_contact_tel_main::before {
    content: "";
    position: absolute;
    left: 0;
    width: 38px;
    top: 0;
    bottom: 0;
    background: url(img/common/ico_phone.svg) 50% 50% / contain no-repeat;
}

/*footer_box_icons*/
.footer_box_contacts_icon {
    display: grid;
    grid-gap: 0;
    grid-template-columns: auto auto auto;
    margin-left: auto;
}

.footer_box_rev {
    height: 100%;
}

.footer_box_rev a {
    background: hsla(var(--maincolor-hsl), 1);
    width: 85px;
    height: 85px;
    display: grid;
    font-size: 18px;
    text-align: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 5px;
    letter-spacing: 0;
}

.footer_box_rev a img {
    width: 23px;
}

.footer_box_access a {
    background: hsla(var(--maincolor-hsl), 1);
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 5px;
    letter-spacing: 0;
    display: grid;
    align-items: center;
    width: 85px;
    font-size: 18px;
    height: 85px;
}

.footer_box_access a:hover {
    opacity: 0.7;
}

.footer_box_access img {
    width: 20px;
    margin-top: 10px;
}

.footer_box_mail a {
    background: hsla(var(--maincolor-hsl), 1);
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 5px;
    letter-spacing: 0;
    display: grid;
    align-items: center;
    width: 85px;
    font-size: 18px;
    height: 85px;
}

.footer_box_mail a:hover {
    opacity: 0.7;
}

.footer_box_mail img {
    width: 26px;
    margin-top: 10px;
}

.footer_box_rev>span {
    background: hsla(var(--maincolor-hsl), 1);
    color: #fff;
    text-align: center;
    font-size: 11px;
    text-decoration: none;
    padding: 5px;
    letter-spacing: 0;
    display: grid;
    align-items: center;
    width: 85px;
    font-size: 18px;
    height: 85px;
}

.footer_box_rev img {
    width: 26px;
    margin-top: 10px;
}

.footer_box_info {
    line-height: 1.4;
}

.footer_box_time_wrap {
    margin-bottom: 20px;
}

.footer_box_time {
    width: 100%;
    letter-spacing: 0;
}

.footer_box_time th,
.footer_box_time td {
    padding: 10px 5px;
    vertical-align: middle;
}
/*

.footer_box_time thead th {
    color: #221818;
}
*/

.footer_box_time tbody th,
.footer_box_time tbody td {
    border-top: 1px solid #abafb5;
}

.footer_box_time h2 {
    text-align: center;
}

.footer_googlemap {
    width: 100%;
    height: 300px;
    position: relative;
}

.footer_googlemap iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.footer_copyright {
    text-align: center;
    display: block;
}

.footer_bnr {
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer_bnr a:hover {
    opacity: 0.7;
}

@media (min-width:560px) {
    .footer_box_time {
        margin: 0 auto 10px;
    }

    .footer_box_time th,
    .footer_box_time td {
        padding: 10px;
        padding: 15px 20px;
    }
}

@media (min-width:960px) {
    .footer {
        padding-bottom: 0;
    }

    .footer_box_time_wrap {
        margin-left: auto;
        text-align: left;
        margin-bottom: 0;
    }

    .footer_box_time {
        max-width: fit-content;
    }

    .footer_box_time thead th,
    .footer_box_time thead td {
        padding-top: 0;
    }

    .footer_bnr {
        max-width: 554px;
    }
}

@media (max-width:1239px) and (min-width: 960px) {
    .footer_box_info th {
        padding-right: 20px;
        white-space: nowrap;
    }
}

@media (max-width:1139px) and (min-width: 960px) {
    .footer_inner {
        grid-gap: 0 3vw;
    }
}

@media (max-width:959px) {
    .footer_logo {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer_box_02 {
        padding-top: 25px;
    }

    .footer_box_access a,
    .footer_box_mail a,
    .footer_box_rev>span {
        font-size: 16px;
    }
}

@media (max-width:559px) {
    .footer_logo {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer_box_info th {
        padding-right: 20px;
        white-space: nowrap;
        padding-bottom: 20px;
    }

    .footer_box_info td {
        padding-bottom: 20px;
    }

    .footer_box_time th,
    .footer_box_time td {
        padding: 15px 5px;
    }
}

@media (max-width:429px) {
    .footer_box_contact_tel_main {
        font-size: 30px;
        padding-left: 32px;
        margin-top: 5px;
    }

    .footer_box_contact_tel_main::before {
        width: 22px;
    }
}

.footer_box_time_hosoku {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.footer_box_time_notice {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.2;
}

@media (max-width:959px) {
    .footer_inner {
        display: block;
        padding: 0 5%;
        max-width: fit-content;
        margin: auto;
    }

    .footer_box_contacts {
        margin-top: 20px;
        display: block;
        text-align: center;
    }

    .footer_box_contact_tel a {
        display: inline-block;
    }

    .footer_box_contacts_icon {
        margin-top: 20px;
        justify-content: center;
    }
}

/*==========================================================================*/
/*==sp footer==*/
/*==========================================================================*/

.sp_footer_fixed {
    display: none;
}

.page_top {
    position: fixed;
    right: 2%;
    bottom: 2%;
    z-index: 50;
}

.page_top a {
    width: auto;
    display: inline-block;
    text-align: center;
    background: #fff;
    color: hsla(var(--maincolor-hsl), 1);
    text-decoration: none;
    line-height: 1.3;
    padding: 20px 10px 10px;
    border: 1px solid hsla(var(--maincolor-hsl), 1);
    border-radius: 10px;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
}

.page_top a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    border-top: 2px solid hsla(var(--maincolor-hsl), 1);
    border-left: 2px solid hsla(var(--maincolor-hsl), 1);
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
}

.page_top a:hover {
    opacity: .7;
}

@media (max-width: 959px) {
    .sp_footer_fixed {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 20;
    }

    .sp_footer_fixed_web,
    .sp_footer_fixed_tel {
        flex-grow: 1;
        flex-basis: 50%;
    }

    .sp_footer_fixed_web {
        background: hsl(200, 81%, 81%);
    }

    .sp_footer_fixed_tel {
        background: #f6b9a8;
    }

    .sp_footer_fixed_web a,
    .sp_footer_fixed_web>span,
    .sp_footer_fixed_tel a {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 20px;
    }

    .sp_footer_fixed_web a,
    .sp_footer_fixed_web>span {
        background: hsla(var(--maincolor-hsl), 1);
        color: #fff;
    }

    .sp_footer_fixed_tel a {
        background: hsla(var(--maincolor-hsl), 1);
        color: #fff;
    }

    .sp_footer_fixed_web a span,
    .sp_footer_fixed_web>span>span,
    .sp_footer_fixed_tel a span {
        display: inline-block;
        position: relative;
        padding-left: 36px;
    }

    .sp_footer_fixed_web a span::before,
    .sp_footer_fixed_web>span>span::before {
        content: "";
        width: 3vw;
        left: 0;
        height: 100%;
        position: absolute;
        -webkit-mask-image: url("./img/common/ico_pc.svg");
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: 50%;
        -webkit-mask-size: contain;
        mask-image: url("./img/common/ico_pc.svg");
        mask-repeat: no-repeat;
        mask-position: 50%;
        mask-size: contain;
        background: #fff;
        margin-top: 1px;
    }

    .sp_footer_fixed_tel a span::before {
        content: "";
        width: 3vw;
        left: 0;
        height: 100%;
        position: absolute;
        -webkit-mask-image: url("./img/common/ico_phone.svg");
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: 50%;
        -webkit-mask-size: contain;
        mask-image: url("./img/common/ico_phone.svg");
        mask-repeat: no-repeat;
        mask-position: 50%;
        mask-size: contain;
        background: #fff;
        margin-left: 6px;
        margin-top: 1px;
    }

    #page-top {
        bottom: 75px;
    }
}

@media (max-width: 559px) {

    .sp_footer_fixed_web a span::before,
    .sp_footer_fixed_web>span>span::before {
        width: 5vw;
    }

    .sp_footer_fixed_tel a span::before {
        width: 5vw;
    }

    .page,
    .single__page {
        padding: 0 0 0;
    }

    .bg_gradient01 {
        background: #DCEFF3;
    }
}

@media (max-width: 399px) {

    .sp_footer_fixed_web a span,
    .sp_footer_fixed_web>span>span,
    .sp_footer_fixed_tel a span {
        letter-spacing: 0;
        padding-left: 28px;
    }
}

.tel_box a {
    color: hsla(var(--maincolor-hsl), 1);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.4em;
    display: inline-block;
    position: relative;
    padding: 20px 0 20px 1.3em;
    line-height: 1;
    text-decoration: none;
}

.tel_box a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1.2em;
    mask: url(img/common/ico_phone.svg) 50% 50% / contain no-repeat;
    background: hsla(var(--maincolor-hsl), 1);
}

.btn01 {
    text-align: right;
    margin-top: 20px;
}

.btn01 a {
    display: inline-block;
    padding: 10px 40px 10px 15px;
    text-decoration: none;
    background: hsla(var(--maincolor-hsl), 1);
    color: #fff;
    border-radius: 40px;
    position: relative;
    transition: opacity 0.3s;
}

.btn01 a:hover {
    opacity: 0.7;
}

.btn01 a::after {
    content: "";
    position: absolute;
    right: 19px;
    top: 50%;
    margin-top: -6px;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    rotate: 45deg;
}

.btn02 {
    text-align: center;
}

.btn02 a {
    display: inline-block;
    background: hsla(var(--maincolor-hsl), 1);
    color: #fff;
    text-decoration: none;
    padding: 5px 20px;
    border-radius: 8px;
}


.lower main ul:not([class]) {
    margin-bottom: 1em;
}

.lower main ul:not([class])>li {
  padding-left: 15px;
  position: relative;
  list-style: none;
}

.lower main ul:not([class])>li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
}

.lower main ul:not([class]):last-child {
  margin-bottom: 0;
}



.list_numcircle {
    counter-reset: numcircle;
}

.list_merit>li {
    padding-left: 40px;
    margin-bottom: 20px;
    position: relative;
    counter-increment: numcircle;
    padding-top: 0;
}

.list_merit>li::before {
    content: counter(numcircle);
    position: absolute;
    left: 0;
    width: 1.5em;
    height: 1.5em;
    text-align: center;
    background: hsla(var(--maincolor-hsl)2, 1);
    color: #fff;
    border-radius: 50%;
    line-height: 1.5em;
    text-align: center;
    letter-spacing: 0;
    top: 0.2em;
}



.category__list {
    margin-bottom: 40px;
}

.category__list li a {
    color: #000;
    text-decoration: none;
    position: relative;
    display: block;
    padding: 5px 50px 5px 10px;
    border-bottom: 1px dotted #000;
}

.category__list li a::after {
    content: ">";
    position: absolute;
    right: 0;
    top: 50%;
    line-height: 1;
    text-box-trim: trim-both;
    translate: 0 -50%;
}

.category__list li a .post_date {
    display: inline-block;
    margin-right: 1em;
    color: hsla(var(--maincolor-hsl), 1);
}

@media (min-width: 960px) {
    .category__list li a {
        padding-left: 5.9em;
        padding-right: 30px;
        position: relative;
        display: block;
    }

    .category__list li a .post_date {
        position: absolute;
        left: 0;
        color: hsla(var(--maincolor-hsl), 1);
    }
}

@media (max-width: 559px) {
    .category__list li a .post_date {
        display: block;
    }
}


.pagination {
    margin: 20px 0 40px;
    display: flex;
    justify-content: center;
    gap: 20px 10px;
    flex-wrap: wrap;
}

.pagination span {
    color: hsla(var(--maincolor-hsl), 1);
}

.pagination a,
.pagination span {
    display: block;
    border: 1px solid hsla(var(--maincolor-hsl), 1);
    ;
    text-decoration: none;
    padding: 5px 15px 8px 15px;
}

.pagination .prev,
.pagination .next {
    width: auto;
}

.pagination a {
    background: hsla(var(--maincolor-hsl), 1);
    color: #fff;
}

.pagination a:hover {
    opacity: 0.7;
}

@media (max-width: 559px) {
    .pagination {
        padding-top: 60px;
        position: relative;
    }

    .pagination>.prev {
        position: absolute;
        top: 0;
        left: 0;
    }

    .pagination>.next {
        position: absolute;
        top: 0;
        right: 0;
    }
}

.footer__creditcard__wrap {
    text-align: center;
    background: hsla(var(--maincolor-hsl), 0.2);
    padding: 10px;
    line-height: 1.4;
}

.footer__creditcard {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 0 10px;
    max-width: fit-content;
    margin: 0 auto;
    padding: 10px 0;
}

.footer__creditcard>div {
    height: 100%;
    display: grid;
    align-items: center;
    background: #fff;
}

.footer__creditcard>div img {
    max-height: 100%;
    width: auto;
    height: 55px;
    object-fit: contain;
}

.footer__creditcard>.visa img {
    height: 30px;
}

.footer__creditcard>.diners {
    background: none;
}

@media (min-width: 960px) {
    .footer__creditcard__wrap {
        max-width: fit-content;
    }
}

@media (max-width: 959px) {
    .footer {
        padding-bottom: 60px;
    }

    .footer__creditcard__wrap {
        margin-bottom: 20px;
    }

    .footer__creditcard {
        justify-content: center;
    }
}

@media (max-width: 459px) {
    .footer__creditcard {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px 7%;
        justify-content: center;
    }

    .footer__creditcard>.visa {
        padding: 7px 5px;
    }

    .footer__creditcard>.visa img {
        height: 28px;
    }
}

@media (max-width: 359px) {
    .footer__creditcard {
        gap: 10px 10px;
    }
}


.openModalBox {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.openModalBox:hover {
    opacity: 0.7;
}

/*ポップアップ*/
.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .6s;
}

.popup.is-show {
    opacity: 1 !important;
    visibility: visible !important;
}

.popup.close {
    display: none !important;
}

.popup_inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px;
    box-sizing: border-box;
    z-index: 2;
    padding: 3%;
    /*  border: 1px solid rgba(90,57,50,0.30);*/
    background: #fff;
    font-family: "noto sans jp", sans-serif;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
}

@media (min-width: 960px) {
    .popup_inner_large {
        max-width: 1200px;
    }
}

@media (max-width: 959px) {
    .popup_inner {}
}

.popup_inner img {
    max-width: 100%;
    height: auto;
    width: auto\9;
    /* ie8 */
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    vertical-align: top;
}

.close_btn {
    position: absolute;
    right: 0;
    bottom: 100%;
    margin-bottom: 15px;
    width: 3%;
    padding-top: 3%;
    /*	background: url(../img/common/close.png) center bottom no-repeat;*/
    background-size: contain;
    cursor: pointer;
    display: block;
    clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
    background: #000;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.close_btn:hover {
    opacity: 0.5;
}

.popup_background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .8);
    z-index: 1;
    cursor: pointer;
}

.popup_content {
    max-height: 30vw;
    overflow: auto;
}

.popup_content h2 {
    color: #ff9201;
    line-height: 1.4;
    margin-bottom: 20px;
}

.popup_content p {
    margin-bottom: 20px;
}

.list_text>li {
    line-height: 1.5em;
    margin-bottom: 0.5em;
    padding-left: 1.5em;
    position: relative;
}

.list_text>li:last-child {
    margin-bottom: 0;
}

.list_text li .num {
    margin-left: -1.2em;
}

.list_text_title {
    color: #ff9201;
    font-size: 105%;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.popup_box_flex {
    display: flex;
    justify-content: space-between;
}

.popup_box_flex>div {
    flex-basis: 48%;
}

.popup_box_btn {
    display: block;
    padding: 20px;
    border: 1px solid #ff9201;
    background: #ff9201;
    color: #fff;
    position: relative;
    font-family: "Times New Roman", Times, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    line-height: 1.4;
}

.popup_box_btn_title {
    display: block;
    font-size: 130%;
    font-weight: bold;
}

.popup_box_btn_contents {
    display: block;
    font-size: 130%;
}

.popup_box_btn::before {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #fff transparent;
}

.popup_box_btn:hover {
    opacity: 0.7;
}


/* タブレット
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
    .popup_content {
        max-height: fit-content;
    }
}

/* モバイル
------------------------------------------*/
@media only screen and (max-width: 767px) {

    .popup_content {
        /*	height: 350px; */
        max-height: 90vh;
    }

    .popup_content h2 {
        font-size: 20px;
    }

    .popup_box_flex {
        display: block;
    }

    .popup_box_flex>div {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 450px) {
    .popup_content h2 {
        font-size: 4.5vw;
    }
}

@media only screen and (max-width: 450px) {
    .popup_box_btn {
        padding: 2vw;
    }
}
