@charset "UTF-8";
/* ===================================
Foundation
=================================== */
/*
 * _setting.scss
 */
/* -----------------------------------
Color
------------------------------------ */
/*
 * _mixin.scss
 */
/* -----------------------------------
media query print
------------------------------------ */
/* -----------------------------------
media query ver1
------------------------------------ */
/* -----------------------------------
transition
------------------------------------ */
/* -----------------------------------
ie
------------------------------------ */
/* -----------------------------------
clearfix
------------------------------------ */
/* -----------------------------------
formFocus
------------------------------------ */
/*
 * _fonts.scss
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap");
/*
 * _reset.scss
 */
/* -----------------------------------
reset
------------------------------------ */
html,
body {
  height: 100%;
}

html {
  overflow-y: scroll;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

form {
  display: inline;
}

pre,
textarea {
  overflow: auto;
}

[hidden],
audio:not([controls]),
template {
  display: none;
}

details,
main,
summary {
  display: block;
}

input[type=text],
input[type=password] {
  -webkit-appearance: none;
}

input[type=radio],
input[type=checkbox] {
  vertical-align: middle;
}

input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

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

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 60%;
  line-height: 0;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.15em;
}

textarea {
  resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  border: none;
  background: none;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

ol,
ul {
  list-style: none;
}

select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select option {
  background-color: #fff;
  color: #333;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

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

fieldset {
  border: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 15px 0;
  padding: 0;
}

/*
 * _base.scss
 */
/* -----------------------------------
base Setting
------------------------------------ */
html {
  font-size: 62.5%;
}

body {
  color: #595757;
  font-size: 1.5rem;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background: #fff;
  max-height: 999999px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 768px) {
  body {
    line-height: 1.8;
    font-size: 4vw;
  }
}

p {
  text-align: justify;
}

a {
  color: #83724D;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

::selection {
  background: #83724D;
  color: #fff;
}

::-moz-selection {
  background: #83724D;
  color: #fff;
}

/* ===================================
Layout
=================================== */
/*
 * _layout.scss
 */
/* -----------------------------------
wrapper
------------------------------------ */
@media screen and (min-width: 769px) {
  .l-wrapper {
    min-width: 1180px;
  }
}

/* -----------------------------------
header
------------------------------------ */
.l-header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 150px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 18vw;
  }
}
.l-header_in {
  position: relative;
  min-width: 1180px;
  margin: 0 auto;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .l-header_in {
    min-width: 1px;
  }
}
.l-header_logo {
  position: absolute;
  height: 66px;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1500px) {
  .l-header_logo {
    height: 55px;
    left: 2%;
  }
}
@media screen and (max-width: 768px) {
  .l-header_logo {
    width: 46vw;
    height: auto;
    left: 4%;
  }
}
.l-header_logo a img {
  width: auto;
  height: 100%;
}
.l-header_search {
  position: absolute;
  z-index: 10;
  top: 32px;
  right: 880px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
}
@media screen and (max-width: 1500px) {
  .l-header_search {
    right: 780px;
  }
}
@media screen and (max-width: 1300px) {
  .l-header_search {
    right: 710px;
  }
}
@media screen and (max-width: 768px) {
  .l-header_search {
    top: 3.7142857143vw;
    right: 14.2857142857vw;
  }
}
.l-header_search dl {
  position: relative;
}
.l-header_search dl dt {
  transition: 0.3s ease-in-out;
  user-select: none;
  cursor: pointer;
  border: 1px solid #83724D;
  border-radius: 100px;
  padding: 0 10px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .l-header_search dl dt {
    font-size: 1em;
  }
}
@media screen and (max-width: 768px) {
  .l-header_search dl dt {
    padding: 0.8571428571vw 3.4285714286vw;
    font-size: 3.1428571429vw;
    line-height: 1.3;
  }
}
.l-header_search dl dt::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../img/common/ico_search.svg) no-repeat center/contain;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .l-header_search dl dt::before {
    width: 4.2857142857vw;
    height: 4.2857142857vw;
    margin-right: 1.4285714286vw;
  }
}
.l-header_search dl dt.is-visible {
  background: #83724D;
  color: #fff;
}
.l-header_search dl dt.is-visible::before {
  background: url(../img/common/ico_close_white.svg) no-repeat center/contain;
  background-size: 50% 50%;
}
.l-header_search dl dd {
  transition: 0.3s ease-in-out;
  position: absolute;
  background: #fff;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #83724D;
  transform: translateY(15px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .l-header_search dl dd {
    margin: 0 -15%;
    width: 130%;
    padding: 2.2857142857vw;
    border-radius: 2.8571428571vw;
    transform: translateY(4.2857142857vw);
  }
}
.l-header_search dl dd.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-header_search dl dd.is-visible::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: #fff;
  position: absolute;
  border-top: 1px solid #83724D;
  border-left: 1px solid #83724D;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .l-header_search dl dd.is-visible::before {
    width: 4.2857142857vw;
    height: 4.2857142857vw;
  }
}
.l-header_search dl dd ul li {
  text-align: center;
}
.l-header_search dl dd ul li a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border-bottom: 1px solid rgba(131, 114, 77, 0);
}
.l-header_search dl dd ul li a::before {
  content: ">";
  padding-right: 5px;
}
.l-header_search dl dd ul li a:hover {
  border-bottom: 1px solid rgba(131, 114, 77, 0.5);
}
.l-header_primary {
  position: absolute;
  top: 26px;
  right: 3%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1500px) {
  .l-header_primary {
    right: 2%;
  }
}
@media screen and (max-width: 768px) {
  .l-header_primary {
    display: none;
  }
}
.l-header_primary > ul {
  display: flex;
  align-items: center;
}
.l-header_primary > ul li {
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  line-height: 1;
  border-right: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  .l-header_primary > ul li {
    margin: 0 5px;
  }
}
.l-header_primary > ul li a {
  color: #595757;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.l-header_primary > ul li a:hover {
  color: #83724D;
}
.l-header_primary > ul li span {
  display: inline-block;
  padding: 3px 22px 3px;
}
@media screen and (max-width: 1500px) {
  .l-header_primary > ul li span {
    padding: 3px 15px 3px;
  }
}
@media screen and (max-width: 1300px) {
  .l-header_primary > ul li span {
    padding: 3px 10px 3px;
  }
}
.l-header_primary > ul li:first-child {
  border-left: 1px solid #cccccc;
}
.l-header_tel {
  width: 222px;
  margin-left: 30px;
}
@media screen and (max-width: 1500px) {
  .l-header_tel {
    margin-left: 22px;
  }
}
@media screen and (max-width: 1300px) {
  .l-header_tel {
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-header_tel {
    width: 64%;
    margin: 5.7142857143vw auto 5.7142857143vw;
  }
}
.l-header_reserve {
  margin-left: 35px;
}
@media screen and (max-width: 1500px) {
  .l-header_reserve {
    margin-left: 25px;
  }
}
@media screen and (max-width: 1300px) {
  .l-header_reserve {
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-header_reserve {
    margin-left: 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .l-header_reserve .c-btnHead {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .l-header_reserve .c-btnHead > span {
    width: 68%;
    font-size: 3.7142857143vw;
    height: 13vw;
    color: #83724d;
    background: #fff;
  }
}
.l-header_interview {
  margin-left: 15px;
}
@media screen and (max-width: 1500px) {
  .l-header_interview {
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .l-header_interview {
    margin-top: 10px;
    margin-left: 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .l-header_interview .c-btnHead {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .l-header_interview .c-btnHead > span {
    width: 68%;
    font-size: 3.7142857143vw;
    height: 13vw;
    color: #83724d;
    background: #fff;
  }
}

/* -----------------------------------
nav
------------------------------------ */
.l-nav {
  position: absolute;
  bottom: 20px;
  right: 3.5%;
  display: block;
}
@media screen and (max-width: 768px) {
  .l-nav {
    display: none;
    width: 100%;
    bottom: auto;
    top: 18vw;
    right: 0;
    padding-bottom: 8.5714285714vw;
    background: #8a7f61;
    overflow-y: scroll;
    overflow-x: hidden;
    height: calc(var(--vh) * 100 - 18vw);
  }
}
.l-nav_list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-nav_list {
    display: block;
    padding: 0 6%;
  }
}
.l-nav_list > li {
  margin-left: 30px;
}
@media screen and (max-width: 1500px) {
  .l-nav_list > li {
    margin-left: 22px;
  }
}
@media screen and (max-width: 768px) {
  .l-nav_list > li {
    margin-left: 0;
    border-bottom: 1px solid #fff;
  }
}
.l-nav_list_in {
  display: none;
  width: 114%;
  margin-left: -7%;
  background: #978d71;
}
.l-nav_list_in li {
  border-top: 1px solid #fff;
}
.l-nav_list_in li a {
  padding-left: 14.2857142857vw;
}
.l-nav_list_in li a::before {
  right: 6%;
}
.l-nav_list a {
  position: relative;
  color: #595757;
  font-size: 16px;
  text-decoration: none;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  transition: 0.3s ease-in-out;
}
.l-nav_list a:hover {
  color: #83724D;
}
@media screen and (max-width: 768px) {
  .l-nav_list a:hover {
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .l-nav_list a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .l-nav_list a {
    color: #fff;
    display: block;
    font-size: 4.2857142857vw;
    padding: 2.8571428571vw 2%;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
  }
  .l-nav_list a::before {
    content: "";
    display: block;
    width: 12.5px;
    height: 10.5px;
    background: url(../img/common/yajirushi_wh.svg) no-repeat center/contain;
    position: absolute;
    right: 0;
    top: calc(50% - 5px);
  }
}
.l-nav_list a.menuAcd_btn::before {
  width: 13px;
  height: 13px;
  background: url(../img/common/plus.png) no-repeat center/contain;
  top: calc(50% - 6px);
}
.l-nav_list a.menuAcd_btn.is-open::before {
  background: url(../img/common/minus.png) no-repeat center/contain;
}
.l-navMenu {
  display: none;
  font-size: 0;
  position: absolute;
  top: 35%;
  right: 4%;
  width: 6.5714285714vw;
  height: 4vw;
}
@media screen and (max-width: 768px) {
  .l-navMenu {
    display: block;
  }
}
.l-navMenu span {
  display: block;
  width: 100%;
  height: 0.5714285714vw;
  background: #7d7150;
  position: absolute;
  transition: 0.3s ease-in-out;
}
.l-navMenu span:nth-child(1) {
  top: 0;
}
.l-navMenu span:nth-child(2) {
  top: 50%;
}
.l-navMenu span:nth-child(3) {
  top: 100%;
}
.l-navMenu.is-open span:nth-child(1) {
  transform: translateY(2.5vw) rotate(135deg);
}
.l-navMenu.is-open span:nth-child(2) {
  opacity: 0;
}
.l-navMenu.is-open span:nth-child(3) {
  transform: translateY(-1.6vw) rotate(45deg);
}

/* -----------------------------------
content
------------------------------------ */
.l-content {
  padding-top: 150px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-content {
    padding-top: 18vw;
  }
}

body#recruit .l-content:before {
  content: "";
  display: block;
  width: 100%;
  height: 1500px;
  background-color: #f9f7f0;
  position: absolute;
  top: 0;
  left: 0;
}

/* -----------------------------------
section
------------------------------------ */
.l-sec {
  position: relative;
  z-index: 1;
  padding: 50px 20px;
}
@media screen and (max-width: 768px) {
  .l-sec {
    padding: 30px 4%;
  }
}
.l-sec_in {
  max-width: 1180px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.l-sec_in.-w1040 {
  max-width: 1040px;
}
@media screen and (max-width: 768px) {
  .l-sec_in.-w1040 {
    max-width: 500px;
  }
}
.l-sec_in.-w1260 {
  max-width: 1260px;
}
@media screen and (max-width: 768px) {
  .l-sec_in.-w1260 {
    max-width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .l-sec_in {
    max-width: 500px;
  }
}

/* -----------------------------------
footer
------------------------------------ */
.l-footer {
  padding: 50px 20px 12px;
  background: #83724D;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 6vw 10px 10px;
    padding-bottom: 110px;
  }
}
.l-footer_in {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-footer_in {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-footerBody {
    display: block;
  }
}
.l-footer_nav {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .l-footer_nav {
    display: block;
    padding: 0 4%;
  }
}
.l-footer_nav dl {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer_nav dl {
    margin: 1vw 0;
  }
}
.l-footer_nav dl dd a:before {
  content: "";
  display: inline-block;
  width: 12.5px;
  height: 10.5px;
  background: url(../img/common/yajirushi_wh.svg) no-repeat center/contain;
  position: relative;
  left: 0;
  margin-right: 4px;
}
@media screen and (max-width: 768px) {
  .l-footer_nav dl dd {
    margin: 1vw 0 1vw 3vw;
  }
}
.l-footer_nav a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.l-footer_nav a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .l-footer_nav a:before {
    content: "";
    display: inline-block;
    width: 12.5px;
    height: 10.5px;
    background: url(../img/common/yajirushi_wh.svg) no-repeat center/contain;
    position: relative;
    left: 0;
    margin-right: 4px;
  }
}
.l-footer_primary {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  .l-footer_primary {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer_primary {
    display: block;
    padding-top: 6vw;
    margin-top: 6vw;
    border-top: 1px solid #aaa590;
  }
}
.l-footer_tel {
  width: 222px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer_tel {
    width: 60vw;
    margin: 0 auto;
  }
}
.l-footer_reserve {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .l-footer_reserve {
    margin-left: 0;
    text-align: center;
  }
}
.l-footer_reserve .c-btnHead > span {
  color: #83724D;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .l-footer_reserve .c-btnHead > span {
    font-size: 3.7142857143vw;
    width: 64vw;
    height: 14vw;
    margin: 5vw auto 0;
  }
}
.l-footer_copyright {
  display: block;
  position: relative;
  padding-top: 12px;
  margin-top: 30px;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .l-footer_copyright {
    padding-top: 0;
    margin: 6vw 0 2vw;
    font-size: 0.8rem;
    text-align: center;
  }
}

/* ===================================
Object
=================================== */
/* -----------------------------------
Component
------------------------------------ */
/*
 * _component.scss
 */
/* -----------------------------------
.c-txt
------------------------------------ */
.c-titleStyle1 {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle1 {
    margin-bottom: 7.1428571429vw;
  }
}
.c-titleStyle1 span {
  display: inline-block;
  position: relative;
  color: #83724D;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  padding-bottom: 10px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle1 span {
    padding-bottom: 5px;
    padding-bottom: 1.4285714286vw;
    font-size: 1rem;
    font-size: 2.8571428571vw;
  }
}
.c-titleStyle1 span:before {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #83724D;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .c-titleStyle1 span:before {
    width: 30px;
    width: 8.5714285714vw;
    height: 1px;
  }
}
.c-titleStyle1 p {
  text-align: center;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .c-titleStyle1 p {
    font-size: 2.2rem;
    font-size: 6.2857142857vw;
  }
}
.c-titleStyle1 p:after {
  content: "";
  margin-right: -0.1em;
}
.c-titleStyle2 {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}
.c-titleStyle2 span {
  display: inline-block;
  position: relative;
  color: #83724D;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 4.8rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-titleStyle2 span {
    font-size: 3rem;
  }
}
.c-titleStyle2 p {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: #83724D;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .c-titleStyle2 p {
    font-size: 1.1rem;
  }
}
.c-titleStyle2 p:after {
  content: "";
  margin-right: -0.1em;
}
.c-titleStyle3 {
  position: relative;
  padding-bottom: 20px;
}
.c-titleStyle3 span {
  color: #83724D;
  font-size: 32px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .c-titleStyle3 span {
    font-size: 18px;
    font-size: 5.1428571429vw;
  }
}
.c-titleStyle3 p {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle3 p {
    font-size: 4vw;
  }
}
.c-titleStyle3:before {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #83724D;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-titleStyle4 {
  position: relative;
  font-size: 28px;
  color: #83724D;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.c-titleStyle4.-bk {
  color: #595757;
}
@media screen and (max-width: 768px) {
  .c-titleStyle4 {
    font-size: 5.7142857143vw;
    padding-bottom: 2.8571428571vw;
    margin-bottom: 3.4285714286vw;
  }
}
.c-titleStyle4:before {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #83724D;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.c-titleStyle5 {
  position: relative;
  font-size: 26px;
  color: #83724D;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle5 {
    font-size: 5.1428571429vw;
    padding-bottom: 2.8571428571vw;
    margin-bottom: 3.4285714286vw;
  }
}
.c-titleStyle6 {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 10px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle6 {
    font-size: 4.2857142857vw;
    padding-bottom: 2.2857142857vw;
    margin-bottom: 3.4285714286vw;
    margin-top: 8.5714285714vw;
  }
}
.c-titleStyle7 {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 5px;
  color: #83724D;
}
@media screen and (max-width: 768px) {
  .c-titleStyle7 {
    font-size: 4.2857142857vw;
    margin-bottom: 2.8571428571vw;
    margin-top: 1.4285714286vw;
  }
}

/* -----------------------------------
.c-indent1
------------------------------------ */
.c-indent1 li {
  margin-left: 1em;
  text-indent: -1em;
}

.c-indent1h li {
  margin-left: 1.5em;
  text-indent: -1.5em;
}

/* -----------------------------------
hover
------------------------------------ */
/* -----------------------------------
c-btn
------------------------------------ */
.c-btnStyle1 {
  transition: 0.3s ease-in-out;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.c-btnStyle1 > span {
  position: relative;
  display: inline-block;
  background: #83724D;
  border: 1px solid #83724D;
  border-radius: 100px;
  font-size: 1.6rem;
  color: #fff;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  padding: 10px 65px;
}
@media screen and (max-width: 768px) {
  .c-btnStyle1 > span {
    font-size: 1.4rem;
  }
}
.c-btnStyle1 > span:after {
  transition: 0.3s ease-in-out;
  content: "";
  display: inline-block;
  width: 12.5px;
  height: 10.5px;
  background: url(../img/common/ico_arrow_white.png) no-repeat center;
  background-size: contain;
  position: relative;
  left: 0;
  margin-left: 10px;
}
@media screen and (min-width: 769px) {
  .c-btnStyle1:hover {
    opacity: 0.7;
  }
  .c-btnStyle1:hover span:after {
    left: 5px;
  }
}
.c-btnStyle1.-white > span {
  background: none;
  border: 1px solid #fff;
  color: #fff;
}
.c-btnStyle1.-small > span {
  font-size: 1.6rem;
  padding: 5px 40px;
}
@media screen and (max-width: 768px) {
  .c-btnStyle1.-small > span {
    font-size: 1.2rem;
    padding: 10px 30px;
  }
}
.c-btnStyle2 {
  transition: 0.3s ease-in-out;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.c-btnStyle2 > span {
  position: relative;
  display: inline-block;
  border: 1px solid #595757;
  border-radius: 100px;
  font-size: 1.6rem;
  color: #595757;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  padding: 10px 65px;
}
@media screen and (max-width: 768px) {
  .c-btnStyle2 > span {
    font-size: 1.3rem;
    padding: 10px 30px;
  }
}
.c-btnStyle2 > span:after {
  transition: 0.3s ease-in-out;
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #595757;
  border-left: 1px solid #595757;
  transform: rotate(-45deg);
  position: relative;
  top: -4px;
  margin-left: 20px;
}
@media screen and (min-width: 769px) {
  .c-btnStyle2:hover {
    opacity: 0.7;
  }
}
.c-btnHead {
  transition: 0.3s ease-in-out;
  position: relative;
  display: inline-block;
  text-decoration: none;
  line-height: 1;
}
.c-btnHead.-type2 > span {
  background: transparent;
  border: 1px solid #898888;
  color: #595858;
  min-width: 287px;
  height: 60px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .c-btnHead.-type2 > span {
    font-size: 3.7142857143vw;
    min-width: 62.8571428571vw;
    height: 13.1428571429vw;
  }
}
.c-btnHead.-type2-min > span {
  background: transparent;
  border: 1px solid #898888;
  color: #595858;
  min-width: 287px;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .c-btnHead.-type2-min > span {
    font-size: 3.7142857143vw;
    min-width: 62.8571428571vw;
    height: 10.2857142857vw;
  }
}
.c-btnHead.-type3 > span {
  min-width: 287px;
  height: 60px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .c-btnHead.-type3 > span {
    font-size: 3.7142857143vw;
    min-width: 62.8571428571vw;
    height: 13.1428571429vw;
  }
}
.c-btnHead.-arrow > span:after {
  transition: 0.3s ease-in-out;
  content: "";
  display: inline-block;
  width: 12.5px;
  height: 10.5px;
  background: url(../img/common/ico_arrow_gray.png) no-repeat center;
  background-size: contain;
  position: relative;
  left: 0;
  margin-left: 10px;
}
.c-btnHead.-arrow2 > span:after {
  transition: 0.3s ease-in-out;
  content: "";
  display: inline-block;
  width: 12.5px;
  height: 10.5px;
  background: url(../img/common/ico_arrow_white.png) no-repeat center;
  background-size: contain;
  position: relative;
  left: 0;
  margin-left: 10px;
}
.c-btnHead.-blank > span:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../img/common/ico_blank.svg) no-repeat center;
  background-size: contain;
  position: relative;
  left: 0;
  margin-left: 10px;
}
.c-btnHead > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #83724D;
  border: 1px solid #83724D;
  border-radius: 100px;
  font-size: 1.6rem;
  color: #fff;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  padding: 15px 35px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1500px) {
  .c-btnHead > span {
    padding: 12px 30px;
  }
}
@media screen and (max-width: 1300px) {
  .c-btnHead > span {
    padding: 12px 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-btnHead > span {
    padding: 0px 20px;
    font-size: 1rem;
    line-height: 38px;
  }
}
@media screen and (min-width: 769px) {
  .c-btnHead:hover {
    opacity: 0.7;
  }
  .c-btnHead:hover:not(.-blank) span:after {
    left: 5px;
  }
}
.c-btnHead.-interview > span {
  background: #fff;
  border: 1px solid #83724D;
  color: #83724D;
}
.c-btnBox {
  margin-top: 50px;
  text-align: center;
}
.c-btnBox > p {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}
.c-btnBox .c-btnHead {
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .c-btnBox .c-btnHead {
    margin-top: 10px;
  }
}
.c-btnBox .c-btnHead + p {
  font-weight: normal;
  margin-top: 10px;
}

.c-txtBold {
  font-weight: bold;
}

.c-txtUnderline {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.c-txtUnderline:hover {
  text-decoration: underline;
}

.c-txtUnderline--hover:hover {
  text-decoration: underline;
}

.c-txtSize-small {
  font-size: 0.8em;
}

.c-txtSize-big {
  font-size: 1.2em;
}

.c-txtRed {
  color: #c00;
}

/* -----------------------------------
Project
------------------------------------ */
/*
 * _project.scss
 */
/* -----------------------------------
.p-footerBnr
------------------------------------ */
@media screen and (min-width: 769px) {
  .p-footerBnr {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .p-footerBnr {
    padding: 20px 0;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .p-footerBnr li {
    margin: 0 10px 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-footerBnr li + li {
    margin-top: 15px;
  }
}
.p-footerBnr li a {
  display: block;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.p-footerBnr li a img {
  width: auto;
  height: 120px;
}
@media screen and (max-width: 940px) {
  .p-footerBnr li a img {
    height: 100px;
  }
}
@media screen and (max-width: 768px) {
  .p-footerBnr li a img {
    width: 90%;
    height: auto;
  }
}
.p-footerBnr li a img.-large {
  width: auto;
  height: 150px;
}
@media screen and (max-width: 940px) {
  .p-footerBnr li a img.-large {
    height: 140px;
  }
}
@media screen and (max-width: 768px) {
  .p-footerBnr li a img.-large {
    width: 90%;
    height: auto;
  }
}
@media screen and (min-width: 769px) {
  .p-footerBnr li a:hover {
    opacity: 0.7;
  }
}

/* -----------------------------------
.p-secMain
------------------------------------ */
.p-secMain {
  position: relative;
}
.p-secMain:after {
  content: "";
  display: block;
  width: 100%;
  height: 720px;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  .p-secMain:after {
    background-image: url(../img/index/main_bg.jpg);
    background-position: center;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .p-secMain:after {
    background-image: url(../img/index/main_bg_sp.jpg);
    background-position: center top;
    background-size: 100% auto;
  }
}
.p-secMain_in {
  position: relative;
  z-index: 1;
}
.p-secMain_title {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-secMain_title {
    max-width: 960px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-secMain_title {
    max-width: 80%;
    padding-top: 10px;
  }
}
.p-secMain_title p {
  margin-top: 10px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .p-secMain_title p {
    font-size: 1.6rem;
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-secMain_title p {
    font-size: 1.4rem;
  }
}
.p-secMain_img1 {
  position: relative;
  max-width: 1200px;
  margin: 25px auto 0;
}
.p-secMain_img1 img {
  position: relative;
  z-index: 1;
}
.p-secMain_img1:after {
  content: "";
  display: block;
  width: 300%;
  height: 386px;
  background-color: #F3EFE1;
  position: absolute;
  z-index: 0;
  top: 45px;
  left: 50%;
  margin-left: -380px;
}
@media screen and (max-width: 768px) {
  .p-secMain_img1:after {
    top: 15px;
    height: 190px;
    margin-left: -110px;
  }
}

/* -----------------------------------
.p-secMainv
------------------------------------ */
.p-secMainv {
  position: relative;
  background-image: url(../img/index/main_bg.jpg);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: 1.5s ease-out;
  overflow: hidden;
}
.p-secMainv.is-visible {
  opacity: 1;
}
.p-secMainv_in {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-secMainv_in {
    display: flex;
    align-items: center;
    padding: 4% 0;
    max-width: 1600px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .p-secMainv_in {
    padding: 8.5714285714vw 0;
  }
}
@media screen and (min-width: 769px) {
  .p-secMainv_title {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2%;
  }
}
@media screen and (min-width: 1401px) {
  .p-secMainv_title {
    width: 40%;
    padding: 0 2%;
  }
}
@media screen and (max-width: 768px) {
  .p-secMainv_title {
    width: 80%;
    margin: 2.8571428571vw auto 0;
  }
}
.p-secMainv_title picture {
  width: 100%;
}
.p-secMainv_title ._point {
  margin-top: 20px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
.p-secMainv_title ._point dl + dl {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .p-secMainv_title ._point dl dt {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1500px) {
  .p-secMainv_title ._point dl dt {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1400px) {
  .p-secMainv_title ._point dl dt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-secMainv_title ._point dl dt {
    font-size: 4vw;
  }
}
.p-secMainv_title ._point dl dd {
  padding-left: 1.3em;
}
@media screen and (min-width: 769px) {
  .p-secMainv_title ._point dl dd {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1500px) {
  .p-secMainv_title ._point dl dd {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1400px) {
  .p-secMainv_title ._point dl dd {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-secMainv_title ._point dl dd {
    font-size: 3.4285714286vw;
  }
}
.p-secMainv_title ._point dl dd._btn {
  margin-top: 10px;
}
.p-secMainv_title p {
  margin-top: 15px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  margin-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 769px) {
  .p-secMainv_title p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-secMainv_title p {
    font-size: 3.4285714286vw;
  }
}
.p-secMainv_title p + p {
  margin-top: 0;
}
.p-secMainv_copy {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (min-width: 769px) {
  .p-secMainv_copy {
    top: 5%;
    right: 6%;
  }
}
@media screen and (max-width: 768px) {
  .p-secMainv_copy {
    bottom: 15vw;
    left: 1vw;
  }
}
.p-secMainv_copy p {
  writing-mode: vertical-rl;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-secMainv_copy p {
    margin-left: 2.8571428571vw;
  }
}
.p-secMainv_copy p span {
  display: inline-block;
  background: #83724D;
  color: #fff;
  display: inline-block;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  padding: 10px;
  line-height: 1;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-secMainv_copy p span {
    padding: 2vw;
    font-size: 3.4285714286vw;
  }
}
.p-secMainv_img {
  position: relative;
  width: 60%;
  margin-left: auto;
  border-radius: 10px;
  transform: translateX(20px);
}
@media screen and (max-width: 768px) {
  .p-secMainv_img {
    width: 75%;
    margin-top: 14.2857142857vw;
  }
}
.p-secMainv_img:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: #D6C89A;
  background-color: rgba(214, 200, 154, 0.3);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-secMainv_img:after {
    top: 1.4285714286vw;
    left: 1.4285714286vw;
    right: -1.4285714286vw;
    bottom: -1.4285714286vw;
  }
}
.p-secMainv_slider {
  position: relative;
  z-index: 1;
}
.p-secMainv_slider_item img {
  border-radius: 10px;
}

/* -----------------------------------
.p-secInfo
------------------------------------ */
@media screen and (max-width: 768px) {
  .p-secInfo {
    margin-top: 30px;
  }
}
@media screen and (min-width: 769px) {
  .p-secInfo_cnt {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.p-secInfo_detail {
  width: 726px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-secInfo_detail {
    width: 100%;
    font-size: 4.5714285714vw;
  }
}
.p-secInfo_detail dl {
  border-bottom: 1px solid #CCCCCC;
  padding: 17px 0;
}
@media screen and (min-width: 769px) {
  .p-secInfo_detail dl {
    display: flex;
    justify-content: space-between;
  }
}
.p-secInfo_detail dt {
  flex-basis: 200px;
}
.p-secInfo_detail dt .date {
  font-weight: 600;
  min-width: 90px;
  margin-right: 10px;
  letter-spacing: 0.8px;
  display: inline-block;
}
.p-secInfo_detail dt .icon {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  background: #83724D;
  padding: 2px 10px;
}
@media screen and (max-width: 768px) {
  .p-secInfo_detail dt .icon {
    font-size: 3.7142857143vw;
  }
}
.p-secInfo_detail dd {
  flex-basis: calc(100% - 200px);
}
.p-secInfo_detail a {
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.p-secInfo_detail a[href="javascript:void(0)"] {
  color: #333;
  pointer-events: none;
}
.p-secInfo_detail a:hover {
  color: #333;
}
@media screen and (min-width: 769px) {
  .p-secInfo_link {
    position: absolute;
    top: 140px;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-secInfo_link {
    margin-top: 20px;
    text-align: right;
  }
}
.p-secInfo_link a {
  text-decoration: none;
  color: #595757;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  transition: 0.3s ease-in-out;
}
.p-secInfo_link a:hover {
  color: #83724D;
}
.p-secInfo_link a:before {
  content: "";
  display: inline-block;
  width: 12.5px;
  height: 10.5px;
  background: url(../img/common/yajirushi.svg) no-repeat center/contain;
  position: relative;
  left: 0;
  margin-right: 4px;
}

/* -----------------------------------
.p-secBnr{
------------------------------------ */
.p-secBnr_cnt {
  margin: 0 auto;
  max-width: 1040px;
}
.p-secBnr_cnt a {
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .p-secBnr_cnt a:hover {
    opacity: 0.8;
  }
}

/* -----------------------------------
.p-secPreview
------------------------------------ */
.p-secPreview {
  padding-top: 100px;
  z-index: 2;
}
.p-secPreview_cnt {
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #C5C4C4;
  max-width: 1040px;
  position: relative;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt {
    padding: 0 5.7142857143vw 20px;
  }
}
.p-secPreview_cnt_title {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-right: 10px solid #fff;
  border-left: 10px solid #fff;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_title {
    border-width: 5px;
  }
}
.p-secPreview_cnt_title > span {
  display: inline-block;
  position: relative;
  padding: 0px 10px;
  border-left: 1px solid #C5C4C4;
  border-right: 1px solid #C5C4C4;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_title > span {
    padding: 0px 5px;
  }
}
.p-secPreview_cnt_title > span > span {
  display: inline-block;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  border-top: 1px solid #C5C4C4;
  border-bottom: 1px solid #C5C4C4;
  font-size: 2.5rem;
  line-height: 1;
  padding: 20px 50px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_title > span > span {
    padding: 1.4285714286vw 5.7142857143vw;
    font-size: 4.5714285714vw;
    line-height: 1.4;
  }
}
.p-secPreview_cnt_title > span > span:after {
  content: "";
  margin-right: -0.5em;
}
.p-secPreview_cnt_tit1 {
  font-size: 26px;
  font-size: 2.3rem;
  color: #83724D;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_tit1 {
    font-size: 4.2857142857vw;
  }
}
.p-secPreview_cnt_txt1 {
  max-width: 880px;
  margin: 0 auto 30px;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_txt1 {
    text-align: left;
    font-size: 3.7142857143vw;
    margin-bottom: 5.7142857143vw;
  }
}
.p-secPreview_cnt_body {
  padding: 40px 60px;
  background: #F8F7F0;
  border-radius: 10px;
  max-width: 880px;
  margin: 0 auto 0;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_body {
    padding: 4.2857142857vw 4.2857142857vw;
    margin: 4.2857142857vw auto 0;
  }
}
.p-secPreview_cnt_body ._inful ul li {
  font-size: 1.6rem;
  padding-left: 1em;
  text-indent: -1em;
  margin: 5px 0;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_body ._inful ul li {
    font-size: 3.7142857143vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secPreview_cnt_body ._corona {
    display: table;
    border-collapse: collapse;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .p-secPreview_cnt_body ._corona > dl {
    display: table-row;
  }
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_body ._corona > dl {
    border-top: 1px solid #d9d9d9;
  }
}
@media screen and (min-width: 769px) {
  .p-secPreview_cnt_body ._corona > dl > dt, .p-secPreview_cnt_body ._corona > dl > dd {
    padding: 15px 5px;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    display: table-cell;
  }
}
.p-secPreview_cnt_body ._corona > dl > dt {
  font-weight: bold;
  white-space: nowrap;
  color: #83724D;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_body ._corona > dl > dt {
    padding-top: 4.2857142857vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secPreview_cnt_body ._corona > dl > dd {
    display: table-cell;
  }
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_body ._corona > dl > dd {
    padding-bottom: 4.2857142857vw;
  }
}
.p-secPreview_cnt_body ._corona > dl > dd dl {
  padding: 15px 0;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (min-width: 769px) {
  .p-secPreview_cnt_body ._corona > dl > dd dl {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_body ._corona > dl > dd dl {
    margin-left: 1em;
  }
}
.p-secPreview_cnt_body ._corona > dl > dd dl dt {
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .p-secPreview_cnt_body ._corona > dl > dd dl dt {
    flex-basis: 220px;
  }
}
.p-secPreview_cnt_body ._corona > dl > dd dl dd {
  padding-left: 1em;
}
@media screen and (min-width: 769px) {
  .p-secPreview_cnt_body ._corona > dl > dd dl dd {
    flex-basis: calc(100% - 220px);
  }
}
.p-secPreview_cnt_body ._corona > dl > dd > p {
  margin-top: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_body ._corona > dl > dd > p {
    margin-left: 1em;
  }
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_body ._corona > dl > dd > ul {
    margin-left: 1em;
  }
}
.p-secPreview_cnt_body ._corona > dl > dd > ul li {
  font-size: 1.4rem;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_body ._corona > dl > dd > ul li {
    font-size: 3.7142857143vw;
  }
}
.p-secPreview_cnt_body ._title {
  font-weight: bold;
  white-space: nowrap;
  color: #83724D;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_body ._title {
    margin-bottom: 4.2857142857vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secPreview_cnt_body ._list1 {
    display: table;
    border-collapse: collapse;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .p-secPreview_cnt_body ._list1 > dl {
    display: table-row;
  }
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_body ._list1 > dl {
    border-top: 1px solid #d9d9d9;
  }
}
@media screen and (min-width: 769px) {
  .p-secPreview_cnt_body ._list1 > dl > dt, .p-secPreview_cnt_body ._list1 > dl > dd {
    padding: 15px 5px;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    display: table-cell;
  }
}
.p-secPreview_cnt_body ._list1 > dl > dt {
  font-weight: bold;
  white-space: nowrap;
  color: #83724D;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_body ._list1 > dl > dt {
    padding-top: 4.2857142857vw;
    padding-bottom: 1.4285714286vw;
  }
}
.p-secPreview_cnt_body ._list1 > dl > dd {
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  .p-secPreview_cnt_body ._list1 > dl > dd {
    display: table-cell;
  }
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_body ._list1 > dl > dd {
    padding-bottom: 4.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_body ._list1 > dl > dd {
    font-size: 3.7142857143vw;
  }
}
.p-secPreview_cnt_body ._list1 > dl > dd > ul li {
  font-size: 1.4rem;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_body ._list1 > dl > dd > ul li {
    font-size: 3.7142857143vw;
  }
}
.p-secPreview_cnt_txt2 {
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt_txt2 {
    margin-top: 4.2857142857vw;
    font-size: 3.7142857143vw;
  }
}
.p-secPreview_cnt_link {
  margin-top: 30px;
  text-align: center;
}
.p-secPreview_cnt ._corner {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-secPreview_cnt ._corner {
    width: 22px;
    height: 22px;
  }
}
.p-secPreview_cnt ._corner.-lt {
  left: -1px;
  top: -1px;
  background-image: url(../img/common/corner_lt.png);
}
.p-secPreview_cnt ._corner.-rt {
  right: -1px;
  top: -1px;
  background-image: url(../img/common/corner_rt.png);
}
.p-secPreview_cnt ._corner.-lb {
  left: -1px;
  bottom: -1px;
  transform: rotate(-90deg);
  background-image: url(../img/common/corner_lt.png);
}
.p-secPreview_cnt ._corner.-rb {
  right: -1px;
  bottom: -1px;
  transform: rotate(90deg);
  background-image: url(../img/common/corner_rt.png);
}

/* -----------------------------------
.p-secFeatures
------------------------------------ */
.p-secFeatures {
  background-color: #F9F7F0;
  padding-top: 80px;
  margin-top: 80px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-secFeatures {
    padding-top: 8.5714285714vw;
    margin-top: 8.5714285714vw;
    padding-bottom: 11.4285714286vw;
  }
}
.p-secFeatures_cnt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-secFeatures_cnt {
    display: block;
  }
}
.p-secFeatures_cntBox {
  width: 49%;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-secFeatures_cntBox {
    width: 100%;
    margin-bottom: 8.5714285714vw;
  }
}
.p-secFeatures_cntBox:nth-child(2n) .p-secFeatures_cntBody {
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .p-secFeatures_cntBox:nth-child(2n) .p-secFeatures_cntBody {
    padding-left: 0;
  }
}
.p-secFeatures_cntBox:nth-child(2n) .p-secFeatures_cntBody::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #898888;
  position: absolute;
  top: 0;
  left: -10px;
}
@media screen and (max-width: 768px) {
  .p-secFeatures_cntBox:nth-child(2n) .p-secFeatures_cntBody::before {
    display: none;
  }
}
.p-secFeatures_cntBody {
  position: relative;
  margin-top: 10px;
}
.p-secFeatures_cntTit {
  min-height: 80px;
  display: flex;
  align-items: center;
  line-height: 1.4;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .p-secFeatures_cntTit {
    min-height: 1px;
  }
}
.p-secFeatures_cntTit dt {
  font-size: 40px;
  color: #83724D;
  width: 70px;
}
@media screen and (max-width: 768px) {
  .p-secFeatures_cntTit dt {
    font-size: 8vw;
    width: 16%;
  }
}
.p-secFeatures_cntTit dd {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .p-secFeatures_cntTit dd {
    font-size: 5.1428571429vw;
  }
}
.p-secFeatures_cntTxt {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-secFeatures_cntTxt {
    margin-top: 2.2857142857vw;
    font-size: 3.7142857143vw;
  }
}
.p-secFeatures_link {
  text-align: center;
}

/* -----------------------------------
.p-secMessage
------------------------------------ */
.p-secMessage {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-secMessage {
    padding-top: 17.1428571429vw;
    padding-bottom: 17.1428571429vw;
  }
}
.p-secMessage_cnt {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-secMessage_cnt {
    display: block;
  }
}
.p-secMessage_cntDetail_sub {
  color: #83724D;
  font-size: 14px;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-secMessage_cntDetail_sub {
    text-align: center;
    font-size: 3.1428571429vw;
    margin-bottom: 1.4285714286vw;
  }
}
.p-secMessage_cntDetail_tit {
  color: #83724D;
  font-size: 34px;
  line-height: 1.6;
  font-weight: bold;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-secMessage_cntDetail_tit {
    text-align: center;
    font-size: 5.1428571429vw;
    margin-bottom: 2.8571428571vw;
  }
}
.p-secMessage_cntDetail_txt {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 40px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .p-secMessage_cntDetail_txt {
    font-size: 4vw;
    line-height: 1.8;
    margin-bottom: 5.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secMessage_cntDetail_link {
    text-align: center;
    margin-top: 8.5714285714vw;
  }
}
.p-secMessage_cntImg {
  width: 635px;
}
@media screen and (max-width: 768px) {
  .p-secMessage_cntImg {
    width: 100%;
  }
}

/* -----------------------------------
.p-secRecruitBnr
------------------------------------ */
.p-secRecruitBnr {
  background: #F8F7F0;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-top: 30px;
}
.p-secRecruitBnr .l-sec_in {
  background-color: #fff;
  border: 1px solid #C5C4C4;
  max-width: 880px;
  padding: 45px;
}
@media screen and (max-width: 768px) {
  .p-secRecruitBnr .l-sec_in {
    padding: 25px;
  }
}
.p-secRecruitBnr .l-sec_in:before, .p-secRecruitBnr .l-sec_in:after {
  content: "";
  display: block;
  width: calc(100% + 2px);
  height: 10px;
  background: #fff;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-secRecruitBnr .l-sec_in:before, .p-secRecruitBnr .l-sec_in:after {
    height: 5px;
  }
}
.p-secRecruitBnr .l-sec_in:before {
  top: 0;
  left: -1px;
}
.p-secRecruitBnr .l-sec_in:after {
  bottom: 0;
  left: -1px;
}
.p-secRecruitBnr_txt {
  margin-top: 20px;
}
.p-secRecruitBnr_txt p {
  font-size: 2.1rem;
  text-align: center;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .p-secRecruitBnr_txt p {
    font-size: 1.5rem;
  }
}
.p-secRecruitBnr_btn {
  margin-top: 30px;
  text-align: center;
}

/* -----------------------------------
.p-secContens
------------------------------------ */
.p-secContens {
  background-color: #F9F7F0;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-secContens {
    padding-top: 17.1428571429vw;
    padding-bottom: 17.1428571429vw;
    margin-bottom: 14.2857142857vw;
  }
}
.p-secContens_icon {
  display: inline-block;
  width: 100px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .p-secContens_icon {
    width: 20vw;
    margin-right: 5.7142857143vw;
  }
}
.p-secContens_cnt {
  display: block;
}
.p-secContens_tit {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 5px;
  display: inline-block;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .p-secContens_tit {
    font-size: 5.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secContens_list {
    font-size: 3.7142857143vw;
  }
}
.p-secContens_list > li {
  color: #595757;
}
.p-secContens_list > li span {
  color: #83724D;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .p-secContens_top {
    display: block !important;
  }
}
.p-secContens_top > li {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .p-secContens_top > li {
    width: 100%;
  }
}
.p-secContens_top > li a {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-secContens_top > li a {
    padding: 2.2857142857vw 8.5714285714vw !important;
  }
}
.p-secContens_btm > li {
  width: 23.5%;
}
@media screen and (max-width: 768px) {
  .p-secContens_btm > li {
    width: 48%;
  }
}
.p-secContens_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-secContens_btn > li {
  margin: 15px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-secContens_btn > li {
    margin: 4.2857142857vw 0 0;
  }
}
.p-secContens_btn > li:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 40px;
  width: 8px;
  height: 13px;
  transform: translateY(-50%);
  background: url(/assets/img/common/yajirushi.svg) center no-repeat;
}
@media screen and (max-width: 768px) {
  .p-secContens_btn > li:after {
    right: 8%;
  }
}
.p-secContens_btn > li a {
  box-sizing: border-box;
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 150px;
  background: #fff;
  padding: 10px 30px;
  border: 1px solid #83724D;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-secContens_btn > li a {
    height: auto;
    min-height: 31.4285714286vw;
    padding: 4.2857142857vw 3.4285714286vw;
    justify-content: flex-start;
  }
}
.p-secContens_btn > li a:after, .p-secContens_btn > li a:before {
  content: "";
  display: block;
  width: calc(100% + 2px);
  height: 9px;
  background: #fff;
  position: absolute;
  left: -1px;
}
.p-secContens_btn > li a:after {
  top: 0;
}
.p-secContens_btn > li a:before {
  bottom: 0;
}
.p-secContens_btn > li a:hover {
  opacity: 0.7;
}

/* -----------------------------------
.p-secAccess
------------------------------------ */
@media screen and (max-width: 768px) {
  .p-secAccess {
    padding: 0;
  }
}
.p-secAccess_txt1 {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-secAccess_txt1 {
    margin-top: 20px;
  }
}
.p-secAccess_txt1 p {
  text-align: center;
}
.p-secAccess_map {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-secAccess_map {
    text-align: center;
  }
}
.p-secAccess_map > a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  padding-left: 22px;
}
@media screen and (min-width: 769px) {
  .p-secAccess_map > a {
    position: absolute;
    right: 0;
    top: -30px;
  }
}
@media screen and (max-width: 768px) {
  .p-secAccess_map > a {
    position: relative;
    margin-top: 20px;
  }
}
.p-secAccess_map > a:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 20px;
  background: url(../img/common/ico_map.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}
.p-secAccess_map > a:hover {
  text-decoration: underline;
}
.p-secAccess_map iframe {
  width: 100%;
  height: 500px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-secAccess_map iframe {
    height: 70vw;
  }
}
.p-secAccess_link {
  text-align: center;
  margin-top: 40px;
}
.p-secAccess_floormap {
  margin-top: 10px;
  padding: 80px 70px;
  border: 1px solid #83724D;
  border-top: none;
}
@media screen and (max-width: 768px) {
  .p-secAccess_floormap {
    width: 90%;
    padding: 8.5714285714vw 2.8571428571vw 8.5714285714vw 14.2857142857vw;
    margin: 0 auto 0;
    border: none;
    border-bottom: 1px solid #83724D;
  }
}

.p-secAccess2 {
  width: 1040px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .p-secAccess2 {
    width: 100%;
  }
}
.p-secAccess2 .c-titleStyle4 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-secAccess2 .c-titleStyle4 {
    margin-bottom: 8.5714285714vw;
  }
}
.p-secAccess2_body {
  padding: 20px 80px;
  background: #F8F7F0;
}
@media screen and (max-width: 768px) {
  .p-secAccess2_body {
    padding: 2.8571428571vw 5.7142857143vw;
  }
}
.p-secAccess2_body_list li {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .p-secAccess2_body_list li {
    padding: 8.5714285714vw 0;
  }
}
.p-secAccess2_body_list li + li {
  border-top: 1px solid #83724D;
}
.p-secAccess2_body_txt {
  font-size: 15px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-secAccess2_body_txt {
    font-size: 4vw;
    margin-bottom: 5.7142857143vw;
  }
}
.p-secAccess2_body_link {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-secAccess2_body_link .c-btnHead.-type3 {
    width: 100%;
  }
}
.p-secAccess2_body_link .c-btnHead.-type3 > span {
  width: 510px;
  height: 80px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .p-secAccess2_body_link .c-btnHead.-type3 > span {
    width: 100%;
    font-size: 3.4285714286vw;
    height: 20vw;
  }
}

/* -----------------------------------
.p-secHead
------------------------------------ */
.p-secHead_txt1 {
  margin-top: 30px;
  text-align: center;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-secHead_txt1 {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}
.p-secHead_box1 {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .p-secHead_box1 {
    display: flex;
  }
}
@media screen and (min-width: 769px) {
  .p-secHead_box1 ._txt {
    padding-right: 40px;
  }
}
@media screen and (min-width: 769px) {
  .p-secHead_box1 ._img {
    min-width: 500px;
    width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .p-secHead_box1 ._img {
    margin-top: 8.5714285714vw;
  }
}
.p-secHead_box2 {
  margin: 60px auto 0;
  width: fit-content;
  background: #f8f7f0;
  padding: 30px 40px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .p-secHead_box2 {
    padding: 5.7142857143vw 8.5714285714vw;
    margin-top: 11.4285714286vw;
  }
}
.p-secHead_box2 ._txt p {
  font-weight: bold;
  color: #83724d;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-secHead_box2 ._txt p {
    font-size: 110%;
  }
}
.p-secHead_box2 ._txt ul {
  margin-top: 15px;
}
@media screen and (min-width: 769px) {
  .p-secHead_box2 ._txt ul li {
    font-size: 110%;
  }
}
.p-secHead_txt2 {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-secHead_txt2 {
    text-align: left;
  }
}
.p-secHead_lnav {
  margin-top: 60px;
  text-align: center;
}
.p-secHead_lnav ul {
  display: inline-flex;
}
.p-secHead_lnav ul li {
  margin: 0 15px;
}
@media screen and (max-width: 768px) {
  .p-secHead_lnav ul li {
    margin: 0 5px;
  }
}

/* -----------------------------------
.p-recruitDetail
------------------------------------ */
.p-recruitDetail {
  padding: 80px 145px;
  background-color: #fff;
  border: 1px solid #C5C4C4;
}
@media screen and (max-width: 1180px) {
  .p-recruitDetail {
    padding: 6%;
  }
}
.p-recruitDetail_title {
  text-align: center;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .p-recruitDetail_title {
    font-size: 2rem;
  }
}
.p-recruitDetail_body {
  margin-top: 45px;
}
@media screen and (min-width: 769px) {
  .p-recruitDetail_body {
    border-top: 1px solid #C5C4C4;
  }
}
@media screen and (max-width: 768px) {
  .p-recruitDetail_body {
    margin-top: 20px;
  }
}
@media screen and (min-width: 769px) {
  .p-recruitDetail_body dl {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #C5C4C4;
  }
}
.p-recruitDetail_body dl dt {
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .p-recruitDetail_body dl dt {
    flex-basis: 160px;
    text-align: center;
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruitDetail_body dl dt {
    padding-bottom: 10px;
    border-bottom: 1px solid #C5C4C4;
  }
}
@media screen and (min-width: 769px) {
  .p-recruitDetail_body dl dd {
    padding: 30px;
    flex-basis: calc(100% - 160px);
  }
}
@media screen and (max-width: 768px) {
  .p-recruitDetail_body dl dd {
    padding-top: 10px;
    padding-bottom: 25px;
  }
}
.p-recruitDetail_body dl dd ul li {
  margin-left: 1em;
  text-indent: -1em;
}
.p-recruitDetail_body dl dd table {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .p-recruitDetail_body dl dd table {
    width: 100%;
  }
}
.p-recruitDetail_body dl dd table tr th, .p-recruitDetail_body dl dd table tr td {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.p-recruitDetail_body dl dd table tr th {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
  width: 110px;
}
@media screen and (max-width: 768px) {
  .p-recruitDetail_body dl dd table tr th {
    width: 40%;
  }
}
.p-recruitDetail_body dl dd table tr td {
  padding-left: 20px;
}
.p-recruitDetail_contact {
  margin-top: 65px;
  background-color: #F9F7F0;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-recruitDetail_contact {
    margin-top: 30px;
    background-color: #F9F7F0;
    padding: 20px;
  }
}
.p-recruitDetail_contact > ._title {
  text-align: center;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .p-recruitDetail_contact > ._title {
    font-size: 2rem;
  }
}
.p-recruitDetail_contact > ._txt {
  margin-top: 20px;
  text-align: center;
}
.p-recruitDetail_contact > ._info {
  margin: 30px auto 0;
}
@media screen and (min-width: 769px) {
  .p-recruitDetail_contact > ._info > div {
    padding: 15px 40px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .p-recruitDetail_contact > ._info > div > a, .p-recruitDetail_contact > ._info > div > p {
    flex-basis: 100%;
  }
}
@media screen and (min-width: 769px) {
  .p-recruitDetail_contact > ._info > ._tel {
    border-right: 1px solid #C5C4C4;
  }
}
@media screen and (max-width: 768px) {
  .p-recruitDetail_contact > ._info > ._tel {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #C5C4C4;
    margin-bottom: 10px;
  }
}
.p-recruitDetail_contact > ._info > ._tel a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  font-size: 2.6rem;
  color: inherit;
  line-height: 1;
  white-space: nowrap;
}
.p-recruitDetail_contact > ._info > ._tel a:before {
  content: "";
  display: inline-block;
  width: 21.6px;
  height: 20.4px;
  background: url(../img/common/ico_tel.png) no-repeat center;
  background-size: contain;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .p-recruitDetail_contact > ._info > ._tel a:before {
    width: 18px;
    height: 17px;
  }
}
.p-recruitDetail_contact > ._info > ._tel p {
  text-align: center;
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .p-recruitDetail_contact > ._info > ._mail {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-recruitDetail_contact > ._info > ._mail {
    text-align: center;
  }
}
.p-recruitDetail_contact > ._info > ._mail a {
  white-space: nowrap;
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  color: inherit;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-recruitDetail_contact > ._info > ._mail a {
    font-size: 1.3rem;
  }
}
.p-recruitDetail_contact > ._info > ._mail a:before {
  content: "";
  display: inline-block;
  width: 22.4px;
  height: 16.4px;
  background: url(../img/common/ico_mail.png) no-repeat center;
  background-size: contain;
  margin-right: 7px;
}
@media screen and (max-width: 768px) {
  .p-recruitDetail_contact > ._info > ._mail a:before {
    width: 16px;
    height: 11.7142857143px;
  }
}

/* -----------------------------------
.p-secFooter
------------------------------------ */
.p-secFooter {
  padding: 60px 20px;
  background: #F8F7F0;
}
@media screen and (max-width: 768px) {
  .p-secFooter {
    padding: 10vw 4%;
  }
}
.p-secFooterBody {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-secFooterBody {
    display: block;
  }
}
.p-secFooterBody_logo {
  width: 420px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-secFooterBody_logo {
    width: 55vw;
    margin-bottom: 5vw;
  }
}
.p-secFooter_table {
  width: 100%;
  border-top: 1px solid #898888;
}
.p-secFooter_table tr {
  border-bottom: 1px solid #898888;
}
.p-secFooter_table td {
  width: 75px;
  text-align: center;
  padding: 20px 5px;
  border-left: 1px solid #898888;
}
@media screen and (max-width: 768px) {
  .p-secFooter_table td {
    width: 11.5%;
    padding: 4vw 0;
  }
}
@media screen and (max-width: 768px) {
  .p-secFooter_table th {
    text-align: left;
    line-height: 1.4;
  }
}
.p-secFooter_table .cell1 {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-secFooter_table .cell1 {
    font-size: 3.8vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secFooter_table .cell2 {
    letter-spacing: -1vw;
  }
}
.p-secFooter_tableTxt1 {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-secFooter_tableTxt1 {
    font-size: 3.7142857143vw;
    margin-top: 2vw;
  }
}
.p-secFooterLeft {
  width: 700px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-secFooterLeft {
    width: 100%;
    padding-top: 0;
    margin-bottom: 10vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secFooterRight {
    width: 400px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-secFooterRight {
    width: 100%;
  }
}
.p-secFooterFirst {
  padding: 0 6px 40px;
  border: 1px solid #83724D;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-secFooterFirst {
    padding: 0 3% 6vw;
  }
}
.p-secFooterFirst:after, .p-secFooterFirst:before {
  content: "";
  display: block;
  width: calc(100% + 2px);
  height: 9px;
  background: #fff;
  position: absolute;
  left: -1px;
}
.p-secFooterFirst:after {
  top: 0;
}
.p-secFooterFirst:before {
  bottom: 0;
}
.p-secFooterFirst_tit {
  font-size: 22px;
  text-align: center;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  padding: 10px;
  border-bottom: 1px solid #83724D;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-secFooterFirst_tit {
    font-size: 4.8571428571vw;
    margin-bottom: 8vw;
    padding: 2.5vw;
  }
}
.p-secFooterFirst_tit:before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-right: 1px solid #83724D;
  border-bottom: 1px solid #83724D;
  position: absolute;
  background: #fff;
  left: 50%;
  bottom: -9px;
  margin-left: -10px;
  transform: rotate(45deg);
}
.p-secFooterFirst_txt1 {
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-secFooterFirst_txt1 {
    font-size: 4vw;
  }
}
.p-secFooterFirst_btn {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .p-secFooterFirst_btn {
    padding: 0 5%;
  }
}
.p-secFooterFirst_btn li {
  margin: 16px 0;
}
@media screen and (max-width: 768px) {
  .p-secFooterFirst_btn li {
    margin: 3vw 0;
  }
}
@media screen and (max-width: 768px) {
  .p-secFooterFirst_btn li a {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
  .p-secFooterFirst_btn li a span {
    width: inherit !important;
    min-width: 100% !important;
  }
}
.p-secFooterFirst_tel {
  width: 270px;
  margin: 30px auto 15px;
}
@media screen and (max-width: 768px) {
  .p-secFooterFirst_tel {
    width: 64vw;
    margin: 5vw auto 3vw;
  }
}
.p-secFooterFirst_txt2 {
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-secFooterFirst_txt2 {
    font-size: 3.4285714286vw;
  }
}

/*-----------------------------------
.p-secTitle
------------------------------------ */
.p-secTitle {
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .p-secTitle {
    padding: 0 20px;
  }
}
.p-secTitle_in {
  max-width: 1340px;
  height: 300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 20px;
  background: url(/assets/img/common/pagetitle_bg.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .p-secTitle_in {
    max-width: 92%;
    height: 28vw;
    border-radius: 2vw;
  }
}
.p-secTitle_txt1 {
  letter-spacing: 0.1em;
  font-size: 20px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .p-secTitle_txt1 {
    font-size: 2.5vw;
  }
}
.p-secTitle_txt2 {
  font-size: 40px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .p-secTitle_txt2 {
    font-size: 4vw;
    margin-top: 1vw;
  }
}

/*-----------------------------------
.p-breadcrumb
------------------------------------ */
.p-breadcrumb {
  max-width: 1340px;
  margin: 10px auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb {
    padding: 0 4%;
    margin: 3vw auto 0;
  }
}
.p-breadcrumb ol {
  font-size: 14px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb ol {
    font-size: 3.2vw;
    overflow-x: scroll;
  }
}
@media screen and (max-width: 768px) {
  .p-breadcrumb ol li {
    white-space: nowrap;
  }
}
.p-breadcrumb ol li:before {
  content: ">";
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb ol li:before {
    margin: 0 2vw;
  }
}
.p-breadcrumb ol li:first-child:before {
  display: none;
}

/*-----------------------------------
.p-secClinic
------------------------------------ */
.p-secClinic_body {
  max-width: 1340px;
  margin: 0 auto 0;
}
@media screen and (max-width: 768px) {
  .p-secClinic_body {
    padding: 0 4%;
  }
}
.p-secClinic_box {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  border-bottom: 1px solid #D6D4C9;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .p-secClinic_box {
    padding: 10vw 0;
    flex-direction: column;
  }
}
.p-secClinic_box.-reverse {
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .p-secClinic_box.-reverse {
    flex-direction: column;
  }
}
.p-secClinic_box.-reverse .p-secClinic_boxDetail {
  padding: 0 0 0 5%;
}
@media screen and (max-width: 768px) {
  .p-secClinic_box.-reverse .p-secClinic_boxDetail {
    padding: 0;
  }
}
.p-secClinic_boxImg {
  flex-basis: 54%;
}
@media screen and (max-width: 768px) {
  .p-secClinic_boxImg {
    width: 100%;
    margin-top: 5vw;
  }
}
.p-secClinic_boxDetail {
  flex-basis: 42%;
  padding: 0 5% 0 0;
}
@media screen and (max-width: 768px) {
  .p-secClinic_boxDetail {
    width: 100%;
    padding: 0;
  }
}
.p-secClinic_boxDetail_no {
  color: #D6D4C9;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 70px;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-secClinic_boxDetail_no {
    font-size: 13vw;
    margin-bottom: 2vw;
  }
}
.p-secClinic_boxDetail_tit {
  color: #83724D;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-secClinic_boxDetail_tit {
    font-size: 5vw;
    margin-bottom: 4vw;
  }
}
.p-secClinic_boxDetail_txt1 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-secClinic_boxDetail_txt1 {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
.p-secClinic_boxDetail_txt2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-secClinic_boxDetail_txt2 {
    margin-bottom: 6vw;
  }
}
.p-secClinic_boxDetail_link li {
  margin: 15px 0 0;
}
@media screen and (max-width: 768px) {
  .p-secClinic_boxDetail_link li {
    margin: 3vw 0 0;
  }
}

/*-----------------------------------
.p-secPagenav
------------------------------------ */
.p-secPagenav_list {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-secPagenav_list._type1 {
    display: none;
  }
}
.p-secPagenav_list._type1 li {
  margin: 0 25px;
}
.p-secPagenav_list._type1 li a {
  color: #595757;
  font-size: 17px;
  text-decoration: none;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  padding-right: 18px;
  transition: 0.3s ease-in-out;
}
.p-secPagenav_list._type1 li a:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  width: 8px;
  height: 13px;
  transform: rotate(90deg);
  background: url(/assets/img/common/yajirushi.svg) center no-repeat;
}
.p-secPagenav_list._type1 li a:hover {
  color: #83724D;
}
.p-secPagenav_list._type2, .p-secPagenav_list._type3 {
  margin-top: 60px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1450px) {
  .p-secPagenav_list._type2, .p-secPagenav_list._type3 {
    max-width: 1000px;
  }
}
@media screen and (max-width: 768px) {
  .p-secPagenav_list._type2, .p-secPagenav_list._type3 {
    max-width: 100%;
    margin-top: 8.5714285714vw;
  }
}
.p-secPagenav_list._type2 li, .p-secPagenav_list._type3 li {
  margin: 0 4px 16px;
}
@media screen and (max-width: 768px) {
  .p-secPagenav_list._type2 li, .p-secPagenav_list._type3 li {
    margin: 0 0 2%;
    width: 32%;
    padding: 0 1%;
  }
}
.p-secPagenav_list._type2 li a, .p-secPagenav_list._type3 li a {
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 60px;
  background: #8A7F61;
  line-height: 1.4;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-secPagenav_list._type2 li a, .p-secPagenav_list._type3 li a {
    font-size: 3.4285714286vw;
    width: 100%;
    height: 11.4285714286vw;
  }
}
.p-secPagenav_list._type2 li a span, .p-secPagenav_list._type3 li a span {
  padding-right: 18px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-secPagenav_list._type2 li a span, .p-secPagenav_list._type3 li a span {
    padding-right: 3.4285714286vw;
  }
}
.p-secPagenav_list._type2 li a span:after, .p-secPagenav_list._type3 li a span:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  width: 8px;
  height: 13px;
  transform: rotate(90deg);
  background: url(/assets/img/common/yajirushi_wh.svg) center no-repeat;
}
@media screen and (max-width: 768px) {
  .p-secPagenav_list._type2 li a span:after, .p-secPagenav_list._type3 li a span:after {
    top: 35%;
    width: 1.4285714286vw;
    height: 2.5714285714vw;
  }
}
.p-secPagenav_list._type2 li a:hover, .p-secPagenav_list._type3 li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-secPagenav_list._type3 li {
    width: 48%;
  }
}

/*
 -----------------------------------
.p-secContestBody
------------------------------------ */
@media screen and (max-width: 768px) {
  .p-secContestBody {
    padding-top: 0;
  }
}
.p-secContestBody_box {
  max-width: 1340px;
  margin: 0 auto;
  border-top: 1px solid #D6D4C9;
  padding-top: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_box {
    padding-top: 10vw;
    margin-bottom: 10vw;
  }
}
.p-secContestBody_box._type2 .p-secContestBody_boxCnt {
  width: 600px;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_box._type2 .p-secContestBody_boxCnt {
    width: 100%;
  }
}
.p-secContestBody_box._type2 .p-secContestBody_boxImg {
  width: 370px;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_box._type2 .p-secContestBody_boxImg {
    width: 100%;
  }
}
.p-secContestBody_box._type3 {
  padding-bottom: 100px;
  margin-bottom: 0;
  border-bottom: 1px solid #D6D4C9;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_box._type3 {
    padding-bottom: 14.2857142857vw;
  }
}
.p-secContestBody_box._type3 .p-secContestBody_detail {
  margin-top: 0;
}
.p-secContestBody_box._type3 .p-secContestBody_detail + .p-secContestBody_detail {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_box._type3 .p-secContestBody_detail + .p-secContestBody_detail {
    margin-top: 5.7142857143vw;
  }
}
.p-secContestBody_boxIn {
  display: flex;
  justify-content: space-between;
  max-width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_boxIn {
    display: block;
  }
}
.p-secContestBody_boxTit {
  font-size: 28px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  width: 300px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid #898888;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_boxTit {
    width: 80%;
    height: 18vw;
    margin: 0 auto 6vw;
    font-size: 5.6vw;
  }
}
.p-secContestBody_boxTxt {
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_boxTxt {
    margin-bottom: 6vw;
  }
}
.p-secContestBody_boxDl {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_boxDl {
    margin-bottom: 6vw;
  }
}
.p-secContestBody_boxDl dt {
  font-weight: bold;
}
.p-secContestBody_boxDl dd ul li {
  margin-left: 1em;
  text-indent: -1em;
}
.p-secContestBody_boxBtn {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_boxBtn {
    margin-top: 6vw;
    margin-bottom: 6vw;
  }
}
.p-secContestBody_boxBtn a + a {
  margin-top: 15px;
}
.p-secContestBody_boxCnt {
  width: 560px;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_boxCnt {
    width: 100%;
  }
}
.p-secContestBody_boxImg {
  width: 415px;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_boxImg {
    width: 100%;
  }
}
.p-secContestBody_detail {
  max-width: 1040px;
  margin: 75px auto 0;
  padding: 60px 80px;
  background: #F8F7F0;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_detail {
    margin: 10vw auto 0;
    padding: 8.5714285714vw 5.7142857143vw;
  }
}
.p-secContestBody_detail_tit1 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid #595858;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_detail_tit1 {
    font-size: 4.2857142857vw;
    margin-bottom: 2.8571428571vw;
    padding-bottom: 2.2857142857vw;
  }
}
.p-secContestBody_detail_tit2 {
  display: block;
  color: #fff;
  font-size: 28px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  padding: 7px 10px;
  width: 400px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 25px;
  background: #868062;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_detail_tit2 {
    font-size: 5.7142857143vw;
    padding: 2.2857142857vw 2.8571428571vw;
    width: 90%;
    margin-bottom: 5.7142857143vw;
  }
}
.p-secContestBody_detail ul {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_detail ul {
    margin-bottom: 8.5714285714vw;
  }
}
.p-secContestBody_detail ul li + li {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_detail ul li + li {
    margin-top: 8.5714285714vw;
  }
}
.p-secContestBody_detail_link {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-secContestBody_detail_link {
    flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  .p-secContestBody_detail_link a + a {
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-secContestBody_detail_link a + a {
    margin-top: 4.2857142857vw;
  }
}

/*
 -----------------------------------
.p-secAboutMessage
------------------------------------ */
.p-secAboutMessage_box {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-secAboutMessage_box {
    width: 100%;
    display: block;
  }
}
.p-secAboutMessage_boxCnt {
  width: 680px;
}
@media screen and (max-width: 768px) {
  .p-secAboutMessage_boxCnt {
    width: 100%;
  }
}
.p-secAboutMessage_boxImg {
  width: 370px;
}
@media screen and (max-width: 768px) {
  .p-secAboutMessage_boxImg {
    width: 100%;
  }
}
.p-secAboutMessage_boxTxt {
  font-size: 18px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .p-secAboutMessage_boxTxt {
    font-size: 4vw;
    margin-bottom: 2.8571428571vw;
  }
}
.p-secAboutMessage_boxLink {
  text-align: center;
  margin-top: 50px;
}
.p-secAboutMessage_txt {
  font-size: 18px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  .p-secAboutMessage_txt {
    font-size: 4vw;
    margin-top: 5.7142857143vw;
    margin-bottom: 8.5714285714vw;
  }
}
.p-secAboutMessage_txt span {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .p-secAboutMessage_txt span {
    display: block;
    font-size: 4.5714285714vw;
  }
}

/*
 -----------------------------------
.p-secAboutProfile
------------------------------------ */
.p-secAboutProfile {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-secAboutProfile {
    margin-bottom: 14.2857142857vw;
  }
}
.p-secAboutProfile_in {
  max-width: 1180px;
  margin: 50px auto 0;
  padding: 60px 135px;
  background: #F8F7F0;
}
@media screen and (max-width: 768px) {
  .p-secAboutProfile_in {
    width: 92%;
    margin: 5.7142857143vw auto 0;
    padding: 7.1428571429vw 5.7142857143vw;
  }
}
.p-secAboutProfile_in_tit1 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid #595858;
}
@media screen and (max-width: 768px) {
  .p-secAboutProfile_in_tit1 {
    font-size: 4.2857142857vw;
    margin-bottom: 2.8571428571vw;
    padding-bottom: 2.2857142857vw;
  }
}
.p-secAboutProfile_in ul li + li {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-secAboutProfile_in ul li + li {
    margin-top: 8.5714285714vw;
  }
}
.p-secAboutProfile_in ul dl {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-secAboutProfile_in ul dl {
    justify-content: space-between;
  }
}
.p-secAboutProfile_in ul dl dt {
  width: 140px;
}
@media screen and (max-width: 768px) {
  .p-secAboutProfile_in ul dl dt {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .p-secAboutProfile_in ul dl dd {
    width: 65%;
  }
}

/*-----------------------------------
.p-secAboutManagement
------------------------------------ */
.p-secAboutManagement {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement {
    margin-bottom: 14.2857142857vw;
  }
}
.p-secAboutManagement_bg {
  height: 787px;
  background: url(/assets/img/about/about_bg.jpg) center/cover;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement_bg {
    height: 62.8571428571vw;
  }
}
.p-secAboutManagement_cnt {
  width: 1040px;
  margin: -350px auto 0;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement_cnt {
    width: 92%;
    margin: -25.7142857143vw auto 0;
  }
}
.p-secAboutManagement_box {
  position: relative;
  padding: 40px 80px;
  border: 1px solid #83724D;
  background: #fff;
}
.p-secAboutManagement_box + .p-secAboutManagement_box {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement_box {
    padding: 5.7142857143vw 8.5714285714vw;
  }
}
.p-secAboutManagement_box:after, .p-secAboutManagement_box:before {
  content: "";
  display: block;
  width: calc(100% + 2px);
  height: 9px;
  background: #fff;
  position: absolute;
  left: -1px;
}
.p-secAboutManagement_box:after {
  top: 0;
}
.p-secAboutManagement_box:before {
  bottom: 0;
}
.p-secAboutManagement_tit {
  color: #83724D;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement_tit {
    text-align: center;
  }
}
.p-secAboutManagement_tit .en {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement_tit .en {
    font-size: 3.4285714286vw;
  }
}
.p-secAboutManagement_tit .en:before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #83724D;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement_tit .en:before {
    width: 20px;
    left: calc(50% - 10px);
  }
}
.p-secAboutManagement_tit .ja {
  display: block;
  font-size: 28px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement_tit .ja {
    font-size: 5.4285714286vw;
  }
}
.p-secAboutManagement_txt1 {
  font-size: 18px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement_txt1 {
    font-size: 4vw;
  }
}
.p-secAboutManagement_list1 {
  font-size: 18px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement_list1 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement_list1 li {
    display: flex;
    justify-content: space-between;
  }
}
.p-secAboutManagement_list1 li + li {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement_list1 li + li {
    margin-top: 3.4285714286vw;
    padding-top: 3.4285714286vw;
    border-top: 1px solid #CAC6B7;
  }
}
.p-secAboutManagement_list2 {
  font-size: 18px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement_list2 {
    font-size: 4vw;
  }
}
.p-secAboutManagement_list2 dl {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement_list2 dl {
    display: block;
  }
  .p-secAboutManagement_list2 dl + dl {
    margin-top: 3.4285714286vw;
    padding-top: 3.4285714286vw;
    border-top: 1px solid #CAC6B7;
  }
  .p-secAboutManagement_list2 dl .no {
    margin-right: 2.8571428571vw;
  }
}
.p-secAboutManagement_list2 dl dt {
  width: 185px;
  font-size: 21px;
  color: #83724D;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement_list2 dl dt {
    width: 100%;
    font-size: 4.5714285714vw;
    margin-right: 0;
  }
}
.p-secAboutManagement_list2 dl dt:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #83724D;
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement_list2 dl dt:before {
    display: none;
  }
}
.p-secAboutManagement_list2 dl dt p {
  display: inline;
  position: relative;
  z-index: 2;
  padding-right: 10px;
  background: #fff;
}
.p-secAboutManagement .no {
  font-size: 18px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 1;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  margin-right: 15px;
  background: #83724D;
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement .no {
    margin-right: 0;
    font-size: 4.2857142857vw;
    width: 7.4285714286vw;
    height: 7.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secAboutManagement .text {
    width: 86%;
  }
}

/* -----------------------------------
.p-secIntroduction
------------------------------------ */
.p-secIntroduction_body {
  width: 1340px;
  margin: 0 auto;
  padding: 80px 80px;
  border-bottom: 1px solid #83724D;
}
@media screen and (max-width: 768px) {
  .p-secIntroduction_body {
    width: 100%;
    padding: 8.5714285714vw 0;
  }
}
.p-secIntroduction_txt {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-secIntroduction_txt {
    margin-bottom: 8.5714285714vw;
  }
}
.p-secIntroduction_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-secIntroduction_box {
    display: block;
  }
}
.p-secIntroduction_box._type2 .p-secIntroduction_imgbox {
  width: 32%;
}
@media screen and (max-width: 768px) {
  .p-secIntroduction_box._type2 .p-secIntroduction_imgbox {
    width: 100%;
  }
}
.p-secIntroduction_imgbox {
  width: 49%;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-secIntroduction_imgbox {
    width: 100%;
    margin-bottom: 0;
  }
  .p-secIntroduction_imgbox + .p-secIntroduction_imgbox {
    margin-top: 2.8571428571vw;
  }
}
.p-secIntroduction_imgtxt {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-secIntroduction_imgtxt {
    margin-top: 2.8571428571vw;
  }
}
.p-secIntroduction_desc {
  font-size: 18px;
  margin-top: 10px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-secIntroduction_desc {
    text-align: center;
    font-size: 4.5714285714vw;
    margin-top: 1.4285714286vw;
  }
}

/* -----------------------------------
.p-secFirst
------------------------------------ */
.p-secCollabo {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-secCollabo {
    width: 100%;
  }
}
.p-secCollabo_info {
  margin: 40px auto;
  background: #F8F7F0;
  padding: 20px;
  border-radius: 20px;
  max-width: 800px;
}
.p-secCollabo_info ._txt1 {
  text-align: center;
  font-weight: bold;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  color: #83724D;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-secCollabo_info ._txt1 {
    font-size: 5vw;
  }
}
.p-secCollabo_info ._txt2 {
  margin-top: 15px;
}
.p-secCollabo_info ._txt3 {
  margin-top: 10px;
  text-align: right;
}
.p-secCollabo_cnt {
  margin-top: 40px;
}
.p-secCollabo_cnt dl + dl {
  margin-top: 50px;
}
@media screen and (min-width: 769px) {
  .p-secCollabo_cnt dl dt {
    display: flex;
    align-items: center;
  }
}
.p-secCollabo_cnt dl dt > span {
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  color: #D7D4C9;
}
@media screen and (min-width: 769px) {
  .p-secCollabo_cnt dl dt > span {
    display: inline-block;
    margin-right: 20px;
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .p-secCollabo_cnt dl dt > span {
    font-size: 13vw;
  }
}
.p-secCollabo_cnt dl dt > div {
  color: #83724D;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .p-secCollabo_cnt dl dt > div {
    display: inline-block;
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .p-secCollabo_cnt dl dt > div {
    font-size: 5vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secCollabo_cnt dl dt > div span {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-secCollabo_cnt dl dt > div span {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secCollabo_cnt dl dd {
    margin-top: 20px;
  }
}

/* -----------------------------------
.p-secFirst
------------------------------------ */
.p-secFirst {
  width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-secFirst {
    width: 100%;
  }
}
.p-secFirst_list li {
  position: relative;
  padding: 60px 0;
  border-bottom: 1px solid #D7D4C9;
}
@media screen and (max-width: 768px) {
  .p-secFirst_list li {
    padding: 8.5714285714vw 0;
  }
}
.p-secFirst_list li:first-child {
  padding-top: 0;
}
.p-secFirst_list li:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-right: 1px solid #D7D4C9;
  border-bottom: 1px solid #D7D4C9;
  position: absolute;
  background: #fff;
  left: 50%;
  bottom: -15px;
  margin-left: -15px;
  transform: rotate(45deg);
  box-shadow: 0px 0px 0px 5px rgb(255, 255, 255);
}
.p-secFirst_list li:last-child:before {
  display: none;
}
.p-secFirst_list_no {
  width: 120px;
  font-size: 50px;
  color: #D7D4C9;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .p-secFirst_list_no {
    width: 100%;
    font-size: 9.1428571429vw;
    text-align: center;
  }
}
.p-secFirst_list_cnt {
  width: 920px;
}
@media screen and (max-width: 768px) {
  .p-secFirst_list_cnt {
    width: 100%;
  }
}
.p-secFirst_box {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-secFirst_box {
    display: block;
  }
}
.p-secFirst_txt1 {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-secFirst_txt1 {
    font-size: 4.5714285714vw;
  }
}
.p-secFirst_linkbox {
  text-align: center;
  margin-top: 30px;
  padding: 60px;
  background: #F8F7F0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-secFirst_linkbox {
    margin-top: 5.7142857143vw;
    padding: 7.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secFirst_linkbox {
    flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  .p-secFirst_linkbox a + a {
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-secFirst_linkbox a + a {
    margin-top: 4.2857142857vw;
  }
}

.p-secFirst2 {
  width: 1340px;
  margin: 0 auto;
  padding: 70px 80px 70px 80px;
  border-bottom: 1px solid #D7D4C9;
}
@media screen and (max-width: 768px) {
  .p-secFirst2 {
    width: 100%;
    padding: 8.5714285714vw 0 0 0;
    margin-bottom: 14.2857142857vw;
    border-bottom: none;
  }
}
.p-secFirst2_body {
  padding: 80px 150px;
  background: #F8F7F0;
}
@media screen and (max-width: 768px) {
  .p-secFirst2_body {
    padding: 8.5714285714vw 5%;
  }
}
.p-secFirst2_tit {
  color: #fff;
  font-size: 24px;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  padding: 16px 10px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
  background: #8A7F61;
}
@media screen and (max-width: 768px) {
  .p-secFirst2_tit {
    width: 88%;
    font-size: 5.1428571429vw;
    line-height: 1.6;
    padding: 2.8571428571vw 5%;
    margin-bottom: 2.8571428571vw;
  }
}
.p-secFirst2_txt1 {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-secFirst2_txt1 {
    margin-bottom: 2.8571428571vw;
  }
}
.p-secFirst2_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-secFirst2_box {
    align-items: flex-start;
  }
}
.p-secFirst2_box.-top {
  align-items: flex-start;
}
.p-secFirst2_box_no {
  width: 54px;
  height: 54px;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8A7F61;
}
@media screen and (max-width: 768px) {
  .p-secFirst2_box_no {
    width: 8.5714285714vw;
    height: 8.5714285714vw;
    font-size: 4.5714285714vw;
  }
}
.p-secFirst2_box_cnt {
  width: 786px;
}
@media screen and (max-width: 768px) {
  .p-secFirst2_box_cnt {
    width: 85%;
  }
}
.p-secFirst2_box_cnt_col {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-secFirst2_box_cnt_col {
    display: block;
  }
}
.p-secFirst2_box_cnt_col .p-secFirst2_box_txt {
  width: 450px;
}
@media screen and (max-width: 768px) {
  .p-secFirst2_box_cnt_col .p-secFirst2_box_txt {
    width: 100%;
  }
}
.p-secFirst2_box_cnt_col .p-secFirst2_box_img {
  width: 295px;
}
@media screen and (max-width: 768px) {
  .p-secFirst2_box_cnt_col .p-secFirst2_box_img {
    width: 100%;
    margin-top: 5%;
    padding-right: 14%;
  }
}
.p-secFirst2_box_detail {
  padding: 0 150px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-secFirst2_box_detail {
    padding: 0 5%;
    margin-top: 5.7142857143vw;
  }
}
.p-secFirst2_box_in {
  padding: 20px 40px;
  background: #fff;
}
.p-secFirst2_box_in ul > li .no {
  color: #83724D;
  font-weight: bold;
}
.p-secFirst2_box_list {
  margin-top: 20px;
}
.p-secFirst2_box2 {
  padding: 0 0 0 90px;
  margin-top: 20px;
}
.p-secFirst2_box2._type1 {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-secFirst2_box2._type1 {
    margin-top: 5.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secFirst2_box2 {
    padding: 0;
    margin-top: 5.7142857143vw;
  }
}
.p-secFirst2_list > li {
  padding: 30px 0;
  border-top: 1px solid #D7D4C9;
}
.p-secFirst2_list > li:first-child {
  border-top: none;
}

/* -----------------------------------
.p-secInformation
------------------------------------ */
.p-secInformation {
  width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-secInformation {
    width: 100%;
  }
}
.p-secInformation_body {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-secInformation_body {
    display: block;
  }
}
.p-secInformation_cnt {
  width: 830px;
}
@media screen and (max-width: 768px) {
  .p-secInformation_cnt {
    width: 100%;
    margin-bottom: 14.2857142857vw;
  }
}
.p-secInformation_cnt .p-secInfo_detail {
  width: 100%;
}
.p-secInformation_side {
  width: 240px;
}
@media screen and (max-width: 768px) {
  .p-secInformation_side {
    width: 100%;
  }
}
.p-secInformation_side_box + .p-secInformation_side_box {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-secInformation_side_box + .p-secInformation_side_box {
    margin-top: 8.5714285714vw;
  }
}
.p-secInformation_side_tit {
  color: #83724D;
  font-size: 26px;
  line-height: 1;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  border-left: 4px solid;
  padding-left: 15px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-secInformation_side_tit {
    font-size: 6.2857142857vw;
    border-left: 1.1428571429vw solid;
    padding-left: 3.4285714286vw;
    margin-bottom: 2.8571428571vw;
  }
}
.p-secInformation_side_list li.-current a {
  color: #83724D;
  font-weight: bold;
}
.p-secInformation_side_list li a {
  color: #333;
  display: block;
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid #D7D4C9;
  transition: 0.3s ease-in-out;
}
.p-secInformation_side_list li a:hover {
  color: #83724D;
}
.p-secInformation_side_list li a:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 11px;
  background: url(../img/common/yajirushi.svg) no-repeat center/contain;
  position: relative;
  left: 0;
  margin-right: 4px;
}
.p-secInformationNav {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .p-secInformationNav {
    margin-top: 8.5714285714vw;
  }
}
.p-secInformationNav_list {
  display: flex;
  justify-content: center;
}
.p-secInformationNav_list li {
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .p-secInformationNav_list li {
    margin: 0 2vw;
  }
}
.p-secInformationNav_list a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-secInformationNav_list a {
    width: 8vw;
    height: 8vw;
    font-size: 3.7142857143vw;
  }
}
.p-secInformationNav_list a.active {
  pointer-events: none;
  color: #fff;
  background: #8A7F61;
}
.p-secInformation .single-page .date {
  letter-spacing: 1px;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-secInformation .single-page .date {
    margin-bottom: 1.1428571429vw;
  }
}
.p-secInformation .single-page .title {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .p-secInformation .single-page .title {
    font-size: 6.2857142857vw;
  }
}
.p-secInformation .single-page .category {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  padding: 3px 20px 4px;
  background: #867C5C;
}
@media screen and (max-width: 768px) {
  .p-secInformation .single-page .category {
    font-size: 3.1428571429vw;
    padding: 0.8571428571vw 5.1428571429vw 1.1428571429vw;
  }
}
.p-secInformation .single-page .block {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-secInformation .single-page .block {
    margin-top: 14.2857142857vw;
  }
}
.p-secInformation .single-page .block_tit {
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-secInformation .single-page .block_tit {
    font-size: 4.5714285714vw;
    margin-bottom: 2.8571428571vw;
  }
}
.p-secInformation .single-page .block_img {
  text-align: center;
}
.p-secInformation .single-page .block_img.-top {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-secInformation .single-page .block_img.-top {
    margin-bottom: 5.7142857143vw;
  }
}
.p-secInformation .single-page .block_img.-bottom {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-secInformation .single-page .block_img.-bottom {
    margin-top: 5.7142857143vw;
  }
}
.p-secInformation .single-page .block_img figcaption {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .p-secInformation .single-page .block_img figcaption {
    font-size: 3.1428571429vw;
  }
}
.p-secInformation .single-page .block_column {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-secInformation .single-page .block_column {
    display: block;
  }
}
.p-secInformation .single-page .block_column.-reverse {
  flex-direction: row-reverse;
}
.p-secInformation .single-page .block_column .wysiwyg {
  width: 66%;
}
@media screen and (max-width: 768px) {
  .p-secInformation .single-page .block_column .wysiwyg {
    width: 100%;
    margin-bottom: 5.7142857143vw;
  }
}
.p-secInformation .single-page .block_column .block_img {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .p-secInformation .single-page .block_column .block_img {
    width: 100%;
  }
}
.p-secInformation .single-page .block_list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5%;
}
@media screen and (max-width: 768px) {
  .p-secInformation .single-page .block_list {
    margin-right: 0;
  }
}
.p-secInformation .single-page .block_list-item {
  width: 45%;
  margin-right: 5%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-secInformation .single-page .block_list-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4.2857142857vw;
  }
}

/* -----------------------------------
.p-secPrivate{
------------------------------------ */
.p-secPrivate_in {
  max-width: 800px;
}
.p-secPrivate_txt1 + .p-secPrivate_txt1 {
  margin-top: 1em;
}
.p-secPrivate_txt2 {
  margin-top: 35px;
  font-weight: bold;
}
.p-secPrivate_img1 {
  margin-top: 25px;
  text-align: center;
}
.p-secPrivate_table1 {
  margin-top: 30px;
}
.p-secPrivate_txt2 + .p-secPrivate_table1 {
  margin-top: 10px;
}
.p-secPrivate_list1 {
  margin-top: 25px;
}
.p-secPrivate_list1 > li {
  margin-left: 1em;
  text-indent: -1em;
  font-size: 0.9em;
}
.p-secPrivate_list1 .p-secPrivate_list1, .p-secPrivate_list2 .p-secPrivate_list1 {
  margin-top: 3px;
  margin-bottom: 20px;
}
.p-secPrivate_txt2 + .p-secPrivate_list1 {
  margin-top: 0;
}
.p-secPrivate_list2 {
  margin-top: 35px;
}
.p-secPrivate_list2 > dt {
  font-weight: bold;
}
.p-secPrivate_list3 {
  margin-top: 5px;
}
.p-secPrivate_list3 > li {
  text-align: right;
  font-size: 0.9em;
}
.p-secPrivate_box1 {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .p-secPrivate_box1 {
    display: flex;
    justify-content: space-between;
  }
}
.p-secPrivate_box1_table1 {
  flex-basis: 48%;
}
.p-secPrivate_box1_img1 {
  flex-basis: 48%;
}
@media screen and (max-width: 768px) {
  .p-secPrivate_box1_img1 {
    margin-top: 4.2857142857vw;
  }
}

/* -----------------------------------
.p-table
------------------------------------ */
.p-tableStyle1 table {
  width: 100%;
}
.p-tableStyle1 table th, .p-tableStyle1 table td {
  border: 1px solid #898888;
  text-align: center;
  padding: 10px 15px;
}
@media screen and (max-width: 768px) {
  .p-tableStyle1 table th, .p-tableStyle1 table td {
    padding: 10px 8px;
    font-size: 3.1428571429vw;
  }
}
@media screen and (min-width: 769px) {
  .p-tableStyle1 table th.-pc_w30p, .p-tableStyle1 table td.-pc_w30p {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .p-tableStyle1 table th {
    white-space: nowrap;
    padding: 10px 5px;
    font-size: 3.1428571429vw;
  }
}
.p-tableStyle1 table thead th {
  font-weight: bold;
  background: #f9f9f9;
}
.p-tableStyle1 table thead td {
  font-weight: bold;
  background: #f9f9f9;
}
.p-tableStyle1 table tbody th {
  background: #f9f9f9;
}
.p-tableStyle2 table {
  width: auto;
  margin: 0 auto;
}
.p-tableStyle2 table th, .p-tableStyle2 table td {
  border: 1px solid #898888;
  text-align: center;
  padding: 10px 15px;
}
@media screen and (max-width: 768px) {
  .p-tableStyle2 table th, .p-tableStyle2 table td {
    padding: 10px 8px;
    font-size: 3.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .p-tableStyle2 table th {
    white-space: nowrap;
    padding: 10px 5px;
    font-size: 3.1428571429vw;
  }
}
.p-tableStyle2 table tbody th {
  background: #f9f9f9;
}
.p-tableStyle2 table tbody td {
  text-align: left;
}

.p-tableStyle3 table {
  width: 100%;
}
.p-tableStyle3 table.-maw400 {
  max-width: 400px;
}
.p-tableStyle3 table.-maw500 {
  max-width: 500px;
}
.p-tableStyle3 table th, .p-tableStyle3 table td {
  border: 1px solid #898888;
  padding: 10px 15px;
}
@media screen and (max-width: 768px) {
  .p-tableStyle3 table th, .p-tableStyle3 table td {
    padding: 10px 8px;
    font-size: 3.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .p-tableStyle3 table th {
    white-space: nowrap;
    padding: 10px 5px;
    font-size: 3.1428571429vw;
  }
}
.p-tableStyle3 table thead th, .p-tableStyle3 table thead td {
  text-align: center;
}
.p-tableStyle3 table thead th {
  font-weight: bold;
  background: #f9f9f9;
}
.p-tableStyle3 table thead td {
  font-weight: bold;
  background: #f9f9f9;
}
.p-tableStyle3 table tbody th, .p-tableStyle3 table tbody td {
  text-align: left;
}
.p-tableStyle3 table tbody th {
  background: #f9f9f9;
}
.p-tableStyle3 table tbody td:last-child {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .p-tableStyle4 {
    overflow-x: scroll;
  }
}
.p-tableStyle4 table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-tableStyle4 table {
    width: 550px;
  }
}
.p-tableStyle4 table th, .p-tableStyle4 table td {
  border: 1px solid #898888;
  padding: 10px 15px;
  padding: 10px 10px;
}
@media screen and (max-width: 768px) {
  .p-tableStyle4 table th, .p-tableStyle4 table td {
    padding: 10px 8px;
    font-size: 3.1428571429vw;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-tableStyle4 table th {
    padding: 5px 4px;
    font-size: 2.8571428571vw;
  }
}
.p-tableStyle4 table thead th {
  font-weight: bold;
  background: #f9f9f9;
  writing-mode: vertical-rl;
}
.p-tableStyle4 table thead th._price {
  writing-mode: horizontal-tb;
  white-space: nowrap;
}
.p-tableStyle4 table tbody th {
  text-align: left;
  background: #f9f9f9;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-tableStyle4 table tbody th {
    white-space: nowrap;
    text-align: center;
  }
}
.p-tableStyle4 table tbody td {
  text-align: center;
}

.p-tableStyle5 table {
  width: 100%;
}
.p-tableStyle5 table tbody th, .p-tableStyle5 table tbody td {
  border: 1px solid #898888;
  text-align: left;
  padding: 10px 10px;
}
@media screen and (max-width: 768px) {
  .p-tableStyle5 table tbody th, .p-tableStyle5 table tbody td {
    padding: 10px 8px;
    font-size: 3.1428571429vw;
  }
}
.p-tableStyle5 table tbody th {
  background: #f9f9f9;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-tableStyle5 table tbody th {
    white-space: nowrap;
    padding: 10px 5px;
    font-size: 3.1428571429vw;
  }
}
.p-tableStyle5 table tbody td:not(:last-child) {
  white-space: nowrap;
}

/* -----------------------------------
.p-secContents
------------------------------------ */
.p-secContents_in {
  max-width: 800px;
}
.p-secContents_cnt + .p-secContents_cnt {
  margin-top: 50px;
}
.p-secContents_cnt ._lead {
  text-align: center;
  color: #83724D;
  font-family: "ten-mincho-text", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  font-size: 28px;
  margin-bottom: 30px;
}
.p-secContents_cnt ._title {
  padding: 10px;
  background: #868062;
  color: #fff;
  font-size: 1.1em;
  margin-bottom: 30px;
}
.p-secContents_cnt * + ._txt1 {
  margin-top: 30px;
}
.p-secContents_cnt ._txt2 {
  font-weight: bold;
}
.p-secContents_cnt * + ._txt2 {
  margin-top: 30px;
}
.p-secContents_cnt ._box {
  display: flex;
  justify-content: space-between;
}
.p-secContents_cnt ._box ._left {
  flex-basis: 70%;
  padding-right: 4%;
}
.p-secContents_cnt ._box ._right {
  flex-basis: 30%;
}
.p-secContents_cnt ._box2 {
  margin-top: 30px;
  padding: 25px;
  background-color: rgba(134, 128, 98, 0.043);
  border-radius: 10px;
}
@media screen and (min-width: 769px) {
  .p-secContents_cnt ._box3 {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  .p-secContents_cnt ._box3 ._left {
    order: 1;
    flex-basis: 55%;
    padding-right: 4%;
  }
}
@media screen and (max-width: 768px) {
  .p-secContents_cnt ._box3 ._left {
    margin-top: 20px;
  }
}
@media screen and (min-width: 769px) {
  .p-secContents_cnt ._box3 ._right {
    order: 2;
    flex-basis: 45%;
  }
}
.p-secContents_cnt ._box3 + ._box3 {
  margin-top: 30px;
}
.p-secContents_cnt ._img1 {
  margin-top: 30px;
  text-align: center;
}
.p-secContents_cnt ._img1 img {
  max-width: 500px;
  width: 100%;
}
.p-secContents_cnt ._img1 p {
  text-align: center;
  font-size: 0.9em;
}
.p-secContents_cnt ._img2 {
  margin-top: 30px;
  text-align: center;
}
.p-secContents_cnt ._img2 img {
  width: 100%;
}
.p-secContents_cnt ._table {
  margin-top: 30px;
}
.p-secContents_cnt ._dl1 {
  margin-top: 30px;
  padding: 20px;
  background-color: #F4F3F1;
}
.p-secContents_cnt ._dl1 > dt {
  font-size: 1.1em;
  font-weight: bold;
  color: #83724D;
}
.p-secContents_cnt ._dl1 > dd ul li {
  margin-left: 1em;
  text-indent: -1em;
}
.p-secContents_cnt * + ._dl2 {
  margin-top: 30px;
}
.p-secContents_cnt ._dl2 + ._dl2 {
  margin-top: 20px;
}
.p-secContents_cnt ._dl2 > dt {
  font-weight: bold;
  font-size: 1.1em;
}
.p-secContents_cnt ._dl2 > dd {
  margin-left: 1em;
}
.p-secContents_cnt ._dl2 > dd + dd {
  margin-top: 20px;
}
.p-secContents_cnt ._dl2 > dd ul li {
  margin-left: 1em;
  text-indent: -1em;
}
.p-secContents_cnt ._ul1 {
  margin-top: 5px;
}
.p-secContents_cnt ._ul1 > li {
  margin-left: 1em;
  text-indent: -1em;
}
.p-secContents_cnt ._ul1 > li + li {
  margin-top: 4px;
}
.p-secContents_cnt ._ul1 > li span {
  font-weight: bold;
}
* + .p-secContents_cnt ._ul2 {
  margin-top: 30px;
}
.p-secContents_cnt ._ul2 > li {
  margin-left: 1em;
  text-indent: -1em;
}
.p-secContents_cnt ._ul2 > li + li {
  margin-top: 10px;
}
.p-secContents_cnt ._ul2 > li span {
  font-weight: bold;
  display: block;
}
.p-secContents_cnt ._ul2 > li p {
  margin-left: 0em;
  text-indent: 0;
}
.p-secContents_cnt ._ul2 > li ul {
  margin-left: 1em;
}
.p-secContents_cnt ._ul3 {
  padding-left: 1em;
}
* + .p-secContents_cnt ._ul3 {
  margin-top: 30px;
}
.p-secContents_cnt ._ul3 > li {
  margin-left: 0em !important;
  text-indent: 0em !important;
}
.p-secContents_cnt ._ul3 > li + li {
  margin-top: 5px;
}
.p-secContents_cnt ._ul3 > li span {
  font-weight: bold;
}

.p-bnr {
  text-align: center;
  margin-top: 100px;
}
.p-bnr a {
  display: block;
}
.p-bnr a img {
  height: 200px;
}

/* -----------------------------------
.lazy
------------------------------------ */
.lazy {
  opacity: 0;
  transition: opacity 0.5s;
}

.lazyloaded {
  opacity: 1;
}

.p-pageTop {
  transition: 0.3s ease-in-out;
  position: fixed;
  bottom: 150px;
  right: 40px;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #83724D;
  border: 2px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  pointer-events: none;
  user-select: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-pageTop {
    bottom: 25px;
    right: 15px;
    width: 70px;
    height: 70px;
    border-radius: 70px;
  }
}
.p-pageTop.is-visible {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
  pointer-events: auto;
}
@media screen and (min-width: 769px) {
  .p-pageTop:hover {
    opacity: 0.7;
  }
}
.p-pageTop::before {
  content: "▲";
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-pageTop::before {
    font-size: 12px;
  }
}
.p-pageTop span {
  margin-top: 5px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-pageTop span {
    line-height: 1.3;
    font-size: 12px;
  }
}

.p-chatBtn {
  transition: 0.3s ease-in-out;
  position: fixed;
  z-index: 100;
  bottom: 155px;
  right: 160px;
  height: 90px;
  aspect-ratio: 640/180;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-chatBtn {
    bottom: 30px;
    right: auto;
    left: 20px;
    height: 60px;
  }
}
.p-chatBtn img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-chatBtn:hover {
    opacity: 0.7;
  }
}

/* -----------------------------------
Utility
------------------------------------ */
/*
 * _utility.scss
 */
/* -----------------------------------
print
------------------------------------ */
@media print {
  .u-printHidden {
    display: none;
  }
}

.u-printVisible {
  display: none;
}
@media print {
  .u-printVisible {
    display: block;
  }
}

/* -----------------------------------
font
------------------------------------ */
.u-fwb {
  font-weight: bold !important;
}

.u-fwn {
  font-weight: normal !important;
}

/* -----------------------------------
align
------------------------------------ */
.u-tc {
  text-align: center !important;
}

.u-tl {
  text-align: left !important;
}

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

/* -----------------------------------
padding
------------------------------------ */
.u-mt0 {
  margin-top: 0px !important;
}

.u-pt0 {
  padding-top: 0px !important;
}

.u-mr0 {
  margin-right: 0px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-ml0 {
  margin-left: 0px !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-pt65 {
  padding-top: 65px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-pr65 {
  padding-right: 65px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-pb65 {
  padding-bottom: 65px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-pl65 {
  padding-left: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-pr70 {
  padding-right: 70px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-pl70 {
  padding-left: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-pt75 {
  padding-top: 75px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-pr75 {
  padding-right: 75px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-pb75 {
  padding-bottom: 75px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-pl75 {
  padding-left: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-pr80 {
  padding-right: 80px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-pl80 {
  padding-left: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-pt85 {
  padding-top: 85px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-pr85 {
  padding-right: 85px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-pb85 {
  padding-bottom: 85px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-pl85 {
  padding-left: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-pt95 {
  padding-top: 95px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-pr95 {
  padding-right: 95px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-pb95 {
  padding-bottom: 95px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-pl95 {
  padding-left: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}

/* -----------------------------------
font-size rem
------------------------------------ */
.u-fz10px {
  font-size: 1rem;
}

.u-fz11px {
  font-size: 1.1rem;
}

.u-fz12px {
  font-size: 1.2rem;
}

.u-fz13px {
  font-size: 1.3rem;
}

.u-fz14px {
  font-size: 1.4rem;
}

/* -----------------------------------
font-size em
------------------------------------ */
.u-fz09em {
  font-size: 0.9em;
}

.u-fz10em {
  font-size: 1em;
}

.u-fz11em {
  font-size: 1.1em;
}

.u-fz12em {
  font-size: 1.2em;
}

.u-fz13em {
  font-size: 1.3em;
}

.u-fz14em {
  font-size: 1.4em;
}

/* -----------------------------------
clerfix
------------------------------------ */
.sec::after,
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* -----------------------------------
display
------------------------------------ */
.u-d_b {
  display: block !important;
}

.u-d_n {
  display: none !important;
}

.u-d_ib {
  display: inline-block !important;
}

/* -----------------------------------
display adjust
------------------------------------ */
.u-smhide, .u-sphide, .u-middlehide, .u-tablethide, .u-basehide {
  display: block;
}

.u-smblock, .u-spblock, .u-middleblock, .u-tabletblock, .u-baseblock {
  display: none;
}

@media screen and (max-width: 1499px) {
  .u-baseblock {
    display: block;
  }
  .u-basehide {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .u-tabletblock {
    display: block;
  }
  .u-tablethide {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-middleblock {
    display: block;
  }
  .u-middlehide {
    display: none !important;
  }
}
@media screen and (max-width: 589px) {
  .u-spblock {
    display: block;
  }
  .u-sphide {
    display: none !important;
  }
}
@media screen and (max-width: 374px) {
  .u-smblock {
    display: block;
  }
  .u-smhide {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */