@charset "utf-8";

@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,500,600,700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,600,700,900&display=swap&subset=japanese");
@import url('https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&family=Shippori+Mincho+B1&family=Zen+Old+Mincho&display=swap');

/* 要素 フォントサイズ・マージン・パディングをリセット */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-weight: normal;
    vertical-align: baseline;
    background: transparent;
}

/* 行の高=フォントサイズ */
body {
    line-height: 1;
}

/* 新規追加要素をブロック要素化 */
article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section {
    display: block;
}

/* ulのマーカー非表示 */
ol,
ul {
    list-style: none;
}

/* 引用符の非表示 */
blockquote,
q {
    quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    outline: none;
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

/* テキスト 打ち消し線 */
del {
    text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
    vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:after {
    overflow: hidden;
    visibility: hidden;
    height: 0;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
}

br {
    line-height: inherit;
}

/*【共通】パーツ
----------------------------------------------------------------*/
/* リンク */
a,
a * {
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    font-family: inherit;
    -webkit-backface-visibility: hidden;
    /* 追加 */
    backface-visibility: hidden;
    /* 追加 */
}

a:hover,
a:active {
    text-decoration: none;
    opacity: 0.8;
    filter: alpha(opacity=80);
    transition: 0.3s ease-in-out;
    color: inherit;
}

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

/* 表示切り替え */
.pc-display {
    display: none;
}
.pc-none {
    display: block;
}
.sp-display {
    display: block;
}
.sp-none {
    display: none;
}
.tb-display {
    display: none;
}
.pc-only-display{
    display: none;
}
.pc-only-none{
    display: block;
}
@media screen and (min-width: 768px) {
    .sp-display {
        display: none;
    }
    .sp-none {
        display: block;
    }
    .tb-display {
        display: block;
    }
}
@media screen and (min-width: 1024px){
    .pc-display {
        display: block;
    }
    .pc-none {
        display: none;
    }
    .tb-display {
        display: none;
    }
}
@media screen and (min-width: 1300px){
    .pc-only-display{
        display: block;
    }
    .pc-only-none{
        display: none;
    }
}

/* 配置 */
.f_left {
    float: left;
    text-align: center;
    line-height: 2;
}

.f_right {
    float: right;
    text-align: center;
    line-height: 2;
}

.leftOn {
    text-align: left;
}

.rightOn {
    text-align: right;
}

.centerOn {
    text-align: center;
}

/*横スクロールバー出ないように*/
body {
    overflow-x: hidden;
}

/* 余白 */
.mb0{margin-bottom: 0;}
.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: calc(30px * 0.8);}
.mb40{margin-bottom: calc(40px * 0.7);}
.mb50{margin-bottom: calc(50px * 0.6);}
.mb60{margin-bottom: calc(60px * 0.6);}
.mb70{margin-bottom: calc(70px * 0.6);}
.mb80{margin-bottom: calc(80px * 0.6);}
.mb90{margin-bottom: calc(90px * 0.6);}
.mb100{margin-bottom: calc(100px * 0.6);}
.mb120{margin-bottom: calc(120px * 0.6);}
.mb140{margin-bottom: calc(140px * 0.6);}

@media screen and (min-width: 768px){
    .mb30{margin-bottom: 30px;}
    .mb40{margin-bottom: 40px;}
    .mb50{margin-bottom: 50px;}
    .mb60{margin-bottom: 60px;}
    .mb70{margin-bottom: 70px;}
    .mb80{margin-bottom: 80px;}
    .mb90{margin-bottom: 90px;}
    .mb100{margin-bottom: 100px;}
    .mb120{margin-bottom: 120px;}
    .mb140{margin-bottom: 140px;}
    .mr0{margin-right: 0;}
    .mr20{margin-right: 20px;}
}

/*  配置  */
.flex-nml {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.flex-btw {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-cnt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-around {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: no-wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.row-reverse {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.items-top {
    -webkit-align-items: start;
    align-items: flex-start;
}

.items-center {
    -webkit-align-items: center;
    align-items: center;
}

.items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.y-center {
    top: 50%;
    transform: translateY(-50%);
}

.x-center {
    left: 50%;
    transform: translateX(-50%);
}

/*枠*/
.contents-inr {
    max-width: 1230px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/*100％の白背景*/
.white-inr {
    width: 100%;
    background-color: #fff;
    padding: 25px 15px;
}

@media screen and (min-width: 768px) {
    .white-inr {
        padding: 50px 15px;
    }
}
/*1000pxの枠*/
.inr-1000 {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
}

/*テキスト*/
html {
    font-size: 62.5%;
}

body {
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.6rem;
    line-height: 1.875;
    color: #222;
    background-color: #fff;
}

.serif {
    font-family: "Noto Serif JP";
}

span {
    font-weight: inherit;
}

.ls25 {
    letter-spacing: 0.025em;
}

.ls50 {
    letter-spacing: 0.05em;
}

.ls75 {
    letter-spacing: 0.075em;
}

.ls100 {
    letter-spacing: 0.1em;
}

.inline-block {
    display: inline-block;
}

.inline {
    display: inline;
}

.txt-bold {
    font-weight: 700;
}

strong {
    font-weight: 700;
}

.map {
    width: 100%;
    height: 100%;
}

body p {
    font-size: 1.6rem;
    line-height: 1.785;
}
body a p {
    font-size: 1.6rem;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.66;
}
@media screen and (min-width: 768px) {
    body p {
        font-size: 1.8rem;
        line-height: 1.875;
    }
    body a p {
        font-size: 1.8rem;
    }
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.66;
    }
}


/*ブログ装飾*/
.detailtxt strong {
    font-weight: 700;
}

.detailtxt a {
    text-decoration: underline;
    color: #0033ff;
}

@media screen and (max-width: 767px) {
    .detailtxt {
        font-size: 1.4rem;
    }
}

.footer {
    position: relative;
}

/*チャットボット*/
#chatbot-btn {
    max-width: 230px;
    max-height: 180px;
    bottom: 80px !important;
    z-index: 99 !important;
}

@media screen and (max-width: 767px) {
    #chatbot-btn {
        bottom: 10px !important;
    }
}

@media screen and (max-width:767px) {
  .privacyformError{
    top:0px !important;
    transform:
    translateY(-30px);
    left:0 !important;
    margin-top:0 !important;
  }
}

