:root {
    /* 色 */
    --primary-color: #ff8a2b;
    --secondary-color: #663913;
    --primary-color-opacity-005: rgba(255, 138, 43, 0.05);
    --primary-color-opacity-07: rgba(255, 138, 43, 0.7);
    --primary-color-opacity-09: rgba(255, 138, 43, 0.9);
    /* --secondary-bland-color: #5F5E5E;
    --attention-color: #DB9716;
    --danger-color: red; */
    --primary-background-color: #fffcf6;
    --secondary-background-color: white;
    --primary-dashed-line-color: #919191;
    --primary-solid-line-color: #ccc;
    --term-bg-color: #c6c7c8;
    --white: white;
    --black: #1b1b1b;
    --grey: #949593;
    --red: red;

    /* グリッドデザイン */
    --inner-l: 1240px;
    --inner-m: 1000px;
    --inner-s: 816px;
    --col-12: 1000px;
    --col-11: 915px;
    --col-10: 830px;
    --col-9: 745px;
    --col-8: 660px;
    --col-7: 575px;
    --col-6: 490px;
    --col-5: 405px;
    --col-4: 320px;
    --col-3: 235px;
    --col-2: 150px;
    --col-1: 65px;
    --margin-horizontal: 20px;

    /* 縦横比（規格） */
    --aspect-ratio-16-9: 16/9;
    --aspect-ratio-4-3: 4/3;
    --aspect-ratio-3-2: 3/2;

    /* 縦横比（本HP独自） */
    --aspect-ratio-2d67-1: 2.67/1;
    --aspect-ratio-1d33-1: 1.33/1;
    --aspect-ratio-1-1: 1/1;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
    line-height: 1.15;
    overflow-x: hidden;
}

body {
    position: relative;
    font-weight: 500;
    font-family: "Noto Sans JP", "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Yu Gothic", YuGothic, Meiryo, sans-serif;
    line-height: 1.4;
    background-color: var(--white);
}

section {
    padding: 50px 5%;
    overflow-x: hidden;
}

.mainColumn section {
    padding: 0 0 96px;
}

em {
    /* color: var(--red); */
    font-style: normal;
    box-shadow: 0px -8px 0px var(--secondary-bland-color) inset;
}

strong {
    color: var(--red);
    font-weight: bold;
}

article {
    padding: 28px 14px;
    margin-bottom: 26px;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    section {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .mainColumn section {
        padding-bottom: 56px;
    }
}

.fontsize-1d5em {
    font-size: 1.5em;
}

article:nth-child(even) {
    background-color: var(--primary-background-color);
}

.articleList {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.articleList:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: transparent;
    -webkit-transform: translate(-10px, -10px) rotate(45deg);
    transform: translate(-10px, -10px) rotate(45deg);
    -webkit-transition: .3s;
    transition: .3s;
}

.articleList:hover:before {
    background-color: var(--primary-color);
}

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

.articleText {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

p {
    font-size: 1.4rem;
    line-height: 1.8;
}

a {
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--black);
}

dt, dd {
    font-size: 1.4rem;
}

a:visited {
    color: var(--black);
}

address {
    font-size: 1.4rem;
    font-style: normal;
    line-height: 1.8;
}

.titleBox-center {
    text-align: center;
}

.titleBox-left {
    text-align: left;
}

.titleBox-right {
    text-align: right;
}

.mainVisual-l {
    position: relative;
    /* padding-top: 40%;
    padding-left: 5%; */
    width: 100%;
    max-width: 1920px;
    height: 772px;
    overflow: hidden;
    /* z-index: -1; */
    margin: 0 auto;
    padding: 0 10%;
}

.mainVisual--img {
    position: absolute;
    opacity: 0;
    transition: all 1s ease-in-out;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.mainVisual-s {
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 1920px;
    font-size: 3rem;
    padding: 2em 5%;
    color: var(--white);
    background-color: var(--primary-color);
    background-image: url(../img/bg-sub-top01.png);
    /* z-index: -1; */
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .mainVisual-s {
        font-size: 2.2rem;
    }
}

.breadcrumbs {
    width: 100%;
    max-width: var(--col-12);
    margin: 0 auto;
    padding: 2% 0 3%;
    text-align: left;
}

.breadcrumbs--menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.breadcrumbs--menuItem {
    list-style-type: none;
    width: auto;
    height: auto;
}

.breadcrumbs--menuLink {
    display: block;
    padding-right: 1.5em;
    text-decoration: none;
    font-size: 1.2em;
}

.breadcrumbs--menuLink:visited,
.breadcrumbs--menuLink:active {
    color: var(--black);
}

.breadcrumbs--menuLink::after {
    content: ">";
    margin-left: 1.5em;
}

.breadcrumbs--menuItem:last-of-type .breadcrumbs--menuLink::after {
    content: "";
    margin-left: 2em;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .breadcrumbs {
        padding-left: 2%;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .breadcrumbs {
        padding: 4% 5% 5%;
    }
}

.sectionPageList {
    margin: 0 auto 1.4rem;
}

.sectionPageItem {
    list-style-type: none;
    width: auto;
    height: auto;
    border-bottom: 1px solid var(--primary-solid-line-color);
}

/* .sectionPageItem:last-of-type {
    border-bottom: none;
} */

.sectionPageLink {
    display: block;
    list-style-type: none;
    font-size: 2.2rem;
    padding: 0.5em 0.7em;
    line-height: 1.6;
}

.sectionPageLink:hover {
    text-decoration: underline;
}

.sectionPageLink:visited,
.sectionPageLink:active {
    color: var(--black);
}

.col2Layout {
    display: flex;
    column-gap: 20px;
    width: 100%;
    max-width: var(--col-12);
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
    /* position: relative; */
}

.col2Layout--googleMap {
    width: 100%;
    aspect-ratio: 16/9;
    margin-top: 40px;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .col2Layout--googleMap {
        margin-top: 24px;
        aspect-ratio: 4/3;
    }
}

.mainColumn {
    width: 100%;
    max-width: var(--col-9);
}

.subColumn {
    width: 100%;
    max-width: var(--col-3);
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .col2Layout {
        display: block;
    }

    .mainColumn {
        max-width: 100%;
        padding: 0 5%;
    }

    .subColumn {
        max-width: 100%;
        padding: 0 5%;
    }
}

.shareBtnBox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 7%;
    gap: 4px 8px;
}

.subColumn--title {
    font-size: 1.8rem;
    padding: 0.5em;
    background-color: var(--primary-color-opacity-005);
    font-weight: bold;
    line-height: 1.8;
}

.subColumn--pageList {
    margin: 0 auto 1.4rem;
}

.subColumn--pageItem {
    list-style-type: none;
    width: auto;
    height: auto;
    border-bottom: 1px solid var(--primary-solid-line-color);
}

.subColumn--pageItem:last-of-type {
    border-bottom: none;
}

.subColumn--pageLink {
    display: block;
    list-style-type: none;
    font-size: 1.4rem;
    padding: 0.5em 0.7em;
    line-height: 1.6;
}

.subColumn--pageLink:hover {
    text-decoration: underline;
}

.subColumn--pageLink:visited,
.subColumn--pageLink:active {
    color: var(--black);
}

/* cta */

.cta {
    height: 450px;
    background-image: url(../img/bg-cta.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    border-bottom: 6px solid var(--primary-color);
    display: grid;
    align-content: center;
    line-height: 1.2;
}

.cta .sectionTitle {
    margin-bottom: 8px;
}

.cta .sectionTitle::after {
    border-bottom: none;
}

.cta--address {
    line-height: 1.6;
}

.cta--tel {
    display: inline-block;
    font-size: 2.4rem;
    margin-bottom: 24px;
}

/* ページ表示時にアニメーションを無効にするとき等に使用 */
.firstTransitionInvalid {
    transition: none;
}

.backToTopBtn {
    position: fixed;
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    bottom: 5%;
    right: 5%;
    z-index: 100;
    opacity: 0;
    text-decoration: none;
    /* padding: 20px; */
    color:#fff;
    /* transition: .2s; */
}

.backToTopBtn::after {
    content: '';
    width: 13px;
    height: 13px;
    border: 0;
    border-bottom: solid 2px var(--white);
    border-right: solid 2px var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%) rotate(225deg);
}

/* .arrowBtn {
    display: block;
    position: relative;
    width: 100%;
    max-width: 450px;
    padding: 0.6em;
    font-size: 1.8rem;
    line-height: 1.8;
    color: var(--white);
    text-align: center;
    background: var(--primary-color);
    text-decoration: none;
    margin: 0 auto;
    transition: 0.2s;
}

.arrowBtn::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 5%;
    width: 7px;
    height: 7px;
    border-top: 1px solid var(--white);
    border-right: 1px solid var(--white);
    transform: translate(0, -50%) rotate(45deg);
} */

@media screen and (max-width: 599px) {
    /* max-witdhの値pxまでの幅の場合に適応される */
    .backToTopBtn {
        width: 50px;
        height: 50px;
    }

    .backToTopBtn::after {
        width: 10px;
        height: 10px;
    }
}

/* ページ */
@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .pageTitle {
        font-size: 2.2rem;
    }
}

/* セクション */

.sectionInner {
    position: relative;
    width: 100%;
    max-width: var(--inner-m);
    margin: 0 auto;
}

.sectionTitle {
    position: relative;
    color: var(--secondary-color);
    margin: 0 auto 50px;
    padding-bottom: 0.5em;
    font-weight: bold;
    font-size: 2.4rem;
    text-align: center;
}

.sectionTitle::after {
    position: absolute;
    display: block;
    content: "";
    border-bottom: solid 3px var(--primary-color);
    left: 0;
    right: 0;
    bottom: -10px;
    margin: 0 auto;
    width: 70px;
}

.sectionTextBox {
    margin-bottom: 40px;
}

.sectionListItems {
    padding-left: 24px;
}

.sectionListItem,
.sectionText {
    line-height: 1.8;
    font-size: 1.4rem;
    /* font-weight: bold; */
    /* font-weight: 550; */
}

.sectionImg {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: var(--col-8);
}

.subSectionTitle {
    margin: 0;
    padding: 0.5em 0 0.5em 1.2em;
    font-weight: bold;
    font-size: 1.8rem;
    color: var(--black);
    background: url(../img/bg-subsection-title.png) center left no-repeat;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .sectionTitle {
        margin-bottom: 32px;
    }

    .sectionTextBox {
        margin-bottom: 24px;
    }
}

.arrowBtn {
    display: block;
    position: relative;
    width: 100%;
    max-width: 450px;
    padding: 0.6em;
    font-size: 1.8rem;
    line-height: 1.8;
    color: var(--white);
    text-align: center;
    background: var(--primary-color);
    text-decoration: none;
    margin: 0 auto;
    transition: 0.3s;
}

.arrowBtn::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--white);
    border-right: 1px solid var(--white);
    transform: translate(0, -50%) rotate(45deg);
}

.arrowBtn:visited {
    color: var(--white);
}

.arrowBtn:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: var(--white);
}

.arrowBtn:hover::after {
    /* color: var(--primary-color); */
    border-top: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .arrowBtn {
        font-size: 1.4rem;
    }

}

.wideBtn {
    display: block;
    position: relative;
    width: 100%;
    max-width: var(--col-12);

    font-size: 2.8rem;
    font-weight: bold;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    line-height: 1.8;

    background: var(--primary-color);
    margin: 0 auto;
    padding: 2.5%;
}

.wideBtn:visited {
    color: var(--white);
}

.wideBtn:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: var(--white);
}

.wideBtn--smallText {
    font-size: 1.6rem;
}

.space-XL {
    width: 100%;
    height: 80px;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .wideBtn {
        font-size: 2rem;
    }

    .wideBtn--smallText {
        font-size: 1.6rem
    }
}

.lineBtn-addFriend {
    margin: 0 auto;
    text-align: center;
    width: auto;
}

/* テーブル */

.horizontalTable {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1.4rem;
}

.horizontalTable--body {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

.horizontalTable--bodyRow {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

.horizontalTable--header {
    width: 25%;
    background-color: var(--primary-color-opacity-07);
    color: var(--white);
    border: 1px solid var(--primary-color);
    text-align: center;
    font-weight: normal;
    padding: 0.7em 1em;
}

.horizontalTable--text {
    width: auto;
    /* background-color: var(--primary-color-opacity-07); */
    color: var(--black);
    border: 1px solid var(--primary-color);
    text-align: left;
    font-weight: normal;
    padding: 0.7em 1em;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .horizontalTable--header {
        padding: 0.7em 0.3em;
    }
    
    .horizontalTable--text {
        padding: 0.7em;
    }
}

/* スペース */
.spacer-small {
    height: 40px;
}

.spacer-medium {
    height: 64px;
}

.spacer-large {
    height: 80px;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .spacer-small {
        height: 24px;
    }
}

/* フェードインアニメーション */

.fadeinBefore {
    opacity: 0;
    transform: translateY(24px);
    /* opacityとtransform(表示位置)を1秒かけて変化 */
    transition: opacity 1s, transform 1s;
}

.fadeinAfter {
    opacity: 1;
    /* transition: 1s; */
    transform: translateY(0);
}

/* デバイスによる非表示 */
/* 表示非表示 */

@media screen and (min-width: 600px) {
    /* 600px以上の幅の場合に適応される */
    
    .spOnly {
        display: none;
    }
    
}

@media not screen and (min-width: 599px) and (max-width: 1024px) {
    /* 599px以上、1024px以下の幅の場合に適応される */
    .tabletOnly {
        display: none;
    }
}

@media screen and (max-width: 1025px) {
    /* 1024pxまでの幅の場合に適応される */
    .pcOnly {
        display: none;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .notSpOnly {
        display: none;
    }
}

@media screen and (min-width: 599px) and (max-width: 1024px) {
    /* 599px以上、1024px以下の幅の場合に適応される */
    .notTabletOnly {
        display: none;
    }
}

@media screen and (min-width: 1025px) {
    /* 1025px以上の幅の場合に適応される */
    .notPcOnly {
        display: none;
    }
}

/* flexレイアウト */
.flex-col2 {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* gridレイアウト */
.grid-col1,
.grid-col2,
.grid-col3 {
    display: grid;
    place-items: center;
    align-items: stretch;
    gap: 24px;
}

.grid-col2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-col3 {
    grid-template-columns: repeat(3, 1fr);
}

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

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .grid-col2,
    .grid-col3,
    .grid-col4 {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* フォントの大きさ */

.localXXLargeFont {
    font-size: 1.75em;
}

.localXLargeFont {
    font-size: 1.5em;
}

.localLargeFont {
    font-size: 1.25em;
}

.localSmallFont {
    font-size: 0.75em;
}

.localXSmallFont {
    font-size: 0.66em;
}

.localXXSmallFont {
    font-size: 0.5em;
}

/* ステップ */

.stepList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
    column-gap: 28px;
}

.stepItem {
    display: grid;
    row-gap: 12px;
    line-height: 1;
}

.stepItem--no {
    background-color: var(--primary-bland-color);
    color: var(--white);
    font-size: 1.6rem;
    padding: 12px;
}

.stepItem--title {
    font-size: 1.6rem;
    font-weight: bold;
    padding-left: 8px;
    margin-top: 4px;
}

.stepItem--text {
    font-size: 1.6rem;
    padding-left: 8px;
    /* font-weight: bold; */
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .stepList {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 24px;
    }
}

/* カード */

.card-outline {
    width: 100%;
    /* background-color: var(--background-color-lightgrey); */
    position: relative;
    border: 1px solid var(--black);
    padding: 24px;
    
    display: grid;
    row-gap: 16px;
    /* グリッドの子要素の高さを合わせる設定 */
    grid-template-rows: subgrid;
    /* グリッドの高さを合わせたい子要素の数を指定 */
    grid-row: span 2;
}

.card-outline-link {
    display: block;
}

.card-outline--imgBox {
    width: 100%;
    line-height: 0;
}

.card-outline--img {
    width: 100%;
}

.card-outline--body {
    width: 100%;
    display: grid;
    align-content: start;
    row-gap: 16px;
}

.card-outline--title {
    font-size: 2rem;
    text-align: center;
}

.card-outline--date {
    color: var(--secondary-bland-color);
    font-size: 1.3rem;
    font-weight: bold;
}

.card-outline--text {
    color: var(--font-color-black);
    font-size: 1.5rem;
    text-align: justify;
    line-height: 1.25;
}

/* 表 */

.definitionListBox {
    width: 100%;
    border: 1px solid var(--grey);
}

.accordion .definitionListBox {
    margin-top: 24px;
}

.definitionList {
    width: 100%;
    display: flex;
    /* filter: drop-shadow(0px 0px 1px var(--grey)); */
}

.definitionTerm {
    flex: 0 1 240px;
    min-width: 240px;
    font-weight: bold;
    background-color: var(--term-bg-color);
    padding: 16px;
    border-top: 1px solid var(--grey);
    border-right: 1px solid var(--grey);
}

.definitionDescription {
    flex-grow: 1;
    background-color: var(--white);
    padding: 16px;
    border-top: 1px solid var(--grey);
}

.definitionList:first-of-type .definitionTerm,
.definitionList:first-of-type .definitionDescription {
    border-top: 0;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    
    .definitionTerm {
        flex-basis: 160px;
        min-width: 160px;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .definitionList {
        display: block;
    }
}