@charset "utf-8";

/* ==================================================== */

/*  フォント
/* ==================================================== */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@600&display=swap");

/*  フォントサイズ
  /* ==================================================== */
:root {
  --fs-scale: 1;

  --fs-base-default: clamp(15px, 1.2vw, 16px);
  --fs-base: calc(var(--fs-base-default) * var(--fs-scale));

  --fs-16: var(--fs-base);
  --fs-12: calc(var(--fs-base) * 0.75);
  --fs-13: calc(var(--fs-base) * 0.8125);
  --fs-14: calc(var(--fs-base) * 0.875);
  --fs-15: calc(var(--fs-base) * 0.9375);
  --fs-18: calc(var(--fs-base) * 1.125);
  --fs-20: calc(var(--fs-base) * 1.25);
  --fs-22: calc(var(--fs-base) * 1.375);
  --fs-24: calc(var(--fs-base) * 1.5);
  --fs-26: calc(var(--fs-base) * 1.625);
  --fs-28: calc(var(--fs-base) * 1.75);
  --fs-30: calc(var(--fs-base) * 1.875);
  --fs-32: calc(var(--fs-base) * 2);
  --fs-38: calc(var(--fs-base) * 2.375);
  --fs-42: calc(var(--fs-base) * 2.625);
  --fs-46: calc(var(--fs-base) * 2.825);
}

/*  カラー
/* ==================================================== */
:root {
  --c-blue: #35609d;
  --c-lightblue: #577094;
  --c-yellow: #e2cd61;
  --c-green: #a3bda0;
}

.green {
  background: var(--c-green);
}
.yellow {
  background: var(--c-yellow);
}
.blue {
  background: var(--c-blue);
}

/* ==================================================== */
/*  基本
/* ==================================================== */
html {
  overflow-x: hidden;
}
html,
body {
  width: 100%;
  height: 100%;
  font-size: var(--fs-base);
}
body {
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  /* font-family: "Noto Sans JP", "Helvetica Neue", "Arial", sans-serif; */
  font-size: var(--fs-16);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #000;

  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
body.active {
  /*ハンバーガーメニューを開いたら背景固定*/
  position: fixed;
  width: 100%;
}
main {
  display: block;
}
main figure {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
a:hover {
  transition: opacity 0.3s ease;
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  a a[href^="tel"] {
    pointer-events: none;
  }
  a:hover {
    transition: opacity 0.3s ease;
    opacity: 0.7;
  }
}
img {
  width: 100%;
  height: auto;
}

img[src$=".svg"] {
  /*IEでimgタグのsrcにsvgを指定した時に崩れる防止*/
  width: 100%;
  height: auto;
}
sup {
  position: relative;
  top: -0.1em;
  font-size: var(--fs-12);
  vertical-align: top;
}

figure img {
  border-radius: 24px;
}

/* fontsize */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}
h1 {
  font-size: var(--fs-28);
  line-height: 1.6;
}
h2 {
  font-size: var(--fs-26);
}
h3 {
  font-size: var(--fs-24);
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: var(--fs-24);
  }
  h2 {
    font-size: var(--fs-22);
  }
  h3 {
    font-size: var(--fs-20);
  }
}

/* 文字サイズ */
html.base-medium {
  --fs-scale: 1;
} /* 標準 */
html.base-large {
  --fs-scale: 1.12;
} /* +12% */

/* ==================================================== */

/*  全ページ共通（common）クラス
/* ==================================================== */
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;

  -js-display: flex;
}
.c-pc-only {
  display: inline-block !important;
}
.c-tab-only {
  display: none !important;
}
.c-sp-only {
  display: none !important;
}
.c-tab-over {
  display: inline-block !important;
}
.c-tab-less {
  display: none !important;
}
.clear {
  clear: both !important;
}
.c-justify {
  text-align: justify;
  text-justify: inter-ideograph;
  text-justify: inter-character;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-pc-only {
    display: none !important;
  }
  .c-tab-only {
    display: inline-block !important;
  }
  .c-sp-only {
    display: none !important;
  }
  .c-tab-over {
    display: inline-block !important;
  }
  .c-tab-less {
    display: inline-block !important;
  }
}
@media screen and (max-width: 767px) {
  .c-pc-only {
    display: none !important;
  }
  .c-tab-only {
    display: none !important;
  }
  .c-sp-only {
    display: inline-block !important;
  }
  .c-tab-over {
    display: none !important;
  }
  .c-tab-less {
    display: inline-block !important;
  }
}

/* ==================================================== */
/*  共通パーツ
/* ==================================================== */

.btn-w {
  position: relative;
  display: block;
  width: 240px;
  margin: 40px auto 0;
  padding: 12px 0;
  border-radius: 40px;
  background: #fff;
  font-size: var(--fs-15);
  font-weight: bold;
  text-align: center;
  color: #35609d;
}

.btn-w:before {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 20px;
  height: 15px;
  background: url(../img/common/contact_icon_b.svg) no-repeat;
  content: "";
  transform: translate(0, -50%);
}

.buck_arrow {
  font-size: var(--fs-14);
  text-align: center;
}

/* 共通矢印 */
.arrow-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  /* transition: background-color 0.3s ease, border-color 0.3s ease; */
  transition: fill 0.3s ease;
}
.arrow-button svg path {
  transition: fill 0.3s ease;

  fill: #35609d;
}

a:hover .arrow-button svg path {
  fill: #fff;
}

/* 右向き矢印 */
.arrow_right {
  display: flex;
  align-items: center;
  font-size: var(--fs-14);
  font-weight: bold;

  gap: 8px;
}

.arrow_right .arrow-button {
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  background-color: #fff;
}

.arrow_right:hover .arrow-button {
  border-color: #35609d;
  background-color: #35609d;
}

/* 左向き矢印 */
.arrow_left {
  display: flex;
  align-items: center;
  font-size: var(--fs-14);
  font-weight: bold;
  gap: 8px;
  justify-content: center;
}

.arrow_left .arrow-button {
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  background-color: #fff;
}

.arrow_left:hover .arrow-button {
  border-color: #35609d;
  background-color: #35609d;
}

.arrow_left .arrow-button svg {
  transform: rotate(180deg);
}

/* 右向きボタン */
.btn_right {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px 10px 4px 48px;
  border: 1px solid #35609d;
  border-radius: 99px;
  font-size: var(--fs-14);
  font-weight: bold;
  color: #35609d;
  background: #fff;
  transition: fill 0.3s ease;
}

.btn_right:hover {
  background: #35609d;
  color: #fff;
}

.btn_right .arrow-button {
  margin-left: 10px;
}

.btn-polygon {
  position: relative;
  display: block;
  width: 240px;
  margin: 40px auto 0;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 40px;
}

.btn-polygon input {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  display: block;
  width: 100%;
  padding: 16px 0;
  border: 1px solid var(--c-blue);
  border-radius: 40px;
  background: #fff;
  color: var(--c-blue);
  font-size: var(--fs-15);
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease;
  box-sizing: border-box;
}

.btn-polygon-complete {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  display: block;
  width: 240px;
  margin: 0 auto;
  padding: 16px 0 16px 6px;
  border: 1px solid var(--c-blue);
  border-radius: 40px;
  background: #fff;
  color: var(--c-blue);
  font-size: var(--fs-15);
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease;
  box-sizing: border-box;
}

.btn-polygon input:hover,
.btn-polygon-complete:hover {
  background: var(--c-blue);
  color: #fff;
  opacity: 1;
}

.btn-polygon:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent var(--c-blue);
  transition: border-color 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.btn-polygon.polygon-left:after {
  right: auto;
  left: 10%;
  transform: translate(0, -50%) rotate(180deg);
}

.btn-polygon:hover::after,
.btn-polygon input:hover + .wpcf7-spinner + ::after {
  border-color: transparent transparent transparent #ffffff;
}

.btn-polygon .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 2;
}

.btn-polygon.polygon-prev {
}

.btn-polygon.polygon-prev input {
  background: #eaeaea;
  border-color: #eaeaea;
  padding: 16px 0;
  height: auto;
}

.btn-polygon.polygon-prev input:hover {
  background: #dcdcdc;
  color: var(--c-blue);
}

/* ==================================================== */
/*  ふわっと
/* ==================================================== */

/* 横並び */
.fade-in-item {
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(30px);
  opacity: 0;
}

.fade-in-container.is-visible .fade-in-item {
  transform: translateY(0);
  opacity: 1;
}

.fade-in-container.is-visible .fade-in-item:nth-child(1) {
  transition-delay: 0.2s;
}
.fade-in-container.is-visible .fade-in-item:nth-child(2) {
  transition-delay: 0.4s;
}
.fade-in-container.is-visible .fade-in-item:nth-child(3) {
  transition-delay: 0.6s;
}
.fade-in-container.is-visible .fade-in-item:nth-child(4) {
  transition-delay: 0.8s;
}

/* 単独 */
.fade-in {
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(30px);
  opacity: 0;
}

.fade-in.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* ==================================================== */
/*  全ページ共通レイアウト
/* ==================================================== */
/*header*/
header {
  position: fixed;
  top: 0;
  z-index: 997;
  width: 100%;
  margin: 0 auto;
}
.l-header-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  background: #fff;
}
.l-header-area .logo {
  position: relative;
  z-index: 5;
  width: 180px;
  margin-left: 3%;
  border-radius: 0 0 42px 0;
  background: #fff;
}
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 76px;
}
.header-nav .nav-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-nav .nav-parent > li a {
  padding: 0 16px 30px;
  font-size: var(--fs-15);
  font-weight: bold;
}
.header-nav .nav-parent > li.is-current {
  color: #35609d;
}
.header-nav .nav-parent > li.up-nav {
  width: 100%;
  margin-right: 10px;
  padding-top: 6px;
}
.header-nav .nav-parent > li.up-nav .flex {
  align-items: center;
  justify-content: flex-end;
  font-size: var(--fs-14);
}
.header-nav .nav-parent > li.up-nav .fontsize-controller p {
  margin-right: 10px;
  padding-top: 2px;
  font-size: var(--fs-14);
  font-weight: bold;
  color: #35609d;
}
.fontsize-controller__button {
  margin: 0 2px;
  padding: 2px 18px 0;
  border-radius: 6px;
  background: #eee;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  user-select: none;
}
.fontsize-controller__button.active {
  background: #35609d;
  color: #fff;
}

.header-nav .nav-parent > li.header-nav-parent {
  position: relative;
}
.header-nav .nav-parent > li.header-nav-parent .header-nav-child.open {
  display: block;
}
.header-nav .nav-parent > li.header-nav-parent .header-nav-child {
  position: absolute;
  top: 30px;
  left: 50%;
  display: none;
  border-radius: 12px;
  background-color: #e5ebef;
  text-align: left;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.header-nav .nav-parent > li.header-nav-parent .header-nav-child li a {
  position: relative;
  display: block;
  width: 200px;
  padding: 16px 0 16px 30px;
  border-radius: 12px;
}
.header-nav .nav-parent > li.header-nav-parent .header-nav-child li a:hover {
  background: #366099;
  color: #fff;
}
.header-nav .nav-parent > li.header-nav-parent .header-nav-child li a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #366099;
  border-right: 2px solid #366099;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.header-nav .nav-parent > li.header-nav-parent .header-nav-child li a:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.header-nav .nav-parent > li.sp-only-nav,
.header-nav .menu-sns.sp-only-nav {
  display: none;
}
.header-nav .entry-btn {
  position: relative;
}
.header-nav .entry-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 138px;
  height: 100%;
  padding-top: 30px;
  background: #35609d;
  font-weight: bold;
  color: #fff;
}
.header-nav .entry-btn a:before {
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  width: 24px;
  height: 18px;
  margin: auto;
  background: url(../img/common/contact_icon.svg) no-repeat;
  content: "";
}
.header-hamburger {
  display: none;
}
@media (max-width: 1120px) {
  header {
    position: relative;
    background-color: transparent;
  }
  .l-header-area {
    position: relative;
    z-index: 4;
    height: 76px;
  }
  .l-header-area .logo {
    left: 3%;
    z-index: 999;
    width: 160px;
    margin-left: 0;
    padding: 0;
  }
  .header-nav {
    display: block;
  }
  .header-nav.active {
    display: block;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .header-nav.active li {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
  }
  .header-nav .nav-parent,
  .header-nav .entry-btn,
  .header-nav .up-nav,
  .header-nav .menu-sns.sp-only-nav {
    display: none;
  }
  .header-nav.active .nav-parent {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    padding: 120px 0;
    background-color: #fff;
  }
  .header-nav .nav-parent > li.header-nav-parent a {
    padding-bottom: 0;
  }
  /* .header-nav .nav-parent > li.header-nav-parent .menu_parent__wrapper .menu_parent {
    position: relative;
  }
  .header-nav .nav-parent > li.header-nav-parent .menu_parent__wrapper .menu_parent:before,
  .header-nav .nav-parent > li.header-nav-parent .menu_parent__wrapper .menu_parent:after {
    position: absolute;
    top: 50%;
    right: -8px;
    display: block;
    width: 12px;
    height: 1px;
    border: none;
    background: #000;
    content: "";
    -webkit-transition: all 0.4s;
            transition: all 0.4s;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .header-nav .nav-parent > li.header-nav-parent .menu_parent__wrapper .menu_parent:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .header-nav .nav-parent > li.header-nav-parent .menu_parent__wrapper .menu_parent.open {
    margin-bottom: 0;
  }
  .header-nav .nav-parent > li.header-nav-parent .menu_parent__wrapper .menu_parent.open:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  } */
  .header-nav .nav-parent > li.header-nav-parent .header-nav-child {
    position: relative;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    padding: 0 0 0 20px;
    background-color: #fff;
    text-align: left;
    color: #000;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .header-nav .nav-parent > li {
    padding: 12px 0;
    font-size: var(--fs-16);
  }
  .header-nav .nav-parent > li.sp-only-nav {
    display: block;
  }
  .header-nav .nav-parent > li a {
    position: relative;
    display: block;
    padding: 0;
  }
  .header-nav .nav-parent > li a::after {
    position: absolute;
    top: 50%;
    right: 2px;
    width: 7px;
    height: 7px;
    border: 2px solid #35609d;
    border-bottom: none;
    border-left: none;
    content: "";
    -webkit-transform: translateY(-50%);
    -webkit-transform: rotate(45deg);
    transform: translateY(-50%);
    transform: rotate(45deg);
  }
  .header-nav .entry-btn.active {
    position: relative;
    display: block;
    padding-top: 0;
    text-align: center;
    margin-bottom: 36px;
  }
  .header-nav .entry-btn.active a {
    width: 90%;
    max-width: 600px;
    height: 66px;
    margin: 0 auto;
    padding-top: 0;
    border-radius: 40px;
  }
  .header-nav .entry-btn.active a:before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 10%;
  }
  .header-hamburger {
    position: fixed;
    top: 20px;
    right: 5%;
    z-index: 998;
    display: block;
    width: 40px;
    height: 13px;
  }
  .header-hamburger span {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #000;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .header-hamburger span:first-of-type {
    top: 0;
  }
  .header-hamburger span:last-of-type {
    top: 100%;
  }
  .header-hamburger:after {
    position: absolute;
    bottom: -26px;
    padding-left: 2px;
    font-size: 76%;
    font-weight: bold;
    content: "MENU";
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .header-hamburger.active:after {
    content: "close";
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
  .header-hamburger.active span {
    display: none;
  }
  .header-hamburger.active span:first-of-type {
    display: block;
    top: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header-hamburger.active span:last-of-type {
    display: block;
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .active .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    overflow-y: scroll;
    width: 100%;
    height: 100vh;
    padding: 100px 0 0;
    background-color: #fff;
  }
  .active .l-header-area {
    padding: 0;
  }
  .header-nav .nav-parent.active {
    position: fixed;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: auto;
    padding: 30px 8.6%;
    background-color: #fff;
  }
  .active .header-nav .nav-parent > li a {
    display: block;
    font-size: var(--fs-16);
  }
  .active .header-nav .nav-parent > li.nav a:after {
    display: inline-block;
    width: 16.49px;
    height: 12.41px;
    margin: 8px 0 0 0;
    background-image: url(../img/common/arrow_02.svg);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    content: "";
  }
  .header-hamburger.active:after {
    content: none;
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
  .header-hamburger.active span:first-of-type {
    top: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header-hamburger.active span:last-of-type {
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .header-nav .menu-sns.sp-only-nav.active {
    display: flex;
    justify-content: center;
    gap: 40px;
  }
  .header-nav .menu-sns.sp-only-nav.active .sns {
    width: 30px;
  }
}

/*contact*/
#foot-contact {
  padding: 60px 0 120px;
  background: #e5ebef;
}

#foot-contact h2 {
  padding-bottom: 40px;
  font-size: var(--fs-32);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.3rem;
}

.foot_conatct__wrap {
  display: flex;
  justify-content: center;
  text-align: center;
}

.project__area {
  padding-right: 90px;
  border-right: 1px solid #abbcc8;
  text-align: center;
}

.room__area {
  padding-left: 90px;
}

.room__area .btn-w {
  margin: 10px auto 0;
  padding-left: 10px;
}

.foot_conatct__wrap h3 {
  padding-bottom: 20px;
  font-size: var(--fs-18);
  font-weight: normal;
}

.foot_conatct__wrap h3 span {
  font-size: var(--fs-20);
  font-weight: bold;
}

.foot_conatct__wrap h4 {
  text-align: center;
  color: #425f7f;
}

.foot_conatct__wrap .tel {
  position: relative;
  font-size: var(--fs-32);
  font-weight: bold;
  line-height: 1.3;
}

.foot_conatct__wrap .tel img {
  display: inline-block;
  width: 18px;
  margin-right: 5px;
}

.foot_conatct__wrap .tel a {
  position: relative;
}

.foot_conatct__wrap .tel a:before {
  position: absolute;
  top: 52%;
  left: -28px;
  width: 17px;
  height: 22px;
  background: url(../img/common/tel-icon.svg) no-repeat;
  content: "";
  transform: translate(0, -50%);
}

.foot_conatct__wrap p {
  margin-left: 20px;
  font-size: var(--fs-13);
}

@media screen and (max-width: 767px) {
  #foot-contact {
    padding: 40px 5% 160px;
  }
  .foot_conatct__wrap {
    display: block;
  }
  .project__area {
    padding-right: 0;
    padding-bottom: 30px;
    border-right: none;
    border-bottom: 1px solid #abbcc8;
  }
  .foot_conatct__wrap p {
    padding-left: 20px;
  }
  .foot_conatct__wrap .tel:before {
    left: 20px;
  }
  .room__area {
    padding-top: 30px;
    padding-left: 0;
  }
}

/*footer*/
footer {
  position: relative;
  padding: 0 5% 10px;
  background: #577094;
}

.foot-img {
  position: relative;
}

.foot-img .foot-img01 {
  position: absolute;
  top: -124px;
  width: 121px;
}
.foot-img .foot-img02 {
  position: absolute;
  top: -140px;
  right: 2%;
  width: 149px;
}

.footer-nav {
  padding-top: 60px;
}

.footer-wrap {
  justify-content: space-between;
}
.footer-left {
  width: 30%;
  max-width: 336px;
  margin-bottom: 20px;
}

.footer-left .footer-logo {
  max-width: 268px;
  margin-bottom: 20px;
}

.footer-logo figure img {
  border-radius: 0;
}

.footer-sns {
  display: flex;
}

.footer-sns .insta {
  width: 18px;
  margin-right: 20px;
}

.footer-sns .youtube {
  width: 25px;
}

.footer-right {
  display: flex;
  width: 60%;
}
.footer-right .foot_list {
  width: 25%;
  display: flex;
  flex-flow: column;
}
.footer-right .foot_list a {
  display: inline-block;
  font-size: var(--fs-14);
  line-height: 2;
  color: #fff;
  position: relative;
}
.footer-right .foot_list a:hover {
  text-decoration: underline;
}
footer .copyright {
  padding-top: 60px;
  font-size: var(--fs-13);
  text-align: right;
  color: #fff;
}
footer .pagetop {
  position: fixed;
  right: 15px;
  bottom: 30px;
  display: none;
}
footer .pagetop a {
  position: relative;
  z-index: 3;
  display: inline-block;
  font-size: var(--fs-12);
  color: var(--c-lightblue);
}
footer .pagetop a:after {
  position: relative;
  top: -32px;
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto;
  border-top: solid 1px var(--c-lightblue);
  border-right: solid 1px var(--c-lightblue);
  content: "";
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
@media screen and (max-width: 960px) {
  .foot-img .foot-img01 {
    top: -80px;
    width: 80px;
  }
  .foot-img .foot-img02 {
    top: -110px;
    right: 2%;
    width: 110px;
  }
  footer .pagetop {
    right: 10px;
    bottom: 0;
  }
  footer .pagetop a:after {
    width: 14px;
    height: 14px;
  }
  footer .pagetop a {
    font-size: var(--fs-12);
  }
  .footer-wrap {
    display: block;
  }
  .footer-nav .inner {
    padding: 0 20px;
  }
  .footer-left {
    width: 60%;
    margin-bottom: 40px;
  }
  .footer-logo {
    margin-bottom: 10px;
  }
  .footer-right {
    flex-wrap: wrap;
    width: 100%;
  }
  .footer-right .foot_list {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
  }
  .footer-right .foot_list.foot_list_blog {
    width: 50%;
    box-sizing: border-box;
  }
  .footer-right .foot_list.foot_list_blog a {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding-right: 10px;
  }
  .footer-right .foot_list a {
    display: block;
    width: 50%;
    font-size: var(--fs-14);
    line-height: 2;
    color: #fff;
    box-sizing: border-box;
    margin-bottom: 12px;
  }
  .footer-right .foot_list a.sub {
    display: none;
  }
}

.inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ====================================================
下層ページ article
==================================================== */
.article {
  padding-top: 76px;
  padding-bottom: 120px;
}

.contents__head {
  padding-top: 80px;
  padding-bottom: 60px;
}

.contents__head h1 {
  padding-bottom: 12px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1120px) {
  .article {
    padding-top: 40px;
  }
  .contents__head {
    padding-top: 0;
    padding-bottom: 30px;
  }
}

.ttl h2 {
  font-size: var(--fs-20);
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .ttl {
    font-size: var(--fs-15);
  }
}

/* article_topArea */
.article_topArea {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.article_topArea .article_cateList ul li a {
  display: inline-block;
  margin-right: 10px;
  padding: 4px 18px 3px;
  border-radius: 40px;
  background: #e5ebef;
  font-size: var(--fs-14);
  font-weight: bold;
}

.article_topArea .article_cateList ul li.active a {
  background: #35609d;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .article_topArea {
    display: block;
    margin-bottom: 30px;
  }
  .article_topArea .article_cateList ul li a {
    padding: 2px 12px;
  }
  .article_cateList ul {
    justify-content: center;
  }
}

/* ====================================================
パンくず
==================================================== */
.breadcrumb {
  width: 100%;
}
.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.breadcrumb ul li {
  margin-right: 38px;
  font-size: var(--fs-13);
  white-space: nowrap;
}
.breadcrumb ul li:last-child {
  margin-right: 0;
}
.breadcrumb ul li a {
  position: relative;
  display: inline-block;
  color: var(--c-blue);
}
.breadcrumb ul li a:after {
  position: absolute;
  top: 1px;
  right: -27px;
  font-size: var(--fs-12);
  content: "＞";
}
@media (max-width: 767px) {
  .breadcrumb {
    margin-bottom: 30px;
  }
}

/* ==================================================== */
/*  ページネーション
/* ==================================================== */

.pager {
  margin: 40px auto 0;
}

.navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  list-style-type: none;

  gap: 0 8px;
}

.navigation .nav-links a,
.navigation .nav-links span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  color: #35609d;
}

.navigation .nav-links a.prev.page-numbers,
.navigation .nav-links a.next.page-numbers {
  width: auto;
  border: none;
  background: #fff;
  font-size: var(--fs-13);
}

.navigation .nav-links a:hover {
  opacity: 0.7;
}

.navigation .nav-links .current {
  border: none;
  background: #35609d;
  pointer-events: none;
  color: #fff;
}

/* ====================================================
アイコン
==================================================== */
a[href*=".pdf"]:after {
  display: inline-block;
  width: 21px;
  height: 21px;
  margin: 0 0 2px 8px;
  background-image: url(../../img/common/icon_pdf.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}

a[href$=".xlsx"]:after,
a[href$=".xls"]:after {
  display: inline-block;
  width: 21px;
  height: 21px;
  margin: 0 0 2px 8px;
  background-image: url(../../img/common/icon_excel.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}

a[href$=".doc"]:after,
a[href$=".docx"]:after {
  display: inline-block;
  width: 21px;
  height: 21px;
  margin: 0 0 2px 8px;
  background-image: url(../../img/common/icon_word.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
