@charset "utf-8";
/*================================
*
*基本設定
*
================================*/

/*================================
ここから全サイズ適用
================================*/

/*html基本設定
--------------------------------*/
html {
    overflow-y: scroll;
    scroll-behavior: smooth;
    font-size: 10px;
    font-size: 62.5%;
}
body {
    overflow: hidden;
    /*↓文字の基本設定*/
    font-family: "Noto Serif JP", "Pinyon Script", sans-serif;

    font-size: 16px;
    font-size: 1.6em;
    font-weight: 400;
    color: #333;
    letter-spacing: 0;
    text-align: justify;
    /* ↓iPhoneの文字サイズ自動調整を無効化 */
    -webkit-text-size-adjust: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    /*↓文字の字間を設定*/
    /* letter-spacing: 0.1em; */
}
p,
dl,
dt,
dd,
ol,
ul,
li {
    /*↓文字の行の高さ設定*/
    line-height: 1.8;
    /*↓文字の字間を設定*/
    /* letter-spacing: 0.1em; */
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
a {
    color: #e99200;
    /*text-decoration: underline;*/
}
a:link {
    text-decoration: none;
}
a:visited {
}
a:hover {
}
a:active {
}

/* margin-bottom
--------------------------------*/
.mb0 {
    margin-bottom: 0 !important;
}
.mb10 {
    margin-bottom: 1rem !important;
}
.mb20 {
    margin-bottom: 2rem !important;
}
.mb30 {
    margin-bottom: 3rem !important;
}
.mb40 {
    margin-bottom: 4rem !important;
}
.mb50 {
    margin-bottom: 5rem !important;
}
.mb60 {
    margin-bottom: 6rem !important;
}
.mb70 {
    margin-bottom: 7rem !important;
}
.mb80 {
    margin-bottom: 8rem !important;
}
.mb90 {
    margin-bottom: 9rem !important;
}
.mb100 {
    margin-bottom: 10rem !important;
}

/* コンテナ類、幅制御
--------------------------------*/
.inner {
    margin: 0 auto;
    max-width: calc(1200px + 14rem);
    padding-left: 7rem;
    padding-right: 7rem;
}

/* ページ内リンク位置調整
--------------------------------*/
.anchor-link {
    display: block;
    transform: translateY(-12rem);
}

/* ブロック要素、インライン要素
--------------------------------*/
.block,
.blk {
    display: block;
}
.inline,
.inl {
    display: inline;
}
.inline-block,
.inl-blk {
    display: inline-block;
}

/* ブロック要素の揃え方向
--------------------------------*/
.block-center,
.b-cen,
.blk-c {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.block-left,
.b-lef,
.blk-l {
    display: block;
    margin-right: auto;
}
.block-right,
.b-rig,
.blk-r {
    display: block;
    margin-left: auto;
}

/* 文字、インライン要素の揃え方向
--------------------------------*/
.text-center,
.t-cen,
.ta-c {
    text-align: center !important;
}
.text-left,
.t-lef,
.ta-l {
    text-align: left !important;
}
.text-right,
.t-rig,
.ta-r {
    text-align: right !important;
}
.text-justify,
.t-just,
.ta-j {
    text-align: justify !important;
}

/* フォントファミリー
--------------------------------*/
.ff-ShipporiMinchoB1 {
    font-family: "Shippori Mincho B1", serif;
}

/* 文字ウェイト
--------------------------------*/
/*Light*/
/*
.fw300 {
	font-weight: 300;
	vertical-align: baseline;
}
*/
/*Regular*/
.fw400 {
    font-weight: 400;
    vertical-align: baseline;
}
/*Medium*/
/*
.fw500 {
	font-weight: 500;
	vertical-align: baseline;
}
*/
/*SemiBold*/
/*
.fw600 {
	font-weight: 600;
	vertical-align: baseline;
}
*/
/*Bold*/
.fw700 {
    font-weight: 700;
    vertical-align: baseline;
}

/*文字カラー
--------------------------------*/
.text_color01 {
    color: #6d502c !important;
    vertical-align: baseline;
}
.text_color02 {
    color: #239037 !important;
    vertical-align: baseline;
}

/* 注釈、脚注
--------------------------------*/
.kome {
    padding-left: 1em;
    text-indent: -1em;
}

/* 未使用？
.footnote {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	gap: 0.5em;
	text-align: left;
}
.footnote_head {
	min-width: 1.5em;
}
.footnote_text {
}
*/

/*================================
ノートPC 1366px～0px
================================*/
@media (max-width: 1366px) {
}

/*================================
TABLET横 1080px～0px
================================*/
@media (max-width: 1080px) {
    /* font size設定 */
    /*--------------------------
	ベースとなるhtmlのfont sizeを10pxから8pxに変更することで、
	10px = 1remだったのが8px = 1remとなり、サイト全体の文字をサイズダウンする。
	ベースのfont sizeを変更したことで、bodyに設定した基本のfont sizeが
	1.8em = 18pxだったのが1.8em = 14.4pxになってしまうので、
	bodyのfont sizeを2em（16px相当）に変更する
	--------------------------
	※chrome対策のため、body要素のみemを使用、他の要素ではremを使用すること
	--------------------------
	※文字サイズ一覧※
	12.8px = 1.6rem
	14px = 1.75rem
	16px = 2rem
	18px = 2.25rem
	20px = 2.5rem
	24px = 3rem
	26px = 3.25rem
	28px = 3.5rem
	32px = 4rem
	--------------------------*/

    /*html基本設定
	--------------------------------*/
    html {
        /* font-size: 8px;
		font-size: 50%; */
    }
    body {
        /*16px = 2em*/
        /* font-size: 2em; */
    }
}

/*================================
TABLET縦 834px～0px
================================*/
@media (max-width: 834px) {
    /* margin-bottom
	--------------------------------*/
    .mb0-tab {
        margin-bottom: 0 !important;
    }
    .mb10-tab {
        margin-bottom: 1rem !important;
    }
    .mb20-tab {
        margin-bottom: 2rem !important;
    }
    .mb30-tab {
        margin-bottom: 3rem !important;
    }
    .mb40-tab {
        margin-bottom: 4rem !important;
    }
    .mb50-tab {
        margin-bottom: 5rem !important;
    }
    .mb60-tab {
        margin-bottom: 6rem !important;
    }
    .mb70-tab {
        margin-bottom: 7rem !important;
    }
    .mb80-tab {
        margin-bottom: 8rem !important;
    }
    .mb90-tab {
        margin-bottom: 9rem !important;
    }
    .mb100-tab {
        margin-bottom: 10rem !important;
    }

    /* コンテナ類、幅制御
	--------------------------------*/
    .inner {
        padding-left: 40px;
        padding-right: 40px;
    }

    /* ページ内リンク位置調整
	--------------------------------*/
    .anchor-link {
    }

    /* 文字、インライン要素の揃え方向
	--------------------------------*/
    .text-center-tab,
    .t-cen-tab,
    .ta-c-tab {
        text-align: center !important;
    }
    .text-left-tab,
    .t-lef-tab,
    .ta-l-tab {
        text-align: left !important;
    }
    .text-right-tab,
    .t-rig-tab,
    .ta-r-tab {
        text-align: right !important;
    }
    .text-justify-tab,
    .t-just-tab,
    .ta-j-tab {
        text-align: justify !important;
    }
}

/*================================
SP表示 667px～0px
================================*/
@media (max-width: 667px) {
    /* margin-bottom
	--------------------------------*/
    .mb0-sp {
        margin-bottom: 0 !important;
    }
    .mb10-sp {
        margin-bottom: 1rem !important;
    }
    .mb20-sp {
        margin-bottom: 2rem !important;
    }
    .mb30-sp {
        margin-bottom: 3rem !important;
    }
    .mb40-sp {
        margin-bottom: 4rem !important;
    }
    .mb50-sp {
        margin-bottom: 5rem !important;
    }
    .mb60-sp {
        margin-bottom: 6rem !important;
    }
    .mb70-sp {
        margin-bottom: 7rem !important;
    }
    .mb80-sp {
        margin-bottom: 8rem !important;
    }
    .mb90-sp {
        margin-bottom: 9rem !important;
    }
    .mb100-sp {
        margin-bottom: 10rem !important;
    }

    /* コンテナ類、幅制御
	--------------------------------*/
    .inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* 文字、インライン要素の揃え方向
	--------------------------------*/
    .text-center-sp,
    .t-cen-sp,
    .ta-c-sp {
        text-align: center !important;
    }
    .text-left-sp,
    .t-lef-sp,
    .ta-l-sp {
        text-align: left !important;
    }
    .text-right-sp,
    .t-rig-sp,
    .ta-r-sp {
        text-align: right !important;
    }
    .text-justify-sp,
    .t-just-sp,
    .ta-j-sp {
        text-align: justify !important;
    }
}

/*================================
*
*共通パーツ（ヘッダー、フッターなど）
*
================================*/

/*================================
ここから全サイズ適用
================================*/

/* メインコンテンツ
--------------------------------*/
.main {
    background: url(../img/pattern01.jpg) top center;
}

.section {
    padding-top: 7rem;
    padding-bottom: 7rem;
}
.section .inner {
}

/* 背景
--------------------------------*/
.bg01 {
    /*background: #55a637;*/
}
.pattern01 {
    background: url(../img/pattern01.jpg) top center;
}
.pattern02 {
    background: url(../img/pattern02.jpg) top center;
}

/*背景（ひまわり模様）*/
.sunflower_bg {
    background: url(../img/greeting_bg.jpg) top center;
}

/*背景（モルタル模様）*/
.mortar_bg {
    background: url(../../img/merit_bg.jpg) top center;
}

/* タイトル
--------------------------------*/
.section_title {
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    color: #239037;
}
.section_title {
    font-size: 3rem;
    font-family: "Noto Serif JP";
    color: #46372d;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    position: relative;
}
.section_title_eng {
    display: block;
    font-size: 7rem;
    font-family: "Mrs Saint Delafield";
    color: #cdc7c3;
    font-weight: 400;
}
.section_title_border {
    max-width: 840px;
    width: 96%;
    margin: 0 auto;
    padding-bottom: 20px;
}
.section_title_border::before {
    content: "";
    background-color: #eabb17;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    max-width: 420px;
    height: 4px;
}
.section_title_border::after {
    content: "";
    background-color: #574940;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    max-width: 420px;
    height: 4px;
}

/*右側にひまわり*/
.op_logo_wrap {
    position: relative;
    display: inline-block;
}
.op_logo {
    position: absolute;
    /*right: -105px;*/
    left: 100%;
    bottom: -10px;
}

/* リンク
--------------------------------*/
.link-btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 20px 30px;
    width: 100%;
    max-width: 500px;
    background: #fff;
    border: 1px solid #e2d2c2;
    font-size: 2.2rem;
    text-align: center;
    text-decoration: none;
    color: #846849;
    transition: all 0.2s 0s ease;
    top: 0;
}
.link-btn::after {
    position: absolute;
    z-index: 1;
    content: "";
    right: 0;
    bottom: 0;
    border-bottom: 20px solid #bca58e;
    border-left: 20px solid transparent;
}
.link-btn:hover {
    opacity: 0.9;
    top: -4px;
    background: #e2d2c2;
}
.link-btn:hover::after {
}

/* 医院リンクボタン
--------------------------------*/
.link-btn_box {
    position: relative;
    z-index: 1;
    translate: 0 -50%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-flow: row wrap;
    gap: 20px;
}
.link-btn_box .link-btn {
    width: calc(100% / 2 - 10px);
}

/* flex box
--------------------------------*/
/*
.flex01 {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-flow: row wrap;
	gap: 2rem 4rem;
}
.flex01_pic {
	width: 40%;
}
.flex01_article {
	width: calc(100% - (40% + 4rem));
}
*/

/* ヘッダー
--------------------------------*/
.seo-text {
    overflow: hidden;
    width: 0;
    height: 0;
}
.header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
}
.header .inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: row wrap;
    max-width: 100%;
    padding: 0;
}

/* お問い合わせ
--------------------------------*/
.hd_contact {
    width: 40rem;
    padding: 0.85rem 3rem;
    background: #e99200;
}
.hd_text {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1;
    color: #fff;
}
.hd_tel {
    margin-bottom: 16px;
}
.hd_mail {
    width: fit-content;
    padding: 2px 0 4px 2em;
    background: url(../img/mail_icon.png) left center/30px auto no-repeat;
    font-size: 2rem;
    text-align: center;
    line-height: 1;
}
.hd_mail a {
    text-decoration: none;
    color: #fff;
}

/* グローバルナビ
--------------------------------*/
.gnav {
    width: calc(100% - 40rem);
    background: rgba(255, 255, 255, 0.8);
}
.gnav_content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* padding: 1.4rem 4rem; */
}

.menu_lists {
    /*flex*/
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /*other*/
    height: 6rem;
    margin: 0;
}
.menu_item {
    position: relative;
    z-index: 1;
    height: 25px;
    padding: 0 4rem;
    border-width: 2px;
    border-color: #c0c4b2;
}
.menu_item:not(:last-child) {
    /* border-right: 1px solid #bca58e; */
}
.menu_item:first-child {
    border-left: none;
}
.menu_item:last-child {
    border-right: none;
}

.menu_link {
    display: block;
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: auto;
    /*
	padding: 0 1rem 0.6rem;
	border-bottom: 1px solid #93c74c;
	*/
}
.menu_link_jp {
    transition: color 0.6s;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.5;
    color: #333;
}
.menu_link_jp:hover {
    color: #e99200;
}
/*no link*/
.menu_link.-nolink {
    opacity: 0.4 !important;
    margin-top: 0 !important;
}
.menu_link.-nolink:hover {
    top: 0;
}

/* メインビジュアル
--------------------------------*/
.mainvisual {
    background: #f5f5f5;
    background: url(../img/pattern01.jpg) top center;
}
.mainvisual .inner {
    position: relative;
    z-index: 1;
    /* max-width: 1400px; */
    padding: 0;
    max-width: 100%;
    min-height: 800px;
    background: url(../../img/mv_03.jpg) center;
    background-size: cover;
    max-width: 100%;
}
.mv_cover {
    /*flex*/
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: stretch;
    /*other*/
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50%;
    width: 100%;
    max-width: 1400px;
    height: 100%;
    padding: 0 40px 10rem;
}
.mv_logo {
    position: absolute;
    left: 20px;
    top: 70px;
    /* width: 30rem; */
}
.mv_catch {
    margin-top: auto;
    margin-bottom: -30px;
    color: #ffffff;
    font-size: 2.8rem;
    line-height: 1.6;
    text-align: left;
    text-shadow: 0 0 15px #46372d, -0 0 15px #46372d, 0 0 15px #46372d,
        -0 0 15px #46372d, 0 0px 7px #46372d, 0px 0 7px #46372d,
        0 0 15px #46372d, 0 0 15px #46372d;
}
.mv_info {
}
.mv_info_text {
    width: fit-content;
    margin-left: auto;
    color: #46372d;
    font-size: 2rem;
    line-height: 1.7;
    text-shadow: 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff,
        0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff,
        0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff,
        0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff,
        0 0 8px #fff, 0 0 8px #fff;
}

/* フッター
--------------------------------*/
/*未使用？
.google-map {
}
.google-map iframe {
	display: block;
	width: 100%;
	height: 430px;
}

.local {
	background: url(../img/pattern02.jpg) top center;
}
.local .inner {
	padding-top: 40px;
	padding-bottom: 40px;
}
.local_text {
}
*/

.footer {
    background: url(../img/pattern01.jpg) top center;
    letter-spacing: 0;
}
.footer .inner {
}

/*ロゴ*/
.ft_logo {
    margin-bottom: 30px;
    line-height: 1;
}
.ft_logo img {
    display: inline-block;
    /* max-width: 240px; */
}

/*お問い合わせ*/
.ft_tel {
    margin-bottom: 20px;
    line-height: 1;
}
.ft_tel img {
    display: inline-block;
}

/*地域情報*/
.ft_areainfo_text {
    letter-spacing: 0;
}

/*未使用？
.ft_info {
	display: inline-block;
}
.ft_text {
	text-align: left;
}
*/

/*コピーライト*/
.copyright {
    padding: 30px 60px;
    background: #6d502c;
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.2;
    color: #fff;
}

/*ページトップ*/
.pagetop {
    position: fixed;
    z-index: 1;
    cursor: pointer;
    background: url(../img/totop.png) top center/contain no-repeat;
    bottom: 30px;
    right: 20px;
    width: 80px;
    height: 80px;
}
.pagetop:hover {
    opacity: 0.9;
}

/*================================
ノートPC 1366px～0px
================================*/
@media (max-width: 1366px) {
    /* メインビジュアル
	--------------------------------*/
    .mainvisual .inner {
        min-height: 700px;
    }
}

/*================================
TABLET横 1080px～0px
================================*/
@media (max-width: 1080px) {
    /* 共通
	--------------------------------*/
    .link-btn {
        padding: 10px 20px;
        font-size: 2rem;
    }

    /* ヘッダー
	--------------------------------*/
    .header .inner {
        justify-content: flex-end;
    }

    /* お問い合わせ
	--------------------------------*/
    .hd_contact {
        width: fit-content;
    }

    /* グローバルナビ
	--------------------------------*/
    .gnav {
        width: fit-content;
    }
    .menu_link {
        padding-top: 0px;
    }
    .menu_item {
        padding: 0 2.4rem;
    }

    /* メインビジュアル
	--------------------------------*/
    .mainvisual .inner {
        min-height: 580px;
    }
    .mv_logo {
        top: 40px;
    }
}

/*================================
TABLET縦 834px～0px
================================*/
@media (max-width: 834px) {
    /* メインコンテンツ
	--------------------------------*/
    .main {
    }
    .section {
    }
    .section .inner {
    }

    /* タイトル
	--------------------------------*/
    .section_title {
    }

    /* リンク
	--------------------------------*/
    .link-btn {
    }
    .link-btn::after {
    }

    /* 医院リンクボタン
	--------------------------------*/
    .link-btn_box {
        padding: 0 20px;
    }
    .link-btn_box .link-btn {
    }

    /* ヘッダー
	--------------------------------*/
    .seo-text {
    }
    .header {
    }
    .header .inner {
        justify-content: flex-start;
        padding: 10px 70px 10px 20px;
    }
    .hd_logo {
        max-width: 300px;
    }
    .hd_contact {
    }
    .hd_text {
    }
    .hd_tel {
    }
    .hd_mail {
    }
    .hd_mail a {
    }

    /* メインビジュアル
	--------------------------------*/
    .mainvisual {
    }
    .mainvisual .inner {
        min-height: 500px;
    }
    .mv_cover {
        padding-bottom: 40px;
    }
    .mv_catch {
        margin-bottom: 0;
    }
    .mv_info {
    }
    .mv_info_text {
    }

    /* フッター
	--------------------------------*/
    /*未使用？
	.google-map {
	}
	.google-map iframe {
	}
	.local {
	}
	.local .inner {
	}
	.local_text {
	}
	*/

    .footer {
    }
    .footer .inner {
    }

    /*ロゴ*/
    .ft_logo {
    }
    .ft_logo img {
    }

    /*お問い合わせ*/
    .ft_tel {
    }
    .ft_tel img {
    }

    /*未使用？
	.ft_info {
	}
	.ft_text {
	}
	*/

    /*コピーライト*/
    .copyright {
        padding: 10px 20px 60px;
    }

    /*ページトップ*/
    .pagetop {
        bottom: 110px;
        width: 60px;
        height: 60px;
    }

    /* 画面下固定タブ
	--------------------------------*/
    /*採用情報以外の画面下固定タブ*/
    .bottom_fix {
        display: none;
    }

    /*採用情報用の画面下固定タブ*/
    .recruit_bottom_fix {
        /*flex*/
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        /*others*/
        position: fixed;
        z-index: 8;
        left: 0;
        bottom: 0;
        width: 100%;
        border-top: 1px solid #fff;
    }
    .recruit_bottom_fix_tab {
        display: grid;
        align-items: center;
    }
    .recruit_bottom_fix_link {
        display: block;
        padding: 6px 4px;
        font-size: clamp(14px, 1.8rem, 20px);
        text-align: center;
        line-height: 1;
        color: #fff;
    }

    /*tel*/
    .recruit_bottom_fix_tab.-tel {
        width: 60%;
        background: #786043;
    }
    .recruit_bottom_fix_tab.-tel .recruit_bottom_fix_text {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 4px 0 4px;
    }

    /*email*/
    .recruit_bottom_fix_tab.-email {
        width: 60%;
        background: #e99200;
    }
    .recruit_bottom_fix_tab.-email .recruit_bottom_fix_text {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 4px 0 4px;
    }

    /*nolink
    .recruit_bottom_fix_tab.-nolink {
        background: #ccc;
    }
	*/
}

/*================================
SP表示 667px～0px
================================*/
@media (max-width: 667px) {
    /* メインコンテンツ
	--------------------------------*/
    .main {
    }
    .section {
    }
    .section .inner {
    }

    /* タイトル
	--------------------------------*/
    .section_title {
        font-size: 2rem;
    }

    /*右側にひまわり*/
    .op_logo {
        position: static; /*relative*/
        /*
		right: 0;
		bottom: 0;
		*/
        margin: 0 auto;
    }

    /* リンク
	--------------------------------*/
    .link-btn {
        font-size: 1.6rem;
    }
    .link-btn::after {
    }

    /* 医院リンクボタン
	--------------------------------*/
    .link-btn_box {
        translate: none;
        padding: 30px 20px 0;
    }
    .link-btn_box .link-btn {
        width: 100%;
    }

    /* ヘッダー
	--------------------------------*/
    .seo-text {
    }
    .header {
    }
    .header .inner {
        padding: 0px;
    }
    .hd_logo {
        /* max-width: 100px; */
    }
    .hd_contact {
    }
    .hd_text {
    }
    .hd_tel {
    }
    .hd_mail {
    }
    .hd_mail a {
    }

    /* メインビジュアル
	--------------------------------*/
    .mainvisual {
    }
    .mainvisual .inner {
        min-height: auto;
        background: none;
        padding-top: 80px;
    }
    .mv_cover {
        align-items: center;
        position: static;
        translate: none;
        padding: 10px;
        /*background: #fffffa;*/
        background: url(../img/pattern01.jpg) top center;
    }
    .mv_catch {
        color: #46372d;
        font-size: 1.8rem;
        letter-spacing: 0;
        text-shadow: none;
    }
    .mv_info {
    }
    .mv_info_text {
    }

    /* フッター
	--------------------------------*/
    .google-map iframe {
        height: 360px;
    }
    .local .inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .local_text {
        font-size: 1.7rem;
        line-height: 1.4;
    }
    .footer .inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .ft_logo img {
        /* width: 200px; */
    }
    .ft_text {
        font-size: 1.5rem;
        line-height: 1.8;
    }
    .copyright {
        font-size: 1.2rem;
    }
    .pagetop {
        width: 40px;
        height: 39px;
    }
}

/*================================
0～374px
================================*/
@media (max-width: 374px) {
    .recruit_bottom_fix_tab.-rsv .recruit_bottom_fix_text,
    .recruit_bottom_fix_tab.-tel .recruit_bottom_fix_text {
        font-size: 16px;
    }
    .recruit_bottom_fix_link {
    }
}
