@charset "UTF-8";
/*//////////////////////////////////////////////////

	各scssの読み込み

//////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////

	reset設定

//////////////////////////////////////////////////*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*//////////////////////////////////////////////////

	変数設定

//////////////////////////////////////////////////*/
/*===============================
// ブレイクポイント変数
/==============================*/
/*===============================
// カラー変数
/==============================*/
/*===============================
// フォント変数
/==============================*/
/*===============================
// フォントサイズ変数
/==============================*/
/*//////////////////////////////////////////////////

	mixin設定

//////////////////////////////////////////////////*/
/*===============================
// ブレイクポイントの設定
/==============================*/
/*===============================
// 横幅の設定
// @include w_box(横幅にしたい数値) デフォルト1200px
/==============================*/
/*===============================
// 文字サイズの可変設定
// @include font(最小フォントサイズ, 最大フォントサイズ, 最小ブラウザサイズ, 最大ブラウザサイズ);
/==============================*/
/*===============================
// 文字サイズの可変を呼び出し
/==============================*/
/*===============================
// 表示切り替え設定
/==============================*/
/*===============================
// 文字行間の可変設定
// @include l_height(line-height,font-size);
/==============================*/
/*===============================
// 文字間隔の可変設定
// @include l_space(サイズ);
/==============================*/
/*===============================
// marginの可変設定
// @include margin(横幅, 上, 右, 下, 左);
/==============================*/
/*===============================
// paddingの可変設定
// @include padding(横幅, 上, 右, 下, 左);
/==============================*/
/*===============================
// positionの自動設定
// @include center(xy);上下左右中央
// @include center(x);左右中央
// @include center(y);上下中央
/==============================*/
/*===============================
// flexの自動設定
// @include flex_wrap;
/==============================*/
/*===============================
// flexの自動設定：align-items
// @include items(center);
// @include items(stretch);
// @include items(start);
// @include items(end);
/==============================*/
/*===============================
// flexの自動設定：justify-content
// @include justify(between);
// @include justify(center);
// @include justify(start);
// @include justify(end);
/==============================*/
/*===============================
// flex要素の幅設定
// @include flex_box(サイズ＆単位);　デフォルト48%
/==============================*/
/*===============================
// box-sizingの設定
// @include box;
/==============================*/
/*===============================
// ベンダープレフィックス設定
// @include prefix(border-radius, 10px);
/==============================*/
/*===============================
// 値にプレフィックスを付与
// @include value_prefix(display, flex);
/==============================*/
/*===============================
// border生成
// @include border(full);四方 デフォルト 1px solid
// @include border(top);上線 デフォルト 1px solid
// @include border(bottom);下線 デフォルト 1px solid
// @include border(left);左線 デフォルト 1px solid
// @include border(right);右線 デフォルト 1px solid
/==============================*/
/*===============================
// 角丸の設定
// @include radius(角丸のサイズ); デフォルト4px
/==============================*/
/*===============================
// 円の生成
// @include circle(円のサイズ);
/==============================*/
/*===============================
// 円の生成：可変
// @include v_circle; 親要素に横幅指定必須
/==============================*/
/*===============================
// くの字矢印の生成
// @include arrow(三角のサイズ,線の太さ); デフォルト4px,1px
/==============================*/
/*===============================
// 三角の生成
// @include triangle(向き,三角のサイズ,色);
/==============================*/
/*===============================
// 背景画像の生成
// @include back_image("画像パス");
/==============================*/
/*===============================
// グラデーションの生成
// @include gradient("最初の色,最後の色");
/==============================*/
/*===============================
// 文字の位置設定
// @include t_align(center);
// @include t_align(left);
// @include t_align(right);
/==============================*/
/*===============================
// object-fit設定
// @include ofi(contain);
// @include ofi(cover);
/==============================*/
/*//////////////////////////////////////////////////

	アニメーション設定

//////////////////////////////////////////////////*/
/*===============================
// MV上のscrollアニメーション
/==============================*/
@keyframes arrow {
  0% {
    transform: scale(0, 1);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 100% 0;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: 100% 0;
  }
}
@keyframes loader {
  0% {
    left: 0;
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
/*//////////////////////////////////////////////////

	base設定

//////////////////////////////////////////////////*/
body {
  box-sizing: border-box;
  background: #F5F5EF;
  line-height: 2;
  letter-spacing: 0.05em;
  font-size: 1.3rem;
  color: #262626;
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif, 游ゴシック体 Pr6N M, Yu Gothic Pr6N M, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  word-wrap: break-word;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-align: justify;
  text-justify: inter-ideograph; /* IEで必要 */
  text-justify: inter-character; /* Firefoxで必要 */
}
@media (min-width: 769px) {
  body {
    font-size: calc(1.3rem + (1vw - 7.69px) * 0.6042296073);
  }
}
@media (min-width: 1100px) {
  body {
    font-size: 1.5rem;
  }
}

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

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

.t-right {
  text-align: right;
}

/*===============================
// 初期設定
/==============================*/
h1, h2, h3, h4, h5 {
  text-align: center;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif, 游ゴシック体 Pr6N M, Yu Gothic Pr6N M, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

h2 {
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: calc(2.4rem + (1vw - 7.68px) * 1.8072289157);
  }
}
@media (min-width: 1100px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: calc(1.8rem + (1vw - 7.68px) * 1.8072289157);
  }
}
@media (min-width: 1100px) {
  h3 {
    font-size: 2.4rem;
  }
}

p {
  font-size: 100%;
}

address {
  font-style: normal;
}

a, button {
  text-decoration: none;
  color: inherit;
  transition: 0.4s;
}

a {
  display: block;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

figure, picture {
  display: block;
}

img {
  width: 100%;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

/*===============================
// デバイス別の表示切り替え
/==============================*/
.sp {
  display: inherit;
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 961px) {
  .sp {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (min-width: 769px) {
  .tab {
    display: inherit;
  }
}
@media screen and (min-width: 961px) {
  .tab {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .tab {
    display: none;
  }
}

.sp_tab {
  display: inherit;
}
@media screen and (min-width: 769px) {
  .sp_tab {
    display: inherit;
  }
}
@media screen and (min-width: 961px) {
  .sp_tab {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .sp_tab {
    display: none;
  }
}

.pc_tab {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc_tab {
    display: inherit;
  }
}
@media screen and (min-width: 961px) {
  .pc_tab {
    display: inherit;
  }
}
@media screen and (min-width: 1200px) {
  .pc_tab {
    display: inherit;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 961px) {
  .pc {
    display: inherit;
  }
}
@media screen and (min-width: 1200px) {
  .pc {
    display: inherit;
  }
}

/*===============================
// 最大幅の設定
/==============================*/
.inner {
  box-sizing: border-box;
  width: 100%;
  margin: auto;
  padding: 0% 5.33% 0% 5.33%;
}
@media screen and (min-width: 769px) {
  .inner {
    padding: 0% 2.6% 0% 2.6%;
  }
}

.s-inner {
  box-sizing: border-box;
  width: 100%;
  margin: auto;
  padding: 0% 5.33% 0% 5.33%;
}
@media screen and (min-width: 769px) {
  .s-inner {
    padding: 0% 2.6% 0% 2.6%;
  }
}
@media screen and (min-width: 769px) {
  .s-inner {
    padding: 0% 2.6% 0% 2.6%;
    max-width: 800px;
  }
}
@media screen and (min-width: 840px) {
  .s-inner {
    padding: 0;
  }
}

.m-inner {
  box-sizing: border-box;
  width: 100%;
  margin: auto;
  padding: 0% 5.33% 0% 5.33%;
}
@media screen and (min-width: 769px) {
  .m-inner {
    padding: 0% 2.6% 0% 2.6%;
  }
}
@media screen and (min-width: 769px) {
  .m-inner {
    padding: 0% 2.6% 0% 2.6%;
    max-width: 980px;
  }
}
@media screen and (min-width: 1020px) {
  .m-inner {
    padding: 0;
  }
}

.l-inner {
  box-sizing: border-box;
  width: 100%;
  margin: auto;
  padding: 0% 5.33% 0% 5.33%;
}
@media screen and (min-width: 769px) {
  .l-inner {
    padding: 0% 2.6% 0% 2.6%;
  }
}
@media screen and (min-width: 769px) {
  .l-inner {
    padding: 0% 2.6% 0% 2.6%;
    max-width: 1160px;
  }
}
@media screen and (min-width: 1200px) {
  .l-inner {
    padding: 0;
  }
}

/*===============================
// コンテンツエリアの設定
/==============================*/
#contents {
  margin: 65px auto 0;
  overflow: hidden;
}

/*===============================
// コンテンツの上下間隔の設定
/==============================*/
.mb-box {
  margin: 0% 0% 16% 0%;
}

/*===============================
// no_data
/==============================*/
.no_data_txt {
  font-size: 1.4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .no_data_txt {
    font-size: calc(1.4rem + (1vw - 7.68px) * 0.1414427157);
  }
}
@media (min-width: 1475px) {
  .no_data_txt {
    font-size: 1.5rem;
  }
}

/*===============================
// object-fit設定
/==============================*/
.fit {
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}

/*===============================
// テキストの反転設定
/==============================*/
::selection {
  color: #ffffff;
  background: #96865c;
}

/*===============================
// フォントの簡易呼び出し
/==============================*/
.gothic {
  font-family: "Noto Sans JP", sans-serif, 游ゴシック体 Pr6N M, Yu Gothic Pr6N M, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

.en {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.mincho {
  font-family: "Noto Serif JP","Shippori Mincho B1", "Noto Sans JP", "sans-serif", "MS PGothic";
}

/*===============================
// 注釈
/==============================*/
.attent {
  display: block;
  font-size: 1.1rem;
  letter-spacing: normal;
  line-height: 1.5;
}

/*------------------------------
		769px以上
------------------------------*/
@media screen and (min-width: 769px) {
  .mb-box {
    margin-bottom: 100px;
  }
  #contents {
    margin: 80px auto 0;
  }
}
/*------------------------------
		961px以上
------------------------------*/
@media screen and (min-width: 961px) {
  body {
    line-height: 2;
  }
  a:hover {
    color: #7e7e7e;
    opacity: 0.8;
  }
  /*===============================
  // telリンクの無効化
  /==============================*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*------------------------------
		1221px以上
------------------------------*/
/*//////////////////////////////////////////////////

	header設定

//////////////////////////////////////////////////*/
#header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: transparent;
  transition: 0.4s background;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
}
#header .header-container {
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
  justify-content: space-between;
  padding: 0 0 0 20px;
}
#header .header-container .logo {
  flex: 0 1 calc((100% - 20px) * 0.80597015);
  width: calc((100% - 20px) * 0.80597015);
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
  justify-content: space-between;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-line-pack: center;
  align-content: center;
  position: relative;
  z-index: 9999;
}
#header .header-container .logo .logo-wp {
  flex: 0 1 auto;
  width: auto;
  line-height: 1;
}
#header .header-container .logo .logo-wp.pace_ful {
  margin-right: 14.3px;
  width: 97px;
  height: auto;
}
#header .header-container .logo .logo-wp.grazie_mille {
  width: 115.4px;
  height: auto;
}
#header .header-container .menu_navi {
  display: none;
  padding-top: 65px;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}
#header .header-container .menu_navi .menu_navi-list {
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
  justify-content: space-between;
  padding: 0 30px;
}
#header .header-container .menu_navi .menu_navi-list .menu_navi-item {
  flex: 0 1 50%;
  width: 50%;
}
#header .header-container .menu_navi .menu_navi-list .menu_navi-item a {
  padding: 9px 0;
  font-size: 1.5rem;
  color: #262626;
  line-height: 1.4;
}
#header .header-container .menu_navi .menu_navi-list .menu_navi-item a::before {
  content: "-";
  display: inline;
  margin-right: 2px;
}
#header .header-container .menu_navi .menu_navi-list .menu_navi-item.contact {
  margin-top: 20.8px;
}
#header .header-container .menu_navi .menu_navi-list .menu_navi-item.active a {
  color: #7e7e7e;
}
#header .header-container .menu_navi .menu_navi-list + .menu_navi-list {
  margin-top: 20.8px;
}
#header .header-container .menu_btn {
  flex: 0 1 65px;
  width: 65px;
  height: 65px;
  cursor: pointer;
  position: relative;
  z-index: 9999;
}
#header .header-container .menu_btn-line {
  width: 100%;
  height: 100%;
  position: relative;
}
#header .header-container .menu_btn-line span {
  width: 35px;
  height: 1px;
  background: #262626;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.4s;
}
#header .header-container .menu_btn-line span:nth-child(1) {
  top: 23.5px;
}
#header .header-container .menu_btn-line span:nth-child(2) {
  width: 22px;
  top: 32.5px;
  left: calc(50% - 6px);
}
#header .header-container .menu_btn-line span:nth-child(3) {
  top: 41.5px;
}
#header.active {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
}
#header.active .header-container .logo {
  opacity: 1;
}
#header.active .header-container .menu_btn .menu_btn-line span {
  background: #262626;
}

.fixed {
  overflow: hidden;
}
.fixed #header .header-container .menu_btn .menu_btn-line span {
  background: #262626;
}
.fixed #header .header-container .menu_btn .menu_btn-line span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.fixed #header .header-container .menu_btn .menu_btn-line span:nth-child(2) {
  opacity: 0;
}
.fixed #header .header-container .menu_btn .menu_btn-line span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

/*------------------------------
		769px以上
------------------------------*/
@media screen and (min-width: 769px) {
  #header .header-container {
    align-content: center;
    padding: 0 4vw;
    height: 80px;
  }
  #header .header-container .logo {
    flex: 0 1 33%;
    width: 33%;
  }
  #header .header-container .logo .logo-wp.pace_ful {
    margin-right: 14.3px;
    width: 97px;
    height: auto;
  }
  #header .header-container .logo .logo-wp.grazie_mille {
    width: 115.4px;
    height: auto;
  }
  #header .header-container .menu_navi {
    flex: 0 1 62%;
    width: 62%;
    display: block;
    padding-top: 0;
    height: auto;
    background: unset;
    position: unset;
    z-index: auto;
  }
  #header .header-container .menu_navi .menu_navi-list {
    flex: 0 1 100%;
    width: 100%;
    padding: 0;
  }
  #header .header-container .menu_navi .menu_navi-list .menu_navi-item {
    flex: 0 1 auto;
    width: auto;
  }
  #header .header-container .menu_navi .menu_navi-list .menu_navi-item a {
    font-size: 1.2rem;
    padding: 4px 8px;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  #header .header-container .menu_navi .menu_navi-list .menu_navi-item a {
    font-size: calc(1.2rem + (1vw - 7.69px) * 0.3350083752);
  }
}
@media screen and (min-width: 769px) and (min-width: 1366px) {
  #header .header-container .menu_navi .menu_navi-list .menu_navi-item a {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) {
  #header .header-container .menu_navi .menu_navi-list .menu_navi-item a::before {
    display: none;
  }
  #header .header-container .menu_navi .menu_navi-list .menu_navi-item.contact {
    display: none;
  }
  #header .header-container .menu_navi .menu_navi-list + .menu_navi-list {
    margin-top: 0;
  }
  #header .header-container .menu_navi .menu_navi-list.other {
    display: none;
  }
  #header .header-container .menu_btn {
    display: none;
  }
  #header.active .header-container .menu_navi {
    opacity: 1;
  }
}
/*------------------------------
		961px以上
------------------------------*/
@media screen and (min-width: 961px) {
  #header .header-container {
    padding: 0 5vw;
  }
  #header .header-container .logo {
    flex: 0 1 28%;
    width: 28%;
  }
  #header .header-container .menu_navi {
    flex: 0 1 68%;
    width: 68%;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    max-width: 730px;
  }
  #header .header-container .menu_navi .menu_navi-list {
    flex: 0 1 calc(100% - 160px);
    width: calc(100% - 160px);
  }
  #header .header-container .menu_navi .menu_navi-contact {
    flex: 0 1 137px;
    width: 137px;
  }
  #header .header-container .menu_navi .menu_navi-contact a {
    font-size: 1.2rem;
    padding: 7px;
    width: 100%;
    text-align: center;
    color: #96865c;
    border: 1px solid #96865c;
  }
}
@media screen and (min-width: 961px) and (min-width: 769px) {
  #header .header-container .menu_navi .menu_navi-contact a {
    font-size: calc(1.2rem + (1vw - 7.69px) * 0.3350083752);
  }
}
@media screen and (min-width: 961px) and (min-width: 1366px) {
  #header .header-container .menu_navi .menu_navi-contact a {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 961px) {
  #header .header-container .menu_navi .menu_navi-contact a:hover {
    color: #ffffff;
    background: #96865c;
  }
}
/*------------------------------
		1200px以上
------------------------------*/
@media screen and (min-width: 1200px) {
  #header .header-container {
    padding: 0 7.54vw;
  }
}
/*------------------------------
		1366px以上
------------------------------*/
@media screen and (min-width: 1366px) {
  #header .header-container {
    padding: 0 103px;
  }
}
/*//////////////////////////////////////////////////

	footer設定

//////////////////////////////////////////////////*/
#footer {
  padding: 30px 0 0;
  color: #ffffff;
  background: #262626;
}
#footer .footer_nav {
  padding: 0 20px;
}
#footer .footer_nav .footer_wp {
  padding: 0 20px;
}
#footer .footer_nav-left .footer_logo {
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
  justify-content: space-between;
  margin-bottom: 19px;
}
#footer .footer_nav-left .footer_logo > * {
  flex: 0 1 44.776119%;
  width: 44.776119%;
}
#footer .footer_nav-left .corp_name {
  margin-bottom: 12px;
  font-size: 1.4rem;
}
#footer .footer_nav-left .address {
  font-size: 1.3rem;
  line-height: 1.692em;
}
#footer .footer_nav-right {
  margin-top: 9.5px;
}
#footer .footer_nav-right .footer_nav-ttl {
  margin-bottom: 10.3px;
  font-size: 1.4rem;
  line-height: 2.57;
  color: #7e7e7e;
  border-bottom: 1px solid #7e7e7e;
}
#footer .footer_nav-right .footer_nav-list {
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
  justify-content: space-between;
}
#footer .footer_nav-right .footer_nav-list .footer_nav-item {
  flex: 0 1 50%;
  width: 50%;
}
#footer .footer_nav-right .footer_nav-list .footer_nav-item a {
  padding: 9px 0;
  font-size: 1.4rem;
  line-height: 1.4;
}
#footer .footer_nav-right .footer_nav-list .footer_nav-item.bnr {
  flex: 0 1 100%;
  width: 100%;
  margin-top: 21px;
}
#footer .footer_nav-right .footer_nav-list .footer_nav-item.bnr a {
  margin: 0 0 0 auto;
  padding: 0;
  width: 58.933vw;
  max-width: 76%;
  transition: auto;
}
#footer .footer_nav-right .footer_nav-list .footer_nav-item.contact {
  margin-top: 20.8px;
}
#footer .footer_nav-right .footer_nav-list.other {
  margin-top: 20.8px;
}
#footer .copyright {
  margin-top: 18px;
  font-size: 1.3rem;
  text-align: center;
  color: #262626;
  background: #7e7e7e;
}

/*------------------------------
		769px以上
------------------------------*/
@media screen and (min-width: 769px) {
  #footer .footer_nav {
    margin: 0 auto;
    max-width: 1070px;
  }
  #footer .footer_nav .footer_wp {
    padding: 0;
  }
  #footer .footer_nav-left .footer_logo {
    max-width: 380px;
  }
  #footer .footer_nav-left .footer_logo > * {
    flex: 0 1 46.875%;
    width: 46.875%;
  }
  #footer .footer_nav-left .corp_name {
    margin-bottom: 14px;
    line-height: 1;
  }
  #footer .footer_nav-right .footer_wp {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    justify-content: space-between;
  }
  #footer .footer_nav-right .footer_nav-ttl {
    flex: 0 1 100%;
    width: 100%;
  }
  #footer .footer_nav-right .footer_nav-list {
    flex: 0 1 45%;
    width: 45%;
  }
  #footer .footer_nav-right .footer_nav-list .footer_nav-item.bnr a {
    margin: 0;
    width: 100%;
    max-width: 221px;
  }
  #footer .footer_nav-right .footer_nav-list .footer_nav-item.contact {
    margin-top: 10px;
  }
  #footer .footer_nav-right .footer_nav-list.other {
    flex: 0 1 52%;
    width: 52%;
    margin-top: 0;
  }
  #footer .footer_nav-right .footer_nav-list.other .footer_nav-item {
    flex: 0 1 100%;
    width: 100%;
  }
}
/*------------------------------
		961px以上
------------------------------*/
@media screen and (min-width: 961px) {
  #footer {
    padding: 50px 0 42px;
  }
  #footer .footer_nav {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1070px;
  }
  #footer .footer_nav-left {
    flex: 0 1 42.056075%;
    width: 42.056075%;
  }
  #footer .footer_nav-left .footer_logo {
    max-width: 320px;
  }
  #footer .footer_nav-left .copyright {
    margin-top: 24px;
    text-align: left;
    line-height: 1;
    color: inherit;
    background: unset;
  }
  #footer .footer_nav-right {
    flex: 0 1 45.794393%;
    width: 45.794393%;
  }
  #footer .footer_nav-right .footer_nav-ttl {
    margin-bottom: 15.5px;
  }
  #footer .footer_nav-right .footer_nav-list {
    flex: 0 1 45%;
    width: 45%;
  }
  #footer .footer_nav-right .footer_nav-list .footer_nav-item.bnr {
    margin-top: 23px;
  }
  #footer .footer_nav-right .footer_nav-list .footer_nav-item.bnr a {
    transition: 0.4s;
  }
  #footer .footer_nav-right .footer_nav-list.other {
    flex: 0 1 45.102041%;
    width: 45.102041%;
  }
  #footer .footer_nav-right .footer_nav-list:not(#footer .footer_nav-right .footer_nav-list.other) .footer_nav-item:nth-child(2) {
    order: 3;
  }
  #footer .footer_nav-right .footer_nav-list:not(#footer .footer_nav-right .footer_nav-list.other) .footer_nav-item:nth-child(3) {
    order: 5;
  }
  #footer .footer_nav-right .footer_nav-list:not(#footer .footer_nav-right .footer_nav-list.other) .footer_nav-item:nth-child(4) {
    order: 7;
  }
  #footer .footer_nav-right .footer_nav-list:not(#footer .footer_nav-right .footer_nav-list.other) .footer_nav-item:nth-child(5) {
    order: 2;
  }
  #footer .footer_nav-right .footer_nav-list:not(#footer .footer_nav-right .footer_nav-list.other) .footer_nav-item:nth-child(6) {
    order: 4;
  }
  #footer .footer_nav-right .footer_nav-list:not(#footer .footer_nav-right .footer_nav-list.other) .footer_nav-item:nth-child(7) {
    order: 6;
  }
  #footer .footer_nav-right .footer_nav-list:not(#footer .footer_nav-right .footer_nav-list.other) .footer_nav-item:nth-child(8) {
    order: 8;
  }
}
/*------------------------------
		1200px以上
------------------------------*/
@media screen and (min-width: 1200px) {
  #footer .footer_nav {
    padding: 0;
  }
  #footer .footer_nav-left {
    flex: 0 1 42.056075%;
    width: 42.056075%;
  }
  #footer .footer_nav-right {
    flex: 0 1 45.794393%;
    width: 45.794393%;
  }
}
/*//////////////////////////////////////////////////

	パーツ設定

//////////////////////////////////////////////////*/
/*===============================
// ボタン
/==============================*/
.btn {
  margin: 0 auto;
  max-width: 305px;
}
.btn a, .btn button {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 16px 0;
  border: 1px solid;
  border-color: #262626;
  border-radius: 100px;
  background: transparent;
  box-sizing: border-box;
  color: #262626;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  line-height: 1.6rem;
}
.btn a .arrow, .btn button .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}
.btn a .arrow::before, .btn a .arrow::after, .btn button .arrow::before, .btn button .arrow::after {
  position: absolute;
  content: "";
  background: #38A3C3;
  height: 1px;
  transition: 0.4s;
}
.btn a .arrow::before, .btn button .arrow::before {
  width: 30px;
}
.btn a .arrow::after, .btn button .arrow::after {
  width: 5px;
}
.btn a .arrow.right, .btn button .arrow.right {
  right: 20px;
}
.btn a .arrow.right::after, .btn button .arrow.right::after {
  top: -1.5px;
  right: -31px;
  transform: rotate(45deg);
}
.btn.back a .arrow, .btn.back button .arrow {
  left: -10px;
}
.btn.back a .arrow::after, .btn.back button .arrow::after {
  top: -1.5px;
  transform: translateY(-50%) rotate(-45deg);
}

.btn--more {
  text-align: center;
}
.btn--more a {
  position: relative;
  display: inline-block;
  margin-left: 1em;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
}
.btn--more a::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 50px;
  height: 50px;
  background: #F5F5EE;
  border-radius: 50px;
  content: "";
}

/*===============================
// 下層ページタイトル
/==============================*/
.pagettl {
  margin-bottom: 16vw;
}
.pagettl .pagettl-container {
  padding: 0 5.333vw;
  max-width: 1160px;
}
.pagettl .pagettl-wp {
  position: relative;
  padding-top: 20vw;
}
.pagettl .pagettl-txt {
  padding: 12.8vw 5.333vw 6.933vw;
  width: 78.667vw;
  box-sizing: border-box;
  line-height: 1.4;
  background: #ffffff;
}
.pagettl .pagettl-txt--en {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  text-align: left;
  font-weight: normal;
}
@media (min-width: 375px) {
  .pagettl .pagettl-txt--en {
    font-size: calc(3rem + (1vw - 3.75px) * 1.5136226034);
  }
}
@media (min-width: 1366px) {
  .pagettl .pagettl-txt--en {
    font-size: 4.5rem;
  }
}
.pagettl .pagettl-txt--jp {
  position: relative;
  font-size: 1.5rem;
}
@media (min-width: 375px) {
  .pagettl .pagettl-txt--jp {
    font-size: calc(1.5rem + (1vw - 3.75px) * 0.3027245207);
  }
}
@media (min-width: 1366px) {
  .pagettl .pagettl-txt--jp {
    font-size: 1.8rem;
  }
}
.pagettl .pagettl-txt--jp::before {
  display: inline-block;
  width: 1em;
  height: 1px;
  background: #96865c;
  vertical-align: middle;
  margin-right: 0.25em;
  content: "";
}
.pagettl .pagettl-txt::after {
  content: "";
  display: block;
  width: 74.133vw;
  height: 29.333vw;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.15);
  background: url("/img/awards/pagettl.jpg") center left/cover no-repeat;
  position: absolute;
  top: 0;
  right: -5.33vw;
}

.pagecopy {
  margin-bottom: 55px;
  padding: 0 20px;
  box-sizing: border-box;
  color: #96865c;
  font-size: 1.3rem;
  line-height: 2.3;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  .pagecopy {
    font-size: calc(1.3rem + (1vw - 7.69px) * 0.837520938);
  }
}
@media (min-width: 1366px) {
  .pagecopy {
    font-size: 1.8rem;
  }
}

/*===============================
// ローディング画面
/==============================*/
#loading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(250, 250, 250);
}
#loading .loader {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 45%;
  width: fit-content;
  height: auto;
}
#loading .loader .copy {
  font-size: 2rem;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  font-family: "A1 Mincho", tofu, "Noto Sans JP", sans-serif, 游ゴシック体 Pr6N M, Yu Gothic Pr6N M, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif", sans-serif;
  line-height: 1.5;
  text-align: center;
  color: #262626;
}
@media (min-width: 375px) {
  #loading .loader .copy {
    font-size: calc(2rem + (1vw - 3.75px) * 1.0090817356);
  }
}
@media (min-width: 1366px) {
  #loading .loader .copy {
    font-size: 3rem;
  }
}
#loading .loader .logo_wp {
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
  justify-content: space-between;
  margin: auto;
  width: 30rem;
}
#loading .loader .logo_wp .logo {
  flex: 0 1 48%;
  width: 48%;
}
#loading .loader .logo_wp .logo svg {
  width: 100%;
  height: 100%;
}
#loading .loader .load {
  display: block;
  margin-top: 32px;
  width: 100%;
  height: 1.6rem;
  position: relative;
}
#loading .loader .load::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: #96865c;
  border-radius: 0.8rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-animation: loader 2.8s infinite ease;
  animation: loader 2.8s infinite ease;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*===============================
// パンくず
/==============================*/
.breadcrumb {
  margin-top: 3.2vw;
  padding: 0 5.333vw;
  text-align: right;
  line-height: 1.2;
}
.breadcrumb > * {
  display: inline-block;
  vertical-align: middle;
}
.breadcrumb .breadcrumb-link {
  font-size: 1.2rem;
  color: #38A3C3;
}
@media (min-width: 375px) {
  .breadcrumb .breadcrumb-link {
    font-size: calc(1.2rem + (1vw - 3.75px) * 0.1009081736);
  }
}
@media (min-width: 1366px) {
  .breadcrumb .breadcrumb-link {
    font-size: 1.3rem;
  }
}
.breadcrumb .breadcrumb-arrow {
  width: 20px;
  height: 20px;
  position: relative;
}
.breadcrumb .breadcrumb-arrow::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.breadcrumb .breadcrumb-arrow::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #7e7e7e;
  border-right: 1px solid #7e7e7e;
  position: absolute;
  top: 50%;
  left: calc(50% - 2.5px);
  transform: translate(-50%, -50%) rotate(45deg);
}
.breadcrumb .breadcrumb-page {
  font-size: 1.2rem;
}
@media (min-width: 375px) {
  .breadcrumb .breadcrumb-page {
    font-size: calc(1.2rem + (1vw - 3.75px) * 0.1009081736);
  }
}
@media (min-width: 1366px) {
  .breadcrumb .breadcrumb-page {
    font-size: 1.3rem;
  }
}

/*===============================
// コンタクト
/==============================*/
#contact {
  letter-spacing: 0.1em;
}
#contact .contact-bg {
  position: relative;
  padding: 30px 20px 40px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
}
#contact .contact-bg::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: -1;
  color: rgba(150, 134, 92, 0.25);
  font-family: "Montserrat", sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  content: "CONTACT";
}
@media (min-width: 375px) {
  #contact .contact-bg::before {
    font-size: calc(4.5rem + (1vw - 3.75px) * 1.5136226034);
  }
}
@media (min-width: 1366px) {
  #contact .contact-bg::before {
    font-size: 6rem;
  }
}
#contact .contact-ttl {
  margin-bottom: 20px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media (min-width: 375px) {
  #contact .contact-ttl {
    font-size: calc(1.8rem + (1vw - 3.75px) * 0.2018163471);
  }
}
@media (min-width: 1366px) {
  #contact .contact-ttl {
    font-size: 2rem;
  }
}
#contact .contact-box {
  text-align: center;
}
#contact .contact-box:nth-of-type(2n) {
  padding-top: 15px;
  margin-top: 20px;
  border-top: 1px solid #D5D5D5;
}
#contact .contact-subttl {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: normal;
}
@media (min-width: 375px) {
  #contact .contact-subttl {
    font-size: calc(1.4rem + (1vw - 3.75px) * 0.1009081736);
  }
}
@media (min-width: 1366px) {
  #contact .contact-subttl {
    font-size: 1.5rem;
  }
}
#contact .contact-tel a {
  position: relative;
  margin-bottom: 5px;
  color: #96865c;
  font-size: 3rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}
#contact .contact-tel a::before {
  display: inline-block;
  background: url("/img/common/icon_tel.svg") center/cover no-repeat;
  width: 0.7em;
  height: 0.7em;
  content: "";
}
#contact .contact-txt {
  font-size: 1.2rem;
  letter-spacing: 0;
}
@media (min-width: 375px) {
  #contact .contact-txt {
    font-size: calc(1.2rem + (1vw - 3.75px) * 0.1009081736);
  }
}
@media (min-width: 1366px) {
  #contact .contact-txt {
    font-size: 1.3rem;
  }
}
#contact .contact-btn a {
  padding: 25px 0;
  color: #FFF;
  background: #96865c;
  border-color: #96865c;
  border-radius: 0;
}

/*===============================
// ページャ
/==============================*/
.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 40px;
}
.pager .pager-btn {
  margin: 0 6px 6px;
}
.pager .pager-btn a {
  position: relative;
  width: 50px;
  height: 50px;
  background: #FFF;
  border: 1px solid #D5D5D5;
  border-radius: 50px;
  box-sizing: border-box;
  color: #96865c;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  text-indent: 0.1em;
  letter-spacing: 0.1em;
  line-height: 50px;
  text-align: center;
}
.pager .pager-btn.back {
  margin: 0 20px 0 0;
}
.pager .pager-btn.back a::after {
  transform: translate(-25%, -50%) rotate(-135deg);
}
.pager .pager-btn.prev {
  margin: 0 0 0 20px;
}
.pager .pager-btn.prev a::after {
  transform: translate(-75%, -50%) rotate(45deg);
}
.pager .pager-btn.back a, .pager .pager-btn.prev a {
  position: relative;
}
.pager .pager-btn.back a::after, .pager .pager-btn.prev a::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  content: "";
}
.pager .pager-btn.back a, .pager .pager-btn.prev a, .pager .pager-btn.active a {
  background: #96865c;
  border-color: #96865c;
  color: #FFF;
}

/*------------------------------
		769px以上
------------------------------*/
@media screen and (min-width: 769px) {
  .btn a, .btn button {
    padding: 15px 0;
    transition: 0.3s;
  }
  .btn a:hover, .btn button:hover {
    opacity: 1;
    color: #FFF;
    background: #262626;
  }
  .btn a:hover .arrow.right, .btn button:hover .arrow.right {
    right: 10px;
  }
  .btn.back a:hover .arrow, .btn.back button:hover .arrow {
    left: -20px;
  }
  .btn--more a::before {
    transition: 0.8s;
  }
  .btn--more a:hover::before {
    transform: translate(120%, -50%);
  }
  .pagettl {
    margin-bottom: 5.49vw;
  }
  .pagettl .pagettl-wp {
    padding-top: min(3.294vw, 45px);
  }
  .pagettl .pagettl-txt {
    padding: min(5.344vw, 73px) min(11.347vw, 155px) min(7.24vw, 98.9px) min(6.589vw, 90px);
    width: 42.46vw;
  }
  .pagettl .pagettl-txt--en {
    margin-bottom: 7.9px;
  }
  .pagettl .pagettl-txt::after {
    width: min(60.615vw, 828px);
    height: min(19.693vw, 269px);
    right: -5.333vw;
  }
  .pagecopy {
    text-align: center;
  }
  .breadcrumb {
    margin-top: 1.145vw;
    padding: 0 8vw;
  }
  #loading .loader .copy {
    letter-spacing: 0.25em;
  }
  #loading .loader .load {
    margin-top: 36px;
  }
  #contact .contact-bg {
    padding: 30px 30px 45px;
  }
  #contact .contact-wp {
    display: flex;
    justify-content: center;
  }
  #contact .contact-box {
    min-width: 300px;
  }
  #contact .contact-box:nth-of-type(2n) {
    padding: 0;
    margin: 0 0 0 10%;
    border: none;
  }
  #contact .contact-box .contact-tel a {
    padding-top: 5px;
  }
  #contact .contact-box .contact-txt {
    letter-spacing: 0.1em;
  }
  #contact .contact-btn a:hover {
    background: #FFF;
    color: #96865c;
  }
  .pager {
    padding-top: 100px;
  }
  .pager .pager-btn a:hover {
    opacity: 1;
    background: #96865c;
    color: #FFF;
  }
  .pager .pager-btn.back {
    margin-right: 40px;
  }
  .pager .pager-btn.prev {
    margin-left: 40px;
  }
  .pager .pager-btn.active a:hover, .pager .pager-btn.back a:hover, .pager .pager-btn.prev a:hover {
    background: #FFF;
    color: #96865c;
  }
}
/*------------------------------
		961px以上
------------------------------*/
@media screen and (min-width: 961px) {
  .breadcrumb {
    margin-top: 0.805vw;
    padding: 0 14.129vw;
  }
}
/*------------------------------
		1200px以上
------------------------------*/
@media screen and (min-width: 1200px) {
  .pagettl .pagettl-container {
    padding: 0 1.464vw;
  }
  .pagettl .pagettl-txt::after {
    right: -7.54vw;
  }
}
/*------------------------------
		1366px以上
------------------------------*/
@media screen and (min-width: 1366px) {
  .breadcrumb {
    margin-top: 11px;
    padding: 0 193px;
  }
}
/*# sourceMappingURL=common.css.map */
