@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;600;700&display=swap");
/* ========================================
 *  Font Family
 * ======================================== */
/* ==============================
*   Color
*==============================*/
/* ==============================
*   Font Size
*==============================*/
/*==============================
//  Media Query
//==============================*/
body {
  min-width: 1240px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
/*==============================
//  Font Size Rem
//
//  【概要】        font-sizeの単位をremに変換する
//  【第一引数】    希望のfont-size（数字のみ）
//  【備考】        IE対応のためpxでも出力する
//==============================*/
/*==============================
//  Font Size Rem Line Height Half Leading
//
//  【概要】
//      ・font-sizeの単位をremに変換
//      ・行間のサイズをもとに自動でline-heightを指定
//      ・ハーフリーディングを自動調整
//  【第一引数】
//      ・希望のfont-size（数字のみ）
//  【第二引数】
//      ・希望の行間サイズ（数字のみ）
//==============================*/
/*==============================
//
//  【概要】
//      ・pxをvwに変換
//  【第一引数】
//      ・pxサイズ（数字のみ）
//  【第二引数】
//      ・デザイン幅（数字のみ）初期値はf-variableに記述
//==============================*/
/*==============================
//  px→vwの計算
//==============================*/
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: normal;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  top: -0.5em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: normal;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #333333;
  line-height: 200%;
  position: relative;
  min-width: 1240px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    font-size: 0.8888888889rem;
    line-height: 170%;
    min-width: inherit;
  }
}

a {
  text-decoration: underline;
  color: #B0974B;
  transition: 0.3s all;
}
a:hover {
  text-decoration: none;
}

button {
  outline: none;
}

td,
th {
  vertical-align: middle;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #AFAFAF;
}

input::placeholder,
textarea::placeholder {
  color: #AFAFAF;
}

img {
  max-width: 100%;
  backface-visibility: hidden;
}

[v-cloak] {
  display: none !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

[v-cloak] {
  display: none;
}

main {
  position: relative;
}

main {
  padding: 0;
}

.l-section {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 150px 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 16vw 0;
  }
}

.l-inner {
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0;
  }
}

/* ---------------------------------------------------------------------------
 * アニメーション
--------------------------------------------------------------------------- */
.sa {
  opacity: 0;
  transition: all 0.8s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 50px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(0.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -50px;
}
@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -8vw;
  }
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
}
@media screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 11px);
}
@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
  }
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #004F3C;
}

.swiper-wrapper {
  height: auto !important;
}

.c-btn_right a {
  width: 350px;
  height: 60px;
  padding: 0 15px 0 0;
  border-radius: 100px;
  background: linear-gradient(240deg, #B0974B 14.97%, #D2BC7A 82.27%);
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: bold;
  line-height: 60px;
  font-size: 20px;
  transition: 0.3s all;
  margin: 0 auto;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .c-btn_right a {
    width: 80%;
    height: 13.3333333333vw;
    line-height: 13.3333333333vw;
    font-size: 20px;
    font-size: 1.1111111111rem;
    padding: 0;
  }
}
.c-btn_right a::after {
  display: block;
  content: "";
  position: absolute;
  top: 22px;
  right: 20px;
  width: 37px;
  height: 9px;
  background: url(../../src/img/icon/arrow_w.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn_right a::after {
    right: 5.3333333333vw;
    width: 7.4666666667vw;
    height: 1.8666666667vw;
  }
}
.c-btn_right a:hover {
  opacity: 0.8;
}
.c-btn_right a:hover:after {
  right: 15px;
}
@media screen and (max-width: 767px) {
  .c-btn_right a:hover:after {
    right: 2.6666666667vw;
  }
}
.c-btn_left a {
  width: 350px;
  height: 60px;
  padding: 0;
  border-radius: 100px;
  background: linear-gradient(240deg, #B0974B 14.97%, #D2BC7A 82.27%);
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: bold;
  line-height: 60px;
  font-size: 20px;
  transition: 0.3s all;
  margin: 0 auto;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .c-btn_left a {
    width: 80%;
    height: 13.3333333333vw;
    line-height: 13.3333333333vw;
    font-size: 20px;
    font-size: 1.1111111111rem;
    padding: 0;
  }
}
.c-btn_left a::after {
  display: block;
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 37px;
  height: 9px;
  transform: scaleX(-1);
  background: url(../../src/img/icon/arrow_w.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn_left a::after {
    left: 5.3333333333vw;
    width: 7.4666666667vw;
    height: 1.8666666667vw;
  }
}
.c-btn_left a:hover {
  opacity: 0.8;
}
.c-btn_left a:hover:after {
  left: 15px;
}
@media screen and (max-width: 767px) {
  .c-btn_left a:hover:after {
    left: 2.6666666667vw;
  }
}

.c-list_dot {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-list_dot {
    margin-bottom: 5.3333333333vw;
  }
}
.c-list_dot li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .c-list_dot li {
    font-size: 16px;
    font-size: 0.8888888889rem;
    padding-left: 5.3333333333vw;
    margin-bottom: 2.1333333333vw;
  }
}
.c-list_dot li:last-of-type {
  margin-bottom: 0px;
}
.c-list_dot li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #004F3C;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 18px;
}
@media screen and (max-width: 767px) {
  .c-list_dot li::before {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
    top: 2.1333333333vw;
    left: 1.0666666667vw;
  }
}
.c-list_no {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-list_no {
    margin-bottom: 5.3333333333vw;
  }
}
.c-list_no > li {
  padding-left: 25px;
  position: relative;
  line-height: 160%;
  margin-bottom: 10px;
  font-weight: 500;
  list-style-type: none;
  counter-increment: cnt;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .c-list_no > li {
    font-size: 16px;
    font-size: 0.8888888889rem;
    padding-left: 5.3333333333vw;
    margin-bottom: 2.1333333333vw;
  }
}
.c-list_no > li:last-child {
  margin-bottom: 0;
}
.c-list_no > li::before {
  content: counter(cnt) ".";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Shippori Mincho", serif;
  color: #004F3C;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .c-list_no > li::before {
    font-size: 16px;
    font-size: 0.8888888889rem;
    top: -0.2666666667vw;
    left: 0;
  }
}

.c-nav_pc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.c-nav_pc_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.c-nav_pc_menu li a {
  margin-right: 30px;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #333333;
  line-height: 170%;
}
@media screen and (max-width: 1600px) {
  .c-nav_pc_menu li a {
    font-size: 16px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 1400px) {
  .c-nav_pc_menu li a {
    font-size: 15px;
    margin-right: 15px;
  }
}
.c-nav_pc_menu li a:hover {
  color: #B0974B;
}
.c-nav_pc_menu li.contact a {
  width: 230px;
  height: 54px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  border-radius: 100px;
  color: #ffffff;
  background: linear-gradient(240deg, #B0974B 14.97%, #D2BC7A 82.27%);
  text-decoration: none;
  letter-spacing: -0.05em;
  position: relative;
  padding: 0 0 0 30px;
}
@media screen and (max-width: 1400px) {
  .c-nav_pc_menu li.contact a {
    width: 180px;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .c-nav_pc_menu li.contact a {
    width: inherit;
    height: inherit;
    display: inherit;
    flex-wrap: inherit;
    align-items: inherit;
    justify-content: inherit;
    font-size: 16px;
    font-size: 0.8888888889rem;
    border-radius: 0;
    color: #ffffff;
    background: none;
    text-decoration: none;
    letter-spacing: 0;
    position: relative;
    padding: 0;
    margin: 4px 0 0 0;
  }
}
.c-nav_pc_menu li.contact a:hover {
  opacity: 0.8;
}
.c-nav_pc_menu li.contact a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 43px;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_mail.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1400px) {
  .c-nav_pc_menu li.contact a::before {
    left: 30px;
    width: 28px;
    height: 28px;
  }
}
@media screen and (max-width: 767px) {
  .c-nav_pc_menu li.contact a::before {
    display: none;
  }
}

.c-table_news {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  border: 1px solid #D4CEC9;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-table_news {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 5.3333333333vw;
  }
}
.c-table_news th:first-child {
  border-top-left-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-table_news th:first-child {
    border-top-left-radius: 6px;
  }
}
.c-table_news th:last-child {
  border-top-right-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-table_news th:last-child {
    border-top-right-radius: 6px;
  }
}
.c-table_news tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-table_news tr:last-child td:first-child {
    border-bottom-left-radius: 6px;
  }
}
.c-table_news tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-table_news tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
  }
}
.c-table_news th {
  background: #A78E43;
  text-align: center;
  vertical-align: middle;
  padding: 15px;
  font-size: 18px;
  line-height: 180%;
  font-weight: bold;
  color: #ffffff;
  border-bottom: 1px solid #D4CEC9;
  border-right: 1px solid #D4CEC9;
}
@media screen and (max-width: 767px) {
  .c-table_news th {
    padding: 2.6666666667vw;
    font-size: 15px;
    font-size: 0.8333333333rem;
    line-height: 130%;
  }
}
.c-table_news th:last-of-type {
  border-right: none;
}
.c-table_news td {
  background: #ffffff;
  text-align: left;
  vertical-align: middle;
  padding: 13px 20px;
  font-size: 18px;
  line-height: 180%;
  border-bottom: 1px solid #D4CEC9;
  border-right: 1px solid #D4CEC9;
}
@media screen and (max-width: 767px) {
  .c-table_news td {
    padding: 2.6666666667vw 1.3333333333vw;
    font-size: 14px;
    font-size: 0.7777777778rem;
    line-height: 140%;
  }
}
.c-table_news td:last-of-type {
  border-right: none;
}
.c-table_news tr:last-of-type td {
  border-bottom: none;
}
.c-table_news2 {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #D4CEC9;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-table_news2 {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 5.3333333333vw;
  }
}
.c-table_news2 tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-table_news2 tr:first-child th:first-child {
    border-top-left-radius: 6px;
  }
}
.c-table_news2 tr:first-child td:first-child {
  border-top-right-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-table_news2 tr:first-child td:first-child {
    border-top-right-radius: 6px;
  }
}
.c-table_news2 tr:last-child th:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 10px;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .c-table_news2 tr:last-child th:first-child {
    border-bottom-left-radius: 6px;
  }
}
.c-table_news2 tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-table_news2 tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
  }
}
.c-table_news2 th {
  background: #A78E43;
  text-align: center;
  vertical-align: middle;
  padding: 15px;
  font-size: 18px;
  line-height: 180%;
  font-weight: bold;
  color: #ffffff;
  border-bottom: 1px solid #D4CEC9;
  border-right: 1px solid #D4CEC9;
}
@media screen and (max-width: 767px) {
  .c-table_news2 th {
    padding: 2.6666666667vw;
    font-size: 15px;
    font-size: 0.8333333333rem;
    line-height: 130%;
  }
}
.c-table_news2 th:last-of-type {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .c-table_news2 th {
    font-size: 3.4666666667vw;
    line-height: 130%;
    padding: 2.6666666667vw;
  }
}
.c-table_news2 td {
  background: #ffffff;
  text-align: left;
  vertical-align: middle;
  padding: 13px 20px;
  font-size: 18px;
  line-height: 180%;
  border-bottom: 1px solid #D4CEC9;
  border-right: 1px solid #D4CEC9;
}
.c-table_news2 td:last-of-type {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .c-table_news2 td {
    padding: 2.6666666667vw 1.3333333333vw;
    font-size: 14px;
    font-size: 0.7777777778rem;
    line-height: 140%;
  }
}
.c-table_news2 tr:last-of-type td {
  border-bottom: none;
}

.c-title-toph2 {
  margin: 0;
  font-size: 40px;
  font-weight: bold;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .c-title-toph2 {
    font-size: 32px;
    font-size: 1.7777777778rem;
    line-height: 150%;
  }
}
.c-title_h2 {
  width: 100%;
  height: 375px;
  background: url(../../src/img/lower/ttl_bg.png) center center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 45px;
  font-weight: bold;
  color: #ffffff;
  line-height: 120%;
  text-align: center;
  padding-top: 110px;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-title_h2 {
    height: 42.6666666667vw;
    font-size: 28px;
    font-size: 1.5555555556rem;
    padding-top: 0;
  }
}
.c-title_h2 span {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .c-title_h2 span {
    font-size: 18px;
    font-size: 1rem;
  }
}
.c-title_h3 {
  margin: 0 0 25px;
  font-size: 30px;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
  color: #004F3C;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-title_h3 {
    margin: 0 0 4vw;
    font-size: 22px;
    font-size: 1.2222222222rem;
  }
}
.c-title_h3 span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .c-title_h3 span {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.c-title_h4 {
  margin: 0 0 10px;
  padding: 0 0 0 16px;
  font-size: 22px;
  font-weight: bold;
  line-height: 160%;
  text-align: left;
  color: #004F3C;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-title_h4 {
    margin: 0 0 2.6666666667vw;
    padding: 0 0 0 2.6666666667vw;
    font-size: 20px;
    font-size: 1.1111111111rem;
  }
}
.c-title_h4 span {
  position: relative;
}
.c-title_h4 span::before {
  display: block;
  content: "";
  position: absolute;
  top: 2px;
  left: -16px;
  width: 4px;
  height: 25px;
  border-radius: 2px;
  background-color: #004F3C;
}
@media screen and (max-width: 767px) {
  .c-title_h4 span::before {
    top: 0;
    left: -2.6666666667vw;
    width: 0.5333333333vw;
    height: 5.8666666667vw;
  }
}

.c-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 13px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-pager {
    gap: 0 2.1333333333vw;
  }
}
.c-pager a {
  width: 44px;
  height: 44px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  color: #AFAFAF;
  background: #D4CEC9;
  border-radius: 100px;
  transition: 0.3s all;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pager a {
    width: 40px;
    height: 40px;
    line-height: 36px;
    font-size: 16px;
  }
}
.c-pager a:hover {
  color: #ffffff;
  background: linear-gradient(240deg, #B0974B 14.97%, #D2BC7A 82.27%);
}
.c-pager a:hover .c-pager__prev::before,
.c-pager a:hover .c-pager__next::before {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.c-pager a .c-pager__prev::before {
  display: block;
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  margin-left: -3px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #AFAFAF;
  border-right: 2px solid #AFAFAF;
  transform: rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .c-pager a .c-pager__prev::before {
    top: 15px;
    left: 20px;
  }
}
.c-pager a .c-pager__next::before {
  display: block;
  content: "";
  position: absolute;
  top: 16px;
  right: 50%;
  margin-right: -3px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #AFAFAF;
  border-right: 2px solid #AFAFAF;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-pager a .c-pager__next::before {
    top: 15px;
    right: 20px;
  }
}
.c-pager .current_page_number, .c-pager__current {
  color: #ffffff !important;
  background: linear-gradient(240deg, #B0974B 14.97%, #D2BC7A 82.27%) !important;
  pointer-events: none;
  position: relative;
}
.c-pager__dots {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .c-pager__dots {
    font-size: 16px;
  }
}
.c-pager .page-numbers.current {
  width: 44px;
  height: 44px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  border-radius: 100px;
  transition: 0.3s all;
  text-decoration: none;
  color: #ffffff !important;
  background: linear-gradient(240deg, #B0974B 14.97%, #D2BC7A 82.27%) !important;
  pointer-events: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pager .page-numbers.current {
    width: 40px;
    height: 40px;
    line-height: 36px;
    font-size: 16px;
  }
}

.p-header {
  width: calc(100% - 60px);
  height: 100px;
  position: fixed;
  top: 30px;
  left: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  z-index: 50;
  transition: 0.3s all;
}
@media screen and (max-width: 1240px) {
  .p-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1240px;
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 60px;
    min-width: 100%;
  }
}
.p-header.wide {
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1240px;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .p-header.wide {
    min-width: 100%;
  }
}
.p-header .hBox {
  width: 100%;
  height: 100px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header .hBox {
    height: 60px;
  }
}
.p-header .hBox .logo {
  width: 285px;
  height: auto;
  margin: 0 0 5px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  .p-header .hBox .logo {
    width: 230px;
  }
}
@media screen and (max-width: 1400px) {
  .p-header .hBox .logo {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-header .hBox .logo {
    margin: 0 0 2.1333333333vw 4vw;
    width: 48vw;
  }
}
.p-header .hBox .logo:hover {
  opacity: 0.8;
}
.p-header .hBox .logo img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  /*ハンバーガー*/
  #globalMenuSp {
    z-index: 99998;
    color: #ffffff;
    background: #004F3C;
    text-align: left;
    width: 100vw;
    max-width: 500px;
    height: 100vh;
    transition: top 0.5s ease;
    position: absolute;
    top: 60px;
    right: 0;
    display: none;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  #globalMenuSp.active {
    display: block;
  }
  .navToggle {
    display: block;
    position: fixed;
    z-index: 99999;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    background-color: #004F3C;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 26px;
    height: 2px;
    right: 17px;
    background: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .navToggle span:nth-child(1) {
    top: 20px;
  }
  .navToggle span:nth-child(2) {
    top: 29px;
  }
  .navToggle span:nth-child(3) {
    top: 37px;
  }
  .navToggle.active {
    width: 60px;
    height: 60px;
    mix-blend-mode: inherit;
    transition: 0.3s ease-in-out;
  }
  .navToggle.active span:nth-child(1) {
    top: 28px;
    background: #ffffff;
    transform: rotate(-40deg);
  }
  .navToggle.active span:nth-child(2),
  .navToggle.active span:nth-child(3) {
    top: 28px;
    background: #ffffff;
    transform: rotate(40deg);
  }
  .naviUl {
    display: block;
    width: 100vw;
    height: auto;
    padding: 50px;
    text-align: center;
  }
  .naviUl ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 10px;
  }
  .naviUl li {
    padding: 15px 0 15px 15px;
    text-align: left;
    border-bottom: 1px solid #587870;
  }
  .naviUl li a {
    text-decoration: none;
    font-size: 16px;
    font-size: 0.8888888889rem;
    color: #ffffff;
    margin: 0;
    width: 100%;
    position: relative;
  }
  .naviUl li a:hover {
    color: #ffffff;
  }
}
.p-footer {
  width: 100%;
  z-index: 1;
  position: relative;
}
.p-footer_top {
  background-color: #3C3C3C;
}
@media screen and (max-width: 767px) {
  .p-footer_top {
    background-color: #222222;
  }
}
.p-footer_top_inner {
  width: 1015px;
  margin: 0 auto;
  padding: 80px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer_top_inner {
    width: 100%;
    padding: 8vw 4vw 0;
  }
}
.p-footer_top_logo {
  width: 817px;
  margin: 0 auto 48px;
}
@media screen and (max-width: 767px) {
  .p-footer_top_logo {
    width: 50%;
    margin: 0 auto;
  }
}
.p-footer_top_nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer_top_nav {
    display: none;
  }
}
.p-footer_top_nav li a {
  font-size: 14px;
  font-weight: bold;
  padding: 0 29px;
  border-left: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
}
.p-footer_top_nav li a:hover {
  color: #B0974B;
}
.p-footer_top_nav li:last-child a {
  border-right: 1px solid #ffffff;
}
.p-footer_bottom {
  background-color: #222222;
  padding: 50px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom {
    padding: 5.3333333333vw 4vw 8vw;
  }
}
.p-footer_bottom_nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom_nav {
    margin-bottom: 0;
  }
}
.p-footer_bottom_nav li a {
  font-size: 14px;
  font-weight: bold;
  padding: 0 15px;
  color: #ffffff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom_nav li a {
    font-size: 14px;
    font-size: 0.7777777778rem;
    padding: 0 8vw 0 0;
  }
}
.p-footer_bottom_nav li a:hover {
  color: #B0974B;
}
.p-footer_bottom_nav li.contact a {
  position: relative;
}
.p-footer_bottom_nav li.contact a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_mail.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom_nav li.contact a::after {
    right: 3px;
  }
}
.p-footer_bottom_copy {
  color: #ffffff;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom_copy {
    font-size: 14px;
    font-size: 0.7777777778rem;
  }
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 50px;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transform: translateY(100px);
  z-index: 9;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    right: 10px;
    padding-bottom: 5.3333333333vw;
  }
}
.pagetop.on {
  transform: translateY(0);
}
.pagetop a {
  display: inline-block;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    width: 12vw;
    height: 12vw;
  }
}
.pagetop a:hover {
  opacity: 0.8;
}

.p-top {
  position: relative;
}
.p-top::before {
  display: block;
  content: "";
  position: absolute;
  top: calc(100vh + 50px);
  left: 0;
  width: 499px;
  height: 848px;
  background: url(../../src/img/main_bg01.png) center center no-repeat;
  background-size: cover;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top::before {
    display: none;
  }
}
.p-top::after {
  display: block;
  content: "";
  position: absolute;
  top: calc(100vh + 900px);
  right: 0;
  width: 407px;
  height: 849px;
  background: url(../../src/img/main_bg02.png) center center no-repeat;
  background-size: cover;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top::after {
    display: none;
  }
}
.p-top_titlewrap {
  margin: 0 auto 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top_titlewrap {
    margin: 0 auto 4vw;
  }
}
.p-top_titlewrap .en {
  font-size: 18px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  color: #004F3C;
  line-height: 150%;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-top_titlewrap .en {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 0.5333333333vw;
  }
}
.p-top_news {
  background: #F4F3EB url(../../src/img/main_bg.png) left top repeat;
  background-size: 340px 258px;
  padding: 90px 0 240px;
}
@media screen and (max-width: 767px) {
  .p-top_news {
    padding: 16vw 4vw 21.3333333333vw;
  }
}
.p-top_news_wrapper {
  max-width: 900px;
  margin: 0 auto 50px;
  border-top: 1px solid #D4CEC9;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrapper {
    max-width: 100%;
    margin: 0 auto 5.3333333333vw;
  }
}
.p-top_news_wrapper li {
  border-bottom: 1px solid #D4CEC9;
  padding: 30px 50px 26px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrapper li {
    padding: 4vw 8vw 4vw 0;
  }
}
.p-top_news_wrapper li .date {
  width: 100px;
  color: #004F3C;
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrapper li .date {
    width: 100%;
    font-size: 15px;
    font-size: 0.8333333333rem;
    line-height: 150%;
  }
}
.p-top_news_wrapper li .main {
  width: calc(100% - 100px);
  font-size: 18px;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrapper li .main {
    width: 100%;
    font-size: 16px;
    font-size: 0.8888888889rem;
    line-height: 160%;
  }
}
.p-top_news_wrapper li .main a {
  width: 100%;
  font-size: 18px;
  line-height: 170%;
  position: relative;
  color: #333333;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrapper li .main a {
    font-size: 16px;
    font-size: 0.8888888889rem;
    line-height: 160%;
  }
}
.p-top_news_wrapper li .main a:hover {
  color: #B0974B;
  text-decoration: none;
}
.p-top_news_wrapper li .main a:hover:after {
  right: -50px;
}
.p-top_news_wrapper li .main a:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  width: 37px;
  height: 9px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/aroow.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrapper li .main a:after {
    right: -8vw;
    width: 5.3333333333vw;
    height: 1.3333333333vw;
  }
}
.p-top_news_wrapper li.new .main {
  position: relative;
}
.p-top_news_wrapper li.new .main:before {
  content: "NEW";
  float: left;
  margin: 3px 8px 0 0;
  font-family: "Shippori Mincho", serif;
  background-color: #BE1010;
  color: #ffffff;
  font-size: 14px;
  line-height: 23px;
  padding: 0 8px;
  border-radius: 4px;
  height: 23px;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrapper li.new .main:before {
    margin: 0.8vw 2.1333333333vw 0 0;
    font-size: 14px;
    font-size: 0.7777777778rem;
    line-height: 4.8vw;
    padding: 0 2.1333333333vw;
    height: 4.8vw;
  }
}
.p-top_katsudo {
  background: #EEE8DC;
  position: relative;
  padding: 20px 0 30px;
}
@media screen and (max-width: 767px) {
  .p-top_katsudo {
    padding: 10.6666666667vw 4vw 13.3333333333vw;
  }
}
.p-top_katsudo::before {
  display: block;
  content: "";
  position: absolute;
  top: -148px;
  left: 0;
  width: 100%;
  height: 150px;
  background: url(../../src/img/top/wave_bg.png) center center no-repeat;
  background-size: auto 150px;
}
@media screen and (max-width: 767px) {
  .p-top_katsudo::before {
    top: -7.4666666667vw;
    height: 8vw;
    background: url(../../src/img/top/wave_bg.png) center center no-repeat;
    background-size: auto 8vw;
  }
}
.p-top_katsudo::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -148px;
  left: 0;
  width: 100%;
  height: 150px;
  transform: scaleY(-1);
  background: url(../../src/img/top/wave_bg.png) center center no-repeat;
  background-size: auto 150px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top_katsudo::after {
    bottom: -7.4666666667vw;
    height: 8vw;
    background: url(../../src/img/top/wave_bg.png) center center no-repeat;
    background-size: auto 8vw;
  }
}
.p-top_nav {
  background: url(../../src/img/top/top_bg01.png) center center no-repeat;
  background-size: cover;
  padding: 290px 0 160px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top_nav {
    padding: 26.6666666667vw 0 8vw;
  }
}
.p-top_nav_wrap {
  width: calc(100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_nav_wrap {
    width: calc(100% - 8vw);
    grid-template-columns: 1fr;
    gap: 4vw;
  }
}
.p-top_nav_wrap li {
  width: 100%;
}
.p-top_nav_wrap li:nth-child(even) {
  margin-top: 4vw;
}
@media screen and (max-width: 767px) {
  .p-top_nav_wrap li:nth-child(even) {
    margin-top: 0;
  }
}
.p-top_nav_wrap li a img {
  transform: scale(1);
  transition: 0.3s all;
}
.p-top_nav_wrap li a:hover img {
  transform: scale(1.08);
}
.p-top_blog {
  background: #F4F3EB url(../../src/img/main_bg.png) left top repeat;
  background-size: 340px 258px;
  padding: 140px 0;
}
@media screen and (max-width: 767px) {
  .p-top_blog {
    padding: 16vw 4vw;
  }
}
.p-top_blog_wrap {
  width: calc(100% - 40px);
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top_blog_wrap {
    width: 100%;
    margin: 0 auto 8vw;
    grid-template-columns: 1fr;
    gap: 9.3333333333vw;
  }
}
.p-top_blog_wrap a {
  color: #333333;
}
.p-top_blog_wrap a .img {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-top_blog_wrap a .img {
    margin-bottom: 4vw;
  }
}
.p-top_blog_wrap a .img img {
  width: 100%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all;
}
.p-top_blog_wrap a .text_wrap {
  position: relative;
}
.p-top_blog_wrap a .text_wrap p.day {
  font-size: 16px;
  color: #004F3C;
  font-family: "Shippori Mincho", serif;
  line-height: 150%;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-top_blog_wrap a .text_wrap p.day {
    font-size: 15px;
    font-size: 0.8333333333rem;
  }
}
.p-top_blog_wrap a .text_wrap p.txt {
  font-size: 18px;
  line-height: 180%;
  transition: 0.3s all;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-top_blog_wrap a .text_wrap p.txt {
    font-size: 16px;
    font-size: 0.8888888889rem;
    line-height: 160%;
  }
}
.p-top_blog_wrap a .text_wrap p.txt.new {
  position: relative;
}
.p-top_blog_wrap a .text_wrap p.txt.new:before {
  content: "NEW";
  float: left;
  margin: 3px 8px 0 0;
  font-family: "Shippori Mincho", serif;
  background-color: #BE1010;
  color: #ffffff;
  font-size: 14px;
  line-height: 23px;
  padding: 0 8px;
  border-radius: 4px;
  height: 23px;
}
@media screen and (max-width: 767px) {
  .p-top_blog_wrap a .text_wrap p.txt.new:before {
    margin: 0.8vw 2.1333333333vw 0 0;
    font-size: 14px;
    font-size: 0.7777777778rem;
    line-height: 4.8vw;
    padding: 0 2.1333333333vw;
    height: 4.8vw;
  }
}
.p-top_blog_wrap a:hover .img img {
  transform: scale(1.08);
  opacity: 0.8;
}
.p-top_blog_wrap a:hover .text_wrap p.txt {
  color: #B0974B;
}
.p-top_link {
  background: url(../../src/img/foot_bg.png) center center no-repeat;
  background-size: cover;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-top_link {
    padding: 10.6666666667vw 4vw;
  }
}
.p-top_link_wrap {
  max-width: 1090px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-top_link_wrap {
    grid-template-columns: 1fr 1fr;
    gap: 3.2vw;
  }
}
.p-top_link_wrap li a .img {
  overflow: hidden;
  border: 2px solid #B0974B;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .p-top_link_wrap li a .img {
    border: 1px solid #B0974B;
  }
}
.p-top_link_wrap li a .img img {
  width: 100%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all;
  border-radius: 4px;
}
.p-top_link_wrap li a:hover .img img {
  transform: scale(1.08);
}

.p-mv_top {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 1280px;
  min-height: 800px;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1240px) {
  .p-mv_top {
    max-height: 900px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv_top {
    height: calc(100dvh - 60px);
    max-height: calc(100dvh - 60px);
    min-height: calc(100dvh - 60px);
  }
}
.p-mv_top_catch {
  width: 40%;
  min-width: 630px;
  z-index: 10;
  margin-top: 130px;
}
@media screen and (max-width: 1240px) {
  .p-mv_top_catch {
    margin-top: 0;
    margin-bottom: 32vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv_top_catch {
    width: 80%;
    min-width: 80%;
    margin-top: 0;
  }
}
.p-mv_top_catch img {
  width: 100%;
}

.main_imgBox {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .main_imgBox {
    height: 100vh;
  }
}

.main_img {
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  left: 0;
  top: 0;
  animation: anime 15s infinite;
  /* アニメーション全体を16秒に設定（5秒 × 3枚） */
}
@media screen and (max-width: 767px) {
  .main_img {
    height: 100vh;
  }
}

.main_img:nth-child(1) {
  background: url(../../src/img/top/main01_pc.png) no-repeat top center;
  background-size: cover;
  animation-delay: 0s;
}
@media screen and (max-width: 767px) {
  .main_img:nth-child(1) {
    background: url(../../src/img/top/main01_sp.png) no-repeat top center;
    background-size: cover;
  }
}

.main_img:nth-child(2) {
  background: url(../../src/img/top/main02_pc.png) no-repeat top center;
  background-size: cover;
  animation-delay: 0s;
}
@media screen and (max-width: 767px) {
  .main_img:nth-child(2) {
    background: url(../../src/img/top/main02_sp.png) no-repeat top center;
    background-size: cover;
  }
}

.main_img:nth-child(3) {
  background: url(../../src/img/top/main03_pc.png) no-repeat top center;
  background-size: cover;
  animation-delay: 0s;
}
@media screen and (max-width: 767px) {
  .main_img:nth-child(3) {
    background: url(../../src/img/top/main03_sp.png) no-repeat top center;
    background-size: cover;
  }
}

/* 各画像のアニメーション遅延設定 */
.main_img:nth-of-type(2) {
  animation-delay: 5s;
}

.main_img:nth-of-type(3) {
  animation-delay: 10s;
}

@keyframes anime {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
.p-lower {
  background: #F4F3EB url(../../src/img/main_bg.png) left top repeat;
  background-size: 340px 258px;
  padding: 100px 0 140px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-lower {
    padding: 10.6666666667vw 4vw 16vw;
  }
}
.p-lower.sitemap {
  padding: 0;
}
.p-lower::before {
  display: block;
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  width: 499px;
  height: 848px;
  background: url(../../src/img/main_bg01.png) center center no-repeat;
  background-size: cover;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-lower::before {
    display: none;
  }
}
.p-lower::after {
  display: block;
  content: "";
  position: absolute;
  top: 970px;
  right: 0;
  width: 407px;
  height: 849px;
  background: url(../../src/img/main_bg02.png) center center no-repeat;
  background-size: cover;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-lower::after {
    display: none;
  }
}
.p-lower .p-top_blog_wrap {
  max-width: 930px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 50px;
}
@media screen and (max-width: 767px) {
  .p-lower .p-top_blog_wrap {
    max-width: 100%;
    margin: 0 auto 8vw;
    grid-template-columns: 1fr;
    gap: 9.3333333333vw;
  }
}
.p-lower_news {
  max-width: 1090px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 50px 95px 80px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-lower_news {
    max-width: 100%;
    border-radius: 6px;
    padding: 5.3333333333vw 4vw;
    margin: 0 auto 8vw;
  }
}
.p-lower_news_head {
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #D4CEC9;
}
@media screen and (max-width: 767px) {
  .p-lower_news_head {
    margin-bottom: 5.3333333333vw;
    padding-bottom: 4vw;
  }
}
.p-lower_news_head .date {
  width: 100px;
  color: #004F3C;
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  line-height: 150%;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-lower_news_head .date {
    margin-bottom: 1.3333333333vw;
    font-size: 15px;
    font-size: 0.8333333333rem;
  }
}
.p-lower_news_h1 {
  font-size: 30px;
  line-height: 170%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-lower_news_h1 {
    font-size: 24px;
    font-size: 1.3333333333rem;
  }
}
.p-lower_news_h2 {
  font-size: 24px;
  font-weight: bold;
  color: #004F3C;
  margin: 100px 0 30px;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .p-lower_news_h2 {
    font-size: 20px;
    font-size: 1.1111111111rem;
    margin: 13.3333333333vw 0 4vw;
    line-height: 170%;
  }
}
.p-lower_news p {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-lower_news p {
    margin-bottom: 4vw;
  }
}
.p-lower_news_img_wrap {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-lower_news_img_wrap {
    margin-bottom: 2.6666666667vw;
  }
}
.p-lower_news_img_wrap img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-lower_news_img_wrap img {
    border-radius: 6px;
  }
}
.p-lower_news_img_wrap p {
  font-size: 14px;
  line-height: 170%;
  margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
  .p-lower_news_img_wrap p {
    font-size: 14px;
    font-size: 0.7777777778rem;
    line-height: 160%;
    margin: 2.1333333333vw 0 0;
  }
}
.p-lower_news_img_wrap_col2 {
  width: 100%;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-lower_news_img_wrap_col2 {
    margin-bottom: 4vw;
    grid-template-columns: 1fr;
    gap: 2.6666666667vw;
  }
}
.p-lower_news_img_wrap_col2 img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-lower_news_img_wrap_col2 img {
    border-radius: 6px;
  }
}
.p-lower_news_img_wrap_col2 p {
  font-size: 14px;
  line-height: 170%;
  margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
  .p-lower_news_img_wrap_col2 p {
    font-size: 14px;
    font-size: 0.7777777778rem;
    line-height: 160%;
    margin: 2.1333333333vw 0 0;
  }
}
.p-lower_news_img_wrap_col3 {
  width: 100%;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-lower_news_img_wrap_col3 {
    margin-bottom: 4vw;
    grid-template-columns: 1fr;
    gap: 2.6666666667vw;
  }
}
.p-lower_news_img_wrap_col3 img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-lower_news_img_wrap_col3 img {
    border-radius: 6px;
  }
}
.p-lower_news_img_wrap_col3 p {
  font-size: 14px;
  line-height: 170%;
  margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
  .p-lower_news_img_wrap_col3 p {
    font-size: 14px;
    font-size: 0.7777777778rem;
    line-height: 160%;
    margin: 2.1333333333vw 0 0;
  }
}
.p-lower_what {
  max-width: 800px;
  margin: 0 auto 120px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-lower_what {
    max-width: 100%;
    margin: 0 auto 16vw;
  }
}
.p-lower_what:last-of-type {
  margin: 0 auto;
}
.p-lower_what_txt {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-lower_what_txt {
    margin-bottom: 5.3333333333vw;
  }
}
.p-lower_what_img {
  width: 100%;
  margin: 0 auto;
}
.p-lower_what_img img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-lower_what_img img {
    border-radius: 6px;
  }
}
.p-lower_what_wrap {
  border-radius: 10px;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-lower_what_wrap {
    border-radius: 6px;
  }
}
.p-lower_what_wrap dt {
  width: 160px;
  padding: 19px 0 18px 30px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #D4CEC9;
}
@media screen and (max-width: 767px) {
  .p-lower_what_wrap dt {
    width: 100%;
    padding: 4vw 4vw 0;
    font-size: 18px;
    font-size: 1rem;
    border-bottom: none;
  }
}
.p-lower_what_wrap dt:last-of-type {
  border-bottom: none;
}
.p-lower_what_wrap dd {
  width: calc(100% - 160px);
  padding: 19px 0 18px;
  border-bottom: 1px solid #D4CEC9;
}
@media screen and (max-width: 767px) {
  .p-lower_what_wrap dd {
    width: 100%;
    padding: 0 4vw 4vw;
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.p-lower_what_wrap dd:last-of-type {
  border-bottom: none;
}
.p-lower_yakuin {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-lower_yakuin {
    max-width: 100%;
  }
}
.p-lower_kaicho {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-lower_kaicho {
    max-width: 100%;
  }
}
.p-lower_kaicho_wrap {
  width: 100%;
}
.p-lower_kaicho_img {
  width: 348px;
  height: auto;
  margin: 0 0 30px 40px;
  text-align: center;
  float: right;
}
@media screen and (max-width: 767px) {
  .p-lower_kaicho_img {
    width: 100%;
    margin: 0 auto 4vw;
  }
}
.p-lower_kaicho_img img {
  border-radius: 10px;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-lower_kaicho_img img {
    width: 60%;
    margin: 0 auto 1.3333333333vw;
    border-radius: 6px;
  }
}
.p-lower_kaicho_img_txt {
  margin-top: 10px;
  font-size: 18px;
  line-height: 160%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-lower_kaicho_img_txt {
    margin-top: 0;
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.p-lower_kaicho_img_txt span {
  display: block;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .p-lower_kaicho_img_txt span {
    font-size: 20px;
    font-size: 1.1111111111rem;
  }
}
.p-lower_soshiki {
  max-width: 1090px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 75px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-lower_soshiki {
    max-width: 100%;
    border-radius: 6px;
    padding: 10.6666666667vw 4vw 5.3333333333vw;
  }
}
.p-lower_soshiki .c-title_h3.soshiki {
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-lower_soshiki .c-title_h3.soshiki {
    top: -3.2vw;
  }
}
.p-lower_soshiki_img {
  width: 689px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-lower_soshiki_img {
    width: 100%;
  }
}
.p-lower_kaisoku {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-lower_kaisoku {
    max-width: 100%;
  }
}
.p-lower_kaisoku_wrap {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-lower_kaisoku_wrap {
    margin-bottom: 10.6666666667vw;
  }
}
.p-lower_kaisoku_wrap:last-of-type {
  margin-bottom: 0;
}
.p-lower_kaisoku_wrap .kaisoku {
  width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .p-lower_kaisoku_wrap .kaisoku {
    grid-template-columns: 13.3333333333vw 1fr;
    gap: 1.3333333333vw;
  }
}
.p-lower_sitemap {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 100px 0 120px;
}
@media screen and (max-width: 767px) {
  .p-lower_sitemap {
    padding: 13.3333333333vw 4vw;
  }
}
.p-lower_sitemap.bg {
  background: rgba(213, 193, 150, 0.2);
}
.p-lower_sitemap .inner {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-lower_sitemap .inner {
    max-width: 100%;
  }
}
.p-lower_sitemap_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 50px;
}
@media screen and (max-width: 767px) {
  .p-lower_sitemap_wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.p-lower_sitemap_wrap li {
  width: 100%;
  padding: 30px 0 30px 10px;
  border-top: 1px solid #D4CEC9;
  border-bottom: 1px solid #D4CEC9;
  margin: -1px 0 0;
}
@media screen and (max-width: 767px) {
  .p-lower_sitemap_wrap li {
    padding: 4vw 8vw 4vw 4vw;
  }
}
.p-lower_sitemap_wrap li a {
  width: 100%;
  font-size: 18px;
  line-height: 170%;
  position: relative;
  color: #333333;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-lower_sitemap_wrap li a {
    font-size: 16px;
    font-size: 0.8888888889rem;
    line-height: 160%;
  }
}
.p-lower_sitemap_wrap li a:hover {
  color: #B0974B;
  text-decoration: none;
}
.p-lower_sitemap_wrap li a:hover:after {
  right: 0;
}
.p-lower_sitemap_wrap li a:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 37px;
  height: 9px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/aroow.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-lower_sitemap_wrap li a:after {
    right: -2.6666666667vw;
    width: 5.3333333333vw;
    height: 1.3333333333vw;
  }
}

.p-bread {
  width: 100%;
  border-top: 1px solid #D4CEC9;
  border-bottom: 1px solid #D4CEC9;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-bread {
    display: none;
  }
}
.p-bread ul {
  display: flex;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.p-bread ul li {
  padding-right: 40px;
  position: relative;
}
.p-bread ul li span {
  display: inline-block;
  font-size: 13px;
  line-height: 150%;
  padding: 16px 0;
}
.p-bread ul li:last-of-type::after {
  display: none;
}
.p-bread ul li a {
  display: inline-block;
  font-size: 13px;
  line-height: 160%;
  padding: 15px 0;
  color: #B0974B;
  transition: 0.3s all;
  text-decoration: none;
}
.p-bread ul li a:hover {
  opacity: 0.8;
}
.p-bread ul li::after {
  display: block;
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: rotate(45deg);
}

.u-mb--0 {
  margin-bottom: 0px !important;
}
.u-mb--xxs {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xxs {
    margin-bottom: 1.3333333333vw !important;
  }
}
.u-mb--xs {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xs {
    margin-bottom: 2.6666666667vw !important;
  }
}
.u-mb--s {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--s {
    margin-bottom: 5.3333333333vw !important;
  }
}
.u-mb--m {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--m {
    margin-bottom: 6.6666666667vw !important;
  }
}
.u-mb--l {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--l {
    margin-bottom: 9.3333333333vw !important;
  }
}
.u-mb--60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--60 {
    margin-bottom: 8vw !important;
  }
}
.u-mb--100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--100 {
    margin-bottom: 13.3333333333vw !important;
  }
}

.u-mt--0 {
  margin-top: 0px !important;
}
.u-mt--xxs {
  margin-top: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xxs {
    margin-top: 1.3333333333vw !important;
  }
}
.u-mt--xs {
  margin-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xs {
    margin-top: 2.6666666667vw !important;
  }
}
.u-mt--s {
  margin-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--s {
    margin-top: 4vw !important;
  }
}
.u-mt--m {
  margin-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--m {
    margin-top: 5.3333333333vw !important;
  }
}
.u-mt--l {
  margin-top: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--l {
    margin-top: 6.6666666667vw !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-fontsize--l {
  font-size: 28px;
  font-size: 1.5555555556rem;
  line-height: 1.2857142857;
}
.u-fontsize--l::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.2857142857) * 0.5em);
  content: "";
}
.u-fontsize--l::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.2857142857) * 0.5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .u-fontsize--l {
    font-size: 20px;
    font-size: 1.1111111111rem;
    line-height: 1.4;
  }
  .u-fontsize--l::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.4) * 0.5em);
    content: "";
  }
  .u-fontsize--l::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.4) * 0.5em);
    content: "";
  }
}
.u-fontsize--16 {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .u-fontsize--16 {
    font-size: 1.4rem;
  }
}

.u-fontcolor--red {
  color: #BE1010;
}

.u-fontweight--bold {
  font-weight: bold;
}

.u-lineheight--140 {
  line-height: 140% !important;
}

.u-text-align--center {
  text-align: center !important;
}
.u-text-align--right {
  text-align: right !important;
}