@charset "UTF-8";

:root {
    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    --color-base: #f8f8f8;
    --color-gray: #ddd;
    --color-white: #fff;
    --color-black: #111;
    --color-theme: #f5695f;
    --color-theme-darken: #f12617;
    --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
    --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
    --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
    --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff, .2);
}

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

::-moz-selection {
    color: #fff;
    background: var(--color-theme);
}

::selection {
    color: #fff;
    background: var(--color-theme);
}

/******************** タグ ********************/

body,
html {
    font-size: 62.5%;
    color: #333;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Noto Serif JP', serif;
}

header,
main,
footer {
    width: 100%;
    font-size: 1.6rem;
}

h1,
h2,
p {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

iframe {
    margin: 0;
    padding: 0;
    width: 100%;
    aspect-ratio: 16/9;

}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (min-width:768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        /* background-color: unset */
        background-color: rgba(0, 0, 0, 0.5);
    }
}

/******************** ブロック ********************/

.firstView {
    width: 100%;
    height: auto;
    background: url('../image/01.jpg') no-repeat center center;
    background-size: cover;
    /* background-attachment: scroll; //初期値。他の要素と一緒にスクロールする。 */
    height: 50vh;
    position: relative;
}

@media screen and (min-width:768px) {
    .firstView {
        background-attachment: fixed;
        height: 75vh;
    }
}

.fbTextWrap {
    width: 100%;
    height: 100%;
    padding-right: 5rem;
    padding-left: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-flow: column;
    flex-flow: column;
    position: absolute;
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.2);
}

.commentWrap_01 {
    width: 100%;
    padding: 0 3rem;
    margin: 3rem auto;
}

@media screen and (min-width:768px) {
    .commentWrap_01 {
        width: 960px;
        padding: 0 1rem;
        margin: 6rem auto;
    }
}

.commentWrap_02 {
    width: 100%;
    padding: 5rem 3rem;
    margin: 3rem auto;
}

@media screen and (min-width:768px) {
    .commentWrap_02 {
        width: 960px;
        padding: 6rem 1rem;
        margin: 6rem auto;
    }
}


.imageArea {
    width: 100%;
    margin: 3rem auto;
}

.imageArea>img {
    width: 100%;
}

@media screen and (min-width:768px) {
    .imageArea {
        max-width: 65%;
    }
}




.bgImageWrap {
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: scroll; //初期値。他の要素と一緒にスクロールする。 */
    height: 50vh;
    position: relative;
}

@media screen and (min-width:768px) {
    .bgImageWrap {
        background-attachment: fixed;
    }
}

.bgTextWrap {
    width: 100%;
    height: 100%;
    padding-right: 5rem;
    padding-left: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-flow: column;
    flex-flow: column;
    position: absolute;
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (min-width:768px) {
    .bgTextWrap {
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-flex-flow: column;
        flex-flow: column;
        position: absolute;
        color: #FFF;
        background-color: rgba(0, 0, 0, 0.5);
    }
}



section.access>.title_catch_01 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}




.btn a {
    font-size: 1.6rem;
    color: #FFBF00;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 240px;
    margin-top: 1.6rem;
    margin-right: auto;
    margin-bottom: 3rem;
    margin-left: auto;
    line-height: 2.2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    clear: both;
    font-weight: bold;
    border: 1px solid #FFBF00;
}

.bg2 {
    background-image: url('../image/inawashiro01.jpg');
}

.bg3 {
    background-image: url('../image/kome06.jpg');
}


.tableWrap {
    margin: 2rem auto;
}

@media screen and (min-width:768px) {
    .tableWrap {
        max-width: 65%;
        margin: 2rem auto;
    }
}

table.union {
    width: 100%;
    border-collapse: collapse;
}

table.union th {
    font-weight: normal;
}

table.union td,
table.union th {
    border: 1px solid #efefef;
    padding: 1rem;
}

table.services {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.4rem;
}

table.services th {
    font-weight: normal;
    width: 15%;
}

table.services td,
table.services th {
    border: 1px solid #efefef;
    padding: 1rem;
}

table.services td {
    line-height: 1.8;
}


.textCenter {
    text-align: center;
}


/******************** 見出し ********************/

.title {
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin: 2rem auto;
    font-weight: 500;
    text-align: center;
}


.fbTextWrap>.title_catch_01 {
    font-size: 4rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1);
}

@media screen and (min-width:768px) {
    .fbTextWrap>.title_catch_01 {
        font-size: 5rem;
        text-shadow: 0 0 20px rgba(0, 0, 0, 1);
    }
}


.title_catch_01 {
    font-size: 2.4rem;
    letter-spacing: 1px;
    margin: 2rem auto;
    font-weight: 500;
    text-align: center;
}

.text_catch_01 {
    max-width: 100%;
    font-size: 1.6rem;
    line-height: 3.0rem;
    margin: 2rem auto;
    font-weight: 200;
}

.bnrArea {
    max-width: 100%;
    font-size: 1.6rem;
    line-height: 3.0rem;
    font-weight: 200;
}


@media screen and (min-width:768px) {
    .title_catch_01 {
        font-size: 3rem;
        text-align: center;
    }

    .title_catch_01,
    .text_catch_01 {
        max-width: 65%;
    }
}

.text_title_02 {
    font-weight: 500;
    max-width: 100%;
    font-size: 2.2rem;
    line-height: 3.0rem;
    margin: 2rem auto;
    text-align: center;
}

.text_catch_02 {
    font-weight: 200;
    max-width: 100%;
    font-size: 1.6rem;
    line-height: 3.0rem;
    margin: 2rem auto;
}

@media screen and (min-width:768px) {

    .title_catch_02,
    .text_catch_02 {
        max-width: 100%;
    }
}


.title_contact {
    font-size: 3rem;
    letter-spacing: 1px;
    margin: 2rem auto;
    font-weight: 500;
    text-align: center;
}

.text_contact {
    max-width: 100%;
    font-size: 1.6rem;
    line-height: 3.0rem;
    margin: 2rem auto;
    font-weight: 200;
}

@media screen and (min-width:768px) {
    .title_contact {
        text-align: center;
    }

    .title_contact,
    .text_contact {
        max-width: 65%;
    }

    .text_contact {
        text-align: center;
    }
}



/******************** カラム ********************/
.flex {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 1rem;
    margin: 1rem 0;
}

.flex.column2>li,
.flex.column3>li {
    width: 100%;
}

.flex.column2>li img {
    width: 100%;
}

.flex.column3>li img {
    width: 100%;
}

@media screen and (min-width:768px) {
    .flex {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 0rem;
        margin: 6rem 0;
    }

    .flex.column2>li {
        width: calc((100% - 3rem) / 2);
        border-right: 1px solid #efefef;
        padding: 0 3rem;
    }

    .flex.column2>li:nth-child(even) {
        border-right: none;
    }

    .flex.column3>li {
        width: calc((100% - 6rem) / 3);
    }
}

/******************** ハンバーガー ********************/

.logo {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin: 0 2rem;
}


.logo>svg {
    fill: var(--color-white);
    width: 220px;
}

@media screen and (min-width:641px) {
    .logo>svg {
        fill: var(--color-white);
        width: 280px;
    }
}


.headerMenu {
    margin: 1rem auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (min-width:641px) {
    .headerMenu {
        margin: 1rem auto 1rem;
        width: 100%;
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.headerMenu .threeLine {
    position: fixed;
    top: 16px;
    right: 12px;
    width: 32px;
    height: 24px;
    z-index: 100;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.headerMenu .threeLine span {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #ffffff;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.headerMenu .threeLine span:nth-child(1) {
    top: 0;
}

.headerMenu .threeLine span:nth-child(2) {
    top: 8px;
}

.headerMenu .threeLine span:nth-child(3) {
    top: 16px;
}

.headerMenu .threeLine.open span:nth-child(1) {
    background: #ffffff;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.headerMenu .threeLine.open span:nth-child(2),
.headerMenu .threeLine.open span:nth-child(3) {
    top: 6px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.threeLine {
    display: none;
}

.grobalNavi {
    margin: 0;
}

@media screen and (min-width: 641px) {
    .grobalNavi {
        margin: 0 2rem;
    }
}

@media screen and (min-width:768px) {
    .grobalNaviMenu>li>a {
        color: var(--color-white);
    }
}


.grobalNavi .grobalNaviMenu {
    display: flex;
    justify-content: space-between;
    font-size: 1.6rem;
}

.grobalNavi .grobalNaviMenu li {
    margin: 0 auto;
}

.grobalNavi .grobalNaviMenu li a {
    font-weight: 300;
    padding: 1.6rem;
}

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

    .grobalNavi {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        font-size: 16px;
        box-sizing: border-box;
        z-index: 1;
        padding-top: 50px;
        transition: .3s;
    }

    .grobalNavi.open {
        right: 0;
    }

    .grobalNavi .grobalNaviMenu {
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
        /*justify-content: center;*/
    }

    .grobalNavi .grobalNaviMenu li {
        width: 86%;
        padding: 15px;
        border-bottom: #525252 1px solid;
    }

    .grobalNavi .grobalNaviMenu li a {
        color: #fff;
    }

}




/******************** フッター ********************/
footer {
    color: var(--color-white);
    background-color: var(--color-black);
    line-height: 1.6;
    padding: 3rem;
}

.footerInner {
    text-align: center;
}

.logoWrap {
    text-align: center;
    margin: 0 auto 1rem;
    width: 280px;
}

.logoWrap>svg {
    fill: var(--color-white);
    display: block;
}

.mailAddressCopy {
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    line-height: 2.8rem;
    letter-spacing: 1px;
}



/******************** スライダー ********************/
.swiper {
    z-index: -10 !important;
}

.l-inner {
    position: relative;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10rem;
}


.l-section .l-inner {
    /* padding-top: 8rem; */
    padding-bottom: 8rem;
}

[class*=swiper]:focus {
    outline: none;
}

.slide-media,
.thumb-media {
    position: relative;
    overflow: hidden;
}

.slide-media img,
.thumb-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}


.swiper-button-prev,
.swiper-button-next {
    display: grid;
    place-content: center;
    width: 6.4rem;
    height: 6.4rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.swiper-button-prev::before,
.swiper-button-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 50%;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    border: solid var(--color-gray);
    border-width: 3px 3px 0 0;
}

.swiper-button-prev::after {
    margin-left: 0.4rem;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.swiper-button-next::after {
    margin-right: 0.4rem;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.swiper-button-disabled {
    pointer-events: none;
    opacity: 0;
}

.slider {
    overflow: hidden;
}

.slider .swiper {
    overflow: visible;
}

.slider .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.slider .swiper-slide {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.slider .slide {
    overflow: hidden;
    width: 36rem;
    border-radius: 4px;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.slider .slide-media {
    padding-top: 62.5%;
}

.slider .slide-media img {
    height: calc(100% + 16px);
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
}




@media only screen and (max-width: 1024px) {
    html {
        -webkit-text-size-adjust: 100%;
    }

    .l-inner {
        padding: 0 4rem;
    }

    .pc {
        display: none !important;
    }
}

@media only screen and (max-width: 599px) {
    html {
        font-size: 50%;
    }

    .pc-tab {
        display: none !important;
    }

    .slider .slide {
        width: 24rem;
    }
}

@media only screen and (min-width: 1025px) {
    .tab-sp {
        display: none !important;
    }

    .swiper-button-prev::before,
    .swiper-button-next::before {
        -webkit-transition: var(--transition);
        transition: var(--transition);
    }

    .swiper-button-prev:hover::before,
    .swiper-button-next:hover::before {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    .slider .slide {
        -webkit-transition: var(--transition);
        transition: var(--transition);
    }

    .slider .slide img {
        -webkit-transition: var(--transition);
        transition: var(--transition);
    }

    .slider .slide:hover {
        -webkit-transform: translateY(-16px);
        transform: translateY(-16px);
        -webkit-box-shadow: var(--box-shadow-hover);
        box-shadow: var(--box-shadow-hover);
    }

    .slider .slide:hover img {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .slider .swiper:hover .slide:not(:hover) {
        opacity: 0.3;
    }
}

@media only screen and (min-width: 600px) {
    .sp {
        display: none !important;
    }
}


/********** フォーム **********/

dl.class {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

dl.class dt {
    background: #f5f5f5;
    padding: 1rem;
    width: 100%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

dl.class dd {
    background: #fff;
    width: 100%;
    padding: 1rem;
    margin: 0;
}


input[type="text"] {
    height: 3.5rem;
    width: calc(100% - 12rem);
    padding: 1rem;
    margin: .5rem 0;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

@media screen and (min-width:768px) {
    input[type="text"] {
        width: calc(100% - 20rem);
    }
}


textarea {
    height: 20rem;
    width: 100%;
    padding: 1rem;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="submit"],
input[type="reset"] {
    display: inline-block;
    width: 25%;
    padding: 8px;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    border: 2px solid transparent;
}

input[type="submit"] {
    background-color: #cc0000;
}

input[type="reset"] {
    background-color: #666;
}