@charset "UTF-8";
@import url("https://fonts.googleapis.com/earlyaccess/notosansjapanese.css");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:300,500,600,700,900");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&display=swap");
/* サイトの基本のカラー */
/* メニュー別にカラーが決まってる場合 */
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/*共通の処理*/
/* レスポンシブサイト非表示 */
/* 非表示設定 */
/* PCのみ表示 */
@media screen and (max-width: 1024px) {
    .pc {
        display: none !important;
    }
}

/* PCとタブレット(iPad pro12.9)のみ表示 */
@media screen and (max-width: 1023px) {
    .pc-pro {
        display: none !important;
    }
}

/* PCとタブレットのみ表示 */
@media screen and (max-width: 599px) {
    .pc-tb {
        display: none !important;
    }
}

/* タブレットのみ表示、PCとSPは非表示 */
@media screen and (max-width: 599px), (min-width: 1025px) {
    .tb {
        display: none !important;
    }
}

/* タブレットとSPのみ表示 */
@media screen and (min-width: 1025px) {
    .tb-sp {
        display: none !important;
    }
}

/* タブレット(iPad pro11以下)とSPのみ表示 */
@media screen and (min-width: 1024px) {
    .tb11-sp {
        display: none !important;
    }
}

/* SPのみ表示 */
@media screen and (min-width: 600px) {
    .sp {
        display: none !important;
    }
}

@media screen and (min-width: 1025px) {
    a[href^="tel:"] {
        color: #111;
        pointer-events: none;
    }
}

/* flex-wrap: wrap; */
/* justify-content: center; 左右中央*/
/* justify-content: flex-start;*/
/* justify-content: flex-end;*/
/* justify-content: space-between; */
/* justify-content: space-around; */
/* align-items: center; 上下中央*/
/* align-items: flex-start;*/
/* flex-direction: column; 縦方向*/
/* flex-direction: column-reverse; 反縦方向*/
/* flex-direction: row-reverse;*/
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
    font-size: 62.5%;
}

/*body設定*/
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
    color: #000;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #fff;
    line-height: 1.7;
    font-size: 1.6rem;
    overflow-x: hidden;
    text-rendering: optimizeSpeed;
    /*任意でフォントサイズを指定*/
}

@media screen and (min-width: 1025px) {
    body {
        font-weight: 500;
    }
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    body {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 599px) {
    body {
        font-size: 1.4rem;
    }
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
    body {
        font-family: Meiryo, sans-serif;
    }
}

/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
    list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
    quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、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;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
    vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
    -webkit-backface-visibility: hidden;
    width: auto;
    max-width: 100%;
    height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role="button"],
input:not([type="range"]),
label,
select,
summary,
textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

@page {
    size: A4;
    margin: 5mm;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
a:not([class]) {
    color: #2ba36e;
}

a:not([class]):hover {
    color: #010101;
}

a:not([class]):active {
    color: #010101;
}

/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
    display: none !important;
}

[disabled] {
    cursor: not-allowed;
}

:focus:not(:focus-visible) {
    outline: none;
}

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

/*clearfix*/
/* For modern browsers */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* For IE 6/7 only */
.clearfix {
    *zoom: 1;
}

/*禁則処理の追加*/
p,
li,
dt,
dd,
th,
td,
pre {
    -ms-line-break: strict;
    line-break: strict;
    -ms-word-break: break-strict;
    word-break: break-strict;
}

/** Selection */
::-moz-selection {
    background-color: #b3d4fc;
    /* Change as appropriate */
    color: #000;
    /* Change as appropriate */
    text-shadow: none;
}
::-moz-selection,
::selection {
    background-color: #b3d4fc;
    /* Change as appropriate */
    color: #000;
    /* Change as appropriate */
    text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
    * {
        -webkit-animation-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
                animation-iteration-count: 1 !important;
        -webkit-transition-duration: 0.01ms !important;
             -o-transition-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/*マージン*/
.mlr-05 {
    margin-right: -0.5em;
    margin-left: -0.5em;
}

.mlr-03 {
    margin-right: -0.3em;
    margin-left: -0.3em;
}

.mlr-01 {
    margin-right: -0.1em;
    margin-left: -0.1em;
}

.mb00 {
    margin-bottom: 0px !important;
}

@media screen and (max-width: 599px) {
    .mb00 {
        margin-bottom: 0px !important;
    }
}

.mb05 {
    margin-bottom: 5px !important;
}

@media screen and (max-width: 599px) {
    .mb05 {
        margin-bottom: 5px !important;
    }
}

.mb10 {
    margin-bottom: 10px !important;
}

@media screen and (max-width: 599px) {
    .mb10 {
        margin-bottom: 5px !important;
    }
}

.mb15 {
    margin-bottom: 15px !important;
}

@media screen and (max-width: 599px) {
    .mb15 {
        margin-bottom: 10px !important;
    }
}

.mb20 {
    margin-bottom: 20px !important;
}

@media screen and (max-width: 599px) {
    .mb20 {
        margin-bottom: 10px !important;
    }
}

.mb30 {
    margin-bottom: 30px !important;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .mb30 {
        margin-bottom: 20px !important;
    }
}

@media screen and (max-width: 599px) {
    .mb30 {
        margin-bottom: 15px !important;
    }
}

.mb40 {
    margin-bottom: 40px !important;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .mb40 {
        margin-bottom: 30px !important;
    }
}

@media screen and (max-width: 599px) {
    .mb40 {
        margin-bottom: 20px !important;
    }
}

.mb50 {
    margin-bottom: 50px !important;
}

@media screen and (max-width: 599px) {
    .mb50 {
        margin-bottom: 25px !important;
    }
}

.mb70 {
    margin-bottom: 70px !important;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .mb70 {
        margin-bottom: 40px !important;
    }
}

@media screen and (max-width: 599px) {
    .mb70 {
        margin-bottom: 30px !important;
    }
}

.mb80 {
    margin-bottom: 80px !important;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .mb80 {
        margin-bottom: 40px !important;
    }
}

@media screen and (max-width: 599px) {
    .mb80 {
        margin-bottom: 30px !important;
    }
}

@media print {
    .sp {
        display: none !important;
    }
    body {
        width: 1140px;
        -webkit-print-color-adjust: exact;
    }
    /*　------- ↓その他参考例　---------
    .header {
        position: relative !important; //ヘッダー固定fixedを解除
    }
    .header .header-inner {
        width: 100% !important; //サイト幅を解除
    }
    .page-title {
        margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
        width: 100% !important; //サイト幅を解除
    }
    .breadcrumbs-list {
        width: 100% !important; //サイト幅を解除
    }
    .global-nav {
        width: 100%; //サイト幅を解除
    }
    ------- ↑その他参考　---------*/
}

@page {
    size: A4;
    margin: 12.7mm 9.7mm;
}

.header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    z-index: 999;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .header-wrap {
        height: 80px;
    }
}

@media screen and (max-width: 599px) {
    .header-wrap {
        height: 60px;
        background: #FFF;
    }
}

.header-wrap.bg {
    background: rgba(255, 255, 255, 0.9);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

@media screen and (max-width: 599px) {
    .header-wrap.bg {
        background: #FFF;
    }
}

.header-wrap__logo {
    width: 332px;
    height: 53px;
    margin-left: 20px;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .header-wrap__logo {
        width: 280px;
        height: auto;
    }
}

@media screen and (max-width: 834px) {
    .header-wrap__logo {
        width: 240px;
        height: auto;
    }
}

@media screen and (max-width: 599px) {
    .header-wrap__logo {
        width: 180px;
        margin-left: 10px;
    }
}

.header-wrap__logo img {
    width: 100%;
}

.header-wrap__navi {
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    margin-left: auto;
    margin-right: 20px;
    padding: 0;
}

@media screen and (max-width: 599px) {
    .header-wrap__navi {
        margin-right: 10px;
    }
}

.header-wrap__navi__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-wrap__navi__item {
    margin-left: 25px;
}

.header-wrap__navi__item a {
    color: #111;
    padding-bottom: 5px;
    position: relative;
}

.header-wrap__navi__item a::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #2ba36e;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.header-wrap__navi__item a:hover {
    color: #2ba36e;
}

.header-wrap__navi__item a:hover::before {
    left: 0;
    width: 100%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.header-wrap__navi__item a.current {
    position: relative;
}

.header-wrap__navi__item a.current::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2ba36e;
}

.footer-wrap {
    background-color: #deeae5;
}

.footer-wrap__bnr {
    max-width: 940px;
    margin: 0 auto;
    padding: 40px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 599px) {
    .footer-wrap__bnr {
        width: 60%;
        margin: 0 auto;
        display: block;
        padding: 20px 10px;
    }
}

.footer-wrap__bnr__item {
    width: calc((100% - 30px) / 3);
}

@media screen and (max-width: 599px) {
    .footer-wrap__bnr__item {
        width: auto;
    }
}

.footer-wrap__bnr__item:not(:first-child) {
    margin-left: 15px;
}

@media screen and (max-width: 599px) {
    .footer-wrap__bnr__item:not(:first-child) {
        margin-left: 0;
        margin-top: 10px;
    }
}

.footer-wrap__bnr__item img {
    max-width: 100%;
}

.footer-wrap__inner {
    color: #FFF;
    text-align: center;
    padding: 50px 20px 30px;
    background-color: #2ba36e;
}

@media screen and (max-width: 599px) {
    .footer-wrap__inner {
        padding: 40px 20px 20px;
    }
}

.footer-wrap__logo {
    margin-bottom: 15px;
}

.footer-wrap__logo span {
    display: block;
    font-size: 1.4rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    margin-top: 5px;
}

.footer-wrap__logo img {
    wdith: 47px;
    height: 57px;
}

@media screen and (max-width: 599px) {
    .footer-wrap__logo img {
        wdith: calc(47px * 0.7);
        height: calc(57px * 0.7);
    }
}

.footer-wrap__add {
    margin-bottom: 30px;
}

.footer-wrap__add span {
    font-size: 2.4rem;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 500;
    display: block;
}

@media screen and (max-width: 599px) {
    .footer-wrap__add span {
        font-size: 1.6rem;
    }
}

.footer-wrap__copy {
    font-size: 1.4rem;
    font-family: "Open Sans", sans-serif;
}

@media screen and (max-width: 599px) {
    .footer-wrap__copy {
        font-size: 1.2rem;
    }
}

#wysiwyg {
    /*デフォルトの処理*/
    font-size: 16px;
    line-height: 2.0;
    text-align: justify;
    /*各テンプレートを囲むbox【必須】*/
    /* 他のページと同じタイトル title.scssに*/
    /*タイトル処理*/
    /*キャッチコピーの処理*/
    /*本文テキスト・写真回り込み処理*/
    /*ボタン*/
    /*写真の処理*/
    /*リスト*/
    /*テーブル*/
    /*youtube*/
    /*以下テンプレート外*/
}

@media screen and (max-width: 599px) {
    #wysiwyg {
        font-size: 14px;
        line-height: 1.8;
    }
}

#wysiwyg a {
    color: #2ba36e;
    text-decoration: underline;
}

#wysiwyg a:hover {
    color: #2ba36e;
    text-decoration: none;
}

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

#wysiwyg .box {
    margin-bottom: 30px;
    *zoom: 1;
}

#wysiwyg .box:after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 599px) {
    #wysiwyg .box {
        margin-bottom: 15px;
    }
}

#wysiwyg .ttl-circle {
    margin-bottom: 0;
}

#wysiwyg .title-line {
    margin-bottom: -15px;
    padding: 0 0 15px 15px;
    font-size: 20px;
    line-height: 1.2em;
    color: #111;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 500;
    border-bottom: 1px dotted #bbb;
    position: relative;
}

@media screen and (max-width: 599px) {
    #wysiwyg .title-line {
        margin-bottom: -5px;
        padding: 0 0 10px 15px;
        font-size: 16px;
    }
}

#wysiwyg .title-line::before {
    content: '';
    top: 0;
    left: 0;
    width: 5px;
    height: calc( 100% - 15px);
    background-color: #2ba36e;
    position: absolute;
}

@media screen and (max-width: 599px) {
    #wysiwyg .title-line::before {
        height: calc( 100% - 10px);
    }
}

#wysiwyg .title-obi {
    padding: 10px 25px;
    font-size: 16px;
    line-height: 1.2em;
    color: #fff;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 600;
    background-color: #2ba36e;
    position: relative;
}

@media screen and (max-width: 599px) {
    #wysiwyg .title-obi {
        padding: 8px 20px;
        font-size: 14px;
    }
}

#wysiwyg .title-obi::before {
    content: '';
    top: calc( 50% - 1px);
    left: 0;
    width: 15px;
    height: 2px;
    background-color: #fff;
    position: absolute;
}

#wysiwyg .title-obi2 {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1.2em;
    color: #fff;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 700;
    background-color: #2ba36e;
    position: relative;
}

@media screen and (max-width: 599px) {
    #wysiwyg .title-obi2 {
        padding: 8px 20px;
        font-size: 14px;
    }
}

#wysiwyg .title-obi2::before {
    content: '';
    top: calc( 50% - 1px);
    left: 0;
    width: 15px;
    height: 1px;
    background-color: #fff;
    position: absolute;
}

#wysiwyg .title-icon {
    margin-bottom: -15px;
    padding-left: 1.2em;
    font-size: 16px;
    line-height: 1.2em;
    color: #111;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 700;
    position: relative;
}

@media screen and (max-width: 599px) {
    #wysiwyg .title-icon {
        margin-bottom: -5px;
        font-size: 14px;
    }
}

#wysiwyg .title-icon::before {
    content: '';
    top: 3px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 5px solid #2ba36e;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
}

@media screen and (max-width: 599px) {
    #wysiwyg .title-icon::before {
        top: 3px;
        left: 0;
        width: 12px;
        height: 12px;
        border: 4px solid #2ba36e;
    }
}

#wysiwyg .copy01 {
    margin-bottom: -15px;
    font-size: 20px;
    line-height: 1.7;
    color: #2ba36e;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 500;
    text-align: justify;
}

@media screen and (max-width: 599px) {
    #wysiwyg .copy01 {
        margin-bottom: -5px;
        font-size: 15px;
    }
}

#wysiwyg .copy02 {
    margin-bottom: -15px;
    font-size: 24px;
    line-height: 1.7;
    color: #2ba36e;
    font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
    font-weight: 400;
    text-align: justify;
}

@media screen and (max-width: 599px) {
    #wysiwyg .copy02 {
        margin-bottom: -5px;
        font-size: 16px;
    }
}

#wysiwyg .text {
    font-size: 16px;
    line-height: 2.0em;
    text-align: justify;
}

@media screen and (max-width: 599px) {
    #wysiwyg .text {
        font-size: 14px;
        line-height: 1.8em;
    }
}

#wysiwyg .text--mincho {
    font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
    font-weight: 300;
}

#wysiwyg .img-right {
    margin: 7px 0 30px 30px;
    width: auto;
    max-width: 33%;
    float: right;
    display: inline-block;
}

@media screen and (max-width: 599px) {
    #wysiwyg .img-right {
        margin: 0 auto 10px auto;
        width: auto;
        max-width: 100%;
        float: none;
    }
}

#wysiwyg .img-left {
    margin: 7px 30px 30px 0;
    width: auto;
    max-width: 33%;
    float: left;
    display: inline-block;
}

@media screen and (max-width: 599px) {
    #wysiwyg .img-left {
        margin: 0 auto 10px auto;
        width: auto;
        max-width: 100%;
        float: none;
    }
}

#wysiwyg .btn-wrapper {
    text-align: center;
}

#wysiwyg .btn-wrapper a {
    padding: 20px 40px 20px 25px;
    font-size: 16px;
    line-height: 1.2em;
    color: #fff;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    background-color: #2ba36e;
    position: relative;
    display: inline-block;
}

@media screen and (max-width: 599px) {
    #wysiwyg .btn-wrapper a {
        padding: 15px 30px 15px 20px;
        font-size: 14px;
        text-align: left;
    }
}

#wysiwyg .btn-wrapper a::before {
    content: '';
    top: calc( 50% - 4px);
    right: 15px;
    border-width: 4px 0 4px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    position: absolute;
}

#wysiwyg .btn-wrapper a:hover {
    color: #fff;
    background-color: #165338;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    #wysiwyg .btn-wrapper a:hover {
        background-color: #2ba36e;
    }
}

#wysiwyg .photo-3 {
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#wysiwyg .photo-3::after {
    content: none;
}

#wysiwyg .photo-3 li {
    margin-left: 10px;
    width: calc( ( 99.9% - 20px ) / 3);
}

#wysiwyg .photo-3 li:first-child {
    margin-left: 0;
}

@media screen and (max-width: 599px) {
    #wysiwyg .photo-3 li {
        display: block;
        margin-top: 10px;
        margin-left: 0;
        width: 100%;
    }
    #wysiwyg .photo-3 li:first-child {
        margin-top: 0;
    }
}

#wysiwyg .photo-2 {
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#wysiwyg .photo-2::after {
    content: none;
}

#wysiwyg .photo-2 li {
    margin-left: 10px;
    width: calc( ( 99.9% - 10px ) / 2);
}

#wysiwyg .photo-2 li:first-child {
    margin-left: 0;
}

@media screen and (max-width: 599px) {
    #wysiwyg .photo-2 li {
        margin-left: 5px;
        width: calc( ( 100% - 5px ) / 2);
    }
}

#wysiwyg .photo-1 {
    width: 100%;
    text-align: center;
}

#wysiwyg .caption {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.3em;
    text-align: center;
    display: block;
}

@media screen and (max-width: 599px) {
    #wysiwyg .caption {
        margin-top: 5px;
        font-size: 12px;
    }
}

#wysiwyg .list-wrapper {
    padding: 30px;
    background-color: #f7f7f7;
    list-style: none;
}

@media screen and (max-width: 599px) {
    #wysiwyg .list-wrapper {
        padding: 20px;
    }
}

#wysiwyg .list-wrapper li {
    margin-top: 10px;
    padding-left: 1.2em;
    font-size: 16px;
    line-height: 1.5em;
    text-align: justify;
    position: relative;
}

#wysiwyg .list-wrapper li:first-child {
    margin-top: 0;
}

#wysiwyg .list-wrapper li::before {
    content: '';
    top: 6px;
    left: 3px;
    width: 8px;
    height: 8px;
    background-color: #2ba36e;
    position: absolute;
}

@media screen and (max-width: 599px) {
    #wysiwyg .list-wrapper li {
        margin-top: 7px;
        font-size: 13px;
    }
    #wysiwyg .list-wrapper li::before {
        content: '';
        top: 5px;
        left: 0px;
        width: 6px;
        height: 6px;
    }
}

#wysiwyg .table {
    width: 100%;
    border: 1px solid #ddd;
    border-collapse: collapse;
}

#wysiwyg .table thead th {
    padding: 15px 10px;
    font-size: 15px;
    line-height: 1.3em;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    background-color: #2ba36e;
    border: 1px solid #ddd;
}

@media screen and (max-width: 599px) {
    #wysiwyg .table thead th {
        padding: 7px 5px 5px;
        font-size: 12px;
    }
}

#wysiwyg .table th {
    padding: 15px 10px;
    font-size: 15px;
    line-height: 1.3em;
    color: #111;
    text-align: center;
    vertical-align: middle;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
}

@media screen and (max-width: 599px) {
    #wysiwyg .table th {
        padding: 7px 5px 5px;
        font-size: 12px;
    }
}

#wysiwyg .table td {
    padding: 15px;
    font-size: 15px;
    line-height: 1.3em;
    color: #111;
    text-align: justify;
    vertical-align: middle;
    border: 1px solid #ddd;
}

@media screen and (max-width: 599px) {
    #wysiwyg .table td {
        padding: 7px 5px 5px;
        font-size: 12px;
    }
}

#wysiwyg .youtube-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    position: relative;
}

#wysiwyg .youtube-wrapper::before {
    content: '';
    padding-bottom: 56.25%;
    display: block;
}

#wysiwyg .youtube-wrapper iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

#wysiwyg .left {
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

#wysiwyg .center {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

#wysiwyg .right {
    width: 100%;
    margin: 0 auto;
    text-align: right;
}

#wysiwyg h1 {
    font-size: 240%;
    line-height: 1.5;
    background: url(none);
    margin: 0px;
    padding: 0px;
}

#wysiwyg h2 {
    font-size: 180%;
    line-height: 1.5;
    margin: 0;
    background: url(none);
    padding: 0px;
    border-bottom: none;
}

#wysiwyg h3 {
    font-size: 140%;
    line-height: 1.5;
    background: url(none);
    margin: 0px;
    padding: 0px;
    color: #111;
}

#wysiwyg h4 {
    font-size: 120%;
    line-height: 1.5;
    margin: 0;
    background: url(none);
    padding: 0px;
    color: #111;
}

#wysiwyg h5 {
    font-size: 100%;
    line-height: 1.5;
    margin: 0;
    background: url(none);
    padding: 0px;
}

#wysiwyg h6 {
    font-size: 82%;
    line-height: 1.5;
    margin: 0;
    background: url(none);
    padding: 0px;
}

#wysiwyg ul {
    padding-left: 40px;
    list-style-type: disc;
}

#wysiwyg ol {
    margin: 1em 0;
    padding-left: 40px;
    list-style-type: decimal;
}

#wysiwyg blockquote {
    padding-left: 1em;
}

#wysiwyg table {
    font-size: 100%;
    border-collapse: collapse;
}

#wysiwyg hr {
    display: block;
}

#wysiwyg em {
    font-style: italic !important;
}

#wysiwyg strong {
    font-weight: bold !important;
}

#wysiwyg em strong, #wysiwyg strong em {
    font-style: italic !important;
    font-weight: bold !important;
}

/*iOSでのsubmit, buttonのデザインをリセットするCSS*/
button,
input[type="submit"],
input[type="button"],
input[type="search"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
         appearance: button;
    border: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

button::-webkit-search-decoration,
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-decoration {
    display: none;
}

button::focus,
input[type="submit"]::focus,
input[type="button"]::focus,
input[type="search"]::focus {
    outline-offset: -2px;
}

input[type="search"] {
    border: 1px solid #ddd;
}

/* Form */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    margin: 0;
    padding: 0;
    background-color: transparent;
    color: inherit;
    font-size: 100%;
    border: none;
    border-radius: 0;
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    resize: vertical;
    border: 1px solid #ddd;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    vertical-align: middle;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    background-image: url(../img/common/select-arrow.png);
    background-repeat: no-repeat;
    background-position: 96% 50%;
    background-size: 6px 8px;
}

button,
input[type="submit"],
input[type="button"],
input[type="radio"],
input[type="checkbox"],
label,
select {
    cursor: pointer;
}

/** Form Select IE 11 */
select::-ms-expand {
    display: none;
}

select::-ms-value {
    color: currentColor;
}

.container {
    padding: 0 20px;
}

@media screen and (max-width: 599px) {
    .container {
        padding: 0 15px;
    }
}

.contents {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 100px;
}

@media screen and (max-width: 599px) {
    .contents {
        margin: 0 auto 60px;
    }
}

.breadcrumb {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 10px 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.breadcrumb__item {
    font-size: 1.5rem;
    padding-left: 20px;
    position: relative;
}

.breadcrumb__item::before {
    position: absolute;
    content: ">";
    top: 0;
    left: 5px;
}

.breadcrumb__item:first-child {
    padding-left: 0;
}

.breadcrumb__item:first-child::before {
    display: none;
}

.breadcrumb__item a:hover {
    text-decoration: underline;
}

/*------------------------
  TB/SP Navigation
-------------------------*/
.gnav-sp__btn {
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #2ba36e;
}

@media screen and (min-width: 1025px) {
    .gnav-sp__btn {
        display: none;
    }
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .gnav-sp__btn {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 599px) {
    .gnav-sp__btn {
        width: 60px;
        height: 60px;
    }
}

.gnav-sp__btn span {
    position: absolute;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    left: 0;
    right: 0;
    width: 30px;
    height: 4px;
    background-color: #FFF;
    margin: auto;
    z-index: 101;
}

@media screen and (max-width: 599px) {
    .gnav-sp__btn span {
        width: 25px;
        height: 3px;
    }
}

.gnav-sp__btn span:nth-of-type(1) {
    top: 26px;
}

@media screen and (max-width: 599px) {
    .gnav-sp__btn span:nth-of-type(1) {
        top: 20px;
    }
}

.gnav-sp__btn span:nth-of-type(2) {
    top: 38px;
}

@media screen and (max-width: 599px) {
    .gnav-sp__btn span:nth-of-type(2) {
        top: 28px;
    }
}

.gnav-sp__btn span:nth-of-type(3) {
    bottom: 25px;
}

@media screen and (max-width: 599px) {
    .gnav-sp__btn span:nth-of-type(3) {
        bottom: 21px;
    }
}

.gnav-sp__btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
    -ms-transform: translateY(12px) rotate(-45deg);
        transform: translateY(12px) rotate(-45deg);
}

@media screen and (max-width: 599px) {
    .gnav-sp__btn.active span:nth-of-type(1) {
        -webkit-transform: translateY(8px) rotate(-45deg);
        -ms-transform: translateY(8px) rotate(-45deg);
            transform: translateY(8px) rotate(-45deg);
    }
}

.gnav-sp__btn.active span:nth-of-type(2) {
    opacity: 0;
}

.gnav-sp__btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
    -ms-transform: translateY(-12px) rotate(45deg);
        transform: translateY(-12px) rotate(45deg);
}

@media screen and (max-width: 599px) {
    .gnav-sp__btn.active span:nth-of-type(3) {
        -webkit-transform: translateY(-8px) rotate(45deg);
        -ms-transform: translateY(-8px) rotate(45deg);
            transform: translateY(-8px) rotate(45deg);
    }
}

.gnav-sp {
    display: none;
    height: calc(100vh - 70px);
    overflow: scroll;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0px 0px 10px 0px;
    position: fixed;
    top: 80px;
    background: #2ba36e;
    z-index: 9999;
}

@media screen and (max-width: 599px) {
    .gnav-sp {
        height: calc(100vh - 60px);
        top: 60px;
    }
}

.gnav-sp__list {
    padding-bottom: 80px;
}

.gnav-sp__list__item {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.gnav-sp__list__item__link {
    position: relative;
    display: block;
    width: 100%;
    padding: 18px 15px 17px;
    font-size: 1.5rem;
    color: #fff;
}

.gnav-sp__list__item__link::before {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    right: 24px;
    margin: auto;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
}

.gnav-sp__sub-list {
    display: none;
}

.gnav-sp__sub-list__btn {
    display: block;
    position: relative;
    padding: 18px 15px 17px;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 400;
}

.gnav-sp__sub-list__btn::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
    width: 22px;
    height: 2px;
    background-color: #fff;
}

.gnav-sp__sub-list__btn::after {
    content: '';
    position: absolute;
    display: block !important;
    top: 0;
    bottom: 0;
    right: 26px;
    margin: auto;
    width: 2px;
    height: 22px;
    background-color: #fff;
    -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.gnav-sp__sub-list__btn.active::after {
    -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.gnav-sp__sub-list__item {
    background: #111;
    border-top: none;
    border-top: dotted 1px rgba(255, 255, 255, 0.7);
}

.gnav-sp__sub-list__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.gnav-sp__sub-list__item__link {
    position: relative;
    display: block;
    font-size: 1.5rem;
    color: #fff;
    padding: 15px 20px 15px 34px;
    font-weight: 400;
}

.gnav-sp__sub-list__item__link::before {
    display: block;
    content: '';
    position: absolute;
    top: calc( 50% - 6px);
    left: 15px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
}

.pagetitle {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    position: relative;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .pagetitle {
        height: 300px;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 599px) {
    .pagetitle {
        height: 200px;
        margin-bottom: 30px;
    }
}

.pagetitle.about {
    background-image: url("../img/about/bg_pagetitle.jpg");
}

.pagetitle.patient {
    background-image: url("../img/patient/bg_pagetitle.jpg");
}

.pagetitle.medical {
    background-image: url("../img/medical/bg_pagetitle.jpg");
}

.pagetitle.information {
    background-image: url("../img/information/bg_pagetitle.jpg");
}

.pagetitle__ttl {
    color: #fff;
    font-size: 3rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 30px 0 50px;
    background: rgba(43, 163, 110, 0.7);
    position: absolute;
    top: calc(50% + 25px);
    left: 50%;
    -ms-transform: translateY(-50%) translateX(-50%);
        transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .pagetitle__ttl {
        font-size: 2.6rem;
        max-width: 400px;
        padding: 20px 0 40px;
    }
}

@media screen and (max-width: 599px) {
    .pagetitle__ttl {
        font-size: 1.8rem;
        width: 70%;
        max-width: auto;
        padding: 18px 0 38px;
    }
}

.pagetitle__ttl::before {
    position: absolute;
    content: attr(data-text) "";
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #fff;
    font-size: 1.4rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .pagetitle__ttl::before {
        font-size: 1.3rem;
        bottom: 20px;
    }
}

@media screen and (max-width: 599px) {
    .pagetitle__ttl::before {
        font-size: 1.2rem;
        bottom: 18px;
    }
}

/*---------------------
   TOP PAGE TITLE
-----------------------*/
.ttl-top {
    color: #111;
    font-size: 3.6rem;
    font-weight: 500;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    position: relative;
    margin-bottom: 30px;
    padding-top: 60px;
    padding-bottom: 20px;
}

@media screen and (max-width: 1024px) {
    .ttl-top {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 599px) {
    .ttl-top {
        font-size: 2.0rem;
        margin-bottom: 20px;
        padding-top: 48px;
    }
}

.ttl-top::before {
    position: absolute;
    content: attr(data-text) "";
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #2ba36e;
    font-size: 1.4rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
}

@media screen and (max-width: 599px) {
    .ttl-top::before {
        font-size: 1.2rem;
    }
}

.ttl-top::after {
    position: absolute;
    content: '';
    width: 55px;
    height: 55px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-image: url(../img/top/icon_info.svg);
    background-size: 55px;
}

@media screen and (max-width: 599px) {
    .ttl-top::after {
        width: calc(55px * 0.8);
        height: calc(55px * 0.8);
        background-size: calc(55px * 0.8);
    }
}

.ttl-top.info {
    color: #FFF;
}

.ttl-top.about::after {
    width: 54px;
    height: 54px;
    background-image: url(../img/top/icon_prescription.svg);
    background-size: 54px;
}

@media screen and (max-width: 599px) {
    .ttl-top.about::after {
        width: calc(54px * 0.8);
        height: calc(54px * 0.8);
        background-size: calc(54px * 0.8);
    }
}

.ttl-top-to {
    font-size: 3.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .ttl-top-to {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 599px) {
    .ttl-top-to {
        font-size: 2.0rem;
    }
}

.ttl-top-to::before {
    position: absolute;
    content: attr(data-text) "";
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding-left: 3px;
    color: #2ba36e;
    font-size: 1.4rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
}

@media screen and (max-width: 599px) {
    .ttl-top-to::before {
        font-size: 1.3rem;
    }
}

.ttl-top-to::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}

.ttl-top-to.patient {
    padding-left: 60px;
}

@media screen and (max-width: 599px) {
    .ttl-top-to.patient {
        padding-left: 45px;
    }
}

.ttl-top-to.patient::before {
    color: #25a1b3;
    left: 63px;
}

@media screen and (max-width: 599px) {
    .ttl-top-to.patient::before {
        left: 45px;
    }
}

.ttl-top-to.patient::after {
    width: 50px;
    height: 59px;
    background-image: url(../img/top/icon_patient.svg);
    background-size: 50px 59px;
    background-repeat: no-repeat;
}

@media screen and (max-width: 599px) {
    .ttl-top-to.patient::after {
        width: calc(50px * 0.8);
        height: calc(59px * 0.8);
        background-size: calc(50px * 0.8) calc(59px * 0.8);
    }
}

.ttl-top-to.medical {
    padding-left: 65px;
}

@media screen and (max-width: 599px) {
    .ttl-top-to.medical {
        padding-left: 48px;
    }
}

.ttl-top-to.medical::before {
    color: #25125f;
    left: 68px;
}

@media screen and (max-width: 599px) {
    .ttl-top-to.medical::before {
        left: 47px;
    }
}

.ttl-top-to.medical::after {
    top: 6px;
    width: 48px;
    height: 52px;
    background-image: url(../img/top/icon_medical.svg);
    background-size: 48px 52px;
    background-repeat: no-repeat;
}

@media screen and (max-width: 599px) {
    .ttl-top-to.medical::after {
        width: calc(48px * 0.7);
        height: calc(52px * 0.7);
        background-size: calc(48px * 0.7) calc(52px * 0.7);
    }
}

/*---------------------
    COMMON TITLE
-----------------------*/
.ttl-obi {
    font-size: 2.2rem;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 25px;
    padding: 17px 15px 19px 35px;
    background-color: #ebebeb;
    position: relative;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .ttl-obi {
        font-size: 2.0rem;
    }
}

@media screen and (max-width: 599px) {
    .ttl-obi {
        font-size: 1.6rem;
        margin-bottom: 15px;
        padding: 12px 15px 13px 25px;
    }
}

.ttl-obi::before {
    position: absolute;
    content: "";
    top: 28px;
    left: -15px;
    width: 30px;
    height: 5px;
    background: #2ba36e;
}

@media screen and (max-width: 599px) {
    .ttl-obi::before {
        top: 20px;
        left: -5px;
        width: 20px;
        height: 5px;
    }
}

.ttl-circle {
    font-size: 1.8rem;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

@media screen and (max-width: 599px) {
    .ttl-circle {
        font-size: 1.6rem;
        margin-bottom: 15px;
        padding-left: 20px;
    }
}

.ttl-circle::before {
    position: absolute;
    content: "";
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 5px solid #2ba36e;
    border-radius: 50%;
}

@media screen and (max-width: 599px) {
    .ttl-circle::before {
        top: 3px;
        width: 14px;
        height: 14px;
        border: 4px solid #2ba36e;
    }
}

.ttl-line {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 10px 0 10px 20px;
    border-bottom: 1px dotted #CCC;
    position: relative;
}

@media screen and (max-width: 599px) {
    .ttl-line {
        padding: 10px 0 10px 15px;
    }
}

.ttl-line::before {
    position: absolute;
    content: "";
    top: 22px;
    left: -10px;
    width: 15px;
    height: 3px;
    background: #2ba36e;
}

@media screen and (max-width: 599px) {
    .ttl-line::before {
        left: -5px;
    }
}

.btn-more {
    width: 280px;
}

@media screen and (max-width: 599px) {
    .btn-more {
        width: 80%;
    }
}

.btn-more.cnt {
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .btn-more.cnt-tbsp {
        margin: 0 auto;
    }
}

.btn-base {
    color: #FFF;
    font-size: 2.0rem;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    padding: 15px 10px;
    display: block;
    text-align: center;
    background-color: #2ba36e;
    -webkit-box-shadow: 0px 8px 16px -2px rgba(10, 10, 10, 0.1), 9px 11px 8px -9px rgba(10, 10, 10, 0.25);
            box-shadow: 0px 8px 16px -2px rgba(10, 10, 10, 0.1), 9px 11px 8px -9px rgba(10, 10, 10, 0.25);
    position: relative;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .btn-base {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 599px) {
    .btn-base {
        font-size: 1.6rem;
    }
}

.btn-base::before {
    position: absolute;
    content: '';
    top: calc(50% - 5px);
    right: 10px;
    width: 10px;
    height: 10px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
}

.btn-base:hover {
    background-color: #165338;
}

.btn-base.patient {
    background-color: #25a1b3;
}

.btn-base.patient:hover {
    background-color: #1c7a88;
}

.btn-base.medical {
    background-color: #25125f;
}

.btn-base.medical:hover {
    background-color: #130932;
}

.btn-base.back {
    font-size: 1.6rem;
}

@media screen and (max-width: 599px) {
    .btn-base.back {
        font-size: 1.5rem;
    }
}

.btn-base.back::before {
    left: 10px;
    right: 0;
    width: 10px;
    height: 10px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
}

.btn-link {
    color: #FFF;
    font-size: 1.4rem;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    background-color: #eaa63b;
    text-align: center;
    padding: 1px 15px;
    display: inline-block;
}

.btn-link:hover {
    background-color: #cd820d;
}

.btn-tel {
    color: #111;
}

@media screen and (max-width: 599px) {
    .btn-tel {
        width: 85%;
        margin: 0 auto;
        padding: 8px 20px;
        color: #FFF;
        font-size: 1.6rem;
        text-align: center;
        line-height: 1.5;
        font-weight: 600;
        border-radius: 5px;
        display: block;
        background-color: #2ba36e;
    }
}

.text-std {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #111;
    text-align: justify;
}

@media screen and (max-width: 834px) {
    .text-std {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 599px) {
    .text-std {
        font-size: 1.4rem;
        line-height: 1.7;
    }
}

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

.text-s {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #111;
    text-align: justify;
}

@media screen and (max-width: 834px) {
    .text-s {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 599px) {
    .text-s {
        font-size: 1.3rem;
    }
}

.text-xs {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #111;
    text-align: justify;
}

@media screen and (max-width: 834px) {
    .text-xs {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 599px) {
    .text-xs {
        font-size: 1.2rem;
    }
}

.text-red {
    color: #CE0000;
}

/* COMMON TEXT BLOCK */
/* テキスト回り込みなし*/
.text-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

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

.text-block__text {
    width: calc(100% - 34% - 30px);
    line-height: 2.2;
}

@media screen and (max-width: 834px) {
    .text-block__text {
        line-height: 2.0;
    }
}

@media screen and (max-width: 599px) {
    .text-block__text {
        width: auto;
        margin-bottom: 20px;
    }
}

.text-block__photo {
    width: 34%;
    max-width: 380px;
    margin-left: auto;
}

@media screen and (max-width: 599px) {
    .text-block__photo {
        width: auto;
        max-width: 100%;
        margin-left: 0;
    }
}

/* テキスト回り込みあり*/
.text-block2 {
    clear: both;
    overflow: hidden;
}

.text-block2__text {
    line-height: 2.2;
}

@media screen and (max-width: 834px) {
    .text-block2__text {
        line-height: 2.0;
    }
}

@media screen and (max-width: 599px) {
    .text-block2__text {
        width: auto;
        margin-bottom: 20px;
    }
}

.text-block2__photo {
    margin: 7px 0 20px 30px;
    width: auto;
    max-width: 380px;
    float: right;
    display: inline-block;
}

@media screen and (max-width: 834px) {
    .text-block2__photo {
        max-width: 300px;
    }
}

@media screen and (max-width: 599px) {
    .text-block2__photo {
        margin: 0 auto 10px auto;
        width: auto;
        max-width: 100%;
        float: none;
    }
}

.flow-wrap {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
}

.flow-wrap__item {
    background: #deeae5;
    margin-bottom: 40px;
    padding: 20px 30px 20px 75px;
    position: relative;
}

@media screen and (max-width: 599px) {
    .flow-wrap__item {
        padding: 15px 20px 15px 55px;
    }
}

.flow-wrap__item::before {
    position: absolute;
    content: '';
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 40px 0 40px;
    border-color: #deeae5 transparent transparent transparent;
}

.flow-wrap__item::after {
    position: absolute;
    content: attr(data-text) "";
    color: #2ba36e;
    font-size: 5.5rem;
    font-family: "EB Garamond", sans-serif;
    line-height: 1.4;
    top: 0;
    left: 30px;
}

@media screen and (max-width: 599px) {
    .flow-wrap__item::after {
        font-size: 4.0rem;
        top: 7px;
        left: 20px;
    }
}

.flow-wrap__item:last-child::before {
    display: none;
}

.flow-wrap__item__ttl {
    color: #2ba36e;
    font-size: 1.8rem;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
}

@media screen and (max-width: 599px) {
    .flow-wrap__item__ttl {
        font-size: 1.5rem;
    }
}

.flow-wrap__item.typ1::after {
    top: 5px;
    color: #2ba36e;
}

.flow-wrap__item.typ2 {
    background: #d9eaf1;
}

.flow-wrap__item.typ2::before {
    border-color: #d9eaf1 transparent transparent transparent;
}

.flow-wrap__item.typ2::after {
    top: 5px;
    color: #1c94c6;
}

.flow-wrap__item.typ2 .flow-wrap__item__ttl {
    color: #1c94c6;
}

.flow-wrap__item.typ3 {
    background: #f3e5d8;
}

.flow-wrap__item.typ3::before {
    border-color: #f3e5d8 transparent transparent transparent;
}

.flow-wrap__item.typ3::after {
    top: 5px;
    color: #d88418;
}

.flow-wrap__item.typ3 .flow-wrap__item__ttl {
    color: #d88418;
}

.flow-wrap__item__text {
    font-size: 1.8rem;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    padding: 8px 0;
}

@media screen and (max-width: 599px) {
    .flow-wrap__item__text {
        font-size: 1.5rem;
        line-height: 1.5;
    }
}

.pagination {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pagination__item a {
    color: #2ba36e;
    width: 48px;
    height: 48px;
    margin: 0 4px;
    padding: 10px 0;
    display: inline-block;
    border-radius: 50%;
    background: #deeae5;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 599px) {
    .pagination__item a {
        width: 38px;
        height: 38px;
        padding: 8px 0;
    }
}

.pagination__item a:hover, .pagination__item a.active {
    color: #FFF;
    background: #2ba36e;
}

.pagination__item.prev a, .pagination__item.next a {
    font-size: 1.8rem;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 500;
    width: auto;
    height: auto;
    padding: 10px 15px;
    background: none;
    position: relative;
}

@media screen and (max-width: 599px) {
    .pagination__item.prev a, .pagination__item.next a {
        font-size: 1.5rem;
        padding: 6px 15px;
    }
}

.pagination__item.prev a::before, .pagination__item.next a::before {
    position: absolute;
    content: "";
    top: calc(50% - 4px);
    left: 0;
    width: 10px;
    height: 10px;
    border-top: 3px solid #2ba36e;
    border-right: 3px solid #2ba36e;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
}

@media screen and (max-width: 599px) {
    .pagination__item.prev a::before, .pagination__item.next a::before {
        top: calc(50% - 5px);
    }
}

.pagination__item.prev a:hover, .pagination__item.next a:hover {
    color: rgba(43, 163, 110, 0.6);
}

.pagination__item.next a::before {
    left: auto;
    right: 0;
    width: 10px;
    height: 10px;
    border-top: 3px solid #2ba36e;
    border-right: 3px solid #2ba36e;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
}

.mainimg {
    height: 41vw;
    margin-bottom: 55px;
    position: relative;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .mainimg {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 599px) {
    .mainimg {
        height: 52vw;
        margin-top: 60px;
        margin-bottom: 20px;
    }
}

.mainimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
}

.mainimg__copy {
    width: 700px;
    font-size: 3.6rem;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: calc(50% - 40px);
    left: 50%;
    -ms-transform: translateY(-50%) translateX(-50%);
        transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 1300px) {
    .mainimg__copy {
        width: 550px;
        font-size: 2.6rem;
        padding: 40px 20px;
    }
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .mainimg__copy {
        width: 60%;
        font-size: 2.4rem;
        padding: 30px 20px;
        top: calc(50%);
    }
}

@media screen and (max-width: 834px) {
    .mainimg__copy {
        width: 50%;
        font-size: 2.0rem;
        padding: 20px;
    }
}

@media screen and (max-width: 599px) {
    .mainimg__copy {
        font-size: 1.5rem;
        padding: 20px 15px;
        top: calc(50% - 20px);
        z-index: 3;
    }
}

.mainimg__name {
    width: 100%;
    color: #FFF;
    font-size: 2.0rem;
    font-weight: 400;
    text-align: center;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    padding: 20px;
    position: absolute;
    bottom: 0;
    background: rgba(43, 163, 110, 0.8);
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .mainimg__name {
        font-size: 1.6rem;
        padding: 15px;
    }
}

@media screen and (max-width: 599px) {
    .mainimg__name {
        font-size: 1.3rem;
        line-height: 1.4;
        padding: 8px;
        z-index: 2;
    }
}

.top-read-wrap {
    position: relative;
    margin-bottom: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 834px) {
    .top-read-wrap {
        display: block;
    }
}

@media screen and (max-width: 599px) {
    .top-read-wrap {
        margin-bottom: 35px;
    }
}

.top-read-wrap__textBox {
    width: 50%;
    margin-left: 2.5vw;
    margin-right: -300px;
    padding: 50px 80px 50px 4.71vw;
    background: #fff;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1500px) {
    .top-read-wrap__textBox {
        padding: 50px 40px 50px 20px;
    }
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .top-read-wrap__textBox {
        padding: 0px 30px 0px 0px;
    }
}

@media screen and (max-width: 834px) {
    .top-read-wrap__textBox {
        width: auto;
        margin: 0;
        margin-bottom: 20px;
        padding: 0 20px;
    }
}

.top-read-wrap__textBox__copy {
    color: #2ba36e;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-size: 3.0rem;
    line-height: 1.5;
    margin-bottom: 35px;
    padding-bottom: 25px;
    position: relative;
}

@media screen and (max-width: 1500px) {
    .top-read-wrap__textBox__copy {
        font-size: 2.9rem;
    }
}

@media screen and (max-width: 1400px) {
    .top-read-wrap__textBox__copy {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 1279px) {
    .top-read-wrap__textBox__copy {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 1024px) {
    .top-read-wrap__textBox__copy {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 834px) {
    .top-read-wrap__textBox__copy {
        text-align: center;
    }
}

@media screen and (max-width: 599px) {
    .top-read-wrap__textBox__copy {
        font-size: 1.5rem;
        font-weight: 500;
        padding-bottom: 20px;
        margin-bottom: 25px;
    }
}

.top-read-wrap__textBox__copy::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: #2ba36e;
}

@media screen and (max-width: 834px) {
    .top-read-wrap__textBox__copy::before {
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

.top-read-wrap__textBox__text {
    line-height: 2.4;
}

@media screen and (max-width: 1300px) {
    .top-read-wrap__textBox__text {
        line-height: 2.0;
    }
}

.top-read-wrap__photo {
    width: 75%;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 834px) {
    .top-read-wrap__photo {
        width: auto;
    }
}

.top-info-wrap {
    padding: 60px 20px;
    text-align: center;
    background-image: url(../img/top/bg_information.jpg);
    background-size: cover;
    background-position: 50%;
}

@media screen and (max-width: 599px) {
    .top-info-wrap {
        padding: 30px 20px;
    }
}

.top-info-wrap__inner {
    max-width: 1100px;
    margin: 0 auto 50px;
}

@media screen and (max-width: 599px) {
    .top-info-wrap__inner {
        margin: 0 auto 30px;
    }
}

.top-about-wrap {
    margin-bottom: 100px;
    padding: 60px 0 0;
    text-align: center;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .top-about-wrap {
        margin-bottom: 20px;
        padding: 40px 5px;
    }
}

@media screen and (max-width: 599px) {
    .top-about-wrap {
        margin-bottom: 10px;
        padding: 35px 5px;
    }
}

.top-about-wrap__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 599px) {
    .top-about-wrap__list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.top-about-wrap__item {
    width: calc((99.9% - 2px * 3 ) / 3);
    height: 40vh;
    margin-left: 2px;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .top-about-wrap__item {
        height: 22vh;
    }
}

@media screen and (max-width: 599px) {
    .top-about-wrap__item {
        width: calc((99.9% - 2px ) / 2);
        height: 22vh;
        margin-bottom: 2px;
    }
}

.top-about-wrap__item::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.top-about-wrap__item::after {
    position: absolute;
    content: attr(data-text) "";
    top: 0;
    left: 0;
}

.top-about-wrap__item:hover::before {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.top-about-wrap__item:first-child {
    margin-left: 0;
}

.top-about-wrap__item.greeting::before {
    background-image: url(../img/top/about_greeting.jpg);
}

.top-about-wrap__item.staff::before {
    background-image: url(../img/top/about_staff.jpg);
}

.top-about-wrap__item.features::before {
    background-image: url(../img/top/about_features.jpg);
}

.top-about-wrap__item__ttl {
    width: 60%;
    margin: 0 auto;
    padding: 20px 0 25px;
    color: #FFF;
    font-size: 3rem;
    line-height: 1.4;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    background-color: rgba(0, 122, 57, 0.6);
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translateY(-50%) translateX(-50%);
        transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 1024px) {
    .top-about-wrap__item__ttl {
        width: 80%;
        font-size: 1.7rem;
    }
}

.top-about-wrap__item__ttl .en {
    font-size: 1.4rem;
    font-family: "Open Sans", sans-serif;
    display: block;
}

@media screen and (max-width: 599px) {
    .top-about-wrap__item__ttl .en {
        font-size: 1.2rem;
    }
}

.top-patient-wrap {
    clear: both;
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
}

@media screen and (max-width: 1300px) {
    .top-patient-wrap {
        margin-bottom: 50px;
        padding: 0;
    }
}

.top-patient-wrap__textBox {
    width: 50%;
    float: left;
    margin-top: -380px;
    margin-right: -200px;
    padding: 30px 3.71vw 50px 50px;
    background: #fff;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1300px) {
    .top-patient-wrap__textBox {
        width: 90%;
        float: none;
        margin: -70px auto 0;
        padding: 3%;
    }
}

@media screen and (max-width: 599px) {
    .top-patient-wrap__textBox {
        padding: 5% 7%;
    }
}

.top-patient-wrap__textBox__text {
    line-height: 2.0;
    margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
    .top-patient-wrap__textBox__text {
        margin-bottom: 30px;
    }
}

.top-patient-wrap__photo {
    width: 90%;
    float: right;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1300px) {
    .top-patient-wrap__photo {
        width: auto;
        float: none;
    }
}

.top-patient-wrap__photo img {
    width: 100%;
}

.top-medical-wrap {
    clear: both;
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
}

@media screen and (max-width: 1300px) {
    .top-medical-wrap {
        margin-bottom: 50px;
        padding: 0;
    }
}

.top-medical-wrap__textBox {
    width: 50%;
    float: right;
    margin-top: -300px;
    padding: 30px 50px 50px 3.71vw;
    background: #fff;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1300px) {
    .top-medical-wrap__textBox {
        width: 90%;
        float: none;
        margin: -70px auto 0;
        padding: 3%;
    }
}

@media screen and (max-width: 599px) {
    .top-medical-wrap__textBox {
        padding: 5% 7%;
    }
}

.top-medical-wrap__textBox__text {
    line-height: 2.0;
    margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
    .top-medical-wrap__textBox__text {
        margin-bottom: 30px;
    }
}

.top-medical-wrap__photo {
    width: 85%;
    float: left;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1300px) {
    .top-medical-wrap__photo {
        width: auto;
        float: none;
    }
}

.top-medical-wrap__photo img {
    width: 100%;
}

.new {
    color: #FFF;
    font-size: 1.2rem;
    text-align: center;
    margin-left: 8px;
    padding: 0 8px;
    display: inline-block;
    background: #CE0000;
}

.icon, .icon--info, .icon--medical, .icon--general, .icon--training {
    width: 150px;
    color: #FFF;
    margin-right: 10px;
    text-align: center;
    display: inline-block;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

@media screen and (max-width: 599px) {
    .icon, .icon--info, .icon--medical, .icon--general, .icon--training {
        width: 130px;
        font-size: 1.3rem;
    }
}

.icon--info {
    background-color: #f27341;
}

.icon--medical {
    background-color: #d13964;
}

.icon--general {
    background-color: #24a1b3;
}

.icon--training {
    background-color: #74429a;
}

.info-wrap__item .no-link,
.info-wrap__item a {
    color: #111;
    margin-bottom: 8px;
    padding: 30px;
    background: #f4f4f4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media screen and (max-width: 599px) {
    .info-wrap__item .no-link,
    .info-wrap__item a {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 15px 10px 15px 20px;
    }
}

.info-wrap__item .no-link:hover,
.info-wrap__item a:hover {
    background-color: #deeae5;
}

@media screen and (max-width: 599px) {
    .info-wrap__item .no-link:hover,
    .info-wrap__item a:hover {
        background: #f4f4f4;
    }
}

.info-wrap__item.top a {
    color: #111;
    background: #FFF;
}

.info-wrap__item.top a:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 599px) {
    .info-wrap__item.top a:hover {
        background: #FFF;
    }
}

.info-wrap__item .no-link:hover {
    background: #f4f4f4;
}

.info-detail-ttl {
    margin-bottom: 40px;
    padding: 30px;
    background: #f4f4f4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .info-detail-ttl {
        padding: 25px 30px;
    }
}

@media screen and (max-width: 599px) {
    .info-detail-ttl {
        margin-bottom: 30px;
        padding: 20px;
    }
}

.info__date {
    width: 9em;
    display: block;
    text-align: left;
}

@media screen and (max-width: 599px) {
    .info__date {
        width: 8em;
    }
}

.info__text {
    display: block;
    width: calc(100% - 150px - 9em);
    text-align: left;
}

@media screen and (max-width: 599px) {
    .info__text {
        width: 100%;
        margin-top: 7px;
        line-height: 1.5;
    }
}

.info__text.detail {
    width: 100%;
    font-size: 1.8rem;
    margin-top: 10px;
    line-height: 1.5;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .info__text.detail {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 599px) {
    .info__text.detail {
        font-size: 1.5rem;
    }
}

.tab-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
    .tab-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.tab-list__tab {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: calc( 100% / 5);
    color: #2ba36e;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    padding: 20px 5px;
    list-style: none;
    background: #deeae5;
    text-align: center;
    line-height: 1.4;
    cursor: pointer;
}

@media screen and (max-width: 599px) {
    .tab-list__tab {
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        width: calc( (100% - 5px) / 2);
        padding: 10px 0;
    }
}

.tab-list__tab:not(:first-child) {
    margin-left: 10px;
}

@media screen and (max-width: 599px) {
    .tab-list__tab:not(:first-child) {
        margin-left: 5px;
    }
}

@media screen and (max-width: 599px) {
    .tab-list__tab:nth-child(odd) {
        margin-left: 0;
    }
}

@media screen and (max-width: 599px) {
    .tab-list__tab:not(:nth-child(-n+2)) {
        margin-top: 5px;
    }
}

.tab-list__tab:hover {
    color: #FFF;
    background: #2ba36e;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.tab-list__tab.is-active {
    background: #2ba36e;
    color: #FFF;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    position: relative;
}

.tab-list__tab.is-active::before {
    position: absolute;
    content: "";
    bottom: -8px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #2ba36e transparent transparent transparent;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

@media screen and (max-width: 599px) {
    .tab-list__tab.is-active::before {
        display: none;
    }
}

.info-category {
    display: none;
}

.info-category.is-show {
    display: block;
}

.info-detail-wrap {
    margin-bottom: 50px;
    padding-bottom: 60px;
    border-bottom: 1px dotted #CCC;
}

.info-backbtn {
    width: 320px;
    margin: 0 auto;
}

@media screen and (max-width: 599px) {
    .info-backbtn {
        width: 70%;
    }
}

.greeting-wrap {
    margin-bottom: 80px;
}

@media screen and (max-width: 599px) {
    .greeting-wrap {
        margin-bottom: 50px;
    }
}

.greeting-wrap__copy {
    color: #2ba36e;
    font-size: 2.8rem;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 500;
    margin-bottom: 10px;
}

@media screen and (max-width: 834px) {
    .greeting-wrap__copy {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 599px) {
    .greeting-wrap__copy {
        font-size: 1.8rem;
    }
}

.greeting-wrap__signature {
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.4;
}

.staff-wrap {
    margin-bottom: 80px;
}

@media screen and (max-width: 599px) {
    .staff-wrap {
        margin-bottom: 50px;
    }
}

.staff-wrap__name {
    font-size: 2.6rem;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid #84c2a9;
}

@media screen and (max-width: 599px) {
    .staff-wrap__name {
        font-size: 1.8rem;
        font-weight: 500;
        margin-bottom: 15px;
    }
}

.staff-wrap__sub {
    color: #2ba36e;
    font-weight: 400;
}

.staff-wrap__sub.position {
    display: block;
    font-size: 1.6rem;
}

@media screen and (max-width: 599px) {
    .staff-wrap__sub.position {
        display: block;
        font-size: 1.3rem;
    }
}

.staff-wrap__sub.en {
    font-size: 1.5rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    margin-left: 10px;
    display: inline-block;
}

@media screen and (max-width: 599px) {
    .staff-wrap__sub.en {
        font-size: 1.2rem;
    }
}

.staff-wrap__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 599px) {
    .staff-wrap__inner {
        display: block;
    }
}

.staff-wrap__photo {
    width: 220px;
}

@media screen and (max-width: 599px) {
    .staff-wrap__photo {
        width: auto;
        margin-bottom: 10px;
    }
}

.staff-wrap__photo img {
    width: 100%;
}

.staff-wrap__profile {
    width: calc(100% - 220px - 5vw);
    margin-top: -10px;
    margin-left: auto;
}

@media screen and (max-width: 599px) {
    .staff-wrap__profile {
        width: auto;
        margin-top: 0px;
    }
}

.staff-wrap__profile.no-photo {
    width: 100%;
}

.staff-wrap__profile__list {
    padding: 17px 10px;
    border-bottom: 1px dotted #CCC;
}

@media screen and (max-width: 599px) {
    .staff-wrap__profile__list {
        padding: 10px 0px;
    }
}

.staff-wrap__profile__list dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
    .staff-wrap__profile__list dl {
        display: block;
    }
}

.staff-wrap__profile__ttl {
    color: #2ba36e;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 500;
    width: 200px;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .staff-wrap__profile__ttl {
        width: 150px;
        margin-bottom: 5px;
    }
}

.staff-wrap__profile__text {
    width: calc(100% - 200px);
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
    .staff-wrap__profile__text {
        width: calc(100% - 150px);
    }
}

@media screen and (max-width: 599px) {
    .staff-wrap__profile__text {
        width: auto;
    }
}

/* プロフィールがくるまでの臨時リスト*/
.nurse-wrap {
    margin-bottom: 80px;
    border-top: 1px dotted #CCC;
}

@media screen and (max-width: 599px) {
    .nurse-wrap {
        margin-bottom: 40px;
        border-top: none;
    }
}

.nurse-wrap__list {
    font-size: 2.0rem;
    font-weight: 600;
    padding: 10px 10px 10px 30px;
    border-bottom: 1px dotted #CCC;
    position: relative;
}

@media screen and (max-width: 599px) {
    .nurse-wrap__list {
        font-size: 1.6rem;
        padding: 10px 10px 10px 25px;
    }
}

.nurse-wrap__list::before {
    position: absolute;
    content: "";
    top: 21px;
    left: 5px;
    width: 15px;
    height: 3px;
    background: #2ba36e;
}

@media screen and (max-width: 599px) {
    .nurse-wrap__list::before {
        top: 18px;
        width: 12px;
    }
}

.nurse-wrap__list__position {
    color: #2ba36e;
    font-size: 1.6rem;
    display: block;
}

@media screen and (max-width: 599px) {
    .nurse-wrap__list__position {
        font-size: 1.4rem;
    }
}

.nurse-wrap__list__kana {
    color: #2ba36e;
    font-size: 1.5rem;
    font-family: "Open Sans", sans-serif;
    margin-left: 10px;
    display: inline-block;
}

@media screen and (max-width: 599px) {
    .nurse-wrap__list__kana {
        font-size: 1.3rem;
    }
}

.feature-wrap {
    margin-bottom: 80px;
}

@media screen and (max-width: 599px) {
    .feature-wrap {
        margin-bottom: 40px;
    }
}

.studyList-wrap {
    margin-bottom: 40px;
}

@media screen and (max-width: 599px) {
    .studyList-wrap {
        margin-bottom: 20px;
    }
}

.studyList-wrap__inner {
    border-bottom: 1px dotted #CCC;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

@media screen and (max-width: 599px) {
    .studyList-wrap {
        margin-bottom: 40px;
    }
}

.studyList-wrap__ttl {
    color: #2ba36e;
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 5px;
}

@media screen and (max-width: 599px) {
    .studyList-wrap__ttl {
        font-size: 1.5rem;
    }
}

.studyList-wrap__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5px;
}

@media screen and (max-width: 599px) {
    .studyList-wrap__item {
        display: block;
    }
}

.studyList-wrap__item__ttl {
    width: 7em;
    padding-left: 1em;
    position: relative;
}

@media screen and (max-width: 599px) {
    .studyList-wrap__item__ttl {
        width: auto;
    }
}

.studyList-wrap__item__ttl::before {
    position: absolute;
    content: "";
    top: 10px;
    left: 2px;
    width: 5px;
    height: 5px;
    background: #2ba36e;
}

@media screen and (max-width: 599px) {
    .studyList-wrap__item__ttl::before {
        top: 8px;
    }
}

.studyList-wrap__item__text {
    width: calc(100% - 7em);
}

@media screen and (max-width: 599px) {
    .studyList-wrap__item__text {
        width: auto;
        padding-left: 1em;
    }
}

.publishing-wrap__list {
    padding: 10px 0 10px 20px;
    border-bottom: 1px dotted #CCC;
    position: relative;
}

.publishing-wrap__list::before {
    position: absolute;
    content: "";
    top: 20px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ba36e;
}

.me-flow-wrap {
    margin-bottom: 80px;
}

.me-flow-wrap__text {
    margin-bottom: 40px;
}

@media screen and (max-width: 599px) {
    .me-flow-wrap__text {
        margin-bottom: 20px;
    }
}

.me-relation-wrap {
    margin-bottom: 80px;
}

.me-relation-wrap__block {
    margin-bottom: 80px;
}

@media screen and (max-width: 599px) {
    .me-relation-wrap__block {
        margin-bottom: 50px;
    }
}

.me-relation-wrap__name {
    font-size: 1.8rem;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 5px 20px 7px;
    position: relative;
}

@media screen and (max-width: 599px) {
    .me-relation-wrap__name {
        font-size: 1.6rem;
    }
}

.me-relation-wrap__name::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #2ba36e;
}

.me-relation-wrap__link {
    display: inline-block;
    margin-left: 15px;
}

.me-relation-wrap__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 599px) {
    .me-relation-wrap__inner {
        display: block;
    }
}

.me-relation-wrap__detail {
    width: calc(100% - 33.6% - 7%);
}

@media screen and (max-width: 599px) {
    .me-relation-wrap__detail {
        width: auto;
        margin-bottom: 15px;
    }
}

.me-relation-wrap__list {
    border-bottom: 1px dotted #CCC;
    padding: 2px 0;
}

@media screen and (max-width: 599px) {
    .me-relation-wrap__list {
        border-bottom: none;
    }
}

.me-relation-wrap__list:first-child {
    border-top: 1px dotted #CCC;
}

@media screen and (max-width: 599px) {
    .me-relation-wrap__list:first-child {
        border-top: none;
    }
}

.me-relation-wrap__list dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 599px) {
    .me-relation-wrap__list dl {
        display: block;
    }
}

.me-relation-wrap__list__ttl {
    width: 25%;
    color: #2ba36e;
    font-weight: 600;
    background: #deeae5;
    padding: 15px;
}

@media screen and (max-width: 599px) {
    .me-relation-wrap__list__ttl {
        width: auto;
        padding: 8px;
    }
}

.me-relation-wrap__list__text {
    width: 75%;
    padding: 15px;
}

@media screen and (max-width: 599px) {
    .me-relation-wrap__list__text {
        width: auto;
        padding: 10px 8px;
    }
}

.me-relation-wrap__photo {
    width: 33.6%;
    max-width: 370px;
    margin-left: auto;
}

@media screen and (max-width: 599px) {
    .me-relation-wrap__photo {
        width: auto;
        max-width: 100%;
    }
}

.me-tour-wrap {
    margin-bottom: 80px;
}

@media screen and (max-width: 599px) {
    .me-tour-wrap {
        margin-bottom: 50px;
    }
}

.me-tour-wrap__text {
    margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
    .me-tour-wrap__text {
        margin-bottom: 10px;
    }
}

.me-tour-wrap__contact {
    border: 2px solid #CCC;
    padding: 20px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 599px) {
    .me-tour-wrap__contact {
        display: block;
        padding: 20px;
    }
}

.me-tour-wrap__contact__box {
    width: 50%;
}

@media screen and (max-width: 599px) {
    .me-tour-wrap__contact__box {
        width: auto;
    }
}

.me-tour-wrap__contact__box.mb20 {
    margin-bottom: 0 !important;
}

@media screen and (max-width: 599px) {
    .me-tour-wrap__contact__box.mb20 {
        margin-bottom: 20px !important;
    }
}

.me-tour-wrap__contact__box p {
    text-indent: -1.7em;
    padding-left: 1.7em;
}

.pa-about-wrap {
    margin-bottom: 80px;
}

.pa-about-wrap__read {
    background: #f4f4f4;
    margin-bottom: 20px;
    padding: 20px 30px;
}

@media screen and (max-width: 599px) {
    .pa-about-wrap__read {
        padding: 15px 25px;
    }
}

.pa-about-wrap__read__ttl {
    color: #2ba36e;
    font-size: 1.8rem;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    margin-bottom: 5px;
}

@media screen and (max-width: 599px) {
    .pa-about-wrap__read__ttl {
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 1.4;
    }
}

.pa-about-wrap__read__text {
    line-height: 1.4;
}

.pa-about-wrap__flowimg {
    margin-bottom: 40px;
    text-align: center;
}

.pain-wrap__text {
    margin-bottom: 30px;
}

@media screen and (max-width: 599px) {
    .pain-wrap__text {
        margin-bottom: 20px;
    }
}

.pain-wrap__text2 {
    line-height: 2;
    margin-bottom: 30px;
}

@media screen and (max-width: 599px) {
    .pain-wrap__text2 {
        margin-bottom: 20px;
    }
}

.pain-wrap__definition {
    width: 100%;
    max-width: 680px;
    margin: 0 auto 30px;
    padding: 30px;
    color: #2ba36e;
    font-size: 1.8rem;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 500;
    background: #deeae5;
    text-align: center;
}

@media screen and (max-width: 599px) {
    .pain-wrap__definition {
        font-size: 1.5rem;
        margin: 0 auto 20px;
        padding: 20px;
    }
}

.pain-wrap__addendum__ttl {
    font-size: 1.7rem;
    font-family: "YakuHanJPs_Noto", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
    .pain-wrap__addendum__ttl {
        font-size: 1.5rem;
    }
}

.pain-wrap__addendum__item {
    margin-bottom: 50px;
}

@media screen and (max-width: 599px) {
    .pain-wrap__addendum__item {
        margin-bottom: 30px;
    }
}

.pain-wrap__addendum__item li {
    line-height: 1.6;
    margin-bottom: 7px;
    padding-left: 25px;
    position: relative;
}

.pain-wrap__addendum__item li::before {
    position: absolute;
    content: "";
    top: 10px;
    left: 10px;
    width: 4px;
    height: 4px;
    background: #2ba36e;
}

.pain-wrap__btn {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

@media screen and (max-width: 599px) {
    .pain-wrap__btn {
        width: 70%;
    }
}
/*# sourceMappingURL=style.css.map */