@charset "UTF-8";
@font-face {
  font-family: "NotoSansJP-Black";
  src: url(/fonts/NotoSansJP/NotoSansJP-Black.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Bold";
  src: url(/fonts/NotoSansJP/NotoSansJP-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Light";
  src: url(/fonts/NotoSansJP/NotoSansJP-Light.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Medium";
  src: url(/fonts/NotoSansJP/NotoSansJP-Medium.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Regular";
  src: url(/fonts/NotoSansJP/NotoSansJP-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Thin";
  src: url(/fonts/NotoSansJP/NotoSansJP-Thin.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Oswald-Medium";
  src: url(/fonts/Oswald/Oswald-Medium.woff) format("woff");
  font-display: swap;
}
/*16*1.75/2*/
/*======*/
/* 共通 */
/*======*/
/* PC/CT出し分け
------------------------------ */
@media (min-width: 1024px) {
  .t-sp {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .t-pc {
    display: none !important;
  }
}
/* PC/SP出し分け
------------------------------ */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }

  .sp-link {
    pointer-events: none;
    color: var(--txt-color);
    text-decoration: none;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* 共通アニメーション
------------------------------ */
.animate {
  opacity: 0;
}

.fadein {
  animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
}

.fade-in-bottom {
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-left {
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-right {
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

main {
  margin-top: 182px;
}
@media (max-width: 1023px) {
  main {
    margin-top: 82px;
  }
}

section .contents {
  width: 86%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  section .contents {
    width: 90%;
  }
}

section .contents p,
section .contents ul,
section .contents ol {
  margin-bottom: 1em;
}

/* フォーム
-----------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 8px;
  font-family: "NotoSansJP-Regular", sans-serif;
  color: var(--txt-color);
}

input[type=date],
select {
  max-width: 100%;
  padding: 8px;
  font-family: "NotoSansJP-Regular", sans-serif;
  color: var(--txt-color);
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  font-size: 1em;
  font-family: "NotoSansJP-Regular", sans-serif;
  color: var(--txt-color);
  cursor: pointer;
}

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

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

/* パンくず
-----------------------------------*/
.b-nv {
  width: 96%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .b-nv {
    display: none;
  }
}
.b-nv ul {
  display: flex;
  justify-content: flex-start;
  padding: 16px 0;
}
.b-nv ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 8px;
  font-size: 0.6875em;
  /*11/16*/
  line-height: 1;
}
.b-nv ul li a {
  color: var(--base-color);
  margin-right: 8px;
}
.b-nv ul li::after {
  content: "";
  display: block;
  border-color: #47433f;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 6px;
  vertical-align: middle;
  width: 6px;
  transform: rotate(-45deg);
}
.b-nv ul li:last-child::after {
  content: none;
}

/* タイトル
-----------------------------------*/
.title-area {
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .title-area {
    padding: 48px 0;
  }
}
.title-area .heading-title {
  margin-bottom: 0;
  font-size: 2.2625em;
  /*42/16*/
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1;
  letter-spacing: 0.3em;
  text-align: center;
}
@media (max-width: 767px) {
  .title-area .heading-title {
    font-size: 2em;
    /*28/14*/
  }
}

.heading01, .webpage h2 {
  margin: 104px 0 48px;
  padding-bottom: 24px;
  border-bottom: 3px solid #47433f;
  font-size: 1.875em;
  /*30/16*/
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading01, .webpage h2 {
    margin: 80px 0 40px;
    font-size: 1.714em;
    /*24/14*/
  }
}

.heading02, .webpage h3 {
  margin: 64px 0 40px;
  padding: 16px;
  background-color: #f2f4f4;
  font-size: 1.5em;
  /*24/16*/
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading02, .webpage h3 {
    margin: 32px 0 16px;
    font-size: 1.285em;
    /*18/14*/
  }
}

.heading03, .webpage h4 {
  position: relative;
  padding-left: 24px;
  margin: 56px 0 32px;
  font-size: 1.25em;
  /**/
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
.heading03::before, .webpage h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #000;
}
@media (max-width: 767px) {
  .heading03, .webpage h4 {
    margin: 24px 0 16px;
    font-size: 1.285em;
    /*18/14*/
  }
}

.heading04, .webpage h5 {
  margin: 32px 0 16px;
  font-size: 18px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading04, .webpage h5 {
    margin: 24px 0 16px;
    font-size: 1.1428em;
    /*16/14*/
  }
}

/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-txt {
  text-decoration: underline;
}

/* リンクボタン
-----------------------------------*/
.com-bt {
  display: inline-block;
  min-width: 278px;
  padding: 20px 48px;
  border: 1px solid #47433f;
  border-radius: 4px;
  background-color: #FFF;
  font-family: "NotoSansJP-Bold", sans-serif;
  font-size: 1.125em;
  /*18/16*/
  line-height: 1;
  color: var(--txt-color);
  letter-spacing: 0.1em;
  text-align: center;
  vertical-align: top;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .com-bt {
    display: block;
    width: 100%;
    min-width: initial;
    padding: 16px 32px;
    font-size: 0.88em;
    /*15/17*/
  }
}
.com-bt.next {
  position: relative;
}
.com-bt.next::after {
  content: "";
  position: absolute;
  display: block;
  right: 24px;
  top: 50%;
  margin-top: -3px;
  border-color: #47433f;
  border-style: solid;
  border-width: 0 2px 2px 0;
  height: 6px;
  vertical-align: middle;
  width: 6px;
  transform: rotate(-45deg);
}
.com-bt.prev {
  position: relative;
}
.com-bt.prev::before {
  content: "";
  position: absolute;
  display: block;
  left: 24px;
  top: 50%;
  margin-top: -3px;
  border-color: #47433f;
  border-style: solid;
  border-width: 0 2px 2px 0;
  height: 6px;
  vertical-align: middle;
  width: 6px;
  transform: rotate(135deg);
}
.com-bt:hover {
  text-decoration: none;
  border-color: var(--base-color);
  color: var(--base-color);
}
.com-bt:hover.next::after {
  border-color: var(--base-color);
  border-style: solid;
  border-width: 0 2px 2px 0;
  height: 6px;
  vertical-align: middle;
  width: 6px;
  transform: rotate(-45deg);
}
.com-bt:hover.prev::before {
  border-color: var(--base-color);
  border-style: solid;
  border-width: 0 2px 2px 0;
  height: 6px;
  vertical-align: middle;
  width: 6px;
  transform: rotate(135deg);
}

input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
  border: 1px solid #47433f;
  border-radius: 4px;
  background-color: #FFF;
  font-family: "NotoSansJP-Bold", sans-serif;
  font-size: 1.125em;
  /*18/16*/
  line-height: 1;
  cursor: pointer;
}
input[type=submit].com-bt:hover,
input[type=button].com-bt:hover,
button.com-bt:hover {
  text-decoration: none;
  border-color: var(--base-color);
  color: var(--base-color);
}

/*============*/
/* 共通・汎用 */
/*============*/
/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* 汎用カラム
-----------------------------------*/
.row:after {
  content: "";
  clear: both;
  display: block;
}

.multicolumn,
.multilist {
  overflow: hidden !important;
}

.multicolumn-left {
  float: left;
}

.multicolumn-right {
  float: right;
}

.multilist li {
  float: left;
}

/* 横並び
-----------------------------------*/
.com-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.com-wrap .img {
  width: 48%;
}
.com-wrap .txt {
  width: 48%;
}
.com-wrap.txt-left {
  flex-direction: row-reverse;
}

/* 横並びリスト
-----------------------------------*/
.list-col2,
.list-col3,
.list-col4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.list-col2 li {
  width: 48%;
  margin-bottom: 24px;
}
.list-col2 li:nth-child(even) {
  margin-left: 4%;
}

.list-col3 li {
  width: 32%;
  margin-bottom: 16px;
  margin-right: 2%;
}
.list-col3 li:nth-child(3n) {
  margin-right: 0;
}

.list-col4 li {
  width: 24%;
  margin-bottom: 16px;
  margin-right: 1.333%;
}
.list-col4 li:nth-child(4n) {
  margin-right: 0;
}

.com-list-bt {
  display: flex;
  justify-content: center;
  gap: 0 16px;
  margin-top: 120px;
}

/* メニューボタン
-----------------------------------*/
.list-com-link li {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .list-com-link li {
    margin-bottom: 8px;
  }
}
.list-com-link li .com-bt {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  font-size: 1.22em;
  /*22/18*/
}
@media (max-width: 767px) {
  .list-com-link li .com-bt {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 1em;
  }
}

/* 背景色
-----------------------------------*/
.bg-area01 {
  padding-bottom: 120px;
  background: #eff4f4;
  background: -moz-linear-gradient(to top, #eff4f4 0%, #FFF 100%);
  background: -webkit-linear-gradient(to top, #eff4f4 0%, #FFF 100%);
  background: linear-gradient(to bottom, #eff4f4 0%, #FFF 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$start-color+"", endColorstr=$end-color+"",GradientType=1 );
  overflow-y: hidden;
}
@media (max-width: 767px) {
  .bg-area01 {
    padding-bottom: 32px;
  }
}

.bg-area02 {
  padding-bottom: 120px;
  background-color: #f2f4f4;
  overflow-y: hidden;
}
@media (max-width: 767px) {
  .bg-area02 {
    padding-bottom: 32px;
  }
}

/* タブ切り替え
-----------------------------------*/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.tab-wrap button {
  padding: 0;
  background-color: transparent;
  border: none;
}

.tab-cts.disnon {
  display: none;
}

/* com-menu-sec
-----------------------------------*/
.menu-sec .tab-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0 2.13%;
  margin-top: 120px;
}
@media (max-width: 767px) {
  .menu-sec .tab-wrap {
    margin-top: 24px;
  }
}
.menu-sec .tab-wrap button {
  width: 23.4%;
  /*258/1100*/
  height: 100px;
  border: 3px solid #f2f4f4;
  border-bottom: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .menu-sec .tab-wrap button {
    height: 66px;
    border-width: 1px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}
.menu-sec .tab-wrap button .txL {
  display: block;
  font-family: "NotoSansJP-Bold", sans-serif;
  font-size: 1.4375em;
  /*23/16*/
}
@media (max-width: 767px) {
  .menu-sec .tab-wrap button .txL {
    font-size: 0.85em;
    /*12/14*/
  }
}
.menu-sec .tab-wrap button .txS {
  display: block;
  font-family: "NotoSansJP-Medium", sans-serif;
}
@media (max-width: 767px) {
  .menu-sec .tab-wrap button .txS {
    font-size: 0.714em;
    /*10/14*/
  }
}
.menu-sec .tab-wrap button.current {
  height: 114px;
  background-color: #f2f4f4;
}
@media (max-width: 767px) {
  .menu-sec .tab-wrap button.current {
    height: 72px;
  }
}
.menu-sec .tab-wrap button:hover {
  height: 114px;
}
@media (max-width: 767px) {
  .menu-sec .tab-wrap button:hover {
    height: 72px;
  }
}
.menu-sec .tab-cts {
  padding: 56px 0 100px;
}
@media (max-width: 767px) {
  .menu-sec .tab-cts {
    padding: 20px 0 28px;
  }
}
.menu-sec .list-bt {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 3.525%;
}
@media (max-width: 767px) {
  .menu-sec .list-bt {
    gap: 8px 1.92%;
  }
}
.menu-sec .list-bt li {
  width: 17.18%;
  /*189/1100*/
}
@media (max-width: 767px) {
  .menu-sec .list-bt li {
    width: 23.56%;
    /*82/348*/
  }
}
.menu-sec .list-bt li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-height: 194px;
  padding: 4px;
  border-radius: 8px;
  background-color: #FFF;
  filter: drop-shadow(0px 5px 0px #CCC);
  color: var(--txt-color);
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .menu-sec .list-bt li a {
    min-height: 84px;
    padding: 2px;
    border-radius: 4px;
    filter: drop-shadow(0px 2px 0px #CCC);
  }
}
.menu-sec .list-bt li a img {
  display: block;
  width: 100%;
  max-width: 105px;
}
@media (max-width: 767px) {
  .menu-sec .list-bt li a img {
    max-width: 56px;
  }
}
.menu-sec .list-bt li a span {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "NotoSansJP-Medium", sans-serif;
  line-height: 1.3;
  font-size: 1.375em;
  /*22/16*/
}
@media (max-width: 767px) {
  .menu-sec .list-bt li a span {
    font-size: 0.785em;
    /*11/14*/
  }
}
.menu-sec .list-bt li a:hover {
  transform: translateY(4px);
  filter: drop-shadow(0px 1px 0px #CCC);
  text-decoration: none;
}
.menu-sec .list-bt li a:hover img {
  opacity: 1 !important;
}

/* アコーディオン
-----------------------------------*/
.ac-menu {
  position: relative;
  margin-top: 24px;
  padding: 16px 64px 16px 24px;
  border: 1px solid var(--base-color);
  border-radius: 8px;
  line-height: 1;
  font-family: "NotoSansJP-Bold", sans-serif;
  cursor: pointer;
}
.ac-menu::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 calc(24px / 2) 16px calc(24px / 2);
  border-color: transparent transparent var(--base-color) transparent;
}
.ac-menu.open::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px calc(24px / 2) 0 calc(24px / 2);
  border-color: var(--base-color) transparent transparent transparent;
}

.ac-cts {
  display: none;
  margin-top: 8px;
  padding: 16px 24px;
  background-color: #f2f4f4;
  border-radius: 4px;
}

/* カラム幅
-----------------------------------*/
.w1000 {
  width: 1000px;
}

/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
  margin-left: 24px;
  list-style: disc;
}
.list-df li {
  margin-bottom: 8px;
}

/* リスト（ドット） */
.list-dot li {
  padding-left: 1em;
}

.list-dot li:before {
  content: "・";
  margin-left: -1em;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}

/* テーブル
-----------------------------------*/
/* 幅 */
col.colw05 {
  width: 5%;
}

col.colw10 {
  width: 10%;
}

col.colw15 {
  width: 15%;
}

col.colw20 {
  width: 20%;
}

col.colw25 {
  width: 25%;
}

col.colw30 {
  width: 30%;
}

col.colw35 {
  width: 35%;
}

col.colw40 {
  width: 40%;
}

col.colw45 {
  width: 45%;
}

col.colw50 {
  width: 50%;
}

/* テーブル */
.table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th {
  padding: 16px;
  border: solid 1px var(--base-color);
  background-color: #eff4f4;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .table th {
    padding: 8px 4px;
  }
}
.table td {
  padding: 16px;
  border: solid 1px var(--base-color);
}
@media (max-width: 767px) {
  .table td {
    padding: 8px 4px;
  }
}

/*# sourceMappingURL=common.css.map */
