@charset "utf-8";
/* 共通スタイル
 * ************************************************** */
html {
    font-size: 14px;
}
body {
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    letter-spacing: 0.08em;
    line-height: 1.8;
    max-width: 100%;
    background: #1a1a1a;
    color: #fff;
}
* {
    box-sizing: border-box;
}
a, a:focus {
    outline: none;
}
a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}
a:hover {
    opacity: 0.8;
}
img {
    vertical-align: bottom;
    max-width: 100%;
}
.d_pc {
  display: none !important;
}
.page_wrap {
    overflow: hidden;
}
/* font */
.jost {    font-family: "Jost", sans-serif;}


/* スクロールCSS */
.fade-in {
  opacity: 0;
}
.fade-in-up {
  transform: translate(0, 80px);
}
.fade-in-down {
  transform: translate(0, -80px);
}
.fade-in-left {
  transform: translate(-80px, 0);
}
.fade-in-right {
  transform: translate(80px, 0);
}
.scroll-in {
  animation: fadeIn 0.8s ease;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.fade-in-zoomin.scroll-in {
  animation: zoomIn .8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  25% {
    transform: scale(0.8);
    opacity: 0;
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* side */
.side_btn_reservation {
    display: block;
    position: fixed;
    top: 40vw;
    right: 0;
    width: 12vw;
}
/* ttl */
.ttl_A {
    margin-bottom: 8vw;
}
.ttl_A .en {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 16vw;
    line-height: 1;
}
.ttl_A .jp {
    display: block;
    font-weight: 500;
    font-size: 3vw;
    line-height: 1;
    letter-spacing: 0.3em;
}
/* btn */
.btn_A a {
    position: relative;
    display: inline-block;
    padding: 10px 75px 10px 38px;
    border-radius: 30px;
    background: rgb(210,38,123);
    background: -webkit-linear-gradient(left, rgba(210,38,123,1) 0%, rgba(41,67,200,1) 100%);
    background: -o-linear-gradient(left, rgba(210,38,123,1) 0%, rgba(41,67,200,1) 100%);
    background: linear-gradient(to right, rgba(210,38,123,1) 0%, rgba(41,67,200,1) 100%);
}
.btn_A a .btn_txt {
    font-size: 4vw;
    line-height: 1;
    font-weight: 500;
}
.btn_A a::before {
    display: block;
    content: '';
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgb(130,130,130);
    background: linear-gradient(90deg, rgba(130,130,130,1) 0%, rgba(188,188,188,1) 100%);
    position: absolute;
    top: calc(50% - 18px);
    right: 5px;
}
.btn_A a::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    color: #656565;
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 5px 9px;
    border-left-color: currentColor;
    border-right: 0;
    position: absolute;
    top: calc(50% - 5px);
    right: 16px;
}
.btn_B a {
    position: relative;
    display: inline-block;
    width: 88vw;
    padding: 15px;
    border-radius: 50px;
    background: rgb(210,38,123);
    background: -webkit-linear-gradient(left, rgba(210,38,123,1) 0%, rgba(41,67,200,1) 100%);
    background: -o-linear-gradient(left, rgba(210,38,123,1) 0%, rgba(41,67,200,1) 100%);
    background: linear-gradient(to right, rgba(210,38,123,1) 0%, rgba(41,67,200,1) 100%);
}
.btn_B a .btn_txt {
    font-size: 6vw;
    line-height: 1;
    font-weight: 500;
}
.btn_B a::before {
    display: block;
    content: '';
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgb(130,130,130);
    background: linear-gradient(90deg, rgba(130,130,130,1) 0%, rgba(188,188,188,1) 100%);
    position: absolute;
    top: calc(50% - 24px);
    right: 6px;
}
.btn_B a::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    color: #656565;
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 8px 12px;
    border-left-color: currentColor;
    border-right: 0;
    position: absolute;
    top: calc(50% - 8px);
    right: 22px;
}
.btn_right {
    text-align: right;
}
.btn_center {
    text-align: center;
}
/* list */
.list_dot li {
    list-style: disc;
    margin-left: 1em;
}
/* text */
.txt80 {
    font-size: 80%;
}
/* content
 * ************************************************** */
#content {
    padding-bottom: 40vw;
    background: url("../images/content_bg_sp.png") no-repeat 50% 100% / 100%;
}

/* header
 * ************************************************** */
#header_logo {
    position: fixed;
    left: 2.5vw;
    top: 2.5vw;
    z-index: 1;
    width: 21vw;
}

/* nav
 * ************************************************** */
nav.global_menu {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    background: rgb(146,13,82);
    background: -webkit-linear-gradient(bottom, rgba(146,13,82,1) 0%, rgba(30,41,98,1) 100%);
    background: -o-linear-gradient(bottom, rgba(146,13,82,1) 0%, rgba(30,41,98,1) 100%);
    background: linear-gradient(to top, rgba(146,13,82,1) 0%, rgba(30,41,98,1) 100%);
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 60vw;
    padding: 10vw 6vw 8vw;
}
nav.global_menu ul li {
    font-size: 6vw;
    margin-bottom: 0.5em;
}
nav.global_menu .global_menu_lang {
    padding-top: 2em;
    border-top: 1px solid #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
nav.global_menu .global_menu_lang li {
    font-size: 4vw;
    margin: 0 3vw 0 0;
    padding: 0.4em 0.8em;
    line-height: 1;
    background: #fff;
    border-radius: 2px;
}
nav.global_menu .global_menu_lang li a {
    color: rgba(146,13,82,1);
    font-weight: bold;
}
/*中身を非表示にしておく*/
.toggle-wrap .toggle-content{
	height: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.6s;
}
/* このクラスを、jQueryで付与・削除する */
nav.global_menu.active {
    transform: translateY(0%);
    top: 0;
}
/* ハンバーガー用 */
.navToggle {
    display: block;
    width: 11vw;
    height: 11vw;
    cursor: pointer;
    z-index: 9999;
    text-align: center;
    transition: .3s ease-in-out;
    position: fixed;
    top: 4vw;
    right: 4vw;
}
.navToggle span {
    display: block;
    position: absolute;
    left: 0;
    width: 11vw;
    border-bottom: solid 1.1vw #fff;
    border-radius: 10px;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
.header_scroll .navToggle span {
    border-color: #fff;
}
.navToggle span:nth-child(1) {
    top: 0;
}
.navToggle span:nth-child(2) {
    top: 4vw;
    opacity: .7;
}
.navToggle span:nth-child(3) {
    top: 8vw;
    opacity: .4;
}
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
  top: 5vw;
  left: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2), .navToggle.active span:nth-child(3) {
  top: 5vw;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
    opacity: 1;
}

/* mv
 * ************************************************** */
#c_mv {
    position: relative;
    width: 100%;
    height: 140vw;
    background: url("../images/mv_bg_sp.jpg") no-repeat 50% 50% / cover;
}
#c_mv .mv_inner {
    position: relative;
    margin: 0 auto;
    width: 84%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#c_mv .mv_inner .mv_ttl {
    display: block;
    overflow: hidden;
    width: 60vw;
    height: 0;
    padding-top: 25vw;
    background: url("../images/mv_ttl.png") no-repeat 50% 50% / contain;
    animation-delay: 1s;
}
#c_mv .mv_info {
    position: absolute;
    bottom: 3.5vw;
    right: 3.5vw;
    padding: 4vw 5vw;
    background: rgba(0,0,0,0.6);
    font-size: 3vw;
}
#c_mv .mv_info .mv_info_add {
    padding-bottom: 4vw;
    margin-bottom: 4vw;
    border-bottom: 1px solid #fff;
}
#c_mv .mv_info .mv_info_tel {
    text-align: center;
    letter-spacing: 0.1em;
}
#c_mv .mv_info .mv_info_tel a {
    font-size: 200%;
    font-weight: 500;
    margin-left: 0.2em;
    line-height: 1;
}

/* c_news
 * ************************************************** */
#c_news {
    padding: 10vw 0;
    background: url("../images/news_bg.jpg") no-repeat 50% 50% / cover;
}
#c_news .cont_inner {
    padding: 0 6vw;
}
#c_news .cont_inner .cont_ttl .ttl_A .en {
    background: rgb(38,217,177);
    background: linear-gradient(90deg, rgba(38,217,177,1) 0%, rgba(56,87,244,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#c_news .cont_inner .cont_txt .news_list {
    margin-bottom: 8vw;
    border-top: 1px solid #fff;
}
#c_news .cont_inner .cont_txt .news_list li {
    padding: 1em 0;
    border-bottom: 1px solid #fff;
}
#c_news .cont_inner .cont_txt .news_list li a .news_date {
    display: block;
}

/* c_concept
 * ************************************************** */
#c_concept {
    padding: 16vw 0 42vw;
    background: url("../images/concept_bg.jpg") no-repeat 50% 50% / cover;
    position: relative;
}
#c_concept .cont_inner {
    padding: 0 6vw;
}
#c_concept .cont_inner .cont_ttl {
    display: block;
    margin: 0 auto 5.625vw;
    overflow: hidden;
    width: 80vw;
    height: 0;
    padding-top: 23vw;
    background: url("../images/concept_ttl.png") no-repeat 50% 50% / contain;
}
#c_concept .cont_inner .cont_txt {
    line-height: 2.2;
    font-weight: 500;
    text-align: center;
}
#c_concept .concept_flag {
    width: 46vw;
    position: absolute;
    top: -10.75vw;
    left: -5vw;
}
#c_concept .concept_beef {
    width: 70vw;
    position: absolute;
    bottom: -10vw;
    right: -2vw;
}

/* c_gallery
 * ************************************************** */
#c_gallery {
    padding: 12vw 0 10vw;
    background: rgb(0,5,29);
    background: linear-gradient(180deg, rgba(0,5,29,1) 10%, rgba(69,73,88,1) 50%, rgba(0,5,29,1) 90%);
}
#c_gallery .cont_inner {
    padding: 0 6vw;
}
#c_gallery .cont_inner .ttl_A {
    text-align: center;
}
#c_gallery .cont_inner .ttl_A .en {
    background: rgb(210,38,123);
    background: linear-gradient(90deg, rgba(210,38,123,1) 0%, rgba(41,67,200,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#c_gallery .slider_gallery {
    margin-bottom: 3vw;
    border: 6px solid #e5e5e5;
}
#c_gallery .thumbnail .slick-track {
    transform: unset !important;
    width: 100%!important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
#c_gallery .thumbnail-img {
    transition: all 0.5s ease;
    width: 18.727% !important;
    margin-right: 1.591%!important;
    margin-bottom: 15px;
    cursor: pointer;
}
#c_gallery .thumbnail-img:nth-child(5n) {
    margin-right: 0!important;
}
#c_gallery .thumbnail .slick-current {
    border: 3px solid #d2267b;
    transition: all 0.5s ease;
}
#c_gallery .slick-arrow {
    width: 8vw;
    height: 8vw;
    top: calc(50% - 1vw);
    bottom: auto;
}
#c_gallery .slick-prev {
    background: url("../images/slider_btn_l.png") no-repeat 50% 50% / contain;
    left: -6vw;
    right: auto;
}
#c_gallery .slick-next {
    background: url("../images/slider_btn_r.png") no-repeat 50% 50% / contain;
    left: auto;
    right: -6vw;
}
#c_gallery .slick-prev:before, 
#c_gallery .slick-next:before {
    width: 8vw;
    height: 8vw;
}

/* c_menu
 * ************************************************** */
#c_menu {
    padding: 12vw 0 10vw;
    background: url("../images/menu_bg.jpg") no-repeat 50% 50% / cover;
}
#c_menu .cont_inner .ttl_A {
    text-align: center;
}
#c_menu .cont_inner .ttl_A .en {
    background: rgb(234,228,55);
    background: linear-gradient(90deg, rgba(234,228,55,1) 0%, rgba(210,38,123,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
#c_menu .cont_inner .ttl_A .en::after {
    display: block;
    content: '';
    width: 19vw;
    height: 30vw;
    position: absolute;
    left: -26vw;
    top: -6vw;
    background: url(../images/menu_illust01.png) no-repeat 0 0 / contain;
    z-index: 1;
}
/* slider */
#c_menu .slick-slide {
    position: relative;
    padding: 4vw;
}
#c_menu .slick-slide .slider_cont {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 4px 4px 0px 0px rgba(146, 13, 82, 1);
}
#c_menu .slick-slide .slider_cont .menu_slider_txt {
    position: absolute;
    padding: 3vw;
    width: 100%;
    bottom: 0;
    left: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 15%, rgba(0,0,0,0) 100%);
}
#c_menu .slick-slide .slider_cont .menu_slider_txt .menu_name {
    font-size: 4vw;
    font-weight: 700;
}
#c_menu .slick-slide .slider_cont .menu_slider_txt p {
    font-size: 2.8vw;
    line-height: 1.5;
}
#c_menu .slick-dots {
    position: relative;
    margin: 7vw auto 0;
    width: 88vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #4e4e4e;
    border-radius: 5px;
    overflow: hidden;
}
#c_menu .slick-dots li {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 8px;
    background: #4e4e4e;
    transition: all 0.3s ease;
}
#c_menu .slick-dots li.slick-active {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 8px;
    background: #27d3b4;
    border-radius: 5px;
    transition: all 0.3s ease;
}
#c_menu .slick-dots li button {
  display: block;
  margin: 0;
  padding: 0;
  width: auto;
  height: 4px;
  background: none;
}
#c_menu .arrow_box {
    margin: 0 auto;
    width: 88vw;
    position: relative;
}
#c_menu .slide-arrow {
    width: 8vw;
    height: 8vw;
    position: absolute;
    bottom: 24px;
    cursor: pointer;
}
#c_menu .prev-arrow {
    background: url("../images/slider_btn_l.png") no-repeat 50% 50% / contain;
    left: 0;
}
#c_menu .next-arrow {
    background: url("../images/slider_btn_r.png") no-repeat 50% 50% / contain;
    left: 13vw;
}

/* c_access
 * ************************************************** */
#c_access {
    padding: 10vw 0 15vw;
}
#c_access .cont_inner {
    padding: 0 6vw;
}
#c_access .cont_inner .ttl_A .en {
    background: rgb(38,217,177);
    background: linear-gradient(90deg, rgba(38,217,177,1) 0%, rgba(56,87,244,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
#c_access .cont_inner .cont_ttl .access_add dl {
    margin-bottom: 6vw;
}
#c_access .cont_inner .cont_ttl .access_add dl dt {
    margin-top: 1em;
    font-weight: 700;
}
#c_access .cont_inner iframe {
    width: 100%;
    height: 80vw;
}

/* c_information
 * ************************************************** */
#c_information .cont_inner {
    padding: 0 6vw;
}
#c_information .cont_inner .cont_ttl .ttl_A .en {
    background: rgb(210,38,123);
    background: linear-gradient(90deg, rgba(210,38,123,1) 0%, rgba(41,67,200,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0;
}
#c_information .cont_inner .cont_ttl .information_cont {
    margin-bottom: 4vw;
    padding: 1vw 5vw 5vw;
    background: #4e4e4e;
    border-radius: 4px;
}
#c_information .cont_inner .cont_ttl .information_cont dl {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
#c_information .cont_inner .cont_ttl .information_cont dl dt {
    width: 7em;
    padding: 1em 0;
    border-bottom: 1px solid #1b1b1b;
    font-weight: 700;
}
#c_information .cont_inner .cont_ttl .information_cont dl dd {
    width: calc(100% - 7em);
    padding: 1em 0;
    border-bottom: 1px solid #1b1b1b;
}
#c_information .cont_inner .cont_img {
    display: none;
}
#c_information .btn_B {
    margin-top: 6vw;
}

/* footer
 * ************************************************** */
#page-top {
    display: block;
    position: fixed;
    bottom: 3vw;
    right: 3vw;
    width: 14vw;
}
#footer .copy {
    padding: 15px;
    width: 100%;
}
#footer .copy p {
    text-align: center;
    line-height: 1;
    font-size: 2.9vw;
}
/* =======================================================================
    low
========================================================================== */
.low #content {
    padding-top: 25vw;
    padding-left: 5vw;
    padding-right: 5vw;
    min-height: 100vh;
}
/*
    news
========================================================================== */
#news #article_list .ttl_A {
    font-size: 9vw;
    margin-bottom: 0;
    line-height: 1;
}
#news #article_list .ttl_A span {
    font-weight: bold;
    line-height: 1;
    background: rgb(182,141,1);
    background: linear-gradient(90deg, rgba(182,141,1,1) 0%, rgba(227,214,175,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#news #article_list .article_list_cont li {
	border-bottom: 1px solid rgba(11,147,195,1);
  padding: 20px 0;
}
#news #article_list .article_list_cont li a {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
#news #article_list .article_list_cont li .date {
	width: 7em;
    font-weight: bold;
}
#news #article_list .article_list_cont li .news_ttl {
 width : 90% ; /* IE8以下とAndroid4.3以下用フォールバック */
 width : -webkit-calc(100% - 7em) ;
 width : calc(100% - 7em) ;
}
/*wp-pagenavi base*/
.wp-pagenavi {
	clear: both;
	text-align:center;
}
.wp-pagenavi a, .wp-pagenavi span {
	color: #999;
	background-color: #FFF;
	border: solid 1px #999;
	padding: 8px 15px;
	margin: 0 2px;
	white-space: nowrap;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration:none;
}
.wp-pagenavi a:hover{
	color:#FFF; 
	background-color:#999; 
	border-color:#999;
}
.wp-pagenavi span.current{
	color: #FFF;
	background-color: rgb(255,51,118);
	border-color: rgb(255,51,118);
	font-weight: bold;
}

/* single */
.roop {
	min-height: 500px;
}
.roop .post .size-full,
.roop .post img{
	max-width: 700px;
	height: auto;
}
.roop .post iframe{
	max-width: 600px;
}
.cms_content {
  margin-bottom: 40px;
}
.wp-pagenavi {
	margin: 40px 0 60px;
	font-size: 90%;
}
/* post */
.post h1 {
	font-size: 5.5vw;
	margin: 1rem 0;
	line-height: 1.3;
	font-weight: 500;
}
.post .date {
	text-align: right;
	color: #666;
}
.post .entry {
	margin-top: 20px;
}
.post .entry  p {
	margin-top: 10px;
}
.post .entry  a {
	color: rgb(255,51,118);
  text-decoration: underline;
}
.post .entry  strong {
  font-weight: bold;
}
.post .entry  em {
  font-style: italic;
}
.post .entry  blockquote {
  border-left: 6px solid #d9d9d9;
  padding-left: 10px;
}
.post .entry .marker {
  display: inline;
  background: linear-gradient(transparent 40%, #ffff00 40%);
	font-weight: bold;
}
.post .entry .box {
	margin-top: 15px;
  padding: 20px;
	background: #ecf7fb;
}
.post .entry .box > *:first-child {
	margin-top: 0;
}
.post .entry ul,
.post .entry ol{
  margin-top: 25px;
}
.post .entry ul li {
  list-style: disc;
  margin-left: 1.5em;
}
.post .entry ol li {
  list-style: decimal;
  margin-left: 1.5em;
}
.post .entry ul + *,
.post .entry ol + * {
	margin-top: 25px;
}
.post .entry h2 {
	margin: 30px 0 0;
	padding: 0.05em 0.4em;
	border-left: 6px solid rgb(255,51,118);
	font-size: 5vw;
	font-weight: 500;
    line-height: 1.4;
}
.post .entry h3 {
	margin: 30px 0 0;
	padding-bottom: 0.2em;
	border-bottom: 1px solid #666;
	font-size: 4.5vw;
	font-weight: 500;
}
.post .entry h4 {
	margin: 30px 0 0;
	font-size: 4.5vw;
	padding-left: 1em;
  text-indent: -0.7em;
	line-height: 1.4;
	font-weight: 500;
}
.post .entry h4::before {
	display: inline-block;
	content: '■';
	color: rgba(11,147,195,1);
	margin-right: 0.4em;
}
.post .entry h5 {
	margin: 30px 0 0;
	font-size: 4.2vw;
	font-weight: 500;
}
.post .entry h2 + p,
.post .entry h3 + p {
	margin-top: 10px;
}
.post .entry h4 + p,
.post .entry h5 + p {
	margin-top: 6px;
}
/*画像設定*/
.post .size-full,
.post .size-large,
.post .size-medium,
.post .size-thumbnail{
	max-width:100%; height:auto;
}
.post .alignleft {
	float: left;
	margin: 0 10px 10px 0;
}
.post .aligncenter {
	display: block;
	margin:0 auto 10px auto;
}
.post .alignright {
	float: right;
	margin: 0 0 10px 10px;
}
.post .two_img {
	margin: 20px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.post .two_img img {
	float: none;
	margin: 0;
	width: 48.5%;
}
.post .wp-caption{margin-top:20px;}
.post .wp-caption a{display:block;}
.post .wp-caption a:hover{border-bottom: none;}
.post .wp-caption img{vertical-align: bottom;}
.post .wp-caption-text{
	margin-top: 10px;
	text-align:center;
	font-size:1.4rem;
}

/* related-articles */
.related-articles ul {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.related-articles ul li {
	margin: 0 4% 20px 0;
	width: 48%;
}
.related-articles ul li:nth-child(2n) {
	margin-right: 0;
}
.related-articles ul li a {
	display: block;
}
.related-articles ul li .thumb {
	margin-bottom: 10px;
	overflow: hidden;
	height: 24.5vw;
	display: flex;
	justify-content: center;
	align-items: center;
}
.related-articles ul li .thumb img {
	height: auto;
}
.related-articles ul li p {
	font-weight: bold;
	line-height: 1.5!important;
}

/* thai */
#th #content {
    padding-top: 0!important;
    padding-left: 0!important;
    padding-right: 0!important;
}
#th #c_mv .mv_inner .mv_ttl {
    display: block;
    overflow: hidden;
    width: 60vw;
    height: 0;
    padding-top: 21vw;
    background: url("../images/th/mv_ttl.png") no-repeat 50% 50% / contain;
    animation-delay: 1s;
}
#th #c_concept .cont_inner .cont_ttl {
    display: block;
    margin: 0 auto;
    overflow: hidden;
    width: 88vw;
    height: 0;
    padding-top: 47vw;
    background: url(../images/th/concept_ttl_sp.png) no-repeat 50% 50% / contain;
}
#th #c_concept .cont_inner .cont_txt {
    line-height: inherit;
}
#th #c_menu .cont_inner .ttl_A .en::after {
    top: -15vw;
}
#th #c_information .cont_inner .cont_ttl .information_cont dl dt {
    width: 8.5em;
}
#th #c_information .cont_inner .cont_ttl .information_cont dl dd {
    width: calc(100% - 8.5em);
}
/* en */
#en #content {
    padding-top: 0!important;
    padding-left: 0!important;
    padding-right: 0!important;
}
#en #c_mv .mv_inner .mv_ttl {
    display: block;
    overflow: hidden;
    width: 60vw;
    height: 0;
    padding-top: 21vw;
    background: url("../images/en/mv_ttl.png") no-repeat 50% 50% / contain;
    animation-delay: 1s;
}
#en #c_concept .cont_inner .cont_ttl {
    display: block;
    margin: 0 auto;
    overflow: hidden;
    width: 88vw;
    height: 0;
    padding-top: 38vw;
    background: url(../images/en/concept_ttl.png) no-repeat 50% 50% / contain;
}
#en #c_concept .cont_inner .cont_txt {
    line-height: inherit;
}
#en #c_menu .cont_inner .ttl_A .en::after {
    top: -15vw;
}