@charset "UTF-8";
/* CSS Document */ /* CSS Document */
/*******************************
* ResetCSS
*******************************/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
@import url("https://fonts.googleapis.com/css2?family=Forum&family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* CSS Document */
/***********************
root設定
***********************/
body {
  font-size: 10px;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
body.fixed {
  padding-top: 64px;
}
@media screen and (max-width: 1024px) {
  body.fixed {
    padding-top: 0;
  }
}

/***********************
ページフェードイン
***********************/
/*
body {
  opacity: 0;
}

body.on {
  opacity: 1;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
*/
/***********************
表示設定
***********************/
.pc_hide {
  display: none;
}
.sp_inline{
  display: none;
}
.br-sp {
    display: none;
}

@media screen and (max-width: 480px) {
  .sp_hide {
    display: none;
  }
  .pc_hide {
    display: block;
  }
  .sp_inline{
    display: inline;
  }
  .br-sp {
    display: block;
    }

}
/***********************
フォント設定
***********************/
.el_font_mincho {
  font-family: "Yu Mincho Medium", "游明朝 Medium", YuMincho, "游明朝体", "ヒラギノ明朝 Pro W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.el_font_bold {
  font-weight: bold;
}

.ff_en {
  font-family: "Forum", cursive;
}

/***********************
画像設定
***********************/
img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
img.ofi_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  /* ofi.min.js用の記述 */
  font-family: "object-fit: contain;";
}
img.ofi_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* ofi.min.js用の記述 */
  font-family: "object-fit: cover;";
}

/***********************
リンク設定
***********************/
a {
  text-decoration: none;
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/***********************
電話番号リンク設定
※SP時のみ電話がかけられる設定
***********************/
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}


/***********************
レイアウト
***********************/
.clearfix {
  display: block;
  min-height: 1%;
  clear: both;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex.start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.sec_head_v {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  .sec_head_v {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
  }
}

/***********************
Utils
***********************/
.fl {
  float: left;
}
@media screen and (max-width: 480px) {
  .fl {
    float: none;
  }
}

.fr {
  float: right;
}
@media screen and (max-width: 480px) {
  .fr {
    float: none;
  }
}

.ly_inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .ly_inner {
    padding: 0 7.8%;
  }
}
@media screen and (max-width: 1024px) {
  .ly_inner {
    padding: 0 5.3%;
  }
}
@media screen and (max-width: 480px) {
  .ly_inner {
    max-width: 100%;
  }
}

.el_imgTxt {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

/***********************
Text
***********************/
.el_desc {
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 2.4;
}
@media screen and (max-width: 1024px) {
  .el_desc {
    font-size: 18px;
  }
}

.el_sec_ttl_en {
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .el_sec_ttl_en {
    font-size: 18px;
  }
}

.el_sec_ttl {
  font-size: 40px;
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0.28em;
}
@media screen and (max-width: 1024px) {
  .el_sec_ttl {
    font-size: 30px;
    line-height: 1.5;
  }
}
.el_sec_ttl + .el_sec_ttl_en {
  padding-top: 12px;
}
@media screen and (max-width: 1024px) {
  .el_sec_ttl + .el_sec_ttl_en {
    padding-top: 5px;
  }
}
.el_sec_ttl + .el_sec_ttl_en + .blc_ttl {
  padding-top: 48px;
}
@media screen and (max-width: 1024px) {
  .el_sec_ttl + .el_sec_ttl_en + .blc_ttl {
    padding-top: 27px;
  }
}
.el_sec_ttl + .el_sec_ttl_en + .el_desc {
  padding-top: 16px;
}
@media screen and (max-width: 1024px) {
  .el_sec_ttl + .el_sec_ttl_en + .el_desc {
    padding-top: 5px;
  }
}

.blc_ttl {
  font-size: 32px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.28em;
}
@media screen and (max-width: 1024px) {
  .blc_ttl {
    font-size: 26px;
  }
}

/***********************
Button
***********************/
.btn {
  display: inline-block;
  font-size: 20px;
  padding: 20px;
  position: relative;
}
.btn.multi {
  padding: 10px 20px;
}
@media screen and (max-width: 1024px) {
  .btn {
    font-size: 18px;
  }
}
.btn.btn_cmn {
  border: solid 1px rgba(146, 146, 146, 0.5);
  background: rgba(255, 255, 255, 0.6);
  padding: 26px 40px;
  width: 320px;
}

@media screen and (max-width: 1024px) {
  .btn.btn_cmn {
    max-width: 335px;
  }
}

.btn.btn_arw::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 25px;
  right: 24px;
  background: url(./images/common/btn_arw01.svg) center center no-repeat;
  background-size: cover;
}

.btn.btn-spa::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 21px;
  right: 24px;
  background: url(./images/common/btn_arw01.svg) center center no-repeat;
  background-size: cover;
}

.btn.btn_arw.btn_arw_btm::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.btn.btn_pat-1,
.btn.btn_pat-3 {
  background-color: #dfcfc2;
}
.btn.btn_pat-2 {
  background: #666666;
  color: #fff;
}
.btn.btn_pat-2::after {
  background: url(./images/common/btn_arw02.svg) center center no-repeat;
  background-size: cover;
}
.form_panel .btn.btn_pat-3 {
  /* キャンセルボタンはPCでも表示 */
  font-size: 17px;
}
@media screen and (min-width: 1024px) {
  .btn.btn_pat-3 {
    display: grid;
    place-content: center;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    padding: 1px 10px;
    height: 56px;
    line-height: 56px;
    letter-spacing: 0.08em;
    text-indent: -0.08em;
  }
  .btn.btn_pat-3::after {
    display: none;
  }
  .btn.btn_pat-3 .ico.home {
    display: none;
  }
}
.btn.btn_pat-1::after,
.btn.btn_pat-2::after,
.btn.btn_pat-3::after {
  top: 21px;
  right: 14px;
}
.btn .ico {
  margin-right: 15px;
}
.btn .ico img {
  width: auto;
  height: 20px;
}
.btn.btn_nav {
  background: #677f7e;
  color: #fff;
  width: 100%;
}
.btn.btn_nav::after {
  top: 20px;
  background: url(./images/common/btn_arw02.svg) center center no-repeat;
  background-size: cover;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.btn.btn_single_nav {
  border: solid 1px rgba(146, 146, 146, 0.5);
  background: rgba(255, 255, 255, 0.6);
  width: 100%;
  width: 320px;
  text-align: left;
  min-height: 83px;
  align-items: center;
  display: flex;
}
.btn.btn_single_nav::after {
  top: 30px;
  background: url(./images/common/btn_arw01.svg) center center no-repeat;
  background-size: cover;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media screen and (max-width: 480px) {
.btn.btn_single_nav {
  min-height: auto;
}
	
  .btn.btn_single_nav::after {
  top: 21px;
}
	
}
@media screen and (max-width: 768px) {
.btn.btn_single_nav {
  min-height: auto;
}
	
  .btn.btn_single_nav::after {
  top: 21px;
}
}

.btn_gradation{
  background: url(https://shironoi.com/images/common/btn_arw02.svg), -moz-linear-gradient(left, #20373d, #219372)!important;
  background: url(https://shironoi.com/images/common/btn_arw02.svg),-webkit-linear-gradient(left, #20373d, #219372)!important;
  background: linear-gradient(to right, #20373d, #219372)!important;
  color: #fff;
}
.btn_gradation:after{
  background: url(./images/common/btn_arw02.svg) center center no-repeat!important;
  background-size: cover;
}
/***********************
Background
***********************/
.bg_pat_def {
  background: url(./images/common/bg_def.jpg) center top repeat-y;
  background-size: 2000px 4331px;
}
@media screen and (max-width: 480px) {
  .bg_pat_def {
    background: url(./images/common/bg_def_sp.jpg) center top repeat-y;
  }
}

.bg_pat_def2 {
  background: url(./images/common/bg_def.jpg) center top repeat-y;
  background-size: 2000px 4331px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .bg_pat_def2 {
    background: url(./images/common/bg_def_sp.jpg) center top repeat-y;
  }
}
.bg_pat_def2::after {
  content: "";
  width: 100%;
  height: 50%;
  background: #000;
  background: url(./images/common/bg_dark.jpg) center top repeat-y;
  background-size: 2000px 3294px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 480px) {
  .bg_pat_def2::after {
    background: url(./images/common/bg_dark_sp.jpg) center top repeat-y;
  }
}
.bg_pat_def2 .bg_inner {
  position: relative;
  z-index: 1;
}

.bg_pat_dark {
  background: url(./images/common/bg_dark.jpg) center top repeat-y;
  background-size: 2000px 3294px;
}
@media screen and (max-width: 480px) {
  .bg_pat_dark {
    background: url(./images/common/bg_dark_sp.jpg) center top repeat-y;
  }
}

.bg_pat_light {
  background: url(./images/common/bg_light.png) center top repeat-y;
  background-size: 2000px 4849px;
}
@media screen and (max-width: 480px) {
  .bg_pat_light {
    background: url(./images/common/bg_light_sp.png) center top repeat-y;
  }
}

.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-slide {
  height: auto !important;
}

.slider_controls {
  position: relative;
}
.slider_controls .slide_m_prev,
.slider_controls .slide_m_next {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  width: 18px;
  height: 35px;
  display: inline-block;
  cursor: pointer;
}
.slider_controls .slide_m_prev {
  background: url(./images/common/btn_slider_prev01.svg) center center no-repeat;
  background-size: cover;
}
.slider_controls .slide_m_next {
  background: url(./images/common/btn_slider_next01.svg) center center no-repeat;
  background-size: cover;
}
.slider_controls.dark .slide_m_prev {
  background: url(./images/common/btn_slider_prev02.svg) center center no-repeat;
  background-size: cover;
}
.slider_controls.dark .slide_m_next {
  background: url(./images/common/btn_slider_next02.svg) center center no-repeat;
  background-size: cover;
}
.slider_controls .slide_m_dots {
  display: inline-block;
  vertical-align: top;
  padding: 0 25px;
}
.slider_controls .slide_m_dots .slick-dots {
  position: static;
}
.slider_controls .slide_m_dots .slick-dots li {
  width: 11px;
  height: 11px;
  margin: 12px 10px;
}
.slider_controls .slide_m_dots .slick-dots li button::before {
  font-size: 11px;
  line-height: 11px;
  width: 11px;
  height: 11px;
  opacity: 1;
  color: #c4cdcd;
}
.slider_controls .slide_m_dots .slick-dots li.slick-active button::before {
  opacity: 1;
  color: #899c9b;
}

/***********************
Page
***********************/
.sec_pageHeader {
  min-height: 424px;
}
.sec_pageHeader img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 424px;
}
.sec_pageHeader img.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec_pageHeader img.pc {
    display: none;
  }
  .sec_pageHeader img.sp {
    display: block;
  }
}

.sec_page_first {
  position: relative;
  padding-top: 96px;
}
.sec_page_first::before {
  content: "";
  display: block;
  width: 423px;
  height: 357px;
  background: url(./images/common/bg_page_logo.svg) center center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-495px);
          transform: translateX(-495px);
}
@media screen and (max-width: 768px) {
  .sec_page_first::before {
    width: 212px;
    height: 179px;
    -webkit-transform: translateX(-248px);
            transform: translateX(-248px);
  }
}

.page_head {
  margin-bottom: 96px;
}
.page_head .head {
  width: 33.3%;
}
.page_head .info {
  width: 66.7%;
}
@media screen and (max-width: 768px) {
  .page_head {
    margin-bottom: 48px;
  }
  .page_head .head,
  .page_head .info {
    width: 100%;
  }
  .page_head .head {
    margin-bottom: 24px;
  }
}

.page_nav {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page_nav {
    width: 80%;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 480px) {
  .page_nav {
    width: 320px;
  }
}
.page_nav .flex {
  display: block;
}
.page_nav .box {
  text-align: left;
}
@media screen and (max-width: 480px) {
  .page_nav .box img {
    display: none;
  }
}
.page_nav .col3 .box {
  width: 32%;
  margin: 0 auto 1%;
  margin-right: 1%;
  display: inline-block;
  vertical-align: top;
}
.page_nav .col3 .box:nth-child(3n) {
  margin-right: 0;
}
.page_nav .col3 .box .btn {
  width: 100%;
}
.page_nav .col3 .box:nth-child(n+4) {
  margin-top: 2%;
}
@media screen and (max-width: 768px) {
  .page_nav .col3 .box {
    width: 48%;
    margin-bottom: 1%;
  }
  .page_nav .col3 .box:nth-child(2n) {
    margin-right: auto;
  }
  .page_nav .col3 .box:nth-child(3n) {
    margin-right: 1%;
  }
  .page_nav .col3 .box:nth-child(n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .page_nav .col3 .box {
    width: 100%;
    margin: 0 auto 16px;
    display: block;
  }
  .page_nav .col3 .box:nth-child(3n) {
    margin-right: auto;
  }
  .page_nav .col3 .box:nth-child(n+4) {
    margin-top: 2%;
  }
}
.page_nav .col4 .box {
  width: 24%;
  margin: 0 auto;
  margin-right: 1%;
  display: inline-block;
  vertical-align: top;
}
.page_nav .col4 .box:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .page_nav .col4 .box {
    width: 48%;
    margin-bottom: 1%;
  }
  .page_nav .col4 .box:nth-child(2n) {
    margin-right: auto;
  }
  .page_nav .col4 .box:nth-child(3n) {
    margin-right: 1%;
  }
  .page_nav .col4 .box:nth-child(4n) {
    margin-right: 1%;
  }
}
@media screen and (max-width: 480px) {
  .page_nav .col4 .box {
    width: 100%;
    margin: 0 auto 16px;
  }
  .page_nav .col4:nth-child(2n), .page_nav .col4:nth-child(3n), .page_nav .col4:nth-child(4n) {
    margin-right: auto;
  }
}
.page_nav .single_nav {
  margin-top: 32px;
  text-align: center;
}

.page_sec_head {
  background: url(./images/common/bg_header_logo.svg) center center no-repeat;
  background-size: 113px 114px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*height: 114px;*/
  min-height: 114px;
}
.page_sec_head .page_sec_ttl {
  width: 100%;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  line-height: 1.5;
}
.page_sec_head .page_sec_ttl .min {
  font-size: 24px;
}
.page_sec_head .page_sec_ttl .sub {
  font-size: 20px;
  padding-top: 15px;
}
@media screen and (max-width: 1024px) {
  .page_sec_head .page_sec_ttl {
    font-size: 26px;
    line-height: 1.75;
  }
  .page_sec_head .page_sec_ttl .min {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  .page_sec_head .page_sec_ttl .min {
    display: block;
    padding-top: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .page_sec_head .page_sec_ttl .sub {
    font-size: 18px;
  }
}
.page_sec_head.non_bg {
  background: none;
  padding: 0;
  padding: 0 0 45px;
}
.page_sec_head.sub {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  .page_sec_head.sub {
    height: auto;
  }
}
.page_sec_head + .for_head {
  text-align: center;
  padding-top: 10px;
  margin-bottom: 56px;
}
@media screen and (max-width: 480px) {
  .page_sec_head + .for_head {
    padding: 10px 5.3%;
    margin-bottom: 28px;
    text-align: left;
  }
}

.blc_pat_main_col {
  position: relative;
  padding: 145px 0 150px;
}
@media screen and (max-width: 1024px) {
  .blc_pat_main_col {
    padding: 72px 0 150px;
  }
}
.blc_pat_main_col .txt_info {
  width: 50%;
  padding-right: 6.4%;
}
.blc_pat_main_col .txt_info .el_sec_ttl_en {
  padding-top: 16px;
}
.blc_pat_main_col .txt_info .el_desc {
  padding-top: 70px;
}
@media screen and (max-width: 1024px) {
  .blc_pat_main_col .txt_info {
    width: 100%;
    padding-right: 0;
  }
  .blc_pat_main_col .txt_info .el_sec_ttl_en {
    padding-top: 16px;
  }
  .blc_pat_main_col .txt_info .el_desc {
    padding-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  .blc_pat_main_col .txt_info .blc_ttl br {
    display: none;
  }
}
.blc_pat_main_col .imgs {
  position: absolute;
  top: 60px;
  left: 50%;
  width: 1000px;
}
@media screen and (max-width: 1024px) {
  .blc_pat_main_col .imgs {
    position: static;
    padding: 30px 0 46px;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .blc_pat_main_col .imgs {
    position: absolute;
    padding: 30px 0 46px;
    width: 100%;
    top: inherit;
    left: 0;
    bottom: -80vw;
  }
}
.blc_pat_main_col .imgs .img {
  width: 48.9%;
  float: left;
}
.blc_pat_main_col .imgs .img:nth-child(1) {
  margin-right: 2.2%;
}
.blc_pat_main_col .imgs .img:nth-child(odd) {
  position: relative;
  top: 150px;
}
@media screen and (max-width: 1024px) {
  .blc_pat_main_col .imgs .img:nth-child(odd) {
    top: 40px;
  }
}

.blc_pat_col {
  position: relative;
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
  .blc_pat_col {
    margin-bottom: 32px;
  }
}
.blc_pat_col .txt_info {
  width: 50%;
  padding-left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blc_pat_col .txt_info .blc_ttl {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .blc_pat_col .txt_info {
    width: 100%;
    padding-left: 0;
  }
}
.blc_pat_col .img {
  width: 59.2%;
  margin-left: -9.2%;
}
.blc_pat_col .img.wide {
  width: 50%;
  margin-left: 0;
}
.blc_pat_col .img.wide img {
  width: 50vw;
  margin-left: calc(100% - 50vw);
}
@media screen and (max-width: 1024px) {
  .blc_pat_col .img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .blc_pat_col .img.wide {
    width: 100%;
  }
  .blc_pat_col .img.wide img {
    width: 100%;
    margin-left: 0;
  }
}
.blc_pat_col.reverse .txt_info {
  padding-left: 0;
  padding-right: 5%;
}
@media screen and (max-width: 1024px) {
  .blc_pat_col.reverse .txt_info {
    padding-right: 0;
  }
}
.blc_pat_col.reverse .img {
  width: 59.2%;
  margin-left: 0;
  margin-right: -9.2%;
}
@media screen and (max-width: 1024px) {
  .blc_pat_col.reverse .img {
    width: 100%;
    margin-right: 0;
  }
}

.blc_pat_single {
  position: relative;
  margin-bottom: 64px;
}
.blc_pat_single .txt_info .el_desc {
  padding-top: 10px;
}
.blc_pat_single .txt_info .border_box {
  margin: 40px 0 15px;
}
.blc_pat_single .txt_info .border_box .el_desc {
  padding: 0;
}
.blc_pat_single .txt_info .border_box .el_desc .price {
  font-size: 24px;
  margin-left: 2em;
}
@media screen and (max-width: 1024px) {
  .blc_pat_single .txt_info .border_box .el_desc .price {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .blc_pat_single .txt_info .border_box .el_desc .price {
    margin-left: 0.5em;
  }
}
.blc_pat_single .txt_info .border_box .el_desc .tax {
  font-size: 18px;
  margin-right: 1em;
}
@media screen and (max-width: 1024px) {
  .blc_pat_single .txt_info .border_box .el_desc .tax {
    font-size: 16px;
    margin-right: 0;
  }
  .blc_pat_single .txt_info .border_box .el_desc .tax::after {
    content: "";
    display: block;
  }
}
.blc_pat_single .link_info {
  padding-top: 50px;
}
.blc_pat_single .link_info.c {
  text-align: center;
}

.ly_inner .link_info.c {
  text-align: center;
}

.blc_pat_single .link_info.c .btn {
  text-align: left;
}
.blc_pat_single .link_info .btn {
  width: 320px;
}

.sec_page {
  padding: 50px 0 96px;
}
@media screen and (max-width: 1024px) {
  .sec_page {
    padding: 25px 0 48px;
  }
}

.sec_page_last {
  padding-bottom: 256px;
}
@media screen and (max-width: 1024px) {
  .sec_page_last {
    padding-bottom: 128px;
  }
}

.wide_slider .slick-slide {
  opacity: 0.4;
}
.wide_slider .slick-slide.slick-current {
  opacity: 1;
}
.wide_slider .slide {
  position: relative;
}
@media screen and (max-width: 480px) {
  .wide_slider .slide {
    overflow: hidden;
  }
  .wide_slider .slide img {
    width: auto;
    height: 80vw;
    -o-object-fit: cover;
       object-fit: cover;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
  }
}
.wide_slider .slide .name {
  position: absolute;
  left: 100px;
  bottom: 37px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .wide_slider .slide .name {
    bottom: 4.4vw;
    left: 4.4vw;
  }
}
.wide_slider .slide .name .ja {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.28em;
  margin-bottom: 15px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .wide_slider .slide .name .ja {
    font-size: 22px;
  }
}
.wide_slider .slide .name .en {
  font-size: 20px;
  letter-spacing: 0.2em;
  display: block;
}
@media screen and (max-width: 1024px) {
  .wide_slider .slide .name .en {
    font-size: 18px;
  }
}
.wide_slider .slider_controls {
  padding-top: 32px;
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
  .wide_slider .slider_controls {
    padding-top: 16px;
  }
}

.bg_white {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px 40px;
}
.bg_white.ly_inner {
  padding: 56px 100px;
}

.bg_white02 {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px 40px;
}

.bg_white02.ly_inner {
  padding: 56px 100px;
}

@media screen and (max-width: 1024px) {
  .bg_white.ly_inner {
    padding: 28px 5.3%;
    max-width: 90%;
  }
	
  .bg_white02.ly_inner {
    padding: 28px 5.3%;
    max-width: 90%;
  }
}

.info_ttl {
  font-size: 24px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .info_ttl {
    font-size: 20px;
    text-align: left;
    text-indent: 0;
    line-height: 1.75;
  }
}

.col_conts {
  margin-bottom: -45px;
}
@media screen and (max-width: 1024px) {
  .col_conts {
    margin-bottom: -22px;
  }
}
.col_conts .col {
  width: 30.3%;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .col_conts .col {
    width: 100%;
    margin-bottom: 22px;
  }
}
.col_conts .col .head {
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  min-height: 100px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.col_conts .col .head p {
  width: 100%;
}
.col_conts .col .info {
  padding-top: 20px;
}
.col_conts .col .info .ttl {
  font-size: 24px;
  line-height: 1.66;
  margin-bottom: 20px;
  letter-spacing: 0.24em;
}
.col_conts .col .info .el_desc .min {
  font-size: 20px;
}
.col_conts.col4 .col {
  width: 23.5%;
}
@media screen and (max-width: 768px) {
  .col_conts.col4 .col {
    width: 100%;
  }
}
.col_conts.col4 .col .info {
  padding-top: 12px;
}
.col_conts.col4 .col .info .el_desc {
  line-height: 1.75;
}
.col_conts.col2 .col {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .col_conts.col2 .col {
    width: 100%;
  }
}
.col_conts.col2 .col .blc_ttl {
  text-align: center;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  margin-bottom: 10px;
}
.col_conts.col2_connect {
  margin-bottom: 50px;
}
.col_conts.col2_connect .col {
  width: 50%;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .col_conts.col2_connect .col {
    width: 100%;
  }
}
.col_conts.col2_connect .col .img {
  width: 640px;
  margin-bottom: 25px;
}
@media screen and (max-width: 1280px) {
  .col_conts.col2_connect .col .img {
    width: 50vw;
  }
}
@media screen and (max-width: 1024px) {
  .col_conts.col2_connect .col .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.col_conts.col2_connect .col .info {
  padding-right: 5.5%;
  padding-top: 0;
}
@media screen and (max-width: 1280px) {
  .col_conts.col2_connect .col .info {
    padding-right: 0;
  }
}
.col_conts.col2_connect .col .info .el_desc {
  padding-top: 10px;
}
@media screen and (max-width: 1024px) {
  .col_conts.col2_connect .col .info .el_desc {
    margin-bottom: 20px;
  }
}
.col_conts.col2_connect .col:nth-child(1) .img {
  margin-left: -100px;
}
@media screen and (max-width: 1280px) {
  .col_conts.col2_connect .col:nth-child(1) .img {
    margin-left: -18.5%;
    padding-right: 2.7%;
  }
}
@media screen and (max-width: 1024px) {
  .col_conts.col2_connect .col:nth-child(1) .img {
    margin-left: 0;
    padding-right: 0;
  }
}
.col_conts.col2_connect .col:nth-child(2) .info {
  padding-right: 0;
  padding-left: 5.5%;
}
@media screen and (max-width: 1024px) {
  .col_conts.col2_connect .col:nth-child(2) .info {
    padding-left: 0;
  }
}

.cmn_tbl {
  width: 100%;
  border-top: solid 1px #c5c5c5;
}
.cmn_tbl th,
.cmn_tbl td {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  padding: 15px 0 20px;
  border-bottom: solid 1px #c5c5c5;
  padding-left: 40px;
  text-align: left;
  word-wrap: break-word;
  word-break: break-all;
}
.cmn_tbl th {
  width: 30%;
}

.cmn_tbl02 {
  width: 100%;
  border-top: solid 1px #c5c5c5;
}
.cmn_tbl02 th,
.cmn_tbl02 td {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  padding: 15px 0 20px;
  border-bottom: solid 1px #c5c5c5;
  padding-left: 40px;
  text-align: left;
  word-wrap: break-word;
  word-break: break-all;
}
.cmn_tbl02 th {
  width: 30%;
}


@media screen and (max-width: 768px) {
  .cmn_tbl th,
  .cmn_tbl td {
    font-size: 18px;
    width: 100%;
    display: block;
    padding: 10px 20px 15px;
  }
  .cmn_tbl th {
    font-weight: 400;
    background: rgba(255, 255, 255, 0.8);
  }
  .cmn_tbl02 th,
  .cmn_tbl02 td {
    font-size: 18px;
    width: 100%;
    display: block;
    padding: 10px 20px 15px;
  }
  .cmn_tbl02 th {
    font-weight: 400;
    background: rgb(234 237 237);
  }
	
}
.cmn_tbl .sp {
  display: none;
}

.cmn_tbl02 .sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .cmn_tbl .sp {
    display: block;
  }
.cmn_tbl02 .sp {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .cmn_tbl .both {
    display: block !important;
  }
  .cmn_tbl02 .both {
    display: block !important;
  }
}

.link_box {
  text-align: center;
  padding-top: 60px;
}
.link_box .btn {
  text-align: left;
  text-indent: 0;
  margin: 0 12px;
}
@media screen and (max-width: 1024px) {
  .link_box .btn {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .link_box .btn {
    margin-bottom: 24px;
  }
}

.border_box {
  border-top: solid 1px #c5c5c5;
  border-bottom: solid 1px #c5c5c5;
  padding: 15px 0;
  text-align: center;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
}
.border_box .el_desc {
  padding: 0;
}

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

.post_page_nav {
  border-top: solid 1px #c4c4c4;
  border-bottom: solid 1px #c4c4c4;
  padding: 10px 5px;
  margin-bottom: 96px;
  text-align: center;
}
.post_page_nav .back_link {
  font-size: 20px;
  padding: 5px 30px;
  text-align: center;
  display: inline-block;
  background: rgba(170, 170, 170, 0.5);
}
@media screen and (max-width: 480px) {
  .post_page_nav .back_link {
    padding: 5px 15px;
  }
}
.post_page_nav .prev_link,
.post_page_nav .next_link {
  vertical-align: middle;
  letter-spacing: 0.3em;
  position: relative;
  display: inline-block;
  font-size: 18px;
  margin-top: 5px;
}
.post_page_nav .prev_link {
  padding-left: 30px;
  float: left;
}
.post_page_nav .prev_link::before {
  content: "";
  display: block;
  width: 21px;
  height: 17px;
  background: url(./images/news/ico_arw_list_page_nav.svg) center center no-repeat;
  background-size: 21px 17px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
  top: 0;
  left: 0;
}
.post_page_nav .next_link {
  padding-right: 30px;
  float: right;
}
.post_page_nav .next_link::before {
  content: "";
  display: block;
  width: 21px;
  height: 17px;
  background: url(./images/news/ico_arw_list_page_nav.svg) center center no-repeat;
  background-size: 21px 17px;
  position: absolute;
  top: 0;
  right: 0;
}

.msg_stop {
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #fff;
  background: #a0272d;
  padding: 0 10px;
  display: inline-block;
  line-height: 1.75;
}

.ani_group .ani_g_obj,
.ani_obj {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.ani_group .ani_g_obj.active,
.ani_obj.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.nowrap {
  white-space: nowrap;
}

/***********************
Header
***********************/
#ly_header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9000;
  pointer-events: none;
}
#ly_header .ly_header_inner {
  flex-wrap: nowrap;
}
@media screen and (max-width: 1023px) {
  #ly_header {
    z-index: 10000;
  }
  #ly_header .bl_menu {
    display: none;
  }
  #ly_header .bl_menu.active {
    display: block;
  }
  #ly_header .bl_menu.active .close {
    display: block;
  }
  #ly_header .bl_menu.active .sp_logo {
    display: block;
  }
}
#ly_header .logo {
  padding: 50px 62px;
  width: 238px;
  height: 434px;
  pointer-events: auto;
}
#ly_header .logo a {
  background: url(./images/common/logo_header01.png) center center no-repeat;
  background-size: 100%;
  display: block;
  width: 114px;
  height: 0;
	padding-top: 334px;
	overflow: hidden;
}
@media screen and (max-width: 1023px) {
  #ly_header .logo {
    padding: 30px 5.3%;
    width: 83px;
    height: 245px;
  }
  #ly_header .logo a {
    width: 83px;
    height: 245px;
  }
}
#ly_header .close {
  display: none;
}
#ly_header .sp_logo {
  display: none;
}
#ly_header .bl_menu {
  padding-top: 27px;
  padding-right: 40px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  #ly_header .bl_menu {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  #ly_header .bl_menu {
    width: 100%;
    position: fixed;
    top: -200vh;
    right: inherit;
    left: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background: rgba(255, 255, 255, 0.8);
    height: 100vh;
    z-index: 9998;
  }
  #ly_header .bl_menu.active .bl_menu {
    top: 0;
  }
}
#ly_header .bl_menu .bl_hNav {
  width: 100%;
  margin-bottom: 50px;
  margin-left: auto;
  max-width: 1200px;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1023px) {
  #ly_header .bl_menu .bl_hNav {
    flex-wrap: wrap;
  }
}
#ly_header .bl_menu .bl_hNav li {
  /*padding-left: 40px;*/
}
@media screen and (max-width: 1370px) {
  #ly_header .bl_menu .bl_hNav li {
    /*padding-left: 20px;*/
  }
}
#ly_header .bl_menu .bl_hNav li:nth-child(1) {
  /*padding-left: 0;*/
}
#ly_header .bl_menu .bl_hNav li a {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-indent: -0.08em;
  color: #fff;
  position: relative;
  pointer-events: auto;
}
@media screen and (max-width: 1370px) {
  #ly_header .bl_menu .bl_hNav li a {
    font-size: 16px;
  }
}
#ly_header .bl_menu .bl_hNav li a:hover::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 10px;
  background: #899c9b;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  #ly_header .bl_menu .bl_hNav li a:hover::after {
    display: none;
  }
}
#ly_header .bl_menu .info {
  display: none;
}
#ly_header .bl_menu .outside_link {
  text-align: right;
}
#ly_header .bl_menu .outside_link .head {
  display: none;
}
#ly_header .bl_menu .outside_link .btn {
  width: 280px;
  margin-left: 15px;
  text-align: left;
  pointer-events: auto;
}
@media screen and (max-width: 1023px) {
  #ly_header .bl_menu.sp_nav {
    pointer-events: auto;
    background: #fff url(./images/common/bg_light_sp.png) center top no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    display: block;
    padding: 0 !important;
    height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #ly_header .bl_menu.sp_nav .inner {
    padding: 20px 5.3% 48px;
  }
  #ly_header .bl_menu.sp_nav.active {
    top: 0;
    overflow: scroll;
    height: 100vh;
  }
  #ly_header .bl_menu.sp_nav.active .close {
    z-index: 10001;
  }
  #ly_header .bl_menu.sp_nav .close {
    position: absolute;
    top: 20px;
    right: 5.3%;
    font-size: 13px;
    width: 42px;
    color: #000;
    text-align: center;
    z-index: 9999;
    display: block;
    pointer-events: auto;
  }
  #ly_header .bl_menu.sp_nav .close .ico {
    display: inline-block;
    margin-bottom: 5px;
  }
  #ly_header .bl_menu.sp_nav .sp_logo {
    width: 56px;
    margin-bottom: 7px;
    display: block;
    pointer-events: auto;
  }
  #ly_header .bl_menu.sp_nav .bl_hNav {
    margin-bottom: 32px;
  }
  #ly_header .bl_menu.sp_nav .bl_hNav li {
    width: 47.6%;
    border-bottom: solid 1px #899c9b;
    padding-left: 0;
  }
  #ly_header .bl_menu.sp_nav .bl_hNav li a {
    display: block;
    color: #000;
    padding: 25px 15px;
    text-align: left;
    text-indent: 0;
  }
  #ly_header .bl_menu.sp_nav .info {
    text-align: center;
    display: block;
  }
  #ly_header .bl_menu.sp_nav .info .contact {
    letter-spacing: 0.08em;
    text-indent: -0.08em;
    font-size: 19px;
    line-height: 2;
	margin-bottom: 10px;
  }
  #ly_header .bl_menu.sp_nav .info .contact .tel {
    font-size: 32px;
  }
  #ly_header .bl_menu.sp_nav .info .desc {
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0.08em;
    text-indent: -0.08em;
  }
}
@media screen and (max-width: 1023px) and (max-width: 480px) {
  #ly_header .bl_menu.sp_nav .info .desc {
    text-indent: 0;
    text-align: left;
  }
}
@media screen and (max-width: 1023px) {
  #ly_header .bl_menu.sp_nav .outside_link {
    background: #fff;
    max-width: 335px;
    margin: 30px auto 0;
    height: auto;
    position: static;
  }
  #ly_header .bl_menu.sp_nav .outside_link .head {
    background: #b03725;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 77px;
    width: 100%;
    text-align: center;
  }
  #ly_header .bl_menu.sp_nav .outside_link .head::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 40px 0 40px;
    border-color: #b03725 transparent transparent transparent;
    top: inherit;
    bottom: -11px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #ly_header .bl_menu.sp_nav .outside_link span {
    position: absolute;
    top: 16px;
    width: 27px;
    height: 50px;
    display: block;
  }
  #ly_header .bl_menu.sp_nav .outside_link span.left {
    left: 20px;
  }
  #ly_header .bl_menu.sp_nav .outside_link span.right {
    right: 20px;
  }
  #ly_header .bl_menu.sp_nav .outside_link .txt {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.7;
    letter-spacing: 0.28em;
    text-indent: -0.28em;
    width: 100%;
    padding: 0;
    padding-left: 10px;
  }
  #ly_header .bl_menu.sp_nav .outside_link .links {
    padding: 25px;
    width: calc(100% - 367px);
  }
}
@media screen and (max-width: 1023px) and (max-width: 1080px) {
  #ly_header .bl_menu.sp_nav .outside_link .links {
    width: calc(100% - 345px);
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  #ly_header .bl_menu.sp_nav .outside_link .links {
    width: 100%;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 1023px) {
  #ly_header .bl_menu.sp_nav .outside_link .links .btn {
    width: 48.3%;
    padding: 26px;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1080px) {
  #ly_header .bl_menu.sp_nav .outside_link .links .btn {
    font-size: 18px;
    margin-left: 0;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  #ly_header .bl_menu.sp_nav .outside_link .links .btn {
    width: 100%;
  }
  #ly_header .bl_menu.sp_nav .outside_link .links .btn .ico {
    position: static;
    display: inline-block;
    height: auto;
  }
}
@media screen and (max-width: 1023px) {
  #ly_header .bl_menu.sp_nav .outside_link .links .btn.btn_pat-1 {
    margin-right: 3.3%;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  #ly_header .bl_menu.sp_nav .outside_link .links .btn.btn_pat-1 {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1023px) {
  #ly_header .bl_menu.sp_nav .outside_link .links .btn.btn_pat-1, #ly_header .bl_menu.sp_nav .outside_link .links .btn.btn_pat-2 {
    display: block;
  }
  #ly_header .bl_menu.sp_nav .outside_link .links .btn.btn_pat-1::after, #ly_header .bl_menu.sp_nav .outside_link .links .btn.btn_pat-2::after {
    top: 25px;
    right: 25px;
  }
}
#ly_header.fix_ready {
  position: fixed;
  top: -434px;
  -webkit-transition: 0s;
  transition: 0s;
}
@media screen and (max-width: 1023px) {
  #ly_header.fix_ready {
    position: absolute;
    top: 0;
    left: 0;
  }
}
#ly_header.fixed {
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#ly_header.fixed::before {
  content: "";
  width: 100%;
  height: 64px;
  background: #21363d;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1023px) {
  #ly_header.fixed::before {
    display: none;
  }
}
#ly_header.fixed .logo {
  width: 120px;
  height: 216px;
  -webkit-box-shadow: 2px 2px 3px 0px #666;
          box-shadow: 2px 2px 3px 0px #666;
  background: #fff;
  padding: 0;
  position: relative;
  z-index: 9001;
}
#ly_header.fixed .logo a {
  background: url(./images/common/logo_header02.png) top 20px center no-repeat;
  background-size: 61px 180px;
  display: block;
  width: 120px;
  height: 216px;
}
#ly_header.fixed .bl_menu {
  padding-top: 20px;
  padding-right: 220px;
}
@media screen and (max-width: 1370px) {
  #ly_header.fixed .bl_menu {
    padding-top: 22px;
    padding-right: 180px;
    padding-left: 15px;
  }
}
#ly_header.fixed .outside_link {
  position: fixed;
  top: 8px;
  right: 16px;
}
#ly_header.fixed .outside_link .btn {
  width: 176px;
  margin-left: 0;
  text-align: left;
  padding: 15px 20px;
}
@media screen and (max-width: 1370px) {
  #ly_header.fixed .outside_link .btn {
    font-size: 16px;
    width: 140px;
    padding: 15px;
  }
}
#ly_header.fixed .outside_link .btn::after {
  top: 15px;
}
#ly_header.fixed .outside_link .btn .ico {
  display: none;
}
#ly_header.fixed .outside_link .btn_pat-2 {
  display: none;
}

/* CSS Document */
/***********************
Footer
***********************/
#ly_footer {
  background: url(./images/common/bg_footer.jpg) center top no-repeat;
  background-size: cover;
  padding: 136px 0 228px;
}
@media screen and (max-width: 1024px) {
  #ly_footer {
    background: url(./images/common/bg_footer_sp.jpg) center top no-repeat;
    background-size: cover;
    padding: 48px 0 130px;
  }
}
#ly_footer .logo_blc {
  margin-bottom: 65px;
}
@media screen and (max-width: 1024px) {
  #ly_footer .logo_blc {
    margin-bottom: 48px;
  }
}
#ly_footer .logo_blc .logo {
  width: 118px;
  height: 346px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #ly_footer .logo_blc .logo {
    width: 97px;
    height: 285px;
  }
}
#ly_footer .info {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  #ly_footer .info {
    margin-bottom: 22px;
  }
}
#ly_footer .info .addrs {
  width: 44.4%;
}
@media screen and (max-width: 1024px) {
  #ly_footer .info .addrs {
    width: 100%;
    max-width: 335px;
    margin: 0 auto;
  }
}
#ly_footer .info .addrs .min {
  font-size: 18px;
}
#ly_footer .info .addrs .tel {
  font-size: 32px;
  line-height: 1.8;
  vertical-align: sub;
}
#ly_footer .info .f_nav {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  #ly_footer .info .f_nav {
    display: none;
  }
}
#ly_footer .info .f_nav li {
  margin-bottom: 20px;
}
#ly_footer .info .f_nav li:nth-child(3n+1) {
  /*width: 29%;*/
  width: calc(100% / 3);
}
#ly_footer .info .f_nav li:nth-child(3n+2) {
  /*width: 45%;*/
  width: calc(100% / 3);
}
#ly_footer .info .f_nav li:nth-child(3n+3) {
  /*width: 26%;*/
  width: calc(100% / 3);
}
#ly_footer .info .f_nav li a {
  font-size: 20px;
  line-height: 2.4;
}
#ly_footer .outside_link {
  margin-bottom: 68px;
  background: #fff;
  height: 120px;
}
@media screen and (max-width: 1024px) {
  #ly_footer .outside_link {
    max-width: 335px;
    margin: 0 auto 48px;
    height: auto;
  }
}
#ly_footer .outside_link .head {
  background: #b03725;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 120px;
}
@media screen and (max-width: 1024px) {
  #ly_footer .outside_link .head {
    height: 88px;
    width: 100%;
    text-align: center;
  }
}
#ly_footer .outside_link .head::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 0 60px 17px;
  border-color: transparent transparent transparent #b03725;
  position: absolute;
  top: 0;
  right: -17px;
}
@media screen and (max-width: 1024px) {
  #ly_footer .outside_link .head::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 40px 0 40px;
    border-color: #b03725 transparent transparent transparent;
    top: inherit;
    bottom: -11px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    right: inherit;
  }
}
#ly_footer .outside_link .head span {
  position: absolute;
  top: 16px;
  width: 51px;
  height: 92px;
  display: block;
}
@media screen and (max-width: 1024px) {
  #ly_footer .outside_link .head span {
    width: 27px;
    height: 50px;
  }
}
#ly_footer .outside_link .head span.left {
  left: 22px;
}
@media screen and (max-width: 1024px) {
  #ly_footer .outside_link .head span.left {
    left: 20px;
  }
}
#ly_footer .outside_link .head span.right {
  right: 12px;
}
@media screen and (max-width: 1024px) {
  #ly_footer .outside_link .head span.right {
    right: 20px;
  }
}
#ly_footer .outside_link .head .txt {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.28em;
  text-indent: -0.28em;
  padding-left: 70px;
  padding-right: 50px;
}
@media screen and (max-width: 1080px) {
  #ly_footer .outside_link .head .txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #ly_footer .outside_link .head .txt {
    font-size: 20px;
    width: 100%;
    padding: 0;
    padding-left: 10px;
  }
}
#ly_footer .outside_link .links {
  padding: 25px;
  width: calc(100% - 367px);
}
@media screen and (max-width: 1080px) {
  #ly_footer .outside_link .links {
    width: calc(100% - 345px);
  }
}
@media screen and (max-width: 1024px) {
  #ly_footer .outside_link .links {
    width: 100%;
    padding: 30px 20px;
  }
}
#ly_footer .outside_link .links .btn {
  width: 48.3%;
  padding: 22px;
}
@media screen and (max-width: 1080px) {
  #ly_footer .outside_link .links .btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #ly_footer .outside_link .links .btn {
    width: 100%;
  }
}
#ly_footer .outside_link .links .btn.btn_pat-1 {
  margin-right: 3.3%;
}
@media screen and (max-width: 1024px) {
  #ly_footer .outside_link .links .btn.btn_pat-1 {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
#ly_footer .outside_link .links .btn.btn_pat-1::after, #ly_footer .outside_link .links .btn.btn_pat-2::after {
  top: 25px;
  right: 25px;
}

.un_Copyright {
  text-align: center;
  letter-spacing: 0.18em;
  text-indent: -0.18em;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .un_Copyright {
    font-size: 18px;
    line-height: 2.22;
  }
}

.pagetop {
  position: fixed;
  bottom: 118px;
  right: 16px;
  z-index: 9999;
}
@media screen and (max-width: 1024px) {
  .pagetop {
    width: 56px;
    height: 56px;
    bottom: 76px;
    right: 11px;
  }
}

.sp_nav_links {
  display: none;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .sp_nav_links {
    display: block;
    height: auto;
    width: 100%;
    height: 60px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9998;
    background: #21363d;
    border-top: solid 1px #899c9b;
  }
  .sp_nav_links a {
    display: block;
    position: relative;
    height: 60px;
    color: #fff;
    font-size: 16px;
    padding-top: 17px;
    text-align: center;
    width: 25%;
  }
  .sp_nav_links a.access{
    font-size: 15px;
    padding-top: 8px;
    line-height: 1.4;
  }
  .sp_nav_links a.access:before{
    content: "";
    display: inline-block;
    background: url(./images/common/ico_tel.svg) no-repeat center center;
    background-size: contain;
    width: 15px;
    height: 19px;
    margin-right: 3px;
    vertical-align: bottom;
  }
  .sp_nav_links a .ico {
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .sp_nav_links a.access .ico {
    top: 8px;
    width: 12px;
  }
  .sp_nav_links a.reserve {
    width: 50%;
    background: #dfcfc2;
    border-left: solid 1px #899c9b;
    border-right: solid 1px #899c9b;
    color: #000;
  }
  .sp_nav_links a.reserve .ico {
    top: 9px;
    width: 18px;
  }
  .sp_nav_links a.nav .ico {
    top: 12px;
    width: 25px;
  }
}

.new_bnr {
  position: fixed;
  bottom: 64px;
  z-index: 10;
  @media screen and (min-width:1000px) {
    display: none;
  }
}
.new_bnr .bnr {
  width: 100%;
}

/***********************
宿シス
***********************/
.form_panel {
  /*width: 1000px;*/
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 8000;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .form_panel {
    position: static;
    width: auto;
    padding: 28px 5.3% 32px;
  }
  .form_panel .main_reserv_wrapper {
    margin: 0 auto;
    border: solid 1px #899c9b;
    display: block;
  }
  .form_panel.lower {
    display: none;
  }
}
.form_panel .head_blc {
  display: none;
}
.form_panel .head_blc .head_first {
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #fff;
  padding-left: 20px;
  padding-right: 30px;
  background: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
}
.form_panel .head_blc .head_first .ico {
  display: inline-block;
  width: 17px;
  height: 18px;
  margin-right: 10px;
}
@media screen and (max-width: 1023px) {
  .form_panel .head_blc {
    display: block;
  }
  .form_panel .head_blc .head_first {
    display: block;
    line-height: 40px;
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .form_panel .head_blc .head_first .ico {
    vertical-align: middle;
  }
}
.form_panel .head_blc .head_second {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-indent: -0.28em;
  text-align: center;
  padding-left: 29px;
  padding-right: 25px;
  position: relative;
  color: #fff;
  background: #b03725;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
}
.form_panel .head_blc .head_second br {
  display: none;
}
@media screen and (max-width: 1023px) {
  .form_panel .head_blc .head_second {
    height: 64px;
    padding: 10px 0 0;
    width: 100%;
    line-height: 1.4;
    display: block;
  }
  .form_panel .head_blc .head_second br {
    display: block;
  }
}
.form_panel .head_blc .head_second::after {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 0 18px;
  border-color: transparent transparent transparent #b03725;
}
@media screen and (max-width: 1023px) {
  .form_panel .head_blc .head_second::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 40px 0 40px;
    border-color: #b03725 transparent transparent transparent;
    top: inherit;
    bottom: -11px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    right: inherit;
  }
}
.form_panel .head_blc .head_second span {
  display: inline-block;
  width: 19px;
  height: 34px;
  position: absolute;
  top: 3px;
}
@media screen and (max-width: 1023px) {
  .form_panel .head_blc .head_second span {
    width: 22px;
    height: 40px;
    top: 15px;
  }
}
.form_panel .head_blc .head_second span.left {
  left: 6px;
}
@media screen and (max-width: 1023px) {
  .form_panel .head_blc .head_second span.left {
    left: calc(50% - 126px);
  }
}
.form_panel .head_blc .head_second span.right {
  right: 6px;
}
@media screen and (max-width: 1023px) {
  .form_panel .head_blc .head_second span.right {
    left: calc(50% + 104px);
  }
}
.form_panel .btn {
  display: none;
}
@media screen and (max-width: 1023px) {
  .form_panel .btn {
    display: block;
    margin-bottom: 10px;
  }
}

.main_reserv_wrapper {
  display: flex;
  justify-content: end;
}

.main_reserv_form {
  overflow: hidden;/* toggleのため */
  display: flex;
}

.main_reserv_option {
  pointer-events: painted;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 13px 20px;
  /*height: 87px;*/
  box-sizing: inherit;
  gap: 10px;
  border: solid 1px #899c9b;
  background: #fff;
  height: 100%;
  align-items: center;
  /* for open toggle */
  left: 100%;
  transition: left 0.5s ease;
}

.main_reserv_option.--open {
  position: relative;
  left: 0;
}

@media screen and (max-width: 1023px) {
  .main_reserv_option {
    border: none;
    display: block;
    height: auto;
    background: transparent;
    padding: 20px 20px 10px;
    left: 0;
    transition: none;
    width: 100%;
  }
}

/*.main_reserv_option *{
	vertical-align: middle;
}*/
.main_reserv_ttl {
  margin-bottom: 5px;
}

.main_reserv_elem {
  /*margin-right: 1%;*/
}

.main_reserv_elem.first {
  /*width: 32.5%;*/
  /*width: 325px;*/
  /*margin-right: 10px;*/
}
@media screen and (max-width: 1023px) {
  .main_reserv_elem.first {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
}

.center {
  /*display: -webkit-box;*/
  /*display: -ms-flexbox;*/
  /*display: flex;*/
  /*-webkit-box-pack: justify;*/
  /*    -ms-flex-pack: justify;*/
  /*        justify-content: space-between;*/
  display: contents;
}
@media screen and (max-width: 1023px) {
  .center {
    display: flex;
    justify-content: center;
    /*width: 190px;*/
    margin: 0 auto 10px;
  }
}

.main_reserv_elem.second {
  /*width: 7.4%;*/
  /*width: 74px;*/
  /*margin-right: 20px;*/
}

.main_reserv_elem.third {
  /*width: 9.4%;*/
  /*width: 94px;*/
  /*margin-right: 10px;*/
}
@media screen and (max-width: 1023px){
  .main_reserv_elem.third {
    margin-left: 10px;
  }
}
.main_reserv_elem.four {
  /*width: 43.5%;*/
  /*width: 331px;*/
}
@media screen and (max-width: 1023px) {
  .main_reserv_elem.four {
    /*width: 225px;*/
    width: fit-content;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 1023px) {
  .main_reserv_elem.four .main_reserv_ttl {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .main_reserv_elem.four p {
    display: inline-block;
  }
}
.main_reserv_elem.four br {
  display: none;
}
@media screen and (max-width: 1023px) {
  .main_reserv_elem.four br {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  .main_reserv_elem.four .main_reserv_item {
    display: inline-block;
  }
  .main_reserv_elem.four .main_reserv_item select {
    margin-top: 5px;
  }
  .main_reserv_elem.four .main_reserv_item .select_arrow::before,
  .main_reserv_elem.four .main_reserv_item .select_arrow::after {
    top: 25px;
    right: -4px;
  }
  .main_reserv_elem.four .main_reserv_item .select_arrow::after {
    top: 42px;
  }
}

.main_reserv_elem.first select {
  /*width: 27%;*/
}

.main_reserv_elem.second select {
  /*width: 73%;*/
  /*width: 54px;*/
}

.main_reserv_elem.third select {
  /*width: 56%;*/
  /*width: 55px;*/
}

.main_reserv_elem.four select {
  /*width: 13%;*/
  /*width: 55px;*/
}

.main_reserv_elem p {
  white-space: nowrap;
  font-size: 14px;
}

.select_arrow {
  position: relative;
}

.select_arrow::before,
.select_arrow::after {
  position: absolute;
  z-index: 2;
  top: -4px;
  right: 7px;
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-bottom: 8px solid #8c964d;
  pointer-events: none;
}

.select_arrow::after {
  top: 13px;
  border: 5px solid transparent;
  border-top: 8px solid #8c964d;
}

.main_reserv_item select {
  position: relative;
  height: 40px;
  padding: 0 15px 0 5px;
  border: solid 1px #616833;
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  appearance: none;
  /*max-width: 55px;*/
  /* margin-top: 5px; */
}

.main_reserv_item select.reserv_year {
  /*max-width: 90px;*/
}
@media screen and (max-width: 1023px) {
  .main_reserv_item select {
    padding: 0 15px 0 10px;
  }
}

.submit_btn {
  width: 62px;
}
@media screen and (max-width: 1023px) {
  .submit_btn {
    width: 100%;
    margin-bottom: 10px;
    display: block;
  }
}

.submit_btn input {
  outline: none;
  cursor: pointer;
  background: rgba(137, 156, 155, 0.6);
  border: solid 1px rgba(146, 146, 146, 0.5);
  height: 56px;
  line-height: 56px;
  width: 62px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-indent: -0.08em;
  color: #000;
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  .submit_btn input {
    width: 100%;
  }
}

.main_reserv_item_men {
  /*margin-left: 10px;*/
}
@media screen and (max-width: 1023px) {
  .main_reserv_item_men {
    margin-left: 0;
  }
}

.formChange_coution {
  padding: 0 20px 20px;
  font-size: 12px;
  line-height: 1.2;
}

.main_reserv_banner {
  pointer-events: painted;
  cursor: pointer;
  width: 192px;
  transition: opacity 0.3s ease;
}

.main_reserv_banner:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1023px) {
  .main_reserv_banner {
    display: none;
  }
}

/***********************
お知らせ
***********************/
.oshirase {
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.8);
  margin-left: auto;
  margin-bottom: 104px;
  padding: 1.8em 45px 1.8em 1.8em;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.8;
  position: relative;
  pointer-events: painted;
}
.oshirase_title {
  font-weight: bold;
}
.oshirase_close {
  background-color: #ffffff;
  right: 0;
  top: auto;
  bottom: 0;
  width: 40px;
  height: 40px;
  padding: 10px;
  position: absolute;
  cursor: pointer;
}
.oshirase_close::before,
.oshirase_close::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 50%;
  border-bottom: 1px solid #000;
}
.oshirase_close::before {
  transform: translate(50%, 50%) rotate(45deg);
}
.oshirase_close::after {
  transform: translate(50%, 50%) rotate(-45deg);
}
@media screen and (max-width: 1325px) {
  .oshirase_content {
    width: calc(100vw - 526px);
  }
}
@media screen and (max-width: 1023px) {
  .oshirase {
    display: none;
  }
}
/***********************
HOME
***********************/
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15); /* 拡大率 */
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  -webkit-animation: zoomUp 10s linear 0s normal both;
          animation: zoomUp 10s linear 0s normal both;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.sec_home {
  position: relative;
}

.sec_homeHero {
  height: 100vh;
  height: 100svh;
}
@media screen and (max-width: 1024px) {
  .sec_homeHero {
    height: 100vh;
    height: 100svh;
  }
}
.sec_homeHero .js_home_slider {
  height: 100vh;
  height: 100svh;
}
.sec_homeHero .js_home_slider .slick-list {
  height: 100vh;
  height: 100svh;
}
.sec_homeHero .slide {
  position: relative;
  height: 100vh !important;
  height: 100svh !important;
}
@media screen and (max-width: 1024px) {
  .sec_homeHero .slide {
    height: 100vh;
    height: 100svh;
  }
}
.sec_homeHero .slide .txt {
  position: absolute;
  bottom: 345px;
  left: 110px;
  /*-webkit-writing-mode: vertical-rl;*/
  /*    -ms-writing-mode: tb-rl;*/
  /*        writing-mode: vertical-rl;*/
  font-size: 32px;
  font-weight: 500;
  z-index: 1;
  color: #fff;
  letter-spacing: 0.28em;
  /*height: 420px;*/
}
@media screen and (max-width: 1024px) {
  .sec_homeHero .slide .txt {
    bottom: 255px;
    left: 16%;
    font-size: 26px;
    /*height: 333px;*/
    line-height: 1.5;
  }
}
.sec_homeHero .slide .bg {
  overflow: hidden;
  height: 100%;
  min-height: 1000px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .sec_homeHero .slide .bg {
    min-height: 100vh;
  }
}
.sec_homeHero .slide .bg img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
}
.sec_homeHero .slide .bg img.sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_homeHero .slide .bg img.sp {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sec_homeHero .slide .bg img.pc {
    display: none;
  }
}
.sec_homeHero .slick-dots {
  width: 12px;
  left: 45px;
  bottom: initial;
  top: initial;
  bottom: 243px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 1024px) {
  .sec_homeHero .slick-dots {
    left: 5.3%;
    bottom: 150px;
  }
}
.sec_homeHero .slick-dots li {
  width: 11px;
  height: 11px;
  margin: 11px 0;
}
.sec_homeHero .slick-dots li button::before {
  font-size: 11px;
  line-height: 11px;
  width: 11px;
  height: 11px;
  opacity: 1;
  color: #c4cdcd;
}
.sec_homeHero .slick-dots li.slick-active button::before {
  opacity: 1;
  color: #899c9b;
}
.sec_homeHero .scl {
  font-size: 20px;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  left: 45px;
  bottom: 0;
  height: 200px;
  z-index: 2;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .sec_homeHero .scl {
    font-size: 20px;
    left: 5.3%;
    height: 105px;
  }
}
.sec_homeHero .scl a {
  color: #fff;
}
.sec_homeHero .scl::after {
  content: "";
  width: 1px;
  height: 118px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .sec_homeHero .scl::after {
    height: 25px;
  }
}

.sec_homeAbout {
  background: url(./images/home/bg_home_about.jpg) center top no-repeat;
  background-size: 2000px 808px;
  height: 808px;
  padding: 140px 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .sec_homeAbout {
    background: url(./images/home/bg_home_about_sp.jpg) center top no-repeat;
    background-size: cover;
    height: auto;
    padding: 65px 0 20px;
  }
}
.sec_homeAbout::before {
  content: "";
  display: block;
  width: 423px;
  height: 357px;
  background: url(./images/common/bg_page_logo.svg) center center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-718px);
          transform: translateX(-718px);
}
.sec_homeAbout .el_sec_ttl {
  margin-bottom: 34px;
}
.sec_homeAbout .txt_info {
  width: 509px;
}
@media screen and (max-width: 1024px) {
  .sec_homeAbout .txt_info {
    width: 100%;
  }
}
.sec_homeAbout .imgs {
  position: absolute;
  top: 0;
  left: 50%;
  padding-top: 239px;
  width: 1000px;
  padding-left: 64px;
}
@media screen and (max-width: 1024px) {
  .sec_homeAbout .imgs {
    position: static;
    padding-top: 30px;
    padding-left: 5.3%;
    width: 100%;
  }
}
.sec_homeAbout .imgs .img {
  float: left;
}
.sec_homeAbout .imgs .img:nth-child(1) {
  width: 424px;
  margin-right: 64px;
}
@media screen and (max-width: 1024px) {
  .sec_homeAbout .imgs .img:nth-child(1) {
    width: 46.6%;
    margin-right: 4.8%;
  }
}
.sec_homeAbout .imgs .img:nth-child(2) {
  width: 448px;
  padding-top: 168px;
}
@media screen and (max-width: 1024px) {
  .sec_homeAbout .imgs .img:nth-child(2) {
    width: 48.4%;
    padding-top: 0;
    -webkit-transform: translateY(11.6vw);
            transform: translateY(11.6vw);
    position: relative;
    z-index: 2;
  }
}

.sec_homeSpa {
  padding: 70px 0 438px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa {
    padding: 40px 0 48px;
    padding-bottom: 50vw;
  }
}
.sec_homeSpa .head_img {
  width: 1000px;
  position: absolute;
  top: -48px;
  left: calc(50% - 1000px);
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .head_img {
    display: none;
  }
}
.sec_homeSpa .txt_info {
  width: 50%;
  padding-left: 90px;
  margin-left: 50%;
  margin-bottom: 108px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .txt_info {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 15px;
  }
}
.sec_homeSpa .txt_info .el_desc {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .txt_info .el_desc {
    margin-bottom: 22px;
  }
}
.sec_homeSpa .txt_info .img {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .txt_info .img {
    display: block;
    width: calc(100% + 5.3vw);
    margin-left: -5.3vw;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .txt_info .btn {
    margin: 0 auto;
    display: block;
  }
}
.sec_homeSpa .home_spa_info {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info {
    width: 100%;
  }
}
.sec_homeSpa .home_spa_info > .hide {
  display: none;
}
.sec_homeSpa .home_spa_info > .hide br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info > .hide {
    display: block;
    margin-bottom: 20px;
    padding: 0 5.3%;
  }
  .sec_homeSpa .home_spa_info > .hide br {
    display: block;
  }
  .sec_homeSpa .home_spa_info > .hide span {
    background: #899c9b;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.28em;
    padding: 5px 25px;
    margin-right: 25px;
    vertical-align: middle;
  }
}
.sec_homeSpa .home_spa_info .home_spa_slider {
  width: 1252px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info .home_spa_slider {
    width: 100vw;
    margin-bottom: 0;
  }
}
.sec_homeSpa .home_spa_info .home_spa_slider::before {
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info .home_spa_slider::before {
    display: none;
  }
}
.sec_homeSpa .home_spa_info:nth-child(1) {
  padding-right: 14px;
  z-index: 9;
}
.sec_homeSpa .home_spa_info:nth-child(1) .home_spa_slider {
  float: right;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info:nth-child(1) .home_spa_slider {
    float: none;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info:nth-child(1) .home_spa_slider .slick-slide {
    opacity: 0.6;
  }
}
.sec_homeSpa .home_spa_info:nth-child(1) .home_spa_slider .slick-active {
  opacity: 0.4;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info:nth-child(1) .home_spa_slider .slick-active {
    opacity: 1;
  }
}
.sec_homeSpa .home_spa_info:nth-child(1) .slider_controls {
  position: absolute;
  bottom: 20px;
  right: 25px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info:nth-child(1) .slider_controls {
    position: static;
    padding-left: 5.3%;
    padding-top: 16px;
  }
}
.sec_homeSpa .home_spa_info:nth-child(2) {
  padding-left: 14px;
  z-index: 8;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info:nth-child(2) {
    padding-left: 0;
  }
}
.sec_homeSpa .home_spa_info:nth-child(2) .slick-slide {
  opacity: 0.4;
}
.sec_homeSpa .home_spa_info:nth-child(2) .slick-active {
  opacity: 1;
}
.sec_homeSpa .home_spa_info:nth-child(2) .slider_controls {
  position: absolute;
  bottom: 20px;
  left: 25px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info:nth-child(2) .slider_controls {
    position: static;
    padding-left: 5.3%;
    padding-top: 16px;
  }
}
.sec_homeSpa .home_spa_info .js_spa_slider {
  width: 626px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info .js_spa_slider {
    width: auto;
  }
}
.sec_homeSpa .home_spa_info .slick-list {
  overflow: visible;
}
.sec_homeSpa .home_spa_info .slide {
  position: relative;
}
.sec_homeSpa .home_spa_info .slide .name {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  text-align: right;
  width: 100%;
  height: 58px;
  color: #fff;
  padding-right: 40px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info .slide .name {
    bottom: 4.4vw;
    left: 4.4vw;
    top: inherit;
    right: inherit;
    text-align: left;
  }
}
.sec_homeSpa .home_spa_info .slide .name .ja {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.28em;
  margin-bottom: 15px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info .slide .name .ja {
    font-size: 22px;
  }
}
.sec_homeSpa .home_spa_info .slide .name .en {
  font-size: 20px;
  letter-spacing: 0.2em;
  display: block;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info .slide .name .en {
    font-size: 18px;
  }
}
.sec_homeSpa .home_spa_info .fr {
  width: 540px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info .fr {
    width: 100%;
    padding: 20px 5.3% 0;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info .fr .blc_ttl {
    display: none;
  }
}
.sec_homeSpa .home_spa_info .fl {
  width: 540px;
  padding-left: 25px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info .fl {
    width: 100%;
    padding: 20px 5.3% 0;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info .fl .blc_ttl {
    display: none;
  }
}
.sec_homeSpa .home_spa_info .fl .blc_ttl span {
  background: #899c9b;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.28em;
  padding: 5px 25px;
  margin-right: 25px;
  vertical-align: middle;
}
.sec_homeSpa .home_spa_info .el_desc {
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info .el_desc br {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeSpa .home_spa_info .btn {
    margin: 0 auto;
    display: block;
  }
}

.sec_homeCuisine {
  padding-bottom: 96px;
}
@media screen and (max-width: 1024px) {
  .sec_homeCuisine {
    padding-bottom: 48px;
  }
}
.sec_homeCuisine .head_img {
  width: 76vw;
  height: 36vw;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .sec_homeCuisine .head_img {
    width: 100%;
    margin: 0 auto;
    height: 74.6vw;
    margin-bottom: 30px;
  }
}
.sec_homeCuisine .head_img img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_homeCuisine::before {
  content: "";
  display: block;
  width: 100%;
  height: 18vw;
  margin-bottom: 76px;
}
@media screen and (max-width: 1024px) {
  .sec_homeCuisine::before {
    height: 45vw;
    margin-bottom: 0;
  }
}
.sec_homeCuisine .txt_info {
  width: 52%;
}
@media screen and (max-width: 1024px) {
  .sec_homeCuisine .txt_info {
    width: 100%;
  }
}
.sec_homeCuisine .txt_info .el_sec_ttl_en {
  color: #899c9b;
}
.sec_homeCuisine .txt_info .el_sec_ttl_en + .blc_ttl {
  padding-top: 62px;
}
@media screen and (max-width: 1024px) {
  .sec_homeCuisine .txt_info .el_sec_ttl_en + .blc_ttl {
    padding-top: 20px;
  }
}
.sec_homeCuisine .txt_info .el_desc {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .sec_homeCuisine .txt_info .el_desc {
    margin-bottom: 15px;
  }
}
.sec_homeCuisine .txt_info .imgs {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sec_homeCuisine .txt_info .imgs {
    display: block;
    position: static;
    padding-top: 0;
    width: 100%;
    padding-left: 0;
    margin-bottom: 28px;
  }
  .sec_homeCuisine .txt_info .imgs .img:nth-child(1) {
    width: 48.65%;
    margin-right: 2.7%;
  }
  .sec_homeCuisine .txt_info .imgs .img:nth-child(2) {
    width: 48.65%;
    margin-right: 0;
    padding-top: 21.7vw;
  }
}
.sec_homeCuisine .imgs {
  position: absolute;
  top: 0;
  left: 50%;
  padding-top: 21.75vw;
  width: 1229px;
  padding-left: 113px;
}
.sec_homeCuisine .imgs .img {
  float: left;
}
.sec_homeCuisine .imgs .img:nth-child(1) {
  width: 376px;
  margin-right: 24px;
}
.sec_homeCuisine .imgs .img:nth-child(2) {
  width: 376px;
  margin-right: 24px;
  padding-top: 200px;
}
.sec_homeCuisine .imgs .img:nth-child(3) {
  width: 316px;
}
@media screen and (max-width: 1024px) {
  .sec_homeCuisine .pc {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeCuisine .btn {
    display: block;
    margin: 0 auto;
  }
}

.sec_homeRooms {
  padding: 120px 0 175px;
}
@media screen and (max-width: 1024px) {
  .sec_homeRooms {
    padding: 40px 0 48px;
  }
}
.sec_homeRooms .txt_info {
  width: 50%;
  margin-left: 50%;
  padding-left: 15.7%;
}
@media screen and (max-width: 1024px) {
  .sec_homeRooms .txt_info {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }
}
.sec_homeRooms .txt_info .el_sec_ttl_en + .blc_ttl {
  padding-top: 62px;
}
@media screen and (max-width: 1024px) {
  .sec_homeRooms .txt_info .el_sec_ttl_en + .blc_ttl {
    padding-top: 20px;
  }
}
.sec_homeRooms .txt_info .el_desc {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .sec_homeRooms .txt_info .el_desc {
    margin-bottom: 0;
  }
}
.sec_homeRooms .txt_info .imgs {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sec_homeRooms .txt_info .imgs {
    display: block;
    position: relative;
    width: 126.6vw;
    left: -26.6vw;
    padding-top: 20px;
    margin-bottom: 28px;
  }
  .sec_homeRooms .txt_info .imgs .img {
    float: left;
    width: 560px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .sec_homeRooms .txt_info .imgs .img {
    width: 48.9%;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeRooms .txt_info .imgs .img:nth-child(1) {
    padding-top: 135px;
    margin-right: 23px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .sec_homeRooms .txt_info .imgs .img:nth-child(1) {
    padding-top: 14.9vw;
    margin-right: 2.2%;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeRooms .txt_info {
    margin-bottom: 20px;
  }
}
.sec_homeRooms .imgs {
  position: absolute;
  top: 0;
  left: calc(50% - 1066px);
  padding-top: 96px;
  width: 1144px;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .sec_homeRooms .imgs {
    display: none;
  }
}
.sec_homeRooms .imgs .img {
  float: left;
  width: 560px;
}
.sec_homeRooms .imgs .img:nth-child(1) {
  padding-top: 135px;
  margin-right: 23px;
}
@media screen and (max-width: 1024px) {
  .sec_homeRooms .btn {
    display: block;
    margin: 0 auto;
  }
}

.sec_homeSightseeing {
  background: url(./images/home/bg_home_sightseeing.jpg) center center no-repeat;
  background-size: cover;
  height: 880px;
  padding: 120px 0 144px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing {
    background: url(./images/home/bg_home_sightseeing_sp.jpg) center top no-repeat;
    background-size: cover;
    height: auto;
    padding: 40px 0 0;
    margin-bottom: -36.4vw;
  }
}
.sec_homeSightseeing .txt_info {
  width: 50%;
  padding-right: 8.3%;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .txt_info {
    width: 100%;
    padding-right: 0;
  }
}
.sec_homeSightseeing .txt_info .el_sec_ttl_en {
  color: #899c9b;
}
.sec_homeSightseeing .txt_info .el_sec_ttl_en + .blc_ttl {
  padding-top: 62px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .txt_info .el_sec_ttl_en + .blc_ttl {
    padding-top: 20px;
  }
}
.sec_homeSightseeing .txt_info .el_desc {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .txt_info .el_desc {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .txt_info .btn {
    display: block;
    margin: 0 auto;
  }
}
.sec_homeSightseeing .home_sightseeing_slider {
  position: absolute;
  top: 140px;
  left: 50%;
  width: 1032px;
}
@media screen and (max-width: 1056px) {
  .sec_homeSightseeing .home_sightseeing_slider {
    width: 528px;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .home_sightseeing_slider {
    padding-top: 28px;
    position: relative;
    top: 0;
    width: 176vw;
    left: 5.3%;
  }
}
.sec_homeSightseeing .home_sightseeing_slider .slick-list {
  z-index: 4;
  padding-bottom: 145px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .home_sightseeing_slider .slick-list {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .home_sightseeing_slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .home_sightseeing_slider .slick-slide {
    height: auto !important;
  }
}
.sec_homeSightseeing .home_sightseeing_slider .slide {
  position: relative;
  background: rgba(237, 240, 240, 0.9);
  margin-right: 24px;
}
.sec_homeSightseeing .home_sightseeing_slider .slide:nth-child(odd) {
  position: relative;
  top: 145px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .home_sightseeing_slider .slide:nth-child(odd) {
    top: 0;
  }
}
.sec_homeSightseeing .home_sightseeing_slider .slide > .btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .home_sightseeing_slider .slide > .btn {
    width: auto;
    padding: 0;
    padding-right: 35px;
    margin: 0 auto;
    font-size: 15px;
    position: absolute;
    bottom: 28px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: inline-block;
  }
}
.sec_homeSightseeing .home_sightseeing_slider .slide > .btn::after {
  right: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .home_sightseeing_slider .slide .bg {
    height: 56.53vw;
    overflow: hidden;
  }
  .sec_homeSightseeing .home_sightseeing_slider .slide .bg img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.sec_homeSightseeing .home_sightseeing_slider .slide a {
  position: relative;
  display: block;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .home_sightseeing_slider .slide a {
    position: static;
  }
}
.sec_homeSightseeing .home_sightseeing_slider .slide .info {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 24px);
  width: 100%;
  height: 100%;
  text-align: center;
  padding-top: 79px;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: rgba(237, 240, 240, 0.9);
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .home_sightseeing_slider .slide .info {
    position: static;
    opacity: 1;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 28px;
    background: transparent;
  }
}
.sec_homeSightseeing .home_sightseeing_slider .slide .info .en {
  color: #899c9b;
  font-size: 24px;
  margin-bottom: 67px;
  letter-spacing: 0.2em;
  text-indent: -0.2em;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .home_sightseeing_slider .slide .info .en {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.sec_homeSightseeing .home_sightseeing_slider .slide .info .name {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 50px;
  letter-spacing: 0.28em;
  text-indent: -0.28em;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .home_sightseeing_slider .slide .info .name {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.sec_homeSightseeing .home_sightseeing_slider .slide .info .access {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-indent: -0.08em;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .home_sightseeing_slider .slide .info .access {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.sec_homeSightseeing .home_sightseeing_slider .slide .info .access .ico {
  display: inline-block;
  width: 26px;
  height: 19px;
  vertical-align: middle;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .home_sightseeing_slider .slide .info .access .ico {
    width: 20px;
    height: 14px;
  }
}
.sec_homeSightseeing .home_sightseeing_slider .slide .info .desc {
  width: 325px;
  text-align: left;
  border-top: solid 1px #929292;
  padding-top: 25px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .home_sightseeing_slider .slide .info .desc {
    padding: 10px 0 20px;
    width: 75.3%;
    margin-bottom: 0;
  }
}
.sec_homeSightseeing .home_sightseeing_slider .slide .info .btn {
  width: 137px;
  padding: 0;
  padding-right: 35px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .sec_homeSightseeing .home_sightseeing_slider .slide .info .btn {
    display: none;
  }
}
.sec_homeSightseeing .home_sightseeing_slider .slide .info .btn::after {
  right: 0;
  top: 0;
}
.sec_homeSightseeing .home_sightseeing_slider .slide:hover .info {
  opacity: 1;
}

.groupBnr_wrap {
  margin-bottom: 40px;
}

.groupBnr_wrap img {
  border-radius: 24px;
}

@media screen and (max-width: 480px) {
  .groupBnr_wrap img {
    aspect-ratio: 700 / 1675;
    border-radius: 0;
  }
}

.sec_homeBanquet {
  /*height: 1103px;*/
  height: calc(1103px + 549px);
  padding: 120px 0 96px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .sec_homeBanquet {
    padding: calc(36.4vw + 40px) 0 48px;
    height: auto;
  }
}
.sec_homeBanquet .el_sec_head {
  margin-bottom: 40px;
}
.sec_homeBanquet .el_sec_head .el_sec_ttl_en {
  color: #899c9b;
}
.sec_homeBanquet .box {
  width: 50%;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .sec_homeBanquet .box {
    width: 100%;
  }
}
.sec_homeBanquet .box .img {
  width: 640px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .sec_homeBanquet .box .img {
    width: 50vw;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeBanquet .box .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeBanquet .box:nth-child(1) {
    margin-bottom: 36px;
  }
}
.sec_homeBanquet .box:nth-child(1) .img {
  margin-left: -100px;
  padding-right: 15px;
}
@media screen and (max-width: 1280px) {
  .sec_homeBanquet .box:nth-child(1) .img {
    margin-left: -18.5%;
    padding-right: 2.7%;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeBanquet .box:nth-child(1) .img {
    margin-left: 0;
    padding-right: 0;
  }
}
.sec_homeBanquet .box .info {
  width: 95.3%;
}
@media screen and (max-width: 1280px) {
  .sec_homeBanquet .box .info {
    width: 100%;
  }
}
.sec_homeBanquet .box .info .blc_ttl br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sec_homeBanquet .box .info .blc_ttl br {
    display: block;
  }
}
.sec_homeBanquet .box .info .el_desc {
  margin-bottom: 46px;
}
@media screen and (max-width: 1024px) {
  .sec_homeBanquet .box .info .el_desc {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeBanquet .box .btn {
    display: block;
    margin: 0 auto;
  }
}
.sec_homeBanquet .box:nth-child(2) .info {
  padding-left: 25px;
}
@media screen and (max-width: 1024px) {
  .sec_homeBanquet .box:nth-child(2) .info {
    padding-left: 0;
  }
}

.sec_homeAccess {
  height: 744px;
  padding: 70px 0 0;
}
@media screen and (max-width: 1024px) {
  .sec_homeAccess {
    height: auto;
    padding: 40px 0 48px;
  }
}
.sec_homeAccess .ly_inner {
  z-index: 6;
}
.sec_homeAccess .ly_inner .txt_info {
  width: 50%;
  padding-right: 5%;
}
@media screen and (max-width: 1024px) {
  .sec_homeAccess .ly_inner .txt_info {
    width: 100%;
    padding-right: 0;
  }
}
.sec_homeAccess .ly_inner .txt_info .el_sec_ttl_en {
  color: #899c9b;
}
@media screen and (max-width: 1024px) {
  .sec_homeAccess .ly_inner .txt_info .el_sec_ttl_en {
    margin-bottom: 440px;
  }
}
.sec_homeAccess .ly_inner .txt_info .el_sec_ttl_en + .blc_ttl {
  padding-top: 62px;
}
@media screen and (max-width: 1024px) {
  .sec_homeAccess .ly_inner .txt_info .el_sec_ttl_en + .blc_ttl {
    padding-top: 0;
  }
}
.sec_homeAccess .ly_inner .txt_info .el_sec_ttl_en + .blc_ttl .sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sec_homeAccess .ly_inner .txt_info .el_sec_ttl_en + .blc_ttl .sp {
    display: block !important;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeAccess .ly_inner .txt_info .el_sec_ttl_en + .blc_ttl .pc {
    display: none;
  }
}
.sec_homeAccess .ly_inner .txt_info .el_desc {
  margin-bottom: 50px;
}
.sec_homeAccess .img {
  position: absolute;
  top: 0;
  left: calc(50% - 512px);
  z-index: 5;
}
.sec_homeAccess .img img {
  width: 1502px;
}
@media screen and (max-width: 1024px) {
  .sec_homeAccess .img img {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeAccess .img {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 651px;
    height: 665px;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeAccess .btn {
    display: block;
    margin: 0 auto;
  }
}

.sec_homePlan {
  height: 796px;
  padding: 144px 0 96px;
}
@media screen and (max-width: 1024px) {
  .sec_homePlan {
    height: auto;
    padding: 40px 0 48px;
  }
}
.sec_homePlan .blc_ttl {
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .sec_homePlan .blc_ttl {
    margin-bottom: 10px;
  }
}
.sec_homePlan .el_sec_ttl_en {
  display: inline-block;
  color: #899c9b;
}
@media screen and (max-width: 1024px) {
  .sec_homePlan .el_sec_ttl_en {
    display: block;
    margin-bottom: 20px;
  }
}
.sec_homePlan .home_plan_slider {
  width: 1640px;
  margin-bottom: 25px;
  position: absolute;
  top: 0;
  left: 200px;
  overflow: hidden;
}
@media screen and (max-width: 1738px) {
  .sec_homePlan .home_plan_slider {
    width: 1312px;
  }
}
@media screen and (max-width: 1280px) {
  .sec_homePlan .home_plan_slider {
    left: 15.6%;
  }
}
@media screen and (max-width: 1080px) {
  .sec_homePlan .home_plan_slider {
    width: 984px;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homePlan .home_plan_slider {
    /*width: 178.6vw;*/
    width: 100%;
    position: static;
  }
}
.sec_homePlan .home_plan_slider .home_plan_slider_inner {
  width: 328px;
}
@media screen and (max-width: 1024px) {
  .sec_homePlan .home_plan_slider .home_plan_slider_inner {
    width: auto;
  }
}
.sec_homePlan .home_plan_slider .slick-list {
  overflow: visible;
}
.sec_homePlan .home_plan_slider .slider_controls {
  position: absolute;
  bottom: -35px;
  left: -100px;
}
@media screen and (max-width: 1024px) {
  .sec_homePlan .home_plan_slider .slider_controls {
    position: static;
    width: 89.4vw;
    text-align: center;
    padding-top: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homePlan .home_plan_slider .slick-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sec_homePlan .home_plan_slider .slick-list .slick-slide {
    height: auto;
    background: rgba(225, 230, 230, 0.9);
  }
  .sec_homePlan .home_plan_slider .slick-list .slick-slide.slick-current {
    background: rgba(237, 240, 240, 0.9);
  }
}
.sec_homePlan .home_plan_slider .slide a {
  display: block;
}
@media screen and (max-width: 1024px) {
  .sec_homePlan .home_plan_slider .slide a {
    position: relative;
    height: 100%;
  }
}
.sec_homePlan .home_plan_slider .slide a .img {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .sec_homePlan .home_plan_slider .slide a .img {
    height: 60vw;
    overflow: hidden;
    position: static;
  }
  .sec_homePlan .home_plan_slider .slide a .img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.sec_homePlan .home_plan_slider .slide a .img .info {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: rgba(237, 240, 240, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .sec_homePlan .home_plan_slider .slide a .img .info {
    top: inherit;
    bottom: 28px;
    left: 28px;
    opacity: 1;
    background: transparent;
    height: auto;
    text-align: left;
  }
}
.sec_homePlan .home_plan_slider .slide a .img .info p {
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  display: inline-block;
  padding: 0;
  padding-right: 50px;
}
.sec_homePlan .home_plan_slider .slide a .img .info p::after {
  top: 0;
}
@media screen and (max-width: 1024px) {
  .sec_homePlan .home_plan_slider .slide a .img .info p {
    position: static;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.sec_homePlan .home_plan_slider .slide a .desc {
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .sec_homePlan .home_plan_slider .slide a .desc {
    padding: 28px;
    padding-bottom: 75px;
  }
}
.sec_homePlan .home_plan_slider .slide a:hover .info {
  opacity: 1;
}
.sec_homePlan .home_plan_slider .slide:hover {
  background: rgba(237, 240, 240, 0.9);
}
@media screen and (max-width: 1024px) {
  .sec_homePlan .home_plan_slider .slide:hover {
    background: inherit;
  }
}
.sec_homePlan .btn_wrapper {
  position: absolute;
  bottom: -215px;
  width: 100%;
  left:0;
}
@media screen and (max-width: 1024px) {
  .sec_homePlan .btn_wrapper {
    position: static;
  }
}
.sec_homePlan .home_plan_slider_controls {
  position: absolute;
  left: 100px;
  bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .sec_homePlan .home_plan_slider_controls {
    position: static;
    margin: 0 auto 30px;
    text-align: center;
  }
}
.sec_homePlan .btn {
  position: absolute;
  /*bottom: -215px;*/
  bottom: 0;
  right: 100px;
  width: 320px;
}
@media screen and (max-width: 1024px) {
  .sec_homePlan .btn {
    position: static;
    /*bottom: inherit;*/
    /*right: inherit;*/
    display: block;
    margin: 0 auto;
  }
}

.sec_homeBlog{
  max-width: 2000px;
  margin: 144px auto 96px;
}
@media screen and (max-width: 1024px) {
  .sec_homeBlog{
    max-width: inherit;
    margin: 40px auto 48px;
  }
}
.sec_homeBlog .img img{
  width: 100%;
  height: auto;
}
.sec_homeBlog .img .sp{
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_homeBlog .img .sp{
    display: block;
  }
  .sec_homeBlog .img .pc{
    display: none;
  }
}
.sec_homeBlog .btn_wrapper{
  margin-top: 50px;
  text-align: center;
}
.sec_homeBlog .btn_wrapper .btn{
  text-align: left;
}
.sec_homeBlog .btn_wrapper .btn:last-child{
  margin-left: 20px;
}
@media screen and (max-width: 480px) {
  .sec_homeBlog .btn_wrapper .btn:last-child{
    margin-left: 0;
    margin-top: 20px;
  }
}


.sec_homeNews {
  height: 946px;
  padding: 96px 0 256px;
}
@media screen and (max-width: 1024px) {
  .sec_homeNews {
    height: auto;
    padding: 40px 0 128px;
  }
}
.sec_homeNews .sec_head_v {
  width: 100px;
}
.sec_homeNews .sec_head_v .el_sec_ttl_en {
  color: #899c9b;
}
@media screen and (max-width: 1024px) {
  .sec_homeNews .sec_head_v {
    width: 100%;
    margin-bottom: 20px;
  }
}
.sec_homeNews .home_news_blc {
  width: calc(100% - 100px);
}
@media screen and (max-width: 1024px) {
  .sec_homeNews .home_news_blc {
    width: 100%;
  }
}
.sec_homeNews .home_news_blc .home_news_lists {
  border-bottom: solid 1px #c5c5c5;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .sec_homeNews .home_news_blc .home_news_lists {
    margin-bottom: 28px;
  }
}
.sec_homeNews .home_news_blc .home_news_lists a {
  display: block;
  border-top: solid 1px #c5c5c5;
  padding: 10px 20px;
  padding-right: 90px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .sec_homeNews .home_news_blc .home_news_lists a {
    padding: 20px 5px 15px;
    padding-right: 10px;
  }
}
.sec_homeNews .home_news_blc .home_news_lists a::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  background: url(./images/common/btn_arw01.svg) center center no-repeat;
  background-size: cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .sec_homeNews .home_news_blc .home_news_lists a::after {
    top: 30px;
    right: 30px;
  }
}
.sec_homeNews .home_news_blc .home_news_lists a .dates {
  width: 186px;
  padding: 15px 0;
}
@media screen and (max-width: 1024px) {
  .sec_homeNews .home_news_blc .home_news_lists a .dates {
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
  }
}
.sec_homeNews .home_news_blc .home_news_lists a .dates .cat {
  font-size: 18px;
  color: #899c9b;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .sec_homeNews .home_news_blc .home_news_lists a .dates .cat {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
  }
}
.sec_homeNews .home_news_blc .home_news_lists a .dates .date {
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .sec_homeNews .home_news_blc .home_news_lists a .dates .date {
    display: inline-block;
  }
}
.sec_homeNews .home_news_blc .home_news_lists a .txt {
  width: calc(100% - 186px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .sec_homeNews .home_news_blc .home_news_lists a .txt {
    width: 100%;
  }
}
.sec_homeNews .home_news_blc .home_news_lists a .txt .ttl {
  font-size: 20px;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .sec_homeNews .home_news_blc .home_news_lists a .txt .ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .sec_homeNews .btn {
    display: block;
    margin: 0 auto;
    float: none;
  }
}

/***********************
温泉
***********************/
.sec_spaMain {
  padding-bottom: 0;
}

.spa_main {
  background: url(./images/spa/bg_main.jpg) center top no-repeat;
  background-size: 2000px 808px;
  height: 808px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .spa_main {
    background-size: cover;
    height: auto;
    padding-bottom: 46px;
  }
}
@media screen and (max-width: 480px) {
  .spa_main {
    margin-bottom: 0;
  }
  .spa_main::after {
    content: "";
    width: 100%;
    height: 40vw;
    display: block;
  }
}
.spa_main .blc_pat_main_col {
  padding: 90px 0 100px;
}
@media screen and (max-width: 1024px) {
  .spa_main .blc_pat_main_col {
    padding: 90px 0 150px;
  }
}
@media screen and (max-width: 480px) {
  .spa_main .blc_pat_main_col {
    padding: 90px 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .spa_main .blc_ttl br {
    display: block !important;
  }
}

.spa_history {
  background: url(./images/spa/bg_history.png) center right no-repeat;
  background-size: 2000px 480px;
  height: 480px;
  padding: 80px 0 86px;
}
.spa_history .txt_info {
  width: 74%;
}
@media screen and (max-width: 1024px) {
  .spa_history {
    padding: 40px 0 43px;
    background-size: cover;
    height: auto;
  }
  .spa_history .blc_pat_single {
    margin-bottom: 0;
  }
  .spa_history .txt_info {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .spa_history {
    padding-top: 40vw;
    background: url(./images/spa/bg_history_sp.jpg) center right no-repeat;
    background-size: cover;
  }
}

.spa01 .bg_white {
  background: #fff;
}

.spa01 .bg_white02 {
  background: #fff;
}

@media screen and (max-width: 1024px) {
  .spa01 .bg_white .info_ttl {
    text-align: center;
    margin-bottom: 20px;
  }
  .spa01 .bg_white02 .info_ttl {
    text-align: center;
    margin-bottom: 20px;
  }
}
.spa01 .slide_bottom .blc_ttl br {
  display: none;
}
@media screen and (max-width: 480px) {
  .spa01 .slide_bottom .blc_ttl br {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .spa02 .bg_white .info_ttl {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .spa02 .bg_white .info_ttl .space {
    display: block;
    width: 0;
    height: 1px;
  }
}
.spa02 .slide_bottom .blc_ttl .sp {
  display: none;
}

.spa02 .slide_bottom .blc_ttl .pc {
  display: block;
}


@media screen and (max-width: 480px) {
  .spa02 .slide_bottom .blc_ttl .sp {
    display: block;
  }
  .spa02 .slide_bottom .blc_ttl .pc {
    display: none;
  }
}

/***********************
お料理
***********************/
.sec_cuisineMain {
  padding-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .sec_cuisineMain .cuisine_dinner .blc_ttl br {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sec_cuisineMain .cuisine_plan_ttl {
    padding-bottom: 20px;
  }
}

.cuisine_dinner {
  background: url(./images/cuisine/bg_dinner.jpg) center center no-repeat;
  background-size: 2000px 808px;
  height: 808px;
  color: #fff;
}
.cuisine_dinner .blc_ttl {
  font-size: 30px;
}
.cuisine_dinner .blc_ttl .sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .cuisine_dinner .blc_ttl br {
    display: block;
  }
  .cuisine_dinner .blc_ttl br.sp {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .cuisine_dinner {
    background-size: cover;
    height: auto;
  }
  .cuisine_dinner .blc_ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .cuisine_dinner {
    margin-bottom: 20vw;
  }
  .cuisine_dinner::after {
    content: "";
    width: 100%;
    height: 50vw;
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .cuisine_dinner .blc_pat_main_col {
    padding: 90px 0 150px;
  }
}
@media screen and (max-width: 480px) {
  .cuisine_dinner .blc_pat_main_col {
    padding: 90px 0 0;
  }
}

.dinner_detail {
  padding-top: 140px;
}
@media screen and (max-width: 1024px) {
  .dinner_detail {
    padding-top: 70px;
  }
}
.dinner_detail .blc_ttl .sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .dinner_detail .blc_ttl br {
    display: block;
  }
  .dinner_detail .blc_ttl br.sp {
    display: block;
  }
}

.plan_nav {
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
  .plan_nav {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 480px) {
  .plan_nav {
    padding: 20px 5.3% !important;
  }
}
@media screen and (max-width: 480px) {
  .plan_nav .info_ttl {
    text-align: center;
    margin-bottom: 20px;
  }
}

.dinner_plan {
  padding-top: 64px;
}
.dinner_plan .blc_ttl br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .dinner_plan .blc_ttl br {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .dinner_plan {
    padding-top: 32px;
  }
}

.sec_cuisinePlan .blc_pat_single {
  margin-bottom: 0;
}
.sec_cuisinePlan .blc_pat_single .blc_ttl br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sec_cuisinePlan .blc_pat_single .blc_ttl br {
    display: block;
  }
}
.sec_cuisinePlan .col2_connect {
  margin-top: 50px;
}
@media screen and (max-width: 1280px) {
  .sec_cuisinePlan .col_conts.col2_connect .col:nth-child(1) .img {
    padding-right: 0;
  }
}

/***********************
客室
***********************/
/*.sec_roomsMain .blc_ttl br {
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_roomsMain .blc_ttl br {
    display: block;
  }
}
*/
.sec_roomsMain .sp_inline{
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_roomsMain .sp_inline {
    display: inline;
  }
}
.sec_roomsMain .page_head{
margin-bottom: 0;
}
.sec_roomsMain .page_nav{
padding-top: 190px;
background: url(./images/common/bg_header_logo.svg) center top 50px no-repeat;
background-size: 113px 114px;
}
.sec_roomsMain .page_sec_head.no_bg{
  background: none;
}
.sec_roomsMain .room_content{
  margin-bottom: 150px;
}
@media screen and (max-width: 480px) {
  .sec_roomsMain .room_content{
    margin-bottom: 60px;
  }
}
.sec_roomsMain .blc_pat_col .img {
  width: 50%;
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .sec_roomsMain .blc_pat_col .img {
    width: 100%;
  }
}
.sec_roomsMain .blc_pat_col.reverse .img {
  margin-right: 0;
}
.sec_roomsMain .blc_pat_col .txt_info .icon_list{
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .sec_roomsMain .blc_pat_col .txt_info .icon_list{
    justify-content: center;
  }
}
.sec_roomsMain .blc_pat_col .txt_info .icon_list li{
  width: 70px;
  margin-right: 10px;
}
.sec_roomsMain .blc_pat_col .txt_info .icon_list li:last-child{
  margin-right: 0;
}
.sec_roomsMain .cmn_tbl{
  max-width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .sec_roomsMain .bg_white {
    padding: 30px 20px;
  }
}

.facility_box {
  margin-bottom: 56px;
}
@media screen and (max-width: 1024px) {
  .facility_box {
    margin-bottom: 28px;
  }
}
.facility_box:last-child {
  margin-bottom: 0;
}
.facility_box .ttl {
  font-size: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .facility_box .ttl {
    font-size: 20px;
  }
}
.facility_box br .both {
  display: block;
}
@media screen and (max-width: 480px) {
  .facility_box br {
    display: none;
  }
}
.facility_box br.sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .facility_box br.sp {
    display: block;
  }
}

#info {
  padding-top: 50px;
}

@media screen and (max-width: 480px) {
  .sec_roomsInfo .cmn_tbl .pc {
    display: none;
  }
}

.room_content .outside_link {
  margin-top: 68px;
  background: #fff;
  height: 120px;
}
@media screen and (max-width: 1024px) {
  .room_content .outside_link {
    max-width: 335px;
    margin: 48px auto 0;
    height: auto;
  }
}
.room_content .outside_link .head {
  background: #b03725;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 120px;
}
@media screen and (max-width: 1024px) {
  .room_content .outside_link .head {
    height: 88px;
    width: 100%;
    text-align: center;
  }
}
.room_content .outside_link .head::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 0 60px 17px;
  border-color: transparent transparent transparent #b03725;
  position: absolute;
  top: 0;
  right: -17px;
}
@media screen and (max-width: 1024px) {
  .room_content .outside_link .head::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 40px 0 40px;
    border-color: #b03725 transparent transparent transparent;
    top: inherit;
    bottom: -11px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    right: inherit;
  }
}
.room_content .outside_link .head span {
  position: absolute;
  top: 16px;
  width: 51px;
  height: 92px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .room_content .outside_link .head span {
    width: 27px;
    height: 50px;
  }
}
.room_content .outside_link .head span.left {
  left: 22px;
}
@media screen and (max-width: 1024px) {
  .room_content .outside_link .head span.left {
    left: 20px;
  }
}
.room_content .outside_link .head span.right {
  right: 12px;
}
@media screen and (max-width: 1024px) {
  .room_content .outside_link .head span.right {
    right: 20px;
  }
}
.room_content .outside_link .head .txt {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.28em;
  text-indent: -0.28em;
  padding-left: 70px;
  padding-right: 50px;
}
@media screen and (max-width: 1080px) {
  .room_content .outside_link .head .txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .room_content .outside_link .head .txt {
    font-size: 20px;
    width: 100%;
    padding: 0;
    padding-left: 10px;
  }
}
.room_content .outside_link .links {
  padding: 25px;
  width: calc(100% - 367px);
}
@media screen and (max-width: 1080px) {
  .room_content .outside_link .links {
    width: calc(100% - 345px);
  }
}
@media screen and (max-width: 1024px) {
  .room_content .outside_link .links {
    width: 100%;
    padding: 30px 20px;
  }
}
.room_content .outside_link .links .btn {
  width: 48.3%;
  padding: 22px;
}
@media screen and (max-width: 1080px) {
  .room_content .outside_link .links .btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .room_content .outside_link .links .btn {
    width: 100%;
  }
}
.room_content .outside_link .links .btn.btn_pat-1 {
  margin-right: 3.3%;
}
@media screen and (max-width: 1024px) {
  .room_content .outside_link .links .btn.btn_pat-1 {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.room_content .outside_link .links .btn.btn_pat-1::after, .room_content .outside_link .links .btn.btn_pat-2::after {
  top: 25px;
  right: 25px;
}


/***********************
宴会
***********************/
.sec_banquetMain .page_head .blc_ttl br {
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_banquetMain .page_head .blc_ttl br {
    display: block;
  }
}

.event_blc {
  padding-top: 56px;
  position: relative;
}
.event_blc .col {
  position: relative;
  margin-bottom: 64px;
}
.event_blc .col::after {
  content: "";
  width: 1px;
  height: calc(100% + 60px);
  display: block;
  position: absolute;
  right: -6%;
  top: -60px;
  background: #d9d9d9;
}
@media screen and (max-width: 768px) {
  .event_blc .col::after {
    display: none;
  }
}
.event_blc .col:nth-child(2n)::after {
  display: none;
}
.event_blc .col:nth-child(n+3) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .event_blc .col:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .event_blc .col:nth-child(n+2) {
    margin-top: 50px;
  }
}
.event_blc .info_ttl {
  text-align: left;
  margin: 20px 0 15px;
  margin-bottom: 20px;
  text-indent: -0.08em;
}
.event_blc .info_ttl .min {
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .event_blc .info_ttl .min {
    font-size: 18px;
  }
}
.event_blc .el_desc + .info_ttl {
  margin-top: 30px;
}
.event_blc .img {
  position: relative;
}
.event_blc .img .badge {
  background: rgba(103, 127, 126, 0.8);
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding-top: 35px;
  width: 120px;
  height: 120px;
  border-radius: 120px;
  color: #fff;
}
.event_blc .img .badge .min {
  font-size: 24px;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .event_blc .img .badge .min {
    font-size: 20px;
  }
}
.event_blc .img .badge .num {
  font-size: 40px;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .event_blc .img .badge .num {
    font-size: 36px;
  }
}
.event_blc .border_box{
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  margin: 20px 0 10px;
}
.event_blc .link_info{
  margin-top: 20px;
  text-align: center;
}
.event_blc .link_info .btn{
  width: 320px;
  text-align: center;
}

.sec_banquet .link_box {
  padding-top: 0;
}
.sec_banquet #plan1 {
  padding-top: 56px;
}
.sec_banquet .special {
  padding: 60px 0;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .sec_banquet .special {
    padding: 0 0 30px;
  }
}
.sec_banquet .special:nth-child(n+2) {
  margin-top: 24px;
}
.sec_banquet .special .img_box{
  width: 45.625%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .sec_banquet .special .img_box{
    width: 100%;
  }
}
.sec_banquet .special .img_box .comment_w,
.sec_banquet .special .img_box .comment_b{
  position: absolute;
  font-size: 20px;
  bottom: 10px;
  left: 10px;
}
@media screen and (max-width: 1024px) {
  .sec_banquet .special .img_box .comment_w,
  .sec_banquet .special .img_box .comment_b{
    font-size: 18px;
  }
}
.sec_banquet .special .img_box .comment_w{
  color: #fff;
}
.sec_banquet .special .txt_box{
  width: 50.781%;
  position: relative;
  padding-right: 60px;
}
@media screen and (max-width: 1024px) {
  .sec_banquet .special .txt_box{
    width: 100%;
    padding: 0 5.3% ;
  }
}
.sec_banquet .special .txt_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(103, 127, 126, 0.8);
  width: 125px;
  height: 112px;
}
@media screen and (max-width: 1024px) {
  .sec_banquet .special .txt_box::before {
    width: 180px;
    height: 72px;
  }
}
.sec_banquet .special .head {
  padding: 19px 0 16px;
  font-size: 24px;
  color: #677f7e;
  position: relative;
  letter-spacing: 0.28em;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .sec_banquet .special .head {
    padding: 0;
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.sec_banquet .special .head .badge {
  color: #fff;
  display: inline-block;
  width: 125px;
  text-align: center;
  padding-top: 5px;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .sec_banquet .special .head .badge {
    margin-left: -5.3%;
    width: 140px;
    padding-top: 15px;
  }
}
.sec_banquet .special .head .badge .num {
  font-size: 48px;
  letter-spacing: 0.2em;
  display: block;
}
@media screen and (max-width: 1024px) {
  .sec_banquet .special .head .badge .num {
    font-size: 40px;
    display: inline-block;
    margin-left: 5px;
  }
}
.sec_banquet .special .head .ttl {
  display: inline-block;
  line-height: 1.6;
  vertical-align: middle;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .sec_banquet .special .head .ttl {
    display: block;
    width: 100%;
    padding-top: 20px;
    line-height: 1.75;
    margin-left: 0;
  }
}
/*.sec_banquet .special .head .ttl br {
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_banquet .special .head .ttl br {
    display: block;
  }
}
*/.sec_banquet .rule {
  padding-top: 35px;
  padding-bottom: 30px;
}
.sec_banquet .rule:nth-child(n+2) {
  margin-top: 24px;
}
.sec_banquetMain .rule:nth-child(n+2) {
  margin-top: -30px;
  max-width: 100%;
  padding-top: 30px;
}
.sec_banquet .rule .head {
  font-size: 24px;
  margin-bottom: 30px;
  color: #677f7e;
  letter-spacing: 0.28em;
}
@media screen and (max-width: 1024px) {
  .sec_banquet .rule .head {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.sec_banquet .banquet_reserve .ttl {
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .sec_banquet .banquet_reserve .ttl {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.75;
  }
}
.sec_banquet .banquet_reserve .ttl br {
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_banquet .banquet_reserve .ttl br {
    display: block;
  }
}
.sec_banquet .banquet_reserve .tels {
  text-align: center;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  font-size: 20px;
  margin-bottom: 55px;
}
@media screen and (max-width: 1024px) {
  .sec_banquet .banquet_reserve .tels {
    font-size: 18px;
    margin-bottom: 27px;
  }
}
.sec_banquet .banquet_reserve .tels br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec_banquet .banquet_reserve .tels br {
    display: block;
  }
}
.sec_banquet .banquet_reserve .tels .tel {
  font-size: 24px;
  font-weight: 600;
  color: #677f7e;
}
@media screen and (max-width: 1024px) {
  .sec_banquet .banquet_reserve .tels .tel {
    font-size: 20px;
  }
}
.sec_banquet .banquet_reserve .tels a {
  font-size: 48px;
  font-weight: 600;
  color: #677f7e;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .sec_banquet .banquet_reserve .tels a {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .sec_banquet .banquet_reserve .tels a {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 32px;
  }
}
.sec_banquet .banquet_reserve .tels span {
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .sec_banquet .banquet_reserve .tels span {
    font-size: 16px;
  }
}
.sec_banquet .banquet_reserve .el_desc {
  text-align: center;
  text-indent: 0.08em;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .sec_banquet .banquet_reserve .el_desc {
    margin-bottom: 15px;
    text-align: left;
  }
}
.sec_banquet .banquet_reserve .el_desc br.sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_banquet .banquet_reserve .el_desc br.sp {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sec_banquet .banquet_reserve .el_desc br {
    display: block;
  }
}
.sec_banquet .banquet_reserve .msg {
  background: rgba(103, 127, 126, 0.8);
  color: #fff;
  font-size: 24px;
  padding: 10px 20px;
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
}
.sec_banquet .banquet_reserve .msg br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sec_banquet .banquet_reserve .msg {
    font-size: 20px;
    text-align: left;
  }
  .sec_banquet .banquet_reserve .msg br {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .sec_banquetVenue .col_conts .el_desc {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .sec_banquetVenue .bg_white {
    padding: 20px 5.3%;
  }
}
@media screen and (max-width: 480px) {
  .sec_banquetVenue .info_ttl {
    text-align: center;
    margin-bottom: 20px;
  }
}
.sec_banquetVenue .info_ttl br {
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_banquetVenue .info_ttl br {
    display: block;
  }
}

/***********************
会食
***********************/
.sec_dayplanMain .blc_ttl br {
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_dayplanMain .blc_ttl br {
    display: block;
  }
}

.uni_dayplan_longevity {
  margin-bottom: 50px;
}
.uni_dayplan_longevity .ttl {
  font-size: 24px;
  letter-spacing: 0.28em;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .uni_dayplan_longevity {
    margin-bottom: 25px;
  }
  .uni_dayplan_longevity .ttl {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.dayplan_main .org {
  letter-spacing: 0.2em;
}
.dayplan_main .org br {
  display: none;
}
@media screen and (max-width: 480px) {
  .dayplan_main .org br {
    display: block;
  }
}
.dayplan_main .cel2 {
  background: rgba(230, 220, 215, 0.8);
  padding-top: 56px;
  padding-bottom: 100px;
}
.dayplan_main .cel2 .img {
  margin-right: 0;
}
.dayplan_main .cel2 .txt_info {
  width: 40.8%;
}
@media screen and (max-width: 1024px) {
  .dayplan_main .cel2 .txt_info {
    width: 100%;
  }
}
.dayplan_main .cel2 .txt_info .el_desc {
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  .dayplan_main .cel2 .txt_info .el_desc {
    font-size: 18px;
  }
}
.dayplan_main .cel2 .blc_pat_single .blc_ttl br {
  display: none;
}
@media screen and (max-width: 480px) {
  .dayplan_main .cel2 .blc_pat_single .blc_ttl br {
    display: block;
  }
}
.dayplan_main .col_conts {
  position: relative;
}
.dayplan_main .col_conts .col {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .dayplan_main .col_conts .col {
    border-bottom: solid 1px #899c9b;
    padding-bottom: 30px;
    margin-bottom: 10px;
  }
  .dayplan_main .col_conts .col:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.dayplan_main .col_conts::before, .dayplan_main .col_conts::after {
  content: "";
  width: 1px;
  height: 100%;
  background: #899c9b;
  position: absolute;
  top: 0;
  left: 32.575%;
  display: block;
}
@media screen and (max-width: 768px) {
  .dayplan_main .col_conts::before, .dayplan_main .col_conts::after {
    display: none;
  }
}
.dayplan_main .col_conts::after {
  left: inherit;
  right: 32.575%;
}

.menu_box {
  margin-bottom: 34px;
}
@media screen and (max-width: 480px) {
  .menu_box {
    padding: 28px 5.3% !important;
  }
}
.menu_box .vertical_box {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  line-height: 3.6;
  text-align: top;
  margin: 0 auto 50px;
  width: 100%;
}
.menu_box .vertical_boxInner {
  display: contents;
}
@media screen and (max-width: 1279px) {
  .menu_box .vertical_box {
    line-height: 3;
  }
}
@media screen and (max-width: 1023px) {
  .menu_box .vertical_box {
    line-height: 2;
  }
}
@media screen and (max-width: 480px) {
  .menu_box .vertical_box {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 18px;
    width: 100%;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial;
  }
  .menu_box .vertical_boxInner {
    display: block;
    width: 50%;
  }
}
.menu_box .price {
  margin-left: 64px;
}
@media screen and (max-width: 1024px) {
  .menu_box .price {
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .menu_box .tax {
    display: block;
  }
}

.memorial_blc .blc_pat_single .txt_info {
  margin-bottom: 45px;
}

.sec_dayplanInfo .page_sec_head .page_sec_ttl br {
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_dayplanInfo .page_sec_head .page_sec_ttl br {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sec_dayplanInfo .page_sec_head.non_bg {
    padding-top: 20px;
  }
}
.sec_dayplanInfo .org br {
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_dayplanInfo .org br {
    display: block;
  }
}
.sec_dayplanInfo .support {
  /*background: rgba(240, 242, 242, 0.8);*/
  background: #f3eff4;
  position: relative;
  padding: 0 100px;
}
@media screen and (max-width: 1024px) {
  .sec_dayplanInfo .support {
    padding: 0;
  }
}
.sec_dayplanInfo .support:nth-child(n+2) {
  margin-top: 24px;
}
.sec_dayplanInfo .support::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /*background: rgba(103, 127, 126, 0.8);*/
  background: #9573a0;
  width: 193px;
  height: 96px;
}
@media screen and (max-width: 1024px) {
  .sec_dayplanInfo .support::before {
    width: 100px;
    height: 72px;
  }
}
.sec_dayplanInfo .support .info {
  width: 50%;
  padding-bottom: 30px;
  padding-right: 5%;
}
@media screen and (max-width: 1024px) {
  .sec_dayplanInfo .support .info {
    padding-left: 5.3%;
  }
}
@media screen and (max-width: 768px) {
  .sec_dayplanInfo .support .info {
    width: 100%;
    padding-bottom: 0;
  }
}
.sec_dayplanInfo .support .info .head {
  padding: 30px 0;
  font-size: 24px;
  /*color: #677f7e;*/
  color: #9573a0;
  position: relative;
  letter-spacing: 0.28em;
}
@media screen and (max-width: 1024px) {
  .sec_dayplanInfo .support .info .head {
    padding: 15px 0;
    font-size: 20px;
  }
}
.sec_dayplanInfo .support .info .head .badge {
  color: #fff;
  margin-right: 65px;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .sec_dayplanInfo .support .info .head .badge {
    margin-right: 47px;
  }
}
.sec_dayplanInfo .support .info .head .badge .num {
  font-size: 48px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .sec_dayplanInfo .support .info .head .badge .num {
    font-size: 40px;
  }
}
.sec_dayplanInfo .support .info .head .ttl {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sec_dayplanInfo .support .info .head .ttl {
    line-height: 1.75;
  }
}
.sec_dayplanInfo .support .img {
  width: 50%;
}
.sec_dayplanInfo .support .img img {
  width: calc(100% + 100px);
}
@media screen and (max-width: 1024px) {
  .sec_dayplanInfo .support .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .sec_dayplanInfo .support .img {
    width: 100%;
    padding: 20px;
  }
}
@media screen and (max-width: 480px) {
  .sec_dayplanInfo .slider_controls {
    margin-bottom: 15px;
  }
}
.sec_dayplanInfo .price {
  margin-left: 64px;
}
@media screen and (max-width: 1024px) {
  .sec_dayplanInfo .price {
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .sec_dayplanInfo .tax {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sec_dayplanInfo .blc_pat_single {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .sec_dayplanInfo .event_blc .col {
    border-bottom: solid 1px #899c9b;
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
  .sec_dayplanInfo .event_blc .col:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

#memorial.bg_pat_def {
  background: url(./images/common/bg_def_memorial.jpg) center top repeat-y;
  background-size: 2000px 3580px;
}
#memorial02.bg_pat_light,
#venue.bg_pat_light {
  background: url(./images/common/bg_light_memorial.png) center top repeat-y;
  background-size: 2000px 3659px;
}
@media screen and (max-width: 1024px) {
  #memorial03 {
    padding-top: 48px;
  }
}

/***********************
周辺観光
***********************/
.sec_sightseeingMain {
  padding-bottom: 0;
}
.sec_sightseeingMain .blc_ttl br.sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_sightseeingMain .blc_ttl br.sp {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sec_sightseeingMain .illust_map {
    width: 110vw;
    margin-left: -10vw;
  }
}
.sec_sightseeingMain .illust_caution {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec_sightseeingMain .illust_caution {
    display: block;
    width: 320px;
    margin: 0 auto;
    padding: 15px 0;
  }
  .sec_sightseeingMain .illust_caution .img {
    width: 14%;
  }
  .sec_sightseeingMain .illust_caution .desc {
    width: 84%;
    font-size: 16px;
    line-height: 1.5;
  }
}

.sec_sightseeingMap iframe {
  width: 100%;
}

.sec_sightseeingInfo .page_nav .btn {
  padding: 30px 20px;
}
.sec_sightseeingInfo .page_nav .btn.multi {
  padding: 10px 20px;
  line-height: 1.5;
}
.sec_sightseeingInfo .page_nav .btn::after {
  top: 30px;
}
@media screen and (max-width: 1024px) {
  .sec_sightseeingInfo .page_nav .btn {
    padding: 20px 10px;
  }
  .sec_sightseeingInfo .page_nav .btn.multi {
    padding: 2px 15px;
  }
  .sec_sightseeingInfo .page_nav .btn::after {
    top: 20px;
  }
}

.sec_sightseeingInfo .car_info {
  border-top: solid 1px #c4c4c4;
  border-bottom: solid 1px #c4c4c4;
  padding: 10px;
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .sec_sightseeingInfo .car_info {
    font-size: 18px;
  }
}
.sec_sightseeingInfo .car_info .ico {
  width: 26px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  position: relative;
  top: -1px;
}
.sec_sightseeingInfo .sightseeing_link {
  padding-top: 30px;
}
.sec_sightseeingInfo .sightseeing_link .btn {
  width: 47%;
}
.sec_sightseeingInfo .head {
  margin-bottom: 15px !important;
  min-height: inherit !important;
}
.sec_sightseeingInfo .head .schedule,
.sec_sightseeingInfo .head .place {
  background: #a89a60;
  font-size: 20px;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  padding-right: 15px;
  text-align: left;
  color: #fff;
  width: auto !important;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .sec_sightseeingInfo .head .schedule,
  .sec_sightseeingInfo .head .place {
    font-size: 18px;
  }
}
.sec_sightseeingInfo .head .schedule {
  background: #a89a60;
}
.sec_sightseeingInfo .head .place.kumamoto {
  background: #a07075;
}
.sec_sightseeingInfo .head .place.oita {
  background: #6a7789;
}
.sec_sightseeingInfo .head .place.fukuoka {
  background: #dd925f;
}
.sec_sightseeingInfo .head .place.long {
  padding: 5px;
  padding-right: 10px;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .sec_sightseeingInfo .head .place.long {
    font-size: 17px;
  }
}
.sec_sightseeingInfo .sightseeing_large {
  padding: 0 100px;
}
@media screen and (max-width: 1279px) {
  .sec_sightseeingInfo .sightseeing_large {
    padding: 0;
  }
}
.sec_sightseeingInfo .sightseeing_large:nth-child(n+2) {
  margin-top: 40px;
}
.sec_sightseeingInfo .sightseeing_large .info {
  width: 50%;
  padding: 56px;
  padding-right: 0;
}
@media screen and (max-width: 1279px) {
  .sec_sightseeingInfo .sightseeing_large .info {
    padding: 28px;
  }
}
@media screen and (max-width: 768px) {
  .sec_sightseeingInfo .sightseeing_large .info {
    width: 100%;
  }
}
.sec_sightseeingInfo .sightseeing_large .info .ttls {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .sec_sightseeingInfo .sightseeing_large .info .ttls {
    display: block;
  }
}
.sec_sightseeingInfo .sightseeing_large .info .ttls .badge {
  background: rgba(103, 127, 126, 0.8);
  text-align: center;
  padding-top: 35px;
  width: 120px;
  height: 120px;
  border-radius: 120px;
  color: #fff;
  display: inline-block;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .sec_sightseeingInfo .sightseeing_large .info .ttls .badge {
    width: 90px;
    height: 90px;
    padding-top: 25px;
  }
}
.sec_sightseeingInfo .sightseeing_large .info .ttls .badge .min {
  font-size: 24px;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .sec_sightseeingInfo .sightseeing_large .info .ttls .badge .min {
    font-size: 20px;
  }
}
.sec_sightseeingInfo .sightseeing_large .info .ttls .badge .num {
  display: inline-block;
  font-size: 40px;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}
@media screen and (max-width: 1024px) {
  .sec_sightseeingInfo .sightseeing_large .info .ttls .badge .num {
    font-size: 36px;
  }
}
.sec_sightseeingInfo .sightseeing_large .info .ttls .ttl {
  display: inline-block;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.28em;
}
@media screen and (max-width: 1024px) {
  .sec_sightseeingInfo .sightseeing_large .info .ttls .ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .sec_sightseeingInfo .sightseeing_large .info .ttls .ttl {
    display: block;
    width: 100%;
    padding-top: 20px;
  }
}
.sec_sightseeingInfo .sightseeing_large .info .car_info {
  padding: 10px 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1279px) {
  .sec_sightseeingInfo .sightseeing_large .info .btn {
    padding: 20px;
  }
  .sec_sightseeingInfo .sightseeing_large .info .btn::after {
    top: 20px;
    right: 10px;
  }
}
@media screen and (max-width: 1279px) and (max-width: 768px) {
  .sec_sightseeingInfo .sightseeing_large .info .btn {
    width: 100%;
  }
  .sec_sightseeingInfo .sightseeing_large .info .btn:nth-child(n+2) {
    margin-top: 20px;
  }
}
.sec_sightseeingInfo .sightseeing_large .img {
  width: 50%;
}
@media screen and (max-width: 1279px) {
  .sec_sightseeingInfo .sightseeing_large .img {
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .sec_sightseeingInfo .sightseeing_large .img {
    width: 100%;
    height: 70vw;
  }
}
@media screen and (max-width: 480px) {
  .sec_sightseeingInfo .sightseeing_large .img {
    height: 90vw;
  }
}
.sec_sightseeingInfo .sightseeing_large .img img {
  width: calc(100% + 100px);
  margin-left: -100px;
}
@media screen and (max-width: 1279px) {
  .sec_sightseeingInfo .sightseeing_large .img img {
    margin-left: 0;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .sec_sightseeingInfo .sightseeing_large .img img {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .sec_sightseeingInfo .sightseeing_large .img img {
    width: 100%;
  }
}
.sec_sightseeingInfo .sightseeing_large .reverse .info {
  padding-right: 56px;
  padding-left: 0;
}
@media screen and (max-width: 1279px) {
  .sec_sightseeingInfo .sightseeing_large .reverse .info {
    padding: 28px;
  }
}
.sec_sightseeingInfo .sightseeing_large .reverse .img img {
  margin-left: 0;
}
.sec_sightseeingInfo .sightseeing_list.exp .ttls {
  min-height: 136px;
}
@media screen and (max-width: 480px) {
  .sec_sightseeingInfo .sightseeing_list.exp .ttls {
    min-height: auto;
  }
}
.sec_sightseeingInfo .sightseeing_list .sight {
  position: relative;
  padding-bottom: 85px;
  margin-top: 64px;
}
@media screen and (max-width: 1279px) {
  .sec_sightseeingInfo .sightseeing_list .sight {
    padding-bottom: 128px;
  }
}
@media screen and (max-width: 1024px) {
  .sec_sightseeingInfo .sightseeing_list .sight {
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .sec_sightseeingInfo .sightseeing_list .sight {
    width: 48%;
  }
}
@media screen and (max-width: 480px) {
  .sec_sightseeingInfo .sightseeing_list .sight {
    width: 100%;
    padding-bottom: 0;
  }
}
.sec_sightseeingInfo .sightseeing_list .sight .ttls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}
.sec_sightseeingInfo .sightseeing_list .sight .ttls .ttl {
  font-size: 24px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .sec_sightseeingInfo .sightseeing_list .sight .ttls .ttl {
    font-size: 20px;
  }
}
.sec_sightseeingInfo .sightseeing_list .sight .car_info {
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 5px;
}
.sec_sightseeingInfo .sightseeing_list .sight .sightseeing_link {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 0;
}
@media screen and (max-width: 480px) {
  .sec_sightseeingInfo .sightseeing_list .sight .sightseeing_link {
    position: static;
    padding-top: 15px;
  }
}
.sec_sightseeingInfo .sightseeing_list .sight .sightseeing_link .btn {
  padding: 15px;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.sec_sightseeingInfo .sightseeing_list .sight .sightseeing_link .btn::after {
  top: 16px;
  right: 5px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 1279px) {
  .sec_sightseeingInfo .sightseeing_list .sight .sightseeing_link .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

/***********************
アクセス
***********************/
.sec_accessMain .page_head .blc_ttl {
  letter-spacing: 0.2em;
}
.sec_accessMain .page_head .blc_ttl br {
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_accessMain .page_head .blc_ttl br {
    display: block;
  }
}

.sec_accessIllust {
  position: relative;
  padding: 0;
  max-height: 732px;
}
@media screen and (max-width: 480px) {
  .sec_accessIllust {
    max-height: inherit;
    padding: 26px 5.3%;
  }
}
.sec_accessIllust .img {
  position: relative;
  top: -47px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1280px;
}
@media screen and (max-width: 1024px) {
  .sec_accessIllust .img {
    width: 100%;
    position: relative;
    top: -5%;
  }
}
@media screen and (max-width: 480px) {
  .sec_accessIllust .img {
    top: 0;
  }
}
.sec_accessIllust .img .sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_accessIllust .img .sp {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sec_accessIllust .img .pc {
    display: none;
  }
}

.sec_accessInfo .gmap iframe {
  width: calc(100% + 200px);
  margin-left: -100px;
  height: 448px;
}
@media screen and (max-width: 1280px) {
  .sec_accessInfo .gmap iframe {
    width: 100%;
    margin: 0 auto;
  }
}
.sec_accessInfo .link_box {
  padding-top: 56px;
}
.sec_accessInfo .access_addr {
  padding-top: 56px;
  text-align: center;
}
.sec_accessInfo .access_addr .logo {
  width: 386px;
  display: inline-block;
  vertical-align: top;
  margin-right: 35px;
}
@media screen and (max-width: 1024px) {
  .sec_accessInfo .access_addr .logo {
    display: block;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 480px) {
  .sec_accessInfo .access_addr .logo {
    width: 100%;
  }
}
.sec_accessInfo .access_addr .addr {
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 2;
  display: inline-block;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .sec_accessInfo .access_addr .addr {
    width: 100%;
    font-size: 18px;
    text-align: center;
  }
}

.access_box {
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
  .access_box {
    margin-bottom: 32px;
  }
}
.access_box:last-child {
  margin-bottom: 0;
}
.access_box .img .small {
  display: none;
}
@media screen and (max-width: 480px) {
  .access_box .img .large {
    display: none;
  }
  .access_box .img .small {
    display: block;
  }
}
.access_box .info {
  background: #fff;
  padding: 10px 0;
  letter-spacing: 0.08em;
  font-size: 20px;
  line-height: 1.6;
  margin-top: 32px;
}
@media screen and (max-width: 1024px) {
  .access_box .info {
    font-size: 18px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .access_box .info {
    padding: 10px 20px;
  }
}
.access_box .info .left,
.access_box .info .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.access_box .info .left {
  border-right: solid 1px #899c9b;
  padding: 5px 3.2%;
  width: 27%;
}
@media screen and (max-width: 768px) {
  .access_box .info .left {
    width: 100%;
    border-right: 0;
    border-bottom: solid 1px #899c9b;
    padding: 5px 0;
    margin: 0 1.8%;
  }
}
.access_box .info .right {
  padding: 5px 1.8%;
  width: 73%;
}
@media screen and (max-width: 768px) {
  .access_box .info .right {
    width: 100%;
  }
}

.sec_access .info_ttl {
  text-align: center;
}
@media screen and (max-width: 480px) {
  .sec_access .info_ttl {
    margin-bottom: 25px;
  }
}
.sec_access .car_info {
  border: solid 1px rgba(137, 156, 155, 0.5);
  padding: 30px 6.4%;
}
.sec_access .car_info .ttl {
  font-size: 24px;
  letter-spacing: 0.28em;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .sec_access .car_info .ttl {
    font-size: 20px;
  }
}
.sec_access .car_info .ttl .ico {
  display: inline-block;
  width: 26px;
  margin-right: 26px;
  vertical-align: middle;
}
.sec_access .car_info .desc {
  font-size: 20px;
  line-height: 2.4;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .sec_access .car_info .desc {
    font-size: 18px;
  }
}
.sec_access #links {
  padding-top: 64px;
  display: block;
  font-size: 0;
}
@media screen and (max-width: 1024px) {
  .sec_access #links {
    padding-top: 32px;
  }
}

.sec_accessCommon .bg_white {
  background: rgba(255, 255, 255, 0.5);
}

/***********************
日帰り
***********************/
.sec_day br.sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_day br.sp {
    display: block;
  }
}

.day_main {
  background: url(./images/day/bg_main.jpg) center top no-repeat;
  background-size: 2000px 800px;
  height: 800px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .day_main {
    background-size: cover;
    height: auto;
    padding-bottom: 46px;
  }
}
@media screen and (max-width: 480px) {
  .day_main {
    margin-bottom: 20vw;
  }
  .day_main::after {
    content: "";
    width: 100%;
    height: 40vw;
    display: block;
  }
}
.day_main .blc_pat_main_col {
  padding: 90px 0 100px;
}
@media screen and (max-width: 1024px) {
  .day_main .blc_pat_main_col {
    padding: 90px 0 150px;
  }
}
@media screen and (max-width: 480px) {
  .day_main .blc_pat_main_col {
    padding: 90px 0 0;
  }
}
.day_main .blc_pat_main_col .txt_info {
  padding-right: 0;
}
.day_main .blc_pat_main_col .txt_info .el_desc {
  padding-right: 6.4%;
}
@media screen and (max-width: 1024px) {
  .day_main .blc_pat_main_col .txt_info .el_desc {
    padding-right: 0;
  }
}

.sec_dayMain .page_head {
  margin-bottom: 40px;
}
.sec_dayMain .page_head .msg_stop {
  margin: 15px 0;
}

@media screen and (max-width: 480px) {
  .sec_dayMain .page_sec_head,
  .sec_dayInfo .page_sec_head {
    padding-left: 5.3%;
    padding-right: 5.3%;
  }
}

#course01,
.sec_dayCont {
  padding-top: 64px;
}

.course_blc {
  width: calc(100% + 200px);
  margin-left: -100px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .course_blc {
    width: 100vw;
    margin-left: -5.3vw;
    margin-bottom: 25px;
  }
}

.reserve_info {
  background: #fff;
  margin-top: 64px;
  width: calc(100% + 200px);
  margin-left: -100px;
  height: 120px;
}
@media screen and (max-width: 1024px) {
  .reserve_info {
    margin-top: 32px;
    width: 100%;
    margin-left: 0;
    height: auto;
  }
}
.reserve_info .left {
  width: 37.9%;
  position: relative;
  background: #dfcfc2;
  padding: 25px 5.4%;
  padding-right: 0;
  height: 120px;
}
@media screen and (max-width: 1024px) {
  .reserve_info .left {
    width: 100%;
  }
}
.reserve_info .left::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 0 60px 15px;
  border-color: transparent transparent transparent #dfcfc2;
  position: absolute;
  top: 0;
  right: -15px;
}
@media screen and (max-width: 1024px) {
  .reserve_info .left::after {
    border-style: solid;
    border-width: 15px 60px 0 60px;
    border-color: #dfcfc2 transparent transparent transparent;
    top: initial;
    right: 50%;
    bottom: -15px;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.reserve_info .left .head {
  font-size: 24px;
  color: #899c9b;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .reserve_info .left .head {
    font-size: 20px;
  }
}
.reserve_info .left .head .ico {
  display: inline-block;
  width: 22px;
  margin-right: 15px;
}
.reserve_info .left .ttl {
  font-size: 20px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .reserve_info .left .ttl {
    font-size: 18px;
  }
}
.reserve_info .right {
  width: 54.6%;
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  .reserve_info .right {
    width: 100%;
    padding: 25px 5.4%;
  }
}
.reserve_info .right .name {
  font-size: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .reserve_info .right .name {
    font-size: 18px;
  }
}
.reserve_info .right .tels span,
.reserve_info .right .tels a {
  vertical-align: middle;
  display: inline-block;
  letter-spacing: 0.08em;
}
.reserve_info .right .tels .tel {
  font-size: 20px;
  font-weight: 600;
  color: #899c9b;
}
@media screen and (max-width: 1024px) {
  .reserve_info .right .tels .tel {
    font-size: 18px;
  }
}
.reserve_info .right .tels a {
  font-size: 32px;
  font-weight: 600;
  color: #899c9b;
}
@media screen and (max-width: 1024px) {
  .reserve_info .right .tels a {
    font-size: 28px;
  }
}
.reserve_info .right .tels .min {
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .reserve_info .right .tels .min {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .reserve_info .right .tels .min::before {
    content: "";
    display: block;
    margin-top: 10px;
  }
}

.sec_day .cmn_tbl th {
  width: 21%;
}
.sec_day .cmn_tbl td {
  width: 79%;
}
@media screen and (max-width: 768px) {
  .sec_day .cmn_tbl th,
  .sec_day .cmn_tbl td {
    width: 100%;
  }
}

/***********************
お知らせ
***********************/
.news_lists .news {
  width: 32%;
  margin-bottom: 3%;
  margin-right: 2%;
}
@media screen and (max-width: 768px) {
  .news_lists .news {
    width: 100%;
    margin-right: 0;
  }
}
.news_lists .news:nth-child(3n) {
  margin-right: 0;
}
.news_lists .news .img {
  margin-bottom: 15px;
}
.news_lists .news .info .date {
  font-size: 20px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .news_lists .news .info .date {
    font-size: 18px;
  }
}
.news_lists .news .info .cat {
  font-size: 18px;
  color: #899c9b;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .news_lists .news .info .cat {
    font-size: 16px;
  }
}
.news_lists .news .info .ttl {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .news_lists .news .info .ttl {
    font-size: 18px;
  }
}

.list_page_nav {
  font-size: 18px;
  text-align: left;
}
.list_page_nav span,
.list_page_nav a {
  vertical-align: middle;
  letter-spacing: 0.3em;
  position: relative;
  display: inline-block;
}
.list_page_nav .total {
  margin-right: 10px;
  letter-spacing: 0;
}
@media screen and (max-width: 480px) {
  .list_page_nav .total {
    display: block;
    margin-bottom: 15px;
  }
}
.list_page_nav .num {
  border: solid 1px #919191;
  text-align: center;
  letter-spacing: 0;
  width: 23px;
  height: 23px;
  line-height: 20px;
}
.list_page_nav .num.active {
  background: #919191;
  color: #fff;
}
.list_page_nav .prev,
.list_page_nav .next {
  margin-top: 2px;
  float: none;
}
.list_page_nav .prev {
  margin-right: 15px;
}
@media screen and (max-width: 480px) {
  .list_page_nav .prev {
    margin-right: 5px;
  }
}
.list_page_nav .next {
  margin-left: 15px;
}
@media screen and (max-width: 480px) {
  .list_page_nav .next {
    margin-left: 5px;
  }
}

.news_side .head {
  font-size: 32px;
  letter-spacing: 0.2em;
  text-align: center;
  text-indent: 0.2em;
  color: #899c9b;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .news_side .head {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.news_side .archive_blc {
  width: 50%;
  padding: 20px 0;
  padding-right: 4.6%;
  border-right: solid 1px #c4c4c4;
}
@media screen and (max-width: 768px) {
  .news_side .archive_blc {
    width: 100%;
    padding-right: 0;
    border-bottom: solid 1px #c4c4c4;
    border-right: none;
    padding-bottom: 40px;
  }
}
.news_side .archive_blc .article {
  border: solid 1px #899c9b;
  background: #fff;
  padding: 25px 20px;
  padding-right: 80px;
  font-size: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news_side .archive_blc .article {
    font-size: 18px;
    padding: 20px 15px;
    padding-right: 40px;
  }
}
.news_side .archive_blc .article::after {
  content: "";
  display: block;
  width: 19px;
  height: 13px;
  background: url(./images/news/ico_arw_article.svg) center center no-repeat;
  background-size: 19px 13px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.news_side .archive_blc .article:nth-child(n+2) {
  margin-top: 17px;
}
.news_side .archive_blc .article .date {
  margin-bottom: 10px;
  letter-spacing: 0.2em;
}
.news_side .archive_blc .article .ttl {
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.news_side .category_blc {
  width: 50%;
  padding: 20px 0;
  padding-left: 4.6%;
}
@media screen and (max-width: 768px) {
  .news_side .category_blc {
    width: 100%;
    padding-left: 0;
    padding-bottom: 40px;
  }
}
.news_side .category_blc .cat_blc {
  background: #899c9b;
  padding: 30px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news_side .category_blc .cat_blc {
    padding: 15px 10px;
  }
}
.news_side .category_blc .cat_blc:nth-child(n+2) {
  margin-top: 17px;
}
.news_side .category_blc .cat_blc::after {
  content: "";
  display: block;
  width: 19px;
  height: 13px;
  background: url(./images/news/ico_arw_cat.svg) center center no-repeat;
  background-size: 19px 13px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.news_side .category_blc .cat_blc a {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .news_side .category_blc .cat_blc a {
    font-size: 18px;
  }
}

.news_article .head {
  font-size: 20px;
  margin-bottom: 48px;
}
.news_article .head .date {
  letter-spacing: 0.2em;
}
.news_article .head .ttl {
  padding-top: 10px;
  letter-spacing: 0.08em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .news_article .head {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
.news_article .body .img_center {
  text-align: center;
}
.news_article .body img {
  margin-bottom: 48px;
  width: 55.5%;
}
@media screen and (max-width: 768px) {
  .news_article .body img {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .news_article .body img {
    width: 100%;
  }
}
.news_article .body p {
  font-size: 20px;
  line-height: 2.4;
  letter-spacing: 0.08em;
  margin-bottom: 50px;
}
.news_article .body p:last-child {
  margin-bottom: 38px;
}
@media screen and (max-width: 768px) {
  .news_article .body p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .news_article .body p:last-child {
    margin-bottom: 16px;
  }
}
.news_article .foot {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .news_article .foot {
    margin-bottom: 32px;
  }
}
.news_article .foot .sns {
  margin-bottom: 10px;
}
.news_article .foot .sns a {
  display: inline-block;
  margin-right: 5px;
}
.news_article .foot .sns a.twitter {
  width: 74px;
}
.news_article .foot .sns a.fb {
  width: 94px;
}
.news_article .foot .cat {
  font-size: 20px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .news_article .foot .cat {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */

/* 20230928 added */
.sec_homeInfo {
  padding: 96px 0;
}

.homeInfoItem {
  margin:0 auto 10px;
  box-sizing: border-box;
  width: min(800px, 100%);
  background-color: #fff;
  font-size: 150%;
  line-height: 2.1;
  padding: 25px 20px;
}

.homeInfoItemTitle {
  display: flex;
  gap: 0.8em;
}

.homeInfoItemLabel {
  width: 180px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  font-weight: bold;
  background: #960202;
  border-radius: 5px;
}

.homeInfoItemText {
  margin-top: .5em;
}

@media screen and (max-width: 768px) {
  .homeInfoItemTitle {
    display: block;
  }
  .homeInfoItemLabel {
    margin-bottom: 1em;
  }
}/*# sourceMappingURL=style.css.map */
