@charset "UTF-8";
h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd {
  padding: 0;
  margin: 0;
}

ol, ul {
  list-style-type: none;
}

/*-----------------------------------------------
 root
-----------------------------------------------*/
html {
  overflow-y: scroll;
}

body {
  overflow: hidden;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

/*-----------------------------------------------
 font
-----------------------------------------------*/
html {
  overflow-x: hidden;
  font-size: medium;
}

body {
  font-size: 62.5%; /* 16px -> 10px */
}

div {
  line-height: 0;
  box-sizing: border-box;
}

dt, dd, li,
caption, th, td,
input, button, textarea, select,
h1, h2, h3, h4, h5, h6, address {
  line-height: 0;
  font-size: 140%;
  margin: 0;
  padding: 0;
}

p {
  line-height: 1.5;
  font-size: 140%;
  margin: 0;
  padding: 0;
}

h1 *, h2 *, h3 *, h4 *, h5 *, h6 *,
p input, p button, p select,
li h1, li h2, li h3, li h4, li h5, li h6, li p, li dt, li dd, li li, li th, li td, li input, li button, li textarea, li select,
dd h1, dd h2, dd h3, dd h4, dd h5, dd h6, dd p, dd dt, dd dd, dd li, dd th, dd td, dd input, dd button, dd textarea, dd select,
tr h1, tr h2, tr h3, tr h4, tr h5, tr h6, tr p, tr dt, tr dd, tr li, tr input, tr button, tr textarea, tr select {
  font-size: 100%;
}

input, button, select, option, textarea {
  font-size: 14px;
}

figure {
  margin: 0;
}

a,
a:link,
a:visited {
  color: #1d99c1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

section {
  position: relative;
  box-sizing: border-box;
}

br.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  br.sp {
    display: inline;
  }
}
@media only screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
}

/*-----------------------------------------------
 cf 
-----------------------------------------------*/
.clearfix {
  min-height: 1px;
}
.clearfix::after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

/*-----------------------------------------------
 hover
-----------------------------------------------*/
.hover :hover {
  opacity: 0.8;
  animation: btn 0.5s;
  -webkit-animation: btn 0.5s;
  -moz-animation: btn 0.5s;
}
@media only screen and (max-width: 768px) {
  .hover :hover {
    animation: unset;
    -webkit-animation: unset;
    -moz-animation: unset;
  }
}

@keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-webkit-keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-webkit-keyframes spinStar {
  0% {
    transform: translateY(-50%) rotateY(0deg) scale(1);
  }
  100% {
    transform: translateY(-50%) rotateY(360deg) scale(1.4);
  }
}
@keyframes spinStar {
  0% {
    transform: translateY(-50%) rotateY(0deg) scale(1);
  }
  100% {
    transform: translateY(-50%) rotateY(360deg) scale(1.4);
  }
}
@-webkit-keyframes spinStarPop {
  0% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(720deg);
  }
}
@keyframes spinStarPop {
  0% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(720deg);
  }
}
@-webkit-keyframes spin-right {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-right-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-right-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left-center {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left-center {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-right-center {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right-center {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes popFadeIn {
  0% {
    transform: scale(0); /* 初期位置 */
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes popFadeIn {
  0% {
    transform: scale(0); /* 初期位置 */
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes load-shine {
  0% {
    transform: rotateY(0deg);
  }
  30% {
    transform: rotateY(360deg);
  }
  70% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes load-shine {
  0% {
    transform: rotateY(0deg);
  }
  30% {
    transform: rotateY(360deg);
  }
  70% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
/*=============================================================
 01_base
=============================================================*/
/*=============================================================
 tools
=============================================================*/
#news .ttl-box {
  margin-bottom: -80px;
}
@media only screen and (max-width: 1250px) {
  #news .ttl-box {
    margin-bottom: -6.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .ttl-box {
    margin-bottom: -12.5vw;
  }
}
#news .ttl-box h1, #news .ttl-box .title {
  width: 385px;
  left: -5px;
}
@media only screen and (max-width: 1250px) {
  #news .ttl-box h1, #news .ttl-box .title {
    width: 30.8vw;
    left: -0.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .ttl-box h1, #news .ttl-box .title {
    width: 40.625vw;
    margin-bottom: -2.34375vw;
  }
}
#news .list {
  width: 1200px;
  margin: 0 auto;
  padding: 80px 0 6px;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 1250px) {
  #news .list {
    width: 96vw;
    padding: 6.4vw 0 0.48vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .list {
    width: 93.75vw;
    padding: 12.5vw 0 2.8125vw;
    border-radius: 7.8125vw;
  }
}
#news .list ul {
  width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 1250px) {
  #news .list ul {
    width: 80vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .list ul {
    width: 89.0625vw;
    margin-bottom: -1.5625vw;
  }
}
#news .list ul li {
  position: relative;
  min-height: 150px;
  margin-bottom: 32px;
  box-sizing: border-box;
}
@media only screen and (max-width: 1250px) {
  #news .list ul li {
    min-height: 12vw;
    margin-bottom: 1.76vw;
  }
}
#news .list ul li a {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  height: 100%;
  padding: 40px 30px;
  gap: 0 22px;
  color: #0B0B0B;
  text-decoration: none;
}
@media only screen and (max-width: 1250px) {
  #news .list ul li a {
    grid-template-columns: 19.2vw 1fr;
    padding: 3.2vw 2.4vw;
    gap: 0 1.76vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .list ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3.125vw 0;
    padding: 4.6875vw 3.90625vw;
  }
}
#news .list ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/news/frame_btm-pc.png") no-repeat bottom center, url("../img/news/frame_top-pc.png") no-repeat top center;
  background-size: 100% auto;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 768px) {
  #news .list ul li a::before {
    background: url("../img/news/frame_btm-sp.png") no-repeat bottom center, url("../img/news/frame_top-sp.png") no-repeat top center;
    background-size: 100% auto;
  }
}
#news .list ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: calc(100% - 70px);
  background: url("../img/news/frame_rp-pc.png") repeat-y center center;
  background-size: 100% auto;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1250px) {
  #news .list ul li a::after {
    height: calc(100% - 5.6vw);
  }
}
@media only screen and (max-width: 768px) {
  #news .list ul li a::after {
    height: calc(100% - 8.59375vw);
    background-image: url("../img/news/frame_rp-sp.png");
  }
}
#news .list ul li a .date {
  position: relative;
  padding: 0.6em;
  background-color: #A37941;
  z-index: 2;
}
#news .list ul li a .date p {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-family: "Red Rose", serif;
}
@media only screen and (max-width: 2000px) {
  #news .list ul li a .date p {
    font-size: 1.5vw;
  }
}
@media only screen and (max-width: 1250px) {
  #news .list ul li a .date p {
    font-weight: 2.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .list ul li a .date p {
    font-size: 4.6875vw;
  }
}
#news .list ul li a .txt {
  position: relative;
  z-index: 2;
}
#news .list ul li a .txt p {
  font-size: 20px;
}
@media only screen and (max-width: 1250px) {
  #news .list ul li a .txt p {
    font-size: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .list ul li a .txt p {
    font-size: 3.75vw;
  }
}
#news .list ul li:hover a::before {
  background: url("../img/news/frame_btm_on-pc.png") no-repeat bottom center, url("../img/news/frame_top_on-pc.png") no-repeat top center;
  background-size: 100% auto;
}
@media only screen and (max-width: 768px) {
  #news .list ul li:hover a::before {
    background: url("../img/news/frame_btm-sp.png") no-repeat bottom center, url("../img/news/frame_top-sp.png") no-repeat top center;
    background-size: 100% auto;
  }
}
#news .list ul li:hover a::after {
  background-image: url("../img/news/frame_rp_on-pc.png");
}
@media only screen and (max-width: 768px) {
  #news .list ul li:hover a::after {
    background-image: url("../img/news/frame_rp-sp.png");
  }
}
#news .list ul li {
  opacity: 0;
  transition: all 0.8s 1.3s ease;
}
#news .list ul li:nth-child(2) {
  transition-delay: 1.4s;
}
#news .list ul li:nth-child(3) {
  transition-delay: 1.5s;
}
#news .btn {
  transition-delay: 1.4s;
}
#news.move-on .list ul li {
  opacity: 1;
}
#news.news-detail .inner {
  padding-top: 80px;
}
@media only screen and (max-width: 1250px) {
  #news.news-detail .inner {
    padding-top: 6.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #news.news-detail .inner {
    padding-top: 12.5vw;
  }
}
#news .news__con .h-box {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  height: 100%;
  padding: 40px 30px;
  gap: 0 22px;
  margin-bottom: 55px;
  color: #0B0B0B;
  text-decoration: none;
}
@media only screen and (max-width: 1250px) {
  #news .news__con .h-box {
    grid-template-columns: 19.2vw 1fr;
    padding: 3.2vw 2.4vw;
    margin-bottom: 4.4vw;
    gap: 0 1.76vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con .h-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3.125vw 0;
    padding: 4.6875vw 3.90625vw;
  }
}
#news .news__con .h-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/news/frame_btm_on-pc.png") no-repeat bottom center, url("../img/news/frame_top_on-pc.png") no-repeat top center;
  background-size: 100% auto;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 768px) {
  #news .news__con .h-box::before {
    background: url("../img/news/frame_btm_on-sp.png") no-repeat bottom center, url("../img/news/frame_top_on-sp.png") no-repeat top center;
    background-size: 100% auto;
  }
}
#news .news__con .h-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: calc(100% - 70px);
  background: url("../img/news/frame_rp_on-pc.png") repeat-y center center;
  background-size: 100% auto;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1250px) {
  #news .news__con .h-box::after {
    height: calc(100% - 5.6vw);
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con .h-box::after {
    height: calc(100% - 8.59375vw);
    background-image: url("../img/news/frame_rp_on-sp.png");
  }
}
#news .news__con .h-box .date {
  position: relative;
  padding: 0.6em;
  background-color: #A37941;
  z-index: 2;
}
#news .news__con .h-box .date p {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-family: "Red Rose", serif;
}
@media only screen and (max-width: 2000px) {
  #news .news__con .h-box .date p {
    font-size: 1.5vw;
  }
}
@media only screen and (max-width: 1250px) {
  #news .news__con .h-box .date p {
    font-weight: 2.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con .h-box .date p {
    font-size: 4.6875vw;
  }
}
#news .news__con .h-box h1 {
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  font-weight: normal;
  z-index: 2;
}
@media only screen and (max-width: 1250px) {
  #news .news__con .h-box h1 {
    font-size: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con .h-box h1 {
    font-size: 3.75vw;
  }
}
#news .news__con__detail {
  position: relative;
  padding: 50px 50px 45px;
  border: 1px solid #A37941;
  background-color: #fff;
}
@media only screen and (max-width: 1250px) {
  #news .news__con__detail {
    padding: 4vw 4vw 3.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail {
    padding: 7.8125vw 5vw 4.6875vw;
  }
}
#news .news__con__detail::before {
  content: "";
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  width: 660px;
  height: 46px;
  background: url("../img/parts/block_line.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 1250px) {
  #news .news__con__detail::before {
    top: -1.84vw;
    width: 52.8vw;
    height: 3.68vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail::before {
    top: -2.5vw;
    width: 71.09375vw;
    height: 5vw;
  }
}
#news .news__con__detail:not(:last-of-type) {
  margin-bottom: 75px;
}
@media only screen and (max-width: 1250px) {
  #news .news__con__detail:not(:last-of-type) {
    margin-bottom: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail:not(:last-of-type) {
    margin-bottom: 10.15625vw;
  }
}
#news .news__con__detail .mb {
  margin-bottom: 2em;
}
#news .news__con__detail h2 {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  color: #fff;
  font-family: "Red Rose", serif;
  line-height: 1;
  padding: 8px 15px;
  gap: 0 15px;
  margin: 1em 0 0.7em;
  background-color: #A37941;
}
@media only screen and (max-width: 1250px) {
  #news .news__con__detail h2 {
    padding: 0.64vw 1.2vw;
    font-size: 1.92vw;
    gap: 0 1.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail h2 {
    padding: 1.25vw 1.875vw 1.25vw 1.25vw;
    font-size: 4.375vw;
    gap: 0 2.34375vw;
  }
}
#news .news__con__detail h2::before {
  content: "";
  display: inline-block;
  width: 70px;
  height: 24px;
  background: url("../img/parts/h_deco01.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 1250px) {
  #news .news__con__detail h2::before {
    width: 5.6vw;
    height: 1.92vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail h2::before {
    width: 10.9375vw;
    height: 3.75vw;
  }
}
#news .news__con__detail h3 {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #A37941;
  font-family: "Red Rose", serif;
  font-weight: 400;
  line-height: 1;
  padding: 8px 10px;
  margin: 1em 0 0.8em;
  gap: 0 8px;
  border: 1px solid #A37941;
}
@media only screen and (max-width: 1250px) {
  #news .news__con__detail h3 {
    font-size: 1.6vw;
    padding: 0.64vw 0.8vw;
    gap: 0 0.64vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail h3 {
    font-size: 3.75vw;
    padding: 0.78125vw 1.5625vw;
    gap: 0 1.25vw;
  }
}
#news .news__con__detail h3::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../img/parts/h_deco02.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 1250px) {
  #news .news__con__detail h3::before {
    width: 1.44vw;
    height: 1.44vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail h3::before {
    width: 2.8125vw;
    height: 2.8125vw;
  }
}
#news .news__con__detail h4 {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0 12px;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 0.4em;
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail h4 {
    grid-template-columns: 2.1875vw 1fr;
    gap: 0 1.875vw;
    font-size: 2.8125vw;
  }
}
#news .news__con__detail h4::before {
  content: "";
  position: relative;
  top: 3px;
  display: block;
  width: 14px;
  height: 14px;
  background: url("../img/parts/rhombus_gl.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail h4::before {
    top: 0.625vw;
    width: 2.1875vw;
    height: 2.1875vw;
  }
}
#news .news__con__detail h5 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
  margin: 0.4em 0 1em;
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail h5 {
    font-size: 2.8125vw;
  }
}
#news .news__con__detail ul {
  margin-bottom: 3em;
}
#news .news__con__detail ul li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0 12px;
  line-height: 1.5;
  margin-bottom: 0.8em;
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail ul li {
    grid-template-columns: 2.1875vw 1fr;
    gap: 0 1.875vw;
  }
}
#news .news__con__detail ul li::before {
  content: "";
  position: relative;
  top: 3px;
  display: block;
  width: 14px;
  height: 14px;
  background: url("../img/parts/rhombus_gl.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail ul li::before {
    top: 1.5625vw;
    width: 2.1875vw;
    height: 2.1875vw;
  }
}
#news .news__con__detail .image {
  margin: 1em 0;
}
#news .news__con__detail .image img {
  max-width: 100%;
}
#news .news__con__detail .btn {
  width: auto;
  height: auto;
  background: unset;
  margin: 2.5em 0;
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail .btn {
    text-align: center;
  }
}
#news .news__con__detail .btn__center {
  text-align: center;
}
#news .news__con__detail .btn a {
  position: relative;
  display: inline-flex;
  min-width: 240px;
  min-height: 35px;
  padding: 1.5em 2em;
  text-decoration: none;
  background: url("../img/news/bg_btn_top_l.png") no-repeat top left, url("../img/news/bg_btn_top_r.png") no-repeat top right, url("../img/news/bg_btn_btm_l.png") no-repeat bottom left, url("../img/news/bg_btn_btm_r.png") no-repeat bottom right;
  background-size: 25px 25px;
}
@media only screen and (max-width: 1250px) {
  #news .news__con__detail .btn a {
    min-width: 19.2vw;
    min-height: 2.8vw;
    background-size: 2vw 2vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail .btn a {
    min-width: 37.5vw;
    min-height: 5.46875vw;
    background-size: 3.90625vw 3.90625vw;
  }
}
#news .news__con__detail .btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 100%;
  background-color: #FFC529;
  border-top: 1.5px solid #A37941;
  border-bottom: 1.5px solid #A37941;
  box-sizing: border-box;
}
@media only screen and (max-width: 1250px) {
  #news .news__con__detail .btn a::before {
    width: calc(100% - 3.2vw);
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail .btn a::before {
    width: calc(100% - 6.25vw);
    border-width: 1px;
  }
}
#news .news__con__detail .btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: calc(100% - 40px);
  background-color: #FFC529;
  border-left: 1.5px solid #A37941;
  border-right: 1.5px solid #A37941;
  box-sizing: border-box;
}
@media only screen and (max-width: 1250px) {
  #news .news__con__detail .btn a::after {
    height: calc(100% - 3.2vw);
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail .btn a::after {
    height: calc(100% - 6.25vw);
    border-width: 1px;
  }
}
#news .news__con__detail .btn a p {
  position: relative;
  font-size: 25px;
  line-height: 1;
  font-family: "Playfair", serif;
  font-weight: bold;
  color: #0B0B0B;
  margin: 0;
  text-align: center;
  z-index: 2;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1250px) {
  #news .news__con__detail .btn a p {
    font-size: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail .btn a p {
    font-size: 3.90625vw;
  }
}
#news .news__con__detail .btn a:hover p {
  transform: scale(1.06);
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail .btn a:hover p {
    transform: scale(1);
  }
}
#news .news__con__detail .youtube {
  width: 800px;
  height: 450px;
  max-width: 100%;
  margin: 1.5em auto;
}
@media only screen and (max-width: 1250px) {
  #news .news__con__detail .youtube {
    width: 64vw;
    height: 36vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail .youtube {
    width: 100%;
    height: 45.3125vw;
  }
}
#news .news__con__detail .youtube iframe {
  width: 100%;
  height: 100%;
}
#news .news__con__detail p {
  font-size: 14px;
  font-weight: 500;
  margin: 0.4em 0 1em;
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail p {
    font-size: 2.8125vw;
  }
}
#news .news__con__detail p a {
  font-weight: bold;
  color: #0B0B0B;
}
#news .news__con__detail p.small {
  font-size: 12px;
}
@media only screen and (max-width: 768px) {
  #news .news__con__detail p.small {
    font-size: 2.5vw;
  }
}