@charset "UTF-8";

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/*追加リセット*/
/*リセット*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 16px;
  color: #333;
  font: inherit;
  vertical-align: baseline;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.8em;
  letter-spacing: 0.1em;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: #770318;
  text-decoration: none;
}

/*追加リセット*/
html {
  font-size: 16px;
}

@media screen and (max-width: 1000px) {
  html {
    font-size: 14px;
  }
}

body {
  color: #333;
  -webkit-text-size-adjust: 100%;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

@media screen and (max-width: 1000px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 1000px) {
  .sp_only {
    display: none !important;
  }
}


*{
  margin:0;
  padding:0;
  list-style: none;
  box-sizing: border-box;
}


.header {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
}

.header .head-logo {
  float: left;
  margin-left: 5%;
}

.header .head-logo a h1.logo {
  padding: 13px 0;
  box-sizing: border-box;
  color: #222;
  font-size: 25px;
  letter-spacing: 0.3em;
}

@media screen and (max-width: 450px) {
  .header .head-logo a h1.logo {
    font-size: 18px;
  }
}

.header .head-logo a h1.logo span {
  font-size: 15px;
  margin-left: 15px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 450px) {
  .header .head-logo a h1.logo span {
    font-size: 10px;
    margin-left: 5px;
  }
}

.header nav ul {
  text-align: left;
  padding: 30px 0px;
  margin-top: 60px;
}

.header nav ul li {
  padding-left: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cfcfcf;
  margin-bottom: 10px;
  font-size: 16px;
}

.header nav ul li a {
  color: #333;
  display: block;
}

.header nav ul li a:hover {
  color: #b99157;
}

.site-header {
  background: #fff;
  display: flex;
  position: fixed;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  z-index: 999;
}

.site-header nav ul {
  padding: 30px 0px;
}

/*スマホヘッダー*/
.l-header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  z-index: 999;
}

.l-header .sp-logo h1 img {
  width: 150px;
  margin: 10px 15px;
}

/*ドロワー*/
.l-drawer {
  position: relative;
}

.l-drawer__checkbox {
  display: none;
}

.l-drawer__icon {
  cursor: pointer;
  display: block;
  width: 56px;
  height: 60px;
  position: fixed;
  right: 0;
}

@media screen and (max-width: 600px) {
  .l-drawer__icon {
    width: 45px;
  }
}

.l-drawer__icon-parts, .l-drawer__icon-parts:before, .l-drawer__icon-parts:after {
  background-color: #222222;
  display: block;
  width: 26px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.l-drawer__icon-parts:before, .l-drawer__icon-parts:after {
  content: " ";
}

.l-drawer__icon-parts:before {
  top: 10px;
}

@-moz-document url-prefix() {
  .l-drawer__icon-parts:before {
    top: 12px;
  }
}

.l-drawer__icon-parts:after {
  top: -18px;
}

.l-drawer__overlay {
  background: #333;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
}

.l-drawer__menu {
  background: #fff;
  color: #333;
  max-width: 100%;
  width: 320px;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: -320px;
}

.l-drawer__icon {
  z-index: 4;
}

.l-drawer__menu {
  z-index: 3;
}

.l-drawer__overlay {
  z-index: 2;
}

.l-drawer__checkbox:checked~.l-drawer__icon .l-drawer__icon-parts {
  background: transparent;
}

.l-drawer__checkbox:checked~.l-drawer__icon .l-drawer__icon-parts:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0;
}

.l-drawer__checkbox:checked~.l-drawer__icon .l-drawer__icon-parts:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
}

.l-drawer__checkbox:checked~.l-drawer__overlay {
  opacity: 0.3;
  pointer-events: auto;
}

.l-drawer__checkbox:checked~.l-drawer__menu {
  right: 0;
}

.l-drawer__icon-parts, .l-drawer__icon-parts:after, .l-drawer__icon-parts:before, .l-drawer__overlay, .l-drawer__menu {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

@media screen and (max-width: 1000px) {
  nav.l-drawer__menu ul {
    width: 90%;
    margin: 60px auto;
  }
}

@media screen and (max-width: 1000px) {
  nav.l-drawer__menu ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #e1e1e1;
  }
}

@media screen and (max-width: 1000px) {
  nav.l-drawer__menu ul li a {
    color: #333;
  }
}

.top-mv {
  position: relative;
}

h2.sec-title {
  font-size: 38px;
  line-height: 0.7em;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 600px) {
  h2.sec-title {
    font-size: 28px;
  }
}

h2.sec-title span {
  font-size: 13px;
  color: #b99157;
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
}

/*トップスライダー*/
.swiper-wrapper .swiper-slide {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container {
  z-index: -99 !important;
  width: 95%;
  margin-left: 5% !important;
}

@media screen and (max-width: 600px) {
  .swiper-container {
    height: 450px;
  }
}

.top-mv-on .text {
  position: absolute;
  top: 60%;
  left: 5% !important;
  background: #fff;
  padding: 20px 15px 20px 0px;
  margin-top: -10%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.top-mv-on .text::before {
  position: absolute;
  content: '';
  background: rgba(205, 228, 202, 0.8);
  width: 100%;
  height: 100%;
  left: 15px;
  z-index: -1;
}

@media screen and (max-width: 600px) {
  .top-mv-on .text {
    top: 45%;
  }
}

.top-mv-on .text h2 {
  font-size: 15px;
  margin-left: 15px;
}

@media screen and (max-width: 600px) {
  .top-mv-on .text h2 {
    font-size: 12px;
  }
}

.top-mv-on .text p {
  font-size: 30px;
  border-left: 1px solid #dcdcdc;
  padding-left: 3px;
  text-orientation: upright;
}
_::-webkit-full-page-media, _:future, :root .top-mv-on .text p span {
  letter-spacing: .5em;
}

.top-mv-on .text p:last-child {
  border-left: none;
}

@media screen and (max-width: 600px) {
  .top-mv-on .text p {
    font-size: 23px;
  }
}

.top-page {
  padding-top: 63px;
}

.top-page .message.pc_only {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 95%;
  margin: auto;
}

.top-page .message.pc_only .inner {
  margin: 100px auto;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.top-page .message.pc_only .inner h2 {
  font-size: 24px;
  margin-left: 30px;
  line-height: 2em;
}

.top-page .message.pc_only .inner p {
  margin-left: 30px;
  line-height: 2em;
  font-size: 18px;
}

.top-page .message.sp_only {
  width: 95%;
  margin: 80px auto 100px;
}

.top-page .message.sp_only .message01, .top-page .message.sp_only .message02 {
  width: 100%;
}

.top-page .message.sp_only .message01 h2, .top-page .message.sp_only .message02 h2 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
}

.top-page .message.sp_only .message01 p, .top-page .message.sp_only .message02 p {
  font-size: 14px;
  margin-bottom: 20px;
}

.top-page .story01 .inner1 {
  position: relative;
}

.top-page .story01 .inner1 .content-top {
  width: 95%;
  margin: auto;
  background: url(https://ysmd.jp/core/wp-content/themes/ys-theme/img/story01-back.jpg) no-repeat;
  background-size: cover;
  padding: 80px 50px 80px 80px;
  box-sizing: border-box;
}

@media screen and (max-width: 520px) {
  .top-page .story01 .inner1 .content-top {
    padding: 20px 20px 20px 60px;
  }
}

.top-page .story01 .inner1 .content-top .content-top-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 1100px) {
  .top-page .story01 .inner1 .content-top .content-top-inner {
    display: block;
  }
}

.top-page .story01 .inner1 .content-top .content-top-inner .left {
  width: 40%;
  margin-right: 5%;
}

@media screen and (max-width: 1100px) {
  .top-page .story01 .inner1 .content-top .content-top-inner .left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.top-page .story01 .inner1 .content-top .content-top-inner .left p.nomber {
  width: 120px;
  text-align: center;
  background: #fff;
  padding: 6px;
  font-size: 20px;
  margin-bottom: 10px;
}

.top-page .story01 .inner1 .content-top .content-top-inner .left h3 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px #ffffff, -1px 1px 2px #ffffff, 1px -1px 2px #ffffff, -1px -1px 2px #ffffff, 1px 0px 2px #ffffff, 0px 1px 2px #ffffff, -1px 0px 3px #ffffff, 0px -1px 2px #ffffff;
}

@media screen and (max-width: 520px) {
  .top-page .story01 .inner1 .content-top .content-top-inner .left h3 {
    font-size: 25px;
    line-height: 1.5em;
  }
}

.top-page .story01 .inner1 .content-top .content-top-inner .left p.text {
  text-shadow: 1px 1px 3px #ffffff, -1px 1px 2px #ffffff, 1px -1px 2px #ffffff, -1px -1px 2px #ffffff, 1px 0px 2px #ffffff, 0px 1px 2px #ffffff, -1px 0px 3px #ffffff, 0px -1px 2px #ffffff;
}

.top-page .story01 .inner1 .content-top .content-top-inner .right {
  width: 55%;
}

@media screen and (max-width: 1100px) {
  .top-page .story01 .inner1 .content-top .content-top-inner .right {
    width: 100%;
  }
}

.top-page .story01 .inner1 .content-top .content-top-inner .right img {
  width: 100%;
}

.top-page .story01 .inner1 .story01-on {
  position: absolute;
  top: 20%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 520px) {
  .top-page .story01 .inner1 .story01-on {
    margin-top: -560px;
    position: inherit;
    position: absolute;
    top: 0;
    margin-top: initial;
    transform: translate(0px, -20px);
  }
}

.top-page .story01 .inner1 .story01-on h2 {
  font-size: 85px;
  line-height: 85px;
}

@media screen and (max-width: 520px) {
  .top-page .story01 .inner1 .story01-on h2 {
    font-size: 60px;
    line-height: 58px;
  }
}

.top-page .story01 .inner2 {
  max-width: 1200px;
  width: 95%;
  margin: 80px auto 120px;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .top-page .story01 .inner2 {
    /* margin: 220px auto 100px; */
    margin-top: 50px;
  }
}

.top-page .story01 .inner2 h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  .top-page .story01 .inner2 h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 1000px) {
  .top-page .story01 .inner2 p {
    text-align: left;
    margin-bottom: 20px;
  }
}

.top-page .story02 .inner1 {
  position: relative;
}

.top-page .story02 .inner1 .content-top {
  width: 95%;
  margin: auto;
  background: url(https://ysmd.jp/core/wp-content/themes/ys-theme/img/story02-back.jpg) no-repeat;
  background-size: cover;
  padding: 80px 50px 80px 80px;
  box-sizing: border-box;
}

@media screen and (max-width: 1100px) {
  .top-page .story02 .inner1 .content-top {
    padding: 30px 20px 20px;
    background-position-x: 100%;
  }
}

.top-page .story02 .inner1 .content-top .content-top-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 1100px) {
  .top-page .story02 .inner1 .content-top .content-top-inner {
    display: block;
  }
}

.top-page .story02 .inner1 .content-top .content-top-inner .right {
  width: 40%;
  margin-left: 5%;
}

@media screen and (max-width: 1100px) {
  .top-page .story02 .inner1 .content-top .content-top-inner .right {
    width: 100%;
    margin-left: 0;
  }
}

.top-page .story02 .inner1 .content-top .content-top-inner .right p.nomber {
  width: 120px;
  text-align: center;
  background: #fff;
  padding: 6px;
  font-size: 20px;
  margin-bottom: 10px;
}

.top-page .story02 .inner1 .content-top .content-top-inner .right h3 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px #ffffff, -1px 1px 2px #ffffff, 1px -1px 2px #ffffff, -1px -1px 2px #ffffff, 1px 0px 2px #ffffff, 0px 1px 2px #ffffff, -1px 0px 3px #ffffff, 0px -1px 2px #ffffff;
}

@media screen and (max-width: 520px) {
  .top-page .story02 .inner1 .content-top .content-top-inner .right h3 {
    font-size: 25px;
    line-height: 1.5em;
  }
}

.top-page .story02 .inner1 .content-top .content-top-inner .right p.text {
  text-shadow: 1px 1px 3px #ffffff, -1px 1px 2px #ffffff, 1px -1px 2px #ffffff, -1px -1px 2px #ffffff, 1px 0px 2px #ffffff, 0px 1px 2px #ffffff, -1px 0px 3px #ffffff, 0px -1px 2px #ffffff;
}

.top-page .story02 .inner1 .content-top .content-top-inner .left {
  width: 55%;
}

@media screen and (max-width: 1100px) {
  .top-page .story02 .inner1 .content-top .content-top-inner .left {
    width: 100%;
  }
}

.top-page .story02 .inner1 .content-top .content-top-inner .left img {
  width: 100%;
}

.top-page .story02 .inner1 .story02-on {
  position: absolute;
  top: 10%;
  right: 80px;
}

@media screen and (max-width: 1100px) {
  .top-page .story02 .inner1 .story02-on {
    top: -50px;
    left: 20px;
  }
}

.top-page .story02 .inner1 .story02-on h2 {
  font-size: 85px;
  line-height: 85px;
  text-shadow: 1px 1px 3px #ffffff, -1px 1px 2px #ffffff, 1px -1px 2px #ffffff, -1px -1px 2px #ffffff, 1px 0px 2px #ffffff, 0px 1px 2px #ffffff, -1px 0px 3px #ffffff, 0px -1px 2px #ffffff;
}

@media screen and (max-width: 1100px) {
  .top-page .story02 .inner1 .story02-on h2 {
    font-size: 42px;
  }
}

.top-page .story02 .inner2 {
  max-width: 1200px;
  width: 95%;
  margin: 80px auto 120px;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .top-page .story02 .inner2 {
    margin: 50px auto 100px;
  }
}

.top-page .story02 .inner2 h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  .top-page .story02 .inner2 h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 1000px) {
  .top-page .story02 .inner2 p {
    text-align: left;
    margin-bottom: 20px;
  }
}

.top-page .story03 .inner1 {
  position: relative;
}

.top-page .story03 .inner1 .content-top {
  width: 95%;
  margin: auto;
  background: url(https://ysmd.jp/core/wp-content/themes/ys-theme/img/story03-back.jpg) no-repeat;
  background-size: cover;
  padding: 80px 50px 80px 80px;
  box-sizing: border-box;
}

@media screen and (max-width: 520px) {
  .top-page .story03 .inner1 .content-top {
    padding: 20px 20px 20px 60px;
  }
}

.top-page .story03 .inner1 .content-top .content-top-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 1100px) {
  .top-page .story03 .inner1 .content-top .content-top-inner {
    display: block;
  }
}

.top-page .story03 .inner1 .content-top .content-top-inner .left {
  width: 40%;
  margin-right: 5%;
}

@media screen and (max-width: 1100px) {
  .top-page .story03 .inner1 .content-top .content-top-inner .left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.top-page .story03 .inner1 .content-top .content-top-inner .left p.nomber {
  width: 120px;
  text-align: center;
  background: #fff;
  padding: 6px;
  font-size: 20px;
  margin-bottom: 10px;
}

.top-page .story03 .inner1 .content-top .content-top-inner .left h3 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px #ffffff, -1px 1px 2px #ffffff, 1px -1px 2px #ffffff, -1px -1px 2px #ffffff, 1px 0px 2px #ffffff, 0px 1px 2px #ffffff, -1px 0px 3px #ffffff, 0px -1px 2px #ffffff;
}

@media screen and (max-width: 520px) {
  .top-page .story03 .inner1 .content-top .content-top-inner .left h3 {
    font-size: 25px;
    line-height: 1.5em;
  }
}

.top-page .story03 .inner1 .content-top .content-top-inner .left p.text {
  text-shadow: 1px 1px 3px #ffffff, -1px 1px 2px #ffffff, 1px -1px 2px #ffffff, -1px -1px 2px #ffffff, 1px 0px 2px #ffffff, 0px 1px 2px #ffffff, -1px 0px 3px #ffffff, 0px -1px 2px #ffffff;
}

.top-page .story03 .inner1 .content-top .content-top-inner .right {
  width: 55%;
}

@media screen and (max-width: 1100px) {
  .top-page .story03 .inner1 .content-top .content-top-inner .right {
    width: 100%;
  }
}

.top-page .story03 .inner1 .content-top .content-top-inner .right img {
  width: 100%;
}

.top-page .story03 .inner1 .story03-on {
  position: absolute;
  top: 20%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 520px) {
  .top-page .story03 .inner1 .story03-on {
    margin-top: -560px;
    position: inherit;
    margin-top: initial;
    position: absolute;
    top: 0;
    transform: translate(0px, -20px);
  }
}

.top-page .story03 .inner1 .story03-on h2 {
  font-size: 85px;
  line-height: 85px;
}

@media screen and (max-width: 520px) {
  .top-page .story03 .inner1 .story03-on h2 {
    font-size: 60px;
    line-height: 58px;
  }
}

.top-page .story03 .inner2 {
  max-width: 1200px;
  width: 95%;
  margin: 80px auto 120px;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .top-page .story03 .inner2 {
    margin: 220px auto 100px;
    margin-top: 50px;
  }
}

.top-page .story03 .inner2 h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  .top-page .story03 .inner2 h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 1000px) {
  .top-page .story03 .inner2 p {
    text-align: left;
    margin-bottom: 20px;
  }
}

.top-page .story04 .inner1 {
  position: relative;
}

.top-page .story04 .inner1 .content-top {
  width: 95%;
  margin: auto;
  background: url(https://ysmd.jp/core/wp-content/themes/ys-theme/img/story04-back.jpg) no-repeat;
  background-size: cover;
  padding: 80px 50px 80px 80px;
  box-sizing: border-box;
}

@media screen and (max-width: 1100px) {
  .top-page .story04 .inner1 .content-top {
    padding: 30px 20px 20px;
    background-position-x: 100%;
  }
}

.top-page .story04 .inner1 .content-top .content-top-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 1100px) {
  .top-page .story04 .inner1 .content-top .content-top-inner {
    display: block;
  }
}

.top-page .story04 .inner1 .content-top .content-top-inner .right {
  width: 40%;
  margin-left: 5%;
}

@media screen and (max-width: 1100px) {
  .top-page .story04 .inner1 .content-top .content-top-inner .right {
    width: 100%;
    margin-left: 0;
  }
}

.top-page .story04 .inner1 .content-top .content-top-inner .right p.nomber {
  width: 120px;
  text-align: center;
  background: #fff;
  padding: 6px;
  font-size: 20px;
  margin-bottom: 10px;
}

.top-page .story04 .inner1 .content-top .content-top-inner .right h3 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px #ffffff, -1px 1px 2px #ffffff, 1px -1px 2px #ffffff, -1px -1px 2px #ffffff, 1px 0px 2px #ffffff, 0px 1px 2px #ffffff, -1px 0px 3px #ffffff, 0px -1px 2px #ffffff;
}

@media screen and (max-width: 520px) {
  .top-page .story04 .inner1 .content-top .content-top-inner .right h3 {
    font-size: 25px;
    line-height: 1.5em;
  }
}

.top-page .story04 .inner1 .content-top .content-top-inner .right p.text {
  text-shadow: 1px 1px 3px #ffffff, -1px 1px 2px #ffffff, 1px -1px 2px #ffffff, -1px -1px 2px #ffffff, 1px 0px 2px #ffffff, 0px 1px 2px #ffffff, -1px 0px 3px #ffffff, 0px -1px 2px #ffffff;
}

.top-page .story04 .inner1 .content-top .content-top-inner .left {
  width: 55%;
}

@media screen and (max-width: 1100px) {
  .top-page .story04 .inner1 .content-top .content-top-inner .left {
    width: 100%;
  }
}

.top-page .story04 .inner1 .content-top .content-top-inner .left img {
  width: 100%;
}

.top-page .story04 .inner1 .story04-on {
  position: absolute;
  top: 10%;
  right: 80px;
}

@media screen and (max-width: 1100px) {
  .top-page .story04 .inner1 .story04-on {
    top: -50px;
    left: 20px;
  }
}

.top-page .story04 .inner1 .story04-on h2 {
  font-size: 85px;
  line-height: 85px;
  text-shadow: 1px 1px 3px #ffffff, -1px 1px 2px #ffffff, 1px -1px 2px #ffffff, -1px -1px 2px #ffffff, 1px 0px 2px #ffffff, 0px 1px 2px #ffffff, -1px 0px 3px #ffffff, 0px -1px 2px #ffffff;
}

@media screen and (max-width: 1100px) {
  .top-page .story04 .inner1 .story04-on h2 {
    font-size: 45px;
  }
}

.top-page .story04 .inner2 {
  max-width: 1200px;
  width: 95%;
  margin: 80px auto 120px;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .top-page .story04 .inner2 {
    margin: 50px auto 100px;
  }
}

.top-page .story04 .inner2 h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  .top-page .story04 .inner2 h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 1000px) {
  .top-page .story04 .inner2 p {
    text-align: left;
    margin-bottom: 20px;
  }
}

.top-page .member .inner {
  width: 1200px;
  margin: 120px auto;
}

.top-page .member .inner .member-content ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 20px;
}

.top-page .member .inner .member-content ul li {
  width: 320px;
}

.top-page .member .inner .member-content ul li img {
  width: 100%;
}

.top-page .member .inner .member-content ul li h3 {
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.2em;
}

.top-page .member .inner .member-content ul li h3 span {
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}

.top-page .member .inner .member-content ul li:nth-child(2n) {
  margin-top: 80px;
}

.top-page .link-btn {
  margin-bottom: 150px;
}

.top-page .link-btn .inner {
  max-width: 1200px;
  width: 95%;
  margin: 100px auto;
  text-align: center;
}

.top-page .link-btn .inner ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.top-page .link-btn .inner ul li {
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
  width: 250px;
  box-sizing: border-box;
}

.top-page .link-btn .inner ul li a {
  color: #333;
  font-size: 24px;
  line-height: 1em;
  display: block;
  padding: 15px 0 60px;
}

.top-page .link-btn .inner ul li a .view-more-hover {
  position: relative;
  transition: all 1s ease-out;
  opacity: 0.3;
  display: inline-block;
  width: 2px;
  top: -15px;
}

.top-page .link-btn .inner ul li a .view-more-hover::before {
  content: "";
  display: block;
  position: absolute;
  top: -50px;
  left: 0px;
  width: 100%;
  height: 50px;
  background: #009299;
}

.top-page .link-btn .inner ul li a .view-more-hover::after {
  content: "";
  display: block;
  position: absolute;
  top: -13px;
  right: -6px;
  width: 11px;
  height: 11px;
  border: 1px solid;
  border-color: transparent transparent #009299 #009299;
  transform: rotate(-45deg);
}

.top-page .link-btn .inner ul li a span {
  font-size: 16px;
}

.top-page .link-btn .inner ul li a:hover .view-more-hover {
  top: -5px;
}

.top-page .online {
  width: 95%;
  margin: 0 auto 200px;
  background: url(https://ysmd.jp/core/wp-content/themes/ys-theme/img/online-back.jpg) no-repeat;
  background-size: cover;
  padding: 85px 0 60px;
  box-sizing: border-box;
}

@media screen and (max-width: 580px) {
  .top-page .online {
    margin: 0 auto 150px;
  }
}

.top-page .online .inner {
  max-width: 1260px;
  width: 90%;
  background: rgba(255, 255, 255, 0.8);
  margin: auto;
  padding: 0px 50px 50px 50px;
  box-sizing: border-box;
}

@media screen and (max-width: 580px) {
  .top-page .online .inner {
    padding: 0 20px 40px 20px;
  }
}

.top-page .online .inner h2 {
  font-size: 65px;
  line-height: 85px;
  text-shadow: 1px 1px 3px #ffffff, -1px 1px 2px #ffffff, 1px -1px 2px #ffffff, -1px -1px 2px #ffffff, 1px 0px 2px #ffffff, 0px 1px 2px #ffffff, -1px 0px 3px #ffffff, 0px -1px 2px #ffffff;
  position: relative;
  top: -50px;
}

@media screen and (max-width: 1100px) {
  .top-page .online .inner h2 {
    font-size: 45px;
  }
}

@media screen and (max-width: 430px) {
  .top-page .online .inner h2 {
    font-size: 35px;
  }
}

.top-page .online .inner ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

@media screen and (max-width: 1100px) {
  .top-page .online .inner ul {
    margin-top: -30px;
  }
}

@media screen and (max-width: 860px) {
  .top-page .online .inner ul {
    display: block;
  }
}

@media screen and (max-width: 430px) {
  .top-page .online .inner ul {
    margin-top: -40px;
  }
}

.top-page .online .inner ul li {
  width: 40%;
}

@media screen and (max-width: 860px) {
  .top-page .online .inner ul li {
    width: 100%;
  }
}

@media screen and (max-width: 860px) {
  .top-page .online .inner ul li:first-child {
    margin-bottom: 40px;
  }
}

.top-page .online .inner ul li a img {
  width: 100%;
}

.top-page .online .inner ul li a span {
  color: #009299;
}

.top-page .online .inner ul li a .online-btn {
  text-align: center;
  background: #fff;
  padding: 10px 0;
  box-sizing: border-box;
  border-radius: 50px;
  border: 1px solid #999;
  margin-top: 20px;
}

.top-page .online .inner ul li a:hover .online-btn {
  background: #d5eced;
}

.company-page {
  padding-top: 70px;
}

.company-page .mv {
  position: relative;
  background: url(https://ysmd.jp/core/wp-content/themes/ys-theme/img/company-mv.jpg) no-repeat;
  background-size: cover;
  height: 450px;
  width: 95%;
  margin-left: 5%;
}

.company-page .mv.about {
  position: relative;
  background: url(https://ysmd.jp/core/wp-content/uploads/2024/08/top-mv05-3.jpg) no-repeat;
}

.company-page .mv .mv-on {
  position: absolute;
  bottom: 0;
  background: #fff;
  padding: 30px 40px 10px 0;
}

.company-page .mv .mv-on h1 {
  font-size: 40px;
  line-height: 0.8em;
  font-weight: 600;
}

@media screen and (max-width: 600px) {
  .company-page .mv .mv-on h1 {
    font-size: 30px;
  }
}

.company-page .mv .mv-on h1 span {
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 600px) {
  .company-page .mv .mv-on h1 span {
    font-size: 14px;
  }
}

.company-page .overview .inner {
  max-width: 1200px;
  width: 95%;
  margin: 150px auto 0;
}

@media screen and (max-width: 600px) {
  .company-page .overview .inner {
    margin: 80px auto;
  }
}

.company-page .overview .inner table {
  width: 100%;
  margin: 50px auto 0;
}

.company-page .overview .inner table tr {
  width: 100%;
}

.company-page .overview .inner table tr th {
  width: 20%;
  background: #f3f3f3;
  border: 1px solid #d8d8d8;
  padding: 10px 20px;
  vertical-align: middle;
}

@media screen and (max-width: 600px) {
  .company-page .overview .inner table tr th {
    padding: 5px;
    width: 25%;
  }
}

.company-page .overview .inner table tr td {
  width: 80%;
  border: 1px solid #d8d8d8;
  padding: 10px 20px;
  vertical-align: middle;
}

@media screen and (max-width: 600px) {
  .company-page .overview .inner table tr td {
    padding: 5px;
    width: 75%;
    line-height: 1.5em;
  }
}

.company-page .history .inner {
  max-width: 1200px;
  width: 95%;
  margin: 150px auto 150px;
}

@media screen and (max-width: 600px) {
  .company-page .history .inner {
    margin: 80px auto 100px;
  }
}

.company-page .history .inner table {
  width: 100%;
  margin: 50px auto 0;
}

.company-page .history .inner table tr {
  width: 100%;
}

.company-page .history .inner table tr th {
  width: 20%;
  background: #f3f3f3;
  border: 1px solid #d8d8d8;
  padding: 10px 20px;
  vertical-align: middle;
}

@media screen and (max-width: 600px) {
  .company-page .history .inner table tr th {
    width: 25%;
    padding: 5px;
  }
}

.company-page .history .inner table tr td {
  width: 80%;
  border: 1px solid #d8d8d8;
  padding: 10px 20px;
  vertical-align: middle;
}

@media screen and (max-width: 600px) {
  .company-page .history .inner table tr td {
    padding: 5px;
    width: 75%;
    line-height: 1.5em;
  }
}

/*お問い合わせ*/
.contact-page {
  padding-top: 70px;
}

.contact-page .mv {
  position: relative;
  background: url(https://ysmd.jp/core/wp-content/themes/ys-theme/img/contact-mv.jpg) no-repeat;
  background-size: cover;
  height: 450px;
  width: 95%;
  margin-left: 5%;
}

.contact-page .mv.press {
  position: relative;
  background: url(https://ysmd.jp/core/wp-content/themes/ys-theme/img/contact-press-mv.jpg) no-repeat;
  background-size: cover;
  height: 450px;
  width: 95%;
  margin-left: 5%;
}

.contact-page .mv .mv-on {
  position: absolute;
  bottom: 0;
  background: #fff;
  padding: 30px 40px 10px 0;
}

.contact-page .mv .mv-on h1 {
  font-size: 40px;
  line-height: 0.8em;
  font-weight: 600;
}

@media screen and (max-width: 600px) {
  .contact-page .mv .mv-on h1 {
    font-size: 30px;
  }
}

.contact-page .mv .mv-on h1 span {
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 600px) {
  .contact-page .mv .mv-on h1 span {
    font-size: 14px;
  }
}

.contact-page .contact-content .inner {
  max-width: 1200px;
  width: 95%;
  margin: 150px auto;
}

@media screen and (max-width: 600px) {
  .contact-page .contact-content .inner {
    margin: 80px auto;
  }
}

.contact-page .contact-content .inner .message {
  margin: 50px auto;
  width: 100%;
}

.contact-page .contact-content .inner .message p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .message p a {
  color: #b99157;
}

.contact-page .contact-content .inner .contact-box {
  background: #faf9f7;
  padding: 50px;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 600px) {
  .contact-page .contact-content .inner .contact-box {
    padding: 20px;
  }
}

.contact-page .contact-content .inner .contact-box dl {
  margin-bottom: 30px;
}

.contact-page .contact-content .inner .contact-box dl dt {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  border-left: 5px solid #9d7c47;
  padding: 0 10px;
  margin-bottom: 5px;
}

.contact-page .contact-content .inner .contact-box dl dt span {
  font-size: 0.8em;
}

.contact-page .contact-content .inner .contact-box dl dd {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .contact-box dl dd .wpcf7-form-control-wrap {
  position: relative;
}

.contact-page .contact-content .inner .contact-box dl dd .wpcf7-form-control-wrap .wpcf7-text {
  width: 100%;
  padding: 5px 10px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .contact-box dl dd .wpcf7-form-control-wrap .wpcf7-checkbox span.wpcf7-list-item-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .contact-box dl dd .wpcf7-form-control-wrap .wpcf7-textarea {
  width: 100%;
  padding: 10px 10px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .contact-box dl dd .wpcf7-not-valid-tip {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .contact-box .privacy-text {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 13px;
}

.contact-page .contact-content .inner .contact-box .privacy-text a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: #b99157;
}

.contact-page .contact-content .inner .contact-box .privacy-text .wpcf7-list-item-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .contact-box .submit-button {
  text-align: center;
}

.contact-page .contact-content .inner .contact-box .submit-button .ajax-loader {
  margin: 0 -12px;
}

.contact-page .contact-content .inner .contact-box .submit-button input[type="submit"] {
  background: #b99157;
  border: none;
  padding: 15px 40px;
  border-radius: 5px;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .contact-press-box {
  background: #faf9f7;
  padding: 50px;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 600px) {
  .contact-page .contact-content .inner .contact-press-box {
    padding: 20px;
  }
}

.contact-page .contact-content .inner .contact-press-box dl {
  margin-bottom: 30px;
}

.contact-page .contact-content .inner .contact-press-box dl dt {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  border-left: 5px solid #9d7c47;
  padding: 0 10px;
  margin-bottom: 5px;
}

.contact-page .contact-content .inner .contact-press-box dl dt span {
  font-size: 0.8em;
}

.contact-page .contact-content .inner .contact-press-box dl dd {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .contact-press-box dl dd .wpcf7-form-control-wrap {
  position: relative;
}

.contact-page .contact-content .inner .contact-press-box dl dd input[type="text"] {
  width: 100%;
  padding: 5px 10px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .contact-press-box dl dd input[type="email"] {
  width: 100%;
  padding: 5px 10px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .contact-press-box dl dd .wpcf7-form-control-wrap .wpcf7-checkbox span.wpcf7-list-item-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .contact-press-box dl dd textarea {
  width: 100%;
  padding: 10px 10px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .contact-press-box dl dd .wpcf7-not-valid-tip {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .contact-press-box .privacy-text {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .contact-press-box .privacy-text a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: #b99157;
}

.contact-page .contact-content .inner .contact-press-box .privacy-text .wpcf7-list-item-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.contact-page .contact-content .inner .contact-press-box .submit-button {
  text-align: center;
}

.contact-page .contact-content .inner .contact-press-box .submit-button .ajax-loader {
  margin: 0 -12px;
}

.contact-page .contact-content .inner .contact-press-box .submit-button input[type="submit"] {
  background: #b99157;
  border: none;
  padding: 15px 40px;
  border-radius: 5px;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

/*個人情報保護方針*/
.privacy-page {
  padding-top: 70px;
}

.privacy-page .mv {
  position: relative;
  background: url(https://ysmd.jp/core/wp-content/themes/ys-theme/img/contact-mv.jpg) no-repeat;
  background-size: cover;
  height: 450px;
  width: 95%;
  margin-left: 5%;
}

.privacy-page .mv .mv-on {
  position: absolute;
  bottom: 0;
  background: #fff;
  padding: 30px 40px 10px 0;
}

.privacy-page .mv .mv-on h1 {
  font-size: 40px;
  line-height: 0.8em;
  font-weight: 600;
}

.privacy-page .mv .mv-on h1 span {
  font-size: 16px;
  font-weight: 400;
}

.privacy-page .privacy-content .inner {
  max-width: 1200px;
  width: 95%;
  margin: 150px auto;
}

.privacy-page .privacy-content .inner p {
  margin: 50px auto;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.privacy-page .privacy-content .inner dl dt {
  font-size: 20px;
  border-bottom: 1px solid #b99157;
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.privacy-page .privacy-content .inner dl dd {
  margin-bottom: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.privacy-page .privacy-content .inner dl dd ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 15px;
}

.privacy-page .privacy-content .inner dl dd ul li {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

footer .footer-contact-container {
  background: url(https://ysmd.jp/core/wp-content/themes/ys-theme/img/footer-back.jpg);
  text-align: center;
  padding: 80px;
  margin-top: 50px;
  background-size: cover;
}

@media screen and (max-width: 860px) {
  footer .footer-contact-container {
    padding: 15px;
  }
}

footer .footer-contact-container .inner {
  background: #fff;
  max-width: 1260px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
  box-sizing: border-box;
}

@media screen and (max-width: 860px) {
  footer .footer-contact-container .inner {
    width: 100%;
  }
}

footer .footer-contact-container .inner p.tel {
  font-size: 30px;
  margin-bottom: 20px;
}

@media screen and (max-width: 500px) {
  footer .footer-contact-container .inner p.tel {
    font-size: 25px;
  }
}

footer .footer-contact-container .inner p.tel img {
  width: 40px;
  margin-right: 10px;
}

@media screen and (max-width: 500px) {
  footer .footer-contact-container .inner p.tel img {
    width: 30px;
  }
}

footer .footer-contact-container .inner p.tel span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.2em;
}

footer .footer-contact-container .inner p.tel a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 500px) {
  footer .footer-contact-container .inner p.tel a {
    letter-spacing: 0.1em;
  }
}

footer .footer-contact-container .inner p.jikan {
  font-family: 'Noto Sans JP', sans-serif;
}

footer .footer-contact-container .inner p.mail {
  font-family: 'Noto Sans JP', sans-serif;
}

footer .footer-contact-container .inner .contact-btn {
  background: #b99157;
  max-width: 500px;
  width: 90%;
  height: 60px;
  border-radius: 50px;
  margin: 20px auto 0px;
}

footer .footer-contact-container .inner .contact-btn:hover {
  background: #9c7948;
}

footer .footer-contact-container .inner .contact-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  padding-top: 13px;
}

@media screen and (max-width: 500px) {
  footer .footer-contact-container .inner .contact-btn a {
    padding-top: 17px;
  }
}

footer .footer-contact-container .inner .contact-btn a img {
  width: 34px;
}

@media screen and (max-width: 500px) {
  footer .footer-contact-container .inner .contact-btn a img {
    width: 25px;
  }
}

footer .footer-contact-container .inner .contact-btn a span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
  padding-left: 10px;
}

@media screen and (max-width: 500px) {
  footer .footer-contact-container .inner .contact-btn a span {
    font-size: 13px;
    font-weight: 400;
    padding-left: 5px;
  }
}


footer .footer-contact-container .inner .contact-press-btn {
  background: #b6bea8;
  max-width: 500px;
  width: 90%;
  height: 60px;
  border-radius: 50px;
  margin: 20px auto 0px;
}

footer .footer-contact-container .inner .contact-press-btn:hover {
  background: #a5ad99;
}

footer .footer-contact-container .inner .contact-press-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  padding-top: 13px;
}

@media screen and (max-width: 500px) {
  footer .footer-contact-container .inner .contact-press-btn a {
    padding-top: 17px;
  }
}

footer .footer-contact-container .inner .contact-press-btn a img {
  width: 34px;
}

@media screen and (max-width: 500px) {
  footer .footer-contact-container .inner .contact-press-btn a img {
    width: 25px;
  }
}

footer .footer-contact-container .inner .contact-press-btn a span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
  padding-left: 10px;
}

@media screen and (max-width: 500px) {
  footer .footer-contact-container .inner .contact-press-btn a span {
    font-size: 13px;
    font-weight: 400;
    padding-left: 5px;
  }
}

footer .footer-container {
  background: #333;
  text-align: center;
}

footer .footer-container h2 {
  padding-top: 60px;
  color: #fff;
  font-size: 25px;
  letter-spacing: 0.3em;
  line-height: 1em;
}

@media screen and (max-width: 500px) {
  footer .footer-container h2 {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

footer .footer-container h2 span {
  font-size: 13px;
  color: #fff;
}

footer .footer-container ul {
  margin: 50px;
}

footer .footer-container ul li {
  display: inline-block;
  margin-right: 30px;
}

footer .footer-container ul li a {
  color: #fff;
}

footer .footer-container ul li a:hover {
  color: #e8d2b3;
}

footer .footer-container ul li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 500px) {
  footer .footer-container ul {
    display: none;
  }
}

footer .footer-container .copy {
  padding-bottom: 20px;
}

footer .footer-container .copy p {
  color: #fff;
  font-size: 13px;
}

@media screen and (max-width: 500px) {
  footer .footer-container .copy p {
    font-size: 10px;
    font-weight: 100;
  }
}

.contact-page .contact-content .inner .contact-box .submit-button p .wpcf7-spinner {
  display: none;
}
section.brand_sec {
  margin-bottom: 150px;
}
section.brand_sec .brand_row {
  display: flex;
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}
.titlebox {
  margin-bottom: 50px;
}
.titlebox h2 {
  text-align: center;
  font-size: 2em;
}
.titlebox p {
  text-align: center;
}
section.brand_sec .brand_row .brand_col {
  position: relative;
  margin-bottom: -1px;
  margin-right: -1px;
  width: calc(99% / 3);
  border: 1px solid #efefef;
}
section.brand_sec .brand_row .brand_col a {
  display: block;
  padding: 30px 15px;
  transition: .3s;
}
section.brand_sec .brand_row .brand_col a:hover{
  opacity: .7;
}
section.brand_sec .brand_row .brand_col a .img_box {
  width: 50%;
  margin: 0 auto;
}
section.brand_sec .brand_row .brand_col a .img_box img {
  width: 100%;
}
section.brand_sec .brand_row .brand_col a h3 {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: 500;
  font-size: 18px;
}
section.brand_sec .brand_row .brand_col a p {
  text-align: center;
  font-size: 15px;
}
section.brand_sec .brand_row .brand_col a h3 br.sp{
  display: none;
}
@media screen and (max-width: 767px) {
  section.brand_sec .brand_row {
    padding: 0;
    max-width: initial;
    width: 95%;
}
  section.brand_sec .brand_row .brand_col {
    width: calc(99% / 2);
}
section.brand_sec .brand_row .brand_col a h3 {
  font-size: 14px;
}
section.brand_sec .brand_row .brand_col a h3 br.sp{
  display: block;
}
section.brand_sec .brand_row .brand_col a .img_box {
  width: 80%;
}
.titlebox {
  margin-bottom: 30px;
}
section.brand_sec .brand_row .brand_col a p {
  font-size: 12px;
}
section.brand_sec .brand_row .brand_col a {
  padding: 20px 15px;
}
}
/* 追記 */
.Interview_row {
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
  row-gap: 50px;
  margin: 50px 0;
}
section.Interview_sec {
  margin-bottom: 150px;
}
.Interview_row .q_box {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 30px;
}
.Interview_row .q_box .q {
  background: #efefef;
  width: 80px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  border-radius: 30px;
  font-size: 16px;
}
.Interview_row .q_box p {
  font-size: 20px;
  width: calc(100% - 100px);
}
.Interview_row .a_box {
  display: flex;
  column-gap: 20px;
}
.Interview_row .a_box .a {
  width: 80px;
  font-weight: 500;
  text-align: center;
}
.Interview_row .a_box p {
  width: calc(100% - 100px);
}

.Interhuman_row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.Interhuman_row .Interhuman_col {}

.Interhuman_row .Interhuman_col a {
  display: block;
  transition: .3s;
  border: 1px solid #efefef;
  padding: 0px 20px 10px;
}
.Interhuman_row .Interhuman_col a:hover{
  opacity: .7;
}

.Interhuman_row .Interhuman_col a .img_box {
  width: calc(100% + 40px);
  transform: translate(-20px , 0);
}

img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {}

.Interhuman_row .Interhuman_col a .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.w126{
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.Interhuman_row .Interhuman_col a h3 {
  font-size: 18px;
}
.morebtn {
  margin-top: 50px;
}
.morebtn a {
  display: block;
  background-color: #efefef;
  padding: 10px 25px;
  border-radius: 100vh;
  color: #333;
  width: fit-content;
  margin: 0 auto;
  min-width: 150px;
  text-align: center;
}
.morebtn a:hover{
  opacity: .7;
}
#magazine-wrap main#main {
  box-sizing: border-box;
  float: initial;
  width: 100%;
  padding-right: 0px;
}
.mvarea_page h2.mvtitle {
  font-size: 30px;
  font-weight: 400;
  border-bottom: 1px solid #efefef;
  margin-bottom: 50px;
  padding: 0 20px 10px;
}
#magazine-wrap {
    width: 100%;
}
.mvarea_page {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.pagination ul {
  margin-top: 50px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination ul li .current {
  color: #b99157;
  border: 1px solid #b99157;
  padding: 5px 10px;
  display: block;
  font-size: 14px;
  border-radius: 5px;
}
.pagination ul li .dots {
  color: #b99157;
  padding: 5px 0;
  display: block;
  font-size: 14px;
}
.pagination ul li a {
  color: #333;
  border: 1px solid #333;
  padding: 5px 10px;
  transition: .3s;
  display: block;
  font-size: 14px;
  border-radius: 5px;
}
.pagination ul li a:hover{
  color: #b99157;
  border: 1px solid #b99157;
}
#magazine-wrap main#single {
  box-sizing: border-box;
  float: initial;
  width: 100%;
  padding-right: 0px;
}
.img_catch img {
  width: 100%;
  height: auto;
}
main#single {
  max-width: 1000px;
  margin: 0 auto;
}
.pancu {
  overflow: auto;
  margin-top: 16px;
  margin-bottom: -4px;
}
.pancu ul li a {
  color: #555555;
  font-size: 14px;
  display: block;
  white-space: nowrap;
}
.pancu ul {
  display: flex;
}
.pancu ul li:not(:last-of-type) a::after {
  content: "/";
}
.pancu ul li:last-of-type a {
  color: #555555;
}
section.post-list {
  margin-bottom: 50px;
}
section.conten_sec .conten_list ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
section.conten_sec .conten_list ul li a {
    display: block;
    transition: .3s;
    padding: 0px 20px 20px;
    border: 1px solid #efefef;
}
section.conten_sec .conten_list ul li a:hover{
  opacity: .7;
}
section.conten_sec .conten_list ul li a .img_box {
  width: calc(100% + 40px);
  transform: translate(-20px, 0px);
  position: relative;
  padding-bottom: 60%;
  margin-bottom: 15px;
}
section.conten_sec .conten_list ul li a .img_box  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
section.conten_sec .conten_list ul li a time {
    font-size: 14px;
    padding-left: 2px;
}
section.conten_sec .conten_list ul li a h3 {
    font-size: 16px;
}
section.conten_sec {
  margin-bottom: 50px;
}
.img_catch {
  width: 100%;
  position: relative;
}
.img_catch img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    width: fit-content;
}
div#magazine-wrap.plusSide {
  display: flex;
  max-width: 1300px;
  padding: 0 20px;
}

div#magazine-wrap.plusSide .right_content {
  position: relative;
  margin-left: 20px;
  width: 240px;
  min-width: 240px;
  max-width: 240px;
}
div#magazine-wrap.plusSide .right_content .inl {
  position: sticky;
  top: 70px;
}
div#magazine-wrap.plusSide .right_content .inl .rankingList_row02 ul li {
  margin-bottom: 20px;
}
div#magazine-wrap.plusSide .right_content .inl .rankingList_row02 ul li a {
  position: relative;
  transition: .3s;
}
div#magazine-wrap.plusSide .right_content .inl .rankingList_row02 ul li a:hover{
  opacity: .7;
}
div#magazine-wrap.plusSide .right_content .inl .rankingList_row02 ul li a .img_box {
  padding-bottom: 55%;
  position: relative;
}
div#magazine-wrap.plusSide .right_content .inl .rankingList_row02 ul li a .img_box img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  position: absolute;
}
div#magazine-wrap.plusSide .right_content .inl .rankingList_row02 h2 {
  font-size: 18px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
div#magazine-wrap.plusSide .right_content .inl .rankingList_row02 ul li a h3 {
  font-size: 14px;
  margin-top: 10px;
}
@media only screen and (max-width: 1024px) {
  #magazine-wrap main#single {
    width: 95%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  div#magazine-wrap.plusSide .right_content {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
}
}
@media screen and (max-width: 767px) {
.Interview_row .q_box .q {
  width: 60px;
  height: 30px;
  font-size: 14px;
}
.Interview_row .q_box p {
  font-size: 16px;
  width: calc(100% - 80px);
}
.Interview_row .q_box {
  margin-bottom: 20px;
}
.Interview_row .a_box .a {
  width: 60px;
}
.Interview_row .a_box p {
  width: calc(100% - 80px);
}
.Interview_row {
  width: 95%;
  padding: 0 0px;
}
.w126 {
  padding: 0;
  width: 95%;
}
.Interhuman_row {
  grid-template-columns: 1fr;
  gap: 30px;
}
.Interhuman_row .Interhuman_col a h3 {
  FONT-SIZE: 16PX;
}
#press-list-front .post-list .block ul li.right h2.title {
  font-size: 16px;
}
#magazine-wrap.single .header ul {
  padding-top: 30px;
  padding-bottom: 20px;
}
#magazine-wrap.single .post-contents ul li {
  list-style-type: circle;
  padding-bottom: 10px;
  margin-left: 1.6em;
  font-size: 1.1em;
}
#magazine-wrap.single .header h1.title {
  padding: 0px 0px 0px 0px;
  font-size: 22px;
  margin-bottom: 20px;
}
.mvarea_page {
  width: 95%;
  padding: 0 0px;
}
.mvarea_page h2.mvtitle {
  font-size: 24px;
  margin-bottom: 30px;
}
ul.cat-bar.clearfix li a {
  font-size: 12px;
  margin-right: 5px;
}
section.conten_sec .conten_list ul {
  grid-template-columns: 1fr;
}
section.conten_sec .conten_list ul li a time {
  font-size: 12px;
}
section.conten_sec .conten_list ul li a h3 {
  font-size: 14px;
}
ul.cat-bar.clearfix {
  row-gap: 5px;
}
div#magazine-wrap.plusSide {
  flex-direction: column;
  padding: 0;
}
div#magazine-wrap.plusSide .right_content {
  margin: 0;
  padding: 0 10px;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  margin-top: 80px;
  margin-bottom: 80px;
}
}