@charset "UTF-8";
/* Scss Document */

/*================================================
 *  一般・共通設定
 ================================================*/
html, body {
    height: 100%;
    height: -webkit-fill-available;
    font-size: 62.5%;
}
body {
    font-size: 1.6rem;
    font-family: var(--baseFF);
    font-weight: 400;
    line-height: 1.8;
    -webkit-text-size-adjust: 100%;
    color: var(--baseFC);
}
main {
    display: block;
}
div, li, dt, dd, p, span {
    box-sizing: border-box;
}
* {
    box-sizing: border-box;
}
a {
    text-decoration: none;
    cursor: pointer;
}

/* テーブルのセル間のスペースを削除します */
table {
    border-collapse: collapse;
}

.header-wrap {
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}
/*================================================
 *  汎用クラス
 ================================================*/
.container {
    width: 100%;
    max-width: var(--contentWidth);
    margin-left: auto;
    margin-right: auto;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
/* clearfix */
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}
/*ヒーローボックス(画面全体に表示するやつ)*/
.hero-box {
    height: 100vh;
    display: flex;
    align-items: center;
}
.box-column {
    flex-direction: column;
}
/*文字装飾*/
.line-hight_2 {
    line-height: 2em;
}
.bg-gray {
    background: #efefef;
}
.font-large {
    font-size: 1.2em;
    font-weight: bold;
}
.font-xlarge {
    font-size: 1.5em;
    font-weight: bold;
}
.fc-red {
    color: #c60025;
}
.caption {
    padding: 1.5rem;
}
.w-break {
    display: inline-block;
}
/*画像サイズ*/
img.image {
    width: 100%;
    display: block;
}
img.image-in {
    width: auto;
    vertical-align: text-bottom;
}
.img-banner {
    max-width: 800px;
    margin: auto;
}
/* 写真ズーム */
.zoom {
    overflow: hidden;
}
.zoom img {
    display: block;
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
    margin-bottom: 0;
}
.zoom img:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
/*リンク*/
.btn-link {
    display: inline-block;
    transition: 0.3s;
}
.btn-list_link {
    padding: 6px 3rem;
}
.link-red {
    color: #c60025;
    text-decoration: underline;
}
/*枠*/
:root {
}
.section {
    padding-top: var(--sectionPadding);
    padding-bottom: var(--sectionPadding);
}
.section-top {
    padding-top: var(--sectionPadding);
}
.section-top:last-of-type {
    padding-bottom: var(--sectionPadding);
}
.section-marginTop {
    margin-top: var(--sectionPadding);
}
/*余白*/
.margin-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}
.margin-top50 {
    margin-top: 50px;
}
.margin-top30 {
    margin-top: 30px;
}
.margin-topCt {
    margin-top: var(--contentMargin);
}
.margin-botom50 {
    margin-bottom: 50px;
}
/*グーグルマップ*/
.map {
    position: relative;
    max-width: 100%;
    /*コンテンツ幅*/
    height: 0;
}
.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*================================================
 *  PC用(769px以上)
 ================================================*/
@media (min-width: 769px) {
.sp {
    display: none;
}
/* フロート */
.float-left {
    float: left;
}
.float-right {
    float: right;
}
/*map*/
.map {
    margin-left: auto;
    margin-right: auto;
    padding-top: 40%;
/*高さ*/ }
/*-----------------
   #main
  -----------------*/
/*横並び*/
.flex {
    display: flex;
    flex-wrap: wrap;
}
.flex-re {
    display: flex;
    flex-direction: row-reverse;
}
.justify-center {
    justify-content: center;
}
.justify-left {
    justify-content: flex-start;
}
.justify-right {
    justify-content: flex-end;
}
.justify-around {
    justify-content: space-around;
}
.justify-between {
    justify-content: space-between;
}
.flex-center {
    align-items: center;
}
.PCtext-center {
    text-align: center;
}
.image_sm {
    width: 450px;
    max-width: 100%;
}
}

/*================================================
*  スマホ用
================================================*/
@media screen and (max-width: 768px) {
.pc {
    display: none;
}
body {
    font-size: 1.6rem;
}
img {
    width: 100%;
    height: auto;
}
img .title {
    width: auto;
    max-width: 100%;
}
.flex {
    flex-direction: column;
}
.map {
    padding-top: 40vh;
/*高さ*/ }
/*余白*/
.sp-margin-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}
.sp-margin-top30 {
    margin-top: 30px;
}
.sp-margin-botom30 {
    margin-bottom: 30px;
}
/*ヘッダーナビ*/
.nav-fade .nav_menu_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.nav-slide {
    padding: 15px;
}
.nav-slide .nav_menu_list {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header-nav {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 100;
}
}
