@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&display=swap');


:root {
  --black: #333;
  --white: #fff;
  --gray: #ccc;
  --dark: #666;
  --pink: #f2dede;
  --danger: #a94442;
}

/* reset
*********************************************************/
* {
  margin: 0;
  padding: 0;
}
*:focus, *:hover {
  outline: none;
}

div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

figure,
picture {
  display: block;
  margin: 0;
}

address {
  font-style: normal;
}

ul,
ol {
  list-style: none;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--black);
  background: var(--white);
  font-weight: 500;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}
@media screen and (max-width: 1200px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (max-width: 828px) {
  body #swipebox-close {
    right: auto;
    left: 0;
  }
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.mincho {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.standby{
  display: none !important;
}

a:hover {
  opacity: 0.6;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

/* 変更点 */
@media screen and (min-width: 829px) {
  h1,
  h2,
  h3,
  h4,
  h5 {
    line-height: 1.5;
  }
}
@media screen and (max-width: 828px) {
  h1,
  h2,
  h3,
  h4,
  h5 {
    line-height: 1.5;
  }
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br {
    display: none;
  }
}

h1 {
  font-size: clamp(2.4rem, 2.4193548387vw, 3rem);
}

h2 {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
}

h3 {
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
}

h4,
h5,
h6 {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
}

/* common
*********************************************************/
.container {
  width: 100%;
  max-width: 1240px !important;
  margin: auto;
  overflow: clip;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
.container.--of {
  overflow: visible;
}
.container .container {
  padding: 0;
  max-width: 100%;
}
/* 変更点 */
@media screen and (min-width: 500px) and (max-width: 1200px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.clear {
  clear: both !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.center-block {
    display: block;
    margin: auto;
}

.wp-pagenavi {
    padding: 20px 0;
    background: #f9f9f9;
    margin-top: 45px;
    font-size: 1.6rem;
    overflow: hidden;
}

.wp-pagenavi.var01 {
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.wp-pagenavi a,
.wp-pagenavi span {
    background: var(--white);
}

.wp-pagenavi.var01 a {
    border: none;
    color: var(--black);
    background: none;
}

.wp-pagenavi span.current {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.bg-danger {
    background-color: var(--pink);
    padding: 5px;
}

.text-danger {
    color: var(--danger);
}

.lazy {
    opacity: 0;
    position: relative;
    -webkit-transform: translate(0%, 50px);
    transform: translate(0%, 50px);
}

.lazy-show {
    opacity: 1;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all 1s;
}

.flickWrap {
    width: 100%;
}

/* 変更点 */
p,
dt,
dd,
li,
li,
th,
td {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  text-align: left;
  line-height: 2;
}

.image{
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.wp-block-image a {
    display: block;
}

@media screen and (max-width: 828px) {

    .wp-block-image img {
        display: block;
        margin: auto;
    }

    .wp-block-column {
        flex-basis: 100%;
        flex-grow: 0;
    }

    /* 変更点 */
    .flickWrap {
        overflow: auto;
        white-space: nowrap;
        padding: 10px 0;
    }

    .flickWrap::before {
        content: "※横スクロールでご覧いただけます。";
        color: #f55;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .flickWrap::-webkit-scrollbar {
        height: 5px;
    }

    .flickWrap::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .flickWrap::-webkit-scrollbar-thumb {
        background: #bcbcbc;
    }
}

/* Header
*********************************************************/

.header_block__wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
}
.header_logo{
    display: block;
    font-weight: 700;
}

.header_logo__caption{
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.header_logo__link{
    display: block;
    max-width: 320px;
    width: 100%;
    height: auto;
    font-size: 3.2rem;
}
.header_logo__link a{
    color: var(--black);
    text-decoration: none;
}
.header_logo__link img{
    display: block;
    width: 100%;
    height: auto;
}

.menu-tel,
.header_trigger {
    display: none;
}

/* 変更点 */
@media screen and (min-width:829px) and (max-width:1000px) {
  .footer_logo__link a, 
  .header_logo__link {
    max-width: 262px !important;
  }
  .header_btn {
    width: 210px !important;
  }
  .cm_time {
    font-size: 1.2rem !important;
  }
}

/* 変更点 */
@media screen and (min-width: 829px){
    .header_info{
        display: flex;
        gap: 8px 10px;
        align-items: center;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 828px) {
    .header_logo{
        max-width: 240px;
    }
    .header_info{
        display: none;
    }

    a.menu-tel {
        color: #333;
        font-size: 3rem;
        position: fixed;
        width: 40px;
        height: 40px;
        right: 60px;
        top: 10px;
        z-index: 600;
        background: rgba(255, 255, 255, 0.75);
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header_trigger,
    .header_trigger span {
        display: inline-block;
        transition: all 0.4s;
        box-sizing: border-box;
    }

    .header_trigger {
        position: fixed;
        width: 40px;
        height: 40px;
        right: 10px;
        top: 10px;
        z-index: 600;
        background: rgba(255, 255, 255, 0.75);
    }

    .header_trigger:hover {
        opacity: 1;
    }

    .header_trigger span {
        position: absolute;
        left: 5px;
        width: 30px;
        height: 2px;
        background-color: var(--black);
        border-radius: 1px;
    }

    .header_trigger span:nth-of-type(1) {
        top: 10px;
    }

    .header_trigger span:nth-of-type(2) {
        top: 48%;
    }

    .header_trigger span:nth-of-type(3) {
        bottom: 10px;
    }

    .header_trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(9px) rotate(-315deg);
        transform: translateY(9px) rotate(-315deg);
    }

    .header_trigger.active span:nth-of-type(2) {
        opacity: 0;
    }

    .header_trigger.active span:nth-of-type(3) {
        -webkit-transform: translateY(-9px) rotate(315deg);
        transform: translateY(-9px) rotate(315deg);
    }
}

/* GlobalNavi
*********************************************************/
.header_menu a {
    display: block;
    font-size: 1.6rem;
    text-decoration: none;
}

@media screen and (min-width: 829px){
    .header_menu{
        background-color: var(--white);
    }
    .header_menu.fixed {
        border-bottom: solid 1px var(--gray);
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 100;
    }
    .header_nav{
        border-top: 1px solid var(--gray);
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    .header_nav ul {
        display: table;
        max-width: 1200px;
        width: 100%;
        table-layout: fixed;
        border-left: 1px solid var(--gray);
        border-right: 1px solid var(--gray);
        margin-left: auto;
        margin-right: auto;
    }

    .header_nav li{
        display: table-cell;
        font-size: 1.6rem;
        text-align: center;
    }
    .header_nav li + li {
        border-left: solid 1px var(--gray);
    }

    .header_nav a{
        display: block;
        text-decoration: none;
        font-size: inherit;
        color: var(--black);
        padding: 20px 0;
    }

    .header_menu__btn{
        display: none !important;
    }
}
@media screen and (min-width:1000px) and (max-width:1200px) {
  .header_nav{
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 828px){
    .header_menu{
        position: fixed;
        top: 0;
        right: 0;
        translate: 100% 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, .9);
        z-index: 10;
        padding-top: 100px;
        padding-bottom: 150px;
        overflow-y: scroll;
        transition: all 300ms;
    }
    .header_menu.active{
        translate: 0 0;
    }

    .header_menu a{
        display: block;
        text-align: center;
        color: var(--white);
        padding: 1em 0;
        text-decoration: none;
        border-bottom: 1px solid var(--white);
    }
}


/* Breadcrumbs
*********************************************************/
/* 変更点 */
#breadcrumbs {
  font-size: clamp(1.3rem, 1.2096774194vw, 1.5rem);
  background: #f5f5f5;
  padding: 15px 0;
  color: var(--black);
  margin-bottom: clamp(56px, 5vw, 80px);
  line-height: 1.6;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#breadcrumbs a {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}

/* Footer
*********************************************************/
.footer {
  margin-top:200px;
  }
@media screen and (max-width: 828px) {
  .footer {
    margin-top:180px;
  }
}

/* 変更点 */
@media screen and (min-width: 829px) {
  .footer_block {
    margin-top: 64px;
  }
  .footer_contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 52px 40px;
  }
  .footer_menu {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 828px) {
  .footer_info {
    text-align: center;
  }
}
@media screen and (min-width: 829px) {
  .footer_nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 24px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .footer_nav a {
    font-size: 1.5rem;
    text-decoration: none;
    color: inherit;
    font-weight: 700;
  }
}
/* 変更点 */
@media screen and (max-width: 828px) {
  .footer_nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100vw;
    margin: 0 -20px 40px;
  }
}
@media screen and (max-width: 828px) and (min-width: 451px) {
  .footer_nav ul {
    margin-left: -40px;
    margin-right: -40px;
  }
}
@media screen and (max-width: 828px) {
  .footer_nav li {
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: 1px solid #E2E2E2;
  }
  .footer_nav li:nth-child(even) {
    border-left: 1px solid #E2E2E2;
  }
  .footer_nav li:nth-child(odd):last-child {
    width: 100%;
  }
  .footer_nav a {
    display: block;
    padding: 1em 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-align: center;
    color: inherit;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.footer_map {
  display: block;
  width: 100%;
  overflow: clip;
}
/* 変更点 */
@media screen and (min-width: 829px) {
  .footer_map {
    height: 360px;
  }
}
@media screen and (max-width: 828px) {
  .footer_map {
    height: 280px;
  }
}
@media screen and (max-width: 450px) {
  .footer_map {
    height: 200px;
  }
}
.footer_map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.footer_logo__link {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: clamp(24px, 2vw, 32px);
}

.footer_logo__link a {
  display: block;
  width: 100%;
  height: auto;
  font-size: clamp(2.4rem, 2.5806451613vw, 3.2rem);
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
}
@media screen and (min-width: 829px) {
  .footer_logo__link a {
    max-width: 320px;
  }
}
@media screen and (max-width: 828px) {
  .footer_logo__link a {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer_logo__link img {
  display: block;
  width: 100%;
  height: auto;
}

.footer_address {
  font-style: normal;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
}
@media screen and (min-width: 829px) {
  .footer_address {
    line-height: 1.7;
  }
}
@media screen and (max-width: 828px) {
  .footer_address {
    line-height: 1.6;
    word-break: keep-all;
    text-align: center;
  }
}

.footer_copy {
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--white);
  background-color: var(--gray);
  text-align: center;
  margin-top: clamp(40px, 3.5vw, 56px);
  font-size: clamp(1.2rem, 1.8115942029vw, 1.5rem);
}

/* WP default
*********************************************************/

.wp-caption {
    border: 1px solid var(--dark);
    text-align: center;
    background-color: var(--gray);
    padding-top: 4px;
    margin: 10px;
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.wp-caption img {
    margin: 0;
    padding: 0;
    border: 0 none;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    padding: 0 4px 5px;
    margin: 0;
}

/* 変更点 */
/* @media (max-width: 600px) {
    .wp-block-column + .wp-block-column {
        margin-top: 40px;
    }
} */

@media screen and (min-width: 2100px){
    #home .slick-track{
            display:flex;
    }
}

.rtt{
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-shadow: 1px 1px 5px var(--white), -1px -1px 5px var(--white);
    translate: 0 50px;
    opacity: 0;
    transition: all 300ms;
    visibility: hidden;
    scale: 1;
}
.rtt_show{
    translate: 0 0;
    opacity: 1;
    visibility: unset;
}
.rtt_show:hover{
    opacity: 1;
    scale: 1.1;
}
@media screen and (max-width:1200px) {
    .rtt{
        display: block;
    }
}

/* 以下新スタイル */

a[href*='tel:']{
    text-decoration: none;
    cursor: default;
    color: inherit;
}

@media screen and (min-width: 829px) {
    a[href*='tel:']{
        pointer-events: none;
    }
    a[href*='tel:']:hover{
        opacity: 1;
    }

    .on_mobile{
        display: none;
    }
}

@media screen and (max-width: 828px){
    .grecaptcha-badge {
        left: 0;
    }
}

@keyframes btn_bright {
    0% {
        transform: scale(2) rotate(45deg);
        opacity: 0;
    }
    20% {
        transform: scale(20) rotate(45deg);
        opacity: 0.8;
    }
    40% {
        transform: scale(30) rotate(45deg);
        opacity: 0.6;
    }
    80% {
        transform: scale(45) rotate(45deg);
        opacity: 0.3;
    }
    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@media screen and (min-width: 829px){
    .header_btn,
    .footer_btn{
        margin: 0 !important;
    }
}

/* 追加点 */
.zoom_wrap figure{
	overflow:hidden;
	box-sizing:border-box;
}
.zoom_wrap :hover{
  transition: all 0.4s;
}

.zoom_wrap:hover a{
	opacity:1;
}

.zoom_wrap a{
	display:block;
  color: initial;
}


.zoom_wrap a img:hover{
  transform: scale(1.1,1.1);
}

.zoom_wrap a img{
	transition: all 0.4s;
	display:block;
}



.cm_time{
    display: block;
    font-size: 1.4rem;
}
@media screen and (max-width: 828px){
    .cm_time{
        text-align: center;
    }
}

.cta_block{
    color: var(--white);
}

.cm_tel__txt{
    display: inline-block;
    font-size: 80%;
}
.cta_tel__time{
    display: block;
    text-align: center;
}

.cta_btn{
    color: var(--black);
    background-color: var(--white);
}

#spacer .wp-block-spacer{
  background: #C4C4C4;
}

#spacer h2{
  margin-top: 40px;
}

#spacer h3{
  margin-bottom: 16px;
}
