@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap");
/* 薄グレー（背景01） */
/* 薄茶（背景02） */
/* 薄ピンク（背景03） */
/*赤*/
/* ブレイクポイント参考

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) {
  .pctb {
    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 print {
  .tb, .tbsp, .sp {
    display: none !important;
  }
  body {
    width: 1080px;
    -webkit-print-color-adjust: exact;
  }
  .header {
    position: absolute !important;
  }
  .pagetop {
    display: none !important;
  }
  /*　------- ↓その他参考例　---------
  .header {
      position: relative !important; //ヘッダー固定fixedを解除
  }
  .header .header-inner {
      width: 100% !important; //サイト幅を解除
  }
  .page-title {
      margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
      width: 100% !important; //サイト幅を解除
  }
  .breadcrumbs-list {
      width: 100% !important; //サイト幅を解除
  }
  .global-nav {
      width: 100%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
}

/*body設定*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #000;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 2.1;
  font-size: 1.5rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  /*任意でフォントサイズを指定*/
}
@media print, screen and (min-width: 1025px) {
  body {
    font-weight: 400;
  }
}
@media screen and (max-width: 599px) {
  body {
    font-size: 1.4rem;
  }
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 0;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*clearfix*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*禁則処理の追加*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/*iOSでのsubmit, buttonのデザインをリセットするCSS*/
button,
input[type=submit],
input[type=button],
input[type=search] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}
button::focus,
input[type=submit]::focus,
input[type=button]::focus,
input[type=search]::focus {
  outline-offset: -2px;
}

/* Form */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

button,
input[type=submit],
input[type=button],
input[type=radio],
input[type=checkbox],
label,
select {
  cursor: pointer;
}

/** Form Select IE 11 */
select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

/** Selection */
::-moz-selection,
::selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media print, screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

a {
  text-decoration: none;
  transition: 0.2s;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

/*マージンボトム*/
.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: 15px !important;
  }
}

.mb25 {
  margin-bottom: 25px !important;
}
@media screen and (max-width: 599px) {
  .mb25 {
    margin-bottom: 20px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mb30 {
    margin-bottom: 25px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 20px !important;
  }
}

.mb35 {
  margin-bottom: 35px !important;
}
@media screen and (max-width: 1024px) {
  .mb35 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb35 {
    margin-bottom: 25px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mb40 {
    margin-bottom: 35px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 30px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 1024px) {
  .mb50 {
    margin-bottom: 45px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 35px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 1024px) {
  .mb60 {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 40px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 1024px) {
  .mb70 {
    margin-bottom: 55px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 45px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 65px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 50px !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 1024px) {
  .mb90 {
    margin-bottom: 70px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb90 {
    margin-bottom: 60px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 1024px) {
  .mb100 {
    margin-bottom: 70px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb100 {
    margin-bottom: 60px !important;
  }
}

.mb120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 1024px) {
  .mb120 {
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb120 {
    margin-bottom: 70px !important;
  }
}

/*マージントップ*/
.mt00 {
  margin-top: 0px !important;
}
@media screen and (max-width: 599px) {
  .mt00 {
    margin-top: 0px !important;
  }
}

.mt05 {
  margin-top: 5px !important;
}
@media screen and (max-width: 599px) {
  .mt05 {
    margin-top: 5px !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 599px) {
  .mt10 {
    margin-top: 5px !important;
  }
}

.mt15 {
  margin-top: 15px !important;
}
@media screen and (max-width: 599px) {
  .mt15 {
    margin-top: 10px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 599px) {
  .mt20 {
    margin-top: 15px !important;
  }
}

.mt25 {
  margin-top: 25px !important;
}
@media screen and (max-width: 599px) {
  .mt25 {
    margin-top: 20px !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mt30 {
    margin-top: 25px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 20px !important;
  }
}

.mt35 {
  margin-top: 35px !important;
}
@media screen and (max-width: 1024px) {
  .mt35 {
    margin-top: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt35 {
    margin-top: 25px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mt40 {
    margin-top: 35px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 30px !important;
  }
}

/*ネガティブマージンボトム*/
.mb-05 {
  margin-bottom: -5px !important;
}
@media screen and (max-width: 599px) {
  .mb-05 {
    margin-bottom: -5px !important;
  }
}

.mb-10 {
  margin-bottom: -10px !important;
}
@media screen and (max-width: 599px) {
  .mb-10 {
    margin-bottom: -5px !important;
  }
}

.mb-15 {
  margin-bottom: -15px !important;
}
@media screen and (max-width: 599px) {
  .mb-15 {
    margin-bottom: -10px !important;
  }
}

.mb-20 {
  margin-bottom: -20px !important;
}
@media screen and (max-width: 599px) {
  .mb-20 {
    margin-bottom: -15px !important;
  }
}

.mb-25 {
  margin-bottom: -25px !important;
}
@media screen and (max-width: 599px) {
  .mb-25 {
    margin-bottom: -20px !important;
  }
}

.mb-30 {
  margin-bottom: -30px !important;
}
@media screen and (max-width: 1024px) {
  .mb-30 {
    margin-bottom: -25px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb-30 {
    margin-bottom: -20px !important;
  }
}

/*ネガティブマージントップ*/
.mt-05 {
  margin-top: -5px !important;
}
@media screen and (max-width: 599px) {
  .mt-05 {
    margin-top: -5px !important;
  }
}

.mt-10 {
  margin-top: -10px !important;
}
@media screen and (max-width: 599px) {
  .mt-10 {
    margin-top: -5px !important;
  }
}

.mt-15 {
  margin-top: -15px !important;
}
@media screen and (max-width: 599px) {
  .mt-15 {
    margin-top: -10px !important;
  }
}

.mt-20 {
  margin-top: -20px !important;
}
@media screen and (max-width: 599px) {
  .mt-20 {
    margin-top: -15px !important;
  }
}

.mt-25 {
  margin-top: -25px !important;
}
@media screen and (max-width: 599px) {
  .mt-25 {
    margin-top: -20px !important;
  }
}

.mt-30 {
  margin-top: -30px !important;
}
@media screen and (max-width: 1024px) {
  .mt-30 {
    margin-top: -25px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt-30 {
    margin-top: -20px !important;
  }
}

.breadcrumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 15px 20px 0;
}
@media screen and (max-width: 834px) {
  .breadcrumbs {
    padding: 12px 15px 0;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumbs {
    padding: 8px 10px 0;
  }
}
.breadcrumbs li {
  position: relative;
  color: #939393;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
}
.breadcrumbs li:not(:last-child) {
  padding-right: 30px;
}
@media screen and (max-width: 834px) {
  .breadcrumbs li:not(:last-child) {
    padding-right: 25px;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumbs li:not(:last-child) {
    padding-right: 20px;
  }
}
.breadcrumbs li:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: 12px;
  color: #352b27;
}
@media screen and (max-width: 834px) {
  .breadcrumbs li:not(:last-child)::after {
    right: 10px;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumbs li:not(:last-child)::after {
    right: 8px;
  }
}
.breadcrumbs li a {
  color: #352b27;
  text-decoration: none;
}
.breadcrumbs li a:hover {
  text-decoration: underline;
}

.base-btn {
  position: relative;
  display: block;
  color: #222222;
  font-weight: 500;
  line-height: 1.15;
  border: 1px solid #bdcbd1;
  border-radius: 3px;
  padding: 25px 50px 25px 30px;
}
@media screen and (max-width: 834px) {
  .base-btn {
    padding: 20px 40px 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .base-btn {
    padding: 20px 34px 20px 15px;
  }
}
.base-btn::before {
  position: absolute;
  content: "";
  top: calc((100% - 24px) / 2);
  right: 20px;
  width: 24px;
  height: 24px;
  background-color: #352b27;
  border-radius: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .base-btn::before {
    top: calc((100% - 21px) / 2);
    right: 15px;
    width: 21px;
    height: 21px;
  }
}
@media screen and (max-width: 599px) {
  .base-btn::before {
    top: calc((100% - 18px) / 2);
    right: 10px;
    width: 18px;
    height: 18px;
  }
}
.base-btn::after {
  position: absolute;
  content: "";
  top: calc((100% - 8px) / 2);
  right: 30px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 834px) {
  .base-btn::after {
    top: calc((100% - 7px) / 2);
    right: 23px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 599px) {
  .base-btn::after {
    top: calc((100% - 6px) / 2);
    right: 17px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media print, screen and (min-width: 1025px) {
  .base-btn:hover {
    background-color: #ddd6d1;
  }
}

.btn-file {
  position: relative;
  display: block;
  color: #222222;
  font-weight: 500;
  line-height: 1.15;
  background-position: left 18px center;
  background-repeat: no-repeat;
  background-size: 28px auto;
  border: 1px solid #bdcbd1;
  border-radius: 3px;
  padding: 25px 30px 25px 60px;
}
@media screen and (max-width: 834px) {
  .btn-file {
    background-position: left 13px center;
    background-size: 21px auto;
    padding: 20px 30px 20px 50px;
  }
}
.btn-file::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto 0;
  width: 9px;
  height: 9px;
  border-top: 2px solid #757575;
  border-right: 2px solid #757575;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.3s;
}
.btn-file--pdf {
  background-image: url(../img/common/icon_pdf.svg);
}
.btn-file--word {
  background-image: url(../img/common/icon_word.svg);
}
.btn-file--excel {
  background-image: url(../img/common/icon_excel.svg);
}
@media print, screen and (min-width: 1025px) {
  .btn-file:hover {
    background-color: #ddd6d1;
  }
}

.entry-index-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 100%;
  min-height: 130px;
  color: #222222;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.15;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #bdcbd1;
  border-radius: 3px;
  padding: 15px 15px 15px 25px;
  box-sizing: border-box;
  overflow: hidden;
}
@media print, screen and (max-width: 1200px) {
  .entry-index-btn {
    min-height: 110px;
    font-size: 1.7rem;
    padding: 10px 10px 10px 20px;
  }
}
@media screen and (max-width: 599px) {
  .entry-index-btn {
    min-height: 80px;
    font-size: 1.5rem;
    padding: 10px 10px 10px 15px;
  }
}
.entry-index-btn::after {
  position: absolute;
  content: "";
  top: -108px;
  left: -82px;
  width: 216px;
  height: 216px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#daf0fb+0,eff8fc+100 */
  background: linear-gradient(to right, #daf0fb 0%, #eff8fc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .entry-index-btn::after {
    top: -91px;
    left: -69px;
    width: 182px;
    height: 182px;
  }
}
@media screen and (max-width: 599px) {
  .entry-index-btn::after {
    top: -66px;
    left: -50px;
    width: 132px;
    height: 132px;
  }
}
.entry-index-btn__arw {
  position: relative;
  display: inline-block;
  background-image: url(../img/common/arrow03.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 50px auto;
  padding: 3px 0 3px 65px;
  z-index: 2;
}
@media print, screen and (max-width: 1200px) {
  .entry-index-btn__arw {
    background-size: 45px auto;
    padding: 3px 0 3px 60px;
  }
}
@media screen and (max-width: 599px) {
  .entry-index-btn__arw {
    background-size: 40px auto;
    padding: 3px 0 3px 55px;
  }
}
@media print, screen and (min-width: 1025px) {
  .entry-index-btn:hover {
    color: #352b27;
  }
  .entry-index-btn:hover::after {
    width: 648px;
    height: 648px;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
}

.btn-wrapper .icon-link {
  margin-right: 1.2em;
}
.btn-wrapper .icon-link:last-child {
  margin-right: 0;
}

.icon-link {
  position: relative;
  display: inline-block;
  color: #222222;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none !important;
  background-color: #ffffff;
  border: 1px solid #282828;
  border-radius: 56px;
  padding: 15px 50px 15px 40px;
  margin-bottom: 7px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .icon-link {
    padding: 15px 45px 15px 35px;
  }
}
.icon-link::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 15px;
  top: calc((100% - 6px) / 2);
  width: 6px;
  height: 6px;
  border-top: 1px solid #352b27;
  border-right: 1px solid #352b27;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media print, screen and (min-width: 1025px) {
  .icon-link:hover {
    background-color: #ddd6d1;
  }
}
.icon-link--back {
  color: #ffffff;
  background-color: #352b27 !important;
  padding: 15px 40px 15px 50px;
}
@media screen and (max-width: 834px) {
  .icon-link--back {
    padding: 15px 35px 15px 45px;
  }
}
.icon-link--back::before {
  right: auto;
  left: 15px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@media print, screen and (min-width: 1025px) {
  .icon-link--back:hover {
    transform: translateY(3px);
  }
}

.col-btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .col-btn-wrapper {
    gap: 10px;
    margin-bottom: 10px;
  }
}
.col-btn-wrapper__btn {
  display: flex;
  align-items: center;
  width: 100%;
}
.col-btn-wrapper.column2 .col-btn-wrapper__btn {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 1024px) {
  .col-btn-wrapper.column2 .col-btn-wrapper__btn {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 834px) {
  .col-btn-wrapper.column2 .col-btn-wrapper__btn {
    width: 100%;
  }
}
.col-btn-wrapper.column3 .col-btn-wrapper__btn {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 1024px) {
  .col-btn-wrapper.column3 .col-btn-wrapper__btn {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 834px) {
  .col-btn-wrapper.column3 .col-btn-wrapper__btn {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .col-btn-wrapper.column3 .col-btn-wrapper__btn {
    width: 100%;
  }
}

.btn-prev {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 140px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  background-color: #bbb;
  border-radius: 100px;
  padding: 16px 25px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .btn-prev {
    position: relative;
    padding: 13px 20px;
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 599px) {
  .btn-prev {
    margin: 20px auto 0;
  }
}
.btn-prev::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@media print, screen and (min-width: 1025px) {
  .btn-prev:hover:hover {
    opacity: 0.8;
  }
}

.footer {
  background-color: #282828;
  padding: 140px 30px 130px;
}
@media screen and (max-width: 834px) {
  .footer {
    padding: 105px 30px 95px;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    padding: 70px 20px 60px;
  }
}

.footer-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1500px;
  margin: 0 auto 70px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 834px) {
  .footer-inner {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .footer-inner {
    margin-bottom: 40px;
  }
}

.footer-prof {
  width: 424px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media print, screen and (max-width: 1400px) {
  .footer-prof {
    width: 384px;
  }
}
@media print, screen and (max-width: 1200px) {
  .footer-prof {
    width: 344px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-prof {
    width: 304px;
  }
}
@media screen and (max-width: 834px) {
  .footer-prof {
    width: 100%;
    text-align: center;
  }
}
.footer-prof__logo {
  display: block;
  width: 160px;
  margin-bottom: 45px;
}
@media screen and (max-width: 834px) {
  .footer-prof__logo {
    width: 140px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 599px) {
  .footer-prof__logo {
    width: 120px;
    margin-bottom: 40px;
  }
}
.footer-prof__logo img {
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .footer-prof__logo:hover {
    transform: translateY(-3px);
  }
}
.footer-prof__add {
  color: #ffffff;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  letter-spacing: 0.15em;
  line-height: 1.5;
  margin-bottom: 20px;
}
.footer-prof__num {
  color: #ffffff;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  letter-spacing: 0.15em;
  line-height: 1.5;
}
.footer-prof__num__tel {
  color: #ffffff;
}

.footer-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(99.9% - 424px);
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media print, screen and (max-width: 1400px) {
  .footer-menu {
    width: calc(99.9% - 384px);
  }
}
@media print, screen and (max-width: 1200px) {
  .footer-menu {
    width: calc(99.9% - 344px);
  }
}
@media screen and (max-width: 1024px) {
  .footer-menu {
    width: calc(99.9% - 304px);
  }
}
@media screen and (max-width: 834px) {
  .footer-menu {
    display: none;
  }
}
.footer-menu__nav {
  width: calc((99.9% - 60px) / 4);
  margin-right: 20px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.footer-menu__nav:nth-child(4) {
  margin-right: 0;
}
.footer-menu__nav__list > li {
  font-size: 0;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 1200px) {
  .footer-menu__nav__list > li {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-menu__nav__list > li {
    margin-bottom: 20px;
  }
}
.footer-menu__nav__list > li:last-child {
  margin-bottom: 0;
}
.footer-menu__nav__list > li > a {
  color: #ffffff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1.15;
  letter-spacing: 0.035em;
}
@media print, screen and (max-width: 1200px) {
  .footer-menu__nav__list > li > a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-menu__nav__list > li > a {
    font-size: 1.4rem;
  }
}
.footer-menu__nav__list > li > a[target^=_blank] {
  background-image: url(../img/common/icon_target.svg);
  background-position: right top 7px;
  background-repeat: no-repeat;
  background-size: 16px auto;
  padding-right: 24px;
}
@media print, screen and (min-width: 1025px) {
  .footer-menu__nav__list > li > a:hover {
    text-decoration: underline;
  }
}

.footer-copyright {
  max-width: 1500px;
  color: #a4a4a4;
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  letter-spacing: 0.035em;
  line-height: 1;
  text-align: center;
  border-top: 1px solid rgba(233, 233, 233, 0.1);
  padding-top: 50px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .footer-copyright {
    margin-top: 37px;
  }
}
@media screen and (max-width: 599px) {
  .footer-copyright {
    font-size: 0.9rem;
    padding-top: 25px;
  }
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 60px;
  width: 50px;
  height: 50px;
  z-index: 50;
}
@media screen and (max-width: 599px) {
  .pagetop {
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
.pagetop button {
  background-color: inherit;
  padding: 0;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .pagetop button:hover {
    transform: translateY(3px);
  }
}

/*ヘッダー*/
.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 834px) {
  .header {
    height: 85px;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 70px;
  }
}
.header__logo {
  width: 400px;
  line-height: 0.1;
  margin-left: 15px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 160px;
  }
}
@media screen and (max-width: 834px) {
  .header__logo {
    width: 140px;
  }
}
@media screen and (max-width: 599px) {
  .header__logo {
    width: 120px;
  }
}
.header__logo__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__logo__link__img {
  width: 160px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 834px) {
  .header__logo__link__img {
    width: 140px;
  }
}
@media screen and (max-width: 599px) {
  .header__logo__link__img {
    width: 120px;
  }
}
.header__logo__link__img img {
  width: 100%;
}
.header__logo__link__txt {
  width: calc(99.9% - 160px - 35px);
  color: #ffffff;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: normal;
  line-height: 1.35;
  border-left: 1px solid #ffffff;
  padding: 9px 0 11px 35px;
  margin-left: 35px;
}
@media screen and (max-width: 1024px) {
  .header__logo__link__txt {
    display: none;
  }
}
@media print, screen and (min-width: 1025px) {
  .header__logo__link:hover {
    transform: translateY(-3px);
  }
}
.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: 40px;
}
@media print, screen and (max-width: 1200px) {
  .header__nav {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav__item {
  margin-left: 35px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .header__nav__item {
    margin-left: 25px;
  }
}
.header__nav__item:last-child {
  margin-left: 45px;
}
@media print, screen and (max-width: 1200px) {
  .header__nav__item:last-child {
    margin-left: 35px;
  }
}
.header__nav__item__link {
  display: block;
  position: relative;
  color: #ffffff;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 25px;
}
@media print, screen and (max-width: 1200px) {
  .header__nav__item__link {
    font-size: 1.4rem;
  }
}
.header__nav__item__link::before {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .header__nav__item__link:hover::before {
    width: 100%;
  }
}
.header__nav__item__link.now::before {
  width: 100%;
}
.header__nav__item .contact {
  display: block;
  color: #ffffff;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  border: 1px solid #ffffff;
  border-radius: 3px;
  background-image: url(../img/common/icon_target.svg);
  background-position: right 14px center;
  background-repeat: no-repeat;
  background-size: 17px auto;
  padding: 8px 38px 8px 25px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .header__nav__item .contact {
    font-size: 1.2rem;
    background-position: right 14px center;
    background-size: 15px auto;
    padding: 8px 38px 8px 25px;
  }
}
@media print, screen and (min-width: 1025px) {
  .header__nav__item .contact:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
}
.header .header-menu {
  display: none;
  width: 100px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header .header-menu {
    display: block;
  }
}
@media screen and (max-width: 834px) {
  .header .header-menu {
    width: 85px;
  }
}
@media screen and (max-width: 599px) {
  .header .header-menu {
    width: 70px;
  }
}
.header .header-menu__btn {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.header .header-menu__btn.on::before {
  width: 100vw;
}
.header .header-menu__btn.on .bar::before {
  width: 0;
}
.header .header-menu__btn.on .bar::after {
  width: 0;
}
.header .header-menu__btn .bar {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  width: 42.8%;
  height: 1px;
  background-color: #fff;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .header .header-menu__btn .bar {
    top: 41px;
  }
}
@media screen and (max-width: 599px) {
  .header .header-menu__btn .bar {
    top: 34px;
  }
}
.header .header-menu__btn .bar::before {
  position: absolute;
  content: "";
  left: 0;
  top: -12px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 834px) {
  .header .header-menu__btn .bar::before {
    top: -11px;
  }
}
@media screen and (max-width: 599px) {
  .header .header-menu__btn .bar::before {
    top: -10px;
  }
}
.header .header-menu__btn .bar::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -12px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 834px) {
  .header .header-menu__btn .bar::after {
    bottom: -11px;
  }
}
@media screen and (max-width: 599px) {
  .header .header-menu__btn .bar::after {
    bottom: -10px;
  }
}
.header--none {
  background-color: transparent;
  backdrop-filter: blur(0);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

body.open {
  height: 100%;
  overflow: hidden;
}
body.open .header--none {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
}

.menu-box {
  width: 0;
  height: calc(100vh - 100px);
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  overflow: scroll;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .menu-box {
    top: 85px;
    height: calc(100vh - 85px);
  }
}
@media screen and (max-width: 599px) {
  .menu-box {
    top: 70px;
    height: calc(100vh - 70px);
  }
}
.menu-box.on {
  width: 100%;
}
.menu-box__inner {
  max-width: 600px;
  padding: 50px 30px 100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 599px) {
  .menu-box__inner {
    padding: 30px 20px 100px;
  }
}
.menu-box__inner__list__item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  /*アコーディオン*/
}
.menu-box__inner__list__item__link {
  position: relative;
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  padding: 22px 34px 22px 0;
}
.menu-box__inner__list__item__link::before {
  position: absolute;
  content: "";
  top: calc((100% - 10px) / 2);
  right: 8px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.menu-box__inner__list__item__link--acc {
  margin-right: 40px;
}
.menu-box__inner__list__item__link--acc::before {
  display: none;
}
.menu-box__inner__list__item__accordion {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 40px;
  height: 64px;
  background-color: inherit;
}
.menu-box__inner__list__item__accordion::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 3px;
  width: 17px;
  height: 1px;
  background-color: #ffffff;
  margin-top: -1px;
  margin-left: -9px;
}
.menu-box__inner__list__item__accordion::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 11px;
  width: 1px;
  height: 17px;
  background-color: #ffffff;
  margin-top: -9px;
  margin-left: -1px;
}
.menu-box__inner__list__item__accordion[aria-expanded=true]::after {
  content: none;
}
.menu-box__inner__list__item__sub-list {
  display: none;
}
.menu-box__inner__list__item__sub-list__item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.menu-box__inner__list__item__sub-list__item__link {
  position: relative;
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  padding: 22px 0 22px 46px;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__list__item__sub-list__item__link {
    padding: 22px 0 22px 36px;
  }
}
.menu-box__inner__list__item__sub-list__item__link::before {
  position: absolute;
  content: "";
  top: calc((100% - 10px) / 2);
  left: 19px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__list__item__sub-list__item__link::before {
    left: 14px;
  }
}
.menu-box__inner__btn-box {
  margin-top: 50px;
}
.menu-box__inner__btn-box .contact {
  display: block;
  color: #ffffff;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  background-image: url(../img/common/icon_target.svg);
  background-position: right 14px center;
  background-repeat: no-repeat;
  background-size: 17px auto;
  padding: 22px 35px 22px 15px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__btn-box .contact {
    padding: 20px 35px 20px 15px;
  }
}
.menu-box__inner__other-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  gap: 0 20px;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__other-list {
    margin-top: 30px;
    gap: 0 10px;
  }
}
.menu-box__inner__other-list__item__link {
  position: relative;
  display: block;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: underline;
  padding-left: 22px;
}
.menu-box__inner__other-list__item__link::before {
  position: absolute;
  content: "";
  top: calc((100% - 10px) / 2);
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.contents-wrapper {
  width: 100%;
  padding: 80px 30px 130px;
  word-break: break-all;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .contents-wrapper {
    padding: 60px 30px 95px;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrapper {
    padding: 40px 20px 60px;
  }
}

.contents-main__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.entry-index-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 600px) {
  .entry-index-nav__list > li {
    width: 32.2333333333%;
    margin-right: 1.6%;
  }
  .entry-index-nav__list > li:nth-child(n+4) {
    margin-top: 1.6%;
  }
  .entry-index-nav__list > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media print, screen and (min-width: 600px) and (max-width: 1200px) {
  .entry-index-nav__list > li {
    width: 49.15%;
  }
  .entry-index-nav__list > li:nth-child(n+3) {
    margin-top: 1.6%;
  }
  .entry-index-nav__list > li:nth-child(3n) {
    margin-right: 1.6%;
  }
  .entry-index-nav__list > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .entry-index-nav__list > li {
    width: 100%;
    margin-top: 10px;
  }
  .entry-index-nav__list > li:nth-child(1) {
    margin-top: 0;
  }
}

/* タグ※はきだしソースまま */
.entry-footer {
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .entry-footer {
    margin-top: 30px;
  }
}

.entry-tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.entry-tag-icon {
  color: #707070;
  font-weight: bold;
  line-height: 1.35;
  margin-top: 5px;
}

.entry-tag-item {
  line-height: 1;
  border: 1px solid #cccccc;
  border-radius: 3px;
  margin: 5px 0 0 10px;
}
.entry-tag-item > a {
  display: inline-block;
  color: #707070 !important;
  font-size: 1.4rem;
  padding: 2px 5px 3px;
}
.entry-tag-item > a:hover {
  color: #ffffff !important;
  background-color: #352b27;
}

.tag-select-wrap__table {
  margin-bottom: 0;
}
.tag-select-wrap__table th {
  font-weight: bold !important;
}
.tag-select-wrap__table td {
  font-weight: bold !important;
}
.tag-select-wrap__table td > a {
  display: inline-block;
  color: #000000;
  font-weight: bold;
  text-decoration: underline;
}
@media print, screen and (min-width: 1025px) {
  .tag-select-wrap__table td > a:hover {
    text-decoration: none;
  }
}
.tag-select-wrap #nextTagTitle > a {
  display: inline-block;
  color: #000000;
  text-decoration: underline;
}
@media print, screen and (min-width: 1025px) {
  .tag-select-wrap #nextTagTitle > a:hover {
    text-decoration: none;
  }
}

.tag-wrap__notfound {
  padding: 30px 5px 0;
}
@media screen and (max-width: 834px) {
  .tag-wrap__notfound {
    padding: 25px 5px 0;
  }
}
@media screen and (max-width: 599px) {
  .tag-wrap__notfound {
    padding: 20px 5px 0;
  }
}
.tag-wrap__list {
  border-top: 1px solid #e9e9e9;
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .tag-wrap__list {
    margin-top: 15px;
  }
}
.tag-wrap__list__item {
  word-break: break-all;
  border-bottom: 1px solid #e9e9e9;
}
.tag-wrap__list__item > a {
  position: relative;
  display: block;
  color: #222;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  padding: 22px 0 22px 44px;
}
@media screen and (max-width: 1024px) {
  .tag-wrap__list__item > a {
    padding: 22px 0 22px 40px;
  }
}
@media screen and (max-width: 834px) {
  .tag-wrap__list__item > a {
    padding: 20px 0 20px 36px;
  }
}
@media screen and (max-width: 599px) {
  .tag-wrap__list__item > a {
    padding: 18px 0 18px 31px;
  }
}
.tag-wrap__list__item > a::before {
  position: absolute;
  content: "";
  top: calc((100% - 24px) / 2);
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #352b27;
  border-radius: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .tag-wrap__list__item > a::before {
    top: calc((100% - 21px) / 2);
    width: 21px;
    height: 21px;
  }
}
@media screen and (max-width: 599px) {
  .tag-wrap__list__item > a::before {
    top: calc((100% - 18px) / 2);
    width: 18px;
    height: 18px;
  }
}
.tag-wrap__list__item > a::after {
  position: absolute;
  content: "";
  top: calc((100% - 8px) / 2);
  left: 7px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 834px) {
  .tag-wrap__list__item > a::after {
    top: calc((100% - 7px) / 2);
    left: 6px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 599px) {
  .tag-wrap__list__item > a::after {
    top: calc((100% - 6px) / 2);
    width: 5px;
    height: 5px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media print, screen and (min-width: 1025px) {
  .tag-wrap__list__item > a:hover {
    opacity: 0.8;
    transform: translateX(2px);
  }
}
.tag-wrap__list__item__title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .tag-wrap__list__item__title {
    font-size: 1.6rem;
  }
}
.tag-wrap__list__item__text {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-top: 5px;
}
@media screen and (max-width: 599px) {
  .tag-wrap__list__item__text {
    font-size: 1.3rem;
    margin-top: 3px;
  }
}

.news-icon {
  display: inline-block;
  width: 90px;
  color: #9c9c9c;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #cecece;
  border-radius: 30px;
  padding: 3px 5px 4px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .news-icon {
    width: 86px;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 599px) {
  .news-icon {
    width: 70px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 320px) {
  .news-icon {
    width: 64px;
  }
}

.entry-new {
  color: #eb3939;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1;
  margin-left: 1em;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .entry-new {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .entry-new {
    font-size: 1.1rem;
    margin-left: 0.8em;
  }
}

.not-found-box {
  text-align: center;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.not-found-box__title {
  font-size: 3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .not-found-box__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .not-found-box__title {
    font-size: 2rem;
  }
}
.not-found-box__text {
  margin-top: 10px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .not-found-box__text {
    font-size: 1.4rem;
    margin-top: 12px;
  }
}
@media screen and (max-width: 599px) {
  .not-found-box__text {
    font-size: 1.3rem;
    margin-top: 15px;
  }
}
.not-found-box__btn-box {
  margin-top: 100px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .not-found-box__btn-box {
    margin-top: 70px;
  }
}
@media screen and (max-width: 599px) {
  .not-found-box__btn-box {
    margin-top: 40px;
  }
}
.not-found-box__btn-box__btn {
  max-width: 270px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.map-col-100pct {
  width: 100%;
}

.map-col-75pct {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 834px) {
  .map-col-75pct {
    width: 100%;
  }
}

.map-col-50pct {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 834px) {
  .map-col-50pct {
    width: 100%;
  }
}

.map-size-variable {
  width: 100% !important;
  height: 430px !important;
}
@media print, screen and (max-width: 1300px) {
  .map-size-variable {
    height: 387px !important;
  }
}
@media print, screen and (max-width: 1200px) {
  .map-size-variable {
    height: 344px !important;
  }
}
@media screen and (max-width: 1024px) {
  .map-size-variable {
    height: 301px !important;
  }
}
@media screen and (max-width: 320px) {
  .map-size-variable {
    height: 258px !important;
  }
}

.video-col-100pct {
  max-width: 100%;
}

.video-col-75pct {
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 599px) {
  .video-col-75pct {
    max-width: 100%;
  }
}

.video-col-50pct {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 599px) {
  .video-col-50pct {
    max-width: 100%;
  }
}

.pagetitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  height: 460px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    height: 400px;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle {
    height: 340px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    height: 280px;
  }
}
.pagetitle__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  padding-top: 65px;
  word-break: break-all;
  z-index: 1;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .pagetitle__title {
    padding-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title {
    padding-top: 50px;
  }
}
.pagetitle__title__en {
  font-size: 8.5rem;
  font-family: "Hind", sans-serif;
  font-weight: 600;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .pagetitle__title__en {
    font-size: 7.65rem;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle__title__en {
    font-size: 5.95rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title__en {
    font-size: 4.25rem;
  }
}
.pagetitle__title__jp {
  font-size: 2.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-top: 8px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .pagetitle__title__jp {
    font-size: 1.98rem;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle__title__jp {
    font-size: 1.54rem;
    margin-top: 6px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title__jp {
    font-size: 1.1rem;
    margin-top: 3px;
  }
}
.pagetitle__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pagetitle__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*--------------------------------------------------------
pagination
----------------------------------------------------------*/
.pagination {
  margin-top: 60px;
}
@media screen and (max-width: 599px) {
  .pagination {
    margin-top: 40px;
  }
}
.pagination__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.pagination__list > li.now .pagination__link {
  color: #fff;
  background-color: #352b27;
}
.pagination__link {
  display: block;
  width: 40px;
  height: 40px;
  color: #000000;
  font-size: 1.7rem;
  font-family: "Hind", sans-serif;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
  background-color: #d5ccc5;
  border-radius: 50%;
  padding-top: 2px;
  margin-right: 5px;
  margin-left: 5px;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .pagination__link {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
    line-height: 35px;
  }
}
@media screen and (max-width: 599px) {
  .pagination__link {
    width: 30px;
    height: 30px;
    font-size: 1.3rem;
    line-height: 30px;
    margin-right: 3px;
    margin-left: 3px;
  }
}
@media print, screen and (min-width: 1025px) {
  .pagination__link:hover {
    color: #fff;
    background-color: #352b27;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
}
.pagination__prev, .pagination__next {
  display: block;
  position: relative;
  color: #352b27;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: bold;
  line-height: 40px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .pagination__prev, .pagination__next {
    line-height: 30px;
  }
}
@media print, screen and (min-width: 1025px) {
  .pagination__prev:hover, .pagination__next:hover {
    text-decoration: underline;
  }
}
.pagination__prev {
  margin-right: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .pagination__prev {
    margin-right: 10px;
  }
}
.pagination__next {
  margin-left: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .pagination__next {
    margin-left: 10px;
  }
}

.entry-container {
  margin-right: 0;
  margin-left: 0;
}

.table {
  width: 100%;
  border: 1px solid #bdcbd1;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.table .acms-cell-text-center {
  text-align: center;
}
.table .acms-cell-text-left {
  text-align: left;
}
.table .acms-cell-text-right {
  text-align: right;
}
.table.fixed {
  table-layout: fixed;
}
.table th.wd20, .table td.wd20 {
  width: 20%;
}
.table th.wd30, .table td.wd30 {
  width: 30%;
}
.table th {
  color: #fff;
  font-weight: normal;
  line-height: 1.3;
  vertical-align: middle;
  background-color: #352b27;
  border: 1px solid #bdcbd1;
  padding: 13px 10px;
}
@media screen and (max-width: 599px) {
  .table th {
    padding: 7px 7px 7px;
  }
}
.table td {
  color: #222222;
  font-weight: normal;
  line-height: 1.5;
  vertical-align: middle;
  border: 1px solid #bdcbd1;
  padding: 15px 10px;
  word-break: break-all;
}
@media screen and (max-width: 599px) {
  .table td {
    padding: 10px;
  }
}
.table td.bg01 {
  background-color: #f4f4f4;
}
@media screen and (max-width: 599px) {
  .table.sp-100 {
    display: block;
    width: 100%;
  }
  .table.sp-100 tbody {
    display: block;
    width: 100%;
  }
  .table.sp-100 tr {
    display: block;
    width: 100%;
  }
  .table.sp-100 th {
    display: block;
    width: 100%;
    border: none;
  }
  .table.sp-100 td {
    display: block;
    width: 100%;
    border: none;
    padding: 10px;
  }
}

.table02 {
  width: 100%;
  border-top: 1px solid #d8d3d3;
  border-collapse: collapse;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.table02 th, .table02 td {
  color: #282828;
  font-weight: 500;
  border-bottom: 1px solid #d8d3d3;
  padding: 16px 40px;
  word-break: break-all;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .table02 th, .table02 td {
    padding: 16px 30px;
  }
}
@media screen and (max-width: 834px) {
  .table02 th, .table02 td {
    padding: 13px 20px;
  }
}
@media screen and (max-width: 599px) {
  .table02 th, .table02 td {
    padding: 10px 10px;
  }
}
.table02 th {
  width: 27.3%;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
  background-color: #f4f4f4;
}
@media screen and (max-width: 599px) {
  .table02 th {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 320px) {
  .table02 th {
    font-size: 1.4rem;
  }
}
.table02 td {
  line-height: 1.5;
}

.js-table-unit-scroll-hint {
  width: 100%;
  border: 1px solid #bdcbd1;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.js-table-unit-scroll-hint .acms-cell-text-center {
  text-align: center;
}
.js-table-unit-scroll-hint .acms-cell-text-left {
  text-align: left;
}
.js-table-unit-scroll-hint .acms-cell-text-right {
  text-align: right;
}
.js-table-unit-scroll-hint.fixed {
  table-layout: fixed;
}
.js-table-unit-scroll-hint th.wd20, .js-table-unit-scroll-hint td.wd20 {
  width: 20%;
}
.js-table-unit-scroll-hint th.wd30, .js-table-unit-scroll-hint td.wd30 {
  width: 30%;
}
.js-table-unit-scroll-hint th {
  color: #fff;
  font-weight: normal;
  line-height: 1.3;
  vertical-align: middle;
  background-color: #352b27;
  border: 1px solid #bdcbd1;
  padding: 13px 10px;
}
@media screen and (max-width: 599px) {
  .js-table-unit-scroll-hint th {
    padding: 7px 7px 7px;
  }
}
.js-table-unit-scroll-hint td {
  color: #222222;
  font-weight: normal;
  line-height: 1.5;
  vertical-align: middle;
  border: 1px solid #bdcbd1;
  padding: 15px 10px;
  word-break: break-all;
}
@media screen and (max-width: 599px) {
  .js-table-unit-scroll-hint td {
    padding: 10px;
  }
}
.js-table-unit-scroll-hint td.bg01 {
  background-color: #f4f4f4;
}
@media screen and (max-width: 599px) {
  .js-table-unit-scroll-hint.sp-100 {
    display: block;
    width: 100%;
  }
  .js-table-unit-scroll-hint.sp-100 tbody {
    display: block;
    width: 100%;
  }
  .js-table-unit-scroll-hint.sp-100 tr {
    display: block;
    width: 100%;
  }
  .js-table-unit-scroll-hint.sp-100 th {
    display: block;
    width: 100%;
    border: none;
  }
  .js-table-unit-scroll-hint.sp-100 td {
    display: block;
    width: 100%;
    border: none;
    padding: 10px;
  }
}

.acms-table-scrollable {
  width: 100%;
  border: 1px solid #bdcbd1;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.acms-table-scrollable .acms-cell-text-center {
  text-align: center;
}
.acms-table-scrollable .acms-cell-text-left {
  text-align: left;
}
.acms-table-scrollable .acms-cell-text-right {
  text-align: right;
}
.acms-table-scrollable.fixed {
  table-layout: fixed;
}
.acms-table-scrollable th, .acms-table-scrollable td {
  white-space: normal;
}
.acms-table-scrollable th.wd20, .acms-table-scrollable td.wd20 {
  width: 20%;
}
.acms-table-scrollable th.wd30, .acms-table-scrollable td.wd30 {
  width: 30%;
}
.acms-table-scrollable th {
  color: #fff;
  font-weight: normal;
  line-height: 1.3;
  vertical-align: middle;
  background-color: #352b27;
  border: 1px solid #bdcbd1;
  padding: 13px 10px;
}
@media screen and (max-width: 599px) {
  .acms-table-scrollable th {
    padding: 7px 7px 7px;
  }
}
.acms-table-scrollable td {
  color: #222222;
  font-weight: normal;
  line-height: 1.5;
  vertical-align: middle;
  border: 1px solid #bdcbd1;
  padding: 15px 10px;
  word-break: break-all;
}
@media screen and (max-width: 599px) {
  .acms-table-scrollable td {
    padding: 10px;
  }
}
.acms-table-scrollable td.bg01 {
  background-color: #f4f4f4;
}
@media screen and (max-width: 599px) {
  .acms-table-scrollable.sp-100 {
    display: block;
    width: 100%;
  }
  .acms-table-scrollable.sp-100 tbody {
    display: block;
    width: 100%;
  }
  .acms-table-scrollable.sp-100 tr {
    display: block;
    width: 100%;
  }
  .acms-table-scrollable.sp-100 th {
    display: block;
    width: 100%;
    border: none;
  }
  .acms-table-scrollable.sp-100 td {
    display: block;
    width: 100%;
    border: none;
    padding: 10px;
  }
}

.scroll-hint-icon {
  top: calc(50% - 42px) !important;
  height: 84px !important;
  padding: 15px 10px 5px 10px !important;
}
.scroll-hint-icon .scroll-hint-text {
  margin-top: 0 !important;
}

.title-sec01 {
  position: relative;
  font-size: 3.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  background-color: #f4f4f4;
  border-left: 25px solid #352b27;
  padding: 23px 30px 23px 34px;
  margin-bottom: 40px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .title-sec01 {
    font-size: 2.7rem;
    border-left: 20px solid #352b27;
    padding: 20px 25px 20px 29px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec01 {
    font-size: 2.2rem;
    border-left: 15px solid #352b27;
    padding: 18px 20px 18px 24px;
    margin-bottom: 30px;
  }
}
.title-sec01::before, .title-sec01::after {
  content: "";
  position: absolute;
  top: calc((100% - 1px) / 2);
  left: -15px;
  height: 1px;
}
@media screen and (max-width: 834px) {
  .title-sec01::before, .title-sec01::after {
    left: -12px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec01::before, .title-sec01::after {
    left: -10px;
  }
}
.title-sec01::before {
  width: 30px;
  background-color: #352b27;
}
@media screen and (max-width: 834px) {
  .title-sec01::before {
    width: 24px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec01::before {
    width: 20px;
  }
}
.title-sec01::after {
  width: 15px;
  background-color: #ffffff;
}
@media screen and (max-width: 834px) {
  .title-sec01::after {
    width: 12px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec01::after {
    width: 10px;
  }
}

.title-sec02 {
  position: relative;
  font-size: 2.9rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 25px;
  margin-bottom: 40px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .title-sec02 {
    font-size: 2.5rem;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec02 {
    font-size: 2.1rem;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
}
.title-sec02::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 120px;
  height: 1px;
  background-color: #352b27;
}
@media screen and (max-width: 834px) {
  .title-sec02::before {
    width: 100px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec02::before {
    width: 80px;
  }
}

.title-sec03 {
  position: relative;
  font-size: 2.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  border-bottom: 1px solid #e9e9e9;
  padding-left: 40px;
  padding-bottom: 18px;
  margin-bottom: 30px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .title-sec03 {
    font-size: 2.2rem;
    padding-left: 30px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec03 {
    font-size: 1.9rem;
    padding-left: 22px;
    padding-bottom: 12px;
    margin-bottom: 20px;
  }
}
.title-sec03::before {
  position: absolute;
  content: "";
  top: 19px;
  left: 0;
  width: 28px;
  height: 1px;
  background-color: #352b27;
}
@media screen and (max-width: 834px) {
  .title-sec03::before {
    top: 17px;
    width: 18px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec03::before {
    top: 15px;
    width: 15px;
  }
}

.title-sec04 {
  position: relative;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  background-color: #f4f4f4;
  border-radius: 3px;
  padding: 16px 10px 16px 48px;
  margin-bottom: 30px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .title-sec04 {
    font-size: 1.8rem;
    padding: 14px 10px 14px 40px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec04 {
    font-size: 1.6rem;
    padding: 12px 10px 12px 32px;
    margin-bottom: 20px;
  }
}
.title-sec04::before, .title-sec04::after {
  position: absolute;
  content: "";
  top: 19px;
  width: 1px;
  height: calc(100% - 38px);
  background-color: #352b27;
}
@media screen and (max-width: 834px) {
  .title-sec04::before, .title-sec04::after {
    top: 17px;
    height: calc(100% - 34px);
  }
}
@media screen and (max-width: 599px) {
  .title-sec04::before, .title-sec04::after {
    top: 15px;
    height: calc(100% - 30px);
  }
}
.title-sec04::before {
  left: 20px;
}
@media screen and (max-width: 834px) {
  .title-sec04::before {
    left: 17px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec04::before {
    left: 14px;
  }
}
.title-sec04::after {
  left: 24px;
}
@media screen and (max-width: 834px) {
  .title-sec04::after {
    left: 21px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec04::after {
    left: 18px;
  }
}

.title-sec05 {
  position: relative;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  border-bottom: 1px solid #e9e9e9;
  padding-left: 34px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .title-sec05 {
    font-size: 1.8rem;
    padding-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec05 {
    font-size: 1.6rem;
    padding-left: 26px;
    margin-bottom: 20px;
  }
}
.title-sec05::before, .title-sec05::after {
  position: absolute;
  content: "";
  border: 1px solid #352b27;
  border-radius: 50%;
}
.title-sec05::before {
  top: 5px;
  left: 2px;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 834px) {
  .title-sec05::before {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec05::before {
    width: 16px;
    height: 16px;
  }
}
.title-sec05::after {
  top: 9px;
  left: 6px;
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 834px) {
  .title-sec05::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec05::after {
    width: 8px;
    height: 8px;
  }
}

.title-sec06 {
  position: relative;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  padding-left: 28px;
  margin-bottom: 20px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .title-sec06 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .title-sec06 {
    font-size: 1.6rem;
    padding-left: 24px;
    margin-bottom: 15px;
  }
}
.title-sec06::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #352b27;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .title-sec06::before {
    top: 6px;
    width: 13px;
    height: 13px;
  }
}

.title-sec07 {
  position: relative;
  font-size: 3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 27px;
  margin-bottom: 30px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .title-sec07 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .title-sec07 {
    font-size: 2.2rem;
    padding-bottom: 17px;
    margin-bottom: 20px;
  }
}
.title-sec07::before {
  position: absolute;
  content: "";
  left: calc((100% - 80px) / 2);
  bottom: 0;
  width: 80px;
  height: 1px;
  background-color: #352b27;
}
@media screen and (max-width: 834px) {
  .title-sec07::before {
    left: calc((100% - 60px) / 2);
    width: 60px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec07::before {
    left: calc((100% - 40px) / 2);
    width: 40px;
  }
}

.title-sec08 {
  position: relative;
  color: #352b27;
  font-size: 4.7rem;
  font-family: "Hind", sans-serif;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  border-top: 2px solid #352b27;
  border-bottom: 2px solid #352b27;
  padding: 15px 0 12px;
  margin-bottom: 40px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .title-sec08 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 599px) {
  .title-sec08 {
    font-size: 3.3rem;
    padding: 12px 0 9px;
    margin-bottom: 30px;
  }
}
.title-sec08::before, .title-sec08::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #352b27;
}
.title-sec08::before {
  top: 3px;
}
@media screen and (max-width: 834px) {
  .title-sec08::before {
    top: 2px;
  }
}
.title-sec08::after {
  bottom: 3px;
}
@media screen and (max-width: 834px) {
  .title-sec08::after {
    bottom: 2px;
  }
}

.block-flow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 599px) {
  .block-flow {
    display: block;
  }
}
.block-flow .img-right {
  order: 2;
  float: none;
}
.block-flow .img-left {
  float: none;
}
.block-flow .text-left,
.block-flow .text-right {
  width: 100%;
  float: none;
}

/*youtube*/
.youtube-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  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;
}

.box-bg01 {
  background-color: #f4f4f4;
  padding: 40px 45px;
  margin-bottom: 10px;
}
@media screen and (max-width: 834px) {
  .box-bg01 {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 599px) {
  .box-bg01 {
    padding: 20px 25px;
  }
}
.box-bg01 a {
  color: #352b27;
  text-decoration: underline;
}
@media print, screen and (min-width: 1025px) {
  .box-bg01 a:hover {
    text-decoration: none;
  }
}
.box-bg01 .list-wrapper {
  margin-right: 0 !important;
  margin-left: 0 !important;
  margin-bottom: 0;
}

.box-bg02 {
  background-color: #ddd6d1;
  padding: 40px 45px;
  margin-bottom: 10px;
}
@media screen and (max-width: 834px) {
  .box-bg02 {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 599px) {
  .box-bg02 {
    padding: 20px 25px;
  }
}
.box-bg02 a {
  color: #352b27;
  text-decoration: underline;
}
@media print, screen and (min-width: 1025px) {
  .box-bg02 a:hover {
    text-decoration: none;
  }
}
.box-bg02 .list-wrapper {
  margin-right: 0 !important;
  margin-left: 0 !important;
  margin-bottom: 0;
}
.box-bg02 .list-wrapper li::before {
  background-color: #352b27;
}

.box-bg03 {
  background-color: #f9ecec;
  padding: 40px 45px;
  margin-bottom: 10px;
}
@media screen and (max-width: 834px) {
  .box-bg03 {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 599px) {
  .box-bg03 {
    padding: 20px 25px;
  }
}
.box-bg03 a {
  color: #352b27;
  text-decoration: underline;
}
@media print, screen and (min-width: 1025px) {
  .box-bg03 a:hover {
    text-decoration: none;
  }
}
.box-bg03 .list-wrapper {
  margin-right: 0 !important;
  margin-left: 0 !important;
  margin-bottom: 0;
}
.box-bg03 .list-wrapper li::before {
  background-color: #cd6464;
}
.box-bg03 ol.list-wrapper li::after {
  background-color: #cd6464;
}

.works-box {
  position: relative;
  display: block;
  height: 100%;
  background-color: #f4f4f4;
  border-radius: 3px;
  padding: 20px 20px 46px;
  box-sizing: border-box;
  word-break: break-all;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .works-box {
    padding: 15px 15px 46px;
  }
}
@media screen and (max-width: 834px) {
  .works-box {
    padding: 20px 20px 46px;
  }
}
@media screen and (max-width: 599px) {
  .works-box {
    padding: 8px 8px 41px;
  }
}
@media screen and (max-width: 320px) {
  .works-box {
    padding: 10px 10px 41px;
  }
}
.works-box__head {
  position: relative;
  margin-bottom: 30px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .works-box__head {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 834px) {
  .works-box__head {
    margin-bottom: 22px;
  }
}
.works-box__head__img img {
  width: 100%;
  border-radius: 3px 3px 0 0;
}
.works-box__head__category {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 90px;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  background-color: #372727;
  border-radius: 3px 0;
  padding: 8px 5px 11px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1400px) {
  .works-box__head__category {
    font-size: 1.4rem;
    padding: 6px 5px 9px;
  }
}
@media print, screen and (max-width: 1200px) {
  .works-box__head__category {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .works-box__head__category {
    font-size: 1.2rem;
    padding: 5px 5px 6px;
  }
}
@media screen and (max-width: 834px) {
  .works-box__head__category {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .works-box__head__category {
    font-size: 1.2rem;
  }
}
.works-box__body {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.works-box__body__title {
  color: #282828;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .works-box__body__title {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 1024px) {
  .works-box__body__title {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 834px) {
  .works-box__body__title {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .works-box__body__title {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 320px) {
  .works-box__body__title {
    font-size: 1.5rem;
  }
}
.works-box__body__detail__text {
  display: block;
  color: #151515;
  font-size: 1.3rem;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .works-box__body__detail__text {
    color: #939393;
  }
}
.works-box__date {
  position: absolute;
  right: 20px;
  bottom: 15px;
  color: #acacac;
  font-size: 1.3rem;
  line-height: 1;
}
@media print, screen and (max-width: 1200px) {
  .works-box__date {
    right: 15px;
  }
}
@media screen and (max-width: 834px) {
  .works-box__date {
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .works-box__date {
    right: 8px;
    bottom: 10px;
  }
}
@media print, screen and (min-width: 1025px) {
  .works-box:hover {
    box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.works-box--top {
  background-color: #ffffff;
}
@media print, screen and (min-width: 1025px) {
  .works-box--top:hover {
    box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.3);
  }
}

.text {
  word-break: break-all;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .text {
    line-height: 1.8;
  }
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.text-red {
  color: #eb3939;
}

.text-link {
  color: #006ea3;
  text-decoration: underline;
}
@media print, screen and (min-width: 1025px) {
  .text-link:hover {
    text-decoration: none;
  }
}

.copy-gothic {
  color: #352b27;
  font-size: 2.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .copy-gothic {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .copy-gothic {
    font-size: 1.9rem;
    margin-bottom: 20px;
  }
}

.copy-mincho {
  color: #352b27;
  font-size: 2.7rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .copy-mincho {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .copy-mincho {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.caption {
  margin-top: 10px;
  line-height: 1.3em;
  text-align: center;
  display: block;
}
@media screen and (max-width: 599px) {
  .caption {
    margin-top: 5px;
  }
}

.text-3column {
  padding: 0 !important;
}
.text-3column > li {
  margin-left: 30px;
  width: calc((99.9% - 60px) / 3);
  float: left;
  list-style: none !important;
}
.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 !important;
}
.text-2column > li {
  width: calc(50% - 15px);
  float: right;
  list-style: none !important;
}
.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 {
    float: none;
    margin-top: 0;
  }
}

.anchor-list {
  display: flex;
  flex-wrap: wrap;
  background-color: #f4f4f4;
  border-radius: 3px;
  margin-bottom: 20px;
  padding: 40px;
  gap: 20px;
}
@media screen and (max-width: 834px) {
  .anchor-list {
    padding: 30px;
    margin-bottom: 10px;
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list {
    padding: 20px;
  }
}
.anchor-list__item {
  display: flex;
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 834px) {
  .anchor-list__item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .anchor-list__item {
    width: 100%;
  }
}
.anchor-list.column4 .anchor-list__item {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 1024px) {
  .anchor-list.column4 .anchor-list__item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 834px) {
  .anchor-list.column4 .anchor-list__item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .anchor-list.column4 .anchor-list__item {
    width: 100%;
  }
}
.anchor-list.column5 .anchor-list__item {
  width: calc((100% - 80px) / 5);
}
@media screen and (max-width: 1024px) {
  .anchor-list.column5 .anchor-list__item {
    width: calc((100% - 60px) / 4);
  }
}
@media screen and (max-width: 834px) {
  .anchor-list.column5 .anchor-list__item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .anchor-list.column5 .anchor-list__item {
    width: calc((100% - 10px) / 2);
  }
}

.ank-btn {
  display: flex;
  position: relative;
  width: 100%;
  color: #222222;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  padding: 3px 0 3px 38px;
}
@media screen and (max-width: 834px) {
  .ank-btn {
    padding: 1px 0 1px 33px;
  }
}
@media screen and (max-width: 599px) {
  .ank-btn {
    padding: 0 0 0 28px;
  }
}
.ank-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #352b27;
  border-radius: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .ank-btn::before {
    width: 21px;
    height: 21px;
  }
}
@media screen and (max-width: 599px) {
  .ank-btn::before {
    width: 18px;
    height: 18px;
  }
}
.ank-btn::after {
  position: absolute;
  content: "";
  top: 7px;
  left: 8px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media screen and (max-width: 1024px) {
  .ank-btn::after {
    top: 6px;
    left: 7px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
@media screen and (max-width: 599px) {
  .ank-btn::after {
    top: 5px;
    left: 6px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
@media print, screen and (min-width: 1025px) {
  .ank-btn:hover {
    transform: translateY(3px);
  }
}

.list-box {
  border: 1px solid #bdcbd1;
  padding: 27px 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .list-box {
    padding: 18px 20px;
  }
}
.list-box .list-wrapper {
  margin-bottom: 0;
}

.list-wrapper {
  padding: 0 !important;
  list-style: none;
  margin-bottom: 30px;
}
.list-wrapper li {
  position: relative;
  line-height: 1.5;
  padding-left: 1.6em;
  margin-top: 10px;
  word-break: break-all;
  list-style: none !important;
}
.list-wrapper li:first-child {
  margin-top: 0;
}
.list-wrapper li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 3px;
  width: 10px;
  height: 10px;
  background-color: #352b27;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .list-wrapper li {
    margin-top: 7px;
  }
}

ol.list-wrapper {
  counter-reset: num;
  padding: 0 !important;
  list-style: none;
}
ol.list-wrapper li {
  position: relative;
  line-height: 1.5;
  list-style: none;
  padding: 2px 0 2px 44px;
  margin-top: 10px;
  word-break: break-all;
}
@media screen and (max-width: 1024px) {
  ol.list-wrapper li {
    padding: 2px 0 2px 40px;
  }
}
@media screen and (max-width: 834px) {
  ol.list-wrapper li {
    padding: 2px 0 2px 36px;
  }
}
@media screen and (max-width: 599px) {
  ol.list-wrapper li {
    padding: 2px 0 2px 32px;
    margin-top: 7px;
  }
}
ol.list-wrapper li:first-child {
  margin-top: 0;
}
ol.list-wrapper li::before {
  display: none;
}
ol.list-wrapper li::after {
  position: absolute;
  content: counter(num);
  counter-increment: num;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  color: #ffffff;
  font-size: 17px;
  font-family: "Hind", sans-serif;
  line-height: 26px;
  text-align: center;
  background-color: #352b27;
  border-radius: 50%;
  padding-top: 2px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  ol.list-wrapper li::after {
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 834px) {
  ol.list-wrapper li::after {
    width: 22px;
    height: 22px;
    font-size: 14px;
    line-height: 22px;
    padding-top: 1px;
  }
}
@media screen and (max-width: 599px) {
  ol.list-wrapper li::after {
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
  }
}

_:-ms-input-placeholder .list-file,
:root .list-file {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
_:-ms-input-placeholder .list-file li,
:root .list-file li {
  width: 100%;
}

.list-file {
  margin-bottom: 10px;
}
.list-file li {
  margin-top: 20px;
  padding: 6px 0 0 45px;
  min-height: 54px;
  line-height: 1.5em;
  background-size: 35px auto;
  background-repeat: no-repeat;
  background-position: 0 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .list-file li {
    padding: 6px 0 0 32px;
    margin-top: 15px;
    padding-top: 0;
    min-height: 45px;
    line-height: 1.3em;
    background-size: 25px auto;
    background-position: 0 3px;
  }
}
.list-file li:first-child {
  margin-top: 0;
}
.list-file li.li-pdf {
  background-image: url(../img/common/icon_pdf.svg);
}
.list-file li.li-xls {
  background-image: url(../img/common/icon_excel.svg);
}
.list-file li.li-doc {
  background-image: url(../img/common/icon_word.svg);
}
.list-file li a {
  color: #352b27;
}
.list-file li a:hover {
  color: #cccccc;
}
.list-file li p {
  font-size: 1.6rem;
  word-break: break-all;
}
@media screen and (max-width: 599px) {
  .list-file li p {
    margin-top: 3px;
    font-size: 1.5rem;
  }
}
.list-file.column2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.list-file.column2 > li {
  width: calc((100% - 30px) / 2);
  margin-left: 30px;
}
.list-file.column2 > li:nth-child(2) {
  margin-top: 0;
}
.list-file.column2 > li:nth-child(2n+1) {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  .list-file.column2 > li {
    width: 100%;
    margin-left: 0;
  }
  .list-file.column2 > li:nth-child(2) {
    margin-top: 15px;
  }
}
.list-file.column3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.list-file.column3 > li {
  width: calc((100% - 60px) / 3);
  margin-left: 30px;
}
.list-file.column3 > li:nth-child(2), .list-file.column3 > li:nth-child(3) {
  margin-top: 0;
}
.list-file.column3 > li:nth-child(3n+1) {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .list-file.column3 > li {
    width: calc((100% - 30px) / 2);
  }
  .list-file.column3 > li:nth-child(3) {
    margin-top: 15px;
  }
  .list-file.column3 > li:nth-child(3n+1) {
    margin-left: 30px;
  }
  .list-file.column3 > li:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .list-file.column3 > li {
    width: 100%;
    margin-left: 0;
  }
  .list-file.column3 > li:nth-child(2), .list-file.column3 > li:nth-child(3) {
    margin-top: 15px;
  }
}

.img-right {
  margin: 7px 0 30px 30px;
  width: auto;
  max-width: 38.2%;
  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;
    text-align: center;
    display: block;
  }
}

.img-left {
  margin: 7px 30px 30px 0;
  width: auto;
  max-width: 38.2%;
  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(61.8% - 30px);
  float: right;
}
@media screen and (max-width: 599px) {
  .text-right {
    width: auto;
    float: none;
  }
}

.text-left {
  width: calc(61.8% - 30px);
  float: left;
}
@media screen and (max-width: 599px) {
  .text-left {
    width: auto;
    float: none;
  }
}

.photo-1 {
  max-width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.photo-2 {
  padding: 0 !important;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .photo-2 {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .photo-2 {
    margin-bottom: 30px;
  }
}
.photo-2 li {
  list-style: none !important;
  text-align: center;
}
@media print, screen and (min-width: 835px) {
  .photo-2 li {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 834px) {
  .photo-2 li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .photo-2 li {
    width: 100%;
  }
}

.photo-3 {
  padding: 0 !important;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .photo-3 {
    margin-bottom: 30px;
  }
}
.photo-3 li {
  list-style: none !important;
  text-align: center;
  width: calc((100% - 50px) / 3);
}
.photo-3 li img {
  max-width: auto;
}
@media screen and (max-width: 599px) {
  .photo-3 li {
    width: 100%;
  }
}

.slider-photo__item img {
  width: 100%;
  border-radius: 3px;
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
.top-main {
  position: relative;
  width: 100%;
  height: 100vh;
}

.top-main-slider {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.top-main-slider .slick-list {
  height: 100%;
}
.top-main-slider .slick-list .slick-track {
  height: 100%;
}
.top-main-slider .slick-slide > div {
  height: 100%;
}
.top-main-slider__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
}
.top-main-slider__item img {
  object-fit: cover;
  object-position: center bottom !important;
  width: 100%;
  height: 100%;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.top-main-copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10% 30px 0;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top-main-copy__copy {
  opacity: 0;
  margin-bottom: 45px;
  animation: zoomIn 1s ease 0.2s alternate forwards;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1400px) {
  .top-main-copy__copy {
    width: 100%;
    max-width: 850px;
    margin-bottom: 30px;
  }
}
.top-main-copy__text {
  opacity: 0;
  animation: zoomIn 1s ease 0.8s alternate forwards;
  position: relative;
  color: #ffffff;
  text-align: center;
  padding: 55px 47px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-main-copy__text {
    padding: 50px 47px;
  }
}
@media screen and (max-width: 834px) {
  .top-main-copy__text {
    padding: 45px 47px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-copy__text {
    text-align: left;
    padding: 0;
  }
}
.top-main-copy__text::before, .top-main-copy__text::after {
  position: absolute;
  content: "";
  width: 110px;
  height: 110px;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 1024px) {
  .top-main-copy__text::before, .top-main-copy__text::after {
    width: 99px;
    height: 99px;
  }
}
@media screen and (max-width: 834px) {
  .top-main-copy__text::before, .top-main-copy__text::after {
    width: 88px;
    height: 88px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-copy__text::before, .top-main-copy__text::after {
    display: none;
  }
}
.top-main-copy__text::before {
  top: 0;
  left: 0;
  background-image: url(../img/top/main_text_line01.png);
  background-position: left top;
}
.top-main-copy__text::after {
  right: 0;
  bottom: 0;
  background-image: url(../img/top/main_text_line02.png);
  background-position: right bottom;
}

.top-news {
  padding: 100px 30px 80px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-news {
    padding: 80px 30px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-news {
    padding: 60px 20px 50px;
  }
}
.top-news__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.top-news__title {
  font-size: 5.5rem;
  font-family: "Hind", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .top-news__title {
    font-size: 4.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news__title {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 320px) {
  .top-news__title {
    font-size: 3.2rem;
  }
}
.top-news__sub-tit {
  position: absolute;
  top: 23px;
  right: 0;
  color: #352b27;
  font-weight: 500;
  line-height: 1;
  background-image: url(../img/common/icon_loudspeaker.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 18px auto;
  padding: 2px 0 2px 32px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .top-news__sub-tit {
    top: 17px;
    padding: 2px 0 2px 28px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__sub-tit {
    top: 10px;
    padding: 2px 0 2px 25px;
  }
}
@media screen and (max-width: 320px) {
  .top-news__sub-tit {
    font-size: 1.2rem;
    background-size: 15px auto;
    padding: 2px 0 2px 20px;
  }
}
.top-news__list {
  border-top: 1px solid #e9e9e9;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .top-news__list {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.top-news__list__item {
  border-bottom: 1px solid #e9e9e9;
}
.top-news__btn-box {
  width: 100%;
  max-width: 180px;
  margin: 30px 0 0 auto;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .top-news__btn-box {
    margin: 30px auto 0;
  }
}
.top-news__btn-box__btn {
  display: block;
  color: #000000;
  font-size: 1.7rem;
  font-family: "Hind", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border: 1px solid #282828;
  border-radius: 50px;
  padding: 16px 10px 15px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .top-news__btn-box__btn:hover {
    color: #ffffff;
    background-color: #352b27;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

.top-reason {
  position: relative;
  background-image: url(../img/top/bg_reason.png);
  background-position: left 40px top;
  background-repeat: no-repeat;
  background-size: 444px auto;
  background-color: #282828;
  padding: 110px 30px 110px;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1400px) {
  .top-reason {
    background-size: 355.2px auto;
  }
}
@media print, screen and (max-width: 1200px) {
  .top-reason {
    background-size: 266.4px auto;
    padding: 100px 30px 100px;
  }
}
@media screen and (max-width: 1024px) {
  .top-reason {
    padding: 80px 30px 100px;
  }
}
@media screen and (max-width: 834px) {
  .top-reason {
    background-size: 355.2px auto;
    padding: 80px 30px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-reason {
    background-size: 266.4px auto;
    padding: 60px 20px 0;
  }
}
.top-reason__inner {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  z-index: 1;
}
.top-reason__tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #ffffff;
  font-weight: 500;
  line-height: 1;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 21px;
  margin-bottom: 38px;
}
@media screen and (max-width: 834px) {
  .top-reason__tit {
    padding-bottom: 16px;
    margin-bottom: 30px;
  }
}
.top-reason__tit__sec {
  font-size: 1.3rem;
}
.top-reason__title {
  color: #ffffff;
  font-size: 11.5rem;
  font-family: "Hind", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 80px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1400px) {
  .top-reason__title {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .top-reason__title {
    font-size: 9.7rem;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 834px) {
  .top-reason__title {
    font-size: 7.9rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__title {
    font-size: 6.1rem;
    margin-bottom: 30px;
  }
}
.top-reason__text-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 600px;
  height: 500px;
  color: #ffffff;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  padding-right: 120px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1400px) {
  .top-reason__text-box {
    height: auto;
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    padding-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-reason__text-box {
    width: 60%;
  }
}
@media screen and (max-width: 834px) {
  .top-reason__text-box {
    width: 100%;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__text-box {
    padding-bottom: 40px;
  }
}
.top-reason__text-box__catch {
  font-size: 2.7rem;
  letter-spacing: 0.21em;
  line-height: 2;
  margin-left: 60px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1400px) {
  .top-reason__text-box__catch {
    margin-left: 0;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .top-reason__text-box__catch {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-reason__text-box__catch {
    letter-spacing: 0.16em;
    line-height: 1.7;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__text-box__catch {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
.top-reason__text-box__text {
  letter-spacing: 0.15em;
}
@media screen and (max-width: 599px) {
  .top-reason__text-box__text {
    line-height: 1.8;
  }
}
.top-reason__slider {
  position: absolute !important;
  top: 0;
  right: 0;
  width: calc(900px + (100% - 1500px) / 2);
  height: 990px;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-reason__slider {
    width: 60%;
    height: 990px;
  }
}
@media screen and (max-width: 834px) {
  .top-reason__slider {
    position: static !important;
    width: calc(100% + 60px);
    height: 400px;
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__slider {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}
.top-reason__slider__item {
  height: 990px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-reason__slider__item {
    height: 990px;
  }
}
@media screen and (max-width: 834px) {
  .top-reason__slider__item {
    height: 400px;
  }
}
.top-reason__slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-merit {
  background-image: url(../img/top/bg_merit.webp);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 684px auto;
  padding: 110px 60px 90px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .top-merit {
    background-size: 547.2px auto;
    padding: 100px 50px 80px;
  }
}
@media screen and (max-width: 1024px) {
  .top-merit {
    background-size: 410.4px auto;
    padding: 80px 30px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-merit {
    background-size: 273.6px auto;
    padding: 60px 20px 60px;
  }
}
.top-merit__inner {
  max-width: 1500px;
  margin: 0 auto;
}
.top-merit__tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #352b27;
  font-weight: 500;
  line-height: 1;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 21px;
  margin-bottom: 38px;
}
@media screen and (max-width: 834px) {
  .top-merit__tit {
    padding-bottom: 16px;
    margin-bottom: 30px;
  }
}
.top-merit__tit__sec {
  font-size: 1.3rem;
}
.top-merit__title-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .top-merit__title-box {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 834px) {
  .top-merit__title-box {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-merit__title-box {
    display: block;
  }
}
.top-merit__title-box__head {
  width: 382px;
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  .top-merit__title-box__head {
    width: 362px;
  }
}
@media screen and (max-width: 834px) {
  .top-merit__title-box__head {
    width: 302px;
  }
}
@media screen and (max-width: 599px) {
  .top-merit__title-box__head {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }
}
.top-merit__title-box__head__title01 {
  color: #282828;
  font-size: 11.5rem;
  font-family: "Hind", sans-serif;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .top-merit__title-box__head__title01 {
    font-size: 9.7rem;
  }
}
@media screen and (max-width: 834px) {
  .top-merit__title-box__head__title01 {
    font-size: 7.9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-merit__title-box__head__title01 {
    font-size: 6.1rem;
  }
}
.top-merit__title-box__head__title02 {
  color: #282828;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .top-merit__title-box__head__title02 {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 834px) {
  .top-merit__title-box__head__title02 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-merit__title-box__head__title02 {
    font-size: 2.2rem;
  }
}
.top-merit__title-box__text {
  width: calc(99.9% - 382px);
  color: #282828;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .top-merit__title-box__text {
    width: calc(99.9% - 362px);
  }
}
@media screen and (max-width: 834px) {
  .top-merit__title-box__text {
    width: calc(99.9% - 302px);
  }
}
@media screen and (max-width: 599px) {
  .top-merit__title-box__text {
    width: 100%;
  }
}
.top-merit__list__item {
  margin-bottom: 60px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .top-merit__list__item {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .top-merit__list__item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-merit__list__item {
    margin-bottom: 20px;
  }
}
.top-merit__list__item:last-child {
  margin-bottom: 0;
}
.top-merit__list__item:nth-child(even) .top-merit-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.top-merit__list__item:nth-child(1) .top-merit-box__body {
  background-image: url(../img/top/num_merit01.svg);
  background-position: left 35px top 70px;
  background-repeat: no-repeat;
  background-size: 25.6666666667% auto;
}
@media print, screen and (max-width: 1200px) {
  .top-merit__list__item:nth-child(1) .top-merit-box__body {
    background-position: left 35px top 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-merit__list__item:nth-child(1) .top-merit-box__body {
    background-position: left 20px top 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-merit__list__item:nth-child(1) .top-merit-box__body {
    background-position: left 10px top 20px;
  }
}
.top-merit__list__item:nth-child(2) .top-merit-box__body {
  background-image: url(../img/top/num_merit02.svg);
  background-position: left 30px top 63px;
  background-repeat: no-repeat;
  background-size: 31.8333333333% auto;
}
@media print, screen and (max-width: 1200px) {
  .top-merit__list__item:nth-child(2) .top-merit-box__body {
    background-position: left 30px top 33px;
  }
}
@media screen and (max-width: 1024px) {
  .top-merit__list__item:nth-child(2) .top-merit-box__body {
    background-position: left 15px top 23px;
  }
}
@media screen and (max-width: 599px) {
  .top-merit__list__item:nth-child(2) .top-merit-box__body {
    background-position: left 10px top 20px;
  }
}
.top-merit__list__item:nth-child(3) .top-merit-box__body {
  background-image: url(../img/top/num_merit03.svg);
  background-position: left 31px top 63px;
  background-repeat: no-repeat;
  background-size: 30.8333333333% auto;
}
@media print, screen and (max-width: 1200px) {
  .top-merit__list__item:nth-child(3) .top-merit-box__body {
    background-position: left 31px top 33px;
  }
}
@media screen and (max-width: 1024px) {
  .top-merit__list__item:nth-child(3) .top-merit-box__body {
    background-position: left 16px top 23px;
  }
}
@media screen and (max-width: 599px) {
  .top-merit__list__item:nth-child(3) .top-merit-box__body {
    background-position: left 10px top 20px;
  }
}

.top-merit-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #352b27;
  word-break: break-all;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .top-merit-box {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.top-merit-box__img {
  width: calc(99.9% - 600px);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .top-merit-box__img {
    width: calc(99.9% - 500px);
  }
}
@media screen and (max-width: 1024px) {
  .top-merit-box__img {
    width: calc(99.9% - 400px);
  }
}
@media screen and (max-width: 834px) {
  .top-merit-box__img {
    width: calc(99.9% - 300px);
  }
}
@media screen and (max-width: 599px) {
  .top-merit-box__img {
    width: 100%;
  }
}
.top-merit-box__img img {
  object-fit: cover;
  object-position: center bottom !important;
  width: 100%;
  height: 100%;
}
.top-merit-box__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 600px;
  color: #ffffff;
  padding: 90px 40px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .top-merit-box__body {
    width: 500px;
    padding: 80px 40px 100px;
  }
}
@media screen and (max-width: 1024px) {
  .top-merit-box__body {
    width: 400px;
    padding: 50px 40px 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-merit-box__body {
    width: 300px;
    padding: 50px 30px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-merit-box__body {
    width: 100%;
    padding: 50px 30px 35px;
  }
}
.top-merit-box__body__catch {
  width: 100%;
  font-size: 4.5rem;
  font-family: "Hind", sans-serif;
  font-weight: 600;
  line-height: 1;
  background-color: #352b27;
  margin-bottom: 15px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 600px) {
  .top-merit-box__body__catch {
    max-width: 350px;
  }
}
@media screen and (max-width: 1024px) {
  .top-merit-box__body__catch {
    font-size: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .top-merit-box__body__catch {
    font-size: 3.5rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-merit-box__body__catch {
    font-size: 3rem;
  }
}
@media screen and (max-width: 320px) {
  .top-merit-box__body__catch {
    font-size: 2.5rem;
  }
}
.top-merit-box__body__text {
  width: 100%;
  line-height: 1.85;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 600px) {
  .top-merit-box__body__text {
    max-width: 350px;
  }
}
@media screen and (max-width: 1024px) {
  .top-merit-box__body__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 834px) {
  .top-merit-box__body__text {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .top-merit-box__body__text {
    font-size: 1.5rem;
  }
}
.top-merit-box__body__btn-box {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 100%;
  max-width: 180px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-merit-box__body__btn-box {
    position: static;
    margin: 20px 0 0 auto;
  }
}
@media screen and (max-width: 834px) {
  .top-merit-box__body__btn-box {
    margin: 15px 0 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .top-merit-box__body__btn-box {
    margin: 20px 0 0 auto;
  }
}
.top-merit-box__body__btn-box__btn {
  display: block;
  color: #ffffff;
  font-size: 1.7rem;
  font-family: "Hind", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  background-color: #413834;
  border-radius: 50px;
  padding: 16px 10px 15px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .top-merit-box__body__btn-box__btn:hover {
    color: #352b27;
    background-color: #ffffff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

.top-guide {
  padding: 0 30px 60px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-guide {
    padding: 0 30px 50x;
  }
}
@media screen and (max-width: 599px) {
  .top-guide {
    padding: 0 20px 50px;
  }
}
.top-guide__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.top-guide-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  background-image: url(../img/top/bg_guide.png);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 314px auto;
  background-color: #f4f4f4;
  border-radius: 5px;
  padding: 70px 50px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-guide-box {
    background-size: 265px auto;
    padding: 60px 30px 50px;
  }
}
@media screen and (max-width: 834px) {
  .top-guide-box {
    display: block;
    background-size: 216px auto;
    padding: 50px 30px 45px;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-box {
    background-size: 167px auto;
    padding: 40px 20px 35px;
  }
}
.top-guide-box__body {
  width: 400px;
  padding-top: 25px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-guide-box__body {
    width: 360px;
    padding-top: 15px;
  }
}
@media screen and (max-width: 834px) {
  .top-guide-box__body {
    width: 100%;
    padding-top: 0;
  }
}
.top-guide-box__body__tit {
  color: #352b27;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  border-bottom: 1px solid #dedede;
  padding-bottom: 18px;
  margin-bottom: 30px;
}
.top-guide-box__body__txt-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .top-guide-box__body__txt-box {
    position: relative;
    display: block;
  }
}
.top-guide-box__body__txt-box__left {
  width: calc(99.9% - 110px);
  padding-right: 5px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-guide-box__body__txt-box__left {
    width: calc(99.9% - 100px);
  }
}
@media screen and (max-width: 834px) {
  .top-guide-box__body__txt-box__left {
    width: 100%;
    padding-right: 0;
  }
}
.top-guide-box__body__txt-box__left__catch {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin-bottom: 25px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-guide-box__body__txt-box__left__catch {
    font-size: 2.7rem;
    letter-spacing: 0.15em;
  }
}
@media screen and (max-width: 834px) {
  .top-guide-box__body__txt-box__left__catch {
    font-size: 3rem;
    letter-spacing: 0.2em;
    padding-right: 120px;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-box__body__txt-box__left__catch {
    font-size: 2.7rem;
    letter-spacing: 0.15em;
    line-height: 1.3;
    padding-right: 90px;
  }
}
@media screen and (max-width: 320px) {
  .top-guide-box__body__txt-box__left__catch {
    font-size: 2.4rem;
    padding-right: 70px;
  }
}
.top-guide-box__body__txt-box__left__text {
  line-height: 1.8;
}
.top-guide-box__body__txt-box__right {
  width: 110px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-guide-box__body__txt-box__right {
    width: 100px;
  }
}
@media screen and (max-width: 834px) {
  .top-guide-box__body__txt-box__right {
    position: absolute;
    top: -6px;
    right: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-box__body__txt-box__right {
    top: -11px;
    width: 80px;
  }
}
@media screen and (max-width: 320px) {
  .top-guide-box__body__txt-box__right {
    top: -3px;
    width: 70px;
  }
}
.top-guide-box__body__txt-box__right__mark {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  background-color: #968579;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-guide-box__body__txt-box__right__mark {
    width: 100px;
    height: 100px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-box__body__txt-box__right__mark {
    width: 80px;
    height: 80px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 320px) {
  .top-guide-box__body__txt-box__right__mark {
    width: 70px;
    height: 70px;
    font-size: 1.4rem;
  }
}
.top-guide-box__body__btn-box {
  text-align: right;
  margin-top: 30px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .top-guide-box__body__btn-box {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-box__body__btn-box {
    margin-top: 10px;
  }
}
.top-guide-box__body__btn-box__btn {
  position: relative;
  display: inline-block;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: underline;
  padding: 11px 57px 11px 0;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top-guide-box__body__btn-box__btn::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #352b27;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.top-guide-box__body__btn-box__btn::after {
  position: absolute;
  content: "";
  top: 16px;
  right: 17px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .top-guide-box__body__btn-box__btn:hover {
    color: #352b27 !important;
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .top-guide-box__body__btn-box__btn:hover::before {
    background-color: inherit;
    border: 1px solid #352b27;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .top-guide-box__body__btn-box__btn:hover::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid #352b27;
    border-right: 2px solid #352b27;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.top-guide-box__img-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-content: flex-start;
  width: calc(99.9% - 400px);
  padding-right: 50px;
  gap: 10px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-guide-box__img-list {
    width: calc(99.9% - 360px);
    padding-right: 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-guide-box__img-list {
    width: 100%;
    padding-right: 0;
    margin-top: 25px;
    gap: 8px;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-box__img-list {
    margin-top: 20px;
  }
}
.top-guide-box__img-list__item {
  width: calc((99.9% - 10px) / 2);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .top-guide-box__img-list__item {
    width: calc((99.9% - 8px) / 2);
  }
}

.guide-figure {
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.guide-figure__img img {
  width: 100%;
  border-radius: 5px;
}
.guide-figure figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  background-color: #352b27;
  border-radius: 3px 0;
  padding: 7px 26px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .guide-figure figcaption {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .guide-figure figcaption {
    padding: 4px 10px;
  }
}
@media screen and (max-width: 834px) {
  .guide-figure figcaption {
    font-size: 1.3rem;
    padding: 7px 26px;
  }
}
@media screen and (max-width: 599px) {
  .guide-figure figcaption {
    font-size: 1.2rem;
    padding: 4px 10px;
  }
}

.top-yframesystem {
  padding: 0 30px 110px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-yframesystem {
    padding: 0 30px 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-yframesystem {
    padding: 0 20px 50px;
  }
}
.top-yframesystem__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.top-yframesystem-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-image: url(../img/top/bg_yframesystem.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  padding: 50px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-yframesystem-box {
    padding: 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-yframesystem-box {
    display: block;
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-yframesystem-box {
    padding: 20px;
  }
}
.top-yframesystem-box__body {
  width: 520px;
  color: #ffffff;
  padding-top: 12px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-yframesystem-box__body {
    width: 420px;
    padding-top: 15px;
  }
}
@media screen and (max-width: 834px) {
  .top-yframesystem-box__body {
    width: 100%;
    padding-top: 0;
  }
}
.top-yframesystem-box__body__tit {
  font-weight: 500;
  line-height: 1;
  border-bottom: 1px solid rgba(222, 222, 222, 0.3);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.top-yframesystem-box__body__catch {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin-bottom: 14px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-yframesystem-box__body__catch {
    font-size: 2.7rem;
    letter-spacing: 0.15em;
  }
}
@media screen and (max-width: 834px) {
  .top-yframesystem-box__body__catch {
    font-size: 3rem;
    letter-spacing: 0.2em;
  }
}
@media screen and (max-width: 599px) {
  .top-yframesystem-box__body__catch {
    font-size: 2.4rem;
    letter-spacing: 0.15em;
    line-height: 1.3;
  }
}
@media screen and (max-width: 320px) {
  .top-yframesystem-box__body__catch {
    font-size: 2.2rem;
  }
}
.top-yframesystem-box__body__text {
  line-height: 1.8;
}
.top-yframesystem-box__body__btn-box {
  margin-top: 30px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .top-yframesystem-box__body__btn-box {
    text-align: right;
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-yframesystem-box__body__btn-box {
    margin-top: 10px;
  }
}
.top-yframesystem-box__body__btn-box__btn {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: underline;
  padding: 11px 57px 11px 0;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top-yframesystem-box__body__btn-box__btn::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.top-yframesystem-box__body__btn-box__btn::after {
  position: absolute;
  content: "";
  top: 16px;
  right: 17px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #9e5225;
  border-right: 2px solid #9e5225;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .top-yframesystem-box__body__btn-box__btn:hover {
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .top-yframesystem-box__body__btn-box__btn:hover::before {
    background-color: inherit;
    border: 1px solid #ffffff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .top-yframesystem-box__body__btn-box__btn:hover::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.top-yframesystem-box__img {
  width: calc(99.9% - 520px);
  padding-left: 40px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-yframesystem-box__img {
    width: calc(99.9% - 420px);
    padding-left: 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-yframesystem-box__img {
    width: 100%;
    padding-left: 0;
    margin-top: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-yframesystem-box__img {
    margin-top: 20px;
  }
}
.top-yframesystem-box__img img {
  width: 100%;
  border-radius: 6px;
}

.top-works {
  background-image: url(../img/top/bg_works.webp);
  background-position: right 32% top;
  background-repeat: no-repeat;
  background-size: 626px auto;
  background-color: #f4f4f4;
  padding: 110px 60px 110px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .top-works {
    background-size: 563.4px auto;
    padding: 100px 50px 100px;
  }
}
@media screen and (max-width: 1024px) {
  .top-works {
    background-size: 438.2px auto;
    padding: 80px 30px 80px;
  }
}
@media screen and (max-width: 834px) {
  .top-works {
    background-position: right 16px top;
  }
}
@media screen and (max-width: 599px) {
  .top-works {
    background-size: 313px auto;
    padding: 60px 20px 60px;
  }
}
.top-works__inner {
  max-width: 1500px;
  margin: 0 auto;
}
.top-works__tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #352b27;
  font-weight: 500;
  line-height: 1;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 21px;
  margin-bottom: 38px;
}
@media screen and (max-width: 834px) {
  .top-works__tit {
    padding-bottom: 16px;
    margin-bottom: 30px;
  }
}
.top-works__tit__sec {
  font-size: 1.3rem;
}
.top-works__title-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: baseline;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .top-works__title-box {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 834px) {
  .top-works__title-box {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-works__title-box {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-works__title-box {
    display: block;
  }
}
.top-works__title-box__title01 {
  color: #282828;
  font-size: 11.5rem;
  font-family: "Hind", sans-serif;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .top-works__title-box__title01 {
    font-size: 9.7rem;
  }
}
@media screen and (max-width: 834px) {
  .top-works__title-box__title01 {
    font-size: 7.9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-works__title-box__title01 {
    font-size: 6.1rem;
  }
}
.top-works__title-box__title02 {
  color: #282828;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.3;
  margin-left: 1.8em;
}
@media screen and (max-width: 1024px) {
  .top-works__title-box__title02 {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 834px) {
  .top-works__title-box__title02 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-works__title-box__title02 {
    font-size: 2.2rem;
    margin-left: 0;
  }
}
.top-works__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 45px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1400px) {
  .top-works__list {
    gap: 23px;
  }
}
@media screen and (max-width: 834px) {
  .top-works__list {
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-works__list {
    gap: 15px 10px;
  }
}
@media screen and (max-width: 320px) {
  .top-works__list {
    gap: 15px 0;
  }
}
.top-works__list__item {
  width: calc((99.9% - 138px) / 4);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1400px) {
  .top-works__list__item {
    width: calc((99.9% - 69px) / 4);
  }
}
@media screen and (max-width: 834px) {
  .top-works__list__item {
    width: calc((99.9% - 30px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-works__list__item {
    width: calc((99.9% - 10px) / 2);
  }
}
@media screen and (max-width: 320px) {
  .top-works__list__item {
    width: 100%;
  }
}
.top-works__btn-box {
  width: 100%;
  max-width: 180px;
  margin: 40px 0 0 auto;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .top-works__btn-box {
    margin: 30px 0 0 auto;
  }
}
.top-works__btn-box__btn {
  display: block;
  color: #000000;
  font-size: 1.7rem;
  font-family: "Hind", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border: 1px solid #282828;
  border-radius: 50px;
  padding: 16px 10px 15px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .top-works__btn-box__btn:hover {
    color: #ffffff;
    background-color: #352b27;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

.top-flow {
  position: relative;
  overflow: hidden;
}
.top-flow::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/bg_flow.webp);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 1025px) {
  .top-flow:hover::before {
    transform: scale(1.1);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .top-flow:hover > a::before {
    background-color: transparent;
  }
  .top-flow:hover > a::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.top-flow > a {
  position: relative;
  display: block;
  color: #ffffff;
  padding: 95px 30px 168px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-flow > a {
    padding: 80px 30px 168px;
  }
}
@media screen and (max-width: 834px) {
  .top-flow > a {
    padding: 80px 30px 145px;
  }
}
@media screen and (max-width: 599px) {
  .top-flow > a {
    padding: 60px 20px 127px;
  }
}
.top-flow > a::before {
  position: absolute;
  content: "";
  left: calc((100% - 40px) / 2);
  bottom: 80px;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .top-flow > a::before {
    bottom: 67px;
  }
}
@media screen and (max-width: 599px) {
  .top-flow > a::before {
    bottom: 55px;
  }
}
.top-flow > a::after {
  position: absolute;
  content: "";
  left: calc((100% - 10px) / 2);
  bottom: 96px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #303030;
  border-right: 2px solid #303030;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .top-flow > a::after {
    bottom: 83px;
  }
}
@media screen and (max-width: 599px) {
  .top-flow > a::after {
    bottom: 71px;
  }
}
.top-flow__inner {
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
}
.top-flow__title {
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 1.3;
  background-image: url(../img/common/icon_meeting.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 56px auto;
  padding-top: 88px;
  margin-bottom: 25px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-flow__title {
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 834px) {
  .top-flow__title {
    font-size: 2.6rem;
    background-size: 50px auto;
    padding-top: 75px;
  }
}
@media screen and (max-width: 599px) {
  .top-flow__title {
    font-size: 2.3rem;
    background-size: 44px auto;
    padding-top: 62px;
  }
}
.top-flow__text {
  max-width: 310px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-align: left;
  margin: 0 auto 40px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .top-flow__text {
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 320px) {
  .top-flow__text {
    font-size: 1.3rem;
  }
}
.top-flow__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  gap: 10px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .top-flow__list {
    gap: 8px;
  }
}
.top-flow__list__txt {
  width: calc((99.9% - 20px) / 3);
  line-height: 1;
  border: 1px solid #ffffff;
  border-radius: 3px;
  padding: 31px 5px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .top-flow__list__txt {
    font-size: 1.7rem;
    padding: 26px 5px;
  }
}
@media screen and (max-width: 599px) {
  .top-flow__list__txt {
    width: calc((99.9% - 16px) / 3);
    font-size: 1.8rem;
    padding: 20px 5px;
  }
}

.top-bnr {
  background-color: #e6e6e6;
  padding: 70px 30px 70px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-bnr {
    padding: 60px 30px 60px;
  }
}
@media screen and (max-width: 834px) {
  .top-bnr {
    padding: 50px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-bnr {
    padding: 45px 20px 45px;
  }
}
.top-bnr__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .top-bnr__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}
.top-bnr__list__item {
  width: 100%;
  max-width: 270px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .top-bnr__list__item {
    max-width: 240px;
  }
}
.top-bnr__list__item > a {
  display: block;
}
.top-bnr__list__item > a img {
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .top-bnr__list__item > a:hover {
    transform: translateY(-3px);
  }
}

.top-contact {
  padding: 100px 30px 100px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-contact {
    padding: 80px 30px 80px;
  }
}
@media screen and (max-width: 834px) {
  .top-contact {
    padding: 80px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-contact {
    padding: 60px 20px 40px;
  }
}
.top-contact__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.top-contact__title {
  font-size: 5.5rem;
  font-family: "Hind", sans-serif;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  margin-bottom: 15px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-contact__title {
    font-size: 5.1rem;
  }
}
@media screen and (max-width: 834px) {
  .top-contact__title {
    font-size: 4.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-contact__title {
    font-size: 4.2rem;
  }
}
.top-contact__text {
  color: #282828;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .top-contact__text {
    text-align: left;
  }
}
.top-contact__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 1px solid #e9e9e9;
  padding-top: 40px;
  margin-top: 45px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .top-contact__list {
    display: block;
    border-top: none;
    padding-top: 0;
    margin-top: 20px;
  }
}
.top-contact__list__item {
  align-self: stretch;
}
.top-contact__list__item__tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  border-right: 1px solid #e9e9e9;
  padding: 20px 70px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-contact__list__item__tel {
    padding: 20px 60px 20px 0;
  }
}
@media screen and (max-width: 834px) {
  .top-contact__list__item__tel {
    border-right: none;
    border-bottom: 1px solid #e9e9e9;
    padding: 30px 15px 30px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-contact__list__item__tel {
    padding: 20px 15px 20px 0;
  }
}
.top-contact__list__item__tel__num {
  color: #000000;
  font-size: 4rem;
  font-family: "Hind", sans-serif;
  font-weight: 600;
  line-height: 1;
  background-image: url(../img/common/icon_tel.svg);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 28px auto;
  padding-left: 35px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .top-contact__list__item__tel__num {
    font-size: 3.7rem;
  }
}
@media screen and (max-width: 320px) {
  .top-contact__list__item__tel__num {
    font-size: 3.5rem;
    background-size: 26px auto;
  }
}
.top-contact__list__item__tel__time {
  color: #282828;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.15;
}
@media screen and (max-width: 320px) {
  .top-contact__list__item__tel__time {
    font-size: 1.3rem;
  }
}
.top-contact__list__item__contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 20px 50px;
  margin: 0 20px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .top-contact__list__item__contact {
    padding: 20px 0;
    margin: 0 0 0 60px;
  }
}
@media screen and (max-width: 834px) {
  .top-contact__list__item__contact {
    display: block;
    text-align: center;
    padding: 30px 0;
    margin: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-contact__list__item__contact {
    padding: 20px 0;
  }
}
.top-contact__list__item__contact__txt {
  display: inline-block;
  color: #282828;
  font-size: 2.1rem;
  line-height: 1;
  background-image: url(../img/common/icon_mail.svg), url(../img/common/icon_target_gray.svg);
  background-position: left top 3px, right top 3px;
  background-repeat: no-repeat, no-repeat;
  background-size: 30px auto, 23px auto;
  padding: 2px 34px 2px 45px;
}
@media screen and (max-width: 599px) {
  .top-contact__list__item__contact__txt {
    font-size: 1.7rem;
    padding: 4px 34px 4px 45px;
  }
}
@media screen and (max-width: 320px) {
  .top-contact__list__item__contact__txt {
    font-size: 1.4rem;
    background-size: 27px auto, 21px auto;
    padding: 4px 29px 4px 40px;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-contact__list__item__contact:hover {
    background-color: #f4f4f4;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

/*--------------------------------------------------------
新着情報
----------------------------------------------------------*/
.news-info-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
  width: 620px;
  margin: 0 auto 60px;
  gap: 20px;
}
@media screen and (max-width: 834px) {
  .news-info-tab {
    width: 90%;
    margin-bottom: 45px;
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .news-info-tab {
    width: 96%;
    margin-bottom: 30px;
    gap: 5px;
  }
}
.news-info-tab__item {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 834px) {
  .news-info-tab__item {
    width: calc((100% - 45px) / 4);
  }
}
@media screen and (max-width: 599px) {
  .news-info-tab__item {
    width: calc((100% - 15px) / 4);
  }
}
.news-info-tab__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #222222;
  font-size: 1.7rem;
  font-family: "Hind", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border: 1px solid #352b27;
  border-radius: 40px;
  padding: 12px 5px 10px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .news-info-tab__item a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .news-info-tab__item a {
    font-size: 1.5rem;
    padding: 10px 5px 8px;
  }
}
@media print, screen and (min-width: 1025px) {
  .news-info-tab__item a:hover {
    color: #ffffff;
    background-color: #352b27;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.news-info-tab__item.active a {
  color: #ffffff;
  background-color: #352b27;
}

.news-info-list {
  border-top: 1px solid #e9e9e9;
}
@media screen and (max-width: 599px) {
  .news-info-list {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.news-info-list__item {
  border-bottom: 1px solid #e9e9e9;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.news-info-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 20px 39px 20px 0;
}
@media screen and (max-width: 834px) {
  .news-info-link {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 17px 33px 17px 0;
  }
}
@media screen and (max-width: 599px) {
  .news-info-link {
    padding: 14px 33px 14px 10px;
  }
}
.news-info-link::before {
  position: absolute;
  content: "";
  top: calc((100% - 24px) / 2);
  right: 0;
  width: 24px;
  height: 24px;
  background-color: #352b27;
  border-radius: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .news-info-link::before {
    top: calc((100% - 21px) / 2);
    right: 0;
    width: 21px;
    height: 21px;
  }
}
@media screen and (max-width: 599px) {
  .news-info-link::before {
    top: calc((100% - 18px) / 2);
    right: 10px;
    width: 18px;
    height: 18px;
  }
}
.news-info-link::after {
  position: absolute;
  content: "";
  top: calc((100% - 8px) / 2);
  right: 10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 834px) {
  .news-info-link::after {
    top: calc((100% - 7px) / 2);
    right: 8px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 599px) {
  .news-info-link::after {
    top: calc((100% - 6px) / 2);
    right: 17px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.news-info-link__img {
  width: 200px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .news-info-link__img {
    width: 150px;
  }
}
@media screen and (max-width: 599px) {
  .news-info-link__img {
    width: 100px;
  }
}
@media screen and (max-width: 320px) {
  .news-info-link__img {
    width: 80px;
  }
}
.news-info-link__img img {
  width: 100%;
  border-radius: 5px;
}
.news-info-link__body {
  width: calc(99.9% - 200px);
  padding-left: 30px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .news-info-link__body {
    width: calc(99.9% - 150px);
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .news-info-link__body {
    width: calc(99.9% - 100px);
    padding-left: 10px;
  }
}
@media screen and (max-width: 320px) {
  .news-info-link__body {
    width: calc(99.9% - 80px);
  }
}
.news-info-link__body__tit {
  margin-bottom: 5px;
}
.news-info-link__body__tit__date {
  display: inline-block;
  width: 88px;
  color: #929292;
  font-size: 1.5rem;
  font-family: "Hind", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .news-info-link__body__tit__date {
    width: 82px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .news-info-link__body__tit__date {
    width: 72px;
    font-size: 1.3rem;
  }
}
.news-info-link__body__text {
  color: #000000;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .news-info-link__body__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .news-info-link__body__text {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 1025px) {
  .news-info-link:hover {
    opacity: 0.8;
    transform: translateX(2px);
  }
}
@media screen and (max-width: 599px) {
  .news-info-link--top {
    padding: 14px 38px 14px 20px;
  }
  .news-info-link--top::before {
    right: 15px;
  }
  .news-info-link--top::after {
    right: 22px;
  }
}
.news-info-link--top .news-info-link__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  padding-left: 0;
}
@media screen and (max-width: 834px) {
  .news-info-link--top .news-info-link__body {
    display: block;
  }
}
.news-info-link--top .news-info-link__body .news-info-link__body__tit {
  width: 210px;
  margin-bottom: 0;
}
@media screen and (max-width: 834px) {
  .news-info-link--top .news-info-link__body .news-info-link__body__tit {
    width: 100%;
    margin-bottom: 5px;
  }
}
.news-info-link--top .news-info-link__body .news-info-link__body__text {
  width: calc(99.9% - 210px);
  padding-top: 4px;
}
@media screen and (max-width: 834px) {
  .news-info-link--top .news-info-link__body .news-info-link__body__text {
    width: 100%;
  }
}

.entry-title-wrap {
  position: relative;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 25px;
  margin-bottom: 40px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .entry-title-wrap {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .entry-title-wrap {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
.entry-title-wrap__txt {
  padding-left: 2px;
  margin-bottom: 15px;
}
.entry-title-wrap__txt__date {
  display: inline-block;
  width: 88px;
  color: #929292;
  font-size: 1.5rem;
  font-family: "Hind", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .entry-title-wrap__txt__date {
    width: 82px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .entry-title-wrap__txt__date {
    width: 72px;
    font-size: 1.3rem;
  }
}
.entry-title-wrap__title {
  font-size: 2.9rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .entry-title-wrap__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .entry-title-wrap__title {
    font-size: 1.9rem;
  }
}

.news-info-btn-box {
  text-align: center;
  border-top: 1px solid #e9e9e9;
  padding-top: 50px;
  margin-top: 50px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.news-info-btn-box__btn {
  width: 100%;
  max-width: 220px;
}

.no-news {
  font-weight: 500;
  text-align: center;
  background-color: #f4f4f4;
  padding: 10px;
}

/*--------------------------------------------------------
charm
----------------------------------------------------------*/
.charm-index-list__item {
  margin-bottom: 50px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .charm-index-list__item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .charm-index-list__item {
    margin-bottom: 20px;
  }
}
.charm-index-list__item:last-child {
  margin-bottom: 0;
}

.charm-index-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #352b27;
  border-radius: 3px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .charm-index-box {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.charm-index-box__img {
  width: calc(99.9% - 550px);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .charm-index-box__img {
    width: calc(99.9% - 500px);
  }
}
@media screen and (max-width: 1024px) {
  .charm-index-box__img {
    width: calc(99.9% - 400px);
  }
}
@media screen and (max-width: 834px) {
  .charm-index-box__img {
    width: calc(99.9% - 300px);
  }
}
@media screen and (max-width: 599px) {
  .charm-index-box__img {
    width: 100%;
  }
}
.charm-index-box__img img {
  object-fit: cover;
  object-position: center bottom !important;
  width: 100%;
  height: 100%;
  border-radius: 3px 0 0 3px;
}
.charm-index-box__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 550px;
  color: #ffffff;
  padding: 70px 60px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .charm-index-box__body {
    width: 500px;
    padding: 60px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .charm-index-box__body {
    width: 400px;
    padding: 50px 40px;
  }
}
@media screen and (max-width: 834px) {
  .charm-index-box__body {
    width: 300px;
    padding: 40px 30px;
  }
}
@media screen and (max-width: 599px) {
  .charm-index-box__body {
    width: 100%;
    padding: 30px 20px;
  }
}
.charm-index-box__body__title {
  width: 100%;
  font-size: 4.5rem;
  font-family: "Hind", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .charm-index-box__body__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .charm-index-box__body__title {
    font-size: 3.5rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .charm-index-box__body__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 320px) {
  .charm-index-box__body__title {
    font-size: 2.5rem;
  }
}
.charm-index-box__body__text {
  width: 100%;
  line-height: 1.85;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .charm-index-box__body__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 834px) {
  .charm-index-box__body__text {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
}
.charm-index-box__body__btn-box {
  width: 100%;
  max-width: 180px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .charm-index-box__body__btn-box {
    max-width: 100%;
  }
}
.charm-index-box__body__btn-box__btn {
  display: block;
  color: #ffffff;
  font-size: 1.7rem;
  font-family: "Hind", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  background-color: #413834;
  border-radius: 50px;
  padding: 16px 10px 15px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .charm-index-box__body__btn-box__btn {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .charm-index-box__body__btn-box__btn {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 1025px) {
  .charm-index-box__body__btn-box__btn:hover {
    color: #352b27;
    background-color: #ffffff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

/*--------------------------------------------------------
建築事例集
----------------------------------------------------------*/
.works-info-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  width: calc(99.9% - 130px);
  margin: 0 auto 60px;
  gap: 20px;
}
@media print, screen and (max-width: 1200px) {
  .works-info-tab {
    width: 95%;
    gap: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .works-info-tab {
    width: 70%;
    gap: 10px;
  }
}
@media screen and (max-width: 834px) {
  .works-info-tab {
    width: 80%;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 599px) {
  .works-info-tab {
    width: 100%;
    margin-bottom: 30px;
    gap: 5px;
  }
}
.works-info-tab__item {
  width: calc((100% - 30px - 100px) / 6);
}
@media print, screen and (max-width: 1200px) {
  .works-info-tab__item {
    width: calc((100% - 30px - 75px) / 6);
  }
}
@media screen and (max-width: 1024px) {
  .works-info-tab__item {
    width: calc((100% - 30px - 20px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .works-info-tab__item {
    width: calc((100% - 30px - 10px) / 3);
  }
}
.works-info-tab__item--aff {
  width: calc((100% - 30px - 100px) / 6 + 30px);
}
@media print, screen and (max-width: 1200px) {
  .works-info-tab__item--aff {
    width: calc((100% - 30px - 75px) / 6 + 30px);
  }
}
@media screen and (max-width: 1024px) {
  .works-info-tab__item--aff {
    width: calc((100% - 30px - 20px) / 3 + 30px);
  }
}
@media screen and (max-width: 599px) {
  .works-info-tab__item--aff {
    width: calc((100% - 30px - 10x) / 3 + 30px);
  }
}
.works-info-tab__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #222222;
  font-size: 1.6rem;
  font-family: "Hind", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border: 1px solid #352b27;
  border-radius: 40px;
  padding: 12px 5px 10px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .works-info-tab__item a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .works-info-tab__item a {
    font-size: 1.2rem;
    padding: 10px 5px 8px;
  }
}
@media screen and (max-width: 320px) {
  .works-info-tab__item a {
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 1025px) {
  .works-info-tab__item a:hover {
    color: #ffffff;
    background-color: #352b27;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.works-info-tab__item.active a {
  color: #ffffff;
  background-color: #352b27;
}

.works-info-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .works-info-list {
    gap: 20px;
  }
}
@media screen and (max-width: 834px) {
  .works-info-list {
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .works-info-list {
    gap: 15px 10px;
  }
}
@media screen and (max-width: 320px) {
  .works-info-list {
    gap: 15px 0;
  }
}
.works-info-list__item {
  width: calc((99.9% - 80px) / 3);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (max-width: 1200px) {
  .works-info-list__item {
    width: calc((99.9% - 40px) / 3);
  }
}
@media screen and (max-width: 834px) {
  .works-info-list__item {
    width: calc((99.9% - 30px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .works-info-list__item {
    width: calc((99.9% - 10px) / 2);
  }
}
@media screen and (max-width: 320px) {
  .works-info-list__item {
    width: 100%;
  }
}

.works-slider-wrap {
  background-color: #f4f4f4;
  border-radius: 3px;
  padding: 70px 50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 834px) {
  .works-slider-wrap {
    padding: 60px 60px 40px;
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media screen and (max-width: 599px) {
  .works-slider-wrap {
    padding: 30px 40px 20px;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 50px;
  }
}
.works-slider-wrap__sBlock {
  position: relative;
}
.works-slider-wrap__sBlock .slider.slider-for1 {
  padding-left: calc((100% - 700px) / 2);
  padding-right: calc((100% - 700px) / 2);
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .works-slider-wrap__sBlock .slider.slider-for1 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .works-slider-wrap__sBlock .slider.slider-for1 {
    margin-bottom: 10px;
  }
}
.works-slider-wrap__sBlock .slider.slider-for1 img {
  width: 100%;
}
.works-slider-wrap__sBlock .slider.slider-nav1 {
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 834px) {
  .works-slider-wrap__sBlock .slider.slider-nav1 {
    padding-left: 0;
    padding-right: 0;
  }
}
.works-slider-wrap__sBlock .slider.slider-nav1 .slick-list {
  padding: 0 !important;
}
.works-slider-wrap__sBlock .slider.slider-nav1 .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.works-slider-wrap__sBlock .slider .next {
  display: block;
  position: absolute;
  top: calc(50% - 20px);
  right: 0;
  width: 40px;
  height: 40px;
  background-image: url(../img/common/next.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 5;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .works-slider-wrap__sBlock .slider .next {
    right: -10px;
  }
}
@media screen and (max-width: 834px) {
  .works-slider-wrap__sBlock .slider .next {
    right: -50px;
  }
}
@media screen and (max-width: 599px) {
  .works-slider-wrap__sBlock .slider .next {
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
    right: -35px;
  }
}
.works-slider-wrap__sBlock .slider .prev {
  display: block;
  position: absolute;
  top: calc(50% - 20px);
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url(../img/common/prev.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 5;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .works-slider-wrap__sBlock .slider .prev {
    left: -10px;
  }
}
@media screen and (max-width: 834px) {
  .works-slider-wrap__sBlock .slider .prev {
    left: -50px;
  }
}
@media screen and (max-width: 599px) {
  .works-slider-wrap__sBlock .slider .prev {
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
    left: -35px;
  }
}
.works-slider-wrap__sBlock .slider .next-s {
  display: block;
  position: absolute;
  top: calc(50% - 18px);
  right: 0;
  width: 28px;
  height: 36px;
  background-image: url(../img/common/next-s.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 5;
  cursor: pointer;
}
@media screen and (max-width: 834px) {
  .works-slider-wrap__sBlock .slider .next-s {
    top: calc(50% - 14.4px);
    right: -40px;
    width: 22.4px;
    height: 28.8px;
  }
}
@media screen and (max-width: 599px) {
  .works-slider-wrap__sBlock .slider .next-s {
    top: calc(50% - 10.8px);
    right: -27px;
    width: 16.8px;
    height: 21.6px;
  }
}
.works-slider-wrap__sBlock .slider .prev-s {
  display: block;
  position: absolute;
  top: calc(50% - 18px);
  left: 0;
  width: 28px;
  height: 36px;
  background-image: url(../img/common/prev-s.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 5;
  cursor: pointer;
}
@media screen and (max-width: 834px) {
  .works-slider-wrap__sBlock .slider .prev-s {
    top: calc(50% - 14.4px);
    left: -40px;
    width: 22.4px;
    height: 28.8px;
  }
}
@media screen and (max-width: 599px) {
  .works-slider-wrap__sBlock .slider .prev-s {
    top: calc(50% - 10.8px);
    left: -27px;
    width: 16.8px;
    height: 21.6px;
  }
}
.works-slider-wrap__sBlock .thumb-slider-wrap .slider > li {
  cursor: pointer;
}
.works-slider-wrap__sBlock .thumb-slider-wrap .slick-slider {
  margin: 0 0 0 -1px;
}
.works-slider-wrap__sBlock .thumb-slider-wrap .slick-slide {
  margin-left: 1px;
}

.works-title-wrap {
  position: relative;
  margin-bottom: 25px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .works-title-wrap {
    margin-bottom: 20px;
  }
}
.works-title-wrap__txt {
  margin-bottom: 10px;
}
.works-title-wrap__txt__category {
  display: inline-block;
  min-width: 90px;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  background-color: #372727;
  border-radius: 3px;
  padding: 6px 8px 8px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .works-title-wrap__txt__category {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .works-title-wrap__txt__category {
    font-size: 1.3rem;
  }
}
.works-title-wrap__title {
  font-size: 3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .works-title-wrap__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .works-title-wrap__title {
    font-size: 2.2rem;
  }
}

.works-info-btn-box {
  text-align: center;
  margin-top: 70px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 834px) {
  .works-info-btn-box {
    margin-top: 50px;
  }
}
.works-info-btn-box__btn {
  width: 100%;
  max-width: 220px;
}

.no-works {
  font-weight: 500;
  text-align: center;
  background-color: #f4f4f4;
  padding: 10px;
}/*# sourceMappingURL=style.css.map */