@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
/* ブレイクポイント参考

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

*/
/* レスポンシブサイト非表示 */
/*共通の処理*/
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 835px) {
  .tb834-sp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .tb-sp {
    display: none !important;
  }
}
@media screen and (max-width: 599px) {
  .tb-pc {
    display: none !important;
  }
}
@media screen and (max-width: 834px) {
  .tb834-pc {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
@media print, screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    color: inherit;
  }
}
/*--------------------------------------------------------

	リセット : 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%;
}
@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 120px;
  }
}
@media screen and (max-width: 834px) {
  html {
    scroll-padding-top: 90px;
  }
}
@media screen and (max-width: 599px) {
  html {
    scroll-padding-top: 70px;
  }
}

/*body設定*/
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #000000;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 1.8;
  font-size: 1.6rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  /*任意でフォントサイズを指定*/
}

/*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;
  box-sizing: border-box;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  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: 0;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.1s;
  text-decoration: none;
}

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

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

a:not([class]):visited {
  color: #4f810a;
}

/*すべての要素の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;
  -moz-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;
}

/*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;
  appearance: button;
  border: none;
  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;
}

/* 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;
}

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;
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

/*位置*/
.txt-right {
  text-align: right;
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

/*リンク*/
.tel-link {
  color: #000000;
}
@media screen and (max-width: 834px) {
  .tel-link {
    text-decoration: underline;
  }
}

.text-link {
  color: #5c9200;
  text-decoration: underline;
}
@media print, screen and (min-width: 1025px) {
  .text-link:hover {
    text-decoration: none;
  }
}

/*注釈*/
.note-list > li {
  color: #444444;
  font-size: 1.4rem;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 8px;
}
@media screen and (max-width: 834px) {
  .note-list > li {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .note-list > li {
    font-size: 1.2rem;
  }
}
.note-list > li:last-child {
  margin-bottom: 0 !important;
}

/*マージン*/
.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;
  }
}

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

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

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

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 1024px) {
  .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;
  }
}

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

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 1024px) {
  .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) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 30px !important;
  }
}

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

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

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

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

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mt30 {
    margin-top: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 15px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mt40 {
    margin-top: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

@media print {
  .tb, .tb834, .sp, .w320 {
    display: none !important;
  }
  body {
    width: 1200px;
    -webkit-print-color-adjust: exact;
  }
  .header {
    position: relative !important;
  }
  .main--top {
    padding-top: 0 !important;
  }
  .pagetitle {
    margin-top: 0 !important;
  }
  /*　------- ↓その他参考例　---------
  .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%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
#wysiwyg {
  /*デフォルトの処理*/
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  /*各テンプレートを囲むbox【必須】*/
  /*タイトル処理*/
  /*キャッチコピーの処理*/
  /*本文テキスト・写真回り込み処理*/
  /*ボタン*/
  /*写真の処理*/
  /*リスト*/
  /*テーブル*/
  /*youtube*/
  /*以下テンプレート外*/
}
@media screen and (max-width: 599px) {
  #wysiwyg {
    font-size: 14px;
    line-height: 1.8;
  }
}
#wysiwyg a {
  color: #5c9200;
  text-decoration: underline;
}
#wysiwyg a:hover {
  color: #5c9200;
  text-decoration: none;
}
#wysiwyg img {
  width: auto;
  max-width: 100%;
  height: auto;
}
#wysiwyg .box {
  margin-bottom: 30px;
  *zoom: 1;
}
#wysiwyg .box:before, #wysiwyg .box:after {
  content: "";
  display: table;
}
#wysiwyg .box:after {
  clear: both;
}
@media screen and (max-width: 599px) {
  #wysiwyg .box {
    margin-bottom: 15px;
  }
}
#wysiwyg .title-line01 {
  padding: 0 0 22px 0;
  font-size: 20px;
  line-height: 1.2em;
  color: #000000;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  border-bottom: 2px solid #dddddd;
  position: relative;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-line01 {
    padding: 0 0 10px 0;
    font-size: 17px;
  }
}
#wysiwyg .title-line01::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 130px;
  height: 2px;
  background-color: #76b904;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-line01::before {
    width: 100px;
  }
}
#wysiwyg .title-line02 {
  padding: 0 0 22px 42px;
  font-size: 20px;
  line-height: 1.2em;
  color: #000000;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  border-bottom: 1px solid #cccccc;
  position: relative;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-line02 {
    padding: 0 0 10px 29px;
    font-size: 17px;
  }
}
#wysiwyg .title-line02::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 17px;
  height: 17px;
  border: 5px solid #a1d15e;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-line02::before {
    width: 14px;
    height: 14px;
    border: 4px solid #a1d15e;
  }
}
#wysiwyg .title-line03 {
  padding: 0 0 13px 26px;
  font-size: 18px;
  line-height: 1.2em;
  color: #000000;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  border-bottom: 1px solid #cccccc;
  position: relative;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-line03 {
    padding: 0 0 10px 16px;
    font-size: 16px;
  }
}
#wysiwyg .title-line03::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #76b904;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-line03::before {
    width: 3px;
  }
}
#wysiwyg .title-obi {
  padding: 15px 20px 15px 34px;
  font-size: 17px;
  line-height: 1.2em;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  background-color: #f2f7e9;
  position: relative;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-obi {
    padding: 12px 10px 12px 24px;
    font-size: 16px;
  }
}
#wysiwyg .title-obi::before {
  content: "";
  top: calc((100% - 4px) / 2);
  left: 0;
  width: 18px;
  height: 4px;
  background-color: #76b904;
  position: absolute;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-obi::before {
    top: calc((100% - 3px) / 2);
    width: 16px;
    height: 3px;
  }
}
#wysiwyg .title-icon {
  margin-bottom: -15px;
  padding-left: 1.6em;
  font-size: 18px;
  line-height: 1.2em;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-icon {
    margin-bottom: -5px;
    font-size: 16px;
  }
}
#wysiwyg .title-icon::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #81bb31;
  box-sizing: border-box;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-icon::before {
    width: 12px;
    height: 12px;
  }
}
#wysiwyg .title-icon::after {
  position: absolute;
  content: "";
  top: 8px;
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: #81bb31;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-icon::after {
    width: 6px;
    height: 6px;
  }
}
#wysiwyg .copy01 {
  margin-bottom: -15px;
  font-size: 24px;
  line-height: 1.7;
  font-family: "Noto Sans JP", "游ゴシック", "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: 16px;
  }
}
#wysiwyg .copy02 {
  margin-bottom: -15px;
  font-size: 24px;
  line-height: 1.7;
  color: #559202;
  font-family: "Noto Serif JP", 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: 2em;
  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", 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-wrapper01 {
  text-align: center;
}
#wysiwyg .btn-wrapper01 a {
  display: inline-block;
  position: relative;
  color: #000000;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  padding: 20px 55px 20px 40px;
  border-radius: 60px;
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  #wysiwyg .btn-wrapper01 a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .btn-wrapper01 a {
    font-size: 1.4rem;
    padding: 18px 40px 18px 30px;
  }
}
#wysiwyg .btn-wrapper01 a::before {
  position: absolute;
  content: "";
  top: calc((99.9% - 9px) / 2);
  right: 30px;
  width: 9px;
  height: 9px;
  border-style: solid;
  border-width: 2px;
  border-color: #81bb31;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  #wysiwyg .btn-wrapper01 a::before {
    right: 20px;
  }
}
@media print, screen and (min-width: 1025px) {
  #wysiwyg .btn-wrapper01 a:hover {
    color: #FFFFFF;
    background-color: #5c9200;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0);
    transform: translate(5px, 5px);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #wysiwyg .btn-wrapper01 a:hover::before {
    width: 9px;
    height: 9px;
    border-style: solid;
    border-width: 2px;
    border-color: #FFFFFF;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
#wysiwyg .btn-wrapper02 {
  text-align: center;
}
#wysiwyg .btn-wrapper02 a {
  display: inline-block;
  position: relative;
  color: #FFFFFF;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  background-color: #81bb31;
  padding: 20px 55px 20px 40px;
  border-radius: 60px;
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  #wysiwyg .btn-wrapper02 a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .btn-wrapper02 a {
    font-size: 1.4rem;
    padding: 18px 40px 18px 30px;
  }
}
#wysiwyg .btn-wrapper02 a::before {
  position: absolute;
  content: "";
  top: calc((99.9% - 9px) / 2);
  right: 30px;
  width: 9px;
  height: 9px;
  border-style: solid;
  border-width: 2px;
  border-color: #FFFFFF;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  #wysiwyg .btn-wrapper02 a::before {
    right: 20px;
  }
}
@media print, screen and (min-width: 1025px) {
  #wysiwyg .btn-wrapper02 a:hover {
    background-color: #5c9200;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0);
    transform: translate(5px, 5px);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
#wysiwyg .photo-3 {
  padding: 0;
  list-style: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -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: #f2f7e9;
  list-style: none;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper {
    padding: 20px;
  }
}
#wysiwyg .list-wrapper li {
  margin-top: 10px;
  padding-left: 1.6em;
  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 {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  width: 12px;
  height: 4px;
  background-color: #81bb31;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper li::before {
    top: 8px;
    width: 10px;
    height: 3px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper li {
    margin-top: 7px;
    font-size: 13px;
  }
}
#wysiwyg .table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
#wysiwyg .table thead th {
  padding: 15px 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3em;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #6eab05;
  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;
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3em;
  text-align: center;
  vertical-align: middle;
  background-color: #f2f2f2;
  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;
  color: #333333;
  font-size: 15px;
  line-height: 1.3em;
  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: #5c9200;
}
#wysiwyg h4 {
  font-size: 120%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  color: #5c9200;
}
#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;
}

/*ヘッダー*/
.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: #FFFFFF;
  border-top: 5px solid #dddddd;
  z-index: 100;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 100px;
  }
}
@media screen and (max-width: 834px) {
  .header {
    height: 90px;
    border-top: 4px solid #dddddd;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 70px;
    border-top: 3px solid #dddddd;
  }
}
.header::before {
  position: absolute;
  content: "";
  top: -5px;
  left: 0;
  width: 310px;
  height: 5px;
  background-color: #76b904;
}
@media screen and (max-width: 1024px) {
  .header::before {
    width: 30%;
  }
}
@media screen and (max-width: 834px) {
  .header::before {
    top: -4px;
    height: 4px;
  }
}
@media screen and (max-width: 599px) {
  .header::before {
    width: 40%;
    top: -3px;
    height: 3px;
  }
}

.header-logo {
  display: inline-block;
  padding-left: 25px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header-logo {
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    padding-left: 8px;
  }
}
.header-logo__tagline {
  display: block;
  color: #444444;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header-logo__tagline {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo__tagline {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 320px) {
  .header-logo__tagline {
    font-size: 0.7rem;
  }
}
.header-logo__name {
  display: block;
  color: #000000;
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 14px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header-logo__name {
    font-size: 2.6rem;
    margin-bottom: 9px;
  }
}
@media screen and (max-width: 834px) {
  .header-logo__name {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .header-logo__name {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 4px;
  }
}
.header-logo__en {
  display: block;
  color: #000000;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header-logo__en {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 599px) {
  .header-logo__en {
    font-size: 0.8rem;
  }
}
.header-logo a {
  display: block;
  color: #000000;
}
.header-logo a:hover {
  opacity: 0.6;
}

.header-parts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: calc(100% - 275px);
  height: 100%;
  padding-top: 17px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header-parts {
    display: none;
  }
}
.header-parts__tel-box {
  margin-right: 26px;
  margin-bottom: 16px;
}
@media print, screen and (max-width: 1200px) {
  .header-parts__tel-box {
    margin-right: 18px;
  }
}
.header-parts__tel-box__tel {
  display: block;
  color: #000000;
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1;
  background-image: url(../img/common/icon_tel.svg);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 36px auto;
  padding: 3px 0 3px 52px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .header-parts__tel-box__tel {
    font-size: 2.8rem;
    background-size: 34px auto;
    padding: 3px 0 3px 49px;
  }
}

.header-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header-nav__list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border-right: 1px solid #c0dd98;
  padding: 1px 34px;
}
@media print, screen and (max-width: 1200px) {
  .header-nav__list__item {
    padding: 1px 26px;
  }
}
.header-nav__list__item::before {
  position: absolute;
  content: "";
  top: 0;
  right: -1px;
  width: 1px;
  height: 9px;
  background-color: #006633;
}
.header-nav__list__item:last-child {
  border-right: none !important;
}
.header-nav__list__item:last-child::before {
  display: none !important;
}
.header-nav__list__link {
  position: relative;
  display: block;
  color: #000000;
  font-weight: 500;
  line-height: 1.4;
}
@media print, screen and (max-width: 1200px) {
  .header-nav__list__link {
    font-size: 1.5rem;
  }
}
.header-nav__list__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #81bb31;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.header-nav__list__link:hover {
  color: #4f810a;
}
.header-nav__list__link:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.header-nav__list__link.active {
  color: #4f810a;
}
.header-nav__list__link.active::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

.header-sp-tel {
  position: absolute;
  top: 20px;
  right: 90px;
  width: 55px;
}
@media print, screen and (min-width: 1025px) {
  .header-sp-tel {
    display: none;
  }
}
@media screen and (max-width: 834px) {
  .header-sp-tel {
    width: 45px;
  }
}
@media screen and (max-width: 599px) {
  .header-sp-tel {
    top: 16px;
    right: 70px;
    width: 35px;
  }
}
.header-sp-tel a {
  display: block;
}
.header-sp-tel a img {
  width: 100%;
}

@media print, screen and (min-width: 1025px) {
  .header-sp {
    display: none;
  }
}
.header-sp__logo {
  display: inline-block;
  position: absolute;
  top: 23px;
  left: 21px;
}
@media screen and (max-width: 834px) {
  .header-sp__logo {
    top: 19px;
  }
}
@media screen and (max-width: 599px) {
  .header-sp__logo {
    top: 15px;
    left: 8px;
  }
}
.header-sp__logo__tagline {
  display: block;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header-sp__logo__tagline {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 599px) {
  .header-sp__logo__tagline {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 320px) {
  .header-sp__logo__tagline {
    font-size: 0.7rem;
  }
}
.header-sp__logo__name {
  display: block;
  color: #FFFFFF;
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 14px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header-sp__logo__name {
    font-size: 2.6rem;
    margin-bottom: 9px;
  }
}
@media screen and (max-width: 834px) {
  .header-sp__logo__name {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .header-sp__logo__name {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 4px;
  }
}
.header-sp__logo__en {
  display: block;
  color: #FFFFFF;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header-sp__logo__en {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 599px) {
  .header-sp__logo__en {
    font-size: 0.8rem;
  }
}
.header-sp__list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.header-sp__list__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header-sp__list__item__link {
  position: relative;
  display: block;
  padding: 15px 20px 15px 50px;
  color: #fff !important;
}
@media screen and (max-width: 599px) {
  .header-sp__list__item__link {
    padding: 12px 20px 12px 35px;
  }
}
.header-sp__list__item__link::before {
  position: absolute;
  content: "";
  top: calc((99.9% - 9px) / 2);
  left: 20px;
  width: 9px;
  height: 9px;
  border-style: solid;
  border-width: 2px;
  border-color: #ffffff;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .header-sp__list__item__link::before {
    left: 10px;
  }
}
.header-sp__list__item--sub {
  position: relative;
}
.header-sp__list__item--sub .header-sp__list__item__link {
  position: relative;
  margin-right: 58px;
}
@media screen and (max-width: 599px) {
  .header-sp__list__item--sub .header-sp__list__item__link {
    margin-right: 53px;
  }
}
.header-sp__list__item--sub .header-sp__list__item__link::after {
  position: absolute;
  content: "";
  top: 10px;
  right: 0;
  width: 1px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 599px) {
  .header-sp__list__item--sub .header-sp__list__item__link::after {
    height: 33px;
  }
}
.header-sp__list__item--sub__ac-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .header-sp__list__item--sub__ac-btn {
    width: 53px;
    height: 53px;
  }
}
.header-sp__list__item--sub__ac-btn::before, .header-sp__list__item--sub__ac-btn::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  margin: auto;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.header-sp__list__item--sub__ac-btn::before {
  top: 28px;
  right: 19px;
  width: 19px;
  height: 1px;
}
@media screen and (max-width: 599px) {
  .header-sp__list__item--sub__ac-btn::before {
    top: 26px;
    right: 18px;
    width: 15px;
  }
}
.header-sp__list__item--sub__ac-btn::after {
  top: 19px;
  right: 28px;
  width: 1px;
  height: 19px;
}
@media screen and (max-width: 599px) {
  .header-sp__list__item--sub__ac-btn::after {
    right: 25px;
    height: 15px;
  }
}
.header-sp__list__item--sub__ac-btn.active::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.header-sp__list__item--sub__ac-btn.active::after {
  -webkit-transform: rotate(-270deg);
  transform: rotate(-270deg);
}
.header-sp__list__item--sub__ac-list {
  display: none;
  background-color: #5a891a;
}
.header-sp__list__item--sub__ac-list > li {
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}
.header-sp__list__item--sub__ac-list > li > a {
  display: block;
  padding: 15px 20px 15px 50px;
  color: #fff !important;
}
@media screen and (max-width: 599px) {
  .header-sp__list__item--sub__ac-list > li > a {
    padding: 12px 20px 12px 35px;
  }
}

#nav-open {
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  width: 30px;
  height: 30px;
  margin: auto 0;
  border-radius: 5px;
  z-index: 100;
}
@media print, screen and (min-width: 1025px) {
  #nav-open {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  #nav-open {
    right: 20px;
  }
}
#nav-open > span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
#nav-open > span > span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  transition: all 0.3s ease;
}
#nav-open > span > span::before, #nav-open > span > span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  background-color: #4f810a;
  transition: all 0.3s cubic-bezier(0.29, -0.25, 0.74, 1.27);
}
#nav-open > span > span::before {
  top: 10px;
  width: 100%;
}
#nav-open > span > span::after {
  bottom: 10px;
  width: 80%;
}
#nav-open.active > span > span::before, #nav-open.active > span > span::after {
  top: 15px;
  background-color: #fff;
}
#nav-open.active > span > span::before {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
#nav-open.active > span > span::after {
  width: 100%;
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

#nav-content {
  overflow: scroll;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: 60%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 60px;
  background-color: #4f810a;
  transition: all 0.3s ease;
  pointer-events: none;
  opacity: 0;
}
@media print, screen and (min-width: 1025px) {
  #nav-content {
    display: none;
  }
}
@media screen and (max-width: 834px) {
  #nav-content {
    padding-top: 90px;
  }
}
@media screen and (max-width: 599px) {
  #nav-content {
    width: 100%;
    padding-top: 70px;
  }
}

#nav-close-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  z-index: 10;
  cursor: auto;
}

#nav-input {
  display: none;
}
#nav-input:checked ~ #nav-content {
  pointer-events: auto;
  opacity: 1;
}
#nav-input:checked ~ #nav-close-overlay {
  display: block;
  opacity: 0.5;
}

.footer .footer-prof {
  padding: 80px 40px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .footer .footer-prof {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 834px) {
  .footer .footer-prof {
    padding: 20px 30px 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer .footer-prof {
    padding: 10px 20px 30px;
  }
}
.footer .footer-prof__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 834px) {
  .footer .footer-prof__box {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.footer .footer-prof__box__body {
  width: 450px;
}
@media screen and (max-width: 834px) {
  .footer .footer-prof__box__body {
    width: 100%;
  }
}
.footer .footer-prof__box__body__logo {
  position: relative;
  padding: 42px 0 52px;
}
@media screen and (max-width: 1024px) {
  .footer .footer-prof__box__body__logo {
    padding: 37px 0 47px;
  }
}
@media screen and (max-width: 834px) {
  .footer .footer-prof__box__body__logo {
    padding: 39px 0 49px;
  }
}
@media screen and (max-width: 599px) {
  .footer .footer-prof__box__body__logo {
    padding: 31px 0 41px;
  }
}
.footer .footer-prof__box__body__logo::before {
  position: absolute;
  content: "";
  top: 0;
  left: -58px;
  width: 170px;
  height: 170px;
  background-color: #ecf3e0;
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .footer .footer-prof__box__body__logo::before {
    left: -43px;
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 599px) {
  .footer .footer-prof__box__body__logo::before {
    left: -32px;
    width: 130px;
    height: 130px;
  }
}
.footer .footer-prof__box__body__logo__name {
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 8px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .footer .footer-prof__box__body__logo__name {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .footer .footer-prof__box__body__logo__name {
    font-size: 2.4rem;
    font-weight: 500;
  }
}
.footer .footer-prof__box__body__logo__en {
  color: #000000;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .footer .footer-prof__box__body__logo__en {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 599px) {
  .footer .footer-prof__box__body__logo__en {
    font-size: 0.8rem;
  }
}
.footer .footer-prof__box__body__logo__text {
  color: #444444;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 20px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .footer .footer-prof__box__body__logo__text {
    font-size: 1.5rem;
    margin-top: 18px;
  }
}
@media screen and (max-width: 834px) {
  .footer .footer-prof__box__body__logo__text {
    font-size: 1.3rem;
    margin-top: 15px;
  }
}
.footer .footer-prof__box__body__tel-box {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .footer .footer-prof__box__body__tel-box {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 834px) {
  .footer .footer-prof__box__body__tel-box {
    margin-bottom: 20px;
  }
}
.footer .footer-prof__box__body__tel-box__text {
  line-height: 1.25;
  margin-bottom: 10px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .footer .footer-prof__box__body__tel-box__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .footer .footer-prof__box__body__tel-box__text {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
}
.footer .footer-prof__box__body__tel-box__tel {
  display: block;
  color: #000000;
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1;
  background-image: url(../img/common/icon_tel.svg);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 36px auto;
  padding: 3px 0 3px 52px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .footer .footer-prof__box__body__tel-box__tel {
    font-size: 2.8rem;
    background-size: 34px auto;
    padding: 3px 0 3px 49px;
  }
}
@media screen and (max-width: 599px) {
  .footer .footer-prof__box__body__tel-box__tel {
    font-size: 2.6rem;
    background-size: 32px auto;
    padding: 3px 0 3px 46px;
  }
}
.footer .footer-prof__box__body__add {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .footer .footer-prof__box__body__add {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 834px) {
  .footer .footer-prof__box__body__add {
    margin-bottom: 20px;
  }
}
.footer .footer-prof__box__body__add__text01 {
  line-height: 1.25;
  background-image: url(../img/common/icon_marker.svg);
  background-position: left top 3px;
  background-repeat: no-repeat;
  background-size: 11px auto;
  padding-left: 26px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .footer .footer-prof__box__body__add__text01 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .footer .footer-prof__box__body__add__text01 {
    font-size: 1.3rem;
    background-position: left top 2px;
    background-size: 9px auto;
    padding-left: 18px;
  }
}
.footer .footer-prof__box__body__add__text02 {
  line-height: 1.25;
  background-image: url(../img/common/icon_person.svg);
  background-position: left top 2px;
  background-repeat: no-repeat;
  background-size: 12px auto;
  padding-left: 26px;
  padding-bottom: 1px;
  margin-top: 5px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .footer .footer-prof__box__body__add__text02 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .footer .footer-prof__box__body__add__text02 {
    font-size: 1.3rem;
    background-position: left top 1px;
    background-size: 10px auto;
    padding-left: 18px;
  }
}
.footer .footer-prof__box__map {
  position: relative;
  width: calc(99.9% - 450px - 4.6%);
  margin-left: 4.6%;
  overflow: hidden;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (max-width: 1400px) {
  .footer .footer-prof__box__map {
    width: calc(99.9% - 450px - 3.6%);
    margin-left: 3.6%;
  }
}
@media screen and (max-width: 834px) {
  .footer .footer-prof__box__map {
    width: 100%;
    padding-bottom: 50.5%;
    margin-top: 30px;
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .footer .footer-prof__box__map {
    padding-bottom: 74.5%;
    margin-top: 20px;
  }
}
.footer .footer-prof__box__map iframe,
.footer .footer-prof__box__map object,
.footer .footer-prof__box__map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer .footer-copy {
  border-top: 1px solid #cccccc;
  padding: 28px 40px;
}
@media screen and (max-width: 1024px) {
  .footer .footer-copy {
    padding: 23px 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer .footer-copy {
    padding: 18px 20px;
  }
}
.footer .footer-copy__txt {
  color: #666666;
  font-size: 1rem;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 599px) {
  .footer .footer-copy__txt {
    font-size: 0.9rem;
    text-align: center;
  }
}

/*ページトップ*/
.pagetop {
  position: fixed;
  bottom: 137px;
  right: 45px;
  width: 60px;
  height: 60px;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .pagetop {
    display: none !important;
  }
}
.pagetop > a {
  position: relative;
  display: block;
  height: 100%;
  background-color: #81bb31;
  border-radius: 50%;
}
.pagetop > a::before {
  position: absolute;
  content: "";
  top: 24px;
  left: calc((100% - 20px) / 2);
  width: 20px;
  height: 20px;
  border-style: solid;
  border-width: 4px;
  border-color: #ffffff;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
@media print, screen and (min-width: 1025px) {
  .pagetop > a:hover {
    background-color: #4f810a;
  }
}

.hl01 {
  position: relative;
  text-align: center;
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  .hl01 {
    padding-top: 25px;
  }
}
.hl01::before {
  position: absolute;
  content: "";
  top: 0;
  left: calc((100% - 250px) / 2);
  width: 250px;
  height: 1px;
  background-color: #81bb31;
}
@media screen and (max-width: 1024px) {
  .hl01::before {
    left: calc((100% - 225px) / 2);
    width: 225px;
  }
}
@media screen and (max-width: 599px) {
  .hl01::before {
    left: calc((100% - 200px) / 2);
    width: 200px;
  }
}
.hl01::after {
  position: absolute;
  content: "";
  top: 0;
  left: calc((100% - 130px) / 2);
  width: 130px;
  height: 4px;
  background-color: #81bb31;
}
@media screen and (max-width: 1024px) {
  .hl01::after {
    left: calc((100% - 117px) / 2);
    width: 117px;
  }
}
@media screen and (max-width: 599px) {
  .hl01::after {
    left: calc((100% - 104px) / 2);
    width: 104px;
  }
}
.hl01__jp {
  display: block;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .hl01__jp {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .hl01__jp {
    font-size: 2rem;
  }
}
.hl01__en {
  display: block;
  color: #4f810a;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .hl01__en {
    font-size: 0.9rem;
    margin-top: 12px;
  }
}
@media screen and (max-width: 599px) {
  .hl01__en {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}

.hl02 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.25;
  border-bottom: 4px solid #cbe4a0;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .hl02 {
    border-bottom: 3px solid #cbe4a0;
  }
}
@media screen and (max-width: 834px) {
  .hl02 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .hl02 {
    padding-bottom: 15px;
  }
}
.hl02::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -4px;
  width: 100px;
  height: 4px;
  background-color: #76b904;
}
@media screen and (max-width: 1024px) {
  .hl02::before {
    bottom: -3px;
    width: 90px;
    height: 3px;
  }
}
@media screen and (max-width: 599px) {
  .hl02::before {
    width: 80px;
  }
}
.hl02--green {
  color: #497e00;
}

.hl03 {
  color: #619914;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.25;
  border-bottom: 1px solid #76b904;
  padding-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .hl03 {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .hl03 {
    font-size: 1.7rem;
  }
}

.hl04 {
  position: relative;
  color: #000000;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
  border-top: 1px solid #81bb31;
  padding: 20px 0 8px 30px;
}
@media screen and (max-width: 834px) {
  .hl04 {
    font-size: 1.8rem;
    padding: 15px 0 5px 25px;
  }
}
@media screen and (max-width: 599px) {
  .hl04 {
    font-size: 1.6rem;
    padding: 15px 0 3px 20px;
  }
}
.hl04::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #81bb31;
}
@media screen and (max-width: 599px) {
  .hl04::before {
    width: 3px;
  }
}

.hl05 {
  position: relative;
  color: #497e00;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .hl05 {
    font-size: 1.9rem;
    padding-bottom: 17px;
  }
}
@media screen and (max-width: 599px) {
  .hl05 {
    font-size: 1.6rem;
    padding-bottom: 16px;
  }
}
.hl05::before {
  position: absolute;
  content: "";
  left: calc((100% - 30px) / 2);
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #81bb31;
}
@media screen and (max-width: 834px) {
  .hl05::before {
    left: calc((100% - 26px) / 2);
    width: 26px;
    height: 1px;
  }
}

.hl06 {
  position: relative;
  color: #000000;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.25;
  border-bottom: 1px solid #cccccc;
  padding-left: 35px;
  padding-bottom: 25px;
}
@media screen and (max-width: 834px) {
  .hl06 {
    font-size: 1.7rem;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .hl06 {
    font-size: 1.6rem;
    padding-left: 30px;
    padding-bottom: 15px;
  }
}
.hl06::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 17px;
  height: 17px;
  border: 5px solid #a1d15e;
  border-radius: 50%;
  box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  .hl06::before {
    top: 4px;
  }
}
@media screen and (max-width: 599px) {
  .hl06::before {
    top: 3px;
    width: 15px;
    height: 15px;
    border: 4px solid #a1d15e;
  }
}

.breadcrumb-wrapper {
  text-align: right;
  padding-top: 5px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (max-width: 1400px) {
  .breadcrumb-wrapper {
    padding-top: 0;
  }
}
.breadcrumb-wrapper__list {
  line-height: 1;
}
.breadcrumb-wrapper__list > li {
  position: relative;
  display: inline-block;
  color: #444444;
  font-size: 1.2rem;
  line-height: 1;
  padding-left: 3em;
}
@media screen and (max-width: 1024px) {
  .breadcrumb-wrapper__list > li {
    font-size: 1.1rem;
    padding-left: 2.5em;
  }
}
@media screen and (max-width: 834px) {
  .breadcrumb-wrapper__list > li {
    font-size: 1rem;
    padding-left: 2em;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumb-wrapper__list > li {
    font-size: 0.9rem;
    padding-left: 1.5em;
  }
}
.breadcrumb-wrapper__list > li::before {
  position: absolute;
  content: "／";
  top: 0;
  left: 1em;
  width: 1em;
  height: 1em;
  color: #000000;
}
@media screen and (max-width: 1024px) {
  .breadcrumb-wrapper__list > li::before {
    left: 0.6em;
  }
}
@media screen and (max-width: 834px) {
  .breadcrumb-wrapper__list > li::before {
    left: 0.3em;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumb-wrapper__list > li::before {
    left: 0.1em;
  }
}
.breadcrumb-wrapper__list > li a {
  color: #5c9200;
}
.breadcrumb-wrapper__list > li a:hover {
  text-decoration: underline;
}
.breadcrumb-wrapper__list > li:nth-child(1) {
  padding-left: 0;
}
.breadcrumb-wrapper__list > li:nth-child(1)::before {
  display: none;
}

/*ボタン*/
.btn {
  display: block;
  position: relative;
  color: #000000;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  padding: 20px 40px 20px 40px;
  border-radius: 60px;
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .btn {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .btn {
    font-size: 1.4rem;
    padding: 18px 30px 18px 30px;
  }
}
.btn::before {
  position: absolute;
  content: "";
  top: calc((99.9% - 9px) / 2);
  right: 30px;
  width: 9px;
  height: 9px;
  border-style: solid;
  border-width: 2px;
  border-color: #81bb31;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .btn::before {
    right: 20px;
  }
}
@media print, screen and (min-width: 1025px) {
  .btn:hover {
    color: #FFFFFF;
    background-color: #5c9200;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0);
    transform: translate(5px, 5px);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .btn:hover::before {
    width: 9px;
    height: 9px;
    border-style: solid;
    border-width: 2px;
    border-color: #FFFFFF;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.btn--bg01 {
  color: #FFFFFF;
  background-color: #81bb31;
}
.btn--bg01::before {
  width: 9px;
  height: 9px;
  border-style: solid;
  border-width: 2px;
  border-color: #FFFFFF;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn--back {
  color: #FFFFFF;
  background-color: #81bb31;
}
.btn--back::before {
  right: auto;
  left: 30px;
  width: 9px;
  height: 9px;
  border-style: solid;
  border-width: 2px;
  border-color: #FFFFFF;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media screen and (max-width: 599px) {
  .btn--back::before {
    left: 20px;
  }
}
@media print, screen and (min-width: 1025px) {
  .btn--back:hover::before {
    width: 9px;
    height: 9px;
    border-style: solid;
    border-width: 2px;
    border-color: #FFFFFF;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}

.btn02 {
  display: block;
  position: relative;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  padding: 20px 30px 20px 30px;
  border-radius: 10px 10px 0 10px;
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .btn02 {
    font-size: 1.4rem;
    padding: 18px 25px 18px 25px;
  }
}
.btn02::before {
  position: absolute;
  content: "";
  right: 10px;
  bottom: 10px;
  border-width: 12px;
  border-style: solid;
  border-color: transparent #81bb31 #81bb31 transparent;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .btn02::before {
    right: 8px;
    bottom: 8px;
    border-width: 10px;
  }
}
@media print, screen and (min-width: 1025px) {
  .btn02:hover {
    color: #FFFFFF;
    background-color: #5c9200;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0);
    transform: translate(5px, 5px);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .btn02:hover::before {
    border-color: transparent #ffffff #ffffff transparent;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

.main {
  background-color: #FFFFFF;
  padding-top: 80px;
}
@media screen and (max-width: 1024px) {
  .main {
    padding-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .main {
    padding-top: 50px;
  }
}
.main--top {
  padding-top: 120px;
}
@media screen and (max-width: 1024px) {
  .main--top {
    padding-top: 100px;
  }
}
@media screen and (max-width: 834px) {
  .main--top {
    padding-top: 90px;
  }
}
@media screen and (max-width: 599px) {
  .main--top {
    padding-top: 70px;
  }
}
.main--border {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .main--border {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .main--border {
    padding-bottom: 60px;
  }
}

/*横幅*/
.w1100 {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.w1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.w1300 {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/*NEW*/
.new {
  display: inline-block;
  color: #ff0000;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: 0.05em;
  margin-left: 12px;
}
@media screen and (max-width: 834px) {
  .new {
    margin-left: 8px;
  }
}

/*NEWS*/
.news-box {
  position: relative;
  display: block;
  word-break: break-all;
}
.news-box::before, .news-box::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 0;
  background-color: #f6f9f1;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.news-box::before {
  top: 50%;
}
.news-box::after {
  bottom: 50%;
}
.news-box__inr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  padding: 30px 58px 30px 58px;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .news-box__inr {
    padding: 25px 53px 25px 53px;
  }
}
@media screen and (max-width: 599px) {
  .news-box__inr {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 48px 20px 48px;
  }
}
.news-box__inr::before {
  position: absolute;
  content: "";
  top: 39px;
  left: 20px;
  width: 12px;
  height: 12px;
  border: 3px solid #a1d15e;
  border-radius: 50%;
  box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  .news-box__inr::before {
    top: 34px;
  }
}
@media screen and (max-width: 599px) {
  .news-box__inr::before {
    top: 29px;
  }
}
.news-box__inr::after {
  position: absolute;
  content: "";
  top: calc((100% - 22px) / 2);
  right: 30px;
  width: 22px;
  height: 22px;
  border-style: solid;
  border-width: 4px;
  border-color: #c0dd98;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 834px) {
  .news-box__inr::after {
    top: calc((100% - 18px) / 2);
    right: 20px;
    width: 18px;
    height: 18px;
    border-style: solid;
    border-width: 3px;
    border-color: #c0dd98;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 599px) {
  .news-box__inr::after {
    top: calc((100% - 14px) / 2);
    width: 14px;
    height: 14px;
    border-style: solid;
    border-width: 3px;
    border-color: #c0dd98;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.news-box__date {
  width: 110px;
  color: #4f810a;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .news-box__date {
    width: 100px;
  }
}
@media screen and (max-width: 599px) {
  .news-box__date {
    width: 100%;
  }
}
.news-box__text {
  width: calc(100% - 110px);
  color: #333333;
  font-size: 1.5rem;
  font-weight: 500;
  padding-left: 15px;
}
@media screen and (max-width: 834px) {
  .news-box__text {
    width: calc(100% - 100px);
    padding-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .news-box__text {
    width: 100%;
    margin-top: 5px;
  }
}
.news-box:hover::before {
  height: 50%;
}
.news-box:hover::after {
  height: 50%;
}
@media screen and (max-width: 834px) {
  .news-box--top .news-box__inr {
    padding: 25px 38px 25px 38px;
  }
}
@media screen and (max-width: 599px) {
  .news-box--top .news-box__inr {
    padding: 20px 33px 20px 33px;
  }
}
@media screen and (max-width: 834px) {
  .news-box--top .news-box__inr::before {
    left: 5px;
  }
}
@media screen and (max-width: 834px) {
  .news-box--top .news-box__inr::after {
    right: 10px;
  }
}

.pager {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 599px) {
  .pager {
    margin-top: 40px;
  }
}
.pager__item {
  margin-left: 6px;
}
@media screen and (max-width: 599px) {
  .pager__item {
    margin-left: 5px;
  }
}
.pager__item:first-child {
  margin-left: 0;
}
.pager__item__link {
  display: block;
  width: 50px;
  height: 50px;
  color: #81bb31;
  font-weight: 400;
  line-height: 47px;
  text-align: center;
  border: #81bb31 solid 1px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .pager__item__link {
    width: 44px;
    height: 44px;
    line-height: 41px;
  }
}
@media screen and (max-width: 599px) {
  .pager__item__link {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
    line-height: 35px;
  }
}
@media print, screen and (min-width: 1025px) {
  .pager__item__link:hover {
    color: #FFFFFF;
    background-color: #81bb31;
  }
}
.pager__item__link.now {
  color: #FFFFFF;
  background-color: #81bb31;
}
.pager__item__prev, .pager__item__next {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  text-decoration: none !important;
  background-color: #ecf3e0;
  border-radius: 50%;
}
.pager__item__prev::before, .pager__item__next::before {
  position: absolute;
  content: "";
  top: 7px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .pager__item__prev:hover, .pager__item__next:hover {
    background-color: #81bb31;
  }
  .pager__item__prev:hover::before, .pager__item__next:hover::before {
    border-color: #ecf3e0;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.pager__item__prev {
  margin-right: 25px;
}
@media screen and (max-width: 834px) {
  .pager__item__prev {
    margin-right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .pager__item__prev {
    margin-right: 8px;
  }
}
.pager__item__prev::before {
  left: 9px;
  width: 7px;
  height: 7px;
  border-style: solid;
  border-width: 2px;
  border-color: #81bb31;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.pager__item__next {
  margin-left: 25px;
}
@media screen and (max-width: 834px) {
  .pager__item__next {
    margin-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .pager__item__next {
    margin-left: 8px;
  }
}
.pager__item__next::before {
  right: 9px;
  width: 7px;
  height: 7px;
  border-style: solid;
  border-width: 2px;
  border-color: #81bb31;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*--------------------------------------------------------
pagetitle
----------------------------------------------------------*/
.pagetitle {
  position: relative;
  background-color: #f2f7e9;
  padding: 90px 40px 50px;
  margin-top: 120px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (max-width: 1400px) {
  .pagetitle {
    padding: 88px 40px 35px;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    padding: 74px 30px 30px;
    margin-top: 100px;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle {
    padding: 68px 30px 25px;
    margin-top: 90px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    padding: 52px 20px 15px;
    margin-top: 70px;
  }
}
.pagetitle::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #c8e696;
}
@media screen and (max-width: 1024px) {
  .pagetitle::before {
    height: 34px;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle::before {
    height: 28px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle::before {
    height: 22px;
  }
}
.pagetitle__inr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (max-width: 1400px) {
  .pagetitle__inr {
    display: block;
  }
}
.pagetitle__title {
  position: relative;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
  border-left: #76b904 solid 1px;
  padding-left: 28px;
  z-index: 1;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .pagetitle__title {
    font-size: 2.1rem;
    padding-left: 23px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title {
    font-size: 1.8rem;
    padding-left: 18px;
  }
}
.pagetitle__title::before {
  position: absolute;
  content: "";
  top: 0;
  left: -1px;
  width: 4px;
  height: 38px;
  background-color: #76b904;
}
@media screen and (max-width: 1024px) {
  .pagetitle__title::before {
    height: 34px;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle__title::before {
    height: 30px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title::before {
    height: 27px;
  }
}
.pagetitle__title span {
  display: block;
  color: #629818;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  padding-left: 3px;
  margin-top: 8px;
}
@media screen and (max-width: 834px) {
  .pagetitle__title span {
    font-size: 0.9rem;
    margin-top: 5px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title span {
    font-size: 0.8rem;
    margin-top: 3px;
  }
}
/*--------------------------------------------------------
table
----------------------------------------------------------*/
.tbl-schedule {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-right: #ffffff solid 1px;
  border-bottom: #ffffff solid 1px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.tbl-schedule th, .tbl-schedule td {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  vertical-align: middle;
  border-top: #ffffff solid 1px;
  border-left: #ffffff solid 1px;
  padding: 9px 5px 10px;
  box-sizing: border-box;
  word-break: break-all;
}
@media screen and (max-width: 834px) {
  .tbl-schedule th, .tbl-schedule td {
    font-size: 1.4rem;
    padding: 7px 5px 8px;
  }
}
@media screen and (max-width: 599px) {
  .tbl-schedule th, .tbl-schedule td {
    font-size: 1.3rem;
    padding: 5px 3px 6px;
  }
}
.tbl-schedule thead th {
  color: #ffffff;
  background-color: #5c9200;
}
.tbl-schedule tbody th {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 400;
  background-color: #6eab05;
}
@media screen and (max-width: 834px) {
  .tbl-schedule tbody th {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .tbl-schedule tbody th {
    font-size: 1.4rem;
  }
}
.tbl-schedule tbody td {
  color: #019048;
  font-weight: 500;
  text-align: center;
  background-color: #ddeec0;
}
.tbl-schedule tbody td .fc {
  color: #006633;
}
.tbl-schedule--br {
  border-radius: 10px 0 0 0;
}
.tbl-schedule--br thead th:nth-child(1) {
  border-radius: 10px 0 0 0;
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
.top-main-wrapper {
  position: relative;
}
.top-main-wrapper__slider {
  position: relative;
  overflow: hidden;
}
.top-main-wrapper__slider .bx-wrapper {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
}
.top-main-wrapper__slider__catch {
  position: absolute;
  top: 0;
  left: 10%;
  bottom: 0;
  width: 196px;
  height: 358px;
  margin: auto;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-main-wrapper__slider__catch {
    width: 186px;
    height: 340px;
  }
}
@media screen and (max-width: 834px) {
  .top-main-wrapper__slider__catch {
    width: 146px;
    height: 267px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-wrapper__slider__catch {
    width: 106px;
    height: 194px;
  }
}
@media screen and (max-width: 320px) {
  .top-main-wrapper__slider__catch {
    width: 96px;
    height: 175px;
  }
}
.top-main-wrapper__slider__catch img {
  width: 100%;
}
.top-main-wrapper__schedule {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (min-width: 835px) {
  .top-main-wrapper__schedule {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 580px;
    background-color: #ffffff;
    border-radius: 20px 0 0 0;
    padding: 19px 19px 0;
  }
}
@media print, screen and (min-width: 835px) and (max-width: 1200px) {
  .top-main-wrapper__schedule {
    width: 480px;
  }
}
@media print, screen and (min-width: 835px) {
  .top-main-wrapper__schedule::before {
    position: absolute;
    content: "";
    left: -24px;
    bottom: 0;
    width: 24px;
    height: 21px;
    background-image: url(../img/top/bg_schedule.svg);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 834px) {
  .top-main-wrapper__schedule {
    background-color: #eeeeee;
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-wrapper__schedule {
    padding: 20px;
  }
}
.top-main-wrapper__schedule__prof {
  background-color: #eeeeee;
  padding: 7px 24px 8px;
  margin-top: 19px;
}
@media screen and (max-width: 834px) {
  .top-main-wrapper__schedule__prof {
    background-color: #ffffff;
    padding: 12px 24px 13px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-wrapper__schedule__prof {
    padding: 7px 20px 8px;
  }
}
.top-main-wrapper__schedule__prof__text {
  color: #444444;
  font-size: 1.5rem;
  line-height: 1.25;
}
@media screen and (max-width: 834px) {
  .top-main-wrapper__schedule__prof__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main-wrapper__schedule__prof__text {
    font-size: 1.3rem;
  }
}
.top-main-wrapper__schedule__prof__text__name {
  color: #006633;
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 834px) {
  .top-main-wrapper__schedule__prof__text__name {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main-wrapper__schedule__prof__text__name {
    font-size: 1.6rem;
  }
}
.top-main-wrapper__schedule__prof__text__color {
  color: #006633;
}

.top-main-slider__item {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item {
    height: calc(100vh - 100px);
  }
}
@media screen and (max-width: 834px) {
  .top-main-slider__item {
    height: 400px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item {
    height: 280px;
  }
}
.top-main-slider__item--img01 {
  background-image: url("../img/top/main-slider01.webp");
}
.top-main-slider__item--img02 {
  background-image: url("../img/top/main-slider02.webp");
}
@media print, screen and (max-width: 1200px) {
  .top-main-slider__item--img02 {
    background-position: left 9% center;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item--img02 {
    background-position: left 17% center;
  }
}
@media screen and (max-width: 834px) {
  .top-main-slider__item--img02 {
    background-position: left center;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item--img02 {
    background-position: left 17% center;
  }
}
.top-main-slider__item--img03 {
  background-image: url("../img/top/main-slider03.webp");
}

.top-worry-wrapper {
  padding: 60px 40px 80px;
}
@media screen and (max-width: 1024px) {
  .top-worry-wrapper {
    padding: 40px 40px 60px;
  }
}
@media screen and (max-width: 834px) {
  .top-worry-wrapper {
    padding: 30px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-worry-wrapper {
    padding: 30px 20px 40px;
  }
}
.top-worry-wrapper__inr {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.top-worry-wrapper__read {
  position: relative;
  width: 100%;
  max-width: 844px;
  padding: 60px 0 60px 100px;
  margin: 0 auto 80px;
  box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  .top-worry-wrapper__read {
    padding: 60px 0 60px 80px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-worry-wrapper__read {
    width: calc(100% + 20px);
    padding: 40px 0 0 40px;
    margin: 0 0 60px -20px;
  }
}
.top-worry-wrapper__read::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 240px;
  height: 240px;
  background-color: #ecf3e0;
  border-radius: 50%;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .top-worry-wrapper__read::before {
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 599px) {
  .top-worry-wrapper__read::before {
    width: 180px;
    height: 180px;
  }
}
.top-worry-wrapper__read__text01 {
  position: relative;
  color: #6ca61c;
  font-size: 3rem;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .top-worry-wrapper__read__text01 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 834px) {
  .top-worry-wrapper__read__text01 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-worry-wrapper__read__text01 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
}
.top-worry-wrapper__read__text02 {
  position: relative;
  color: #444444;
}
@media screen and (max-width: 834px) {
  .top-worry-wrapper__read__text02 {
    font-size: 1.5rem;
  }
}
.top-worry-wrapper__list > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .top-worry-wrapper__list > li {
    width: calc((99.9% - 3.5% * (4 - 1)) / 4);
    margin-top: 3.5%;
    margin-right: 3.5%;
  }
  .top-worry-wrapper__list > li:nth-child(4n) {
    margin-right: 0;
  }
  .top-worry-wrapper__list > li:nth-child(1) {
    margin-top: 0;
  }
  .top-worry-wrapper__list > li:nth-child(2) {
    margin-top: 0;
  }
  .top-worry-wrapper__list > li:nth-child(3) {
    margin-top: 0;
  }
  .top-worry-wrapper__list > li:nth-child(4) {
    margin-top: 0;
  }
  .top-worry-wrapper__list > li:nth-child(4n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .top-worry-wrapper__list > li {
    width: calc((99.9% - 3.5% * (2 - 1)) / 2);
    margin-top: 6%;
    margin-right: 3.5%;
  }
  .top-worry-wrapper__list > li:nth-child(2n) {
    margin-right: 0;
  }
  .top-worry-wrapper__list > li:nth-child(1) {
    margin-top: 0;
  }
  .top-worry-wrapper__list > li:nth-child(2) {
    margin-top: 0;
  }
  .top-worry-wrapper__list > li:nth-child(2n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .top-worry-wrapper__list > li {
    width: 100%;
    margin-top: 40px;
  }
  .top-worry-wrapper__list > li:nth-child(1) {
    margin-top: 0;
  }
}

.top-worry-box {
  background-color: #ecf3e0;
  border-radius: 15px 0 0 0;
}
.top-worry-box__link {
  position: relative;
  display: block;
  color: #000000;
  background-color: #ffffff;
  border-radius: 15px 0 0 0;
  padding-bottom: 30px;
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.2);
  transform: translate(-20px, -20px);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .top-worry-box__link {
    padding-bottom: 20px;
    transform: translate(0px, -20px);
  }
}
.top-worry-box__link::before {
  position: absolute;
  content: "";
  right: 10px;
  bottom: 10px;
  border-width: 12px;
  border-style: solid;
  border-color: transparent #81bb31 #81bb31 transparent;
}
@media screen and (max-width: 834px) {
  .top-worry-box__link::before {
    right: 8px;
    bottom: 8px;
    border-width: 10px;
  }
}
.top-worry-box__link__title {
  position: relative;
  font-size: 2.5rem;
  line-height: 1.25;
  border-left: 1px solid #6ca61c;
  padding: 30px 10px 5px 15px;
  margin-left: 25px;
  margin-bottom: 11px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (max-width: 1300px) {
  .top-worry-box__link__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-worry-box__link__title {
    padding: 25px 10px 5px 15px;
  }
}
@media screen and (max-width: 834px) {
  .top-worry-box__link__title {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 599px) {
  .top-worry-box__link__title {
    font-size: 1.8rem;
    padding: 20px 10px 5px 15px;
    margin-left: 20px;
  }
}
.top-worry-box__link__title::before {
  position: absolute;
  content: "";
  left: -1px;
  bottom: 0;
  width: 4px;
  height: 40px;
  background-color: #6ca61c;
}
@media screen and (max-width: 834px) {
  .top-worry-box__link__title::before {
    height: 36px;
  }
}
@media screen and (max-width: 599px) {
  .top-worry-box__link__title::before {
    height: 34px;
  }
}
.top-worry-box__link__img {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.top-worry-box__link__img img {
  width: 100%;
}
.top-worry-box__link__img--worry01 img {
  max-width: 238px;
}
@media screen and (max-width: 834px) {
  .top-worry-box__link__img--worry01 img {
    max-width: 188px;
  }
}
.top-worry-box__link__img--worry02 img {
  max-width: 239px;
}
@media screen and (max-width: 834px) {
  .top-worry-box__link__img--worry02 img {
    max-width: 189px;
  }
}
.top-worry-box__link__img--worry03 img {
  max-width: 229px;
}
@media screen and (max-width: 834px) {
  .top-worry-box__link__img--worry03 img {
    max-width: 179px;
  }
}
.top-worry-box__link__img--worry04 img {
  max-width: 223px;
}
@media screen and (max-width: 834px) {
  .top-worry-box__link__img--worry04 img {
    max-width: 173px;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-worry-box__link:hover {
    transform: translate(-8px, -8px);
  }
}
.top-worry-box__body {
  padding: 0 20px 20px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.top-worry-box__body__list > li {
  display: block;
  position: relative;
  line-height: 1.5;
  background-color: #ffffff;
  padding: 8px 5px 8px 40px;
  margin-bottom: 2px;
}
@media screen and (max-width: 834px) {
  .top-worry-box__body__list > li {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-worry-box__body__list > li {
    font-size: 1.4rem;
  }
}
.top-worry-box__body__list > li::before {
  position: absolute;
  content: "";
  top: 15px;
  left: 15px;
  width: 11px;
  height: 11px;
  border: 3px solid #a1d15e;
  border-radius: 50%;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .top-worry-box__body__list > li::before {
    top: 14px;
  }
}
.top-worry-box__body__list > li:last-child {
  margin-bottom: 0 !important;
}

.top-guide-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 834px) {
  .top-guide-wrapper {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.top-guide-box {
  position: relative;
  width: 50%;
  padding-left: calc(50% - 480px);
}
@media print, screen and (max-width: 1400px) {
  .top-guide-box {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-guide-box {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-guide-box {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-box {
    padding: 40px 20px;
  }
}
.top-guide-box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: calc(100% - 480px + 180px);
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media print, screen and (max-width: 1400px) {
  .top-guide-box::before {
    width: 100%;
  }
}
.top-guide-box__body {
  position: relative;
  width: 100%;
  max-width: 480px;
  background-color: #ffffff;
  border-radius: 15px 0 0 0;
  padding: 60px 60px 24px;
  margin-top: 90px;
}
@media print, screen and (max-width: 1400px) {
  .top-guide-box__body {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 60px 60px 40px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .top-guide-box__body {
    padding: 50px 50px 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-guide-box__body {
    max-width: 100%;
    padding: 40px 40px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-box__body {
    padding: 30px 30px 30px;
  }
}
.top-guide-box__body__title {
  position: relative;
  border-bottom: 1px solid #81bb31;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
.top-guide-box__body__title::before {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 0;
  width: 130px;
  height: 4px;
  background-color: #81bb31;
}
@media screen and (max-width: 1024px) {
  .top-guide-box__body__title::before {
    width: 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-box__body__title::before {
    width: 80px;
  }
}
.top-guide-box__body__title__jp {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  margin-right: 1em;
}
@media screen and (max-width: 1024px) {
  .top-guide-box__body__title__jp {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-box__body__title__jp {
    display: block;
    font-size: 2rem;
    margin-right: 0;
  }
}
.top-guide-box__body__title__en {
  display: inline-block;
  color: #629818;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .top-guide-box__body__title__en {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-box__body__title__en {
    display: block;
    font-size: 0.8rem;
    padding-left: 2px;
    margin-top: 8px;
  }
}
.top-guide-box__body__text {
  color: #333333;
  font-size: 1.5rem;
}
.top-guide-box__body__list > li {
  color: #4f810a;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  background-color: #eeeeee;
  border-radius: 6px;
  padding: 11px 5px;
  margin-bottom: 10px;
}
.top-guide-box__body__list > li:last-child {
  margin-bottom: 0 !important;
}
.top-guide-box__body__dl__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #cccccc;
  padding: 15px 0;
}
@media screen and (max-width: 599px) {
  .top-guide-box__body__dl__item {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.top-guide-box__body__dl__item:last-child {
  border-bottom: 1px solid #cccccc;
}
.top-guide-box__body__dl__item dt {
  position: relative;
  width: 142px;
  color: #4f810a;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  padding-left: 25px;
}
@media screen and (max-width: 599px) {
  .top-guide-box__body__dl__item dt {
    width: 100%;
    margin-bottom: 8px;
  }
}
.top-guide-box__body__dl__item dt::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 12px;
  height: 4px;
  background-color: #81bb31;
}
.top-guide-box__body__dl__item dd {
  width: calc(99.9% - 142px);
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .top-guide-box__body__dl__item dd {
    width: 100%;
  }
}
.top-guide-box__body__dl__item__list > li {
  position: relative;
  line-height: 1.25;
  padding-left: 18px;
  margin-bottom: 5px;
}
.top-guide-box__body__dl__item__list > li::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #81bb31;
  border-radius: 50%;
}
.top-guide-box__body__dl__item__list > li:last-child {
  margin-bottom: 0 !important;
}
.top-guide-box__body__btn-box {
  max-width: 270px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
.top-guide-box--guide01::before {
  background-image: url(../img/top/img_guide01.webp);
}
.top-guide-box--guide02::before {
  background-image: url(../img/top/img_guide02.webp);
  background-position: left center;
}
@media screen and (max-width: 834px) {
  .top-guide-box--guide02::before {
    background-position: left top;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-box--guide02::before {
    background-position: left center;
  }
}

.top-feature-wrapper {
  position: relative;
  padding: 80px 40px;
}
@media screen and (max-width: 1024px) {
  .top-feature-wrapper {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature-wrapper {
    padding: 40px 20px;
  }
}
.top-feature-wrapper::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 56.8%;
  background-color: #ecf3e0;
}
@media screen and (max-width: 599px) {
  .top-feature-wrapper::before {
    height: 81.8%;
  }
}
.top-feature-wrapper__inr {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.top-feature-wrapper__list > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .top-feature-wrapper__list > li {
    width: calc((99.9% - 3.7% * (3 - 1)) / 3);
    margin-top: 3.7%;
    margin-right: 3.7%;
  }
  .top-feature-wrapper__list > li:nth-child(3n) {
    margin-right: 0;
  }
  .top-feature-wrapper__list > li:nth-child(1) {
    margin-top: 0;
  }
  .top-feature-wrapper__list > li:nth-child(2) {
    margin-top: 0;
  }
  .top-feature-wrapper__list > li:nth-child(3) {
    margin-top: 0;
  }
  .top-feature-wrapper__list > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .top-feature-wrapper__list > li {
    width: calc((99.9% - 2.2% * (3 - 1)) / 3);
    margin-top: 2.2%;
    margin-right: 2.2%;
  }
  .top-feature-wrapper__list > li:nth-child(3n) {
    margin-right: 0;
  }
  .top-feature-wrapper__list > li:nth-child(1) {
    margin-top: 0;
  }
  .top-feature-wrapper__list > li:nth-child(2) {
    margin-top: 0;
  }
  .top-feature-wrapper__list > li:nth-child(3) {
    margin-top: 0;
  }
  .top-feature-wrapper__list > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .top-feature-wrapper__list > li {
    width: 100%;
    margin-top: 20px;
  }
  .top-feature-wrapper__list > li:nth-child(1) {
    margin-top: 0;
  }
}

.top-feature-box {
  background-color: #ffffff;
  border-radius: 15px;
}
.top-feature-box__img img {
  width: 100%;
  border-radius: 15px 15px 0 0;
}
.top-feature-box__body {
  padding: 30px 50px 50px;
}
@media screen and (max-width: 1024px) {
  .top-feature-box__body {
    padding: 25px 30px 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-feature-box__body {
    padding: 20px 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature-box__body {
    padding: 20px 30px 30px;
  }
}
.top-feature-box__body__title {
  position: relative;
  color: #4f810a;
  font-size: 2.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  border-bottom: 4px solid #eeeeee;
  padding-bottom: 28px;
  margin-bottom: 28px;
}
@media screen and (max-width: 1024px) {
  .top-feature-box__body__title {
    font-size: 2.2rem;
    border-bottom: 3px solid #eeeeee;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 834px) {
  .top-feature-box__body__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-feature-box__body__title {
    padding-bottom: 13px;
    margin-bottom: 13px;
  }
}
.top-feature-box__body__title::before {
  position: absolute;
  content: "";
  left: calc((100% - 57px) / 2);
  bottom: -4px;
  width: 57px;
  height: 4px;
  background-color: #81bb31;
}
@media screen and (max-width: 1024px) {
  .top-feature-box__body__title::before {
    left: calc((100% - 42px) / 2);
    bottom: -3px;
    width: 42px;
    height: 3px;
  }
}
.top-feature-box__body__text {
  color: #333333;
  font-size: 1.5rem;
}

.top-greeting-wrapper {
  padding: 80px 40px;
}
@media screen and (max-width: 1024px) {
  .top-greeting-wrapper {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-greeting-wrapper {
    padding: 40px 20px;
  }
}
.top-greeting-wrapper__inr {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.top-greeting-wrapper__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .top-greeting-wrapper__box {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.top-greeting-wrapper__box__head {
  width: 47.5%;
}
@media screen and (max-width: 599px) {
  .top-greeting-wrapper__box__head {
    width: 100%;
    margin-bottom: 20px;
  }
}
.top-greeting-wrapper__box__head__img img {
  width: 100%;
  border-radius: 15px;
}
.top-greeting-wrapper__box__body {
  width: calc(52.4% - 70px);
  padding-top: 30px;
  padding-right: 50px;
  margin-left: 70px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (max-width: 1280px) {
  .top-greeting-wrapper__box__body {
    padding-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-greeting-wrapper__box__body {
    width: calc(52.4% - 50px);
    padding-top: 25px;
    margin-left: 50px;
  }
}
@media screen and (max-width: 834px) {
  .top-greeting-wrapper__box__body {
    width: calc(52.4% - 30px);
    padding-top: 15px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-greeting-wrapper__box__body {
    width: 100%;
    padding-top: 0;
    margin-left: 0;
  }
}
.top-greeting-wrapper__box__body__title {
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .top-greeting-wrapper__box__body__title {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-greeting-wrapper__box__body__title {
    margin-bottom: 20px;
  }
}
.top-greeting-wrapper__box__body__title__inr {
  display: inline-block;
  position: relative;
  color: #4f810a;
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1;
  border-bottom: 4px solid #eeeeee;
  padding-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .top-greeting-wrapper__box__body__title__inr {
    font-size: 2.5rem;
    border-bottom: 3px solid #eeeeee;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-greeting-wrapper__box__body__title__inr {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-greeting-wrapper__box__body__title__inr {
    padding-bottom: 15px;
  }
}
.top-greeting-wrapper__box__body__title__inr::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -4px;
  width: 57px;
  height: 4px;
  background-color: #81bb31;
}
@media screen and (max-width: 1024px) {
  .top-greeting-wrapper__box__body__title__inr::before {
    bottom: -3px;
    width: 42px;
    height: 3px;
  }
}
.top-greeting-wrapper__box__body__catch {
  color: #333333;
  font-size: 3.5rem;
  line-height: 1.5;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (max-width: 1300px) {
  .top-greeting-wrapper__box__body__catch {
    font-size: clamp(2.2rem, 2.5vw, 3.5rem);
  }
}
@media screen and (max-width: 834px) {
  .top-greeting-wrapper__box__body__catch {
    font-size: 2rem;
  }
}
.top-greeting-wrapper__box__body__text {
  color: #333333;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .top-greeting-wrapper__box__body__text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-greeting-wrapper__box__body__text {
    margin-top: 15px;
  }
}
.top-greeting-wrapper__box__body__name {
  font-size: 2.5rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  text-align: right;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .top-greeting-wrapper__box__body__name {
    font-size: 2.2rem;
    margin-top: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-greeting-wrapper__box__body__name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-greeting-wrapper__box__body__name {
    margin-top: 15px;
  }
}
.top-greeting-wrapper__box__body__name__post {
  display: inline-block;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  margin-right: 1.3em;
}
@media screen and (max-width: 1024px) {
  .top-greeting-wrapper__box__body__name__post {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-greeting-wrapper__box__body__name__post {
    font-size: 1.1rem;
  }
}
.top-greeting-wrapper__box__body__btn-box {
  max-width: 270px;
  margin-top: 40px;
  margin-left: auto;
}
@media screen and (max-width: 599px) {
  .top-greeting-wrapper__box__body__btn-box {
    margin-top: 30px;
    margin-right: auto;
  }
}

.top-news-wrapper {
  background-color: #ecf3e0;
  padding: 80px 40px;
}
@media screen and (max-width: 1024px) {
  .top-news-wrapper {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-news-wrapper {
    padding: 40px 20px;
  }
}
.top-news-wrapper__inr {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.top-news-wrapper__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 60px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-news-wrapper__box {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-news-wrapper__box {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 60px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-news-wrapper__box {
    padding: 40px 20px;
  }
}
.top-news-wrapper__box__head {
  width: 230px;
}
@media screen and (max-width: 834px) {
  .top-news-wrapper__box__head {
    width: 100%;
    margin-bottom: 25px;
  }
}
.top-news-wrapper__box__head__title {
  position: relative;
  border-top: 1px solid #81bb31;
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  .top-news-wrapper__box__head__title {
    padding-top: 25px;
  }
}
.top-news-wrapper__box__head__title::before {
  position: absolute;
  content: "";
  top: -1px;
  left: 0;
  width: 100px;
  height: 4px;
  background-color: #81bb31;
}
@media screen and (max-width: 1024px) {
  .top-news-wrapper__box__head__title::before {
    width: 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-news-wrapper__box__head__title::before {
    width: 80px;
  }
}
.top-news-wrapper__box__head__title__jp {
  display: block;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .top-news-wrapper__box__head__title__jp {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news-wrapper__box__head__title__jp {
    font-size: 2rem;
  }
}
.top-news-wrapper__box__head__title__en {
  display: block;
  color: #4f810a;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  padding-left: 2px;
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .top-news-wrapper__box__head__title__en {
    font-size: 0.9rem;
    margin-top: 12px;
  }
}
@media screen and (max-width: 599px) {
  .top-news-wrapper__box__head__title__en {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
.top-news-wrapper__box__head__btn-box {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .top-news-wrapper__box__head__btn-box {
    margin-top: 50px;
  }
}
.top-news-wrapper__box__body {
  width: calc(99.9% - 230px - 60px);
  margin-left: 60px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .top-news-wrapper__box__body {
    width: 100%;
    margin-left: 0;
  }
}
.top-news-wrapper__box__body__list > li {
  border-top: 1px solid #cccccc;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.top-news-wrapper__box__body__list > li:last-child {
  border-bottom: 1px solid #cccccc;
}
.top-news-wrapper__box__body__btn-box {
  max-width: 240px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 599px) {
  .top-news-wrapper__box__body__btn-box {
    margin-top: 30px;
  }
}

@media screen and (max-width: 834px) {
  .top-slider-wrapper .top-slider__item {
    max-width: 315px;
  }
}
@media screen and (max-width: 599px) {
  .top-slider-wrapper .top-slider__item {
    max-width: 210px;
  }
}

/*--------------------------------------------------------
新着情報
----------------------------------------------------------*/
.news-wrapper {
  padding: 0 40px;
  margin-top: -20px;
}
@media screen and (max-width: 1024px) {
  .news-wrapper {
    padding: 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .news-wrapper {
    padding: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .news-wrapper__list {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.news-wrapper__list > li {
  border-bottom: 1px solid #cccccc;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.news-detail-wrapper {
  padding: 0 40px;
  margin-top: -10px;
}
@media screen and (max-width: 1024px) {
  .news-detail-wrapper {
    padding: 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .news-detail-wrapper {
    padding: 0 20px;
  }
}
.news-detail-wrapper__title {
  border-bottom: #cccccc solid 1px;
  padding-bottom: 30px;
  margin-bottom: 45px;
}
@media screen and (max-width: 599px) {
  .news-detail-wrapper__title {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
.news-detail-wrapper__title__date {
  color: #4f810a;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 15px;
}
@media screen and (max-width: 834px) {
  .news-detail-wrapper__title__date {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .news-detail-wrapper__title__date {
    font-size: 1.2rem;
  }
}
.news-detail-wrapper__title__date .new {
  margin-left: 15px;
}
.news-detail-wrapper__title__text {
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .news-detail-wrapper__title__text {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 834px) {
  .news-detail-wrapper__title__text {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .news-detail-wrapper__title__text {
    font-size: 1.6rem;
  }
}
.news-detail-wrapper__btn-box {
  margin-top: 70px;
}
@media screen and (max-width: 1024px) {
  .news-detail-wrapper__btn-box {
    margin-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .news-detail-wrapper__btn-box {
    margin-top: 40px;
  }
}
.news-detail-wrapper__btn-box__btn {
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------
当院について
----------------------------------------------------------*/
.about-anker-wrapper {
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 1024px) {
  .about-anker-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 599px) {
  .about-anker-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.about-anker-wrapper__nav {
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.about-anker-wrapper__nav__list {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.about-anker-wrapper__nav__list > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .about-anker-wrapper__nav__list > li {
    width: calc((99.9% - 25px * (3 - 1)) / 3);
    margin-top: 25px;
    margin-right: 25px;
  }
  .about-anker-wrapper__nav__list > li:nth-child(3n) {
    margin-right: 0;
  }
  .about-anker-wrapper__nav__list > li:nth-child(1) {
    margin-top: 0;
  }
  .about-anker-wrapper__nav__list > li:nth-child(2) {
    margin-top: 0;
  }
  .about-anker-wrapper__nav__list > li:nth-child(3) {
    margin-top: 0;
  }
  .about-anker-wrapper__nav__list > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .about-anker-wrapper__nav__list > li {
    width: calc((99.9% - 2.4% * (3 - 1)) / 3);
    margin-top: 2.4%;
    margin-right: 2.4%;
  }
  .about-anker-wrapper__nav__list > li:nth-child(3n) {
    margin-right: 0;
  }
  .about-anker-wrapper__nav__list > li:nth-child(1) {
    margin-top: 0;
  }
  .about-anker-wrapper__nav__list > li:nth-child(2) {
    margin-top: 0;
  }
  .about-anker-wrapper__nav__list > li:nth-child(3) {
    margin-top: 0;
  }
  .about-anker-wrapper__nav__list > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .about-anker-wrapper__nav__list > li {
    width: 100%;
    margin-top: 10px;
  }
  .about-anker-wrapper__nav__list > li:nth-child(1) {
    margin-top: 0;
  }
}

.about-greeting-wrapper {
  padding: 80px 40px 90px;
}
@media screen and (max-width: 1024px) {
  .about-greeting-wrapper {
    padding: 60px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .about-greeting-wrapper {
    padding: 40px 20px 50px;
  }
}
.about-greeting-wrapper__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .about-greeting-wrapper__box {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.about-greeting-wrapper__box__head {
  width: 46.7%;
}
@media screen and (max-width: 599px) {
  .about-greeting-wrapper__box__head {
    width: 100%;
    margin-bottom: 20px;
  }
}
.about-greeting-wrapper__box__head__img img {
  width: 100%;
  border-radius: 10px;
}
.about-greeting-wrapper__box__body {
  width: calc(53.2% - 70px);
  padding-top: 30px;
  margin-left: 70px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .about-greeting-wrapper__box__body {
    width: calc(53.2% - 50px);
    padding-top: 25px;
    margin-left: 50px;
  }
}
@media screen and (max-width: 834px) {
  .about-greeting-wrapper__box__body {
    width: calc(53.2% - 30px);
    padding-top: 0;
    margin-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .about-greeting-wrapper__box__body {
    width: 100%;
    margin-left: 0;
  }
}
.about-greeting-wrapper__box__body__catch {
  color: #559202;
  font-size: 3.5rem;
  line-height: 1.5;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (max-width: 1300px) {
  .about-greeting-wrapper__box__body__catch {
    font-size: clamp(2.2rem, 2.5vw, 3.5rem);
  }
}
@media screen and (max-width: 834px) {
  .about-greeting-wrapper__box__body__catch {
    font-size: 2rem;
  }
}
.about-greeting-wrapper__box__body__text {
  color: #333333;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .about-greeting-wrapper__box__body__text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .about-greeting-wrapper__box__body__text {
    margin-top: 15px;
  }
}
.about-greeting-wrapper__box__body__name {
  font-size: 2.5rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  text-align: right;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .about-greeting-wrapper__box__body__name {
    font-size: 2.2rem;
    margin-top: 20px;
  }
}
@media screen and (max-width: 834px) {
  .about-greeting-wrapper__box__body__name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .about-greeting-wrapper__box__body__name {
    margin-top: 15px;
  }
}
.about-greeting-wrapper__box__body__name__post {
  display: inline-block;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  margin-right: 1.3em;
}
@media screen and (max-width: 1024px) {
  .about-greeting-wrapper__box__body__name__post {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 834px) {
  .about-greeting-wrapper__box__body__name__post {
    font-size: 1.1rem;
  }
}
.about-greeting-wrapper__prof {
  margin-top: 70px;
}
@media screen and (max-width: 1024px) {
  .about-greeting-wrapper__prof {
    margin-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .about-greeting-wrapper__prof {
    margin-top: 40px;
  }
}
.about-greeting-wrapper__prof__list > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .about-greeting-wrapper__prof__list > li {
    width: calc((99.9% - 3.7% * (3 - 1)) / 3);
    margin-top: 3.7%;
    margin-right: 3.7%;
  }
  .about-greeting-wrapper__prof__list > li:nth-child(3n) {
    margin-right: 0;
  }
  .about-greeting-wrapper__prof__list > li:nth-child(1) {
    margin-top: 0;
  }
  .about-greeting-wrapper__prof__list > li:nth-child(2) {
    margin-top: 0;
  }
  .about-greeting-wrapper__prof__list > li:nth-child(3) {
    margin-top: 0;
  }
  .about-greeting-wrapper__prof__list > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .about-greeting-wrapper__prof__list > li {
    width: calc((99.9% - 2.2% * (3 - 1)) / 3);
    margin-top: 2.2%;
    margin-right: 2.2%;
  }
  .about-greeting-wrapper__prof__list > li:nth-child(3n) {
    margin-right: 0;
  }
  .about-greeting-wrapper__prof__list > li:nth-child(1) {
    margin-top: 0;
  }
  .about-greeting-wrapper__prof__list > li:nth-child(2) {
    margin-top: 0;
  }
  .about-greeting-wrapper__prof__list > li:nth-child(3) {
    margin-top: 0;
  }
  .about-greeting-wrapper__prof__list > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .about-greeting-wrapper__prof__list > li {
    width: 100%;
    margin-top: 20px;
  }
  .about-greeting-wrapper__prof__list > li:nth-child(1) {
    margin-top: 0;
  }
}

.greeting-prof-box {
  background-color: #f2f7e9;
  border-radius: 10px;
  padding: 40px 40px 60px;
}
@media screen and (max-width: 834px) {
  .greeting-prof-box {
    padding: 30px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .greeting-prof-box {
    padding: 30px 20px 40px;
  }
}
.greeting-prof-box__dl__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #333333;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 15px;
}
.greeting-prof-box__dl__item:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1024px) {
  .greeting-prof-box__dl__item {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.greeting-prof-box__dl__item dt {
  position: relative;
  width: 100px;
  padding-left: 22px;
}
@media screen and (max-width: 1024px) {
  .greeting-prof-box__dl__item dt {
    width: 100%;
    margin-bottom: 5px;
  }
}
.greeting-prof-box__dl__item dt::before {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  width: 12px;
  height: 4px;
  background-color: #81bb31;
}
.greeting-prof-box__dl__item dd {
  width: calc(99.9% - 100px);
}
@media screen and (max-width: 1024px) {
  .greeting-prof-box__dl__item dd {
    width: 100%;
  }
}
.greeting-prof-box__list > li {
  position: relative;
  color: #333333;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  padding-left: 22px;
  margin-bottom: 8px;
}
.greeting-prof-box__list > li:last-child {
  margin-bottom: 0 !important;
}
.greeting-prof-box__list > li::before {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  width: 12px;
  height: 4px;
  background-color: #81bb31;
}

.about-outline-wrapper {
  background-color: #ecf3e0;
  padding: 80px 40px 90px;
}
@media screen and (max-width: 1024px) {
  .about-outline-wrapper {
    padding: 60px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .about-outline-wrapper {
    padding: 40px 20px 50px;
  }
}
.about-outline-wrapper__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .about-outline-wrapper__box {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.about-outline-wrapper__box__head {
  position: relative;
  width: 44.1%;
}
@media screen and (max-width: 834px) {
  .about-outline-wrapper__box__head {
    width: 100%;
  }
}
.about-outline-wrapper__box__head::before {
  display: block;
  content: "";
  padding-top: 69%;
}
.about-outline-wrapper__box__head__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-outline-wrapper__box__head__img img {
  width: 100%;
  height: 100%;
  border-radius: 0 10px 10px 0;
  object-fit: cover;
  object-position: center top;
}
@media screen and (max-width: 834px) {
  .about-outline-wrapper__box__head__img img {
    border-radius: 10px 10px 0 0;
  }
}
.about-outline-wrapper__box__body {
  width: 55.8%;
  padding: 60px;
}
@media print, screen and (max-width: 1200px) {
  .about-outline-wrapper__box__body {
    padding: 40px;
  }
}
@media screen and (max-width: 834px) {
  .about-outline-wrapper__box__body {
    width: 100%;
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .about-outline-wrapper__box__body {
    padding: 20px;
  }
}
.about-outline-wrapper__box__body__dl {
  margin-bottom: 35px;
}
@media screen and (max-width: 834px) {
  .about-outline-wrapper__box__body__dl {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .about-outline-wrapper__box__body__dl {
    margin-bottom: 25px;
  }
}
.about-outline-wrapper__box__body__dl__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  border-bottom: 1px solid #cccccc;
  padding: 17px 0;
}
@media screen and (max-width: 1024px) {
  .about-outline-wrapper__box__body__dl__item {
    padding: 12px 0;
  }
}
@media screen and (max-width: 599px) {
  .about-outline-wrapper__box__body__dl__item {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.about-outline-wrapper__box__body__dl__item:nth-child(1) {
  padding-top: 0 !important;
}
.about-outline-wrapper__box__body__dl__item dt {
  position: relative;
  width: 151px;
  padding-left: 38px;
}
@media screen and (max-width: 834px) {
  .about-outline-wrapper__box__body__dl__item dt {
    width: 141px;
    padding-left: 30px;
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 599px) {
  .about-outline-wrapper__box__body__dl__item dt {
    width: 100%;
    padding-left: 22px;
  }
}
.about-outline-wrapper__box__body__dl__item dt::before {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  width: 12px;
  height: 4px;
  background-color: #81bb31;
}
.about-outline-wrapper__box__body__dl__item dd {
  width: calc(99.9% - 151px);
  color: #444444;
}
@media screen and (max-width: 834px) {
  .about-outline-wrapper__box__body__dl__item dd {
    width: calc(99.9% - 141px);
  }
}
@media screen and (max-width: 599px) {
  .about-outline-wrapper__box__body__dl__item dd {
    width: 100%;
  }
}
.about-outline-wrapper__box__body__tit {
  color: #5c9200;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 15px;
}
@media screen and (max-width: 834px) {
  .about-outline-wrapper__box__body__tit {
    margin-bottom: 10px;
  }
}

.about-access-wrapper {
  padding: 80px 40px 0;
}
@media screen and (max-width: 1024px) {
  .about-access-wrapper {
    padding: 60px 30px 0;
  }
}
@media screen and (max-width: 599px) {
  .about-access-wrapper {
    padding: 40px 20px 0;
  }
}
.about-access-wrapper__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .about-access-wrapper__box {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.about-access-wrapper__box__head {
  width: calc(99.9% - 490px - 5%);
  margin-right: 5%;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (max-width: 1100px) {
  .about-access-wrapper__box__head {
    width: calc(99.9% - 440px - 3.3%);
    margin-right: 3.3%;
  }
}
@media screen and (max-width: 834px) {
  .about-access-wrapper__box__head {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 30px;
  }
}
.about-access-wrapper__box__head__img img {
  width: 100%;
  border-radius: 10px;
}
.about-access-wrapper__box__head__text {
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.35;
  padding-left: 0.5em;
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .about-access-wrapper__box__head__text {
    font-size: 1.4rem;
  }
}
.about-access-wrapper__box__body {
  width: 490px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (max-width: 1100px) {
  .about-access-wrapper__box__body {
    width: 440px;
  }
}
@media screen and (max-width: 834px) {
  .about-access-wrapper__box__body {
    width: 100%;
  }
}
.about-access-wrapper__box__body__access-list > li {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .about-access-wrapper__box__body__access-list > li {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 834px) {
  .about-access-wrapper__box__body__access-list > li {
    margin-bottom: 20px;
  }
}
.about-access-wrapper__box__body__access-list > li:last-child {
  margin-bottom: 0 !important;
}

.access-by-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.access-by-box__img {
  width: 80px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .access-by-box__img {
    width: 70px;
  }
}
@media screen and (max-width: 599px) {
  .access-by-box__img {
    width: 60px;
  }
}
.access-by-box__img img {
  width: 100%;
}
.access-by-box__body {
  width: calc(99.9% - 80px - 40px);
  margin-left: 40px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .access-by-box__body {
    width: calc(99.9% - 70px - 5%);
    margin-left: 5%;
  }
}
@media screen and (max-width: 834px) {
  .access-by-box__body {
    width: calc(99.9% - 70px - 3%);
    margin-left: 3%;
  }
}
@media screen and (max-width: 599px) {
  .access-by-box__body {
    width: calc(99.9% - 60px - 5%);
    margin-left: 5%;
  }
}
.access-by-box__body__title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .access-by-box__body__title {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .access-by-box__body__title {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
.access-by-box__body__text {
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.7;
}
@media screen and (max-width: 599px) {
  .access-by-box__body__text {
    font-size: 1.4rem;
  }
}

/*--------------------------------------------------------
診療内容について
----------------------------------------------------------*/
@media screen and (max-width: 834px) {
  .medical-slider-wrapper .medical-slider__item {
    max-width: 315px;
  }
}
@media screen and (max-width: 599px) {
  .medical-slider-wrapper .medical-slider__item {
    max-width: 210px;
  }
}

.medical-read-wrapper {
  padding: 0 40px 90px;
}
@media screen and (max-width: 1024px) {
  .medical-read-wrapper {
    padding: 0 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .medical-read-wrapper {
    padding: 0 20px 50px;
  }
}
.medical-read-wrapper__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (min-width: 835px) {
  .medical-read-wrapper__box {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 599px) {
  .medical-read-wrapper__box {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.medical-read-wrapper__box__head {
  width: 46.7%;
}
@media screen and (max-width: 599px) {
  .medical-read-wrapper__box__head {
    width: 100%;
    margin-bottom: 20px;
  }
}
.medical-read-wrapper__box__head__img img {
  width: 100%;
  border-radius: 10px;
}
.medical-read-wrapper__box__body {
  width: calc(53.2% - 70px);
  margin-left: 70px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .medical-read-wrapper__box__body {
    width: calc(53.2% - 50px);
    margin-left: 50px;
  }
}
@media screen and (max-width: 834px) {
  .medical-read-wrapper__box__body {
    width: calc(53.2% - 30px);
    padding-top: 0;
    margin-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .medical-read-wrapper__box__body {
    width: 100%;
    margin-left: 0;
  }
}
.medical-read-wrapper__box__body__catch {
  color: #559202;
  font-size: 3.5rem;
  line-height: 1.5;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (max-width: 1300px) {
  .medical-read-wrapper__box__body__catch {
    font-size: clamp(2.2rem, 2.5vw, 3.5rem);
  }
}
@media screen and (max-width: 834px) {
  .medical-read-wrapper__box__body__catch {
    font-size: 2rem;
  }
}
.medical-read-wrapper__box__body__text {
  color: #333333;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .medical-read-wrapper__box__body__text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .medical-read-wrapper__box__body__text {
    margin-top: 15px;
  }
}

.medical-list-wrapper {
  background-color: #ecf3e0;
  padding: 80px 40px 90px;
}
@media screen and (max-width: 1024px) {
  .medical-list-wrapper {
    padding: 60px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .medical-list-wrapper {
    padding: 40px 20px 50px;
  }
}
.medical-list-wrapper__list > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .medical-list-wrapper__list > li {
    width: calc((99.9% - 3.3% * (2 - 1)) / 2);
    margin-top: 3.3%;
    margin-right: 3.3%;
  }
  .medical-list-wrapper__list > li:nth-child(2n) {
    margin-right: 0;
  }
  .medical-list-wrapper__list > li:nth-child(1) {
    margin-top: 0;
  }
  .medical-list-wrapper__list > li:nth-child(2) {
    margin-top: 0;
  }
  .medical-list-wrapper__list > li:nth-child(2n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .medical-list-wrapper__list > li {
    width: calc((99.9% - 3.3% * (2 - 1)) / 2);
    margin-top: 3.3%;
    margin-right: 3.3%;
  }
  .medical-list-wrapper__list > li:nth-child(2n) {
    margin-right: 0;
  }
  .medical-list-wrapper__list > li:nth-child(1) {
    margin-top: 0;
  }
  .medical-list-wrapper__list > li:nth-child(2) {
    margin-top: 0;
  }
  .medical-list-wrapper__list > li:nth-child(2n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .medical-list-wrapper__list > li {
    width: 100%;
    margin-top: 20px;
  }
  .medical-list-wrapper__list > li:nth-child(1) {
    margin-top: 0;
  }
}

.medical-list-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px 50px 30px 30px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .medical-list-box {
    padding: 20px 20px 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .medical-list-box {
    display: block;
  }
}
.medical-list-box__img {
  width: 150px;
}
@media screen and (max-width: 1024px) {
  .medical-list-box__img {
    width: 120px;
  }
}
@media screen and (max-width: 834px) {
  .medical-list-box__img {
    width: 90px;
  }
}
.medical-list-box__img img {
  width: 100%;
}
.medical-list-box__body {
  width: calc(99.9% - 150px - 35px);
  margin-left: 35px;
}
@media screen and (max-width: 1024px) {
  .medical-list-box__body {
    width: calc(99.9% - 120px - 25px);
    margin-left: 25px;
  }
}
@media screen and (max-width: 834px) {
  .medical-list-box__body {
    width: calc(99.9% - 90px - 20px);
    margin-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .medical-list-box__body {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .medical-list-box__body__img {
    float: left;
    width: 25%;
    margin-right: 15px;
    margin-bottom: 5px;
  }
}
.medical-list-box__body__img img {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .medical-list-box__body__hl03 {
    overflow: hidden;
  }
}
.medical-list-box__body__text {
  color: #444444;
  line-height: 1.6;
}
.medical-list-box__body__text-bb {
  display: inline-block;
  color: #5c9200;
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: underline;
  margin-right: 0.5em;
}
.medical-list-box__body__pickup {
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .medical-list-box__body__pickup {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .medical-list-box__body__pickup {
    padding: 20px;
  }
}
.medical-list-box__body__pickup__list > li {
  float: left;
  position: relative;
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.35;
  padding-left: 22px;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .medical-list-box__body__pickup__list > li {
    width: calc((99.9% - 2em * (3 - 1)) / 3);
    margin-top: 12px;
    margin-right: 2em;
  }
  .medical-list-box__body__pickup__list > li:nth-child(3n) {
    margin-right: 0;
  }
  .medical-list-box__body__pickup__list > li:nth-child(1) {
    margin-top: 0;
  }
  .medical-list-box__body__pickup__list > li:nth-child(2) {
    margin-top: 0;
  }
  .medical-list-box__body__pickup__list > li:nth-child(3) {
    margin-top: 0;
  }
  .medical-list-box__body__pickup__list > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .medical-list-box__body__pickup__list > li {
    width: calc((99.9% - 2em * (2 - 1)) / 2);
    margin-top: 10px;
    margin-right: 2em;
  }
  .medical-list-box__body__pickup__list > li:nth-child(2n) {
    margin-right: 0;
  }
  .medical-list-box__body__pickup__list > li:nth-child(1) {
    margin-top: 0;
  }
  .medical-list-box__body__pickup__list > li:nth-child(2) {
    margin-top: 0;
  }
  .medical-list-box__body__pickup__list > li:nth-child(2n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .medical-list-box__body__pickup__list > li {
    width: 100%;
    margin-top: 8px;
  }
  .medical-list-box__body__pickup__list > li:nth-child(1) {
    margin-top: 0;
  }
}
.medical-list-box__body__pickup__list > li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 12px;
  height: 4px;
  background-color: #81bb31;
}
.medical-list-box__body__pickup__list > li.etc::before {
  display: none;
}
.medical-list-box--link {
  position: relative;
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.2);
}
.medical-list-box--link::after {
  position: absolute;
  content: "";
  right: 20px;
  bottom: 20px;
  border-width: 15px;
  border-style: solid;
  border-color: transparent #81bb31 #81bb31 transparent;
}
@media screen and (max-width: 834px) {
  .medical-list-box--link::after {
    right: 15px;
    bottom: 15px;
    border-width: 10px;
  }
}
@media screen and (max-width: 599px) {
  .medical-list-box--link::after {
    right: 10px;
    bottom: 10px;
  }
}
@media print, screen and (min-width: 1025px) {
  .medical-list-box--link:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    transform: translate(8px, 8px);
  }
}

.department-anker-wrapper {
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 1024px) {
  .department-anker-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 599px) {
  .department-anker-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.department-anker-wrapper__nav {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.department-anker-wrapper__nav__list {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.department-anker-wrapper__nav__list > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .department-anker-wrapper__nav__list > li {
    width: calc((99.9% - 25px * (6 - 1)) / 6);
    margin-top: 25px;
    margin-right: 25px;
  }
  .department-anker-wrapper__nav__list > li:nth-child(6n) {
    margin-right: 0;
  }
  .department-anker-wrapper__nav__list > li:nth-child(1) {
    margin-top: 0;
  }
  .department-anker-wrapper__nav__list > li:nth-child(2) {
    margin-top: 0;
  }
  .department-anker-wrapper__nav__list > li:nth-child(3) {
    margin-top: 0;
  }
  .department-anker-wrapper__nav__list > li:nth-child(4) {
    margin-top: 0;
  }
  .department-anker-wrapper__nav__list > li:nth-child(5) {
    margin-top: 0;
  }
  .department-anker-wrapper__nav__list > li:nth-child(6) {
    margin-top: 0;
  }
  .department-anker-wrapper__nav__list > li:nth-child(6n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .department-anker-wrapper__nav__list > li {
    width: calc((99.9% - 2.4% * (3 - 1)) / 3);
    margin-top: 2.4%;
    margin-right: 2.4%;
  }
  .department-anker-wrapper__nav__list > li:nth-child(3n) {
    margin-right: 0;
  }
  .department-anker-wrapper__nav__list > li:nth-child(1) {
    margin-top: 0;
  }
  .department-anker-wrapper__nav__list > li:nth-child(2) {
    margin-top: 0;
  }
  .department-anker-wrapper__nav__list > li:nth-child(3) {
    margin-top: 0;
  }
  .department-anker-wrapper__nav__list > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .department-anker-wrapper__nav__list > li {
    width: calc((99.9% - 10px * (2 - 1)) / 2);
    margin-top: 10px;
    margin-right: 10px;
  }
  .department-anker-wrapper__nav__list > li:nth-child(2n) {
    margin-right: 0;
  }
  .department-anker-wrapper__nav__list > li:nth-child(1) {
    margin-top: 0;
  }
  .department-anker-wrapper__nav__list > li:nth-child(2) {
    margin-top: 0;
  }
  .department-anker-wrapper__nav__list > li:nth-child(2n+1) {
    clear: both;
  }
}
.department-anker-wrapper__nav__btn02 {
  background-repeat: no-repeat;
  padding-top: 103px;
}
@media screen and (max-width: 599px) {
  .department-anker-wrapper__nav__btn02 {
    padding-top: 82.4px;
  }
}
.department-anker-wrapper__nav__btn02--index {
  background-image: url(../img/common/icon_medical.svg);
  background-position: center top 27px;
  background-size: 42px auto;
  padding-top: 93px;
}
@media screen and (max-width: 599px) {
  .department-anker-wrapper__nav__btn02--index {
    background-position: center top 21.6px;
    background-size: 33.6px auto;
    padding-top: 74.4px;
  }
}
@media print, screen and (min-width: 1025px) {
  .department-anker-wrapper__nav__btn02--index:hover {
    background-image: url(../img/common/icon_medical_white.svg);
  }
}
.department-anker-wrapper__nav__btn02--geka {
  background-image: url(../img/common/icon_geka02.svg);
  background-position: center top 31px;
  background-size: 66px auto;
}
@media screen and (max-width: 599px) {
  .department-anker-wrapper__nav__btn02--geka {
    background-position: center top 24.8px;
    background-size: 52.8px auto;
  }
}
@media print, screen and (min-width: 1025px) {
  .department-anker-wrapper__nav__btn02--geka:hover {
    background-image: url(../img/common/icon_geka02_white.svg);
  }
}
.department-anker-wrapper__nav__btn02--seikeigeka {
  background-image: url(../img/common/icon_seikeigeka02.svg);
  background-position: center top 25px;
  background-size: 46px auto;
}
@media screen and (max-width: 599px) {
  .department-anker-wrapper__nav__btn02--seikeigeka {
    background-position: center top 20px;
    background-size: 36.8px auto;
  }
}
@media print, screen and (min-width: 1025px) {
  .department-anker-wrapper__nav__btn02--seikeigeka:hover {
    background-image: url(../img/common/icon_seikeigeka02_white.svg);
  }
}
.department-anker-wrapper__nav__btn02--syokakika {
  background-image: url(../img/common/icon_syokakika02.svg);
  background-position: center top 28px;
  background-size: 48px auto;
}
@media screen and (max-width: 599px) {
  .department-anker-wrapper__nav__btn02--syokakika {
    background-position: center top 22.4px;
    background-size: 38.4px auto;
  }
}
@media print, screen and (min-width: 1025px) {
  .department-anker-wrapper__nav__btn02--syokakika:hover {
    background-image: url(../img/common/icon_syokakika02_white.svg);
  }
}
.department-anker-wrapper__nav__btn02--komonka {
  background-image: url(../img/common/icon_komonka02.svg);
  background-position: center top 28px;
  background-size: 48px auto;
}
@media screen and (max-width: 599px) {
  .department-anker-wrapper__nav__btn02--komonka {
    background-position: center top 22.4px;
    background-size: 38.4px auto;
  }
}
@media print, screen and (min-width: 1025px) {
  .department-anker-wrapper__nav__btn02--komonka:hover {
    background-image: url(../img/common/icon_komonka02_white.svg);
  }
}
.department-anker-wrapper__nav__btn02--masuika {
  background-image: url(../img/common/icon_masuika02.svg);
  background-position: center top 27px;
  background-size: 50px auto;
}
@media screen and (max-width: 599px) {
  .department-anker-wrapper__nav__btn02--masuika {
    background-position: center top 21.6px;
    background-size: 40px auto;
  }
}
@media print, screen and (min-width: 1025px) {
  .department-anker-wrapper__nav__btn02--masuika:hover {
    background-image: url(../img/common/icon_masuika02_white.svg);
  }
}

.department-wrapper {
  position: relative;
  padding: 80px 40px 90px;
}
@media screen and (max-width: 1024px) {
  .department-wrapper {
    padding: 60px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .department-wrapper {
    padding: 40px 20px 50px;
  }
}
.department-wrapper::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  background-color: #ecf3e0;
}
.department-wrapper__inr {
  position: relative;
  z-index: 1;
}
.department-wrapper__read {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 30px 40px 70px 60px;
  margin-top: -30px;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .department-wrapper__read {
    padding: 30px 40px 60px 50px;
    margin-top: -20px;
  }
}
@media screen and (max-width: 834px) {
  .department-wrapper__read {
    padding: 30px 30px 50px 40px;
  }
}
@media screen and (max-width: 599px) {
  .department-wrapper__read {
    display: block;
    padding: 30px 20px 40px 30px;
  }
}
.department-wrapper__read::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 170px;
  height: 170px;
  background-color: #ecf3e0;
  border-radius: 50%;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .department-wrapper__read::before {
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 599px) {
  .department-wrapper__read::before {
    width: 150px;
    height: 150px;
  }
}
.department-wrapper__read__text01 {
  position: relative;
  width: 40%;
  color: #559202;
  font-size: 3.5rem;
  line-height: 1.5;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .department-wrapper__read__text01 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .department-wrapper__read__text01 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .department-wrapper__read__text01 {
    width: 100%;
    font-size: 2rem;
  }
}
.department-wrapper__read__text02 {
  position: relative;
  width: 55.9%;
  color: #444444;
  margin-top: 5px;
  margin-left: 4%;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .department-wrapper__read__text02 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .department-wrapper__read__text02 {
    width: 100%;
    margin-top: 12px;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 600px) {
  .department-wrapper__read--geka .department-wrapper__read__text01 {
    width: 46%;
  }
}
@media print, screen and (min-width: 600px) {
  .department-wrapper__read--geka .department-wrapper__read__text02 {
    width: 49.9%;
  }
}
.department-wrapper__interest {
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 50px 50px 60px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .department-wrapper__interest {
    padding: 40px 40px 50px;
  }
}
@media screen and (max-width: 834px) {
  .department-wrapper__interest {
    padding: 30px 30px 40px;
  }
}
@media screen and (max-width: 599px) {
  .department-wrapper__interest {
    padding: 20px 20px 30px;
  }
}
.department-wrapper__interest__list > li {
  position: relative;
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.35;
  padding-left: 22px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.department-wrapper__interest__list > li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 12px;
  height: 4px;
  background-color: #81bb31;
}
.department-wrapper__interest__list--col3 > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .department-wrapper__interest__list--col3 > li {
    width: calc((99.9% - 2em * (3 - 1)) / 3);
    margin-top: 12px;
    margin-right: 2em;
  }
  .department-wrapper__interest__list--col3 > li:nth-child(3n) {
    margin-right: 0;
  }
  .department-wrapper__interest__list--col3 > li:nth-child(1) {
    margin-top: 0;
  }
  .department-wrapper__interest__list--col3 > li:nth-child(2) {
    margin-top: 0;
  }
  .department-wrapper__interest__list--col3 > li:nth-child(3) {
    margin-top: 0;
  }
  .department-wrapper__interest__list--col3 > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .department-wrapper__interest__list--col3 > li {
    width: calc((99.9% - 2em * (2 - 1)) / 2);
    margin-top: 10px;
    margin-right: 2em;
  }
  .department-wrapper__interest__list--col3 > li:nth-child(2n) {
    margin-right: 0;
  }
  .department-wrapper__interest__list--col3 > li:nth-child(1) {
    margin-top: 0;
  }
  .department-wrapper__interest__list--col3 > li:nth-child(2) {
    margin-top: 0;
  }
  .department-wrapper__interest__list--col3 > li:nth-child(2n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .department-wrapper__interest__list--col3 > li {
    width: 100%;
    margin-top: 8px;
  }
  .department-wrapper__interest__list--col3 > li:nth-child(1) {
    margin-top: 0;
  }
}
.department-wrapper__interest__list--col4 > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .department-wrapper__interest__list--col4 > li {
    width: calc((99.9% - 2em * (4 - 1)) / 4);
    margin-top: 12px;
    margin-right: 2em;
  }
  .department-wrapper__interest__list--col4 > li:nth-child(4n) {
    margin-right: 0;
  }
  .department-wrapper__interest__list--col4 > li:nth-child(1) {
    margin-top: 0;
  }
  .department-wrapper__interest__list--col4 > li:nth-child(2) {
    margin-top: 0;
  }
  .department-wrapper__interest__list--col4 > li:nth-child(3) {
    margin-top: 0;
  }
  .department-wrapper__interest__list--col4 > li:nth-child(4) {
    margin-top: 0;
  }
  .department-wrapper__interest__list--col4 > li:nth-child(4n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .department-wrapper__interest__list--col4 > li {
    width: calc((99.9% - 2em * (2 - 1)) / 2);
    margin-top: 10px;
    margin-right: 2em;
  }
  .department-wrapper__interest__list--col4 > li:nth-child(2n) {
    margin-right: 0;
  }
  .department-wrapper__interest__list--col4 > li:nth-child(1) {
    margin-top: 0;
  }
  .department-wrapper__interest__list--col4 > li:nth-child(2) {
    margin-top: 0;
  }
  .department-wrapper__interest__list--col4 > li:nth-child(2n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .department-wrapper__interest__list--col4 > li {
    width: 100%;
    margin-top: 8px;
  }
  .department-wrapper__interest__list--col4 > li:nth-child(1) {
    margin-top: 0;
  }
}
.department-wrapper__cure {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 60px 50px 70px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .department-wrapper__cure {
    padding: 50px 40px 60px;
  }
}
@media screen and (max-width: 834px) {
  .department-wrapper__cure {
    padding: 40px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .department-wrapper__cure {
    padding: 30px 20px 40px;
  }
}
.department-wrapper__cure__list > li {
  position: relative;
  color: #444444;
  font-size: 1.5rem;
  line-height: 1.7;
  padding-left: 37px;
  margin-bottom: 12px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .department-wrapper__cure__list > li {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .department-wrapper__cure__list > li {
    padding-left: 30px;
    margin-bottom: 8px;
  }
}
.department-wrapper__cure__list > li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid #81bb31;
  box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  .department-wrapper__cure__list > li::before {
    top: 7px;
  }
}
@media screen and (max-width: 599px) {
  .department-wrapper__cure__list > li::before {
    width: 10px;
    height: 10px;
  }
}
.department-wrapper__cure__list > li::after {
  position: absolute;
  content: "";
  top: 11px;
  left: 3px;
  width: 6px;
  height: 6px;
  background-color: #81bb31;
}
@media screen and (max-width: 834px) {
  .department-wrapper__cure__list > li::after {
    top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .department-wrapper__cure__list > li::after {
    width: 4px;
    height: 4px;
  }
}
.department-wrapper__cure__list > li:last-child {
  margin-bottom: 0 !important;
}

/*--------------------------------------------------------
訪問診療
----------------------------------------------------------*/
.visit-anker-wrapper {
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 1024px) {
  .visit-anker-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 599px) {
  .visit-anker-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.visit-anker-wrapper__nav {
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.visit-anker-wrapper__nav__list {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.visit-anker-wrapper__nav__list > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .visit-anker-wrapper__nav__list > li {
    width: calc((99.9% - 25px * (3 - 1)) / 3);
    margin-top: 25px;
    margin-right: 25px;
  }
  .visit-anker-wrapper__nav__list > li:nth-child(3n) {
    margin-right: 0;
  }
  .visit-anker-wrapper__nav__list > li:nth-child(1) {
    margin-top: 0;
  }
  .visit-anker-wrapper__nav__list > li:nth-child(2) {
    margin-top: 0;
  }
  .visit-anker-wrapper__nav__list > li:nth-child(3) {
    margin-top: 0;
  }
  .visit-anker-wrapper__nav__list > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .visit-anker-wrapper__nav__list > li {
    width: calc((99.9% - 2.4% * (3 - 1)) / 3);
    margin-top: 2.4%;
    margin-right: 2.4%;
  }
  .visit-anker-wrapper__nav__list > li:nth-child(3n) {
    margin-right: 0;
  }
  .visit-anker-wrapper__nav__list > li:nth-child(1) {
    margin-top: 0;
  }
  .visit-anker-wrapper__nav__list > li:nth-child(2) {
    margin-top: 0;
  }
  .visit-anker-wrapper__nav__list > li:nth-child(3) {
    margin-top: 0;
  }
  .visit-anker-wrapper__nav__list > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .visit-anker-wrapper__nav__list > li {
    width: 100%;
    margin-top: 10px;
  }
  .visit-anker-wrapper__nav__list > li:nth-child(1) {
    margin-top: 0;
  }
}

.visit-about-wrapper {
  padding: 80px 40px 90px;
}
@media screen and (max-width: 1024px) {
  .visit-about-wrapper {
    padding: 60px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .visit-about-wrapper {
    padding: 40px 20px 50px;
  }
}
.visit-about-wrapper__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .visit-about-wrapper__box {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.visit-about-wrapper__box__head {
  width: 46.7%;
}
@media screen and (max-width: 599px) {
  .visit-about-wrapper__box__head {
    width: 100%;
    margin-bottom: 20px;
  }
}
.visit-about-wrapper__box__head__img img {
  width: 100%;
  border-radius: 10px;
}
.visit-about-wrapper__box__body {
  width: calc(53.2% - 70px);
  margin-left: 70px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .visit-about-wrapper__box__body {
    width: calc(53.2% - 50px);
    margin-left: 50px;
  }
}
@media screen and (max-width: 834px) {
  .visit-about-wrapper__box__body {
    width: calc(53.2% - 30px);
    margin-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .visit-about-wrapper__box__body {
    width: 100%;
    margin-left: 0;
  }
}
.visit-about-wrapper__box__body__catch {
  color: #559202;
  font-size: 3.5rem;
  line-height: 1.5;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (max-width: 1300px) {
  .visit-about-wrapper__box__body__catch {
    font-size: clamp(2.2rem, 2.5vw, 3.5rem);
  }
}
@media screen and (max-width: 834px) {
  .visit-about-wrapper__box__body__catch {
    font-size: 2rem;
  }
}
.visit-about-wrapper__box__body__text {
  color: #333333;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .visit-about-wrapper__box__body__text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .visit-about-wrapper__box__body__text {
    margin-top: 15px;
  }
}
.visit-about-wrapper__sodan {
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 50px 50px 60px;
  margin-top: 70px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .visit-about-wrapper__sodan {
    padding: 40px 40px 50px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 834px) {
  .visit-about-wrapper__sodan {
    padding: 30px 30px 40px;
  }
}
@media screen and (max-width: 599px) {
  .visit-about-wrapper__sodan {
    padding: 20px 20px 30px;
    margin-top: 40px;
  }
}
.visit-about-wrapper__sodan__list > li {
  position: relative;
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.35;
  padding-left: 22px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.visit-about-wrapper__sodan__list > li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 12px;
  height: 4px;
  background-color: #81bb31;
}
.visit-about-wrapper__sodan__list--col3 > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .visit-about-wrapper__sodan__list--col3 > li {
    width: calc((99.9% - 2em * (3 - 1)) / 3);
    margin-top: 12px;
    margin-right: 2em;
  }
  .visit-about-wrapper__sodan__list--col3 > li:nth-child(3n) {
    margin-right: 0;
  }
  .visit-about-wrapper__sodan__list--col3 > li:nth-child(1) {
    margin-top: 0;
  }
  .visit-about-wrapper__sodan__list--col3 > li:nth-child(2) {
    margin-top: 0;
  }
  .visit-about-wrapper__sodan__list--col3 > li:nth-child(3) {
    margin-top: 0;
  }
  .visit-about-wrapper__sodan__list--col3 > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .visit-about-wrapper__sodan__list--col3 > li {
    width: calc((99.9% - 2em * (2 - 1)) / 2);
    margin-top: 10px;
    margin-right: 2em;
  }
  .visit-about-wrapper__sodan__list--col3 > li:nth-child(2n) {
    margin-right: 0;
  }
  .visit-about-wrapper__sodan__list--col3 > li:nth-child(1) {
    margin-top: 0;
  }
  .visit-about-wrapper__sodan__list--col3 > li:nth-child(2) {
    margin-top: 0;
  }
  .visit-about-wrapper__sodan__list--col3 > li:nth-child(2n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .visit-about-wrapper__sodan__list--col3 > li {
    width: 100%;
    margin-top: 8px;
  }
  .visit-about-wrapper__sodan__list--col3 > li:nth-child(1) {
    margin-top: 0;
  }
}
.visit-about-wrapper__note {
  padding-left: 50px;
  padding-right: 50px;
  margin-top: 20px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .visit-about-wrapper__note {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 834px) {
  .visit-about-wrapper__note {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .visit-about-wrapper__note {
    padding-left: 0;
    padding-right: 0;
    margin-top: 10px;
  }
}

.visit-detail-wrapper {
  background-color: #ecf3e0;
  padding: 80px 40px 90px;
}
@media screen and (max-width: 1024px) {
  .visit-detail-wrapper {
    padding: 60px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .visit-detail-wrapper {
    padding: 40px 20px 50px;
  }
}
.visit-detail-wrapper__cure {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 60px 50px 70px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .visit-detail-wrapper__cure {
    padding: 50px 40px 60px;
  }
}
@media screen and (max-width: 834px) {
  .visit-detail-wrapper__cure {
    padding: 40px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .visit-detail-wrapper__cure {
    padding: 30px 20px 40px;
  }
}
.visit-detail-wrapper__cure__list > li {
  position: relative;
  color: #444444;
  font-size: 1.5rem;
  line-height: 1.7;
  padding-left: 37px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .visit-detail-wrapper__cure__list > li {
    padding-left: 30px;
  }
}
.visit-detail-wrapper__cure__list > li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid #81bb31;
  box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  .visit-detail-wrapper__cure__list > li::before {
    top: 7px;
  }
}
@media screen and (max-width: 599px) {
  .visit-detail-wrapper__cure__list > li::before {
    width: 10px;
    height: 10px;
  }
}
.visit-detail-wrapper__cure__list > li::after {
  position: absolute;
  content: "";
  top: 11px;
  left: 3px;
  width: 6px;
  height: 6px;
  background-color: #81bb31;
}
@media screen and (max-width: 834px) {
  .visit-detail-wrapper__cure__list > li::after {
    top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .visit-detail-wrapper__cure__list > li::after {
    width: 4px;
    height: 4px;
  }
}
.visit-detail-wrapper__cure__list--col3 > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .visit-detail-wrapper__cure__list--col3 > li {
    width: calc((99.9% - 2em * (3 - 1)) / 3);
    margin-top: 12px;
    margin-right: 2em;
  }
  .visit-detail-wrapper__cure__list--col3 > li:nth-child(3n) {
    margin-right: 0;
  }
  .visit-detail-wrapper__cure__list--col3 > li:nth-child(1) {
    margin-top: 0;
  }
  .visit-detail-wrapper__cure__list--col3 > li:nth-child(2) {
    margin-top: 0;
  }
  .visit-detail-wrapper__cure__list--col3 > li:nth-child(3) {
    margin-top: 0;
  }
  .visit-detail-wrapper__cure__list--col3 > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .visit-detail-wrapper__cure__list--col3 > li {
    width: calc((99.9% - 2em * (2 - 1)) / 2);
    margin-top: 10px;
    margin-right: 2em;
  }
  .visit-detail-wrapper__cure__list--col3 > li:nth-child(2n) {
    margin-right: 0;
  }
  .visit-detail-wrapper__cure__list--col3 > li:nth-child(1) {
    margin-top: 0;
  }
  .visit-detail-wrapper__cure__list--col3 > li:nth-child(2) {
    margin-top: 0;
  }
  .visit-detail-wrapper__cure__list--col3 > li:nth-child(2n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .visit-detail-wrapper__cure__list--col3 > li {
    width: 100%;
    margin-top: 8px;
  }
  .visit-detail-wrapper__cure__list--col3 > li:nth-child(1) {
    margin-top: 0;
  }
}
.visit-detail-wrapper__cure__list--col4 > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .visit-detail-wrapper__cure__list--col4 > li {
    width: calc((99.9% - 2em * (4 - 1)) / 4);
    margin-top: 12px;
    margin-right: 2em;
  }
  .visit-detail-wrapper__cure__list--col4 > li:nth-child(4n) {
    margin-right: 0;
  }
  .visit-detail-wrapper__cure__list--col4 > li:nth-child(1) {
    margin-top: 0;
  }
  .visit-detail-wrapper__cure__list--col4 > li:nth-child(2) {
    margin-top: 0;
  }
  .visit-detail-wrapper__cure__list--col4 > li:nth-child(3) {
    margin-top: 0;
  }
  .visit-detail-wrapper__cure__list--col4 > li:nth-child(4) {
    margin-top: 0;
  }
  .visit-detail-wrapper__cure__list--col4 > li:nth-child(4n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .visit-detail-wrapper__cure__list--col4 > li {
    width: calc((99.9% - 2em * (2 - 1)) / 2);
    margin-top: 10px;
    margin-right: 2em;
  }
  .visit-detail-wrapper__cure__list--col4 > li:nth-child(2n) {
    margin-right: 0;
  }
  .visit-detail-wrapper__cure__list--col4 > li:nth-child(1) {
    margin-top: 0;
  }
  .visit-detail-wrapper__cure__list--col4 > li:nth-child(2) {
    margin-top: 0;
  }
  .visit-detail-wrapper__cure__list--col4 > li:nth-child(2n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .visit-detail-wrapper__cure__list--col4 > li {
    width: 100%;
    margin-top: 8px;
  }
  .visit-detail-wrapper__cure__list--col4 > li:nth-child(1) {
    margin-top: 0;
  }
}

.visit-area-wrapper {
  padding: 80px 40px 0;
}
@media screen and (max-width: 1024px) {
  .visit-area-wrapper {
    padding: 60px 30px 0;
  }
}
@media screen and (max-width: 599px) {
  .visit-area-wrapper {
    padding: 40px 20px 0;
  }
}
.visit-area-wrapper__map {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.visit-area-wrapper__map img {
  width: 100%;
  border-radius: 10px;
}
.visit-area-wrapper__target {
  text-align: center;
  margin-top: 45px;
}
@media screen and (max-width: 834px) {
  .visit-area-wrapper__target {
    margin-top: 30px;
  }
}
.visit-area-wrapper__target__text {
  color: #559202;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 8px;
}
@media screen and (max-width: 834px) {
  .visit-area-wrapper__target__text {
    font-size: 1.7rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 599px) {
  .visit-area-wrapper__target__text {
    font-size: 1.6rem;
  }
}
.visit-area-wrapper__target__list {
  font-size: 0;
}
.visit-area-wrapper__target__list > li {
  position: relative;
  display: inline-block;
  color: #559202;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.25;
  padding-left: 27px;
  padding-right: 20px;
  margin-left: 20px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .visit-area-wrapper__target__list > li {
    font-size: 1.7rem;
    padding-right: 10px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 599px) {
  .visit-area-wrapper__target__list > li {
    font-size: 1.6rem;
    padding-left: 23px;
  }
}
.visit-area-wrapper__target__list > li::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 17px;
  height: 17px;
  border: 5px solid #a1d15e;
  border-radius: 50%;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .visit-area-wrapper__target__list > li::before {
    top: 3px;
    width: 15px;
    height: 15px;
    border: 4px solid #a1d15e;
  }
}
.visit-area-wrapper__text {
  color: #444444;
  font-size: 1.5rem;
  line-height: 1.7;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 834px) {
  .visit-area-wrapper__text {
    margin-top: 15px;
  }
}

/*--------------------------------------------------------
各種検診
----------------------------------------------------------*/
.examination-anker-wrapper {
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 1024px) {
  .examination-anker-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 599px) {
  .examination-anker-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.examination-anker-wrapper__nav {
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.examination-anker-wrapper__nav__list {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.examination-anker-wrapper__nav__list > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .examination-anker-wrapper__nav__list > li {
    width: calc((99.9% - 25px * (3 - 1)) / 3);
    margin-top: 25px;
    margin-right: 25px;
  }
  .examination-anker-wrapper__nav__list > li:nth-child(3n) {
    margin-right: 0;
  }
  .examination-anker-wrapper__nav__list > li:nth-child(1) {
    margin-top: 0;
  }
  .examination-anker-wrapper__nav__list > li:nth-child(2) {
    margin-top: 0;
  }
  .examination-anker-wrapper__nav__list > li:nth-child(3) {
    margin-top: 0;
  }
  .examination-anker-wrapper__nav__list > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .examination-anker-wrapper__nav__list > li {
    width: calc((99.9% - 2.4% * (3 - 1)) / 3);
    margin-top: 2.4%;
    margin-right: 2.4%;
  }
  .examination-anker-wrapper__nav__list > li:nth-child(3n) {
    margin-right: 0;
  }
  .examination-anker-wrapper__nav__list > li:nth-child(1) {
    margin-top: 0;
  }
  .examination-anker-wrapper__nav__list > li:nth-child(2) {
    margin-top: 0;
  }
  .examination-anker-wrapper__nav__list > li:nth-child(3) {
    margin-top: 0;
  }
  .examination-anker-wrapper__nav__list > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .examination-anker-wrapper__nav__list > li {
    width: 100%;
    margin-top: 10px;
  }
  .examination-anker-wrapper__nav__list > li:nth-child(1) {
    margin-top: 0;
  }
}

.examination-wrapper {
  padding: 80px 40px 0;
}
@media screen and (max-width: 1024px) {
  .examination-wrapper {
    padding: 70px 30px 0;
  }
}
@media screen and (max-width: 599px) {
  .examination-wrapper {
    padding: 60px 20px 0;
  }
}
.examination-wrapper__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .examination-wrapper__box {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.examination-wrapper__box__head {
  width: 46.7%;
}
@media screen and (max-width: 599px) {
  .examination-wrapper__box__head {
    width: 100%;
    margin-bottom: 20px;
  }
}
.examination-wrapper__box__head__img img {
  width: 100%;
  border-radius: 10px;
}
.examination-wrapper__box__body {
  width: calc(53.2% - 70px);
  padding-top: 30px;
  margin-left: 70px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .examination-wrapper__box__body {
    width: calc(53.2% - 50px);
    padding-top: 25px;
    margin-left: 50px;
  }
}
@media screen and (max-width: 834px) {
  .examination-wrapper__box__body {
    width: calc(53.2% - 30px);
    padding-top: 0;
    margin-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .examination-wrapper__box__body {
    width: 100%;
    margin-left: 0;
  }
}
.examination-wrapper__box__body__catch {
  color: #559202;
  font-size: 3.5rem;
  line-height: 1.5;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (max-width: 1300px) {
  .examination-wrapper__box__body__catch {
    font-size: clamp(2.2rem, 2.5vw, 3.5rem);
  }
}
@media screen and (max-width: 834px) {
  .examination-wrapper__box__body__catch {
    font-size: 2rem;
  }
}
.examination-wrapper__box__body__text {
  color: #333333;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .examination-wrapper__box__body__text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .examination-wrapper__box__body__text {
    margin-top: 15px;
  }
}
.examination-wrapper__block {
  margin-top: 70px;
}
@media screen and (max-width: 1024px) {
  .examination-wrapper__block {
    margin-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .examination-wrapper__block {
    margin-top: 40px;
  }
}

.examination-box__read {
  color: #444444;
  padding-left: 32px;
}
@media screen and (max-width: 834px) {
  .examination-box__read {
    padding-left: 25px;
  }
}
@media screen and (max-width: 599px) {
  .examination-box__read {
    padding-left: 20px;
  }
}
.examination-box__bg-box {
  background-color: #f2f7e9;
  border-radius: 10px;
  padding: 40px 50px 50px;
  margin-top: 50px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .examination-box__bg-box {
    padding: 40px 40px 50px;
    margin-top: 35px;
  }
}
@media screen and (max-width: 834px) {
  .examination-box__bg-box {
    padding: 30px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .examination-box__bg-box {
    padding: 30px 20px 40px;
    margin-top: 20px;
  }
}
.examination-box__bg-box__inr {
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .examination-box__bg-box__inr {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .examination-box__bg-box__inr {
    margin-bottom: 30px;
  }
}
.examination-box__bg-box__inr:last-child {
  margin-bottom: 0 !important;
}
.examination-box__bg-box__text {
  color: #333333;
  font-size: 1.5rem;
}
.examination-box__bg-box__list > li {
  position: relative;
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.35;
  padding-left: 22px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.examination-box__bg-box__list > li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 12px;
  height: 4px;
  background-color: #81bb31;
}
.examination-box__bg-box__list--col3 > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .examination-box__bg-box__list--col3 > li {
    width: calc((99.9% - 2em * (3 - 1)) / 3);
    margin-top: 12px;
    margin-right: 2em;
  }
  .examination-box__bg-box__list--col3 > li:nth-child(3n) {
    margin-right: 0;
  }
  .examination-box__bg-box__list--col3 > li:nth-child(1) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col3 > li:nth-child(2) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col3 > li:nth-child(3) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col3 > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .examination-box__bg-box__list--col3 > li {
    width: calc((99.9% - 2em * (2 - 1)) / 2);
    margin-top: 10px;
    margin-right: 2em;
  }
  .examination-box__bg-box__list--col3 > li:nth-child(2n) {
    margin-right: 0;
  }
  .examination-box__bg-box__list--col3 > li:nth-child(1) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col3 > li:nth-child(2) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col3 > li:nth-child(2n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .examination-box__bg-box__list--col3 > li {
    width: 100%;
    margin-top: 8px;
  }
  .examination-box__bg-box__list--col3 > li:nth-child(1) {
    margin-top: 0;
  }
}
.examination-box__bg-box__list--col4 > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .examination-box__bg-box__list--col4 > li {
    width: calc((99.9% - 2em * (4 - 1)) / 4);
    margin-top: 12px;
    margin-right: 2em;
  }
  .examination-box__bg-box__list--col4 > li:nth-child(4n) {
    margin-right: 0;
  }
  .examination-box__bg-box__list--col4 > li:nth-child(1) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col4 > li:nth-child(2) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col4 > li:nth-child(3) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col4 > li:nth-child(4) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col4 > li:nth-child(4n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .examination-box__bg-box__list--col4 > li {
    width: calc((99.9% - 2em * (2 - 1)) / 2);
    margin-top: 10px;
    margin-right: 2em;
  }
  .examination-box__bg-box__list--col4 > li:nth-child(2n) {
    margin-right: 0;
  }
  .examination-box__bg-box__list--col4 > li:nth-child(1) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col4 > li:nth-child(2) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col4 > li:nth-child(2n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .examination-box__bg-box__list--col4 > li {
    width: 100%;
    margin-top: 8px;
  }
  .examination-box__bg-box__list--col4 > li:nth-child(1) {
    margin-top: 0;
  }
}
.examination-box__bg-box__list--col6 > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .examination-box__bg-box__list--col6 > li {
    width: calc((99.9% - 2em * (6 - 1)) / 6);
    margin-top: 12px;
    margin-right: 2em;
  }
  .examination-box__bg-box__list--col6 > li:nth-child(6n) {
    margin-right: 0;
  }
  .examination-box__bg-box__list--col6 > li:nth-child(1) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col6 > li:nth-child(2) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col6 > li:nth-child(3) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col6 > li:nth-child(4) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col6 > li:nth-child(5) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col6 > li:nth-child(6) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col6 > li:nth-child(6n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .examination-box__bg-box__list--col6 > li {
    width: calc((99.9% - 2em * (3 - 1)) / 3);
    margin-top: 10px;
    margin-right: 2em;
  }
  .examination-box__bg-box__list--col6 > li:nth-child(3n) {
    margin-right: 0;
  }
  .examination-box__bg-box__list--col6 > li:nth-child(1) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col6 > li:nth-child(2) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col6 > li:nth-child(3) {
    margin-top: 0;
  }
  .examination-box__bg-box__list--col6 > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .examination-box__bg-box__list--col6 > li {
    width: 100%;
    margin-top: 8px;
  }
  .examination-box__bg-box__list--col6 > li:nth-child(1) {
    margin-top: 0;
  }
}
.examination-box__bg-box__dl__item {
  line-height: 1.7;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .examination-box__bg-box__dl__item {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .examination-box__bg-box__dl__item {
    margin-bottom: 15px;
  }
}
.examination-box__bg-box__dl__item:last-child {
  margin-bottom: 0 !important;
}
.examination-box__bg-box__dl__item dt {
  position: relative;
  font-weight: bold;
  padding-left: 22px;
  margin-bottom: 10px;
}
.examination-box__bg-box__dl__item dt::before {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  width: 12px;
  height: 4px;
  background-color: #81bb31;
}
.examination-box__bg-box__dl__item dd {
  color: #333333;
  font-size: 1.5rem;
  font-weight: 500;
  padding-left: 22px;
}

.examination-equipment-wrapper {
  padding: 80px 40px 0;
}
@media screen and (max-width: 1024px) {
  .examination-equipment-wrapper {
    padding: 70px 30px 0;
  }
}
@media screen and (max-width: 599px) {
  .examination-equipment-wrapper {
    padding: 60px 20px 0;
  }
}
.examination-equipment-wrapper__list > li {
  float: left;
}
@media print, screen and (min-width: 600px) and (min-width: 1025px) {
  .examination-equipment-wrapper__list > li {
    width: calc((99.9% - 3.7% * (3 - 1)) / 3);
    margin-top: 3.7%;
    margin-right: 3.7%;
  }
  .examination-equipment-wrapper__list > li:nth-child(3n) {
    margin-right: 0;
  }
  .examination-equipment-wrapper__list > li:nth-child(1) {
    margin-top: 0;
  }
  .examination-equipment-wrapper__list > li:nth-child(2) {
    margin-top: 0;
  }
  .examination-equipment-wrapper__list > li:nth-child(3) {
    margin-top: 0;
  }
  .examination-equipment-wrapper__list > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .examination-equipment-wrapper__list > li {
    width: calc((99.9% - 2.2% * (3 - 1)) / 3);
    margin-top: 2.2%;
    margin-right: 2.2%;
  }
  .examination-equipment-wrapper__list > li:nth-child(3n) {
    margin-right: 0;
  }
  .examination-equipment-wrapper__list > li:nth-child(1) {
    margin-top: 0;
  }
  .examination-equipment-wrapper__list > li:nth-child(2) {
    margin-top: 0;
  }
  .examination-equipment-wrapper__list > li:nth-child(3) {
    margin-top: 0;
  }
  .examination-equipment-wrapper__list > li:nth-child(3n+1) {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .examination-equipment-wrapper__list > li {
    width: 100%;
    margin-top: 20px;
  }
  .examination-equipment-wrapper__list > li:nth-child(1) {
    margin-top: 0;
  }
}

.equipment-box {
  background-color: #f2f7e9;
  border-radius: 10px;
  padding: 50px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .equipment-box {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 599px) {
  .equipment-box {
    padding: 30px 20px;
  }
}
.equipment-box__text {
  color: #333333;
  font-size: 1.5rem;
}

/*--------------------------------------------------------
よくあるご質問
----------------------------------------------------------*/
.faq-wrapper {
  padding: 0 40px;
}
@media screen and (max-width: 1024px) {
  .faq-wrapper {
    padding: 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .faq-wrapper {
    padding: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .faq-wrapper__list {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.faq-wrapper__list > li {
  margin-bottom: 30px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.faq-wrapper__list > li:last-child {
  margin-bottom: 0 !important;
}

.faq-box__q {
  position: relative;
  color: #5c9200;
  font-size: 2rem;
  font-weight: 500;
  background-color: #f2f7e9;
  border-top: 1px solid #cccccc;
  padding: 26px 40px 27px 120px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .faq-box__q {
    font-size: 1.8rem;
    padding: 23px 30px 25px 100px;
  }
}
@media screen and (max-width: 834px) {
  .faq-box__q {
    font-size: 1.6rem;
    padding: 21px 20px 22px 90px;
  }
}
@media screen and (max-width: 599px) {
  .faq-box__q {
    font-size: 1.5rem;
    padding: 19px 20px 20px 80px;
  }
}
.faq-box__q::before {
  position: absolute;
  content: "";
  top: 15px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .faq-box__q::before {
    top: 12px;
    width: 56px;
    height: 56px;
  }
}
@media screen and (max-width: 834px) {
  .faq-box__q::before {
    top: 10px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 599px) {
  .faq-box__q::before {
    left: 15px;
    width: 46px;
    height: 46px;
  }
}
.faq-box__q::after {
  position: absolute;
  content: "Q";
  top: 15px;
  left: 20px;
  width: 60px;
  height: 60px;
  color: #76b904;
  font-size: 2rem;
  font-weight: bold;
  line-height: 58px;
  text-align: center;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .faq-box__q::after {
    top: 12px;
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
    line-height: 54px;
  }
}
@media screen and (max-width: 834px) {
  .faq-box__q::after {
    top: 10px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    line-height: 48px;
  }
}
@media screen and (max-width: 599px) {
  .faq-box__q::after {
    left: 15px;
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
    line-height: 44px;
  }
}
.faq-box__a {
  position: relative;
  padding: 30px 40px 20px 120px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .faq-box__a {
    padding: 25px 30px 17px 100px;
  }
}
@media screen and (max-width: 834px) {
  .faq-box__a {
    font-size: 1.5rem;
    padding: 21px 20px 15px 90px;
  }
}
@media screen and (max-width: 599px) {
  .faq-box__a {
    font-size: 1.4rem;
    padding: 19px 20px 13px 80px;
  }
}
.faq-box__a::before {
  position: absolute;
  content: "";
  top: 15px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #76b904;
  border-radius: 50%;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .faq-box__a::before {
    top: 12px;
    width: 56px;
    height: 56px;
  }
}
@media screen and (max-width: 834px) {
  .faq-box__a::before {
    top: 10px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 599px) {
  .faq-box__a::before {
    left: 15px;
    width: 46px;
    height: 46px;
  }
}
.faq-box__a::after {
  position: absolute;
  content: "A";
  top: 15px;
  left: 20px;
  width: 60px;
  height: 60px;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 58px;
  text-align: center;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .faq-box__a::after {
    top: 12px;
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
    line-height: 54px;
  }
}
@media screen and (max-width: 834px) {
  .faq-box__a::after {
    top: 10px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    line-height: 48px;
  }
}
@media screen and (max-width: 599px) {
  .faq-box__a::after {
    left: 15px;
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
    line-height: 44px;
  }
}
.faq-box__a__text {
  color: #444444;
}/*# sourceMappingURL=style.css.map */