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

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

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

	リセット : html5reset-1.6.1.css

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

/*body設定*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #345;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 2;
  font-size: 1.8rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  /*任意でフォントサイズを指定*/
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 500;
  }
}
@media screen and (max-width: 900px) {
  body {
    font-size: 1.7rem;
    line-height: 1.9;
  }
}
@media screen and (max-width: 599px) {
  body {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

/*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 {
  touch-action: manipulation;
}

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

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

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

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

/*すべての要素の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 {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  max-height: 999999px;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  word-break: break-all;
}

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

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

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

.ml-05 {
  margin-left: -0.5em;
}

.mr-05 {
  margin-right: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

.display-hide {
  display: none;
}

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

.header {
  margin: 30px 30px 0;
  width: calc(100% - 60px);
  height: 100px;
  background-color: #fff;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 3px rgba(51, 68, 85, 0.2);
}
@media screen and (max-width: 1400px) {
  .header {
    margin: 0;
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .header {
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 60px;
  }
}

.header-logo {
  margin-left: 30px;
  width: 230px;
  height: auto;
  line-height: 0.1;
}
@media screen and (max-width: 1600px) {
  .header-logo {
    margin-left: 25px;
    width: 210px;
  }
}
@media screen and (max-width: 1300px) {
  .header-logo {
    margin-left: 30px;
    width: 230px;
  }
}
@media screen and (max-width: 900px) {
  .header-logo {
    margin-left: 20px;
    width: 200px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    margin-left: 15px;
    width: 150px;
  }
}
@media screen and (max-width: 350px) {
  .header-logo {
    margin-left: 12px;
    width: 140px;
  }
}
.header-logo a {
  display: block;
}
@media screen and (min-width: 1025px) {
  .header-logo a:hover {
    transform: translateY(3px);
  }
}

.header-nav {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  align-items: center;
}
.header-nav__list {
  margin-right: 40px;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  .header-nav__list {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1300px) {
  .header-nav__list {
    display: none;
  }
}
.header-nav__list__item {
  height: 100%;
  margin-left: 35px;
}
@media screen and (max-width: 1600px) {
  .header-nav__list__item {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .header-nav__list__item {
    margin-left: 22px;
  }
}
.header-nav__list__item:first-child {
  margin-left: 0;
}
.header-nav__list__item__link {
  height: 100%;
  font-size: 1.8rem;
  line-height: 1;
  color: #345;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  .header-nav__list__item__link {
    font-size: 1.7rem;
    letter-spacing: normal;
  }
}
@media screen and (max-width: 1400px) {
  .header-nav__list__item__link {
    font-size: 1.6rem;
  }
}
.header-nav__list__item__link::before {
  content: "";
  margin: 0 auto;
  width: 8px;
  height: 8px;
  background-color: #99c744;
  border-radius: 50%;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  .header-nav__list__item__link:hover {
    color: #55b344;
  }
  .header-nav__list__item__link:hover::before {
    bottom: 20px;
  }
}
.header-nav__list__item__link.now {
  color: #55b344;
}
.header-nav__list__item__link.now::before {
  bottom: 20px;
}
.header-nav__list__item__link.home {
  width: 22px;
  height: 100%;
  background-image: url(../img/common/icon_home.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 50% 48%;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 200%;
}
@media screen and (min-width: 1025px) {
  .header-nav__list__item__link.home:hover {
    background-image: url(../img/common/icon_home_green.svg);
  }
}
.header-nav__list__item__link.home.now {
  background-image: url(../img/common/icon_home_green.svg);
}
.header-nav__language {
  width: 50px;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .header-nav__language {
    width: 40px;
  }
}
@media screen and (max-width: 350px) {
  .header-nav__language {
    width: 30px;
  }
}
.header-nav__language__item {
  width: 100%;
  height: 50%;
}
.header-nav__language__item__link {
  width: 100%;
  height: 100%;
  font-size: 1.7rem;
  line-height: 1;
  color: #789;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-align: center;
  background-color: #f7f6f3;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .header-nav__language__item__link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 350px) {
  .header-nav__language__item__link {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav__language__item__link:hover {
    color: #fff;
    background-color: #55b344;
  }
}
.header-nav__language__item__link.now {
  color: #fff;
  background-color: #99c744;
}
.header-nav__access {
  display: block;
  width: 100px;
  height: 100%;
  padding-top: 62px;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  color: #345;
  font-weight: 700;
  text-align: center;
  background-color: #e7f7e7;
  background-image: url(../img/common/icon_access.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: 50% 27px;
}
@media screen and (max-width: 900px) {
  .header-nav__access {
    padding-top: 52px;
    width: 80px;
    background-size: 17px auto;
    background-position: 50% 19px;
  }
}
@media screen and (max-width: 599px) {
  .header-nav__access {
    padding-top: 40px;
    width: 60px;
    font-size: 1.1rem;
    background-size: 15px auto;
    background-position: 50% 12px;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav__access:hover {
    color: #fff;
    background-color: #99c744;
  }
}
.header-nav__btn {
  width: 100px;
  height: 100px;
  background-color: #55b344;
  border: none;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 200%;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  z-index: 101;
}
@media screen and (max-width: 900px) {
  .header-nav__btn {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header-nav__btn {
    width: 60px;
    height: 60px;
  }
}
.header-nav__btn.on {
  position: fixed;
  top: 0;
  right: 0;
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .header-nav__btn.on {
    background-color: rgba(85, 179, 68, 0.8);
  }
}
.header-nav__btn.on .bar {
  background-color: transparent;
}
.header-nav__btn.on .bar::before {
  top: 0;
  transform: rotate(30deg);
}
.header-nav__btn.on .bar::after {
  top: 0;
  transform: rotate(-30deg);
}
.header-nav__btn .bar {
  margin: auto auto;
  width: 36%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 1px;
  left: 0;
  transition: 0.2s;
}
.header-nav__btn .bar::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: 0.2s;
  position: absolute;
  top: -9px;
  left: 0;
}
.header-nav__btn .bar::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: 0.2s;
  position: absolute;
  top: 9px;
  right: 0;
}
@media screen and (max-width: 900px) {
  .header-nav__btn .bar {
    height: 2px;
    bottom: 0;
  }
  .header-nav__btn .bar::before {
    top: -7px;
  }
  .header-nav__btn .bar::after {
    top: 7px;
  }
}
@media screen and (max-width: 599px) {
  .header-nav__btn .bar::before {
    top: -6px;
  }
  .header-nav__btn .bar::after {
    top: 6px;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav__btn:hover {
    background-color: #99c744;
  }
}

.menu-wrapper {
  width: 100%;
  height: 0;
  background-color: #55b344;
  overflow: hidden;
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.menu-wrapper::before {
  content: "";
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 1346/82;
  background-image: url(../img/common/menu_bg.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 50% 100%;
  opacity: 0.15;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .menu-wrapper::before {
    display: none;
  }
}
.menu-wrapper.on {
  height: 100vh;
}
.menu-wrapper__box {
  padding: 130px 50px;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow-y: auto;
}
@media screen and (max-width: 1300px) {
  .menu-wrapper__box {
    padding: 115px 50px;
  }
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box {
    padding: 108px 40px;
  }
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box {
    padding: 75px 25px 100px;
  }
}
@media screen and (max-width: 350px) {
  .menu-wrapper__box {
    padding: 75px 10px 100px;
  }
}
.menu-wrapper__box::-webkit-scrollbar {
  width: 12px;
}
@media screen and (max-width: 1024px) {
  .menu-wrapper__box::-webkit-scrollbar {
    width: 0;
  }
}
.menu-wrapper__box::-webkit-scrollbar-track {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.menu-wrapper__box::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  box-shadow: none;
}
.menu-wrapper__box__logo {
  width: 240px;
  line-height: 1;
  display: block;
  position: absolute;
  top: 30px;
  left: 30px;
}
@media screen and (max-width: 1300px) {
  .menu-wrapper__box__logo {
    top: 40px;
    left: 50px;
  }
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__logo {
    margin: 0 auto;
    top: 35px;
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__logo {
    top: 25px;
    right: 5px;
    width: 190px;
  }
}
@media screen and (min-width: 1025px) {
  .menu-wrapper__box__logo:hover {
    transform: translateY(5px);
  }
}
.menu-wrapper__box__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}
.menu-wrapper__box__inner__list {
  margin-top: -20px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 1200px) {
  .menu-wrapper__box__inner__list {
    justify-content: space-between;
  }
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__list {
    margin-top: -10px;
  }
}
.menu-wrapper__box__inner__list__item {
  margin-top: 20px;
  margin-left: 20px;
  width: calc((100% - 40px) / 3);
  position: relative;
}
.menu-wrapper__box__inner__list__item:nth-child(3n-2) {
  margin-left: 0;
}
@media screen and (max-width: 1200px) {
  .menu-wrapper__box__inner__list__item {
    margin-left: 0;
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__list__item {
    margin-top: 10px;
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__inner__list__item {
    width: 100%;
  }
}
.menu-wrapper__box__inner__list__item__link {
  padding: 0 70px 3px 25px;
  width: 100%;
  height: 70px;
  font-size: 2rem;
  line-height: 1.2;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.08em;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.menu-wrapper__box__inner__list__item__link::before {
  content: "";
  margin: auto 0;
  width: 36px;
  height: 16px;
  background-color: #99c744;
  background-image: url(../img/common/arrow_white.svg);
  background-size: auto 7px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  transition: 0.2s;
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__list__item__link {
    padding: 0 70px 2px 20px;
    height: 60px;
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.04em;
  }
  .menu-wrapper__box__inner__list__item__link::before {
    right: 12px;
    background-size: auto 6px;
  }
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__inner__list__item__link {
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    border-radius: 3px;
  }
}
@media screen and (min-width: 1025px) {
  .menu-wrapper__box__inner__list__item__link:hover {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .menu-wrapper__box__inner__list__item__link:hover::before {
    background-color: #55b344;
  }
}
.menu-wrapper__box__inner__list__item__open-btn {
  width: 40px;
  height: 40px;
  background-color: #99c744;
  border-radius: 2px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 110%;
  position: absolute;
  top: 15px;
  right: 15px;
  transition: 0.2s;
  cursor: pointer;
}
.menu-wrapper__box__inner__list__item__open-btn::before {
  content: "";
  margin: auto auto;
  width: 50%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.menu-wrapper__box__inner__list__item__open-btn::after {
  content: "";
  margin: auto auto;
  width: 50%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__list__item__open-btn {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .menu-wrapper__box__inner__list__item__open-btn:hover {
    background-color: #55b344;
  }
}
.menu-wrapper__box__inner__list__item__open-btn.close::before {
  transform: rotate(90deg);
}
.menu-wrapper__box__inner__list__item__sub {
  padding: 25px 15px;
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__list__item__sub {
    padding: 20px 10px;
  }
}
.menu-wrapper__box__inner__list__item__sub__item {
  margin-top: 12px;
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__list__item__sub__item {
    margin-top: 10px;
  }
}
.menu-wrapper__box__inner__list__item__sub__item:first-child {
  margin-top: 0;
}
.menu-wrapper__box__inner__list__item__sub__item__link {
  padding-left: 27px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
  display: block;
  position: relative;
}
.menu-wrapper__box__inner__list__item__sub__item__link::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 2px;
  left: 0;
}
.menu-wrapper__box__inner__list__item__sub__item__link::after {
  content: "";
  border-width: 3px 0 3px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #55b344;
  position: absolute;
  top: 8px;
  left: 7px;
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__list__item__sub__item__link {
    padding-left: 22px;
    font-size: 1.6rem;
  }
  .menu-wrapper__box__inner__list__item__sub__item__link::before {
    width: 16px;
    height: 16px;
    top: 1px;
    left: 0;
  }
  .menu-wrapper__box__inner__list__item__sub__item__link::after {
    top: 6px;
    left: 6px;
  }
}
@media screen and (min-width: 1025px) {
  .menu-wrapper__box__inner__list__item__sub__item__link:hover {
    transform: translateX(5px);
  }
}
.menu-wrapper__box__inner__list02 {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px dotted #fff;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__list02 {
    margin-top: 25px;
    padding-top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__inner__list02 {
    padding-top: 10px;
  }
}
.menu-wrapper__box__inner__list02__item {
  margin-right: 30px;
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__list02__item {
    margin-top: 10px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__list02__item {
    margin-top: 15px;
    margin-right: 0;
    width: 100%;
  }
}
.menu-wrapper__box__inner__list02__item__link {
  padding-left: 45px;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  position: relative;
  display: block;
}
.menu-wrapper__box__inner__list02__item__link::before {
  content: "";
  margin: auto 0;
  width: 34px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url(../img/common/arrow_green.svg);
  background-size: auto 7px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 8px;
  position: absolute;
  top: 1px;
  left: 0;
  transition: 0.2s;
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__list02__item__link {
    padding-left: 42px;
    font-size: 1.7rem;
  }
  .menu-wrapper__box__inner__list02__item__link::before {
    top: 0;
  }
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__inner__list02__item__link {
    padding-left: 38px;
    font-size: 1.6rem;
  }
  .menu-wrapper__box__inner__list02__item__link::before {
    width: 32px;
    height: 14px;
    background-size: auto 6px;
    border-radius: 7px;
  }
}
@media screen and (min-width: 1025px) {
  .menu-wrapper__box__inner__list02__item__link:hover {
    transform: translateX(5px);
  }
}
.menu-wrapper__box__inner__title {
  margin-top: 50px;
  margin-bottom: 20px;
  padding-left: 33px;
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  position: relative;
}
.menu-wrapper__box__inner__title::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 8px solid rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__title {
    margin-top: 35px;
    margin-bottom: 15px;
    padding-left: 28px;
    font-size: 1.9rem;
  }
  .menu-wrapper__box__inner__title::before {
    width: 20px;
    height: 20px;
    border: 7px solid rgba(255, 255, 255, 0.8);
    top: 1px;
    left: 0;
  }
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__inner__title {
    margin-top: 25px;
    margin-bottom: 15px;
    padding-left: 24px;
    font-size: 1.7rem;
  }
  .menu-wrapper__box__inner__title::before {
    width: 18px;
    height: 18px;
    border: 6px solid rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    top: 1px;
  }
}
.menu-wrapper__box__inner__hard {
  padding: 40px;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .menu-wrapper__box__inner__hard {
    padding: 35px;
  }
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__inner__hard {
    padding: 30px;
    border-radius: 3px;
  }
}
@media screen and (max-width: 350px) {
  .menu-wrapper__box__inner__hard {
    padding: 25px;
  }
}
.menu-wrapper__box__inner__hard__list {
  width: calc(100% - 200px - 20px);
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__hard__list {
    width: 100%;
  }
}
.menu-wrapper__box__inner__hard__list__item {
  margin-top: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .menu-wrapper__box__inner__hard__list__item {
    margin-top: 12px;
  }
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__inner__hard__list__item {
    margin-top: 20px;
    flex-wrap: wrap;
  }
}
.menu-wrapper__box__inner__hard__list__item:first-child {
  margin-top: 0;
}
.menu-wrapper__box__inner__hard__list__item__title {
  margin-right: 20px;
  width: 140px;
  height: 30px;
  font-size: 1.6rem;
  line-height: 31px;
  color: #fff;
  font-weight: 700;
  letter-spacing: normal;
  text-align: center;
  background-color: #55b344;
}
@media screen and (max-width: 1024px) {
  .menu-wrapper__box__inner__hard__list__item__title {
    margin-right: 15px;
    width: 120px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__inner__hard__list__item__title {
    margin-right: 0;
    padding-bottom: 8px;
    margin-bottom: 8px;
    padding-left: 15px;
    width: 100%;
    height: auto;
    font-size: 1.5rem;
    line-height: 1;
    color: #345;
    letter-spacing: 0.06em;
    text-align: left;
    background-color: transparent;
    border-bottom: 1px dotted #bbb;
    position: relative;
  }
  .menu-wrapper__box__inner__hard__list__item__title::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #55b344;
    position: absolute;
    top: 3px;
    left: 0;
  }
}
.menu-wrapper__box__inner__hard__list__item__title.ls05 {
  padding-left: 0.5em;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__inner__hard__list__item__title.ls05 {
    padding-left: 15px;
    letter-spacing: 0.06em;
  }
}
.menu-wrapper__box__inner__hard__list__item__text {
  padding-top: 2px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #345;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .menu-wrapper__box__inner__hard__list__item__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__inner__hard__list__item__text {
    padding-top: 0;
    padding-left: 15px;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: normal;
  }
}
.menu-wrapper__box__inner__hard__list__item__tel {
  padding-top: 1px;
  font-size: 3rem;
  line-height: 1;
  color: #345;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  cursor: auto;
}
@media screen and (max-width: 1024px) {
  .menu-wrapper__box__inner__hard__list__item__tel {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__inner__hard__list__item__tel {
    padding-top: 0;
    padding-left: 15px;
    font-size: 2.4rem;
    letter-spacing: normal;
  }
}
.menu-wrapper__box__inner__hard__btns {
  width: 200px;
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__hard__btns {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
.menu-wrapper__box__inner__hard__btns__item {
  margin-top: 10px;
}
.menu-wrapper__box__inner__hard__btns__item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__hard__btns__item {
    margin-top: 0;
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__inner__hard__btns__item {
    width: calc((100% - 4px) / 2);
  }
}
.menu-wrapper__box__inner__hard__btns__item__btn {
  padding-left: 60px;
  width: 100%;
  height: 60px;
  font-size: 1.8rem;
  line-height: 58px;
  color: #339922;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  background-color: #eef7f3;
  border-radius: 5px;
  background-repeat: no-repeat;
  display: block;
}
@media screen and (max-width: 900px) {
  .menu-wrapper__box__inner__hard__btns__item__btn {
    padding-left: 20px;
    font-size: 1.7rem;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__inner__hard__btns__item__btn {
    padding: 43px 0 18px;
    height: auto;
    font-size: 1.6rem;
    line-height: 1;
    text-align: center;
    letter-spacing: normal;
    border-radius: 2px;
  }
}
.menu-wrapper__box__inner__hard__btns__item__btn.access {
  background-image: url(../img/common/icon_access.svg);
  background-size: 18px auto;
  background-position: 24px 18px;
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__inner__hard__btns__item__btn.access {
    background-position: 50% 11px;
  }
}
.menu-wrapper__box__inner__hard__btns__item__btn.contact {
  background-image: url(../img/common/icon_contact.svg);
  background-size: 25px auto;
  background-position: 20px 20px;
}
@media screen and (max-width: 599px) {
  .menu-wrapper__box__inner__hard__btns__item__btn.contact {
    background-position: 50% 16px;
  }
}
@media screen and (min-width: 1025px) {
  .menu-wrapper__box__inner__hard__btns__item__btn:hover {
    color: #fff;
    background-color: #99c744;
  }
}

.pagetitle {
  margin-top: -130px;
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /*
  &__title{
      margin: auto auto;
      padding: 0 20px 0;
      width: 450px;
      height: 110px;
      background-color: rgba( $cl-green,0.9 );
      position: absolute;
      top: 195px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      @include mq(w1400){
          top: 0;
          bottom: 15px;
      }
      @include mq(tb02){
          width: 390px;
          height: 100px;
      }
      @include mq(sp){
          width: 280px;
          height: 70px;
          bottom: 5px;
      }
      &__text{
          padding-left: 0.06em;
          font-size: 3.2rem;
          color: #fff;
          font-family: $f-noto;
          font-weight: 700;
          line-height: 1;
          text-align: center;
          display: block;
          position: relative;
          &::before{
              content: "";
              margin: 0 auto;
              width: 70px;
              height: 70px;
              background-color: #fff !important;
              border-radius: 50%;
              background-repeat: no-repeat;
              position: absolute;
              top: -5px;
              left: 0;
              right: 0;
              display: none;
          }
          @include mq(tb02){
              font-size: 2.7rem;
              &::before{
                  width: 50px;
                  height: 50px;
              }
          }
          @include mq(sp){
              font-size: 2.0rem;
              &::before{
                  width: 40px;
                  height: 40px;
              }
          }
          &.news{
              padding-top: 75px;
              padding-left: 0.2em;
              letter-spacing: 0.2em;
              &::before{
                  content: "";
                  background-image: url(../img/common/icon_news.svg) !important;
                  background-repeat: no-repeat !important;
                  background-size: 35.7% auto !important;
                  background-position: 50% 52%;
                  display: block;
              }
              @include mq(tb02){
                  padding-top: 55px;
              }
              @include mq(sp){
                  padding-top: 41px;
              }
          }
          &.department{
              padding-top: 75px;
              &::before{
                  content: "";
                  background-image: url(../img/common/icon_department.svg) !important;
                  background-repeat: no-repeat !important;
                  background-size: 42% auto !important;
                  background-position: 50% 48%;
                  display: block;
              }
              @include mq(tb02){
                  padding-top: 55px;
              }
              @include mq(sp){
                  padding-top: 41px;
              }
          }
          &.recruit{
              padding-top: 75px;
              padding-left: 0.2em;
              letter-spacing: 0.2em;
              &::before{
                  content: "";
                  background-image: url(../img/common/icon_recruit.svg) !important;
                  background-repeat: no-repeat !important;
                  background-size: 42% auto !important;
                  background-position: 50% 48%;
                  display: block;
              }
              @include mq(tb02){
                  padding-top: 55px;
              }
              @include mq(sp){
                  padding-top: 41px;
              }
          }
      }
  }
  */
}
@media screen and (max-width: 1400px) {
  .pagetitle {
    margin-top: 0;
    height: 280px;
  }
}
@media screen and (max-width: 900px) {
  .pagetitle {
    height: 240px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    height: 140px;
  }
}
.pagetitle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pagetitle__title {
  margin: 0 auto;
  padding: 0 65px 7px;
  width: auto;
  height: 110px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 205px;
  left: auto;
  right: auto;
}
.pagetitle__title::before {
  content: "";
  border-width: 17px 17px 0 0;
  border-style: solid;
  border-color: #99c744 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.pagetitle__title::after {
  content: "";
  border-width: 0 0 17px 17px;
  border-style: solid;
  border-color: transparent transparent #99c744 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1400px) {
  .pagetitle__title {
    padding: 0 55px 5px;
    height: 100px;
    top: 90px;
  }
}
@media screen and (max-width: 900px) {
  .pagetitle__title {
    padding: 0 35px 3px;
    height: 90px;
    top: 75px;
  }
  .pagetitle__title::before {
    border-width: 14px 14px 0 0;
  }
  .pagetitle__title::after {
    border-width: 0 0 14px 14px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title {
    padding: 0 22px 3px;
    height: 60px;
    top: 40px;
  }
  .pagetitle__title::before {
    border-width: 12px 12px 0 0;
  }
  .pagetitle__title::after {
    border-width: 0 0 12px 12px;
  }
}
.pagetitle__title__text {
  padding-left: 0.1em;
  font-size: 3.3rem;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1400px) {
  .pagetitle__title__text {
    font-size: 3rem;
  }
}
@media screen and (max-width: 900px) {
  .pagetitle__title__text {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title__text {
    padding-left: 0.04em;
    font-size: 2.1rem;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 350px) {
  .pagetitle__title__text {
    padding-left: 0;
    font-size: 2rem;
    letter-spacing: 0;
  }
}

.breadcrumbs {
  margin: 15px 30px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .breadcrumbs {
    margin: 10px 15px 0;
  }
}
.breadcrumbs__item {
  margin-top: 5px;
  padding-left: 28px;
  max-width: calc(15em + 28px);
  font-size: 1.6rem;
  line-height: 1;
  color: #345;
  letter-spacing: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
  display: block;
}
.breadcrumbs__item::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #99c744;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 11px;
}
@media screen and (max-width: 599px) {
  .breadcrumbs__item {
    padding-left: 15px;
    max-width: calc(12em + 15px);
    font-size: 1.4rem;
  }
  .breadcrumbs__item::before {
    width: 5px;
    height: 5px;
    top: 4px;
    left: 5px;
  }
}
@media screen and (max-width: 350px) {
  .breadcrumbs__item {
    padding-left: 15px;
    max-width: calc(10em + 15px);
    font-size: 1.3rem;
  }
  .breadcrumbs__item::before {
    width: 5px;
    height: 5px;
    top: 4px;
    left: 5px;
  }
}
.breadcrumbs__item:first-child {
  padding-left: 0;
}
.breadcrumbs__item:first-child::before {
  display: none;
}
.breadcrumbs__item__link {
  color: #345;
  display: block;
}
.breadcrumbs__item__link.home {
  margin-top: -1px;
  width: 18px;
  height: 18px;
  background-image: url(../img/common/icon_home.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 50% 42%;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 200%;
}
@media screen and (max-width: 599px) {
  .breadcrumbs__item__link.home {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 350px) {
  .breadcrumbs__item__link.home {
    width: 15px;
    height: 15px;
  }
}
.breadcrumbs__item__link.home:hover {
  background-image: url(../img/common/icon_home_green.svg);
}
@media screen and (min-width: 1025px) {
  .breadcrumbs__item__link:hover {
    color: #55b344;
  }
}

.contents {
  padding: 80px 30px 180px;
}
@media screen and (max-width: 1400px) {
  .contents {
    padding: 65px 0 150px;
  }
}
@media screen and (max-width: 1300px) {
  .contents {
    padding: 65px 60px 120px;
  }
}
@media screen and (max-width: 900px) {
  .contents {
    padding: 50px 0 0;
  }
}

.wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.wrap.one-column {
  display: block;
}

.content {
  margin: 0 auto;
  padding: 0 50px;
  width: calc(100% - 320px);
}
@media screen and (max-width: 1400px) {
  .content {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 1300px) {
  .content {
    padding: 0 0 100px;
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .content {
    padding: 0 40px 100px;
  }
}
@media screen and (max-width: 599px) {
  .content {
    padding: 0 30px 80px;
  }
}
.content .w980 {
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
}

.side {
  width: 320px;
  background-color: #f7f6f3;
}
@media screen and (max-width: 1400px) {
  .side {
    width: 300px;
  }
}
@media screen and (max-width: 1300px) {
  .side {
    margin: 0 auto;
    width: 100%;
    max-width: 980px;
  }
}

#admin-show-preview {
  padding: 20px;
  top: 20px;
  right: 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
  background: #204099;
  position: fixed;
  z-index: 3000;
}

.side-title a {
  padding: 28px 25px 26px;
  width: 100%;
  font-size: 2rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
  background-color: #99c744;
  display: block;
}
@media screen and (min-width: 1025px) {
  .side-title a:hover {
    color: #fff;
    background-color: #55b344;
  }
}

.side-title02 {
  margin: 30px 0 15px 25px;
  padding-left: 31px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  position: relative;
}
.side-title02::before {
  content: "";
  width: 21px;
  height: 21px;
  border: 7px solid #55b344;
  border-radius: 4px;
  position: absolute;
  top: 2px;
  left: 0;
}
@media screen and (max-width: 900px) {
  .side-title02 {
    padding-left: 25px;
    font-size: 1.7rem;
  }
  .side-title02::before {
    width: 17px;
    height: 17px;
    border: 6px solid #55b344;
    border-radius: 3px;
    top: 3px;
  }
}
@media screen and (max-width: 599px) {
  .side-title02 {
    margin: 25px 0 12px 25px;
    padding-left: 23px;
    font-size: 1.6rem;
  }
  .side-title02::before {
    width: 16px;
    height: 16px;
    border: 5px solid #55b344;
    border-radius: 3px;
    top: 3px;
  }
}

.side-st {
  margin-top: 30px;
  display: block;
  padding: 10px;
  background-color: #99c744;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .side-st {
    padding: 12px;
  }
}
@media screen and (max-width: 599px) {
  .side-st {
    margin-top: 0px;
    padding: 10px;
    font-size: 1.5rem;
  }
}

.side-nav__item {
  border-bottom: 1px solid #ddddd7;
}
.side-nav__item > a {
  padding: 27px 25px 29px 55px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  background-image: url(../img/common/arrow_side.svg);
  background-repeat: no-repeat;
  background-size: 22px auto;
  background-position: 25px 50%;
  position: relative;
  display: block;
  /*
  &::before{
      content: "";
      width: 34px;
      height: 16px;
      background-color: $cl-green;
      border-radius: 8px;
      position: absolute;
      top: 31px;
      left: 25px;
      transition: 0.2s;
  }
  &::after{
      content: "";
      width: 0;
      height: 0;
      border-width: 3px 0 3px 6px;
      border-style: solid;
      border-color: transparent transparent transparent #fff;
      position: absolute;
      top: 36px;
      left: 40px;
  }
  */
}
@media screen and (min-width: 1025px) {
  .side-nav__item > a:hover {
    color: #55b344;
    background-image: url(../img/common/arrow_side_r.svg);
    transform: translateX(5px);
    /*
    &::before{
        background-color: $cl-l-green;
    }
    */
  }
}
.side-nav__secondary {
  margin: 0 25px 25px;
  padding: 10px 25px;
  background-color: rgba(255, 255, 255, 0.7);
}
.side-nav__secondary li {
  border-top: 1px dotted #bbb;
}
.side-nav__secondary li:first-child {
  border-top: none;
}
.side-nav__secondary li a {
  padding: 14px 0 12px 16px;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #345;
  position: relative;
  display: block;
}
.side-nav__secondary li a::before {
  content: "";
  border-width: 4px 0 4px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #99c744;
  position: absolute;
  top: 19px;
  left: 0;
  transition: 0.2;
}
@media screen and (min-width: 1025px) {
  .side-nav__secondary li a:hover {
    color: #55b344;
    transform: translateX(5px);
  }
  .side-nav__secondary li a:hover::before {
    border-color: transparent transparent transparent #55b344;
  }
}

.search {
  margin: 0 auto;
  padding: 60px;
  background-color: #e8e7e5;
  box-shadow: 0 -3px 3px rgba(51, 68, 85, 0.2);
}
@media screen and (max-width: 1024px) {
  .search {
    padding: 40px;
  }
}
@media screen and (max-width: 599px) {
  .search {
    padding: 30px;
  }
}
@media screen and (max-width: 350px) {
  .search {
    padding: 20px;
  }
}
.search form {
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 900px) {
  .search form {
    height: 56px;
  }
}
.search form input[type=search] {
  -webkit-appearance: none;
  width: 380px;
  height: 100%;
  padding: 5px 10px 5px 52px;
  font-size: 1.8rem;
  background-color: #fff;
  background-image: url(../img/common/icon_search.svg) !important;
  background-repeat: no-repeat;
  background-position: 18px 50%;
  background-size: 24px auto;
  border: none;
  border-radius: 0;
  position: relative;
}
@media screen and (max-width: 900px) {
  .search form input[type=search] {
    padding: 5px 10px 5px 42px;
    background-position: 15px 50%;
    background-size: 20px auto;
  }
}
@media screen and (max-width: 599px) {
  .search form input[type=search] {
    width: calc(100% - 70px);
    font-size: 1.6rem;
    letter-spacing: 0.2em;
  }
}
.search form input[type=search]::-moz-placeholder {
  color: #abc;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
}
.search form input[type=search]::placeholder {
  color: #abc;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
}
.search form input[type=search]:focus {
  border: none;
  outline: none;
  background-color: #f3f7f9;
}
.search form input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 0.56em;
  width: 120px;
  height: 100%;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  background-color: #99c744;
  background-image: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width: 900px) {
  .search form input[type=submit] {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .search form input[type=submit] {
    width: 70px;
    font-size: 1.6rem;
    letter-spacing: 0.2em;
  }
}
@media screen and (min-width: 1025px) {
  .search form input[type=submit]:hover {
    background-color: #55b344;
  }
}

.footer {
  padding: 50px 50px 70px 40px;
  background-color: #55b344;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 40px 40px 50px 30px;
  }
}
@media screen and (max-width: 900px) {
  .footer {
    padding: 50px 50px 70px 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    padding: 45px 30px 30px 30px;
  }
}
.footer__hard {
  width: 440px;
}
@media screen and (max-width: 1024px) {
  .footer__hard {
    width: 380px;
  }
}
@media screen and (max-width: 900px) {
  .footer__hard {
    width: 100%;
  }
}
.footer__hard__logo {
  margin-bottom: 15px;
  width: 270px;
}
@media screen and (max-width: 1024px) {
  .footer__hard__logo {
    width: 240px;
  }
}
@media screen and (max-width: 599px) {
  .footer__hard__logo {
    margin: 0 auto 18px;
    width: 220px;
  }
}
.footer__hard__logo__link {
  line-height: 0.1;
  display: block;
}
@media screen and (min-width: 1025px) {
  .footer__hard__logo__link:hover {
    transform: translateY(5px);
  }
}
.footer__hard__text {
  padding-left: 42px;
  font-size: 1.8rem;
  line-height: 1.7;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .footer__hard__text {
    padding-left: 36px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .footer__hard__text {
    padding-left: 0;
    font-size: 1.5rem;
    text-align: center;
  }
}
.footer__hard__text a {
  color: #fff;
  cursor: auto;
}
.footer__hard__text a:hover {
  color: #fff;
}
.footer__nav {
  width: 410px;
}
@media screen and (max-width: 1024px) {
  .footer__nav {
    width: 380px;
  }
}
@media screen and (max-width: 900px) {
  .footer__nav {
    margin-top: 10px;
    padding-left: 36px;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .footer__nav {
    margin-top: 15px;
    padding-left: 0;
  }
}
.footer__nav__nav {
  text-align: right;
}
@media screen and (max-width: 900px) {
  .footer__nav__nav {
    text-align: left;
  }
}
@media screen and (max-width: 599px) {
  .footer__nav__nav {
    display: none;
  }
}
.footer__nav__nav__item {
  font-size: 1.7rem;
  line-height: 1;
  color: #fff;
  display: inline-block;
}
.footer__nav__nav__item::before {
  content: "｜";
  margin: 0 2px;
}
.footer__nav__nav__item:first-child::before {
  content: "";
  display: none;
}
@media screen and (max-width: 1024px) {
  .footer__nav__nav__item {
    font-size: 1.6rem;
  }
}
.footer__nav__nav__item__link {
  color: #fff;
  letter-spacing: normal;
}
@media screen and (min-width: 1025px) {
  .footer__nav__nav__item__link:hover {
    opacity: 0.7;
  }
}
.footer__nav__bnrs {
  margin-top: 35px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer__nav__bnrs {
    margin-top: 25px;
  }
}
@media screen and (max-width: 900px) {
  .footer__nav__bnrs {
    margin-top: 15px;
    width: 340px;
  }
}
@media screen and (max-width: 599px) {
  .footer__nav__bnrs {
    margin-top: 12px;
    width: 100%;
  }
}
.footer__nav__bnrs__item {
  width: calc((100% - 10px) / 2);
}
@media screen and (max-width: 599px) {
  .footer__nav__bnrs__item {
    width: calc((100% - 4px) / 2);
  }
}
.footer__nav__bnrs__item__link {
  line-height: 0.1;
  display: block;
}
@media screen and (min-width: 1025px) {
  .footer__nav__bnrs__item__link:hover {
    transform: translateY(5px);
  }
}

.copyright {
  width: 100%;
  height: 60px;
  font-size: 1.4rem;
  line-height: 61px;
  color: #fff;
  letter-spacing: normal;
  text-align: center;
  background-color: #345;
}
@media screen and (max-width: 599px) {
  .copyright {
    height: 45px;
    font-size: 1.2rem;
    line-height: 46px;
  }
}
@media screen and (max-width: 350px) {
  .copyright {
    height: 40px;
    font-size: 1rem;
    line-height: 41px;
  }
}

.pagination {
  margin-top: 45px;
}
@media screen and (max-width: 1024px) {
  .pagination {
    margin-top: 35px;
  }
}
@media screen and (max-width: 900px) {
  .pagination {
    margin-top: 25px;
  }
}
@media screen and (max-width: 599px) {
  .pagination {
    margin: 25px -20px 0;
  }
}
.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination__list__item {
  margin: 6px 3px 0;
  height: 60px;
  font-size: 2.1rem;
  line-height: 61px;
  color: #345;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .pagination__list__item {
    margin: 5px 2px 0;
    height: 50px;
    font-size: 1.8rem;
    line-height: 51px;
  }
}
.pagination__list__item__num {
  height: 100%;
  aspect-ratio: 100/100;
  line-height: 61px;
  color: #55b344;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: normal;
  background-color: #eef7f3;
  border-radius: 50%;
  display: block;
}
@media screen and (max-width: 599px) {
  .pagination__list__item__num {
    font-size: 1.8rem;
    line-height: 51px;
  }
}
@media screen and (min-width: 1025px) {
  .pagination__list__item__num:hover {
    color: #fff;
    background-color: #55b344;
  }
}
.pagination__list__item__num.now {
  color: #fff;
  background-color: #55b344;
}
.pagination__list__item__prev, .pagination__list__item__next {
  height: 100%;
  aspect-ratio: 100/100;
  font-size: 1.8rem;
  line-height: 61px;
  color: #99c744;
  font-weight: 700;
  letter-spacing: normal;
  background-color: #e7f7e7;
  border-radius: 50%;
  display: block;
}
@media screen and (max-width: 599px) {
  .pagination__list__item__prev, .pagination__list__item__next {
    font-size: 1.6rem;
    line-height: 51px;
  }
}
@media screen and (min-width: 1025px) {
  .pagination__list__item__prev:hover, .pagination__list__item__next:hover {
    color: #fff;
    background-color: #99c744;
  }
}

.title-sec01 {
  margin-bottom: 10px;
  padding-top: 20px;
  font-size: 3.2rem;
  line-height: 1.5;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  border-top: 3px solid #ddd;
  position: relative;
}
.title-sec01::before {
  content: "";
  width: 150px;
  height: 3px;
  background-color: #55b344;
  position: absolute;
  top: -3px;
  left: 0;
}
@media screen and (max-width: 900px) {
  .title-sec01 {
    margin-bottom: 0;
    padding-top: 15px;
    font-size: 2.8rem;
  }
  .title-sec01::before {
    width: 120px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec01 {
    margin-bottom: 5px;
    padding-top: 12px;
    font-size: 2.2rem;
    border-top-width: 2px;
  }
  .title-sec01::before {
    width: 90px;
    height: 2px;
    top: -2px;
  }
}
@media screen and (max-width: 350px) {
  .title-sec01 {
    font-size: 2rem;
  }
  .title-sec01::before {
    width: 70px;
  }
}

.title-sec02 {
  padding: 3px 0 16px 24px;
  font-size: 2.2rem;
  line-height: 1.3;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  border-bottom: 1px dotted #bbb;
  position: relative;
}
.title-sec02::before {
  content: "";
  width: 6px;
  height: calc(100% - 12px);
  background-color: #55b344;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}
.title-sec02::after {
  content: "";
  width: 6px;
  height: calc((100% - 12px) / 2);
  background-color: #99c744;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px 3px 0 0;
}
@media screen and (max-width: 900px) {
  .title-sec02 {
    padding: 2px 0 14px 20px;
    font-size: 2rem;
  }
  .title-sec02::before {
    height: calc(100% - 11px);
  }
  .title-sec02::after {
    height: calc((100% - 11px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .title-sec02 {
    padding: 1px 0 10px 16px;
    font-size: 1.9rem;
  }
  .title-sec02::before {
    width: 4px;
    height: calc(100% - 10px);
  }
  .title-sec02::after {
    width: 4px;
    height: calc((100% - 10px) / 2);
  }
}

.title-sec03 {
  padding-bottom: 14px;
  padding-left: 28px;
  font-size: 2.1rem;
  line-height: 1.3;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  border-bottom: 2px solid #e8e7e5;
  position: relative;
}
.title-sec03::before {
  content: "";
  width: 15px;
  height: 4px;
  background-color: #99c744;
  position: absolute;
  top: 12px;
  left: 0;
}
.title-sec03::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: #55b344;
  position: absolute;
  bottom: -2px;
  right: 0;
}
@media screen and (max-width: 900px) {
  .title-sec03 {
    padding-bottom: 10px;
    padding-left: 22px;
    font-size: 1.9rem;
  }
  .title-sec03::before {
    width: 14px;
    height: 4px;
    top: 10px;
  }
  .title-sec03::after {
    width: 60px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec03 {
    padding-bottom: 10px;
    padding-left: 22px;
    font-size: 1.8rem;
    border-bottom: 1px solid #e8e7e5;
  }
  .title-sec03::before {
    width: 13px;
    height: 3px;
    top: 11px;
  }
  .title-sec03::after {
    width: 40px;
    height: 1px;
    bottom: -1px;
  }
}

.title-sec04 {
  padding-left: 31px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  position: relative;
}
.title-sec04::before {
  content: "";
  width: 21px;
  height: 21px;
  border: 7px solid #55b344;
  border-radius: 4px;
  position: absolute;
  top: 2px;
  left: 0;
}
@media screen and (max-width: 900px) {
  .title-sec04 {
    padding-left: 25px;
    font-size: 1.7rem;
  }
  .title-sec04::before {
    width: 17px;
    height: 17px;
    border: 6px solid #55b344;
    border-radius: 3px;
    top: 3px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec04 {
    padding-left: 23px;
    font-size: 1.6rem;
  }
  .title-sec04::before {
    width: 16px;
    height: 16px;
    border: 5px solid #55b344;
    border-radius: 3px;
    top: 3px;
  }
}
.title-sec04.l-green::before {
  border-color: #99c744;
}

.title-sec05 {
  padding: 15px 10px 16px 34px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  background-color: #e7f7e7;
  position: relative;
}
.title-sec05::before {
  content: "";
  width: 5px;
  height: calc(100% - 26px);
  background-color: #55b344;
  position: absolute;
  top: 13px;
  left: 15px;
}
.title-sec05::after {
  content: "";
  width: 5px;
  height: calc((100% - 26px) / 2);
  background-color: #99c744;
  position: absolute;
  top: 13px;
  left: 15px;
}
@media screen and (max-width: 900px) {
  .title-sec05 {
    padding: 12px 10px 13px 28px;
    font-size: 1.7rem;
  }
  .title-sec05::before {
    width: 4px;
    height: calc(100% - 22px);
    top: 11px;
    left: 13px;
  }
  .title-sec05::after {
    width: 4px;
    height: calc((100% - 22px) / 2);
    top: 11px;
    left: 13px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec05 {
    padding: 10px 10px 11px 25px;
    font-size: 1.6rem;
  }
  .title-sec05::before {
    height: calc(100% - 20px);
    top: 10px;
    left: 11px;
  }
  .title-sec05::after {
    height: calc((100% - 20px) / 2);
    top: 10px;
    left: 11px;
  }
}

.title-sec06 {
  padding: 15px 10px 16px 34px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  background: linear-gradient(to right, #99c744 50%, #55b344);
  position: relative;
}
.title-sec06::before {
  content: "";
  width: 5px;
  height: calc(100% - 26px);
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 13px;
  left: 15px;
}
.title-sec06::after {
  content: "";
  width: 5px;
  height: calc((100% - 26px) / 2);
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 13px;
  left: 15px;
}
@media screen and (max-width: 900px) {
  .title-sec06 {
    padding: 12px 10px 13px 28px;
    font-size: 1.7rem;
  }
  .title-sec06::before {
    width: 4px;
    height: calc(100% - 22px);
    top: 11px;
    left: 13px;
  }
  .title-sec06::after {
    width: 4px;
    height: calc((100% - 22px) / 2);
    top: 11px;
    left: 13px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec06 {
    padding: 10px 10px 11px 25px;
    font-size: 1.6rem;
  }
  .title-sec06::before {
    height: calc(100% - 20px);
    top: 10px;
    left: 11px;
  }
  .title-sec06::after {
    height: calc((100% - 20px) / 2);
    top: 10px;
    left: 11px;
  }
}

.pagetitle-block {
  margin-bottom: 25px;
  *zoom: 1;
}
.pagetitle-block:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 599px) {
  .pagetitle-block {
    margin-bottom: 15px;
  }
}

.title-block {
  margin-bottom: 25px;
  *zoom: 1;
}
.title-block:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 599px) {
  .title-block {
    margin-bottom: 15px;
  }
}
.title-block .title-sec04 {
  margin-bottom: -10px;
}
@media screen and (max-width: 599px) {
  .title-block .title-sec04 {
    margin-bottom: -7px;
  }
}

.block-cms {
  margin-bottom: 40px;
  *zoom: 1;
}
.block-cms:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1024px) {
  .block-cms {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .block-cms {
    margin-bottom: 20px;
  }
}
.block-cms a {
  color: #55b344;
}
@media screen and (min-width: 1025px) {
  .block-cms a:hover {
    color: #99c744;
  }
}
.block-cms .copy-gothic {
  margin-bottom: -25px;
}
@media screen and (max-width: 1024px) {
  .block-cms .copy-gothic {
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 599px) {
  .block-cms .copy-gothic {
    margin-bottom: -10px;
  }
}
.block-cms .copy-mincho {
  margin-bottom: -25px;
}
@media screen and (max-width: 1024px) {
  .block-cms .copy-mincho {
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 599px) {
  .block-cms .copy-mincho {
    margin-bottom: -10px;
  }
}

/*各テンプレートを囲むbox【必須】*/
.box {
  margin-bottom: 25px;
  *zoom: 1;
}
.box:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 599px) {
  .box {
    margin-bottom: 15px;
  }
}

/*youtube*/
.youtube-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  position: relative;
}
.youtube-wrapper::before {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}
.youtube-wrapper iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.block__wysiwyg {
  /*デフォルトの処理*/
  line-height: 1.9;
  /*以下テンプレート外*/
}
@media screen and (max-width: 599px) {
  .block__wysiwyg {
    line-height: 1.8;
  }
}
.block__wysiwyg a {
  color: #55b344;
  text-decoration: underline;
}
.block__wysiwyg a:hover {
  color: #cccccc;
  text-decoration: none;
}
.block__wysiwyg img {
  width: auto;
  max-width: 100%;
  height: auto !important;
}
.block__wysiwyg .left {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.block__wysiwyg .center {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.block__wysiwyg .right {
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
.block__wysiwyg h1 {
  font-size: 240%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
.block__wysiwyg h2 {
  font-size: 180%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  border-bottom: none;
}
.block__wysiwyg h3 {
  font-size: 140%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
  color: #000000;
}
.block__wysiwyg h4 {
  font-size: 120%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  color: #000000;
}
.block__wysiwyg h5 {
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.block__wysiwyg h6 {
  font-size: 82%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.block__wysiwyg ul {
  padding-left: 1em;
}
.block__wysiwyg ul li {
  list-style: disc;
}
.block__wysiwyg ol {
  margin: 0;
  padding-left: 1em;
}
.block__wysiwyg ol li {
  list-style-type: decimal;
}
.block__wysiwyg blockquote {
  padding-left: 1em;
}
.block__wysiwyg table {
  font-size: 100%;
  border-collapse: collapse;
}
.block__wysiwyg hr {
  display: block;
}
.block__wysiwyg em {
  font-style: italic !important;
}
.block__wysiwyg strong {
  font-weight: bold !important;
}
.block__wysiwyg em strong,
.block__wysiwyg strong em {
  font-style: italic !important;
  font-weight: bold !important;
}

.text {
  font-size: 1.8rem;
  line-height: 2;
  color: #345;
  text-align: justify;
  word-break: break-all;
}
@media screen and (max-width: 900px) {
  .text {
    font-size: 1.7rem;
    line-height: 1.9;
  }
}
@media screen and (max-width: 599px) {
  .text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.text--mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 300;
}
.text--kome {
  padding-left: 1em;
  color: #789;
  text-indent: -1em;
}
.text--bold {
  font-weight: 700;
}
.text--green {
  color: #55b344;
}
.text--red {
  color: #f37799;
}

.copy-gothic {
  font-size: 2.7rem;
  color: #99c744;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  .copy-gothic {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .copy-gothic {
    font-size: 1.8rem;
    font-weight: 500;
  }
}

.copy-mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-size: 2.8rem;
  color: #55b344;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .copy-mincho {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .copy-mincho {
    font-size: 1.9rem;
    font-weight: 500;
  }
}

.text-standard {
  font-size: 1.8rem;
  line-height: 2;
  color: #345;
}
@media screen and (max-width: 900px) {
  .text-standard {
    font-size: 1.7rem;
    line-height: 1.9;
  }
}
@media screen and (max-width: 599px) {
  .text-standard {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

.caption {
  margin-top: 10px;
  line-height: 1.3em;
  text-align: left;
  display: block;
}
@media screen and (max-width: 599px) {
  .caption {
    margin-top: 5px;
    font-size: 1.4rem;
  }
}

.text-3column {
  padding: 0;
  list-style: none;
}
.text-3column > li {
  margin-left: 30px;
  width: calc((99.9% - 60px) / 3);
  float: left;
  line-height: 1.8;
}
.text-3column > li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .text-3column > li {
    margin-top: 15px;
    margin-left: 0;
    width: 100%;
    float: none;
  }
  .text-3column > li:first-child {
    margin-top: 0;
  }
}

.text-2column {
  padding: 0;
  list-style: none;
}
.text-2column > li {
  width: calc(50% - 15px);
  float: right;
  line-height: 1.8;
}
.text-2column > li:first-child {
  float: left;
}
@media screen and (max-width: 599px) {
  .text-2column > li {
    margin-top: 15px;
    width: 100%;
    float: none;
  }
  .text-2column > li:first-child {
    margin-top: 0;
    float: none;
  }
}

.list-box {
  padding: 37px 40px;
  background-color: #f7f6f3;
}
@media screen and (max-width: 900px) {
  .list-box {
    padding: 32px 35px;
  }
}
@media screen and (max-width: 599px) {
  .list-box {
    padding: 23px 25px;
  }
}
.list-box--red {
  background-color: #fff3f7;
}
.list-box--red .list-wrapper li::before {
  background-color: #f37799;
}

.list-wrapper {
  padding: 0 !important;
  list-style: none;
}
.list-wrapper li {
  margin-top: 10px;
  padding-left: 1em;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: justify;
  position: relative;
  list-style: none !important;
}
.list-wrapper li:first-child {
  margin-top: 0;
}
.list-wrapper li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #55b344;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .list-wrapper li {
    font-size: 1.7rem;
  }
  .list-wrapper li::before {
    width: 7px;
    height: 7px;
    top: 8px;
  }
}
@media screen and (max-width: 599px) {
  .list-wrapper li {
    margin-top: 7px;
    font-size: 1.6rem;
  }
  .list-wrapper li::before {
    width: 6px;
    height: 6px;
    top: 8px;
  }
}

ol.list-wrapper {
  padding: 0 !important;
  list-style: none;
}
ol.list-wrapper li {
  list-style: none;
  margin-top: 10px;
  margin-left: 1.2em;
  padding-left: 0;
  font-size: 1.8rem;
  line-height: 1.5;
  list-style-type: decimal !important;
  list-style-position: outside !important;
  list-style: none;
  text-align: justify;
  position: relative;
}
ol.list-wrapper li::marker {
  color: #55b344;
  font-weight: 700;
}
ol.list-wrapper li:first-child {
  margin-top: 0;
}
ol.list-wrapper li::before {
  display: none;
}
@media screen and (max-width: 900px) {
  ol.list-wrapper li {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  ol.list-wrapper li {
    margin-top: 7px;
    font-size: 1.6rem;
  }
}
ol.list-wrapper--box-none {
  padding: 0;
  background-color: transparent;
}

.list-file {
  padding-left: 0 !important;
}
.list-file li {
  margin-top: 15px;
  min-height: 82px;
  padding: 18px 20px 18px 77px;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #345;
  text-align: left;
  background-color: #f3f7f9;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.list-file li::before {
  content: "";
  margin: auto;
  height: 100%;
  width: 40px;
  background-image: url(../img/common/icon_pdf.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
}
.list-file li:first-child {
  margin-top: 0;
}
@media screen and (max-width: 900px) {
  .list-file li {
    margin-top: 10px;
    padding: 15px 20px 15px 70px;
    min-height: 72px;
    font-size: 1.7rem;
  }
  .list-file li::before {
    width: 36px;
    left: 16px;
  }
}
@media screen and (max-width: 599px) {
  .list-file li {
    margin-top: 5px;
    padding: 13px 15px 12px 54px;
    min-height: 60px;
    font-size: 1.5rem;
  }
  .list-file li::before {
    width: 30px;
    left: 12px;
  }
}
.list-file li.li-pdf::before {
  background-image: url(../img/common/icon_pdf.png);
}
.list-file li.li-xls::before {
  background-image: url(../img/common/icon_xls.png);
}
.list-file li.li-doc::before {
  background-image: url(../img/common/icon_word.png);
}
.list-file li.li-zip::before {
  background-image: url(../img/common/icon_zip.png);
}
.list-file li a {
  width: 100%;
  color: #55b344;
  font-weight: 700;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .list-file li a:hover {
    color: #99c744;
    text-decoration: none;
  }
}
.list-file li p {
  width: 100%;
  margin-top: 2px;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: justify;
}
@media screen and (max-width: 900px) {
  .list-file li p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .list-file li p {
    font-size: 1.4rem;
  }
}

.list-file02 {
  padding-left: 0 !important;
}
.list-file02 li {
  margin-top: 20px;
  min-height: 49px;
  padding-left: 55px;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #345;
  text-align: left;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.list-file02 li::before {
  content: "";
  height: 100%;
  width: 40px;
  background-image: url(../img/common/icon_pdf.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  top: 0;
  left: 0;
}
.list-file02 li:first-child {
  margin-top: 0;
}
@media screen and (max-width: 900px) {
  .list-file02 li {
    margin-top: 18px;
    padding-left: 50px;
    min-height: 44px;
    font-size: 1.7rem;
  }
  .list-file02 li::before {
    width: 36px;
  }
}
@media screen and (max-width: 599px) {
  .list-file02 li {
    margin-top: 15px;
    padding-left: 40px;
    min-height: 37px;
    font-size: 1.5rem;
  }
  .list-file02 li::before {
    width: 30px;
  }
}
.list-file02 li.li-pdf::before {
  background-image: url(../img/common/icon_pdf.png);
}
.list-file02 li.li-xls::before {
  background-image: url(../img/common/icon_xls.png);
}
.list-file02 li.li-doc::before {
  background-image: url(../img/common/icon_word.png);
}
.list-file02 li.li-zip::before {
  background-image: url(../img/common/icon_zip.png);
}
.list-file02 li a {
  width: 100%;
  color: #55b344;
  font-weight: 700;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .list-file02 li a:hover {
    color: #99c744;
    text-decoration: none;
  }
}
.list-file02 li p {
  width: 100%;
  margin-top: 2px;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: justify;
}
@media screen and (max-width: 900px) {
  .list-file02 li p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .list-file02 li p {
    font-size: 1.4rem;
  }
}

.def-list-wrapper {
  background-color: #f3f7f9;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.def-list-wrapper dt {
  width: 240px;
  padding: 40px 10px;
  font-size: 2rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
  background-color: #99c744;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .def-list-wrapper dt {
    width: 210px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .def-list-wrapper dt {
    padding: 13px 10px 10px;
    width: 100%;
    font-size: 1.7rem;
  }
}
.def-list-wrapper dd {
  padding: 30px 37px;
  width: calc(100% - 240px);
  font-size: 1.8rem;
  line-height: 1.7;
  color: #345;
}
@media screen and (max-width: 900px) {
  .def-list-wrapper dd {
    padding: 27px 30px;
    width: calc(100% - 210px);
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .def-list-wrapper dd {
    padding: 20px 25px;
    width: 100%;
    font-size: 1.4rem;
    letter-spacing: normal;
  }
}
.def-list-wrapper dd .em {
  font-size: 1.2em;
  color: #55b344 !important;
  font-weight: 700;
}
.def-list-wrapper dd .em * {
  color: #55b344 !important;
}

.attention-list {
  margin-bottom: 30px;
}
.attention-list li {
  margin-bottom: 5px;
  color: #f37799;
  line-height: 1.4;
}

.img-right {
  margin: 7px 0 20px 35px;
  width: auto;
  max-width: 34%;
  float: right;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .img-right {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
.img-right.short {
  max-width: 28%;
}
@media screen and (max-width: 599px) {
  .img-right.short {
    margin: 0 auto;
    max-width: 100%;
    width: 68%;
    display: block;
  }
}

.img-left {
  margin: 7px 35px 20px 0;
  width: auto;
  max-width: 34%;
  float: left;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .img-left {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}

.text-right {
  width: calc(66% - 35px);
  float: right;
}
@media screen and (max-width: 599px) {
  .text-right {
    width: auto;
    float: none;
  }
}

.text-left {
  width: calc(66% - 35px);
  float: left;
}
@media screen and (max-width: 599px) {
  .text-left {
    width: auto;
    float: none;
  }
}
.text-left.long {
  width: calc(72% - 35px);
}
@media screen and (max-width: 599px) {
  .text-left.long {
    width: auto;
    margin-bottom: 15px;
  }
}

.photo-3 {
  padding: 0 !important;
  list-style: none;
}
.photo-3 li {
  list-style: none !important;
  width: calc((99.9% - 20px) / 3);
  text-align: center;
  float: left;
  margin-bottom: 15px;
}
.photo-3 li:not(:nth-child(3n)) {
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .photo-3 li {
    width: 100%;
    margin-bottom: 10px;
  }
  .photo-3 li:not(:nth-child(3n)) {
    margin-right: 0px;
  }
}
.photo-3 li .caption {
  text-align: center;
}

.photo-2 {
  padding: 0 !important;
  list-style: none;
}
.photo-2 li {
  list-style: none !important;
  width: calc((100% - 10px) / 2);
  text-align: center;
  float: left;
  margin-bottom: 15px;
}
.photo-2 li:not(:nth-child(2n)) {
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .photo-2 li {
    width: calc((100% - 5px) / 2);
    margin-bottom: 10px;
  }
  .photo-2 li:not(:nth-child(2n)) {
    margin-right: 5px;
  }
}
.photo-2 li .caption {
  text-align: center;
}

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

.box-bg01 {
  padding: 37px 40px;
  background-color: #eef7f3;
}
@media screen and (max-width: 900px) {
  .box-bg01 {
    padding: 32px 35px;
  }
}
@media screen and (max-width: 599px) {
  .box-bg01 {
    padding: 23px 25px;
  }
}

.box-bg02 {
  padding: 37px 40px;
  background-color: #f7f6f3;
}
@media screen and (max-width: 900px) {
  .box-bg02 {
    padding: 32px 35px;
  }
}
@media screen and (max-width: 599px) {
  .box-bg02 {
    padding: 23px 25px;
  }
}

.box-bg03 {
  padding: 37px 40px;
  background-color: #fff3f7;
}
@media screen and (max-width: 900px) {
  .box-bg03 {
    padding: 32px 35px;
  }
}
@media screen and (max-width: 599px) {
  .box-bg03 {
    padding: 23px 25px;
  }
}
.box-bg03 .list-wrapper li::before {
  background-color: #f37799;
}

@media screen and (max-width: 599px) {
  .js-scrollable {
    min-height: 110px;
  }
  .js-scrollable table {
    width: 950px;
  }
}
.table {
  width: 100%;
  font-size: 1.8rem;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
@media screen and (max-width: 900px) {
  .table {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .table {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 350px) {
  .table {
    font-size: 1.2rem;
  }
}
.table thead th {
  padding: 12px 10px 10px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  font-weight: 500;
  vertical-align: middle;
  background-color: #99c744;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .table thead th {
    padding: 8px 5px 5px;
  }
}
.table th {
  padding: 20px 23px;
  line-height: 1.5;
  color: #345;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  background-color: rgba(231, 247, 231, 0.7);
  border: 1px solid #ddd;
}
@media screen and (max-width: 900px) {
  .table th {
    padding: 18px 20px;
  }
}
@media screen and (max-width: 599px) {
  .table th {
    padding: 13px 13px;
  }
}
.table td {
  padding: 20px 23px;
  line-height: 1.5;
  color: #345;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ddd;
}
@media screen and (max-width: 900px) {
  .table td {
    padding: 18px 20px;
  }
}
@media screen and (max-width: 599px) {
  .table td {
    padding: 13px 13px;
  }
}

.index-list {
  margin-top: -10px;
  padding-left: 0 !important;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .index-list {
    justify-content: space-between;
  }
}
@media screen and (max-width: 599px) {
  .index-list {
    margin-top: -5px;
  }
}
.index-list__item {
  margin-top: 10px;
  margin-left: 10px;
  width: calc((100% - 20px) / 3);
  list-style: none !important;
}
.index-list__item:nth-child(3n-2) {
  margin-left: 0;
}
@media screen and (max-width: 900px) {
  .index-list__item {
    margin-left: 0;
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .index-list__item {
    margin-top: 5px;
    width: 100%;
  }
}
.index-list__item a {
  padding: 25px 74px 25px 25px;
  height: 100%;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #345;
  font-weight: 700;
  text-decoration: none !important;
  background-color: #f3f7f9;
  border-radius: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.index-list__item a::before {
  content: "";
  margin: auto 0;
  width: 34px;
  height: 16px;
  background-color: #99c744;
  background-image: url(../img/common/arrow_white.svg);
  background-size: auto 7px;
  background-position: 54% 50%;
  background-repeat: no-repeat;
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  .index-list__item a {
    padding: 25px 74px 25px 25px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .index-list__item a {
    padding: 22px 64px 22px 20px;
    font-size: 1.6rem;
    border-radius: 3px;
  }
  .index-list__item a::before {
    width: 32px;
    height: 14px;
    border-radius: 7px;
    right: 15px;
    background-size: auto 6px;
  }
}
@media screen and (min-width: 1025px) {
  .index-list__item a:hover {
    color: #fff;
    background-color: #99c744;
    transform: translateX(5px);
  }
  .index-list__item a:hover::before {
    background-color: #55b344;
  }
}

.index-list02 {
  margin-top: -10px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .index-list02 {
    margin-top: -5px;
  }
}
.index-list02__item {
  margin-top: 10px;
  width: calc((100% - 10px) / 2);
}
@media screen and (max-width: 900px) {
  .index-list02__item {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .index-list02__item {
    margin-top: 5px;
    width: 100%;
  }
}
.index-list02__item a {
  padding: 25px 74px 25px 25px;
  height: 100%;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #345;
  font-weight: 700;
  background-color: #f3f7f9;
  border-radius: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.index-list02__item a::before {
  content: "";
  margin: auto 0;
  width: 34px;
  height: 16px;
  background-color: #99c744;
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  transition: 0.2s;
}
.index-list02__item a::after {
  content: "";
  margin: auto 0;
  width: 0;
  height: 0;
  border-width: 3px 0 3px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 33px;
}
@media screen and (max-width: 1024px) {
  .index-list02__item a {
    padding: 25px 74px 25px 25px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .index-list02__item a {
    padding: 22px 64px 22px 20px;
    font-size: 1.6rem;
    border-radius: 3px;
  }
  .index-list02__item a::before {
    width: 32px;
    height: 14px;
    border-radius: 7px;
    right: 15px;
  }
  .index-list02__item a::after {
    right: 27px;
  }
}
@media screen and (min-width: 1025px) {
  .index-list02__item a:hover {
    color: #fff;
    background-color: #99c744;
    transform: translateX(5px);
  }
  .index-list02__item a:hover::before {
    background-color: #55b344;
  }
}

/*ボタン*/
.btn-wrapper {
  text-align: center;
  position: relative;
}
.btn-wrapper a {
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .btn-wrapper a {
    font-size: 14px;
    text-align: left;
  }
}

.btn-base {
  margin: 0 auto;
  padding: 25px 74px 25px 30px;
  width: 100%;
  max-width: 300px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
  text-align: left;
  background-color: #55b344;
  border: none;
  border-radius: 5px;
  display: block;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
  /*
  &::after{
      content: "";
      margin: auto 0;
      width: 0;
      height: 0;
      border-width: 3px 0 3px 6px;
      border-style: solid;
      border-color: transparent transparent transparent #fff;
      position: absolute;
      top: 0;
      bottom: 0;
      right: 33px;
  }
      */
}
.btn-base::before {
  content: "";
  margin: auto 0;
  width: 34px;
  height: 16px;
  background-color: #99c744;
  background-image: url(../img/common/arrow_white.svg);
  background-size: auto 7px;
  background-position: 54% 50%;
  background-repeat: no-repeat;
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  .btn-base {
    padding: 25px 74px 25px 30px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .btn-base {
    padding: 22px 64px 22px 20px;
    max-width: 260px;
    font-size: 1.6rem;
    border-radius: 3px;
    /*
    &::after{
        right: 27px;
    }
    */
  }
  .btn-base::before {
    width: 32px;
    height: 14px;
    background-size: auto 6px;
    border-radius: 7px;
    right: 15px;
  }
}
.btn-base--beige {
  color: #345;
  background-color: #f7f6f3;
}
@media screen and (min-width: 1025px) {
  .btn-base:hover {
    color: #fff;
    background-color: #99c744;
    transform: translateX(5px);
  }
  .btn-base:hover::before {
    background-color: #55b344;
  }
}
.btn-base--back {
  padding: 25px 30px 25px 70px;
}
.btn-base--back::before {
  right: auto;
  left: 20px;
  transform: rotate(180deg);
}
@media screen and (max-width: 599px) {
  .btn-base--back {
    padding: 22px 20px 22px 60px;
  }
  .btn-base--back::before {
    left: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .btn-base--back:hover {
    transform: translateX(-5px);
  }
}

.btn-text {
  padding-left: 42px;
  font-size: 1.8rem;
  line-height: 1;
  color: #345;
  font-weight: 700;
  position: relative;
  display: inline-block;
  /*
  &::after{
      content: "";
      margin: auto 0;
      width: 0;
      height: 0;
      border-width: 3px 0 3px 6px;
      border-style: solid;
      border-color: transparent transparent transparent #fff;
      position: absolute;
      top: 6px;
      left: 15px;
  }
  */
}
.btn-text::before {
  content: "";
  margin: auto 0;
  width: 34px;
  height: 16px;
  background-color: #55b344;
  background-image: url(../img/common/arrow_white.svg);
  background-size: auto 7px;
  background-position: 54% 50%;
  background-repeat: no-repeat;
  border-radius: 8px;
  position: absolute;
  top: 1px;
  left: 0;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .btn-text {
    padding-left: 38px;
    font-size: 1.6rem;
    /*
    &::after{
        top: 5px;
        left: 14px;
    }
    */
  }
  .btn-text::before {
    width: 32px;
    height: 14px;
    background-size: auto 6px;
    border-radius: 7px;
  }
}
@media screen and (min-width: 1025px) {
  .btn-text:hover {
    color: #55b344;
    transform: translateX(5px);
  }
  .btn-text:hover::before {
    background-color: #99c744;
  }
}

.btn-entry {
  margin: 0 auto;
  padding: 25px 74px 25px 50px;
  width: 100%;
  max-width: 320px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
  background-color: #55b344;
  background-image: url(../img/common/icon_entry.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: 20px 50%;
  border-radius: 5px;
  display: block;
  position: relative;
}
.btn-entry::before {
  content: "";
  margin: auto 0;
  width: 34px;
  height: 16px;
  background-color: #99c744;
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  transition: 0.2s;
}
.btn-entry::after {
  content: "";
  margin: auto 0;
  width: 0;
  height: 0;
  border-width: 3px 0 3px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 33px;
}
@media screen and (max-width: 1024px) {
  .btn-entry {
    padding: 25px 74px 25px 50px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .btn-entry {
    padding: 22px 64px 22px 40px;
    max-width: 280px;
    font-size: 1.6rem;
    border-radius: 3px;
    background-size: 18px auto;
    background-position: 15px 50%;
  }
  .btn-entry::before {
    width: 32px;
    height: 14px;
    border-radius: 7px;
    right: 15px;
  }
  .btn-entry::after {
    right: 27px;
  }
}
@media screen and (min-width: 1025px) {
  .btn-entry:hover {
    color: #fff;
    background-color: #99c744;
    transform: translateX(5px);
  }
  .btn-entry:hover::before {
    background-color: #55b344;
  }
}

.text-link {
  color: #339922;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .text-link:hover {
    color: #99c744;
    text-decoration: none;
  }
}

.icon-link {
  padding: 25px 74px 25px 25px;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
  color: #345 !important;
  text-decoration: none !important;
  background-color: #f3f7f9;
  border-radius: 5px;
  display: inline-block;
  position: relative;
}
.icon-link::before {
  content: "";
  margin: auto 0;
  width: 34px;
  height: 16px;
  background-color: #99c744;
  background-image: url(../img/common/arrow_white.svg);
  background-size: auto 7px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  .icon-link {
    padding: 25px 74px 25px 25px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .icon-link {
    padding: 22px 64px 22px 20px;
    font-size: 1.6rem;
    border-radius: 3px;
  }
  .icon-link::before {
    width: 32px;
    height: 14px;
    background-size: auto 6px;
    border-radius: 7px;
    right: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .icon-link:hover {
    color: #fff !important;
    background-color: #99c744;
    transform: translateX(5px);
  }
  .icon-link:hover::before {
    background-color: #55b344;
  }
}

.icon-link__text {
  padding-left: 42px;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
  color: #345 !important;
  text-decoration: none !important;
  display: inline-block;
  position: relative;
}
.icon-link__text::before {
  content: "";
  margin: auto 0;
  width: 34px;
  height: 16px;
  background-color: #99c744;
  background-image: url(../img/common/arrow_white.svg);
  background-size: auto 7px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  .icon-link__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .icon-link__text {
    padding-left: 39px;
    font-size: 1.6rem;
  }
  .icon-link__text::before {
    width: 32px;
    height: 14px;
    background-size: auto 6px;
    border-radius: 7px;
    bottom: 1px;
  }
}
@media screen and (min-width: 1025px) {
  .icon-link__text:hover {
    color: #55b344 !important;
    transform: translateX(5px);
  }
  .icon-link__text:hover::before {
    background-color: #55b344;
  }
}

.btn-box-back {
  display: block;
  max-width: 220px;
  margin: 0 auto;
  position: relative;
  padding: 12px 10px 12px 25px;
  border: 1px solid #55b344;
  color: #55b344;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .btn-box-back {
    font-size: 1.5rem;
  }
}
.btn-box-back::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  margin: auto 0;
  width: 11px;
  height: 11px;
  border-top: 3px solid #55b344;
  border-right: 3px solid #55b344;
  transform: rotate(225deg);
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .btn-box-back::after {
    left: 15px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #55b344;
    border-right: 2px solid #55b344;
    transform: rotate(225deg);
  }
}
.btn-box-back:hover {
  background-color: #55b344;
  color: #fff;
}
.btn-box-back:hover::after {
  border-color: #fff;
}

.tel-link {
  color: #345 !important;
  cursor: auto;
}

.anchor-list {
  padding: 14px 10px 24px 35px !important;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  background-color: #f7f6f3;
  list-style: none;
}
@media screen and (max-width: 900px) {
  .anchor-list {
    padding: 14px 5px 24px 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list {
    padding: 15px 10px 22px 25px !important;
  }
}
.anchor-list__item {
  margin-top: 10px;
  margin-right: 25px;
  list-style: none !important;
}
@media screen and (max-width: 599px) {
  .anchor-list__item {
    margin-top: 7px;
    margin-right: 15px;
  }
}
.anchor-list__item a {
  padding-left: 25px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  display: block;
}
.anchor-list__item a::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #99c744;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 0;
  transition: 0.2s;
}
.anchor-list__item a::after {
  content: "";
  border-width: 6px 3px 0 3px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 10px;
  left: 6px;
}
@media screen and (max-width: 900px) {
  .anchor-list__item a {
    padding-left: 24px;
    font-size: 1.7rem;
  }
  .anchor-list__item a::before {
    width: 16px;
    height: 16px;
    top: 3px;
  }
  .anchor-list__item a::after {
    content: "";
    border-width: 6px 3px 0 3px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    top: 9px;
    left: 5px;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list__item a {
    padding-left: 20px;
    font-size: 1.6rem;
  }
  .anchor-list__item a::before {
    width: 14px;
    height: 14px;
    top: 4px;
  }
  .anchor-list__item a::after {
    border-width: 5px 3px 0 3px;
    top: 9px;
    left: 4px;
  }
}
@media screen and (min-width: 1025px) {
  .anchor-list__item a:hover {
    color: #55b344;
    transform: translateY(3px);
  }
  .anchor-list__item a:hover::before {
    background-color: #55b344;
  }
}
@media screen and (max-width: 1024px) {
  .anchor-list__item a:hover {
    color: #345;
  }
}

.pagenav {
  margin: 40px 0 60px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .pagenav {
    margin: 20px 0 30px;
  }
}
.pagenav li {
  margin-top: 10px;
  margin-left: 10px;
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 900px) {
  .pagenav li {
    margin-top: 4px;
    margin-left: 4px;
    width: calc((100% - 8px) / 3);
  }
}
.pagenav li:nth-child(3n-2) {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  .pagenav li {
    margin-top: 5px;
    margin-left: 0;
    width: 100%;
  }
}
.pagenav li a {
  padding: 25px 74px 25px 25px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #345;
  font-weight: 700;
  background-color: #f3f7f9;
  border-radius: 5px;
  display: block;
  position: relative;
}
.pagenav li a::before {
  content: "";
  margin: auto 0;
  width: 34px;
  height: 16px;
  background-color: #99c744;
  background-image: url(../img/common/arrow_white.svg);
  background-size: auto 7px;
  background-position: 54% 50%;
  background-repeat: no-repeat;
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  .pagenav li a {
    padding: 25px 74px 25px 25px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 900px) {
  .pagenav li a {
    padding: 22px 64px 22px 20px;
    font-size: 1.6rem;
    border-radius: 3px;
  }
  .pagenav li a::before {
    width: 32px;
    height: 14px;
    background-size: auto 6px;
    border-radius: 7px;
    right: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .pagenav li a:hover {
    color: #fff;
    background-color: #99c744;
    transform: translateX(5px);
  }
  .pagenav li a:hover::before {
    background-color: #55b344;
  }
}
.pagenav li a.current {
  color: #fff;
  background-color: #99c744;
}
.pagenav li a.current::before {
  background-color: #55b344;
}

.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: 0.5em;
  top: 0.3em;
}

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  background-image: none;
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("images/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.png");
}

/* positioning */
/* Three classes needed to override `.ui-button:hover .ui-icon` */
.ui-icon-blank.ui-icon-blank.ui-icon-blank {
  background-image: none;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: 0.3;
}

.ui-widget-shadow {
  box-shadow: 0px 0px 5px #666666;
}

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

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  vertical-align: middle;
  box-sizing: content-box;
  background-image: url(../img/common/select-arw.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 10px 8px;
}
@media screen and (max-width: 599px) {
  select {
    background-size: 8px 6px;
  }
}

.form-box {
  padding: 40px 70px;
  background-color: #f3f7f9;
}
@media screen and (max-width: 1024px) {
  .form-box {
    padding: 20px 50px;
  }
}
@media screen and (max-width: 599px) {
  .form-box {
    margin: 0 -30px;
    padding: 10px 30px;
  }
}
.form-box__item {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
}
.form-box__item:first-child {
  border-top: none;
}
.form-box__item__title {
  padding-left: 31px;
  width: 240px;
  height: 60px;
  font-size: 1.7rem;
  line-height: 61px;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  position: relative;
}
.form-box__item__title::before {
  content: "";
  width: 21px;
  height: 21px;
  border: 7px solid #99c744;
  border-radius: 3px;
  position: absolute;
  top: 21px;
  left: 0;
}
@media screen and (max-width: 900px) {
  .form-box__item__title {
    margin-bottom: 15px;
    width: 100%;
    height: auto;
    line-height: 1;
  }
  .form-box__item__title::before {
    top: 1px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 599px) {
  .form-box__item__title {
    margin-bottom: 12px;
    padding: 13px 10px 10px 34px;
    width: 100%;
    height: 43px;
    font-size: 1.6rem;
    background-color: #e8e7e5;
  }
  .form-box__item__title::before {
    top: 13px;
    left: 10px;
    width: 18px;
    height: 18px;
    border-width: 6px;
  }
}
.form-box__item__title .icon-required {
  padding-left: 0.2em;
  width: 60px;
  height: 24px;
  font-size: 1.5rem;
  line-height: 24px;
  color: #fff;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-align: center;
  background-color: #f37799;
  border-radius: 12px;
  position: absolute;
  top: 19px;
  right: 0;
}
@media screen and (max-width: 900px) {
  .form-box__item__title .icon-required {
    margin-left: 15px;
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
  }
}
@media screen and (max-width: 599px) {
  .form-box__item__title .icon-required {
    margin-left: 6px;
    width: 44px;
    height: 18px;
    font-size: 1.2rem;
    line-height: 18px;
    border-radius: 9px;
    top: -1px;
  }
}
.form-box__item__inner {
  width: calc(100% - 240px - 20px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .form-box__item__inner {
    width: 100%;
  }
}
.form-box__item__inner--w100 {
  margin-top: 10px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .form-box__item__inner--w100 {
    margin-top: 0;
  }
}
.form-box__item__inner__title {
  margin-bottom: 10px;
  padding-left: 1em;
  width: 100%;
  font-size: 1.7rem;
  line-height: 1.3;
  color: #345;
  font-weight: 700;
  position: relative;
}
.form-box__item__inner__title::before {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #99c744;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 900px) {
  .form-box__item__inner__title {
    margin-bottom: 7px;
    font-size: 1.6rem;
  }
  .form-box__item__inner__title::before {
    width: 8px;
    height: 8px;
    top: 6px;
  }
}
@media screen and (max-width: 599px) {
  .form-box__item__inner__title {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.form-box__item__inner .w370 {
  width: 100%;
  max-width: 370px;
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .w370 {
    max-width: 100%;
  }
}
.form-box__item__inner .radio-list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.form-box__item__inner .radio-list__item {
  margin: 10px 30px 10px 0;
}
@media screen and (max-width: 900px) {
  .form-box__item__inner .radio-list__item {
    margin: 0 25px 0 0;
  }
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .radio-list__item {
    margin: 5px 20px 0 0;
  }
}
.form-box__item__inner .radio-list__item--w100 {
  margin: 10px 0 0;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .radio-list__item--w100 {
    margin: 7px 0 0 0;
  }
}
.form-box__item__inner .radio-list__item--w100:first-child {
  margin-top: 0;
}
@media screen and (max-width: 900px) {
  .form-box__item__inner .radio-list--mtb {
    margin: 10px 0;
  }
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .radio-list--mtb {
    margin: 0 0 10px;
  }
}
.form-box__item__inner .checkbox-box {
  margin-bottom: 30px;
  padding: 35px 40px 35px;
  width: 100%;
  background-color: rgba(231, 238, 243, 0.8);
}
@media screen and (max-width: 900px) {
  .form-box__item__inner .checkbox-box {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .checkbox-box {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 0;
    background-color: transparent;
  }
}
.form-box__item__inner .checkbox-box .confirm-text {
  padding: 0;
}
.form-box__item__inner .checkbox-list {
  width: 100%;
}
.form-box__item__inner .checkbox-list__item {
  margin-top: 15px;
  width: 100%;
  display: block;
}
.form-box__item__inner .checkbox-list__item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .checkbox-list__item {
    margin-top: 10px;
  }
}
.form-box__item__inner .birth-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .birth-list {
    width: 100%;
    justify-content: space-between;
  }
}
.form-box__item__inner .birth-list__item {
  margin-left: 10px;
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .birth-list__item {
    margin-left: 0;
  }
}
.form-box__item__inner .birth-list__item.year {
  margin-left: 0;
  width: 130px;
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .birth-list__item.year {
    width: calc(40% - 3px);
  }
}
.form-box__item__inner .birth-list__item.month {
  width: 110px;
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .birth-list__item.month {
    width: calc(30% - 3px);
  }
}
.form-box__item__inner .address-list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .form-box__item__inner .address-list {
    padding-left: calc(1em + 7px);
  }
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .address-list {
    padding-left: calc(1em + 5px);
    justify-content: space-between;
  }
}
.form-box__item__inner .address-list__post {
  width: 200px;
  position: relative;
}
.form-box__item__inner .address-list__post::before {
  content: "〒";
  font-size: 1.8rem;
  line-height: 61px;
  color: #345;
  position: absolute;
  top: 0;
  left: calc(-1em - 10px);
}
@media screen and (max-width: 900px) {
  .form-box__item__inner .address-list__post {
    width: 180px;
  }
  .form-box__item__inner .address-list__post::before {
    font-size: 1.7rem;
    left: calc(-1em - 7px);
  }
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .address-list__post {
    width: calc((100% - 4px) / 2);
  }
  .form-box__item__inner .address-list__post::before {
    font-size: 1.4rem;
    line-height: 51px;
    left: calc(-1em - 5px);
  }
}
.form-box__item__inner .address-list__ken {
  margin-left: 10px;
  width: 140px;
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .address-list__ken {
    margin-left: 0;
    width: calc((100% - 4px) / 2);
  }
}
.form-box__item__inner .address-list__other {
  margin-top: 10px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .address-list__other {
    margin-top: 4px;
  }
}
.form-box__item__inner .reservation-list {
  width: 100%;
}
.form-box__item__inner .reservation-list__item {
  margin-top: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .reservation-list__item {
    justify-content: space-between;
  }
}
.form-box__item__inner .reservation-list__item:first-child {
  margin-top: 10px;
}
.form-box__item__inner .reservation-list__item__text {
  font-size: 1.8rem;
  line-height: 1;
  color: #345;
}
@media screen and (max-width: 900px) {
  .form-box__item__inner .reservation-list__item__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .reservation-list__item__text {
    margin-bottom: 5px;
    width: 100%;
    font-size: 1.6rem;
  }
}
.form-box__item__inner .reservation-list__item__input {
  margin-left: 15px;
  width: 200px;
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .reservation-list__item__input {
    margin-left: 0;
    width: calc(100% - 50px - 5px);
  }
}
.form-box__item__inner .reservation-list__item__btn {
  margin-left: 5px;
  width: 60px;
  height: 60px;
  background-color: #e7eef3;
  background-image: url(../img/common/icon_calendar_btn.svg);
  background-repeat: no-repeat;
  background-size: 44% auto;
  background-repeat: no-repeat;
  background-position: 50% 46%;
  border: none;
  display: block;
  cursor: pointer;
  text-indent: 120%;
  white-space: nowrap;
  text-indent: 120%;
  overflow: hidden;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .reservation-list__item__btn {
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .form-box__item__inner .reservation-list__item__btn:hover {
    background-color: #99c744;
  }
}
.form-box__item__inner .caution-text {
  margin-left: 15px;
  font-size: 1.7rem;
  line-height: 1;
  color: #345;
}
@media screen and (max-width: 900px) {
  .form-box__item__inner .caution-text {
    margin-left: 10px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .caution-text {
    margin-top: 10px;
    margin-left: 0;
    font-size: 1.5rem;
  }
}
.form-box__item__inner .caution-text02 {
  margin-bottom: 10px;
  font-size: 1.7rem;
  line-height: 1.6;
  color: #345;
}
@media screen and (max-width: 900px) {
  .form-box__item__inner .caution-text02 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .caution-text02 {
    font-size: 1.5rem;
  }
}
.form-box__item__inner .caution-text02 a {
  color: #339922;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .form-box__item__inner .caution-text02 a:hover {
    color: #99c744;
    text-decoration: none;
  }
}
.form-box__item__inner .caution-text03 {
  margin-top: 5px;
  padding-left: 1em;
  width: 100%;
  text-indent: -1em;
  font-size: 1.7rem;
  line-height: 1.6;
  color: #345;
}
@media screen and (max-width: 900px) {
  .form-box__item__inner .caution-text03 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .caution-text03 {
    font-size: 1.5rem;
  }
}
.form-box__item__inner .caution-text03 a {
  color: #339922;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .form-box__item__inner .caution-text03 a:hover {
    color: #99c744;
    text-decoration: none;
  }
}
.form-box__item__inner input {
  padding-left: 20px !important;
  width: 100%;
  height: 60px;
  font-size: 1.8rem;
  color: #345;
  background-color: #fff !important;
  border: 1px solid #e8e7e5;
  display: block;
  position: relative;
}
@media screen and (max-width: 900px) {
  .form-box__item__inner input {
    padding-left: 15px !important;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .form-box__item__inner input {
    height: 50px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 350px) {
  .form-box__item__inner input {
    padding-left: 10px !important;
  }
}
.form-box__item__inner select {
  padding-left: 20px !important;
  width: 100%;
  height: 60px;
  font-size: 1.8rem;
  color: #345;
  background-color: #fff;
  background-image: url(../img/common/select_arrow.svg);
  background-repeat: no-repeat;
  background-size: 8px auto;
  background-position: right 18px top 50%;
  border: 1px solid #e8e7e5;
  display: block;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .form-box__item__inner select {
    padding-left: 15px !important;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .form-box__item__inner select {
    height: 50px;
    font-size: 1.6rem;
    background-position: right 12px top 50%;
  }
}
@media screen and (max-width: 350px) {
  .form-box__item__inner select {
    padding-left: 10px !important;
  }
}
.form-box__item__inner .input-hide {
  display: none;
}
.form-box__item__inner .radio-link {
  padding-top: 9px;
  padding-left: 50px;
  min-height: 40px;
  font-size: 1.7rem;
  line-height: 1.5;
  color: #345;
  position: relative;
  cursor: pointer;
  display: block;
  transition: 0.2s;
}
@media screen and (max-width: 900px) {
  .form-box__item__inner .radio-link {
    padding-top: 9px;
    font-size: 1.6rem;
  }
}
.form-box__item__inner .radio-link::before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #e8e7e5;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.form-box__item__inner .radio-link::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #345;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .radio-link {
    padding-top: 6px;
    padding-left: 40px;
    min-height: 32px;
    font-size: 1.5rem;
    letter-spacing: normal;
  }
  .form-box__item__inner .radio-link::before {
    width: 32px;
    height: 32px;
  }
  .form-box__item__inner .radio-link::after {
    width: 12px;
    height: 12px;
    top: 10px;
    left: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .form-box__item__inner .radio-link:hover {
    color: #55b344;
    transform: translateY(3px);
  }
}
.form-box__item__inner .checkbox-link {
  padding-top: 9px;
  padding-left: 50px;
  min-height: 40px;
  font-size: 1.7rem;
  line-height: 1.5;
  color: #345;
  position: relative;
  cursor: pointer;
  display: block;
  transition: 0.2s;
}
@media screen and (max-width: 900px) {
  .form-box__item__inner .checkbox-link {
    padding-top: 9px;
    font-size: 1.6rem;
  }
}
.form-box__item__inner .checkbox-link::before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #e8e7e5;
  position: absolute;
  top: 0;
  left: 0;
}
.form-box__item__inner .checkbox-link::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #345;
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 599px) {
  .form-box__item__inner .checkbox-link {
    padding-top: 6px;
    padding-left: 40px;
    min-height: 32px;
    font-size: 1.5rem;
    letter-spacing: normal;
  }
  .form-box__item__inner .checkbox-link::before {
    width: 32px;
    height: 32px;
  }
  .form-box__item__inner .checkbox-link::after {
    width: 12px;
    height: 12px;
    top: 10px;
    left: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .form-box__item__inner .checkbox-link:hover {
    color: #55b344;
    transform: translateY(3px);
  }
}
.form-box__item__inner textarea {
  padding: 10px 20px;
  width: 100%;
  height: 200px;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #345;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #e8e7e5;
  border-radius: 0;
  display: block;
  position: relative;
}
@media screen and (max-width: 900px) {
  .form-box__item__inner textarea {
    padding: 10px 15px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .form-box__item__inner textarea {
    font-size: 1.6rem;
  }
}
.form-box__item__inner input[type=radio].input-hide:checked + .radio-link::after {
  opacity: 1;
}
.form-box__item__inner input[type=checkbox].input-hide:checked + .checkbox-link::after {
  opacity: 1;
}

.ui-widget-header {
  background-color: #55b344;
}

.ui-datepicker-title {
  color: #fff;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: auto;
  font-weight: 700;
  color: #fff;
  border: none;
}

.ui-datepicker th {
  padding: 5px;
  text-align: center;
  font-weight: bold;
  color: #339922;
  border: 0;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: none;
  background: #f7f6f3;
  font-weight: normal;
  color: #345;
  text-align: center;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  background: #eef7f3;
  color: #339922;
  font-weight: 700;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
  cursor: pointer;
  border: none;
}
.ui-datepicker .ui-datepicker-prev:hover, .ui-datepicker .ui-datepicker-next:hover {
  border: none;
  background-color: transparent;
  opacity: 1;
}

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
  background-color: rgba(247, 246, 243, 0.5);
  color: #789;
}

.ui-datepicker td.ui-datepicker-week-end:first-child a {
  color: #f37799;
}

.ui-datepicker-holiday a {
  color: #f37799 !important;
}

.ui-datepicker td.ui-datepicker-week-end a {
  color: #28c;
}

.ui-datepicker .ui-state-active {
  background: #55b344 !important;
  color: #fff !important;
}

.privacy-box {
  margin-top: 20px;
  padding: 50px;
  background-color: #f7f6f3;
}
@media screen and (max-width: 900px) {
  .privacy-box {
    padding: 40px;
  }
}
@media screen and (max-width: 599px) {
  .privacy-box {
    margin-top: 30px;
    padding: 25px 25px 30px;
  }
}
.privacy-box__text {
  padding-left: 0.06em;
  font-size: 1.8rem;
  line-height: 1.9;
  color: #345;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .privacy-box__text {
    padding-left: 0;
    font-size: 1.7rem;
    line-height: 1.8;
    text-align: justify;
  }
  .privacy-box__text br {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .privacy-box__text {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}

.agree-btn {
  margin: 25px auto 0;
  padding-left: 18px;
  width: 270px;
  max-width: 100%;
  height: 70px;
  font-size: 1.8rem;
  line-height: 1;
  color: #345;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ddd;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width: 900px) {
  .agree-btn {
    margin-top: 20px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .agree-btn {
    margin-top: 15px;
    font-size: 1.6rem;
  }
}
.agree-btn::before {
  content: "";
  margin: auto 0;
  width: 30px;
  height: 30px;
  background-color: #f3f7f9;
  border: 1px solid #ddd;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
}
.agree-btn::after {
  content: "";
  margin: auto 0;
  width: 16px;
  height: 16px;
  background-color: #345;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 27px;
  opacity: 0;
  transition: 0.5s;
}
@media screen and (min-width: 1025px) {
  .agree-btn:hover {
    color: #fff;
    background-color: #55b344;
    transform: translateY(3px);
  }
}

input[type=checkbox].input-hide:checked + .agree-btn {
  color: #fff;
  background-color: #99c744;
}
input[type=checkbox].input-hide:checked + .agree-btn::after {
  opacity: 1;
}

.form-btn {
  margin-top: 70px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .form-btn {
    margin-top: 60px;
  }
}
@media screen and (max-width: 900px) {
  .form-btn {
    margin-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .form-btn {
    margin-top: 30px;
  }
}
.form-btn .correction-btn {
  padding-left: 0;
  padding-right: 0;
  width: 140px;
  color: #789;
  text-align: center;
  background-color: #f3f7f9;
  position: absolute;
  top: 0;
  left: 0;
}
.form-btn .correction-btn::before {
  display: none;
}
.form-btn .correction-btn::after {
  display: none;
}
@media screen and (max-width: 900px) {
  .form-btn .correction-btn {
    padding: 0;
    width: 110px;
    font-size: 1.6rem;
    line-height: 73px;
  }
}
@media screen and (max-width: 599px) {
  .form-btn .correction-btn {
    margin: 15px auto 0;
    padding: 0;
    width: 180px;
    height: 40px;
    font-size: 1.5rem;
    line-height: 41px;
    border-radius: 20px;
    position: relative;
    top: auto;
    left: auto;
  }
}
@media screen and (min-width: 1025px) {
  .form-btn .correction-btn:hover {
    color: #fff;
    background-color: #99c744;
    transform: translateX(-5px);
  }
}

:input-placeholder {
  color: #abc;
}

:-ms-input-placeholder {
  color: #abc !important;
}

::-webkit-input-placeholder {
  color: #abc;
}

::-moz-placeholder {
  color: #abc;
  opacity: 1;
}

/*エラーページの処理*/
.errors-message {
  margin-top: -20px;
  margin-bottom: 30px;
  padding: 20px;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #f37799;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  border: 2px solid #f37799;
}
@media screen and (max-width: 900px) {
  .errors-message {
    margin-top: -15px;
    margin-bottom: 25px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .errors-message {
    margin-top: -5px;
    padding: 15px;
    font-size: 1.6rem;
    text-align: justify;
  }
}

.errors-text {
  margin-top: 10px;
  padding-left: 1em;
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #f37799;
  text-indent: -1em;
}
@media screen and (max-width: 900px) {
  .errors-text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .errors-text {
    margin-top: 5px;
    font-size: 1.6rem;
  }
}

.errors-box {
  border: 1px solid #f37799 !important;
}

/*確認ページの処理*/
.confirm-text {
  padding: 13px 0 11px;
  font-size: 1.8rem;
  line-height: 2;
  color: #345;
  text-align: justify;
}
@media screen and (max-width: 900px) {
  .confirm-text {
    margin-top: -5px;
    padding: 0 0 0 31px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .confirm-text {
    margin-top: 0;
    padding-left: 10px;
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
.confirm-text a {
  color: #345;
  cursor: auto;
}
.confirm-text.job {
  font-weight: 700;
  color: #339922;
}

/*完了ページの処理*/
.complete-box {
  padding: 60px;
  background-color: #f3f7f9;
}
@media screen and (max-width: 900px) {
  .complete-box {
    padding: 50px;
  }
}
@media screen and (max-width: 599px) {
  .complete-box {
    padding: 35px 30px;
  }
}
.complete-box__copy {
  margin-bottom: 20px;
  padding-left: 0.06em;
  font-size: 2.4rem;
  line-height: 1.6;
  color: #55b344;
  font-weight: 700;
  text-align: center;
}
.complete-box__copy br {
  display: none;
}
@media screen and (max-width: 900px) {
  .complete-box__copy {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .complete-box__copy {
    font-size: 2rem;
    line-height: 1.4;
  }
  .complete-box__copy br {
    display: inline;
  }
}
.complete-box__text {
  font-size: 1.8rem;
  line-height: 2;
  color: #345;
  text-align: justify;
}
@media screen and (max-width: 900px) {
  .complete-box__text {
    font-size: 1.7rem;
    line-height: 1.9;
  }
}
@media screen and (max-width: 599px) {
  .complete-box__text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

/*
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*/
.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: -75px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .slick-dots {
    bottom: -50px;
  }
}
@media screen and (max-width: 900px) {
  .slick-dots {
    bottom: -40px;
  }
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 0 0 10px;
  padding: 0;
}
.slick-dots li:first-child {
  margin-left: 0;
}
.slick-dots li.slick-active button {
  background-color: transparent;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 16px;
  height: 16px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #000;
  border: 2px solid #000;
  border-radius: 50%;
  transition: 0.5s;
}
@media screen and (min-width: 1025px) {
  .slick-dots li button:hover {
    transform: scale(1.4);
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* ---------------------------------- **
		Modal Window
** ---------------------------------- */
#layer_board_area {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 3vw;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box; /*スクロールバーを非表示*/
  -ms-overflow-style: none; /*スクロールバーを非表示*/
  scrollbar-width: none; /*スクロールバーを非表示*/
  z-index: 200;
}

#layer_board_area::-webkit-scrollbar {
  display: none; /*スクロールバーを非表示*/
}

.layer_board_bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  cursor: pointer;
  background: #000;
  z-index: 0;
}

.alert-wrapper {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  padding: 40px 40px 90px;
  width: 100%;
  max-width: 600px;
  height: 270px;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 10;
  border-radius: 10px;
  position: absolute;
}
@media screen and (max-width: 599px) {
  .alert-wrapper {
    padding: 30px 30px 70px;
    width: calc(100% - 40px);
    max-width: 320px;
    height: 230px;
    border-radius: 5px;
  }
}
.alert-wrapper__text {
  padding-left: 0;
  font-size: 19px;
  line-height: 1.5;
  color: #345;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .alert-wrapper__text {
    font-size: 16px;
    text-align: justify;
  }
  .alert-wrapper__text br {
    display: none;
  }
}
.alert-wrapper__btn {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .alert-wrapper__btn {
    margin-top: 15px;
  }
}
.alert-wrapper__btn .link-text span {
  font-weight: 700;
}
.alert-wrapper .close-btn {
  bottom: 25px;
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #abc;
  background-image: url(../img/common/icon_close.svg);
  background-size: 44% auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  transition: 0.5s;
  cursor: pointer;
  display: block;
}
@media screen and (max-width: 599px) {
  .alert-wrapper .close-btn {
    bottom: 20px;
    left: calc(50% - 20px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .alert-wrapper .close-btn:hover {
    background-color: #345;
  }
}

.top-important {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.top-important__title {
  padding: 38px 10px;
  width: 260px;
  background-color: #f37799;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-important__title {
    padding: 32px 10px;
    width: 220px;
  }
}
@media screen and (max-width: 900px) {
  .top-important__title {
    padding: 25px 10px;
    width: 200px;
  }
}
@media screen and (max-width: 599px) {
  .top-important__title {
    padding: 10px 10px;
    width: 100%;
  }
}
.top-important__title__text {
  padding-left: 26px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  background-image: url(../img/common/icon_caution.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: 0 4px;
  display: inline-block;
}
@media screen and (max-width: 900px) {
  .top-important__title__text {
    padding-left: 22px;
    font-size: 1.7rem;
    background-size: 18px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-important__title__text {
    padding-left: 21px;
    font-size: 1.6rem;
    background-size: 16px auto;
  }
}
.top-important__list {
  padding: 38px 35px;
  width: calc(100% - 260px);
}
@media screen and (max-width: 1024px) {
  .top-important__list {
    padding: 32px 30px;
    width: calc(100% - 220px);
  }
}
@media screen and (max-width: 900px) {
  .top-important__list {
    padding: 25px;
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 599px) {
  .top-important__list {
    padding: 25px 20px;
    width: 100%;
  }
}
.top-important__list__item {
  margin-top: 10px;
}
.top-important__list__item:first-child {
  margin-top: 0;
}
.top-important__list__item__link {
  padding-left: 45px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #345;
  font-weight: 700;
  position: relative;
  display: block;
}
.top-important__list__item__link::before {
  content: "";
  margin: auto 0;
  width: 34px;
  height: 16px;
  background-color: #f37799;
  background-image: url(../img/common/arrow_white.svg);
  background-size: auto 7px;
  background-position: 54% 50%;
  background-repeat: no-repeat;
  border-radius: 8px;
  position: absolute;
  top: 3px;
  left: 0;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .top-important__list__item__link {
    padding-left: 38px;
    font-size: 1.6rem;
  }
  .top-important__list__item__link::before {
    width: 32px;
    height: 14px;
    background-size: auto 6px;
    border-radius: 7px;
    top: 3px;
  }
}
.top-important__list__item__link__date {
  margin-right: 0.5em;
  color: #789;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .top-important__list__item__link__date {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .top-important__list__item__link:hover {
    color: #f37799;
    transform: translateX(5px);
  }
  .top-important__list__item__link:hover .top-important__list__item__link__date {
    color: #f37799;
  }
}

.top-main {
  margin-top: -130px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-main {
    margin-top: 0;
  }
}
.top-main::after {
  content: "";
  width: 100%;
  height: 19.5vw;
  background-image: url(../img/top/main_bg.svg);
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 50% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  opacity: 0.4;
}
@media screen and (max-width: 599px) {
  .top-main::after {
    height: 25vw;
  }
}
.top-main__photos {
  width: 100%;
  max-height: 100vh;
  aspect-ratio: 1920/920;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 1400px) {
  .top-main__photos {
    aspect-ratio: 1920/870;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__photos {
    aspect-ratio: 1920/960;
  }
}
@media screen and (max-width: 900px) {
  .top-main__photos {
    aspect-ratio: 1920/1000;
  }
}
@media screen and (max-width: 599px) {
  .top-main__photos {
    aspect-ratio: 100/120;
    flex-wrap: wrap;
  }
}
.top-main__photos .splide {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .top-main__photos .splide {
    width: 100%;
    height: 50%;
  }
}
.top-main__photos .splide__track {
  width: 100%;
  height: 100%;
}
.top-main__photos .splide__track .splide__list {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.top-main__photos .splide__track .splide__list .splide__slide {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.top-main__photos .splide__track .splide__list .splide__slide.is-active {
  animation: bg-move 20s linear infinite;
}
@keyframes bg-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.top-main__photos .splide__track .splide__list .splide__slide.keep-active {
  animation: bg-move 20s linear infinite;
}
.top-main__photos .splide__track .splide__list .splide__slide.photo01-1 {
  background-image: url(../img/top/main01-1.webp);
}
@media screen and (max-width: 599px) {
  .top-main__photos .splide__track .splide__list .splide__slide.photo01-1 {
    background-image: url(../img/top/main01-1_sp.webp);
  }
}
.top-main__photos .splide__track .splide__list .splide__slide.photo02-1 {
  background-image: url(../img/top/main02-1.webp);
}
@media screen and (max-width: 599px) {
  .top-main__photos .splide__track .splide__list .splide__slide.photo02-1 {
    background-image: url(../img/top/main02-1_sp.webp);
  }
}
.top-main__photos .splide__track .splide__list .splide__slide.photo01-2 {
  background-image: url(../img/top/main01-2.webp);
}
@media screen and (max-width: 599px) {
  .top-main__photos .splide__track .splide__list .splide__slide.photo01-2 {
    background-image: url(../img/top/main01-2_sp.webp);
  }
}
.top-main__photos .splide__track .splide__list .splide__slide.photo02-2 {
  background-image: url(../img/top/main02-2.webp);
}
@media screen and (max-width: 599px) {
  .top-main__photos .splide__track .splide__list .splide__slide.photo02-2 {
    background-image: url(../img/top/main02-2_sp.webp);
  }
}
.top-main__copy {
  width: 75%;
  position: absolute;
  bottom: 7%;
  left: 4%;
  z-index: 3;
}
@media screen and (max-width: 900px) {
  .top-main__copy {
    margin: 0 auto;
    width: 94%;
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-main__copy {
    width: 96%;
    bottom: 2%;
  }
}
.top-main__copy img {
  width: 100%;
  max-width: 100%;
}

.top-rec {
  padding: 100px 50px 60px;
}
@media screen and (max-width: 1600px) {
  .top-rec {
    padding: 50px 50px 50px;
  }
}
@media screen and (max-width: 1400px) {
  .top-rec {
    padding: 0 0 80px;
  }
}
@media screen and (max-width: 1024px) {
  .top-rec {
    padding: 0 0 60px;
  }
}
@media screen and (max-width: 900px) {
  .top-rec {
    padding: 0 0 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-rec {
    padding: 0 1px 50px;
  }
}
.top-rec__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.top-rec__inner__item {
  width: 20%;
}
@media screen and (max-width: 599px) {
  .top-rec__inner__item {
    margin-top: 1px;
    width: calc((100% - 1px) / 2);
  }
  .top-rec__inner__item:last-child {
    width: 100%;
  }
}
.top-rec__inner__item__link {
  padding: 35px 10px 40px calc(10px + 0.06em);
  height: 100%;
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  display: block;
}
@media screen and (max-width: 1400px) {
  .top-rec__inner__item__link {
    padding: 25px 10px 35px calc(10px + 0.06em);
  }
}
@media screen and (max-width: 1200px) {
  .top-rec__inner__item__link {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-rec__inner__item__link {
    padding: 22px 10px 28px calc(10px + 0.06em);
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 900px) {
  .top-rec__inner__item__link {
    padding: 18px 5px 24px;
    font-size: 1.5rem;
    letter-spacing: normal;
  }
}
@media screen and (max-width: 599px) {
  .top-rec__inner__item__link {
    padding: 18px 5px 24px;
    font-size: 1.6rem;
    letter-spacing: normal;
  }
}
.top-rec__inner__item__link__icon {
  margin: 0 auto 12px;
  width: 90px;
}
@media screen and (max-width: 1400px) {
  .top-rec__inner__item__link__icon {
    margin: 0 auto 12px;
    width: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .top-rec__inner__item__link__icon {
    margin: 0 auto 10px;
    width: 60px;
  }
}
@media screen and (max-width: 900px) {
  .top-rec__inner__item__link__icon {
    margin: 0 auto 8px;
    width: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-rec__inner__item__link__icon {
    margin: 0 auto 8px;
    width: 40px;
  }
}
.top-rec__inner__item__link.rec-link01 {
  background-color: #99c744;
  border-radius: 15px 0 0 15px;
}
@media screen and (max-width: 1400px) {
  .top-rec__inner__item__link.rec-link01 {
    border-radius: 0;
  }
}
.top-rec__inner__item__link.rec-link02 {
  background-color: #55b344;
}
.top-rec__inner__item__link.rec-link03 {
  background-color: #99c744;
}
@media screen and (max-width: 599px) {
  .top-rec__inner__item__link.rec-link03 {
    background-color: #55b344;
  }
}
.top-rec__inner__item__link.rec-link04 {
  background-color: #55b344;
}
@media screen and (max-width: 599px) {
  .top-rec__inner__item__link.rec-link04 {
    background-color: #99c744;
  }
}
.top-rec__inner__item__link.rec-link05 {
  background-color: #99c744;
  border-radius: 0 15px 15px 0;
}
@media screen and (max-width: 1400px) {
  .top-rec__inner__item__link.rec-link05 {
    border-radius: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-rec__inner__item__link.rec-link05 {
    margin: 20px auto 0;
    padding: 0 0 2px 15px;
    height: 60px;
    width: 240px;
    color: #339922;
    background-color: #e7f7e7;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    position: relative;
  }
  .top-rec__inner__item__link.rec-link05 .top-rec__inner__item__link__icon {
    position: absolute;
    top: 10px;
    left: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .top-rec__inner__item__link:hover {
    background-color: #339922;
  }
}

.top-hard {
  padding: 0 50px 100px;
}
@media screen and (max-width: 1024px) {
  .top-hard {
    padding: 0 60px 80px;
  }
}
@media screen and (max-width: 900px) {
  .top-hard {
    padding: 0 40px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-hard {
    padding: 0 5px 40px;
  }
}
.top-hard__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.top-hard__inner__schedule {
  padding: 50px;
  width: 42.5%;
  background-color: #eef7f3;
  border-radius: 15px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .top-hard__inner__schedule {
    padding: 40px;
  }
}
@media screen and (max-width: 1400px) {
  .top-hard__inner__schedule {
    padding: 35px 30px 30px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .top-hard__inner__schedule {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 1024px) {
  .top-hard__inner__schedule {
    margin-bottom: 10px;
    padding: 40px;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-hard__inner__schedule {
    margin-bottom: 5px;
    padding: 28px 25px 25px;
    border-radius: 5px;
  }
}
@media screen and (max-width: 350px) {
  .top-hard__inner__schedule {
    padding: 25px 20px 20px;
  }
}
.top-hard__inner__schedule__table {
  width: 100%;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: normal;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
@media screen and (max-width: 1300px) {
  .top-hard__inner__schedule__table {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-hard__inner__schedule__table {
    font-size: 3.5vw;
    line-height: 1.2;
  }
}
.top-hard__inner__schedule__table thead th {
  padding: 9px 10px 8px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  background-color: #55b344;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .top-hard__inner__schedule__table thead th {
    padding: 8px 2px 6px;
  }
}
.top-hard__inner__schedule__table td {
  padding: 17px 10px;
  color: #99c744;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ddd;
}
@media screen and (max-width: 1300px) {
  .top-hard__inner__schedule__table td {
    padding: 15px 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-hard__inner__schedule__table td {
    padding: 9px 3px;
  }
}
.top-hard__inner__schedule__table td.td-black {
  color: #345;
}
.top-hard__inner__schedule__caution {
  padding-left: 1em;
  font-size: 1.6rem;
  line-height: 1;
  color: #339922;
  letter-spacing: normal;
  text-indent: -1em;
  position: absolute;
  top: 60px;
  right: 50px;
}
@media screen and (max-width: 1600px) {
  .top-hard__inner__schedule__caution {
    top: 50px;
    right: 40px;
  }
}
@media screen and (max-width: 1400px) {
  .top-hard__inner__schedule__caution {
    font-size: 1.5rem;
    top: 45px;
    right: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .top-hard__inner__schedule__caution {
    font-size: 1.5rem;
    top: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-hard__inner__schedule__caution {
    font-size: 1.6rem;
    top: 40px;
    right: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-hard__inner__schedule__caution {
    margin-top: 8px;
    font-size: 1.4rem;
    position: relative;
    top: auto;
    right: auto;
  }
}
.top-hard__inner__schedule__caution.en {
  margin-top: 8px;
  position: relative;
  top: auto;
  right: auto;
}
.top-hard__inner__checkup {
  padding: 50px;
  width: 56.25%;
  background-color: #e7f7e7;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 1600px) {
  .top-hard__inner__checkup {
    padding: 40px;
  }
}
@media screen and (max-width: 1400px) {
  .top-hard__inner__checkup {
    padding: 35px 30px 30px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .top-hard__inner__checkup {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 1024px) {
  .top-hard__inner__checkup {
    padding: 40px;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-hard__inner__checkup {
    padding: 28px 25px 25px;
    border-radius: 5px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 350px) {
  .top-hard__inner__checkup {
    padding: 25px 20px 20px;
  }
}
.top-hard__inner__checkup__inner {
  width: 510px;
}
@media screen and (max-width: 1600px) {
  .top-hard__inner__checkup__inner {
    width: 480px;
  }
}
@media screen and (max-width: 1400px) {
  .top-hard__inner__checkup__inner {
    width: 460px;
  }
}
@media screen and (max-width: 1300px) {
  .top-hard__inner__checkup__inner {
    width: 420px;
  }
}
@media screen and (max-width: 1200px) {
  .top-hard__inner__checkup__inner {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .top-hard__inner__checkup__inner {
    width: 530px;
  }
}
@media screen and (max-width: 900px) {
  .top-hard__inner__checkup__inner {
    width: calc(100% - 200px - 10px);
  }
}
@media screen and (max-width: 780px) {
  .top-hard__inner__checkup__inner {
    width: 100%;
  }
}
.top-hard__inner__checkup__inner__btns {
  margin-top: -10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 1300px) {
  .top-hard__inner__checkup__inner__btns {
    margin-top: -5px;
  }
}
.top-hard__inner__checkup__inner__btns__item {
  margin-top: 10px;
  width: calc((100% - 10px) / 2);
}
@media screen and (max-width: 1300px) {
  .top-hard__inner__checkup__inner__btns__item {
    margin-top: 5px;
    width: calc((100% - 5px) / 2);
  }
}
.top-hard__inner__checkup__inner__btns__item__link {
  padding: 21px 74px 21px 25px;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #345;
  font-weight: 700;
  background-color: #fff;
  border-radius: 5px;
  display: block;
  position: relative;
}
.top-hard__inner__checkup__inner__btns__item__link::before {
  content: "";
  margin: auto 0;
  width: 34px;
  height: 16px;
  background-color: #99c744;
  background-image: url(../img/common/arrow_white.svg);
  background-size: auto 6px;
  background-position: 54% 50%;
  background-repeat: no-repeat;
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  transition: 0.2s;
}
@media screen and (max-width: 1300px) {
  .top-hard__inner__checkup__inner__btns__item__link {
    padding: 20px 60px 20px 17px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-hard__inner__checkup__inner__btns__item__link {
    padding: 16px 40px 16px 15px;
    font-size: 1.4rem;
    border-radius: 3px;
  }
  .top-hard__inner__checkup__inner__btns__item__link::before {
    width: 27px;
    height: 14px;
    background-size: auto 6px;
    border-radius: 7px;
    right: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .top-hard__inner__checkup__inner__btns__item__link:hover {
    color: #fff;
    background-color: #99c744;
    transform: translateX(5px);
  }
  .top-hard__inner__checkup__inner__btns__item__link:hover::before {
    background-color: #55b344;
  }
}
.top-hard__inner__checkup__photo {
  width: calc(100% - 510px - 25px);
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  .top-hard__inner__checkup__photo {
    width: calc(100% - 480px - 15px);
  }
}
@media screen and (max-width: 1400px) {
  .top-hard__inner__checkup__photo {
    margin-top: 37px;
    width: calc(100% - 460px - 10px);
  }
}
@media screen and (max-width: 1300px) {
  .top-hard__inner__checkup__photo {
    margin-top: 33px;
    width: calc(100% - 420px - 10px);
  }
}
@media screen and (max-width: 1200px) {
  .top-hard__inner__checkup__photo {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .top-hard__inner__checkup__photo {
    margin-top: 0;
    width: calc(100% - 530px - 25px);
    height: 163px;
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .top-hard__inner__checkup__photo {
    margin-top: 33px;
    width: 200px;
    height: 129px;
  }
}
@media screen and (max-width: 780px) {
  .top-hard__inner__checkup__photo {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .top-hard__inner__checkup__photo {
    margin-top: 10px;
    width: 100%;
    height: 48vw;
    display: block;
  }
}
.top-hard__inner__checkup__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-hard__inner__title {
  margin-bottom: 17px;
  padding-left: 32px;
  font-size: 2.2rem;
  line-height: 1;
  color: #345;
  font-weight: 700;
  position: relative;
}
.top-hard__inner__title::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 8px solid #55b344;
  border-radius: 5px;
  position: absolute;
  top: -1px;
  left: 0;
}
@media screen and (max-width: 1400px) {
  .top-hard__inner__title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1300px) {
  .top-hard__inner__title {
    margin-bottom: 13px;
    padding-left: 28px;
    font-size: 2rem;
  }
  .top-hard__inner__title::before {
    width: 20px;
    height: 20px;
    border: 7px solid #55b344;
    top: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-hard__inner__title {
    margin-bottom: 12px;
    padding-left: 24px;
    font-size: 1.8rem;
  }
  .top-hard__inner__title::before {
    width: 18px;
    height: 18px;
    border: 6px solid #55b344;
    border-radius: 4px;
    top: -1px;
  }
}

.top-pickup {
  padding: 0 50px 120px;
}
@media screen and (max-width: 1024px) {
  .top-pickup {
    padding: 0 60px 80px;
  }
}
@media screen and (max-width: 900px) {
  .top-pickup {
    padding: 0 40px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-pickup {
    padding: 0 30px 40px;
  }
}
.top-pickup__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1600px;
}
.top-pickup__inner__title {
  margin: 0 auto 20px;
  padding-bottom: 22px;
  padding-left: 0.06em;
  font-size: 6.2rem;
  line-height: 1;
  color: #55b344;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.top-pickup__inner__title::first-letter {
  color: #99c744;
}
.top-pickup__inner__title::before {
  content: "";
  margin: 0 auto;
  width: 30px;
  height: 2px;
  background-color: #99c744;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .top-pickup__inner__title {
    margin: 0 auto 25px;
    padding-bottom: 18px;
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 900px) {
  .top-pickup__inner__title {
    margin: 0 auto 30px;
    padding-bottom: 0;
    font-size: 4.8rem;
  }
  .top-pickup__inner__title::before {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .top-pickup__inner__title {
    margin: 0 auto 22px;
    font-size: 3.8rem;
  }
}
.top-pickup__inner__title__jp {
  margin-top: 7px;
  font-size: 1.8rem;
  line-height: 1;
  color: #55b344;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
  display: block;
}
@media screen and (max-width: 1024px) {
  .top-pickup__inner__title__jp {
    margin-top: 5px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 900px) {
  .top-pickup__inner__title__jp {
    margin-top: 5px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-pickup__inner__title__jp {
    margin-top: 3px;
    font-size: 1.4rem;
  }
}
.top-pickup__inner__slider {
  width: calc((100vw - 1600px) / 2 + 100%);
  text-align: left;
}
@media screen and (max-width: 1700px) {
  .top-pickup__inner__slider {
    width: calc(100% + 50px);
  }
}
@media screen and (max-width: 1600px) {
  .top-pickup__inner__slider {
    margin: 0 -50px;
    width: calc(100% + 100px);
  }
}
@media screen and (max-width: 1024px) {
  .top-pickup__inner__slider {
    margin: 0 -60px;
    width: calc(100% + 120px);
  }
}
@media screen and (max-width: 900px) {
  .top-pickup__inner__slider {
    margin: 0 -40px;
    width: calc(100% + 80px);
  }
}
@media screen and (max-width: 599px) {
  .top-pickup__inner__slider {
    margin: 0 -30px;
    width: calc(100% + 60px);
  }
}
.top-pickup__inner__slider div {
  line-height: 0.1;
}
.top-pickup__inner__slider__item {
  padding: 10px 40px 10px 0;
  transform: translateX(-30%);
}
@media screen and (max-width: 1700px) {
  .top-pickup__inner__slider__item {
    padding-right: 30px;
  }
}
@media screen and (max-width: 1600px) {
  .top-pickup__inner__slider__item {
    padding: 10px 15px;
    transform: translateX(-20%);
  }
}
@media screen and (max-width: 1400px) {
  .top-pickup__inner__slider__item {
    padding: 10px 10px;
  }
}
@media screen and (max-width: 1300px) {
  .top-pickup__inner__slider__item {
    padding: 10px 7px;
    transform: translateX(-40%);
  }
}
@media screen and (max-width: 1100px) {
  .top-pickup__inner__slider__item {
    padding: 10px 7px 0;
    transform: translateX(-10%);
  }
}
@media screen and (max-width: 1024px) {
  .top-pickup__inner__slider__item {
    padding: 0 7px 0;
  }
}
@media screen and (max-width: 900px) {
  .top-pickup__inner__slider__item {
    padding: 0 15px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-pickup__inner__slider__item {
    padding: 0 5px 0;
    transform: translateX(0);
  }
}
.top-pickup__inner__slider__item__link {
  padding: 40px 40px 40px 35px;
  background-color: #f7f6f3;
  border-left: 5px solid #99c744;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}
.top-pickup__inner__slider__item__link::before {
  content: "";
  width: 5px;
  height: 50%;
  background-color: #55b344;
  position: absolute;
  top: 0;
  left: -5px;
  transition: 0.2s;
}
@media screen and (max-width: 1400px) {
  .top-pickup__inner__slider__item__link {
    padding: 30px 30px 30px 25px;
  }
}
@media screen and (max-width: 900px) {
  .top-pickup__inner__slider__item__link {
    padding: 40px;
    border-left: none;
    border-top: 3px solid #99c744;
  }
  .top-pickup__inner__slider__item__link::before {
    width: 50%;
    height: 3px;
    top: -3px;
    left: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-pickup__inner__slider__item__link {
    padding: 22px 25px 25px;
    border-top: 3px solid #99c744;
  }
  .top-pickup__inner__slider__item__link::before {
    width: 50%;
    height: 3px;
    top: -3px;
    left: 0;
  }
}
.top-pickup__inner__slider__item__link__inner {
  width: 53.5%;
}
@media screen and (max-width: 900px) {
  .top-pickup__inner__slider__item__link__inner {
    width: 100%;
  }
}
.top-pickup__inner__slider__item__link__inner__title {
  margin-bottom: 10px;
  padding: 0 0 12px 45px;
  font-size: 2rem;
  line-height: 1.3;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  border-bottom: 1px dotted #bbb;
  position: relative;
}
.top-pickup__inner__slider__item__link__inner__title::before {
  content: "";
  width: 34px;
  height: 16px;
  background-color: #99c744;
  background-image: url(../img/common/arrow_white.svg);
  background-size: auto 7px;
  background-position: 54% 50%;
  background-repeat: no-repeat;
  border-radius: 8px;
  position: absolute;
  top: 5px;
  left: 0;
  transition: 0.2s;
}
@media screen and (max-width: 1300px) {
  .top-pickup__inner__slider__item__link__inner__title {
    margin-bottom: 10px;
    padding: 0 0 10px 36px;
    font-size: 1.8rem;
  }
  .top-pickup__inner__slider__item__link__inner__title::before {
    width: 30px;
    height: 14px;
    background-size: auto 6px;
    border-radius: 7px;
    top: 5px;
  }
}
@media screen and (max-width: 599px) {
  .top-pickup__inner__slider__item__link__inner__title {
    margin-bottom: 10px;
    padding: 0 0 8px 30px;
    font-size: 1.6rem;
    letter-spacing: normal;
  }
  .top-pickup__inner__slider__item__link__inner__title::before {
    width: 24px;
    height: 12px;
    background-size: auto 6px;
    border-radius: 6px;
    top: 5px;
  }
}
.top-pickup__inner__slider__item__link__inner__text {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #345;
  text-align: justify;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .top-pickup__inner__slider__item__link__inner__text {
    font-size: 1.5rem;
    line-height: 1.55;
  }
}
.top-pickup__inner__slider__item__link__photo {
  width: 40%;
  aspect-ratio: 210/140;
  overflow: hidden;
  line-height: 0.1;
}
@media screen and (max-width: 900px) {
  .top-pickup__inner__slider__item__link__photo {
    margin-top: 15px;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-pickup__inner__slider__item__link__photo {
    margin-top: 12px;
  }
}
.top-pickup__inner__slider__item__link__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1025px) {
  .top-pickup__inner__slider__item__link:hover {
    transform: translateY(-5px);
    box-shadow: 3px 3px 5px rgba(51, 68, 85, 0.2);
  }
  .top-pickup__inner__slider__item__link:hover .top-pickup__inner__slider__item__link__inner__title::before {
    background-color: #55b344;
  }
}
.top-pickup__inner__nav {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .top-pickup__inner__nav {
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .top-pickup__inner__nav {
    margin-top: 15px;
  }
}
@media screen and (max-width: 900px) {
  .top-pickup__inner__nav .top-pickup-pager {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .top-pickup__inner__nav .top-pickup-pager {
    margin-bottom: 15px;
  }
}
.top-pickup__inner__nav .top-pickup-pager .slick-dots {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  display: block;
  width: auto;
  height: 15px;
  line-height: 0.1;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
  transform: translateY(0);
}
@media screen and (max-width: 900px) {
  .top-pickup__inner__nav .top-pickup-pager .slick-dots {
    width: 100%;
    text-align: center;
  }
}
.top-pickup__inner__nav .top-pickup-pager .slick-dots li {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 0 0 10px;
  padding: 0;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}
.top-pickup__inner__nav .top-pickup-pager .slick-dots li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 900px) {
  .top-pickup__inner__nav .top-pickup-pager .slick-dots li {
    margin: 0 0 0 6px;
  }
}
@media screen and (max-width: 599px) {
  .top-pickup__inner__nav .top-pickup-pager .slick-dots li {
    width: 14px;
    height: 14px;
    margin: 0 0 0 5px;
  }
}
.top-pickup__inner__nav .top-pickup-pager .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #ddd;
  border: none;
  border-radius: 50%;
  transition: 0.2s;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .top-pickup__inner__nav .top-pickup-pager .slick-dots li button:hover {
    background: #99c744;
    transform: scale(1);
  }
}
.top-pickup__inner__nav .top-pickup-pager .slick-dots li.slick-active button {
  background: #99c744;
}

.top-news {
  padding: 120px 50px 100px;
  background-color: #eef7f3;
  position: relative;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  .top-news {
    padding: 70px 60px 80px;
  }
}
@media screen and (max-width: 900px) {
  .top-news {
    padding: 50px 40px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-news {
    padding: 40px 30px 40px;
  }
}
.top-news__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
  position: relative;
  transition: 0.5s;
}
.top-news__inner__title {
  margin-bottom: 30px;
  font-size: 4rem;
  line-height: 1;
  color: #55b344;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
}
.top-news__inner__title::first-letter {
  color: #99c744;
}
@media screen and (max-width: 1024px) {
  .top-news__inner__title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 900px) {
  .top-news__inner__title {
    margin-bottom: 20px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news__inner__title {
    margin-bottom: 25px;
    padding-left: 0.06em;
    text-align: center;
  }
}
.top-news__inner__title__en {
  margin-left: 15px;
  font-size: 1.6rem;
  line-height: 1;
  color: #89a;
  display: inline-block;
  vertical-align: 50%;
}
@media screen and (max-width: 1024px) {
  .top-news__inner__title__en {
    margin-left: 10px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news__inner__title__en {
    margin-top: 10px;
    margin-left: 0;
    padding-left: 0.06em;
    font-size: 1.2rem;
    text-align: center;
    display: block;
  }
}
.top-news__inner__tab {
  width: 630px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: absolute;
  top: 5px;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .top-news__inner__tab {
    width: 510px;
    top: 7px;
  }
}
@media screen and (max-width: 900px) {
  .top-news__inner__tab {
    margin: 0 0 20px;
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
  }
}
@media screen and (max-width: 599px) {
  .top-news__inner__tab {
    margin: 0 -20px 10px;
    width: auto;
  }
}
.top-news__inner__tab__item {
  padding-left: 0.06em;
  width: 20%;
  height: 35px;
  font-size: 1.7rem;
  line-height: 1.1;
  color: #567;
  font-weight: 500;
  text-align: center;
  border-right: 1px solid #aad3b7;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
}
.top-news__inner__tab__item:first-child {
  border-left: 1px solid #aad3b7;
}
@media screen and (max-width: 1200px) {
  .top-news__inner__tab__item {
    height: 30px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news__inner__tab__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 350px) {
  .top-news__inner__tab__item {
    font-size: 1.1rem;
  }
}
.top-news__inner__tab__item.ls08 {
  padding-left: 0.8em;
  letter-spacing: 0.8em;
}
@media screen and (min-width: 1025px) {
  .top-news__inner__tab__item:hover {
    color: #fff;
    background-color: #99c744;
  }
}
.top-news__inner__tab__item.select {
  color: #fff;
  background-color: #99c744;
}
.top-news__inner__tab__item.select::before {
  content: "";
  margin: 0 auto;
  width: 0;
  height: 0;
  border-width: 11px 6px 0 6px;
  border-style: solid;
  border-color: #99c744 transparent transparent transparent;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 599px) {
  .top-news__inner__tab__item.select::before {
    border-width: 8px 4px 0 4px;
    bottom: -7px;
  }
}
.top-news__inner .news-list__item__link {
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .top-news__inner .news-list__item__link:hover {
    background-color: #99c744;
  }
  .top-news__inner .news-list__item__link:hover::before {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
  .top-news__inner .news-list__item__link:hover .news-list__item__link__date {
    color: #fff;
  }
  .top-news__inner .news-list__item__link:hover .news-list__item__link__date::before {
    background-color: rgba(255, 255, 255, 0.7);
  }
  .top-news__inner .news-list__item__link:hover .news-list__item__link__text {
    color: #fff;
  }
}
.top-news__inner__btn {
  margin-top: 20px;
  text-align: right;
}
@media screen and (max-width: 900px) {
  .top-news__inner__btn {
    margin-top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__inner__btn {
    margin-top: 10px;
    margin-right: -15px;
  }
}

.top-reborn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-left: 10px solid #55b344;
  box-shadow: 0 0 5px 3px rgba(51, 68, 85, 0.15);
  position: relative;
  z-index: 2;
}
.top-reborn::before {
  content: "";
  width: 10px;
  height: 50vh;
  background-color: #99c744;
  position: absolute;
  top: 0;
  left: -10px;
}
@media screen and (max-width: 1100px) {
  .top-reborn {
    border-left: none;
  }
  .top-reborn::before {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .top-reborn {
    box-shadow: 0 0 3px 2px rgba(51, 68, 85, 0.15);
  }
}
.top-reborn__contents {
  padding: 120px 50px 150px;
  width: 50%;
  background-color: #f7f6f3;
}
@media screen and (max-width: 1400px) {
  .top-reborn__contents {
    padding: 80px 50px 100px;
    width: 60%;
  }
}
@media screen and (max-width: 1100px) {
  .top-reborn__contents {
    padding: 80px 50px 80px;
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .top-reborn__contents {
    padding: 60px 40px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-reborn__contents {
    padding: 40px 30px 40px;
  }
}
.top-reborn__contents__inner {
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .top-reborn__contents__inner {
    max-width: 900px;
  }
}
@media screen and (max-width: 900px) {
  .top-reborn__contents__inner {
    max-width: 600px;
  }
}
.top-reborn__contents__inner__copy {
  margin-bottom: 20px;
  font-size: 4.6rem;
  line-height: 1.6;
  color: #55b344;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 400;
  letter-spacing: normal;
}
@media screen and (max-width: 1400px) {
  .top-reborn__contents__inner__copy {
    margin-bottom: 15px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 1100px) {
  .top-reborn__contents__inner__copy {
    margin-bottom: 10px;
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 900px) {
  .top-reborn__contents__inner__copy {
    margin-bottom: 10px;
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-reborn__contents__inner__copy {
    font-size: 6.5vw;
  }
}
.top-reborn__contents__inner__text {
  font-size: 1.8rem;
  line-height: 2.2;
  color: #345;
}
@media screen and (max-width: 1400px) {
  .top-reborn__contents__inner__text {
    font-size: 1.7rem;
    line-height: 2.1;
  }
}
@media screen and (max-width: 1100px) {
  .top-reborn__contents__inner__text {
    font-size: 1.8rem;
    line-height: 2.2;
  }
}
@media screen and (max-width: 599px) {
  .top-reborn__contents__inner__text {
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: justify;
  }
  .top-reborn__contents__inner__text br {
    display: none;
  }
}
.top-reborn__contents__inner__list {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 1400px) {
  .top-reborn__contents__inner__list {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1300px) {
  .top-reborn__contents__inner__list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 900px) {
  .top-reborn__contents__inner__list {
    margin-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-reborn__contents__inner__list {
    margin-top: 15px;
  }
}
@media screen and (max-width: 350px) {
  .top-reborn__contents__inner__list {
    margin: 10px -20px 0;
  }
}
.top-reborn__contents__inner__list__item {
  margin-top: 20px;
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 1400px) {
  .top-reborn__contents__inner__list__item {
    margin-top: 15px;
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (max-width: 1100px) {
  .top-reborn__contents__inner__list__item {
    margin-top: 0;
    width: calc((100% - 30px) / 4);
  }
}
@media screen and (max-width: 900px) {
  .top-reborn__contents__inner__list__item {
    margin-top: 20px;
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-reborn__contents__inner__list__item {
    margin-top: 5px;
    width: calc((100% - 5px) / 2);
  }
}
.top-reborn__contents__inner__list__item__link {
  padding: 20px 20px 66px;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(51, 68, 85, 0.3);
  display: block;
  position: relative;
}
.top-reborn__contents__inner__list__item__link::before {
  content: "";
  margin: 0 auto;
  width: 34px;
  height: 16px;
  background-color: #55b344;
  background-image: url(../img/common/arrow_white.svg);
  background-size: auto 7px;
  background-position: 54% 50%;
  background-repeat: no-repeat;
  border-radius: 8px;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  transition: 0.2s;
}
@media screen and (max-width: 1300px) {
  .top-reborn__contents__inner__list__item__link {
    padding: 10px 10px 56px;
  }
  .top-reborn__contents__inner__list__item__link::before {
    bottom: 25px;
  }
}
@media screen and (max-width: 900px) {
  .top-reborn__contents__inner__list__item__link {
    padding: 20px 20px 66px;
  }
  .top-reborn__contents__inner__list__item__link::before {
    bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-reborn__contents__inner__list__item__link {
    padding: 10px 10px 40px;
  }
  .top-reborn__contents__inner__list__item__link::before {
    width: 28px;
    height: 12px;
    background-size: auto 6px;
    border-radius: 6px;
    bottom: 17px;
  }
}
@media screen and (min-width: 1025px) {
  .top-reborn__contents__inner__list__item__link:hover {
    transform: translateY(-5px);
    box-shadow: 5px 8px 10px rgba(51, 68, 85, 0.15);
  }
  .top-reborn__contents__inner__list__item__link:hover::before {
    background-color: #99c744;
  }
}
.top-reborn__contents__inner__list__item__link__title {
  margin: -30px auto 0;
  padding: 30px 0 0 0.16em;
  width: 100%;
  max-width: 220px;
  font-size: 2.6rem;
  line-height: 1;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-align: center;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-reborn__contents__inner__list__item__link__title {
    margin: -25px auto 0;
    padding: 25px 0 0 0.08em;
    max-width: 190px;
    font-size: 2.4rem;
    letter-spacing: 0.08em;
  }
}
@media screen and (max-width: 1300px) {
  .top-reborn__contents__inner__list__item__link__title {
    margin: -25px auto 0;
    padding: 25px 0 0 0.04em;
    max-width: 170px;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 1024px) {
  .top-reborn__contents__inner__list__item__link__title {
    margin: -20px auto 0;
    padding: 20px 0 0 0.02em;
    max-width: 150px;
    font-size: 2rem;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 900px) {
  .top-reborn__contents__inner__list__item__link__title {
    margin: -25px auto 0;
    padding: 25px 0 0 0.02em;
    width: 100%;
    max-width: 220px;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .top-reborn__contents__inner__list__item__link__title {
    margin: 15px auto 0;
    padding: 0 0 0 0.04em;
    width: 100%;
    max-width: 100%;
    font-size: 1.9rem;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 350px) {
  .top-reborn__contents__inner__list__item__link__title {
    margin: 12px auto 0;
    font-size: 1.7rem;
  }
}
.top-reborn__contents__inner__list__item__link__title.ls0 {
  padding-left: 0;
  letter-spacing: normal;
}
@media screen and (max-width: 900px) {
  .top-reborn__contents__inner__list__item__link__title {
    padding-left: 0.02em;
    letter-spacing: 0.02em;
  }
}
.top-reborn__contents__inner__list__item__link__title__en {
  margin-top: 12px;
  padding-right: 0.02em;
  font-size: 1.2rem;
  line-height: 1;
  color: #55b344;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
}
@media screen and (max-width: 1400px) {
  .top-reborn__contents__inner__list__item__link__title__en {
    margin-top: 10px;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-reborn__contents__inner__list__item__link__title__en {
    margin-top: 6px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 900px) {
  .top-reborn__contents__inner__list__item__link__title__en {
    margin-top: 10px;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 599px) {
  .top-reborn__contents__inner__list__item__link__title__en {
    margin-top: 6px;
    font-size: 1rem;
  }
}
.top-reborn__contents__inner__list__item__link__title__en::first-letter {
  color: #99c744;
}
.top-reborn__movie {
  padding: 80px;
  width: 50%;
  height: 100vh;
  background-color: #99c744;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 1400px) {
  .top-reborn__movie {
    padding: 50px;
    width: 40%;
    height: calc(100vh - 100px);
    top: 100px;
  }
}
@media screen and (max-width: 1100px) {
  .top-reborn__movie {
    padding: 80px 50px;
    width: 100%;
    height: auto;
    top: auto;
    position: relative;
  }
}
@media screen and (max-width: 599px) {
  .top-reborn__movie {
    padding: 30px;
  }
}
.top-reborn__movie__inner {
  width: 100%;
  max-width: 700px;
  position: relative;
  z-index: 2;
  max-width: 648px;
  line-height: 0.1;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .top-reborn__movie__inner {
    border-radius: 5px;
  }
}
.top-reborn__movie__inner div {
  line-height: 0.1;
}
.top-reborn__movie__slider {
  width: 9vw;
  height: 100vh;
  line-height: 0.1;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  opacity: 0.2;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .top-reborn__movie__slider {
    height: calc(100vh - 100px);
  }
}
@media screen and (max-width: 1100px) {
  .top-reborn__movie__slider {
    width: 9vw;
    height: 100%;
  }
}
.top-reborn__movie__slider div {
  line-height: 0.1;
}

.top-recruit {
  padding: 5% 6%;
  background-color: #ddeee3;
  background-image: url(../img/top/recruit_bg.webp);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 100% 50%;
  box-shadow: 0 4px 3px rgba(51, 68, 85, 0.15);
  position: relative;
}
@media screen and (max-width: 1600px) {
  .top-recruit {
    padding: 5% 4%;
  }
}
@media screen and (max-width: 1400px) {
  .top-recruit {
    padding: 0;
    background-image: none;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit {
    box-shadow: 0 3px 2px rgba(51, 68, 85, 0.2);
  }
}
.top-recruit__inner {
  padding: 55px 60px 60px;
  width: 100%;
  max-width: 480px;
  background-color: #fff;
}
@media screen and (max-width: 1500px) {
  .top-recruit__inner {
    padding: 50px;
    max-width: 450px;
  }
}
@media screen and (max-width: 1400px) {
  .top-recruit__inner {
    padding: 65px 60px 70px;
  }
}
@media screen and (max-width: 1200px) {
  .top-recruit__inner {
    padding: 50px;
    max-width: 400px;
  }
}
@media screen and (max-width: 900px) {
  .top-recruit__inner {
    padding: 50px;
    max-width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__inner {
    padding: 45px 30px 35px;
  }
}
.top-recruit__inner__title {
  margin-bottom: 20px;
  padding-bottom: 29px;
  font-size: 5.6rem;
  line-height: 1;
  color: #55b344;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  position: relative;
}
.top-recruit__inner__title::first-letter {
  color: #99c744;
}
.top-recruit__inner__title::before {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #99c744;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1300px) {
  .top-recruit__inner__title {
    margin-bottom: 15px;
    padding-bottom: 24px;
    font-size: 5rem;
  }
}
@media screen and (max-width: 1200px) {
  .top-recruit__inner__title {
    margin-bottom: 15px;
    padding-bottom: 0;
    font-size: 4.6rem;
  }
  .top-recruit__inner__title::before {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__inner__title {
    margin-bottom: 15px;
    padding-bottom: 0;
    font-size: 3.8rem;
    text-align: center;
  }
}
.top-recruit__inner__title__jp {
  margin-top: 5px;
  font-size: 1.8rem;
  line-height: 1;
  color: #55b344;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 1200px) {
  .top-recruit__inner__title__jp {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__inner__title__jp {
    font-size: 1.4rem;
  }
}
.top-recruit__inner__text {
  margin-bottom: 20px;
  font-size: 1.8rem;
  line-height: 2;
  color: #345;
  text-align: justify;
}
@media screen and (max-width: 1300px) {
  .top-recruit__inner__text {
    margin-bottom: 18px;
    font-size: 1.7rem;
    line-height: 1.9;
  }
}
@media screen and (max-width: 1200px) {
  .top-recruit__inner__text {
    margin-bottom: 15px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__inner__text {
    margin-bottom: 10px;
  }
}
.top-recruit__inner__btns {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.top-recruit__inner__btns__item {
  margin-top: 10px;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .top-recruit__inner__btns__item {
    margin-top: 5px;
  }
}
@media screen and (max-width: 900px) {
  .top-recruit__inner__btns__item {
    margin-top: 0;
    width: calc((100% - 10px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__inner__btns__item {
    margin-top: 5px;
    width: 100%;
  }
}
.top-recruit__inner__btns__item:first-child {
  margin-top: 0;
}
.top-recruit__inner__btns__item .btn-base {
  padding: 19px 74px 19px 25px;
  max-width: 100%;
}
@media screen and (max-width: 900px) {
  .top-recruit__inner__btns__item .btn-base {
    padding: 19px 64px 19px 20px;
    font-size: 1.6rem;
    letter-spacing: normal;
  }
  .top-recruit__inner__btns__item .btn-base::before {
    width: 32px;
    height: 14px;
    border-radius: 7px;
    right: 15px;
  }
  .top-recruit__inner__btns__item .btn-base::after {
    right: 27px;
  }
}
.top-recruit__photo {
  display: none;
}
@media screen and (max-width: 1400px) {
  .top-recruit__photo {
    width: calc(100% - 450px);
    display: block;
    overflow: hidden;
  }
}
@media screen and (max-width: 1200px) {
  .top-recruit__photo {
    width: calc(100% - 400px);
  }
}
@media screen and (max-width: 900px) {
  .top-recruit__photo {
    width: 100%;
  }
}
.top-recruit__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 599px) {
  .news-list {
    margin: 0 -28px;
  }
}
.news-list__item {
  margin-top: 2px;
}
.news-list__item:first-child {
  margin-top: 0;
}
.news-list__item__link {
  padding: 26px 55px 24px 30px;
  background-color: #f3f7f9;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .news-list__item__link {
    padding: 27px 55px 24px 30px;
  }
}
.news-list__item__link::before {
  content: "";
  margin: auto 0;
  width: 8px;
  height: 8px;
  border-top: 3px solid #99c744;
  border-right: 3px solid #99c744;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  transform: rotate(45deg);
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .news-list__item__link {
    padding: 28px 42px 22px 25px;
  }
  .news-list__item__link::before {
    width: 6px;
    height: 6px;
    border-top: 2px solid #99c744;
    border-right: 2px solid #99c744;
    right: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .news-list__item__link:hover {
    background-color: #e7eef3;
    transform: translateX(5px);
  }
  .news-list__item__link:hover::before {
    border-top: 3px solid #55b344;
    border-right: 3px solid #55b344;
  }
}
.news-list__item__link__date {
  padding-left: 22px;
  width: 285px;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #789;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: 0.2s;
}
.news-list__item__link__date::before {
  content: "";
  margin: auto 0;
  width: 14px;
  height: 4px;
  background-color: #99c744;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transition: 0.2s;
}
.news-list__item__link__date::after {
  content: "";
  margin: auto 0;
  width: 7px;
  height: 4px;
  background-color: #55b344;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transition: 0.2s;
}
@media screen and (max-width: 900px) {
  .news-list__item__link__date {
    margin-bottom: 10px;
    padding-left: 22px;
    width: 100%;
    font-size: 1.7rem;
    line-height: 1;
    justify-content: flex-start;
  }
  .news-list__item__link__date .news-icon {
    margin-top: -2px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 599px) {
  .news-list__item__link__date {
    margin-bottom: 7px;
    padding-left: 18px;
    font-size: 1.6rem;
  }
  .news-list__item__link__date::before {
    width: 12px;
    height: 3px;
    bottom: 2px;
  }
  .news-list__item__link__date::after {
    width: 6px;
    height: 3px;
    bottom: 2px;
  }
  .news-list__item__link__date .news-icon {
    margin-top: -3px;
    margin-left: 10px;
  }
}
.news-list__item__link__text {
  width: calc(100% - 285px - 20px);
  font-size: 1.8rem;
  line-height: 1.6;
  color: #345;
  transition: 0.2s;
}
@media screen and (max-width: 900px) {
  .news-list__item__link__text {
    width: 100%;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .news-list__item__link__text {
    font-size: 1.6rem;
  }
}

.news-detail {
  margin-bottom: 40px;
  padding: 50px;
  background-color: #f3f7f9;
}
@media screen and (max-width: 1024px) {
  .news-detail {
    margin-bottom: 35px;
    padding: 45px 45px 40px;
  }
}
@media screen and (max-width: 900px) {
  .news-detail {
    margin-bottom: 30px;
    padding: 40px 40px 37px;
  }
}
@media screen and (max-width: 599px) {
  .news-detail {
    margin-bottom: 25px;
    padding: 30px 30px 27px;
  }
}
@media screen and (max-width: 350px) {
  .news-detail {
    margin: 0 -25px 25px;
    padding: 25px;
  }
}
.news-detail__title {
  margin-top: 10px;
  font-size: 2.6rem;
  line-height: 1.77;
  color: #345;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .news-detail__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 900px) {
  .news-detail__title {
    font-size: 2.1rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 599px) {
  .news-detail__title {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

.news-btn {
  margin-top: 50px;
  padding-top: 50px;
  text-align: center;
  border-top: 1px dotted #bbb;
}
@media screen and (max-width: 1024px) {
  .news-btn {
    margin-top: 40px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 900px) {
  .news-btn {
    margin-top: 30px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .news-btn {
    margin: 30px -30px 0;
  }
}

.news-icon {
  padding-left: 0.06em;
  width: 100px;
  height: 24px;
  font-size: 1.5rem;
  line-height: 26px;
  color: #fff;
  text-align: center;
  background-color: #789;
  border-radius: 12px;
}
@media screen and (max-width: 900px) {
  .news-icon {
    width: 88px;
    height: 20px;
    font-size: 1.3rem;
    line-height: 21px;
    border-radius: 10px;
  }
}
.news-icon.important {
  padding-left: 1em;
  letter-spacing: 1em;
  background-color: #f37799;
}
.news-icon.medical {
  background-color: #e7a344;
}
.news-icon.info {
  background-color: #66c3dd;
}
.news-icon.recruit {
  background-color: #9988d7;
}

.new {
  margin-left: 0.5em;
  font-size: 0.83em;
  color: #f37799;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  display: inline-block;
}

.about-principle {
  margin: 50px 0;
  padding: 60px 40px 70px;
  background-color: #eef7f3;
  border-top: 3px solid #55b344;
  position: relative;
}
.about-principle::before {
  content: "";
  width: 50%;
  height: 3px;
  background-color: #99c744;
  position: absolute;
  top: -3px;
  left: 0;
}
@media screen and (max-width: 900px) {
  .about-principle {
    margin: 40px 0;
    padding: 43px 20px 55px;
  }
}
@media screen and (max-width: 599px) {
  .about-principle {
    margin: 30px 0;
    padding: 28px 10px 33px;
    border-top: 2px solid #55b344;
  }
  .about-principle::before {
    height: 2px;
    top: -2px;
  }
}
.about-principle__title {
  margin-bottom: 20px;
  padding-left: 0.06em;
  font-size: 2rem;
  line-height: 1.2;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .about-principle__title {
    margin-bottom: 17px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .about-principle__title {
    margin-bottom: 12px;
    font-size: 3.8vw;
  }
}
.about-principle__title__en {
  margin-top: 12px;
  font-size: 1.2rem;
  line-height: 1;
  color: #55b344;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  display: block;
}
@media screen and (max-width: 900px) {
  .about-principle__title__en {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 599px) {
  .about-principle__title__en {
    margin-top: 10px;
    font-size: 1rem;
  }
}
.about-principle__text {
  padding-left: 0.15em;
  font-size: 4rem;
  line-height: 1.3;
  color: #345;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .about-principle__text {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 599px) {
  .about-principle__text {
    padding-left: 0.02em;
    font-size: 6vw;
    letter-spacing: 0.02em;
  }
}

.about-greeting {
  width: 100%;
  height: 380px;
  background-color: #55b344;
  border-right: 10px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .about-greeting {
    height: 350px;
  }
}
@media screen and (max-width: 1024px) {
  .about-greeting {
    height: 320px;
  }
}
@media screen and (max-width: 900px) {
  .about-greeting {
    height: 290px;
  }
}
.about-greeting::before {
  content: "";
  width: 10px;
  height: 50%;
  background-color: #99c744;
  position: absolute;
  top: 0;
  right: -10px;
}
@media screen and (max-width: 599px) {
  .about-greeting {
    height: auto;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 5px solid rgba(255, 255, 255, 0.5);
  }
  .about-greeting::before {
    content: "";
    width: 50%;
    height: 5px;
    background-color: #99c744;
    position: absolute;
    top: auto;
    right: auto;
    left: 0;
    bottom: -5px;
  }
}
.about-greeting__photo {
  width: 310px;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .about-greeting__photo {
    width: 280px;
  }
}
@media screen and (max-width: 1024px) {
  .about-greeting__photo {
    width: 250px;
  }
}
@media screen and (max-width: 900px) {
  .about-greeting__photo {
    width: 220px;
  }
}
@media screen and (max-width: 599px) {
  .about-greeting__photo {
    width: 100%;
    height: auto;
  }
}
.about-greeting__photo img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-greeting__inner {
  padding-bottom: 1.5%;
  width: calc(100% - 310px - 70px);
}
@media screen and (max-width: 1400px) {
  .about-greeting__inner {
    width: calc(100% - 280px - 50px);
  }
}
@media screen and (max-width: 1024px) {
  .about-greeting__inner {
    width: calc(100% - 250px - 40px);
  }
}
@media screen and (max-width: 900px) {
  .about-greeting__inner {
    padding-bottom: 1%;
    width: calc(100% - 220px - 35px);
  }
}
@media screen and (max-width: 599px) {
  .about-greeting__inner {
    padding: 22px 30px 30px;
    width: 100%;
  }
}
@media screen and (max-width: 350px) {
  .about-greeting__inner {
    padding: 22px 25px 30px;
  }
}
.about-greeting__inner__copy {
  font-size: 3.3rem;
  line-height: 1.7;
  color: #fff;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 500px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1400px) {
  .about-greeting__inner__copy {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .about-greeting__inner__copy {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 900px) {
  .about-greeting__inner__copy {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .about-greeting__inner__copy {
    font-size: 4.8vw;
    line-height: 1.6;
  }
}
.about-greeting__inner__hospital {
  margin-top: 25px;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .about-greeting__inner__hospital {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 900px) {
  .about-greeting__inner__hospital {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .about-greeting__inner__hospital {
    margin-top: 15px;
    line-height: 1.4;
    font-weight: 500;
  }
}
.about-greeting__inner__name {
  margin-top: 10px;
  font-size: 2.6rem;
  line-height: 1.3;
  color: #fff;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .about-greeting__inner__name {
    margin-top: 7px;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 900px) {
  .about-greeting__inner__name {
    margin-top: 7px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .about-greeting__inner__name {
    margin-top: 7px;
    font-size: 4.8vw;
  }
}
.about-greeting__inner__name__position {
  margin-right: 5px;
  font-size: 1.6rem;
}
@media screen and (max-width: 900px) {
  .about-greeting__inner__name__position {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .about-greeting__inner__name__position {
    margin-right: 0;
    margin-bottom: 3px;
    display: block;
  }
}
.about-greeting__inner__name__en {
  margin-left: 5px;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 900px) {
  .about-greeting__inner__name__en {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .about-greeting__inner__name__en {
    margin-left: 3px;
    font-size: 1.3rem;
  }
}

.department__intro {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .department__intro {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 900px) {
  .department__intro {
    margin-bottom: 25px;
  }
}
.department__intro__catch {
  margin-bottom: 15px;
  font-size: 3.2rem;
  line-height: 1.6;
  color: #55b344;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .department__intro__catch {
    font-size: 3rem;
  }
}
@media screen and (max-width: 900px) {
  .department__intro__catch {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .department__intro__catch {
    font-size: 2.3rem;
    line-height: 1.4;
    text-align: justify;
    letter-spacing: 0.02em;
  }
}
.department__intro__inner {
  overflow: hidden;
}
.department__intro__img {
  margin: 10px 0 10px 35px;
  float: right;
  max-width: 300px;
}
@media screen and (max-width: 1024px) {
  .department__intro__img {
    max-width: 33%;
  }
}
@media screen and (max-width: 900px) {
  .department__intro__img {
    margin: 10px 0 10px 25px;
  }
}
@media screen and (max-width: 599px) {
  .department__intro__img {
    float: none;
    display: block;
    margin: 0 auto 15px auto;
    max-width: 100%;
  }
}
.department__intro__text {
  font-size: 1.8rem;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 900px) {
  .department__intro__text {
    font-size: 1.6rem;
    line-height: 1.9;
  }
}
.department__def-list {
  margin-bottom: 60px;
  padding: 10px 30px;
  width: 100%;
  background-color: #f7f6f3;
}
@media screen and (max-width: 1024px) {
  .department__def-list {
    padding: 5px 25px;
  }
}
@media screen and (max-width: 900px) {
  .department__def-list {
    margin-bottom: 45px;
    padding: 40px 40px 10px;
  }
}
@media screen and (max-width: 599px) {
  .department__def-list {
    margin: 0 -30px 40px;
    padding: 40px 30px 10px;
    width: auto;
  }
}
.department__def-list > div {
  padding: 20px 0;
  border-top: 1px dotted #bbb;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.department__def-list > div:first-child {
  border-top: none;
}
@media screen and (max-width: 900px) {
  .department__def-list > div {
    padding: 0;
    border: none;
  }
}
.department__def-list > div dt {
  width: 200px;
  min-height: 60px;
  background-color: #99c744;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .department__def-list > div dt {
    width: 180px;
  }
}
@media screen and (max-width: 900px) {
  .department__def-list > div dt {
    width: 100%;
    min-height: 40px;
  }
}
.department__def-list > div dt .dt-text {
  padding-left: 28px;
  height: 22px;
  font-size: 1.8rem;
  line-height: 23px;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: normal;
  background-repeat: no-repeat;
}
@media screen and (max-width: 900px) {
  .department__def-list > div dt .dt-text {
    padding-left: 25.2px;
    height: 19.8px;
    font-size: 1.7rem;
    line-height: 20.7px;
  }
}
@media screen and (max-width: 599px) {
  .department__def-list > div dt .dt-text {
    padding-left: 22.4px;
    height: 17.6px;
    font-size: 1.6rem;
    line-height: 18.4px;
  }
}
.department__def-list > div dt .dt-text.time {
  background-image: url(../img/common/icon_calendar.svg);
  background-size: 20px auto;
  background-position: 0 50%;
}
@media screen and (max-width: 900px) {
  .department__def-list > div dt .dt-text.time {
    background-size: 18px auto;
  }
}
@media screen and (max-width: 599px) {
  .department__def-list > div dt .dt-text.time {
    background-size: 16px auto;
  }
}
.department__def-list > div dt .dt-text.tel {
  background-image: url(../img/common/icon_tel.svg);
  background-size: 22px auto;
  background-position: 0 50%;
}
@media screen and (max-width: 900px) {
  .department__def-list > div dt .dt-text.tel {
    background-size: 19.8px auto;
  }
}
@media screen and (max-width: 599px) {
  .department__def-list > div dt .dt-text.tel {
    background-size: 17.6px auto;
  }
}
.department__def-list > div dd {
  padding: 10px 10px 10px 25px;
  width: calc(100% - 200px);
  font-size: 1.7rem;
  line-height: 1.7;
  color: #345;
}
@media screen and (max-width: 1024px) {
  .department__def-list > div dd {
    padding: 10px 10px 10px 20px;
    width: calc(100% - 180px);
  }
}
@media screen and (max-width: 900px) {
  .department__def-list > div dd {
    padding: 20px 0 30px;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .department__def-list > div dd {
    padding: 15px 0 25px;
    font-size: 1.6rem;
  }
}
.department__def-list > div dd a {
  color: #345 !important;
  cursor: auto;
}
.department__table {
  width: 100%;
  font-size: 1.7rem;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .department__table {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 900px) {
  .department__table {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .department__table {
    font-size: 1.5rem;
  }
}
.department__table thead th {
  padding: 5px;
  width: 15%;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: normal;
  text-align: center;
  background-color: #55b344;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .department__table thead th {
    padding: 3px;
  }
}
.department__table thead th:first-child {
  width: 10%;
}
.department__table tbody th {
  padding: 20px 10px 17px;
  background-color: #eef7f3;
  color: #345;
  font-weight: 500;
  letter-spacing: normal;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ddd;
}
@media screen and (max-width: 900px) {
  .department__table tbody th {
    padding: 15px 5px 13px;
  }
}
.department__table tbody td {
  padding: 20px 10px 17px;
  color: #345;
  text-align: center;
  line-height: 1.5;
  letter-spacing: normal;
  border: 1px solid #ddd;
}
@media screen and (max-width: 900px) {
  .department__table tbody td {
    padding: 15px 5px 13px;
  }
}
.department__table tbody td a {
  color: #339922;
}
.department__table--fixed {
  table-layout: fixed;
}

.department-doctor__block {
  margin-top: 140px;
  position: relative;
}
.department-doctor__block::before {
  content: "";
  margin: 0 auto;
  width: 50px;
  height: 10px;
  background-image: url(../img/common/border-dots.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% 50%;
  position: absolute;
  top: -75px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 900px) {
  .department-doctor__block {
    margin-top: 100px;
  }
  .department-doctor__block::before {
    top: -55px;
  }
}
@media screen and (max-width: 599px) {
  .department-doctor__block {
    margin-top: 80px;
  }
  .department-doctor__block::before {
    top: -47px;
    width: 40px;
  }
}
.department-doctor__block:first-child {
  margin: 0;
}
.department-doctor__block:first-child::before {
  display: none;
}
.department-doctor__block__name {
  margin-bottom: 25px;
  padding: 5px 0 6px 26px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .department-doctor__block__name {
    margin-bottom: 18px;
  }
}
.department-doctor__block__name::before {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #99c744;
  position: absolute;
  top: 0;
  left: 0;
}
.department-doctor__block__name::after {
  content: "";
  width: 5px;
  height: 24px;
  background-color: #55b344;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 599px) {
  .department-doctor__block__name {
    margin-bottom: 15px;
    padding: 3px 0 16px 21px;
    border-bottom: 1px dotted #bbb;
  }
  .department-doctor__block__name::before {
    width: 4px;
    height: calc(100% - 14px);
  }
  .department-doctor__block__name::after {
    width: 4px;
    height: 20px;
  }
}
.department-doctor__block__name__department {
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: 1;
  color: #789;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 900px) {
  .department-doctor__block__name__department {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .department-doctor__block__name__department {
    margin-bottom: 8px;
    font-size: 1.2rem;
  }
}
.department-doctor__block__name__name {
  font-size: 3rem;
  line-height: 1;
  color: #345;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 500;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 900px) {
  .department-doctor__block__name__name {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 599px) {
  .department-doctor__block__name__name {
    font-size: 2.6rem;
  }
}
.department-doctor__block__name__name__rubi {
  margin-left: 10px;
  font-size: 1.6rem;
  line-height: 1;
  color: #345;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  vertical-align: 40%;
  display: inline-block;
}
@media screen and (max-width: 900px) {
  .department-doctor__block__name__name__rubi {
    font-size: 1.5rem;
    vertical-align: 30%;
  }
}
@media screen and (max-width: 599px) {
  .department-doctor__block__name__name__rubi {
    margin-top: 8px;
    margin-left: 0;
    font-size: 1.3rem;
    vertical-align: 30%;
    display: block;
  }
}
.department-doctor__block__link {
  padding-left: 22px;
  width: 100px;
  height: 30px;
  font-size: 1.6rem;
  line-height: 31px;
  color: #789;
  font-weight: 700;
  background-color: #f7f6f3;
  border-radius: 15px;
  position: absolute;
  top: 15px;
  right: 0;
}
.department-doctor__block__link::before {
  content: "";
  margin: auto 0;
  width: 0;
  height: 0;
  border-width: 4px 0 4px 7px;
  border-style: solid;
  border-color: transparent transparent transparent #99c744;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 13px;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .department-doctor__block__link {
    padding-left: 17px;
    width: 80px;
    height: 26px;
    font-size: 1.4rem;
    line-height: 27px;
    position: absolute;
    top: 25px;
    right: 0;
  }
  .department-doctor__block__link::before {
    border-width: 3px 0 3px 6px;
    right: 11px;
  }
}
@media screen and (min-width: 1025px) {
  .department-doctor__block__link:hover {
    color: #fff;
    background-color: #99c744;
    transform: translateX(5px);
  }
  .department-doctor__block__link:hover::before {
    border-color: transparent transparent transparent #fff;
  }
}
.department-doctor__block__container {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media screen and (max-width: 599px) {
  .department-doctor__block__container {
    display: block;
  }
}
.department-doctor__block__container__photo {
  width: 30%;
  margin-left: 4%;
}
@media screen and (max-width: 599px) {
  .department-doctor__block__container__photo {
    margin: 25px auto 25px;
    width: 60%;
  }
}
.department-doctor__block__container__table {
  width: 100%;
  font-size: 1.7rem;
  line-height: 1.6;
  color: #345;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 1024px) {
  .department-doctor__block__container__table {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 900px) {
  .department-doctor__block__container__table {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .department-doctor__block__container__table {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 350px) {
  .department-doctor__block__container__table {
    font-size: 1.3rem;
  }
}
.department-doctor__block__container__table tr {
  border-bottom: 1px solid #ddd;
}
.department-doctor__block__container__table th {
  padding: 25px 25px;
  width: 180px;
  font-weight: 500;
  vertical-align: top;
  text-align: left;
  background-color: #eef7f3;
  position: relative;
}
.department-doctor__block__container__table th::before {
  content: "";
  width: 16px;
  height: 4px;
  background-color: #99c744;
  position: absolute;
  top: 35px;
  left: 0;
}
.department-doctor__block__container__table th::after {
  content: "";
  width: 8px;
  height: 4px;
  background-color: #55b344;
  position: absolute;
  top: 35px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .department-doctor__block__container__table th {
    width: 160px;
  }
}
@media screen and (max-width: 900px) {
  .department-doctor__block__container__table th {
    padding: 20px;
    width: 150px;
  }
  .department-doctor__block__container__table th::before {
    width: 12px;
    height: 3px;
    top: 30px;
  }
  .department-doctor__block__container__table th::after {
    width: 6px;
    height: 3px;
    top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .department-doctor__block__container__table th {
    padding: 15px 0 15px 20px;
    width: 120px;
  }
  .department-doctor__block__container__table th::before {
    top: 24px;
  }
  .department-doctor__block__container__table th::after {
    top: 24px;
  }
}
@media screen and (max-width: 350px) {
  .department-doctor__block__container__table th::before {
    top: 22px;
  }
  .department-doctor__block__container__table th::after {
    top: 22px;
  }
}
.department-doctor__block__container__table td {
  padding: 25px 25px;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .department-doctor__block__container__table td {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .department-doctor__block__container__table td {
    padding: 15px 20px;
  }
}
.department-doctor__block__def-list {
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  .department-doctor__block__def-list {
    margin-top: 25px;
  }
}
@media screen and (max-width: 599px) {
  .department-doctor__block__def-list {
    margin-top: 20px;
  }
}
.department-doctor__block__def-list dt {
  margin-left: 20px;
  padding-left: 48px;
  width: 145px;
  height: 35px;
  font-size: 1.5rem;
  line-height: 36px;
  color: #fff;
  font-weight: 700;
  background-color: #99c744;
  background-image: url(../img/common/icon_message.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: 24px 11px;
  border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 900px) {
  .department-doctor__block__def-list dt {
    margin-left: 15px;
    padding-left: 38px;
    width: 125px;
    height: 29px;
    font-size: 1.4rem;
    line-height: 31px;
    background-size: 15px auto;
    background-position: 16px 9px;
  }
}
.department-doctor__block__def-list dd {
  padding: 35px 40px;
  font-size: 1.8rem;
  line-height: 1.7;
  color: #345;
  text-align: justify;
  background-color: #f7f6f3;
}
@media screen and (max-width: 1024px) {
  .department-doctor__block__def-list dd {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 900px) {
  .department-doctor__block__def-list dd {
    padding: 28px 30px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .department-doctor__block__def-list dd {
    padding: 24px 30px;
    font-size: 1.5rem;
  }
}

.recruit-title {
  margin-bottom: 40px;
  padding: 39px 45px;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  background-color: #f7f6f3;
  position: relative;
}
@media screen and (max-width: 900px) {
  .recruit-title {
    margin-bottom: 25px;
    padding: 30px 33px;
    font-size: 2.1rem;
  }
}
.recruit-title::before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: #55b344;
  position: absolute;
  top: 0;
  left: 0;
}
.recruit-title::after {
  content: "";
  width: 4px;
  height: 50%;
  background-color: #99c744;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 599px) {
  .recruit-title {
    margin-bottom: 12px;
    padding: 20px 20px;
    font-size: 1.8rem;
  }
  .recruit-title::before {
    width: 3px;
  }
  .recruit-title::after {
    width: 3px;
  }
}

.recruit-list {
  padding: 30px;
  background-color: #eef7f3;
  border-radius: 7px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .recruit-list {
    padding: 0;
    background-color: transparent;
  }
}
.recruit-list__title {
  padding-bottom: 55px;
  width: 230px;
  min-height: 160px;
  background-color: #55b344;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .recruit-list__title {
    width: 200px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-list__title {
    margin-bottom: 10px;
    padding-bottom: 0;
    width: 100%;
    min-height: 10px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 599px) {
  .recruit-list__title {
    border-radius: 3px;
  }
}
.recruit-list__title__text {
  padding-left: 0.2em;
  font-size: 2.9rem;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .recruit-list__title__text {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 900px) {
  .recruit-list__title__text {
    padding-left: 20px;
    padding-bottom: 4px;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
@media screen and (max-width: 599px) {
  .recruit-list__title__text {
    padding-left: 20px;
    padding-bottom: 2px;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
}
.recruit-list__title__text__en {
  padding-right: 0.6em;
  margin-top: 5px;
  font-size: 1.1rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: normal;
  text-align: center;
  display: block;
}
@media screen and (max-width: 1024px) {
  .recruit-list__title__text__en {
    font-size: 1rem;
  }
}
@media screen and (max-width: 900px) {
  .recruit-list__title__text__en {
    margin-left: 5px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .recruit-list__title__text__en {
    display: none;
  }
}
.recruit-list__title__btn {
  width: 100%;
  height: 60px;
  background-color: #99c744;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 5px 5px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 900px) {
  .recruit-list__title__btn {
    width: 150px;
    height: 60px;
    border-radius: 0 5px 5px 0;
    position: relative;
    left: auto;
    bottom: auto;
  }
}
@media screen and (max-width: 599px) {
  .recruit-list__title__btn {
    width: auto;
    height: 50px;
    border-radius: 0;
    background-color: transparent;
  }
}
.recruit-list__title__btn:hover {
  background-color: #339922;
}
.recruit-list__title__btn__text {
  padding-left: 28px;
  padding-right: 0.3em;
  font-size: 1.7rem;
  line-height: 22px;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  background-image: url(../img/common/arrow_side_white.svg);
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 22px auto;
  display: inline-block;
}
@media screen and (max-width: 900px) {
  .recruit-list__title__btn__text {
    padding-left: 24px;
    padding-right: 0;
    height: 20px;
    font-size: 1.6rem;
    line-height: 19px;
    background-size: 18px auto;
  }
}
@media screen and (max-width: 599px) {
  .recruit-list__title__btn__text {
    padding-left: 20px;
    padding-right: 15px;
    height: 20px;
    font-size: 1.5rem;
    line-height: 19px;
    background-size: 16px auto;
  }
}
.recruit-list__list {
  width: calc(100% - 230px - 20px);
}
@media screen and (max-width: 1024px) {
  .recruit-list__list {
    width: calc(100% - 200px - 20px);
  }
}
@media screen and (max-width: 900px) {
  .recruit-list__list {
    width: 100%;
  }
}
.recruit-list__list__item {
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .recruit-list__list__item {
    margin-top: 5px;
  }
}
.recruit-list__list__item:first-child {
  margin-top: 0;
}
.recruit-list__list__item__link {
  padding: 19px 70px 18px 45px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #345;
  background-color: #fff;
  border-radius: 5px;
  display: block;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .recruit-list__list__item__link {
    font-size: 1.7rem;
  }
}
.recruit-list__list__item__link::before {
  content: "";
  margin: auto 0;
  width: 16px;
  height: 4px;
  background-color: #99c744;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  transition: 0.2s;
}
.recruit-list__list__item__link::after {
  content: "";
  margin: auto 0;
  width: 8px;
  height: 4px;
  background-color: #55b344;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .recruit-list__list__item__link {
    padding: 19px 55px 18px 15px;
    font-size: 1.6rem;
    line-height: 1.3;
    background-color: #f3f7f9;
    border-radius: 3px;
  }
  .recruit-list__list__item__link::before {
    display: none;
  }
  .recruit-list__list__item__link::after {
    display: none;
  }
}
.recruit-list__list__item__link .arrow {
  content: "";
  margin: auto 0;
  width: 34px;
  height: 16px;
  background-color: #99c744;
  background-image: url(../img/common/arrow_white.svg);
  background-size: auto 7px;
  background-position: 54% 50%;
  background-repeat: no-repeat;
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .recruit-list__list__item__link .arrow {
    width: 32px;
    height: 14px;
    background-size: auto 6px;
    border-radius: 7px;
    right: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .recruit-list__list__item__link:hover {
    color: #55b344;
    transform: translateX(5px);
  }
  .recruit-list__list__item__link:hover::before {
    background-color: #55b344;
  }
  .recruit-list__list__item__link:hover::after {
    background-color: #99c744;
  }
  .recruit-list__list__item__link:hover .arrow {
    background-color: #55b344;
  }
}

.sitemap-list__item {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .sitemap-list__item {
    margin-top: 30px;
  }
}
@media screen and (max-width: 900px) {
  .sitemap-list__item {
    margin-top: 25px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__item {
    margin-top: 15px;
  }
}
.sitemap-list__item:first-child {
  margin-top: 0;
}
.sitemap-list__item__link {
  padding: 27px 95px 28px 35px;
  font-size: 2rem;
  line-height: 1.3;
  color: #345;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.12em;
  background-color: #f7f6f3;
  border-radius: 5px;
  display: block;
  position: relative;
}
.sitemap-list__item__link::before {
  content: "";
  margin: auto 0;
  width: 34px;
  height: 16px;
  background-color: #99c744;
  background-image: url(../img/common/arrow_white.svg);
  background-size: auto 7px;
  background-position: 54% 50%;
  background-repeat: no-repeat;
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  .sitemap-list__item__link {
    padding: 24px 95px 25px 30px;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 900px) {
  .sitemap-list__item__link {
    padding: 21px 95px 22px 25px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__item__link {
    padding: 15px 62px 16px 20px;
    font-size: 1.6rem;
    border-radius: 3px;
  }
  .sitemap-list__item__link::before {
    width: 32px;
    height: 14px;
    background-size: auto 6px;
    border-radius: 7px;
    right: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .sitemap-list__item__link:hover {
    color: #fff;
    background-color: #99c744;
    transform: translateX(5px);
  }
  .sitemap-list__item__link:hover::before {
    background-color: #55b344;
  }
}
.sitemap-list__item__sub {
  margin-bottom: 60px;
  margin-top: 15px;
  padding-left: 35px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .sitemap-list__item__sub {
    margin-bottom: 50px;
    margin-top: 15px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 900px) {
  .sitemap-list__item__sub {
    margin-bottom: 40px;
    margin-top: 10px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__item__sub {
    margin-bottom: 30px;
    margin-top: 10px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 350px) {
  .sitemap-list__item__sub {
    margin-top: 5px;
    padding-left: 0;
  }
}
.sitemap-list__item__sub__item {
  margin-top: 17px;
  width: 33.3333333333%;
}
@media screen and (max-width: 900px) {
  .sitemap-list__item__sub__item {
    margin-top: 14px;
    width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__item__sub__item {
    margin-top: 10px;
    width: 100%;
  }
}
.sitemap-list__item__sub__item__link {
  padding-left: 30px;
  padding-right: 10px;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #345;
  background-image: url(../img/common/arrow_side.svg);
  background-repeat: no-repeat;
  background-size: 22px auto;
  background-position: 0 0;
  display: block;
}
@media screen and (max-width: 900px) {
  .sitemap-list__item__sub__item__link {
    padding-left: 28px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__item__sub__item__link {
    padding-left: 26px;
    font-size: 1.6rem;
    background-size: 19px auto;
  }
}
@media screen and (min-width: 1025px) {
  .sitemap-list__item__sub__item__link:hover {
    color: #55b344;
    background-image: url(../img/common/arrow_side_r.svg);
    transform: translateX(5px);
  }
}

/*

@import "module/_tab";


@import "page/_about";
*//*# sourceMappingURL=style.css.map */