@charset "UTF-8";

/* -- Reset --
--------------------------------------------------------------　*/

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%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

nav 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;
  width: 100%;
}

/* 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;
}

ol,
ul {
  list-style: none;
}

@font-face {
  font-family: "Crimson Text";
  src: url("fonts/CrimsonText-Roman.ttf") format("truetype");
}

/* -- mixin--
--------------------------------------------------------------　*/

/* -- framework && common --
--------------------------------------------------------------　*/

/*
  読み込み時フェードイン
  */

body {
  opacity: 0;
  -webkit-animation: anime1 1.2s;
  animation: anime1 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  overflow-x: hidden;
  overflow-y: scroll;
}

@-webkit-keyframes anime1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes anime1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*
  印刷対応
  */

@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a,
  a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after,
  a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after,
  a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}

/* framework ---------------------------------*/

body {
  background: #fff;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  color: #333;
  line-height: 1.5;
  letter-spacing: 1px;
}

@media only screen and (max-width: 767.9px) {
  body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    opacity: 1 !important;
    -webkit-animation: none;
    animation: none;
    font-size: 14px;
    -webkit-text-size-adjust: 100%;
  }
}

h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

#main {
  line-height: 1.7;
  letter-spacing: 1px;
}

header,
#site_navigation,
#mainvisualarea,
#breadcrumb,
#pagetitlearea,
#content,
footer {
  width: 100%;
}

a {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  a:hover {
    outline: 0;
    opacity: 0.7;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
  }
}

a img {
  border: 0;
}

@media print, screen and (min-width: 768px) {
  a img:hover,
  a img:active {
    outline: 0;
    opacity: 0.7;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
  }
}

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

.bx-wrapper .bx-viewport {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* common ---------------------------------*/
.clear:after {
  display: block;
  content: "";
  clear: both;
  overflow: hidden;
}

/* switch */

.switch {
  visibility: hidden;
}

@media only screen and (max-width: 767.9px) {
  .spview,
  .sp_taview,
  .sp_pcview {
    display: block;
  }
  .taview,
  .ta_pcview,
  .pcview {
    display: none;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 960px) {
  .sp_taview,
  .taview,
  .ta_pcview {
    display: block;
  }
  .spview,
  .sp_pcview,
  .pcview {
    display: none;
  }
}

@media print, screen and (min-width: 961px) {
  .sp_pcview,
  .ta_pcview,
  .pcview {
    display: block;
  }
  .spview,
  .sp_taview,
  .taview {
    display: none;
  }
}

/* -- original common --
--------------------------------------------------------------　*/

.mainwrap {
  margin: 0 auto;
}

@media print, screen and (min-width: 768px) and (max-width: 1250px) {
  .mainwrap {
    max-width: 95%;
  }
}

@media print, screen and (min-width: 1251px) {
  .mainwrap {
    max-width: 1200px;
  }
}

@media only screen and (max-width: 767.9px) {
  .c_inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media print, screen and (min-width: 768px) {
  .c_inner {
    padding-top: 85px;
    padding-bottom: 85px;
  }
}

@media only screen and (max-width: 767.9px) {
  .inner_sp {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.gmap {
  cursor: pointer;
}

.gmap iframe {
  pointer-events: none;
}

.gmap.on iframe {
  pointer-events: auto;
}

@media print, screen and (min-width: 768px) {
  a.tel,
  .tel a {
    pointer-events: none;
  }
}

@media only screen and (max-width: 767.9px) {
  .sp_w {
    overflow-x: scroll;
    white-space: nowrap;
  }
  .sp_w::-webkit-scrollbar {
    height: 10px;
  }
  .sp_w::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 5px;
  }
  .sp_w::-webkit-scrollbar-track-piece {
    background: #efefef;
  }
}

/*  title : wrap
/* ------------------------------------ */

.title.nowrap {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

/* -- header --
----------------------　*/

header#header {
  position: relative;
}

@media print, screen and (max-width: 1160px) {
  header#header .header_wrap,
  header#header .header-fixed {
    padding: 10px 15px;
  }
}

@media print, screen and (min-width: 1161px) and (max-width: 1380px) {
  header#header .header_wrap nav,
  header#header .header-fixed nav {
    margin-bottom: 7px;
  }
}

@media print, screen and (min-width: 1161px) {
  header#header .header_wrap nav,
  header#header .header-fixed nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media print, screen and (min-width: 1161px) {
  header#header .header_wrap nav .header_menu,
  header#header .header-fixed nav .header_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media print, screen and (max-width: 1160px) {
  header#header .header_wrap nav .header_menu li,
  header#header .header-fixed nav .header_menu li {
    border-bottom: solid 1px #fff;
  }
  header#header .header_wrap nav .header_menu li a,
  header#header .header-fixed nav .header_menu li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    position: relative;
  }
  header#header .header_wrap nav .header_menu li a:before,
  header#header .header-fixed nav .header_menu li a:before {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    right: 20px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@media print, screen and (min-width: 1161px) and (max-width: 1380px) {
  header#header .header_wrap nav .header_menu li a,
  header#header .header-fixed nav .header_menu li a {
    padding: 0 15px;
  }
}

@media print, screen and (min-width: 1381px) {
  header#header .header_wrap nav .header_menu li a,
  header#header .header-fixed nav .header_menu li a {
    padding: 0 30px;
  }
}

header#header .header_wrap .header_plan a,
header#header .header-fixed .header_plan a {
  display: block;
  text-align: center;
  padding: 12px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
}

header#header .header_wrap .header_plan a span,
header#header .header-fixed .header_plan a span {
  font-size: 14px;
  font-family: "Crimson Text", serif;
}

@media print, screen and (min-width: 1161px) {
  header#header .header_wrap .header_plan a,
  header#header .header-fixed .header_plan a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 1.9;
  }
  header#header .header_wrap .header_plan a span,
  header#header .header-fixed .header_plan a span {
    color: rgba(255, 255, 255, 0.5);
  }
}

header#header .header_wrap .header_plan a:hover,
header#header .header-fixed .header_plan a:hover {
  color: #fff;
  opacity: 1;
}

@media print, screen and (max-width: 1160px) {
  header#header .header_wrap .header_plan a,
  header#header .header-fixed .header_plan a {
    width: 220px;
    font-size: 18px;
    margin: 20px auto;
    padding: 12px;
    line-height: 1.2;
  }
}

@media print, screen and (min-width: 1161px) and (max-width: 1380px) {
  header#header .header_wrap .header_plan a,
  header#header .header-fixed .header_plan a {
    padding: 7px 12px;
  }
}

@media print, screen and (min-width: 1161px) {
  header#header .header_wrap .header_plan a,
  header#header .header-fixed .header_plan a {
    font-size: 18px;
  }
}

@media print, screen and (min-width: 1161px) and (max-width: 1380px) {
  header#header .header_wrap .logo_wrap {
    width: 300px;
    padding: 30px 20px 30px 20px;
  }
}

@media print, screen and (min-width: 1381px) {
  header#header .header_wrap .logo_wrap {
    width: 380px;
    padding: 20px 30px 40px 30px;
  }
}

@media print, screen and (min-width: 1161px) and (max-width: 1380px) {
  header#header .header_wrap .header_right {
    width: calc(100% - 310px);
  }
}

@media print, screen and (min-width: 1381px) {
  header#header .header_wrap .header_right {
    width: calc(100% - 390px);
  }
}

@media print, screen and (min-width: 1161px) {
  header#header .header_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media print, screen and (max-width: 1160px) {
  header#header .header_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 99;
    background-color: #fff;
    -webkit-box-shadow: 0 -2px 5px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 -2px 5px 1px rgba(0, 0, 0, 0.3);
  }
}
@media print, screen and (min-width: 1161px) {
  header#header .header_wrap.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #fff;
    -webkit-box-shadow: 0 -2px 5px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 -2px 5px 1px rgba(0, 0, 0, 0.3);
    animation-name: header_down;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: both;
  }
}

@keyframes header_down {
  0% {
    opacity: 1;
    -moz-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -moz-transform: tarnslate(0, 0);
    -ms-transform: tarnslate(0, 0);
    -webkit-transform: tarnslate(0, 0);
    transform: tarnslate(0, 0);
  }
}
@media print, screen and (min-width: 1161px) {
  header#header .header_wrap.fixed .logo_wrap {
    padding: 12px 20px 12px 20px;
  }
  header#header .header_wrap.fixed .logo_wrap h1 {
    opacity: 0;
    line-height: 0;
    margin-bottom: 0;
  }
  header#header .header_wrap.fixed .header_right .menu_wrap .menu_left .header_top {
    display: none !important;
  }
}

header#header .header_wrap .search_sp {
  position: absolute;
  top: 0;
  right: 55px;
}

@media print, screen and (min-width: 1161px) {
  header#header .header_wrap .search_sp {
    display: none;
  }
  header#header .header_wrap .header_right .menu_wrap .header_sp {
    display: none;
  }
}

header#header .header_wrap .search_sp a {
  display: block;
  color: #fff;
  text-align: center;
  height: 53px;
  font-size: 11px;
  padding: 34px 5px 5px 5px;
  background: url(../images/common/search_wt.png) center 10px no-repeat;
  background-size: 18px;
  letter-spacing: 0;
}

@media print, screen and (max-width: 1160px) {
  header#header .header_wrap .header_right .menu_wrap .menu_left .header_top {
    display: none;
  }
  header#header .header_wrap #toggle .menu-trigger {
    display: inline-block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000;
    width: 55px;
    height: 53px;
    position: absolute;
    z-index: 10000;
    top: 0;
    right: 0;
  }
  header#header .header_wrap #toggle .menu-trigger:hover {
    opacity: 1;
  }
  header#header .header_wrap #toggle .menu-trigger.triggeractive span:nth-child(-n + 3) {
    background-color: #fff;
  }
  header#header .header_wrap #toggle .menu-trigger.triggeractive span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    -ms-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
    top: 10px;
  }
  header#header .header_wrap #toggle .menu-trigger.triggeractive span:nth-of-type(2) {
    opacity: 0;
  }
  header#header .header_wrap #toggle .menu-trigger.triggeractive span:nth-of-type(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
    -ms-transform: translateY(-12px) rotate(45deg);
    transform: translateY(-12px) rotate(45deg);
    top: 31px;
  }
  header#header .header_wrap #toggle .menu-trigger.triggeractive span:nth-of-type(4) {
    color: #fff;
  }
  header#header .header_wrap #toggle .menu-trigger span {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    z-index: 9999;
  }
  header#header .header_wrap #toggle .menu-trigger span:nth-child(-n + 3) {
    height: 2px;
    background-color: #fff;
    width: 30px;
    left: 12px;
  }
  header#header .header_wrap #toggle .menu-trigger span:nth-of-type(1) {
    top: 10px;
  }
  header#header .header_wrap #toggle .menu-trigger span:nth-of-type(2) {
    top: 20px;
  }
  header#header .header_wrap #toggle .menu-trigger span:nth-of-type(3) {
    top: 30px;
  }
  header#header .header_wrap #toggle .menu-trigger span:nth-of-type(4) {
    width: 100%;
    text-align: center;
    left: 0;
    bottom: 3px;
    font-size: 11px;
    color: #fff;
    letter-spacing: 0;
  }
}

@media print, screen and (min-width: 1161px) {
  header#header .header_wrap #toggle {
    display: none;
  }
}

header#header .header_wrap .logo_wrap h1,
header#header .header_wrap .logo_wrap p.msg-txt {
  font-size: 12px;
  margin-bottom: 7px;
  white-space: nowrap;
}

@media print, screen and (max-width: 1160px) {
  header#header .header_wrap .logo_wrap h1,
  header#header .header_wrap .logo_wrap p.msg-txt {
    opacity: 0;
    line-height: 0;
    margin-bottom: 0;
  }
}

@media print, screen and (max-width: 1160px) {
  header#header .header_wrap .logo_wrap .header_logo {
    max-width: 200px;
  }
  header#header .header_wrap .logo_wrap .header_logo img {
    height: 32px;
  }
}

@media print, screen and (min-width: 1161px) and (max-width: 1380px) {
  header#header .header_wrap .header_right .menu_wrap .menu_left {
    padding: 20px 30px 20px 10px;
  }
}

@media print, screen and (min-width: 1381px) {
  header#header .header_wrap .header_right .menu_wrap .menu_left {
    padding: 30px 50px 29px 10px;
  }
}

@media print, screen and (min-width: 1161px) {
  header#header .header_wrap .header_right .menu_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
  }
  header#header .header_wrap .header_right .menu_wrap .menu_left {
    width: calc(100% - 150px);
  }
  header#header .header_wrap .header_right .menu_wrap .menu_left .header_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 25px;
  }
  header#header .header_wrap .header_right .menu_wrap .header_plan {
    width: 150px;
  }
}

@media print, screen and (max-width: 1160px) {
  header#header .header_wrap .header_right .menu_wrap {
    display: none;
  }
  header#header .header_wrap .header_right .menu_wrap.menu_open {
    display: block;
    -webkit-animation: menuin 0.5s ease-in-out forwards;
    animation: menuin 0.5s ease-in-out forwards;
    opacity: 1;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0;
    clear: both;
    z-index: 99;
    position: fixed;
    overflow-y: scroll;
    padding: 0 0 130px 0;
    top: 51px;
    right: 0;
    width: 100%;
    height: 100vh;
  }
}

@media print, screen and (max-width: 1160px) {
  header#header .header_wrap .header_right .menu_wrap .sns_link li a .cls-1 {
    fill: #fff;
  }
  header#header .header_wrap .header_right .menu_wrap .lang_link {
    display: none;
  }
  header#header .header_wrap .dp_lang {
    position: absolute;
    top: 53px;
    right: 0;
    font-size: 18px;
    width: 109px;
  }
  header#header .header_wrap .dp_lang:hover .lang_link {
    visibility: visible;
    opacity: 1;
  }
  header#header .header_wrap .dp_lang:before {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 2px;
    width: 5px;
    height: 5px;
    border: 5px solid transparent;
    border-top: 5px solid #333;
  }
  header#header .header_wrap .dp_lang p {
    font-size: 14px;
    padding: 6px 15px 6px 4px;
    font-weight: 600;
  }
  header#header .header_wrap .lang_link {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s ease-in-out;
  }
  header#header .header_wrap .lang_link li {
    padding: 0 5px;
  }
  header#header .header_wrap .lang_link li a {
    padding: 5px;
    text-align: center;
    border-bottom: solid 1px;
    display: block;
    font-size: 14px;
  }
}

@media print, screen and (min-width: 1161px) {
  header#header .header_wrap .dp_lang {
    display: none;
  }
  header#header .header_wrap .header_right .menu_wrap .lang_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  header#header .header_wrap .header_right .menu_wrap .lang_link li.jp_page a,
  header#header .header_wrap .header_right .menu_wrap .lang_link li.langselect a {
    color: #333;
  }
}

header#header .header_wrap .header_right .menu_wrap .lang_link li a {
  display: inline-block;
  padding: 0 5px;
}

header#header .header_wrap .header_right .menu_wrap .lang_link li:not(:first-of-type):before {
  content: "/";
}

@media print, screen and (min-width: 1161px) {
  header#header .header_wrap .header_right .contant {
    margin-left: 20px;
  }
}

header#header .header_wrap .header_right .contant a {
  display: block;
  text-align: center;
  padding: 7px 15px;
  border: solid 1px;
}

@media print, screen and (max-width: 1160px) {
  header#header .header_wrap .header_right .contant a {
    max-width: 220px;
    margin: 0 auto;
    color: #fff;
  }
}

@media print, screen and (min-width: 1160px) and (max-width: 1280px) {
  header#header .header_wrap .header_right .contant a {
    font-size: 14px;
  }
}

header#header .header_wrap .header_right .contant a span {
  padding-left: 25px;
}

@media print, screen and (max-width: 1160px) {
  header#header .header_wrap .header_right .contant a span {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018.62%2014%22%20width%3D%2220%22%20height%3D%2214%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%3E%3Cg%20id%3D%22side-menu%22%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2218.62%208.43%2016.22%205.93%2018.62%203.86%2018.62%208.43%22%2F%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%222.41%205.93%200%208.43%200%203.86%202.41%205.93%22%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M18.62%2C10.69V13a1%2C1%2C0%2C0%2C1-1%2C1H1a1%2C1%2C0%2C0%2C1-1-1v-2.3L3.6%2C7%2C7.71%2C10.5a2.53%2C2.53%2C0%2C0%2C0%2C3.2%2C0L15%2C7Z%22%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M18.62%2C1V2L9.84%2C9.57a.84.84%2C0%2C0%2C1-1.06%2C0L0%2C2V1A1%2C1%2C0%2C0%2C1%2C1%2C0h16.6A1%2C1%2C0%2C0%2C1%2C18.62%2C1Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 20px;
  }
}

@media print, screen and (min-width: 1161px) {
  header#header .header_wrap .header_right .contant a span {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018.62%2014%22%20width%3D%2220%22%20height%3D%2214%22%3E%3Cg%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%3E%3Cg%20id%3D%22side-menu%22%3E%3Cpolygon%20points%3D%2218.62%208.43%2016.22%205.93%2018.62%203.86%2018.62%208.43%22%2F%3E%3Cpolygon%20points%3D%222.41%205.93%200%208.43%200%203.86%202.41%205.93%22%2F%3E%3Cpath%20d%3D%22M18.62%2C10.69V13a1%2C1%2C0%2C0%2C1-1%2C1H1a1%2C1%2C0%2C0%2C1-1-1v-2.3L3.6%2C7%2C7.71%2C10.5a2.53%2C2.53%2C0%2C0%2C0%2C3.2%2C0L15%2C7Z%22%2F%3E%3Cpath%20d%3D%22M18.62%2C1V2L9.84%2C9.57a.84.84%2C0%2C0%2C1-1.06%2C0L0%2C2V1A1%2C1%2C0%2C0%2C1%2C1%2C0h16.6A1%2C1%2C0%2C0%2C1%2C18.62%2C1Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E")
      left center no-repeat;
    background-size: 20px;
  }
}

@media print, screen and (max-width: 1160px) {
  header#header .header_wrap .header_right .tel {
    text-align: center;
    margin: 25px 0;
  }
}

header#header .header_wrap .header_right .tel a {
  display: inline-block;
  font-size: 28px;
  padding-left: 30px;
}

@media print, screen and (max-width: 1280px) {
  header#header .header_wrap .header_right .tel a {
    font-size: 25px;
  }
}

@media print, screen and (max-width: 1160px) {
  header#header .header_wrap .header_right .tel a {
    color: #fff;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2225%22%20height%3D%2225%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%3E%3Cg%20id%3D%22header%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M12%2C0a12%2C12%2C0%2C0%2C0%2C0%2C24h0a4.43%2C4.43%2C0%2C0%2C0%2C3-1.06%2C3.28%2C3.28%2C0%2C0%2C0%2C.85-3.74%2C3.78%2C3.78%2C0%2C0%2C0%2C.53-.35%2C1.25%2C1.25%2C0%2C0%2C0%2C.36-1.49%2C12.48%2C12.48%2C0%2C0%2C0-2.16-2.23%2C1.08%2C1.08%2C0%2C0%2C0-1.32.44c-.3.45-.54.31-.54.31a10%2C10%2C0%2C0%2C1-2.07-3.12A9.94%2C9.94%2C0%2C0%2C1%2C9.49%2C9.22s0-.27.58-.24a1.1%2C1.1%2C0%2C0%2C0%2C1.15-.79%2C12.83%2C12.83%2C0%2C0%2C0-.47-3.07c-.25-.68-1.18-.69-1.41-.62A3.58%2C3.58%2C0%2C0%2C0%2C6.58%2C7.61a12.53%2C12.53%2C0%2C0%2C0%2C1.36%2C6.53%2C12.49%2C12.49%2C0%2C0%2C0%2C4.37%2C5%2C3.11%2C3.11%2C0%2C0%2C0%2C2.32.5%2C1.89%2C1.89%2C0%2C0%2C1%2C.17.8%2C1.93%2C1.93%2C0%2C0%2C1-.65%2C1.45%2C3.08%2C3.08%2C0%2C0%2C1-2.12.7h0a10.67%2C10.67%2C0%2C1%2C1%2C7.72-3.33.69.69%2C0%2C0%2C0%2C0%2C1%2C.68.68%2C0%2C0%2C0%2C1%2C0%2C12.23%2C12.23%2C0%2C0%2C0%2C1.87-2.58A12%2C12%2C0%2C0%2C0%2C12%2C0Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E")
      left center no-repeat;
    background-size: 25px;
  }
}

@media print, screen and (min-width: 1161px) {
  header#header .header_wrap .header_right .tel a {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2225%22%20height%3D%2225%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23222%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%3E%3Cg%20id%3D%22header%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M12%2C0a12%2C12%2C0%2C0%2C0%2C0%2C24h0a4.43%2C4.43%2C0%2C0%2C0%2C3-1.06%2C3.28%2C3.28%2C0%2C0%2C0%2C.85-3.74%2C3.78%2C3.78%2C0%2C0%2C0%2C.53-.35%2C1.25%2C1.25%2C0%2C0%2C0%2C.36-1.49%2C12.48%2C12.48%2C0%2C0%2C0-2.16-2.23%2C1.08%2C1.08%2C0%2C0%2C0-1.32.44c-.3.45-.54.31-.54.31a10%2C10%2C0%2C0%2C1-2.07-3.12A9.94%2C9.94%2C0%2C0%2C1%2C9.49%2C9.22s0-.27.58-.24a1.1%2C1.1%2C0%2C0%2C0%2C1.15-.79%2C12.83%2C12.83%2C0%2C0%2C0-.47-3.07c-.25-.68-1.18-.69-1.41-.62A3.58%2C3.58%2C0%2C0%2C0%2C6.58%2C7.61a12.53%2C12.53%2C0%2C0%2C0%2C1.36%2C6.53%2C12.49%2C12.49%2C0%2C0%2C0%2C4.37%2C5%2C3.11%2C3.11%2C0%2C0%2C0%2C2.32.5%2C1.89%2C1.89%2C0%2C0%2C1%2C.17.8%2C1.93%2C1.93%2C0%2C0%2C1-.65%2C1.45%2C3.08%2C3.08%2C0%2C0%2C1-2.12.7h0a10.67%2C10.67%2C0%2C1%2C1%2C7.72-3.33.69.69%2C0%2C0%2C0%2C0%2C1%2C.68.68%2C0%2C0%2C0%2C1%2C0%2C12.23%2C12.23%2C0%2C0%2C0%2C1.87-2.58A12%2C12%2C0%2C0%2C0%2C12%2C0Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: left center;
  }
}

header#header .header_wrap .header_right .sns_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media print, screen and (max-width: 1160px) {
  header#header .header_wrap .header_right .sns_link {
    margin: 20px 0 0;
  }
}

@media print, screen and (min-width: 1161px) and (max-width: 1380px) {
  header#header .header_wrap .header_right .sns_link {
    margin: 0 20px;
  }
}

@media print, screen and (min-width: 1381px) {
  header#header .header_wrap .header_right .sns_link {
    margin: 0 40px;
  }
}

header#header .header_wrap .header_right .sns_link li:not(:first-of-type) {
  margin-left: 10px;
}

@media print, screen and (max-width: 1160px) {
  header#header .header_wrap .header_right .sns_link li.insta {
    background: url(../images/sns/insta.png) 50% 50% no-repeat;
    background-size: cover;
  }
}

header#header .header_wrap .header_right .sns_link li,
header#header .header_wrap .header_right .sns_link li a {
  display: inline-block;
  width: 24px;
  height: 24px;
}

/* -- mainvisual --
----------------------　*/

.mainvisual {
  position: relative;
}

.mainvisual li {
  width: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 767.9px) {
  .mainvisual li {
    height: 100vh;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1160px) {
  .mainvisual li {
    height: 70vh;
  }
}

@media print, screen and (min-width: 1161px) {
  .mainvisual li {
    height: calc(100vh - 150px);
  }
}

.mainvisual li div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
}

.slide-animation div {
  -webkit-animation: fadezoom 8s 0s forwards;
  animation: fadezoom 8s 0s forwards;
}

@-webkit-keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.movie {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0px;
  height: auto;
  overflow: hidden;
}

.movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  -webkit-animation: zoomout 12s 0s forwards;
  animation: zoomout 12s 0s forwards;
}

@-webkit-keyframes zoomout {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomout {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.mv_txt {
  position: absolute;
  width: 100%;
  top: 55%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 2;
}
.mvtxt_img.center {
  text-align: center;
}
.mvtxt_img.right {
  text-align: right;
}
@media print, screen and (max-width: 767.9px) {
  .mv_txt {
    top: 50%;
  }
  .mvtxt_img {
    padding: 0 15px;
  }
}
/* -- mv_news --
----------------------　*/

.mv_news {
  padding: 15px 0;
  background-color: #fff;
}
@media print, screen and (min-width: 961px) {
  .mv_news {
    padding: 26px 0;
  }
}

@media print, screen and (min-width: 768px) {
  .mv_news .ticker_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media only screen and (max-width: 767.9px) {
  .mv_news .ticker_wrap h2.ticker_ttl {
    display: none;
  }
}

@media print, screen and (min-width: 768px) {
  .mv_news .ticker_wrap h2.ticker_ttl {
    width: 120px;
  }
}

@media print, screen and (min-width: 961px) {
  .mv_news .ticker_wrap h2.ticker_ttl {
    font-size: 18px;
  }
}

@media print, screen and (min-width: 768px) {
  .mv_news .ticker_wrap .ticker {
    padding-left: 30px;
    width: -webkit-calc(100% - 120px);
    width: calc(100% - 120px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .mv_news .ticker_wrap ul {
    width: 85%;
    position: relative;
  }

  .mv_news .ticker_wrap ul li {
    width: 100%;
  }
}

.mv_news .ticker_wrap ul li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767.9px) {
  .mv_news .ticker_wrap ul li dl {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .mv_news .ticker_wrap ul li dl dt,
  .mv_news .ticker_wrap ul li dl dd {
    width: 100%;
  }
  .mv_news .ticker_wrap ul li dl dd.title a {
    text-decoration: underline;
  }
  .mv_news .ticker_wrap p.more {
    display: none;
  }
}

@media print, screen and (min-width: 768px) {
  .mv_news .ticker_wrap ul li dl dt {
    width: 15%;
  }
  .mv_news .ticker_wrap ul li dl dd {
    width: 65%;
  }
  .mv_news .ticker_wrap ul li dl dd.more {
    width: 15%;
  }
  .mv_news .ticker_wrap ul li dl dd.more {
    text-align: right;
  }
  .mv_news .ticker_wrap p.more {
    width: 13%;
    text-align: right;
  }
}

.mv_news .ticker_wrap ul li dl a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* -- page bg --
----------------------　*/
.pagettl_bg .op_inner {
  background: rgba(57, 57, 57, 0.6);
}
.pagettl_bg {
  background-size: cover;
  background-position: 50% 50%;
}
@media print, screen and (max-width: 1160px) {
  .pagettl_bg,
  .category_bg {
    margin-top: 53px;
  }
}
.pagettl_bg .op_inner {
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (max-width: 767.9px) {
  .pagettl_bg .op_inner {
    height: 200px;
  }
}

.pagettl_bg .op_inner .icon_point {
  text-align: center;
  padding-bottom: 55px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 60px;
}

@media only screen and (max-width: 767.9px) {
  .pagettl_bg .op_inner .icon_point {
    padding-bottom: 40px;
  }
}

.pagettl_bg .op_inner h2 {
  font-size: 50px;

  font-family: "Crimson Text", serif;
  letter-spacing: 5px;
}

@media only screen and (max-width: 767.9px) {
  .pagettl_bg .op_inner h2 {
    font-size: 40px;
  }
}

.pagettl_bg .op_inner p {
  color: #fff;
}

@media only screen and (max-width: 767.9px) {
  .pagettl_bg .op_inner p {
    font-size: 21px;
  }
}

@media print, screen and (min-width: 768px) {
  .pagettl_bg .op_inner p {
    font-size: 24px;
  }
}

.category_bg {
  background-repeat: no-repeat;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (max-width: 767.9px) {
  .category_bg {
    height: 150px;
  }
}

.category_bg h2 {
  font-size: 36px;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 560px) {
  .category_bg h2 {
    font-size: 22px;
  }
}

.pagettl_bg,
.category_bg {
  position: relative;
  z-index: 1;
}

/* -- breadcrumb --
----------------------　*/

#breadcrumb ul {
  padding: 10px;
}

#breadcrumb ul li {
  display: inline-block;
}

@media only screen and (max-width: 767.9px) {
  #breadcrumb ul {
    padding: 20px 10px 10px;
  }
  #breadcrumb ul li {
    font-size: 12px;
  }
}
@media print, screen and (min-width: 768px) {
  #breadcrumb ul li {
    font-size: 14px;
  }
  #breadcrumb {
    padding-top: 20px;
  }
}

#breadcrumb ul li:nth-child(even) {
  padding: 0 5px;
}

@keyframes menuin {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes menuin {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* -- fixed_btn--
--------------------------------------------------------------　*/

.btn_pagetop {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 70px;
  height: 70px;
}

.btn_pagetop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

@media only screen and (max-width: 767.9px) {
  .btn_pagetop {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
  .btn_pagetop a img {
    width: 20px;
  }
}

/* -- footer --
--------------------------------------------------------------*/

footer#main-footer {
  text-align: center;
}

footer#main-footer .footer_wrap {
  color: #fff;
  position: relative;
  z-index: 1;
}

footer#main-footer .footer_wrap a {
  color: #fff;
}

@media only screen and (max-width: 767.9px) {
  footer#main-footer .footer_wrap {
    padding: 30px 0;
  }
}

@media print, screen and (min-width: 768px) {
  footer#main-footer .footer_wrap {
    padding: 50px 0 55px;
  }
}

@media only screen and (max-width: 767.9px) {
  footer#main-footer nav {
    margin-bottom: 20px;
  }
}

@media print, screen and (min-width: 768px) {
  footer#main-footer nav {
    margin-bottom: 45px;
  }
}

footer#main-footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767.9px) {
  footer#main-footer nav ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer#main-footer nav ul li {
    width: 33%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
  }
}

footer#main-footer nav ul li:not(:first-of-type) {
  border-left: solid 1px #fff;
}

@media only screen and (max-width: 767.9px) {
  footer#main-footer nav ul li:nth-child(4) {
    border-left: none;
  }
}

footer#main-footer nav ul li a {
  display: block;
}

@media print, screen and (min-width: 768px) {
  footer#main-footer nav ul li a {
    padding: 0 30px;
  }
}

footer#main-footer .footer_logo {
  max-width: 400px;
  margin: 0 auto 25px;
}

@media only screen and (max-width: 767.9px) {
  footer#main-footer .footer_logo {
    margin: 0 auto 15px;
  }
}

footer#main-footer .footer_add .tel_mail {
  margin: 25px 0;
}

@media only screen and (min-width: 768px) {
  footer#main-footer .footer_add .tel_mail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

footer#main-footer .footer_add .tel_mail li.tel a {
  display: inline-block;
  font-size: 28px;
  padding-left: 30px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2225%22%20height%3D%2225%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%3E%3Cg%20id%3D%22header%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M12%2C0a12%2C12%2C0%2C0%2C0%2C0%2C24h0a4.43%2C4.43%2C0%2C0%2C0%2C3-1.06%2C3.28%2C3.28%2C0%2C0%2C0%2C.85-3.74%2C3.78%2C3.78%2C0%2C0%2C0%2C.53-.35%2C1.25%2C1.25%2C0%2C0%2C0%2C.36-1.49%2C12.48%2C12.48%2C0%2C0%2C0-2.16-2.23%2C1.08%2C1.08%2C0%2C0%2C0-1.32.44c-.3.45-.54.31-.54.31a10%2C10%2C0%2C0%2C1-2.07-3.12A9.94%2C9.94%2C0%2C0%2C1%2C9.49%2C9.22s0-.27.58-.24a1.1%2C1.1%2C0%2C0%2C0%2C1.15-.79%2C12.83%2C12.83%2C0%2C0%2C0-.47-3.07c-.25-.68-1.18-.69-1.41-.62A3.58%2C3.58%2C0%2C0%2C0%2C6.58%2C7.61a12.53%2C12.53%2C0%2C0%2C0%2C1.36%2C6.53%2C12.49%2C12.49%2C0%2C0%2C0%2C4.37%2C5%2C3.11%2C3.11%2C0%2C0%2C0%2C2.32.5%2C1.89%2C1.89%2C0%2C0%2C1%2C.17.8%2C1.93%2C1.93%2C0%2C0%2C1-.65%2C1.45%2C3.08%2C3.08%2C0%2C0%2C1-2.12.7h0a10.67%2C10.67%2C0%2C1%2C1%2C7.72-3.33.69.69%2C0%2C0%2C0%2C0%2C1%2C.68.68%2C0%2C0%2C0%2C1%2C0%2C12.23%2C12.23%2C0%2C0%2C0%2C1.87-2.58A12%2C12%2C0%2C0%2C0%2C12%2C0Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E")
    left center no-repeat;
  background-size: 25px;
}

@media only screen and (max-width: 767.9px) {
  footer#main-footer .footer_add .tel_mail li.tel a {
    font-size: 27px;
  }
  footer#main-footer .footer_add .tel_mail li:not(:first-of-type) span {
    display: none;
  }
}

@media print, screen and (min-width: 768px) {
  footer#main-footer .footer_add .tel_mail li:not(:first-of-type) span {
    padding: 0 10px;
  }
}
footer#main-footer .footer_add .contant a {
  color: #fff;
  border: solid 1px;
  text-align: center;
  padding: 7px 15px;
  margin: 0 auto;
}

@media only screen and (max-width: 767.9px) {
  footer#main-footer .footer_add .contant a {
    display: inline-block;
  }
}

@media print, screen and (min-width: 768px) {
  footer#main-footer .footer_add .contant a {
    font-size: 18px;
    display: block;
    width: 220px;
  }
}

footer#main-footer .footer_add .contant a span {
  padding-left: 25px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018.62%2014%22%20width%3D%2220%22%20height%3D%2214%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%3E%3Cg%20id%3D%22side-menu%22%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2218.62%208.43%2016.22%205.93%2018.62%203.86%2018.62%208.43%22%2F%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%222.41%205.93%200%208.43%200%203.86%202.41%205.93%22%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M18.62%2C10.69V13a1%2C1%2C0%2C0%2C1-1%2C1H1a1%2C1%2C0%2C0%2C1-1-1v-2.3L3.6%2C7%2C7.71%2C10.5a2.53%2C2.53%2C0%2C0%2C0%2C3.2%2C0L15%2C7Z%22%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M18.62%2C1V2L9.84%2C9.57a.84.84%2C0%2C0%2C1-1.06%2C0L0%2C2V1A1%2C1%2C0%2C0%2C1%2C1%2C0h16.6A1%2C1%2C0%2C0%2C1%2C18.62%2C1Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 20px;
}

footer#main-footer .footer_add p.add {
  line-height: 1.7;
}

footer#main-footer .footer_plan a {
  display: block;
  max-width: 300px;
  margin: 20px auto;
  text-align: center;
  padding: 14px;
  line-height: 1.2;
  font-size: 18px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 767.9px) {
  footer#main-footer .footer_plan a {
    width: 220px;
  }
}

footer#main-footer .footer_plan a span {
  font-size: 14px;
  font-family: "Crimson Text", serif;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}

footer#main-footer .footer_plan a:hover {
  color: #fff;
  opacity: 1;
}

footer#main-footer .footer_plan a:hover span {
  color: #fff;
}

footer#main-footer .lang_link,
footer#main-footer .sns_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer#main-footer .lang_link {
  margin: 25px 0;
}

@media only screen and (max-width: 767.9px) {
  footer#main-footer .lang_link {
    margin: 22px 0;
  }
}

@media print, screen and (min-width: 1161px) {
  footer#main-footer .lang_link li.jp_page a,
  footer#main-footer .lang_link li.langselect a {
    color: #fff;
  }
}

footer#main-footer .lang_link li a {
  display: inline-block;
  padding: 0 5px;
}

@media print, screen and (min-width: 1161px) {
  footer#main-footer .lang_link li a {
    color: rgba(255, 255, 255, 0.5);
  }
}

footer#main-footer .lang_link li:not(:first-of-type):before {
  content: "/";
}

footer#main-footer .sns_link li:not(:first-of-type) {
  margin-left: 10px;
}

footer#main-footer .sns_link li a {
  display: inline-block;
}

footer#main-footer .sns_link li a img {
  width: 24px;
}

#copyright {
  text-align: center;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", sans-serif;
}

@media print, screen and (min-width: 768px) {
  #copyright {
    padding: 23px 10px;
  }
}

@media only screen and (max-width: 767.9px) {
  #copyright {
    font-size: 10px;
    padding: 14px 10px;
  }
}

@media print, screen and (min-width: 1161px) {
  footer#main-footer .lang_link li a,
  .en footer#main-footer .lang_link li.jp_page a {
    color: rgba(255, 255, 255, 0.5);
  }
}

footer#main-footer .sns_link li a .cls-1 {
  fill: #fff;
}
/* -- search_form--
--------------------------------------------------------------　*/

@media print, screen and (min-width: 768px) and (max-width: 1250px) {
  .search_form .formwrap {
    max-width: 100%;
  }
}

@media print, screen and (min-width: 1181px) {
  .search_form .formwrap.b_on {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .search_form .formwrap .right_serch {
    width: calc(100% - 300px);
  }
  .search_form .formwrap.b_off .right_serch {
    margin: auto;
  }
  .search_form .formwrap.b_off .right_serch .search_ttl {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.search_form .formwrap .right_serch {
  padding: 15px 0;
}

.search_form .formwrap .right_serch .cancel_btn {
  margin-top: 15px;
  width: 100%;
}

@media print, screen and (max-width: 1020px) {
  .search_form .formwrap .right_serch .cancel_btn {
    text-align: center;
  }
}
@media print, screen and (min-width: 1021px) {
  .search_form .formwrap .right_serch .cancel_btn {
    text-align: right;
  }
}

.search_form .formwrap .right_serch .cancel_btn a {
  font-size: 13px;
  display: inline-block;
  text-decoration: underline;
}

@media print, screen and (max-width: 1180px) {
  .search_form .formwrap .right_serch .search_ttl {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media print, screen and (min-width: 768px) {
  .search_form .formwrap .right_serch .search_ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 7px;
  }
}

.search_form .formwrap .right_serch h2 {
  font-size: 22px;
}

@media print, screen and (max-width: 1240px) {
  .search_form .formwrap .right_serch h2 {
    margin-right: 2%;
    text-align: center;
  }
}

@media print, screen and (min-width: 1021px) {
  .search_form .formwrap .right_serch h2 {
    width: 11%;
  }
}

@media print, screen and (min-width: 1241px) {
  .search_form .formwrap .right_serch h2 {
    width: 120px;
  }
}

.search_form .formwrap .bestrate {
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media print, screen and (max-width: 1180px) {
  .search_form .formwrap .bestrate {
    padding: 10px 10px;
  }
}

@media print, screen and (min-width: 1181px) {
  .search_form .formwrap .bestrate {
    width: 220px;
  }
  .search_form .formwrap .bestrate:before,
  .search_form .formwrap .bestrate:after {
    position: absolute;
    top: 0;
    content: "";
  }
  .search_form .formwrap .bestrate:before {
    right: 99%;
    width: 400%;
    height: 100%;
  }
  .search_form .formwrap .bestrate:after {
    right: -45px;
    width: 45px;
    height: 100%;
  }
}

.search_form .formwrap .bestrate p {
  font-size: 13px;
  line-height: 1.45;
  color: #fff;
}

.search_form .formwrap .bestrate p.ttl {
  font-size: 24px;
  font-weight: 600;
}

@media only screen and (max-width: 560px) {
  .search_form .formwrap .bestrate p.ttl {
    font-size: 22px;
  }
}

.search_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media only screen and (max-width: 767.9px) {
  .search_form form {
    max-width: 560px;
    margin: auto;
    padding: 25px 0;
  }
}

@media print, screen and (max-width: 1020px) {
  .search_form form {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 0;
  }
}

@media print, screen and (max-width: 1180px) {
  .search_form form {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.search_form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 0;
  width: 100%;
  border: solid 1px #c7c7c7;
  background-color: #fff;
  color: #222222;
  font-size: 16px;
  padding: 7px 5px;
  height: 40px;
}

.search_form input[type="button"],
.search_form input[type="text"],
.search_form input[type="submit"],
.search_form input[type="image"],
.search_form textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

.search_form .set_date {
  position: relative;
}

@media only screen and (max-width: 767.9px) {
  .search_form .set_date {
    width: 60%;
    margin: 0 2% 2% 2%;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .search_form .set_date {
    width: 25%;
  }
}

@media print, screen and (min-width: 1021px) {
  .search_form .set_date {
    width: 15%;
  }
}

@media print, screen and (min-width: 1241px) {
  .search_form .set_date {
    width: 160px;
  }
}

.search_form .set_date input {
  width: 100%;
  font-size: 16px;
  padding: 10px 5px;
  border: solid 1px #c7c7c7;
  height: 40px;
}

.search_form .set_date .ui-datepicker-trigger {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 24px;
}

.search_form .set_haku,
.search_form .set_room,
.search_form .set_num {
  margin-left: 2%;
  position: relative;
}

@media only screen and (max-width: 767.9px) {
  .search_form .set_haku,
  .search_form .set_room,
  .search_form .set_num {
    width: 30%;
    margin: 0 2% 2% 2%;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .search_form .set_haku,
  .search_form .set_room,
  .search_form .set_num {
    width: 15%;
  }
}

@media print, screen and (min-width: 1021px) {
  .search_form .set_haku,
  .search_form .set_room,
  .search_form .set_num {
    width: 8%;
  }
}

@media print, screen and (min-width: 1241px) {
  .search_form .set_haku,
  .search_form .set_room,
  .search_form .set_num {
    width: 100px;
    margin-left: 10px;
    height: 40px;
  }
}

.search_form .set_haku:after,
.search_form .set_room:after,
.search_form .set_num:after {
  position: absolute;
  top: 18px;
  right: 10px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  pointer-events: none;
}

@media only screen and (max-width: 767.9px) {
  .search_form .set_haku:after,
  .search_form .set_room:after,
  .search_form .set_num:after {
    top: 17px;
  }
}

.search_form .submit_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .search_form .submit_btn {
    margin-top: 2%;
  }
}

@media print, screen and (max-width: 1020px) {
  .search_form .submit_btn {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 15px;
  }
}

@media print, screen and (min-width: 1021px) {
  .search_form .submit_btn {
    width: 32%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-left: 2%;
  }
}

@media print, screen and (min-width: 1241px) {
  .search_form .submit_btn {
    width: 290px;
    margin-left: 20px;
  }
}

@media only screen and (max-width: 560px) {
  .search_form .submit_btn .submit,
  .search_form .submit_btn .plan {
    width: 40%;
  }
}

@media print, screen and (min-width: 561px) and (max-width: 1020px) {
  .search_form .submit_btn .submit,
  .search_form .submit_btn .plan {
    width: 180px;
  }
}

@media print, screen and (min-width: 1021px) and (max-width: 1240px) {
  .search_form .submit_btn .submit,
  .search_form .submit_btn .plan {
    width: 48%;
  }
}

.search_form .submit_btn input,
.search_form .submit_btn .plan a {
  text-align: center;
  font-size: 18px;
  color: #fff;
  padding: 5px;
  width: 100%;
}

@media only screen and (max-width: 767.9px) {
  .search_form .submit_btn input,
  .search_form .submit_btn .plan a {
    height: 40px;
    font-size: 16px;
  }
}
@media print, screen and (min-width: 768px) {
  .search_form .submit_btn input:hover {
    outline: 0;
    opacity: 0.7;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
  }
}
@media print, screen and (min-width: 1241px) {
  .search_form .submit_btn input,
  .search_form .submit_btn .plan a {
    width: 140px;
  }
}

.search_form .submit_btn input {
  line-height: 1.7;
  border: none;
  font-family: "Noto Serif JP", serif;
  background-repeat: no-repeat;
  background-image: url(../images/common/search_wt.png);
  background-size: 21px;
  background-position: 32px 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 960px) {
  .search_form .submit_btn input {
    background-position: 48px 10px;
  }
}
.search_form .submit_btn .plan {
  margin-left: 10px;
}

.search_form .submit_btn .plan a {
  display: block;
}

/* -- h-common--
--------------------------------------------------------------　*/

main .top_h2 {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  background-repeat: no-repeat;
  background-position: top center;
}

main .top_h2.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2060%2020%22%20width%3D%2260%22%20height%3D%2220%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%3E%3Cg%20id%3D%22contents%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M22%2C19.83a35.81%2C35.81%2C0%2C0%2C1%2C7.82-1.11A27.48%2C27.48%2C0%2C0%2C1%2C38.07%2C20C30%2C16.25%2C22%2C19.83%2C22%2C19.83Z%22%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M11%2C20a12.12%2C12.12%2C0%2C0%2C0%2C5.81-1.46%2C20%2C20%2C0%2C0%2C1-11.24.35c-6.71-2-7.06-8.56.39-10.74.94%2C2%2C4.29%2C4.72%2C11.89%2C4.59a17.56%2C17.56%2C0%2C0%2C0%2C7-1.56c1%2C.6%2C2.65%2C1.71%2C4.69%2C2.75a17.47%2C17.47%2C0%2C0%2C1-6.09%2C1.93%2C10.5%2C10.5%2C0%2C0%2C1-5.66-.9c-.59-.46-1-.56-1.27-.41s-.74.61-1.18.15-.78.2-1.27.1a3.06%2C3.06%2C0%2C0%2C0-1%2C0%2C1.22%2C1.22%2C0%2C0%2C0%2C1.41.26%2C1.51%2C1.51%2C0%2C0%2C1%2C.54-.2c.93.85%2C1.32.1%2C1.52%2C0a1.84%2C1.84%2C0%2C0%2C1%2C.49%2C0c4.23%2C2.55%2C9.2%2C1.12%2C13-.73%2C3.82%2C1.85%2C8.8%2C3.28%2C13%2C.73a1.76%2C1.76%2C0%2C0%2C1%2C.48%2C0c.2.06.59.81%2C1.52%2C0a1.51%2C1.51%2C0%2C0%2C1%2C.54.2A1.22%2C1.22%2C0%2C0%2C0%2C47%2C14.78a3%2C3%2C0%2C0%2C0-1%2C0c-.49.1-.83-.55-1.27-.1s-.88%2C0-1.18-.15-.68%2C0-1.26.41a10.54%2C10.54%2C0%2C0%2C1-5.67.9%2C17.47%2C17.47%2C0%2C0%2C1-6.09-1.93c2-1%2C3.7-2.14%2C4.68-2.75a17.49%2C17.49%2C0%2C0%2C0%2C7%2C1.56c7.62.13%2C11-2.59%2C11.9-4.59%2C7.47%2C2.17%2C7.13%2C8.78.41%2C10.74a20%2C20%2C0%2C0%2C1-11.23-.35A12.07%2C12.07%2C0%2C0%2C0%2C49.06%2C20c4.88.25%2C11.18-2%2C10.93-6.41-.18-3.26-2.71-5-5.78-5.82.6-2-1.41-4.59-5.64-5a10.39%2C10.39%2C0%2C0%2C0-7.13%2C1.81A12.73%2C12.73%2C0%2C0%2C1%2C49.5%2C3.23c4.24.86%2C4.42%2C3.36%2C4.39%2C4a2.15%2C2.15%2C0%2C0%2C1-.08.42A24.32%2C24.32%2C0%2C0%2C0%2C49.35%2C7a23.69%2C23.69%2C0%2C0%2C0-14.26%2C3.64A12.67%2C12.67%2C0%2C0%2C1%2C30.21%2C7a7.1%2C7.1%2C0%2C0%2C0%2C1.27-2.82C32%2C1.06%2C30.75%2C0%2C30%2C0c-1%2C0-1.89%2C1-1.61%2C3.48A7.06%2C7.06%2C0%2C0%2C0%2C29.77%2C7a12.73%2C12.73%2C0%2C0%2C1-4.87%2C3.63A23.7%2C23.7%2C0%2C0%2C0%2C10.65%2C7a23.6%2C23.6%2C0%2C0%2C0-4.48.64%2C1.83%2C1.83%2C0%2C0%2C1-.09-.43c0-.63.15-3.13%2C4.4-4a12.73%2C12.73%2C0%2C0%2C1%2C8.06%2C1.36%2C10.41%2C10.41%2C0%2C0%2C0-7.13-1.81c-4.24.39-6.26%2C3-5.65%2C5C2.71%2C8.61.19%2C10.32%2C0%2C13.57-.24%2C18%2C6.06%2C20.23%2C11%2C20ZM52.82%2C7.82l.85.2c-.69%2C1.53-3.21%2C4.23-11%2C4.19a18.91%2C18.91%2C0%2C0%2C1-7-1.32A23.64%2C23.64%2C0%2C0%2C1%2C52.82%2C7.82ZM28.79%2C3C28.69.61%2C29.77.66%2C30%2C.66s1.37.2%2C1.22%2C2.42a5.13%2C5.13%2C0%2C0%2C1-1.32%2C3.48A6.44%2C6.44%2C0%2C0%2C1%2C28.79%2C3ZM30%2C7.22a13.63%2C13.63%2C0%2C0%2C0%2C4.67%2C3.69l-.55.34c-1.59%2C1-2.94%2C1.8-4.11%2C2.41-1.17-.61-2.51-1.39-4.11-2.41l-.56-.34A13.79%2C13.79%2C0%2C0%2C0%2C30%2C7.22Zm-22.8.6a23.63%2C23.63%2C0%2C0%2C1%2C17.16%2C3.06%2C18.75%2C18.75%2C0%2C0%2C1-7%2C1.33C9.52%2C12.25%2C7%2C9.56%2C6.31%2C8%2C6.59%2C8%2C6.88%2C7.88%2C7.19%2C7.82Z%22%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M40.59%2C14.6c-.19.4.13.67.59.34s.65-.14.65-.14C41.83%2C14.4%2C40.79%2C14.2%2C40.59%2C14.6Z%22%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M19.44%2C14.6c-.19-.4-1.24-.2-1.24.2%2C0%2C0%2C.2-.2.65.14S19.64%2C15%2C19.44%2C14.6Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 60px;
}

main .top_h2.wt p {
  color: #fff;
}

@media only screen and (max-width: 560px) {
  main .top_h2 {
    margin-bottom: 25px;
  }
}

main .top_h2 h2 {
  font-size: 40px;
  letter-spacing: 0.05em;
  font-family: "Crimson Text", serif;
}

@media only screen and (max-width: 560px) {
  main .top_h2 h2 {
    font-size: 30px;
  }
}

@media print, screen and (min-width: 561px) and (max-width: 960px) {
  main .top_h2 h2 {
    font-size: 30px;
  }
}

@media print, screen and (min-width: 961px) {
  main .top_h2 p {
    font-size: 18px;
  }
}

main .mainSub_ttl h2 {
  font-size: 18px;
  margin-bottom: 35px;
}

@media only screen and (max-width: 767.9px) {
  main .mainSub_ttl h2 {
    font-size: 16px;
    margin-bottom: 25px;
  }
}

main .mainSub_ttl h2 span {
  font-family: "Crimson Text", serif;
  font-size: 40px;
  display: inline-block;
  margin-right: 10px;
}

@media only screen and (max-width: 767.9px) {
  main .mainSub_ttl h2 span {
    font-size: 30px;
  }
}

main section {
  position: relative;
}

.lum-lightbox-inner .lum-lightbox-caption {
  position: relative;
  padding: 12px 0;
}

/* -- parts-common--
--------------------------------------------------------------　*/

.link_btn.plan_all a {
  margin: 60px auto 0;
}

@media only screen and (max-width: 767.9px) {
  .link_btn.plan_all a {
    width: 100%;
    max-width: 345px;
  }
}

@media print, screen and (min-width: 768px) {
  .link_btn.plan_all a {
    width: 460px;
  }
}

.link_btn a {
  display: block;
  color: #fff;
  width: 100%;
  nav-index: 300px;
  font-size: 18px;
  text-align: center;
  padding: 20px 10px;
}

.link_btn a span:after {
  content: ">";
  padding-left: 10px;
}

@media only screen and (max-width: 560px) {
  .link_btn a {
    margin: 0 auto;
  }
}

/* -- top-page--
--------------------------------------------------------------　*/

@media only screen and (max-width: 767.9px) {
  .ttl_freetxt {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

@media print, screen and (min-width: 768px) {
  .ttl_freetxt {
    padding: 95px 0;
  }
}

.ttl_freetxt .txt {
  text-align: center;
  line-height: 2;
}

@media print, screen and (min-width: 768px) {
  .ttl_freetxt .txt {
    font-size: 18px;
  }
}

@media print, screen and (min-width: 768px) {
  .ttl_imgtxt {
    padding: 25px 0 75px;
  }
}

@media print, screen and (min-width: 961px) {
  .ttl_imgtxt .top_imgtxt li .mainwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .ttl_imgtxt .top_imgtxt li:nth-child(even) .mainwrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.ttl_imgtxt .top_imgtxt li {
  padding: 75px 0;
  position: relative;
}

@media only screen and (max-width: 767.9px) {
  .ttl_imgtxt .top_imgtxt li {
    padding: 0 0 50px 0;
  }
}

.ttl_imgtxt .top_imgtxt li .mainwrap {
  position: relative;
  z-index: 2;
}

@media print, screen and (min-width: 1280px) {
  .ttl_imgtxt .top_imgtxt li:nth-child(even) .txt_cts {
    padding-left: 0;
    padding-right: 80px;
  }
}

.ttl_imgtxt .top_imgtxt li:nth-child(2):before,
.ttl_imgtxt .top_imgtxt li:nth-child(3):before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 600px;
  height: 1200px;
}

@media only screen and (max-width: 767.9px) {
  .ttl_imgtxt .top_imgtxt li:nth-child(2):before,
  .ttl_imgtxt .top_imgtxt li:nth-child(3):before {
    top: -420px;
    width: 250px;
    height: 500px;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1720px) {
  .ttl_imgtxt .top_imgtxt li:nth-child(2):before,
  .ttl_imgtxt .top_imgtxt li:nth-child(3):before {
    top: -350px;
    width: 300px;
    height: 600px;
  }
}

.ttl_imgtxt .top_imgtxt li:nth-child(2):before {
  right: 0;
}

@media print, screen and (min-width: 1721px) {
  .ttl_imgtxt .top_imgtxt li:nth-child(2):before {
    top: -650px;
  }
}

.ttl_imgtxt .top_imgtxt li:nth-child(3):before {
  left: 0;
}

@media print, screen and (min-width: 1721px) {
  .ttl_imgtxt .top_imgtxt li:nth-child(3):before {
    top: -685px;
  }
}

@media print, screen and (max-width: 960px) {
  .ttl_imgtxt .top_imgtxt li .txt_cts {
    max-width: 640px;
    margin: 0 auto;
  }
}

@media print, screen and (min-width: 961px) and (max-width: 1279px) {
  .ttl_imgtxt .top_imgtxt li .txt_cts {
    padding-top: 30px;
    width: 42%;
  }
}

@media print, screen and (min-width: 1280px) {
  .ttl_imgtxt .top_imgtxt li .txt_cts {
    width: -webkit-calc(100% - 640px);
    width: calc(100% - 640px);
    padding-left: 80px;
    padding-top: 50px;
  }
}

.ttl_imgtxt .top_imgtxt li .txt_cts h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

@media print, screen and (max-width: 960px) {
  .ttl_imgtxt .top_imgtxt li .txt_cts h3 {
    font-size: 21px;
  }
}

.ttl_imgtxt .top_imgtxt li .txt_cts .ttxtarea {
  line-height: 2;
}

.ttl_imgtxt .top_imgtxt li .txt_cts .link_btn {
  margin-top: 35px;
}

@media print, screen and (max-width: 960px) {
  .ttl_imgtxt .top_imgtxt li .txt_cts .link_btn a {
    margin: 20px auto;
  }
}

@media print, screen and (max-width: 960px) {
  .ttl_imgtxt .top_imgtxt li .img_cts {
    text-align: center;
    margin-bottom: 15px;
  }
}

@media print, screen and (min-width: 961px) and (max-width: 1279px) {
  .ttl_imgtxt .top_imgtxt li .img_cts {
    width: 52%;
  }
}

@media print, screen and (min-width: 1280px) {
  .ttl_imgtxt .top_imgtxt li .img_cts {
    width: 640px;
  }
}

.top_gallery {
  position: relative;
}
main .top_gallery .top_h2 h2 {
  color: #fff;
}
@media print, screen and (max-width: 1200px) {
  .top_gallery {
    min-height: 500px;
  }
}

.top_gallery .g_wrap {
  position: relative;
  z-index: 1;
  color: #fff;
}

@media print, screen and (min-width: 768px) {
  .top_gallery .g_wrap .top_h2 {
    margin-bottom: 50px;
  }
}

.top_gallery .g_photo {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

@media print, screen and (max-width: 1200px) {
  .top_gallery .g_photo {
    height: 500px;
  }
}

@media print, screen and (min-width: 1201px) {
  .top_gallery .g_photo {
    height: 600px;
  }
}

.top_gallery .g_photo:after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

@media print, screen and (max-width: 1200px) {
  .top_gallery .g_photo:after {
    height: 500px;
  }
}

@media print, screen and (min-width: 1201px) {
  .top_gallery .g_photo:after {
    height: 600px;
  }
}

@media only screen and (max-width: 767.9px) {
  .top_gallery {
    padding-top: 45px;
    padding-bottom: 53px;
  }
}

@media print, screen and (min-width: 768px) {
  .top_gallery {
    padding: 100px 0 140px;
  }
}

.top_gallery ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767.9px) {
  .top_gallery ul li {
    width: 50%;
  }
}

@media print, screen and (min-width: 561px) {
  .top_gallery ul li {
    width: 20%;
  }
}

.lum-lightbox {
  z-index: 99;
}

.lum-close-button {
  opacity: 1;
  top: 15px;
  right: 15px;
}

@media only screen and (max-width: 767.9px) {
  .lum-lightbox-inner img {
    max-width: 100% !important;
  }
  .lum-gallery-button:after {
    width: 6vw;
    height: 6vw;
  }
}

@media only screen and (max-width: 767.9px) {
  .top_news {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media print, screen and (min-width: 768px) {
  .top_news {
    padding: 85px 0;
  }
}

.top_news ul li {
  border-bottom: solid 1px #c7c7c7;
}

.top_news ul li:first-of-type {
  border-top: solid 1px #c7c7c7;
}

.top_news ul li a {
  display: block;
}

.top_news ul li a:hover {
  opacity: 1;
}

.top_news ul li a:hover dl dd {
  text-decoration: underline;
}

@media print, screen and (min-width: 768px) {
  .top_news ul li a dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .top_news ul li a dl dt,
  .top_news ul li a dl dd {
    padding: 20px;
  }
}

@media only screen and (max-width: 767.9px) {
  .top_news ul li a dl dt {
    padding: 10px 5px 0 5px;
    font-weight: 600;
  }
}

@media print, screen and (min-width: 768px) {
  .top_news ul li a dl dt {
    width: 150px;
  }
}

@media only screen and (max-width: 767.9px) {
  .top_news ul li a dl dd {
    padding: 10px 5px;
  }
}

@media print, screen and (min-width: 768px) {
  .top_news ul li a dl dd {
    width: -webkit-calc(100% - 150px);
    width: calc(100% - 150px);
  }
}

@media only screen and (max-width: 767.9px) {
  .ttl_tbl {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media print, screen and (min-width: 768px) {
  .ttl_tbl {
    padding: 100px 0 120px;
  }
}

.ttl_tbl .guide_tbl dl {
  border-bottom: solid 1px #c7c7c7;
}

.ttl_tbl .guide_tbl dl:first-of-type {
  border-top: solid 1px #c7c7c7;
}

@media print, screen and (min-width: 768px) {
  .ttl_tbl .guide_tbl dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .ttl_tbl .guide_tbl dl dt,
  .ttl_tbl .guide_tbl dl dd {
    padding: 20px;
  }
}

@media only screen and (max-width: 767.9px) {
  .ttl_tbl .guide_tbl dl dt {
    padding: 10px 5px 0 5px;
    font-weight: 600;
  }
}

@media print, screen and (min-width: 961px) {
  .ttl_tbl .guide_tbl dl dt {
    width: 30%;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 960px) {
  .ttl_tbl .guide_tbl dl dt {
    width: 45%;
  }
}

@media only screen and (max-width: 767.9px) {
  .ttl_tbl .guide_tbl dl dd {
    padding: 10px 5px;
  }
}

@media print, screen and (min-width: 961px) {
  .ttl_tbl .guide_tbl dl dd {
    width: 68%;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 960px) {
  .ttl_tbl .guide_tbl dl dd {
    width: 52%;
  }
}

@media print, screen and (min-width: 961px) {
  .ttl_access .map_data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.ttl_access .map_data li.gmap iframe {
  width: 100%;
  vertical-align: bottom;
}

@media only screen and (max-width: 767.9px) {
  .ttl_access .map_data li.gmap iframe {
    height: 375px;
  }
}

@media print, screen and (min-width: 961px) and (max-width: 1279px) {
  .ttl_access .map_data li.gmap {
    width: 55%;
  }
}

@media print, screen and (min-width: 1280px) {
  .ttl_access .map_data li.gmap {
    width: 63%;
  }
}

.ttl_access .map_data li:last-of-type {
  color: #fff;
}

.ttl_access .map_data li:last-of-type .data_wrap {
  margin: 0 auto;
}

@media print, screen and (max-width: 960px) {
  .ttl_access .map_data li:last-of-type {
    padding: 30px 15px;
  }
  .ttl_access .map_data li:last-of-type .data_wrap {
    max-width: 650px;
  }
}

@media print, screen and (min-width: 961px) {
  .ttl_access .map_data li:last-of-type {
    padding: 20px;
    min-height: 560px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ttl_access .map_data li:last-of-type .data_wrap {
    max-width: 450px;
  }
}

@media print, screen and (min-width: 961px) and (max-width: 1279px) {
  .ttl_access .map_data li:last-of-type {
    width: 45%;
  }
}

@media print, screen and (min-width: 1280px) {
  .ttl_access .map_data li:last-of-type {
    width: 37%;
  }
}

.ttl_access .map_data li:last-of-type .ryokan_name {
  padding-bottom: 40px;
  font-size: 24px;
}

@media print, screen and (max-width: 960px) {
  .ttl_access .map_data li:last-of-type .ryokan_name {
    padding-bottom: 10px;
    font-size: 21px;
  }
}

.ttl_access .map_data li:last-of-type dl {
  border-bottom: solid 1px #fff;
}

@media print, screen and (min-width: 768px) {
  .ttl_access .map_data li:last-of-type dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .ttl_access .map_data li:last-of-type dl dt {
    width: 97px;
  }
  .ttl_access .map_data li:last-of-type dl dd {
    width: -webkit-calc(100% - 97px);
    width: calc(100% - 97px);
  }
}

.ttl_access .map_data li:last-of-type dl:first-of-type {
  border-top: solid 1px #fff;
}

.ttl_access .map_data li:last-of-type dl dt,
.ttl_access .map_data li:last-of-type dl dd {
  padding: 20px;
}

@media print, screen and (min-width: 768px) and (max-width: 960px) {
  .ttl_access .map_data li:last-of-type dl dt,
  .ttl_access .map_data li:last-of-type dl dd {
    font-size: 14px;
  }
}

@media print, screen and (max-width: 767.9px) {
  .ttl_access .map_data li:last-of-type dl dt {
    padding: 12px 10px 10px;
  }
}

@media print, screen and (max-width: 767.9px) {
  .ttl_access .map_data li:last-of-type dl dd {
    padding: 0 10px 12px 10px;
  }
}

.ttl_access .map_data li:last-of-type dl dd a {
  color: #fff;
}

@media print, screen and (max-width: 960px) {
  .ttl_access .route_bg {
    padding: 30px 15px;
  }
}

@media print, screen and (min-width: 961px) {
  .ttl_access .route_bg {
    padding: 100px 15px;
  }
}

@media print, screen and (min-width: 768px) {
  .ttl_access .route_bg .access_route.col3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .ttl_access .access_route.col3 li {
    width: 32%;
    margin-right: 2%;
  }
  .ttl_access .access_route.col3 li:nth-child(3n) {
    margin-right: 0;
  }
  .ttl_access .access_route.col3 li:nth-child(n + 4) {
    margin-top: 30px;
  }
}

@media print, screen and (min-width: 768px) {
  .ttl_access .route_bg .access_route.col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .ttl_access .access_route.col2 li {
    width: 48%;
  }
  .ttl_access .access_route.col2 li:nth-child(2n) {
    margin-left: 4%;
  }
  .ttl_access .access_route.col2 li:nth-child(n + 3) {
    margin-top: 30px;
  }
}

@media print, screen and (min-width: 768px) {
  .ttl_access .route_bg .access_route.col1 li {
    margin-bottom: 50px;
  }
}

.ttl_access .route_bg .access_route li {
  background-color: #fff;
}
.ttl_access .route_bg .access_route li h3.access_h3 span {
  background-repeat: no-repeat;
  background-position: left center;
}

@media print, screen and (min-width: 768px) {
  .ttl_access .route_bg .access_route li {
    padding: 30px 25px;
  }
}

@media only screen and (max-width: 767.9px) {
  .ttl_access .route_bg .access_route li:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.ttl_access .route_bg .access_route li h3.access_h3 {
  font-size: 18px;
  padding: 10px;
}
.ttl_access .access_route li h3.access_h3.bus span {
  padding-left: 30px;
  background-size: 25px;
}
@media only screen and (max-width: 767.9px) {
  .ttl_access .route_bg .access_route li h3.access_h3 {
    border: none;
    padding: 20px 17px;
    position: relative;
    cursor: pointer;
  }
  .ttl_access .route_bg .access_route li h3.access_h3 span {
    padding: 7px 5px 7px 30px;
  }
  .ttl_access .route_bg .access_route li h3.access_h3.train span {
    background-size: 20px;
  }
  .ttl_access .route_bg .access_route li h3.access_h3.car span {
    background-size: 25px;
  }

  .ttl_access .route_bg .access_route li h3.access_h3.plane span {
    background-size: 25px;
  }
  .ttl_access .route_bg .access_route li h3.access_h3.on:after {
    top: 30px;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  .ttl_access .route_bg .access_route li h3.access_h3:after {
    content: "";
    position: absolute;
    top: 25px;
    right: 20px;
    width: 12px;
    height: 12px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

@media print, screen and (min-width: 768px) {
  .ttl_access .route_bg .access_route li h3.access_h3 {
    text-align: center;
  }
}

.ttl_access .route_bg .access_route li h3.access_h3.train span {
  padding-left: 30px;
}

@media print, screen and (min-width: 768px) {
  .ttl_access .route_bg .access_route li h3.access_h3.train span {
    background-size: auto 100%;
  }
  .ttl_access .route_bg .access_route li h3.access_h3.car span {
    padding-left: 30px;
    background-size: auto 85%;
  }

  .ttl_access .route_bg .access_route li h3.access_h3.plane span {
    padding-left: 30px;
    background-size: auto 85%;
  }
}

.ttl_access .route_bg .access_route li .access_txt {
  max-width: 90%;
  margin: 0 auto;
  padding-top: 15px;
}

@media only screen and (max-width: 767.9px) {
  .ttl_access .route_bg .access_route li .access_txt {
    padding: 0 0 20px;
  }
}

@media only screen and (max-width: 767.9px) {
  .top_plan {
    padding-top: 45px;
    padding-bottom: 50px;
  }
}

@media print, screen and (min-width: 768px) {
  .top_plan {
    padding: 75px 0 140px;
  }
}
.top_plan ul.page_plan li:nth-child(n + 4) {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .top_plan ul.layout_01,
  .top_plan ul.layout_02,
  .top_plan ul.layout_03,
  .top_plan ul.layout_04 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media print, screen and (min-width: 768px) {
  .top_plan ul.layout_01 > li {
    width: 32%;
    margin-right: 2%;
  }
  .top_plan ul.layout_01 > li:nth-child(3n) {
    margin-right: 0;
  }
}

@media print, screen and (min-width: 768px) {
  .top_plan ul.layout_02 > li {
    width: 23.5%;
    margin-right: 2%;
  }
  .top_plan ul.layout_02 > li:nth-child(4n) {
    margin-right: 0;
  }
}

@media print, screen and (min-width: 768px) {
  .top_plan ul.layout_03 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top_plan ul.layout_03 > li {
    width: 49%;
    margin-right: 2%;
  }
  .top_plan ul.layout_03 > li:nth-child(even) {
    margin-right: 0;
  }
  .top_plan ul.layout_03 > li:nth-child(n + 3) {
    margin-top: 30px;
  }
}

@media print, screen and (min-width: 768px) {
  .top_plan ul.layout_04 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top_plan ul.layout_04 > li {
    width: 49%;
    margin-right: 2%;
  }
  .top_plan ul.layout_04 > li:nth-child(-n + 2) {
    width: 49%;
  }
  .top_plan ul.layout_04 > li:nth-child(n + 3) {
    width: 32%;
  }
  .top_plan ul.layout_04 > li:nth-child(2),
  .top_plan ul.layout_04 > li:nth-child(5) {
    margin-right: 0;
  }
  .top_plan ul.layout_04 > li:nth-child(n + 3) {
    margin-top: 30px;
  }
}

@media print, screen and (min-width: 768px) {
  .top_plan ul.layout_05 > li:not(:first-of-type) {
    margin-top: 50px;
  }
}

@media print, screen and (min-width: 768px) {
  .top_plan ul.layout_05 > li .plan_f {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .top_plan ul.layout_05 > li .plan_f .plan_img {
    width: 30%;
  }
  .top_plan ul.layout_05 > li .plan_f .inner_sp {
    width: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.top_plan ul.layout_05 > li .plan_btn a {
  max-width: 345px;
}

@media only screen and (max-width: 767.9px) {
  .top_plan ul li {
    max-width: 600px;
    margin: 0 auto 30px;
  }
}

@media print, screen and (min-width: 768px) {
  .top_plan ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
  }
}

.top_plan ul li .plan_f h4 {
  font-size: 24px;
  margin: 15px 0;
}

@media print, screen and (max-width: 960px) {
  .top_plan ul li .plan_f h4 {
    font-size: 21px;
  }
}

.top_plan ul li .plan_f .plan_img {
  position: relative;
}

@media only screen and (max-width: 767.9px) {
  .top_plan ul li .plan_f .plan_img {
    padding: 0 15px;
  }
}

.top_plan ul li .plan_f .plan_txt {
  line-height: 2;
}

.top_plan ul li .plan_btn {
  margin-top: 30px;
}

.top_plan ul li .plan_btn p {
  display: block;
  background-color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 18px 10px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}

.top_plan ul li .plan_btn p span:after {
  content: ">";
  padding-left: 10px;
}

@media only screen and (max-width: 767.9px) {
  .top_plan ul li .plan_btn p {
    margin: auto;
  }
}

@media only screen and (max-width: 560px) {
  .top_plan ul li .plan_btn p {
    width: 100%;
  }
}

@media print, screen and (min-width: 561px) and (max-width: 767.9px) {
  .top_plan ul li .plan_btn p {
    width: 300px;
  }
}

.top_plan ul li .plan_btn p:hover {
  color: #fff;
  opacity: 1;
}

/* --------------------------------------------------------------
// page
-------------------------------------------------------------- */

#container {
  overflow: hidden;
}

.p_tag h2 {
  font-weight: 400;
  padding: 7px;
  font-size: 30px;
  margin-bottom: 30px;
  position: relative;
}

@media print, screen and (min-width: 561px) and (max-width: 960px) {
  .p_tag h2 {
    font-size: 28px;
  }
  .p_tag h3 {
    font-size: 21px;
  }
}
@media print, screen and (max-width: 560px) {
  .p_tag h2 {
    font-size: 21px;
  }
  .p_tag h3 {
    font-size: 19px;
  }
}

.p_tag h2:after {
  position: absolute;
  content: " ";
  display: block;
  bottom: -1px;
  width: 30%;
}
.p_tag.layout03 h2:after {
  right: 0;
}

@media print, screen and (min-width: 961px) {
  .p_tag h2:after {
    width: 300px;
  }
}

.p_tag h3 {
  font-weight: 400;
  padding: 7px;
  font-size: 24px;
  margin-bottom: 30px;
  padding-left: 43px;
  /* background-size: 20px; */
  background-repeat: no-repeat;
  background-position: left center;
  display: inline-block;
}
.p_tag.layout02 h3 {
  padding-top: 35px;
  padding-left: 0;
  background-position: center top;
}

.p_tag.layout02 {
  text-align: center;
}
.p_tag.layout03 {
  text-align: right;
}
main.page .top_plan {
  background-color: #fff;
}

main.page .top_plan h2 {
  border: none;
  margin-bottom: 0;
}

.contact main.page .contact_msg p,
.error main.page .contact_msg p,
.complete main.page .contact_msg p,
.confirm main.page .contact_msg p {
  margin-bottom: 1em;
}

main.error {
  background-image: none;
}

@media print, screen and (min-width: 1181px) {
  .txt_imgarea .img_left01 {
    position: relative;
  }
  .txt_imgarea .img_left01:after {
    position: absolute;
    top: -450px;
    right: 0;
    z-index: -1;
  }
  .txt_imgarea .img_right01 {
    position: relative;
  }
  .txt_imgarea .img_right01:after {
    position: absolute;
    top: -330px;
    left: 0;
    z-index: -1;
  }
}

.slidethumb_txt.en > ul {
  padding: 75px 0;
  position: relative;
}

@media only screen and (max-width: 767.9px) {
  .slidethumb_txt.en > ul {
    padding: 0 0 50px 0;
  }
}

@media print, screen and (min-width: 1181px) {
  .slidethumb_txt .img_left01 {
    position: relative;
  }
  .slidethumb_txt .img_left01:after {
    position: absolute;
    top: -350px;
    right: 0;
    z-index: -1;
  }
  .slidethumb_txt .img_right01 {
    position: relative;
  }
  .slidethumb_txt .img_right01:after {
    position: absolute;
    top: -400px;
    left: 0;
    z-index: -1;
  }
}

.txt_imgarea .mainwrap,
.slidethumb_txt .mainwrap {
  position: relative;
  z-index: 2;
}

.txt_imgarea .img_left01,
.slidethumb_txt .img_left01 {
  position: relative;
}

@media only screen and (max-width: 960px) {
  .txt_imgarea .img_left01 li,
  .slidethumb_txt .img_left01 li {
    position: relative;
    z-index: 1;
  }
  .txt_imgarea .img_left01:after,
  .slidethumb_txt .img_left01:after {
    content: "";
    display: block;
    position: absolute;
    top: 150px;
    right: 0;
    width: 250px;
    height: 500px;
    z-index: 0;
  }
}

.txt_imgarea .img_right01,
.slidethumb_txt .img_right01 {
  position: relative;
}

@media only screen and (max-width: 767.9px) {
  .txt_imgarea .img_right01 li,
  .slidethumb_txt .img_right01 li {
    position: relative;
    z-index: 1;
  }
  .txt_imgarea .img_right01:after,
  .slidethumb_txt .img_right01:after {
    content: "";
    display: block;
    position: absolute;
    top: 150px;
    left: 0;
    width: 250px;
    height: 500px;
    z-index: -1;
  }
}

@media only screen and (max-width: 767.9px) {
  .txt_imgarea .img_left02 > li .img_area,
  .txt_imgarea .img_right02 > li .img_area,
  .slidethumb_txt .img_left02 > li .img_area,
  .slidethumb_txt .img_right02 > li .img_area {
    text-align: center;
    margin-bottom: 20px;
  }
}

@media print, screen and (min-width: 768px) {
  .txt_imgarea .img_left02 > li,
  .txt_imgarea .img_right02 > li,
  .slidethumb_txt .img_left02 > li,
  .slidethumb_txt .img_right02 > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 960px) {
  .txt_imgarea .img_left01 > li,
  .txt_imgarea .img_right01 > li,
  .slidethumb_txt .img_left01 > li,
  .slidethumb_txt .img_right01 > li {
    max-width: 560px;
    margin: 0 auto 30px;
  }
}

.txt_imgarea .img_left01 > li:not(:first-of-type),
.txt_imgarea .img_right01 > li:not(:first-of-type),
.slidethumb_txt .img_left01 > li:not(:first-of-type),
.slidethumb_txt .img_right01 > li:not(:first-of-type) {
  margin-top: 50px;
}

@media print, screen and (min-width: 961px) {
  .txt_imgarea .img_left01 > li .img_area,
  .txt_imgarea .img_right01 > li .img_area,
  .slidethumb_txt .img_left01 > li .img_area,
  .slidethumb_txt .img_right01 > li .img_area {
    width: 48%;
  }
  .txt_imgarea .img_left01 > li .txt_area,
  .txt_imgarea .img_right01 > li .txt_area,
  .slidethumb_txt .img_left01 > li .txt_area,
  .slidethumb_txt .img_right01 > li .txt_area {
    width: 48%;
  }
  .txt_imgarea .img_left01 > li,
  .txt_imgarea .img_right01 > li,
  .slidethumb_txt .img_left01 > li,
  .slidethumb_txt .img_right01 > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.txt_imgarea .img_left01 > li .txt_area h4,
.txt_imgarea .img_right01 > li .txt_area h4,
.slidethumb_txt .img_left01 > li .txt_area h4,
.slidethumb_txt .img_right01 > li .txt_area h4,
.slide_thumb .txt_area h4,
.txt_carousel__wrap h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
}

@media print, screen and (min-width: 561px) and (max-width: 960px) {
  .txt_imgarea .img_left01 > li .txt_area h4,
  .txt_imgarea .img_right01 > li .txt_area h4,
  .slidethumb_txt .img_left01 > li .txt_area h4,
  .slidethumb_txt .img_right01 > li .txt_area h4,
  .slide_thumb .txt_area h4,
  .txt_carousel__wrap h4 {
    font-size: 21px;
  }
  .txt_imgarea .img_left01 > li .img_area,
  .txt_imgarea .img_right01 > li .img_area,
  .slidethumb_txt .img_left01 > li .img_area,
  .slidethumb_txt .img_right01 > li .img_area {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media print, screen and (max-width: 560px) {
  .txt_imgarea .img_left01 > li .txt_area h4,
  .txt_imgarea .img_right01 > li .txt_area h4,
  .slidethumb_txt .img_left01 > li .txt_area h4,
  .slidethumb_txt .img_right01 > li .txt_area h4,
  .slide_thumb .txt_area h4,
  .txt_carousel__wrap h4 {
    font-size: 19px;
  }
}
@media print, screen and (min-width: 768px) {
  .txt_imgarea .img_right01 > li,
  .txt_imgarea .img_right02 > li,
  .slidethumb_txt .img_right01 > li,
  .slidethumb_txt .img_right02 > li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.txt_imgarea .img_left02,
.txt_imgarea .img_right02,
.slidethumb_txt .img_left02,
.slidethumb_txt .img_right02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media only screen and (max-width: 560px) {
  .txt_imgarea .img_left02,
  .txt_imgarea .img_right02,
  .slidethumb_txt .img_left02,
  .slidethumb_txt .img_right02 {
    flex-wrap: wrap;
  }
  .txt_imgarea .img_left02 > li,
  .txt_imgarea .img_right02 > li,
  .slidethumb_txt .img_left02 > li,
  .slidethumb_txt .img_right02 > li {
    width: 49%;
  }
  .txt_imgarea .img_left02 > li:nth-child(even),
  .txt_imgarea .img_right02 > li:nth-child(even),
  .slidethumb_txt .img_left02 > li:nth-child(even),
  .slidethumb_txt .img_right02 > li:nth-child(even) {
    margin-left: 2%;
  }
}

@media print, screen and (min-width: 561px) {
  .txt_imgarea .img_left02,
  .txt_imgarea .img_right02,
  .slidethumb_txt .img_left02,
  .slidethumb_txt .img_right02 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .txt_imgarea .img_left02 > li,
  .txt_imgarea .img_right02 > li,
  .slidethumb_txt .img_left02 > li,
  .slidethumb_txt .img_right02 > li {
    width: 48%;
  }
  .txt_imgarea .img_left02 > li:nth-child(even),
  .txt_imgarea .img_right02 > li:nth-child(even),
  .slidethumb_txt .img_left02 > li:nth-child(even),
  .slidethumb_txt .img_right02 > li:nth-child(even) {
    margin-left: 4%;
  }
  .txt_imgarea .img_left02 > li:nth-child(n + 3),
  .txt_imgarea .img_right02 > li:nth-child(n + 3),
  .slidethumb_txt .img_left02 > li:nth-child(n + 3),
  .slidethumb_txt .img_right02 > li:nth-child(n + 3) {
    margin-top: 2%;
  }
}

@media print, screen and (min-width: 768px) {
  .txt_imgarea .img_left02 > li .img_area,
  .txt_imgarea .img_left02 > li .txt_area,
  .txt_imgarea .img_right02 > li .img_area,
  .txt_imgarea .img_right02 > li .txt_area,
  .slidethumb_txt .img_left02 > li .img_area,
  .slidethumb_txt .img_left02 > li .txt_area,
  .slidethumb_txt .img_right02 > li .img_area,
  .slidethumb_txt .img_right02 > li .txt_area {
    width: 48%;
  }
}

@media only screen and (max-width: 767.9px) {
  .txt_imgarea .img_left02 > li,
  .txt_imgarea .img_right02 > li,
  .slidethumb_txt .img_left02 > li,
  .slidethumb_txt .img_right02 > li {
    margin-bottom: 30px;
  }
}

.txt_imgarea .img_left02 > li .txt_area h4,
.txt_imgarea .img_right02 > li .txt_area h4,
.slidethumb_txt .img_left02 > li .txt_area h4,
.slidethumb_txt .img_right02 > li .txt_area h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
}

@media print, screen and (min-width: 561px) and (max-width: 960px) {
  .txt_imgarea .img_left02 > li .txt_area h4,
  .txt_imgarea .img_right02 > li .txt_area h4,
  .slidethumb_txt .img_left02 > li .txt_area h4,
  .slidethumb_txt .img_right02 > li .txt_area h4 {
    font-size: 21px;
  }
}
@media print, screen and (max-width: 560px) {
  .txt_imgarea .img_left01 > li .txt_area h4,
  .txt_imgarea .img_right01 > li .txt_area h4,
  .slidethumb_txt .img_left01 > li .txt_area h4,
  .slidethumb_txt .img_right01 > li .txt_area h4,
  .slide_thumb .txt_area h4 {
    font-size: 19px;
  }
}
.txt_imgarea .img_top01 > li .img_area,
.txt_imgarea .img_top02 > li .img_area,
.txt_imgarea .img_top03 > li .img_area,
.txt_imgarea .img_top04 > li .img_area,
.slidethumb_txt .img_top01 > li .img_area,
.slidethumb_txt .img_top02 > li .img_area,
.slidethumb_txt .img_top03 > li .img_area,
.slidethumb_txt .img_top04 > li .img_area {
  margin-bottom: 20px;
  text-align: center;
}

.txt_imgarea .img_top01 > li .txt_area h4,
.txt_imgarea .img_top02 > li .txt_area h4,
.txt_imgarea .img_top03 > li .txt_area h4,
.txt_imgarea .img_top04 > li .txt_area h4,
.slidethumb_txt .img_top01 > li .txt_area h4,
.slidethumb_txt .img_top02 > li .txt_area h4,
.slidethumb_txt .img_top03 > li .txt_area h4,
.slidethumb_txt .img_top04 > li .txt_area h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
}

@media print, screen and (min-width: 561px) and (max-width: 960px) {
  .txt_imgarea .img_top01 > li .txt_area h4,
  .txt_imgarea .img_top02 > li .txt_area h4,
  .txt_imgarea .img_top03 > li .txt_area h4,
  .txt_imgarea .img_top04 > li .txt_area h4,
  .slidethumb_txt .img_top01 > li .txt_area h4,
  .slidethumb_txt .img_top02 > li .txt_area h4,
  .slidethumb_txt .img_top03 > li .txt_area h4,
  .slidethumb_txt .img_top04 > li .txt_area h4 {
    font-size: 21px;
  }
}
@media print, screen and (max-width: 560px) {
  .txt_imgarea .img_top01 > li .txt_area h4,
  .txt_imgarea .img_top02 > li .txt_area h4,
  .txt_imgarea .img_top03 > li .txt_area h4,
  .txt_imgarea .img_top04 > li .txt_area h4,
  .slidethumb_txt .img_top01 > li .txt_area h4,
  .slidethumb_txt .img_top02 > li .txt_area h4,
  .slidethumb_txt .img_top03 > li .txt_area h4,
  .slidethumb_txt .img_top04 > li .txt_area h4 {
    font-size: 19px;
  }
}
.txt_imgarea .img_top01 > li,
.slidethumb_txt .img_top01 > li {
  margin-bottom: 30px;
}

@media only screen and (max-width: 560px) {
  .txt_imgarea .img_top02 > li,
  .slidethumb_txt .img_top02 > li {
    margin-bottom: 30px;
  }
}

@media print, screen and (min-width: 561px) {
  .txt_imgarea .img_top02,
  .slidethumb_txt .img_top02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .txt_imgarea .img_top02 > li,
  .slidethumb_txt .img_top02 > li {
    width: 49%;
  }
  .txt_imgarea .img_top02 > li:nth-child(even),
  .slidethumb_txt .img_top02 > li:nth-child(even) {
    margin-left: 2%;
  }
  .txt_imgarea .img_top02 > li:nth-child(even) .img_area,
  .txt_imgarea .img_top02 > li:nth-child(even) .txt_area,
  .slidethumb_txt .img_top02 > li:nth-child(even) .img_area,
  .slidethumb_txt .img_top02 > li:nth-child(even) .txt_area {
    max-width: 560px;
    margin-left: auto;
  }
  .txt_imgarea .img_top02 > li:nth-child(n + 3),
  .slidethumb_txt .img_top02 > li:nth-child(n + 3) {
    margin-top: 4%;
  }
}
@media print, screen and (min-width: 1181px) {
  .txt_imgarea .img_top02 > li,
  .slidethumb_txt .img_top02 > li {
    width: 47.5%;
  }
  .txt_imgarea .img_top02 > li:nth-child(even),
  .slidethumb_txt .img_top02 > li:nth-child(even) {
    margin-left: 5%;
  }
}
@media print, screen and (min-width: 768px) {
  .txt_imgarea .img_top03,
  .slidethumb_txt .img_top03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .txt_imgarea .img_top03 > li,
  .slidethumb_txt .img_top03 > li {
    width: 32%;
    margin-right: 2%;
  }
  .txt_imgarea .img_top03 > li:nth-child(3n),
  .slidethumb_txt .img_top03 > li:nth-child(3n) {
    margin-right: 0;
  }
  .txt_imgarea .img_top03 > li:nth-child(n + 4),
  .slidethumb_txt .img_top03 > li:nth-child(n + 4) {
    margin-top: 4%;
  }
}

@media only screen and (max-width: 767.9px) {
  .txt_imgarea .img_top03 > li,
  .slidethumb_txt .img_top03 > li {
    max-width: 560px;
    margin: 0 auto 30px;
  }
}

.txt_imgarea .img_top04,
.slidethumb_txt .img_top04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media print, screen and (max-width: 767.9px) {
  .txt_imgarea .img_top04,
  .slidethumb_txt .img_top04 {
    padding: 0 15px;
  }
}

@media print, screen and (max-width: 767.9px) {
  .txt_imgarea .img_top04 > li,
  .slidethumb_txt .img_top04 > li {
    width: 48%;
  }
  .txt_imgarea .img_top04 > li .txt_area.inner_sp,
  .slidethumb_txt .img_top04 > li .txt_area.inner_sp {
    padding-left: 0;
    padding-right: 0;
  }
  .txt_imgarea .img_top04 > li:nth-child(even),
  .slidethumb_txt .img_top04 > li:nth-child(even) {
    margin-left: 4%;
  }
  .txt_imgarea .img_top04 > li:nth-child(n + 3),
  .slidethumb_txt .img_top04 > li:nth-child(n + 3) {
    margin-top: 4%;
  }
}

@media print, screen and (min-width: 768px) {
  .txt_imgarea .img_top04 > li,
  .slidethumb_txt .img_top04 > li {
    width: 23.5%;
    margin-right: 2%;
  }
  .txt_imgarea .img_top04 > li:nth-child(4n),
  .slidethumb_txt .img_top04 > li:nth-child(4n) {
    margin-right: 0;
  }
  .txt_imgarea .img_top04 > li:nth-child(n + 5),
  .slidethumb_txt .img_top04 > li:nth-child(n + 5) {
    margin-top: 4%;
  }
}

.txt_imgarea .link_url,
.slidethumb_txt .link_url,
.slide_thumb .link_url {
  text-align: right;
}

.txt_imgarea .link_url,
.slidethumb_txt .link_url,
.slide_thumb .link_url {
  margin-top: 20px;
}

@media print, screen and (min-width: 768px) {
  .txt_imgarea .link_url a,
  .slidethumb_txt .link_url a,
  .slide_thumb .link_url a {
    padding-right: 1em;
  }
}

.txt_imgarea .link_url a:hover,
.slidethumb_txt .link_url a:hover,
.slide_thumb .link_url a:hover {
  opacity: 1;
  text-decoration: underline;
}

.link_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
}

@media print, screen and (max-width: 960px) {
  .link_list ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.link_list ul.bg li a {
  color: #fff;
}

.link_list ul.bg li a:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.link_list ul.bg li a:hover {
  background-color: #fff;
}

@media print, screen and (max-width: 960px) {
  .link_list ul li {
    width: 49%;
    margin-right: 2%;
  }
  .link_list ul li:nth-child(2n) {
    margin-right: 0;
  }
  .link_list ul li:nth-child(n + 3) {
    margin-top: 2%;
  }
}

@media print, screen and (min-width: 961px) {
  .link_list ul li {
    width: 18.4%;
    margin-right: 2%;
  }
  .link_list ul li:nth-child(5n) {
    margin-right: 0;
  }
  .link_list ul li:nth-child(n + 6) {
    margin-top: 2%;
  }
}

.link_list ul li a {
  display: block;
  text-align: center;
  font-size: 18px;
  padding: 19px 25px 19px 7px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}

.link_list ul li a:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  content: "";
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.link_list ul li a:hover {
  color: #fff;
  opacity: 1;
}

.link_list ul li a:hover:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

@media print, screen and (min-width: 961px) {
  .tbl_contents .tbl_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .tbl_contents .tbl_flex > li:first-of-type {
    width: 40%;
  }
  .tbl_contents .tbl_flex > li:nth-child(2) {
    width: 55%;
  }
}

@media only screen and (max-width: 961px) {
  .tbl_contents .tbl_flex > li:first-of-type {
    margin-bottom: 19px;
    text-align: center;
  }
}

.tbl_contents table tr:first-of-type {
  border-top: solid 1px #c7c7c7;
}
.tbl_contents table tr {
  border-bottom: solid 1px #c7c7c7;
}

.tbl_contents table th {
  vertical-align: middle;
}
@media only screen and (max-width: 767.9px) {
  .tbl_contents table th,
  .tbl_contents table td {
    display: block;
    width: 100%;
  }
}

@media print, screen and (min-width: 768px) {
  .tbl_contents table th,
  .tbl_contents table td {
    padding: 20px;
  }
}

@media only screen and (max-width: 767.9px) {
  .tbl_contents table th {
    padding: 10px 5px;
    font-weight: 600;
  }
  .tbl_contents table td {
    padding: 0 5px 10px 5px;
  }
}

@media print, screen and (min-width: 768px) {
  .accordion ul.other .sd_h4 {
    padding: 20px 65px 20px 20px;
  }
}

@media print, screen and (min-width: 768px) {
  .accordion ul.other .sd_content {
    padding: 0 20px 20px;
  }
}

.accordion ul.other table th {
  display: none;
}

.accordion ul li {
  border-bottom: solid 1px #c7c7c7;
}

.accordion ul li table th {
  width: 55px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

@media only screen and (max-width: 767.9px) {
  .accordion ul li table th {
    width: 30px;
  }
}

.accordion ul li .sd_h4 {
  position: relative;
}

@media only screen and (max-width: 767.9px) {
  .accordion ul li .sd_h4 {
    padding: 10px 30px 10px 0;
  }
}

@media print, screen and (min-width: 768px) {
  .accordion ul li .sd_h4 {
    padding: 20px 65px 20px 0;
  }
}

.accordion ul li .sd_h4.on:after {
  top: 35%;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

.accordion ul li .sd_h4:after {
  content: "";
  position: absolute;
  top: 40%;
  right: 35px;
  width: 17px;
  height: 17px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767.9px) {
  .accordion ul li .sd_h4:after {
    top: 42%;
    right: 10px;
    width: 12px;
    height: 12px;
  }
}

.accordion ul li .sd_h4:hover {
  cursor: pointer;
}

.accordion ul li .sd_h4 table th,
.accordion ul li .sd_h4 table td {
  font-weight: 600;
}

@media only screen and (max-width: 767.9px) {
  .accordion ul li .sd_h4 table th,
  .accordion ul li .sd_h4 table td {
    font-size: 16px;
  }
}

@media print, screen and (min-width: 768px) {
  .accordion ul li .sd_h4 table th,
  .accordion ul li .sd_h4 table td {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767.9px) {
  .accordion ul li .sd_content {
    padding-bottom: 10px;
  }
}

@media print, screen and (min-width: 768px) {
  .accordion ul li .sd_content {
    padding-bottom: 20px;
  }
}

.slide_carousel button.slick-prev,
.slide_carousel button.slick-next {
  width: 30px;
  height: 100px;
  z-index: 1;
}

@media only screen and (max-width: 767.9px) {
  .slide_carousel button.slick-prev,
  .slide_carousel button.slick-next {
    width: 18px;
    height: 53px;
  }
}

.slide_carousel button.slick-prev:before,
.slide_carousel button.slick-next:before {
  content: none;
}

@media only screen and (max-width: 767.9px) {
  .slide_carousel button.slick-prev {
    left: 51px;
    top: 48%;
  }
}

@media print, screen and (min-width: 1321px) {
  .slide_carousel button.slick-prev {
    left: -35px;
  }
}

@media only screen and (max-width: 767.9px) {
  .slide_carousel button.slick-next {
    right: 51px;
    top: 48%;
  }
}

@media print, screen and (min-width: 1321px) {
  .slide_carousel button.slick-next {
    right: -35px;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1320px) {
  .slide_carousel .carousel03 {
    margin: 0 20px;
  }
}
.carousel03.type01 .slick-prev,
.carousel03.type01 .slick-next {
  display: none !important;
}
.carousel03.type02 .slick-dots {
  display: none !important;
}

.slide_carousel .carousel03 li {
  padding: 10px;
}
.slide_carousel .carousel03 a {
  display: block;
}
.slide_carousel .carousel03 .link_none a {
  pointer-events: none;
}
@media only screen and (max-width: 767.9px) {
  .slide_carousel .carousel03 li {
    padding: 0 15px;
  }
}

.slide_carousel .carousel03 li p {
  text-align: center;
  margin-top: 10px;
}

@media only screen and (max-width: 767.9px) {
  .slidethumb_txt .slick-dotted.slick-slider,
  .slide_thumb .slick-dotted.slick-slider {
    margin-bottom: 18px;
  }
}

.slidethumb_txt .slick-slide img,
.slide_thumb .slick-slide img {
  margin: auto;
}

.slidethumb_txt .slick-dots,
.slide_thumb .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
  position: relative;
  bottom: auto;
}
.slide_thumb .slick-dots,
.slidethumb_txt .slick-dots.ctr {
  justify-content: center;
}
@media only screen and (max-width: 767.9px) {
  .slidethumb_txt .slick-dots,
  .slide_thumb .slick-dots {
    margin-top: 15px;
  }
}

.slidethumb_txt .slick-dots li,
.slide_thumb .slick-dots li {
  list-style: none;
  display: inline-block;
  margin: 0;
  background-color: #000;
  width: 18.8%;
  height: auto;
}
.slidethumb_txt .slick-dots li:nth-child(n + 6),
.slide_thumb .slick-dots li:nth-child(n + 6) {
  margin-top: 10px;
}
@media print, screen and (min-width: 981px) {
  .slidethumb_txt .slick-dots,
  .slide_thumb .slick-dots {
    max-width: 440px;
    margin: 20px auto 0;
  }
  .slidethumb_txt .slick-dots li:first-of-type,
  .slide_thumb .slick-dots li:first-of-type,
  .slidethumb_txt .slick-dots li:nth-child(6n),
  .slide_thumb .slick-dots li:nth-child(6n) {
    margin-left: 10px;
  }
}

.slidethumb_txt .slick-dots li,
.slide_thumb .slick-dots li {
  margin-left: 1.5%;
}
.slidethumb_txt .slick-dots li:first-of-type,
.slide_thumb .slick-dots li:first-of-type,
.slidethumb_txt .slick-dots li:nth-child(6n),
.slide_thumb .slick-dots li:nth-child(6n) {
  margin-left: 0;
}

.slidethumb_txt .slick-dots li img,
.slide_thumb .slick-dots li img {
  opacity: 0.5;
  width: 100%;
  height: auto;
}

.slidethumb_txt .slick-dots li.slick-active img,
.slide_thumb .slick-dots li.slick-active img {
  opacity: 1;
}

.slide_thumb p {
  text-align: center;
  padding-top: 20px;
}

@media only screen and (max-width: 767.9px) {
  .slide_thumb p {
    padding-top: 17px;
  }
}

.slide_thumb .slick-dots {
  padding-top: 10px;
  max-width: 580px;
  margin: 0 auto;
  position: static;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 767.9px) {
  .slide_thumb .slick-dots {
    max-width: 330px;
  }
}
.slide_thumb .txt_area {
  padding-top: 50px;
  padding-bottom: 50px;
}
/* --------------------------------------------------------------
// category
// single page
-------------------------------------------------------------- */
.wp-caption {
  max-width: 100% !important;
}
@media print, screen and (min-width: 768px) {
  .c_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: flex-start;
  }
  .c_wrap .post {
    width: 67%;
  }
  .c_wrap .sidebar {
    width: 27%;
  }
}

.c_wrap .post .post_ttl {
  margin-bottom: 30px;
}

.c_wrap .post .post_ttl h1 {
  padding-bottom: 7px;
  margin-bottom: 7px;
  font-weight: normal;
  text-align: left;
  border-bottom: solid 1px #333;
  font-size: 25px;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 560px) {
  .c_wrap .post .post_ttl h1 {
    font-size: 18px;
  }
}

.c_wrap .post .post_ttl .date {
  text-align: right;
}

.c_wrap .post .acv_list li {
  border-bottom: solid 1px #c7c7c7;
  padding: 15px 0;
}

.c_wrap .post .acv_list li:first-of-type {
  border-top: solid 1px #c7c7c7;
}

.c_wrap .post .acv_list li .cat_name {
  margin-bottom: 10px;
}

@media only screen and (max-width: 767.9px) {
  .c_wrap .post .acv_list li .cat_name {
    margin-bottom: 5px;
  }
}

.c_wrap .post .acv_list li .cat_name span {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
}

@media only screen and (max-width: 767.9px) {
  .c_wrap .post .acv_list li .cat_name span {
    font-size: 12px;
    padding: 2px 5px;
  }
}

.c_wrap .post .acv_list li .cat_name span:not(:first-of-type) {
  margin-left: 5px;
}

.c_wrap .post .acv_list li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767.9px) {
  .c_wrap .post .acv_list li dl dt {
    width: 100px;
    font-size: 12px;
  }
}

@media print, screen and (min-width: 768px) {
  .c_wrap .post .acv_list li dl dt {
    width: 150px;
  }
}

@media only screen and (max-width: 767.9px) {
  .c_wrap .post .acv_list li dl dd {
    width: calc(100% - 100px);
  }
}

@media print, screen and (min-width: 768px) {
  .c_wrap .post .acv_list li dl dd {
    width: calc(100% - 150px);
  }
}

.c_wrap .post .post_content p {
  margin-bottom: 1em;
}

.c_wrap .sidebar {
  border: solid 1px #cacaca;
  padding: 30px 15px;
  max-width: 350px;
  margin: 0 auto;
}

@media only screen and (max-width: 767.9px) {
  .c_wrap .sidebar {
    margin: 30px auto 0;
  }
}

.c_wrap .sidebar h2 {
  margin-bottom: 10px;
}

.c_wrap .sidebar .list {
  margin-bottom: 30px;
}

.c_wrap .sidebar .list ul {
  margin-left: 2em;
}

.c_wrap .sidebar .list ul li {
  padding-bottom: 10px;
  list-style-type: disc;
  line-height: 1.5;
  font-size: 90%;
  font-weight: normal;
}

.c_wrap .sidebar select {
  width: 100%;
  padding: 10px 15px 10px;
  font-size: 16px;
  border: 1px solid #c7c7c7;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

.c_wrap .sidebar select::-ms-expand {
  display: none;
}
@media print, screen and (max-width: 767.9px) {
  .c_wrap .sidebar select {
    background-color: #fff;
  }
}

/* ----------
single_pager ------------------ */

.single_pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}
.single_pager li {
  width: 32%;
}
.single_pager li.index {
  text-align: center;
}
.single_pager li:nth-child(3) {
  text-align: right;
}
.single_pager a {
  display: inline-block;
  padding: 15px 0;
  font-size: 14px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}

@media print, screen and (max-width: 767.9px) {
  .single_pager a {
    font-size: 12px;
  }
}

/* ----------
pagenation ------------------ */

.pagenation {
  margin-top: 65px;
}

.pagenation:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.pagenation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagenation ul li {
  list-style: none outside none;
  margin-left: 3px;
}

.pagenation ul li:first-child {
  margin-left: 0;
}

.pagenation ul li.active {
  background-color: #222;
  color: #fff;
  cursor: not-allowed;
  padding: 5px 10px;
}

.pagenation ul li a {
  background: none repeat scroll 0 0 #c7c7c7;
  color: #fff;
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}

.pagenation ul li a:hover {
  background-color: #444444;
  color: #fff;
  opacity: 1;
}

/* page_contact --
--------------------------------------------------------------　*/
.mw_wp_form {
  padding: 0 15px;
}
.contact_form {
  max-width: 950px;
  margin: 0 auto;
  border: solid 1px #c7c7c7;
  padding: 50px;
}

@media print, screen and (max-width: 960px) {
  .contact_form {
    padding: 45px 15px;
  }
}

.contact_form .required_txt {
  margin-bottom: 1em;
}

.contact_form span.required {
  display: inline-block;
  padding-left: 5px;
}

.contact_form table {
  margin-bottom: 50px;
}

.contact_form table th,
.contact_form table td {
  vertical-align: top;
  padding: 10px;
  text-align: left;
}

@media print, screen and (max-width: 800px) {
  .contact_form table th,
  .contact_form table td {
    display: list-item;
    list-style: none;
    width: 100%;
    overflow: hidden;
    padding: 0;
  }
}

@media print, screen and (max-width: 800px) {
  .contact_form table th {
    font-weight: 600;
    margin-top: 20px;
    padding-bottom: 7px;
  }
}

@media print, screen and (min-width: 801px) {
  .contact_form table th {
    width: 28%;
  }
}

@media print, screen and (min-width: 801px) {
  .contact_form table td {
    width: 70%;
  }
}

.contact_form table td input {
  border: solid 1px #c7c7c7;
  padding: 7px;
  background-color: #fff;
}

@media print, screen and (min-width: 801px) {
  .contact_form table td input {
    font-size: 16px;
  }
}

@media print, screen and (max-width: 800px) {
  .contact_form table td textarea,
  .contact_form table td input[type="email"],
  .contact_form table td input[type="text"] {
    width: 100%;
  }
  .contact_form table td input[type="text"].your-tel {
    width: auto;
  }
}

.contact_form table td textarea,
.contact_form table td input[type="email"],
.contact_form table td input[name="your-address"] {
  width: 100%;
}

.contact_form table td input[name="your-name"],
.contact_form table td input[name="your-tel"] {
  width: 60%;
}

.contact_form table td input[name="estimate3-tsubo"],
.contact_form table td input[name="estimate7"],
.contact_form table td input[name="estimate8"] {
  width: 4em;
  margin: 0 5px;
}

.contact_form table td input#zip {
  width: 10em;
  margin-left: 5px;
  margin-bottom: 10px;
}

.contact_form table td input[type="checkbox"],
.contact_form table td input[type="radio"] {
  width: auto;
}

@media print, screen and (min-width: 801px) {
  .contact_form table td input[type="radio"] {
    position: relative;
    margin-top: -3px;
  }
}

.contact_form table td input.wpcf7c-conf,
.contact_form table td textarea.wpcf7c-conf {
  border: solid #fff 1px !important;
  padding: 0;
  background: #fff !important;
}

.contact_form table td input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

.contact_form table td .mwform-radio-field label,
.contact_form table td .mwform-checkbox-field label {
  margin-left: 0;
  margin-right: 1em;
}

@media print, screen and (max-width: 800px) {
  .contact_form table td .mwform-radio-field label,
  .contact_form table td .mwform-checkbox-field label {
    display: block;
    margin-bottom: 0;
  }
}

.contact_form table td textarea {
  border: solid 1px #c7c7c7;
}

@media print, screen and (min-width: 801px) {
  .contact_form table td textarea {
    font-size: 16px;
  }
}

.contact_form .contact_submit button {
  margin: 0 auto;
  display: block;
  color: #fff;
  width: 250px;
  font-size: 18px;
  text-align: center;
  padding: 10px 10px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  border: none;
  font-family: "Noto Serif JP", serif;
}

.contact_form .contact_submit button span:after {
  content: ">";
  padding-left: 10px;
}

@media only screen and (max-width: 560px) {
  .contact_form .contact_submit button {
    margin: 0 auto;
  }
}

.contact_form .contact_submit button:hover {
  outline: 0;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.contact_form .contact_submit button[name="submitBack"] {
  background-color: #c7c7c7;
  margin-top: 10px;
}
.contact_form .link_btn a {
  margin: 30px auto 0;
}
.recaptcha_txt {
  max-width: 950px;
  margin: 50px auto 10px;
}
.recaptcha_txt p {
  font-size: smaller;
  padding: 0 15px;
}
.en {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.bg-fixed {
  height: 100%;
  overflow: hidden;
}
/* 献立用css */
#kondate_ttl,
.kondate_wrap {
  max-width: 800px;
  margin: auto;
}
/* MV上下バナー追加 ------
-----------------------*/
.bnr_area {
  position: absolute;
  z-index: 3;
}
.bnr_area.top_r,
.bnr_area.btm_r {
  right: 20px;
}
.bnr_area.top_l,
.bnr_area.btm_l {
  left: 20px;
}
.bnr_area li:not(:first-of-type) {
  margin-top: 20px;
}
@media print, screen and (max-width: 767.9px) {
  .bnr_area {
    max-width: 120px;
  }
  .bnr_area li:not(:first-of-type) {
    margin-top: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .bnr_area li:not(:first-of-type) {
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 960px) {
  .bnr_area {
    max-width: 200px;
  }
}
@media print, screen and (min-width: 961px) {
  .bnr_area {
    max-width: 300px;
  }
}
@media print, screen and (max-width: 960px) {
  .bnr_area.top_r {
    top: 100px;
  }
  .bnr_area.top_l {
    top: 65px;
  }
  .bnr_area.top_r,
  .bnr_area.btm_r {
    right: 10px;
  }
  .bnr_area.top_l,
  .bnr_area.btm_l {
    left: 10px;
  }
  .bnr_area.btm_r,
  .bnr_area.btm_l {
    bottom: 84px;
  }
}
@media print, screen and (min-width: 961px) {
  .bnr_area.top_r,
  .bnr_area.top_l {
    top: 160px;
  }
  .bnr_area.btm_r,
  .bnr_area.btm_l {
    bottom: 100px;
  }
}
.top_bnr {
  padding: 50px 15px;
}
.top_bnr.dft ul li {
  text-align: center;
}
@media print, screen and (max-width: 767.9px) {
  .top_bnr.dft ul li:not(:first-of-type) {
    margin-top: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .top_bnr.dft ul li:not(:first-of-type) {
    margin-top: 20px;
  }
}
.c_wrap .sidebar .archive ul {
  position: relative;
}

.c_wrap .sidebar .archive ul:before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  right: 15px;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* 1枚のときスライドサムネ非表示 */
.slidethumb_txt .slick-dots.one {
  display: none;
}
/* プラポリ追加 ---------------------------------　*/
.policy main p,
.policy main ul {
  margin-bottom: 1em;
}
.f_policy {
  margin-top: 20px;
}
.f_policy a {
  text-decoration: underline;
  font-size: small;
}
@media print, screen and (max-width: 767.9px) {
  .free_layout .layout02 > div {
    width: 100% !important;
  }
}
@media print, screen and (min-width: 768px) {
  .free_layout .layout02 {
    display: flex;
    justify-content: space-between;
  }
}
/* カルーセル+テキストエリア追加  ---------------------------------　*/
.carousel-new .slick-slide {
  margin: 0 10px;
}
.carousel-new .link_none a {
  pointer-events: none;
}
.txt_carousel__wrap {
  padding: 30px 20px 50px;
}
.carousel-new.type01 .slick-prev,
.carousel-new.type01 .slick-next {
  display: none !important;
}
.carousel-new.type02 .slick-dots {
  display: none !important;
}
.carousel-new .slick-prev,
.carousel-new .slick-next {
  z-index: 1;
}
.carousel-new .slick-prev::before,
.carousel-new .slick-next::before {
  content: none;
}

.carousel-new .slick-prev::after,
.carousel-new .slick-next::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.carousel-new .slick-prev::after {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}
.carousel-new .slick-next::after {
  left: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media print, screen and (max-width: 767.9px) {
  .carousel-new .slick-prev,
  .carousel-new .slick-next {
    width: 40px;
    height: 40px;
  }
  .carousel-new .slick-prev {
    left: 10vw;
  }
  .carousel-new .slick-next {
    right: 10vw;
  }
  .carousel-new .slick-next::after {
    right: 17px;
  }
  .carousel-new .slick-prev::after {
    left: 17px;
  }
  .carousel-txt.col2 li{
    width: 100%!important;
  }
  .carousel-txt.col2 li:not(:last-of-type){
    margin-bottom: 1.2em;
  }
}
@media print, screen and (min-width: 768px) {
  .carousel-new .slick-prev,
  .carousel-new .slick-next {
    width: 50px;
    height: 50px;
  }
  .carousel-new .slick-prev {
    left: 13vw;
  }
  .carousel-new .slick-next {
    right: 13vw;
  }
  .carousel-new .slick-next::after {
    right: 22px;
  }
  .carousel-new .slick-prev::after {
    left: 22px;
  }
  .carousel-txt.col2{
    display: flex;
    justify-content: space-between;
  }
}
