@charset "utf-8";

/* CSS Document */

:root {
  --font-family-gothic:     'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  --font-family-gothic-en:  'Roboto','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  --font-family-serif:      'Noto Serif JP','Yu Mincho','游明朝',YuMincho,'Hiragino Mincho ProN',serif;
  --font-family-serif-en:   'EB Garamond','Yu Mincho','游明朝',YuMincho,'Hiragino Mincho ProN',serif;

  --color-base: #fff;
  --color-main: #022946;
  --color-brand01: #175885;
  --color-brand02: #207ab9;

  --header-height: 110px;
  --header-height-fixed: 70px;
}




/**********************
ベース
**********************/
html,
body {
  height: 100%;
  min-height: 100%;
  font-size: 13px;
  font-weight: normal;
  font-family: var(--font-family-gothic);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #022946;
  /* background-color: #fffaee; */
  background: url(../../img/pattern01.jpg);
  background-color: #fff;
}

@media screen and (max-width:834px) {
  body{
    font-size:calc(9px + 1vw);
    -webkit-tap-highlight-color:transparent;
  }
}

a {
  color: var(--color-brand01) ;
  text-decoration: underline;
  transition:all 0.5s ease;
}

a:visited{
}
a:hover,
a:active {
  color: ;
  text-decoration: none;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
}


/* = Selected Text
----------------------------------------------- */
::selection {
  background: rgba(0, 144, 202, 0.5); /* Safari */
}

::-moz-selection {
  background: rgba(0, 144, 202, 0.5); /* Firefox */
}


/**********************
layout
**********************/

/***********
common
************/

.relative {  position: relative !important; }

.right,.alignright {  float: right !important; }
.left,.alignleft  {  float: left !important; }
.aligncenter  { display: block; margin-left:auto; margin-right:auto; }

.textAlign-center {  text-align: center !important; }
.textAlign-right  {  text-align: right !important; }
.textAlign-left   {  text-align: left !important; }

.l-bottom-xxsmall {  margin-bottom: 5px  !important; }
.l-bottom-xsmall  {  margin-bottom: 10px !important; }
.l-bottom-small   {  margin-bottom: 15px !important; }
.l-bottom         {  margin-bottom: 20px !important; }
.l-bottom-large   {  margin-bottom: 30px !important; }
.l-bottom-xlarge  {  margin-bottom: 50px !important; }
.l-bottom-xxlarge {  margin-bottom: 80px !important; }

.l-top-xxsmall {  margin-top: 5px  !important; }
.l-top-xsmall  {  margin-top: 10px !important; }
.l-top-small   {  margin-top: 15px !important; }
.l-top         {  margin-top: 20px !important; }
.l-top-large   {  margin-top: 30px !important; }
.l-top-xlarge  {  margin-top: 50px !important; }
.l-top-xxlarge {  margin-top: 80px !important; }

.l-bottom-xxsmall-p {  padding-bottom: 5px  !important; }
.l-bottom-xsmall-p  {  padding-bottom: 10px !important; }
.l-bottom-small-p   {  padding-bottom: 15px !important; }
.l-bottom-p         {  padding-bottom: 20px !important; }
.l-bottom-large-p   {  padding-bottom: 30px !important; }
.l-bottom-xlarge-p  {  padding-bottom: 50px !important; }
.l-bottom-xxlarge-p {  padding-bottom: 80px !important; }

.l-top-xxsmall-p {  padding-top: 5px  !important; }
.l-top-xsmall-p  {  padding-top: 10px !important; }
.l-top-small-p   {  padding-top: 15px !important; }
.l-top-p         {  padding-top: 20px !important; }
.l-top-large-p   {  padding-top: 30px !important; }
.l-top-xlarge-p  {  padding-top: 50px !important; }
.l-top-xxlarge-p {  padding-top: 80px !important; }


@media screen and (max-width:834px) {

  .l-bottom-xxsmall {  margin-bottom: 5px  !important; }
  .l-bottom-xsmall  {  margin-bottom: 7px !important; }
  .l-bottom-small   {  margin-bottom: 10px !important; }
  .l-bottom         {  margin-bottom: 15px !important; }
  .l-bottom-large   {  margin-bottom: 20px !important; }
  .l-bottom-xlarge  {  margin-bottom: 30px !important; }
  .l-bottom-xxlarge {  margin-bottom: 40px !important; }

  .l-top-xxsmall {  margin-top: 5px  !important; }
  .l-top-xsmall  {  margin-top: 7px !important; }
  .l-top-small   {  margin-top: 10px !important; }
  .l-top         {  margin-top: 15px !important; }
  .l-top-large   {  margin-top: 20px !important; }
  .l-top-xlarge  {  margin-top: 30px !important; }
  .l-top-xxlarge {  margin-top: 40px !important; }

  .l-bottom-xxsmall-p {  padding-bottom: 5px  !important; }
  .l-bottom-xsmall-p  {  padding-bottom: 7px !important; }
  .l-bottom-small-p   {  padding-bottom: 10px !important; }
  .l-bottom-p         {  padding-bottom: 15px !important; }
  .l-bottom-large-p   {  padding-bottom: 20px !important; }
  .l-bottom-xlarge-p  {  padding-bottom: 30px !important; }
  .l-bottom-xxlarge-p {  padding-bottom: 40px !important; }

  .l-top-xxsmall-p {  padding-top: 5px  !important; }
  .l-top-xsmall-p  {  padding-top: 7px !important; }
  .l-top-small-p   {  padding-top: 10px !important; }
  .l-top-p         {  padding-top: 15px !important; }
  .l-top-large-p   {  padding-top: 20px !important; }
  .l-top-xlarge-p  {  padding-top: 30px !important; }
  .l-top-xxlarge-p {  padding-top: 40px !important; }

}

/***********
column
************/

.l-column{
  display: flex;
  justify-content: space-between;
  padding: 180px 0 100px;
}

.l-firstColumn{
  width: 68%;
}

.l-secondColumn{
  width: 26%;
}

.l-overflow{
  overflow: hidden;
}

@media screen and (max-width:834px) {

  .l-column{
    display: block;
    padding: 100px 0 60px;
  }

  .l-firstColumn{
    width: auto;
    padding-bottom: 60px;
  }

  .l-secondColumn{
    width: auto;
  }

}

/***********
base
************/

.l-base {
  width: auto;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

.l-base-wide {
  width: auto;
  max-width: 1224px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

.l-base-small {
  width: auto;
  max-width: 824px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

.l-block {
  padding-top: 100px;
  padding-bottom: 100px;
}

.l-block-top {
  padding-top: 100px;
}

.l-block-bottom {
  padding-bottom: 100px;
}

@media screen and (max-width:834px) {

  .l-base {
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }

  .l-base-wide {
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }

  .l-base-small {
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }

  .l-base:not(.l-base-noOffset),
  .l-base-wide:not(.l-base-noOffset),
  .l-base-small:not(.l-base-noOffset){
    padding-left: 6%;
    padding-right: 6%;
  }

  .l-base-wide .l-base,
  .l-base-wide .l-base-small,
  .l-base .l-base-small {
    padding-left: 0;
    padding-right: 0;
  }

  .l-block {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .l-block-top {
    padding-top: 60px;
  }

  .l-block-bottom {
    padding-bottom: 60px;
  }

}


/***********
table
************/

.l-table-normal {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.l-table-normal th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 108%;
  padding: 15px 20px;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  line-height: 1.7;
  background-color: rgba(19, 76, 118, 0.1);
}

.l-table-normal td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 108%;
  padding: 15px 20px;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  line-height: 1.7;
}

.l-table-normal-white{
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.l-table-normal-white th{
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.l-table-normal-white td{
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/*cell size*/

.l-cell-quarter {
  width: 25%;
}

.l-cell-trisect {
  width: 33.3%;
}

.l-cell-half {
  width: 50%;
}

@media screen and (max-width:834px) {

  .l-table-normal{
  }
  .l-table-normal th{
    font-size: 93%;
    padding: 8px 8px;
    line-height: 1.5;
  }
  .l-table-normal td{
    font-size: 93%;
    padding: 8px 8px;
    line-height: 1.5;
  }

  /*スマホ時、縦組みになる*/
  .l-table-normal-sp,
  .l-table-normal-sp thead,
  .l-table-normal-sp tbody,
  .l-table-normal-sp tr,
  .l-table-normal-sp th,
  .l-table-normal-sp td {
    display: block;
    width: 100% !important;
    border: none;
  }
  .l-table-normal-sp th,
  .l-table-normal-sp td {
    border: none;
    font-size: 1.08rem;
  }
  .l-table-normal-sp thead th {
    text-align: center;
    padding: 5px 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .l-table-normal-sp tbody th {
    text-align: left;
    padding: 5px 8px;
    font-weight: bold;
  }
  .l-table-normal-sp tbody td {
    padding: 8px 0px 15px 0;
    font-size: 0.85rem;
  }

}

/**********************
module
**********************/


/***********
common
************/



/***********
module-zoom
************/

.zoomHover{
  overflow: hidden;
  z-index: 2;
  position: relative;
}
.zoomHover img{
  transform:scale(1) ;
  transition:all 0.5s ease;
}
a .zoomHover img:hover,
a.zoomHover img:hover {
  transform:scale(1.03) ;
  opacity: 0.8;
}

/***********
module-font
************/

.font-serif{
  font-family: var(--font-family-serif);
}


/***********
module-text
************/

.textMain{
  font-size: 116%;
  line-height: 2;
  text-align: justify;
}

.textMain-large{
  font-size: 116%;
}

.textMain-en{
  font-size: 108%;
  line-height: 2.2;
  text-align: justify;
}

.textLarge{
  font-size: 131%;
  line-height: 2;
}

.text-accent{
  color: #a40d23;
}


.list-dot {}

.list-dot li {
  font-size: 116%;
  line-height: 2;
  padding-left: 1em;
  margin-bottom: 0.5em;
  position: relative;
}

.list-dot li::before {
  content: "";
  width: 0.3em;
  height: 0.3em;
  background-color: rgba(2, 30, 56, 0.5);
  border-radius: 50%;
  position: absolute;
  left: 0.1em;
  top: 0.85em;
}

.list-asterisk {}

.list-asterisk li {
  font-size: 116%;
  line-height: 2;
  margin-left: 1em;
}

.list-asterisk li::before {
  content: "※";
  margin-left: -1em;
}

.list-number {
  padding-left: 2em;
}

.list-number li {
  font-size: 116%;
  line-height: 2;
  list-style: decimal;
}

@media screen and (max-width:834px) {

  .textMain{
    font-size: 108%;
    line-height: 1.8;
    text-align: left;
  }

  .textLarge{
    font-size: 124%;
    line-height: 1.7;
    text-align: left;
  }

  .textMain-en{
    font-size: 93%;
    line-height: 1.7;
    text-align: left;
  }

  .list-dot {}

  .list-dot li {
    line-height: 1.7;
  }
  .list-dot li::before {
    top: 0.55em;
  }


  .list-asterisk {}

  .list-asterisk li {
    font-size: 108%;
    line-height: 1.7;
    margin-left: 1em;
  }

  .list-asterisk li::before {
    content: "※";
    margin-left: -1em;
  }

  .list-number {
    padding-left: 2em;
  }

  .list-number li {
    font-size: 108%;
    line-height: 1.7;
    list-style: decimal;
  }

}

/***********
module-btn
************/

.linkWrap{
  padding: 20px 0 20px;
  text-align: center;
}

.btn {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 12px 40px 12px 40px;
  font-size: 131%;
  font-weight: normal;
  font-family: var(--font-family-serif);
  background-color: #022946;
  color: #fff;
  letter-spacing: 0.15em;
  text-align: center;
  text-decoration: none !important;
  border: 1px solid #000;
  transition: all 0.2s ease;
  position: relative;
}

.btn::before,
.btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -8px;
  transition: all 0.5s ease;
}
.btn::before{
  background: url(../../img/arrow_base_white.png) no-repeat 0 0 / 100% 100%;
}
.btn::after{
  background: url(../../img/arrow_white.png) no-repeat 0 0 / 100% 100%;
}
.btn:hover{
  border-color: #134c76;
  background-color: #134c76;
}
.btn:hover::after {
  transform: translateX(5px);
}

.btn small {
  display: inline-block;
  font-size: 70%;
  letter-spacing: 0.05em;
}
.btn small::before {
  content: "／";
  margin: 0 0.5em;
  transform: scaleX(0.6);
  opacity: 0.5;
}

.btn-small {
  font-size: 108%;
  padding: 8px 30px 8px 30px;
}

.btn-rounded{
  border-radius: 100px;
}

.btn-large {
  max-width: 460px;
  font-size: 154%;
  font-weight: normal;
  letter-spacing: 0.1em;
}

.btn-block {
  padding-left: 0;
  padding-right: 0;
  display: block;
  text-align: center;
}

.btn-smalltext{
  font-size: 80%;
  letter-spacing: 0.05em;
}



.btn-primary{
  display: inline-block;
  width: 100%;
  max-width: 420px;
  font-size: 139%;
  font-family: var(--font-family-serif);
  padding: 15px 30px;
  text-align: center;
  border: 1px solid #022946;
  color: #022946;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.btn-primary small{
  display: inline-block;
}
.btn-primary small:before{
  content: "／";
  margin: 0 0.5em;
}
.btn-primary:hover{
  background-color: #022946;
  color: #fff;
}


@media screen and (max-width:834px) {

  .btn {
    max-width: 280px;
    padding: 12px 20px 12px 20px;
    font-size: 116%;
    letter-spacing: 0.05em;
  }

  .btn::before,
  .btn::after {
    width: 14px;
    height: 14px;
    right: 10px;
    margin-top: -6px;
  }

  .btn-primary{
    max-width: 320px;
    font-size: 124%;
    padding: 15px 30px;
  }
  .btn-primary small{
    display: block;
  }
  .btn-primary small:before{
    display: none;
  }
  .btn-primary:hover{
  }


}

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

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 999;
  transition: 0.3s;
}
.header::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s;
}

.header-inner {
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.header-logo {
  position: absolute;
  left: min(5vw,80px);
  top: 0;
  height: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s;
}
.header-logo img {
  width: 240px;
}

.header-sns {
  position: absolute;
  right: min(5vw,80px);
  top: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.header-sns li {
  padding-left: 1em;
}
.header-sns a {
  min-width: 1.8em;
  display: inline-block;
  font-size: 26px;
  color: var(--color-brand01);
  text-align: center;
  text-decoration: none;
}
.header-sns-text {
  font-size: 10px;
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  white-space: nowrap;
  margin-top: -0.5em;
}

/*
home
*/

body.home:not(.is-fixed) .header-logo img{
  filter: brightness(2000%) grayscale(100%);
}

body.home .header::before{
  opacity: 0;
}
body.home.is-fixed .header::before{
  opacity: 1;
  transform: translateY(0);
}


/*
home
*/

body.home .header-sns a {
  color: var(--color-base);
}

/*
fixed
*/

body.home.is-fixed .header-sns a {
  color: var(--color-brand01);
}

body.is-fixed .header,
body.is-fixed .header-logo ,
body.is-fixed .header-sns {
  height: var(--header-height-fixed);
}



@media screen and (max-width:1280px) {

  .header {
    width: 100%;
  }

  .header-logo {
    left: min(5vw,30px);
  }
  .header-logo img {
    width: 160px;
  }
  .header-sns {
    right: min(5vw,30px);
    transition: 0.3s;
  }
  .header-sns li {
    padding-left: 1em;
  }

}


@media screen and (max-width:834px) {

  .header-logo,
  body.is-fixed .header,
  body.is-fixed .header-logo ,
  body.is-fixed .header-sns {
    height: 55px;
  }


  .header-logo {
    position: static;
    padding-left: 15px;
  }
  .header-logo img {
    width: 160px;
  }

  .header,
  body.is-fixed .header {
    padding-top: 0;
    height: 55px;
  }

  .header-sns{
    display: none;
  }

}



/***********
module-navi
************/

.navi {
  transition: 0.3s;
  text-align: center;
}

.navi-wrap{
  display: inline-block;
  position: relative;
}

.navi-list {
  display: flex;
  justify-content: center;
  height: var(--header-height);
  align-items: center;
  transition: 0.3s;
}

.navi-list li {
  padding: 0 1.5em;
}

.navi-list a {
  color: var(--color-brand01);
  font-weight: normal;
  font-family: var(--font-family-serif);
  font-size: clamp(14px,1vw, 15px);
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  letter-spacing: 0.1em;
  position: relative;
}


.navi-line{
  position: absolute;
  width: 0;
  top: calc(50% + 1.5em);
  height: 1px;
  background-color:var(--color-brand01);
  left: 0;
  transition:0.3s;
  opacity: 0;
}

body.is-loaded .navi-line{
  opacity: 1;
}

/*
home
*/

body.home .navi-list a {
  color: #fff;
}
body.home .navi-line  {
  background-color: rgba(255, 255, 255, 0.8);
}

/*
fixed
*/

body.is-fixed .navi-list {
  height: var(--header-height-fixed);
}

body.home.is-fixed .navi-list a {
  color: var(--color-brand01);
}
body.home.is-fixed .navi-line {
  background-color: var(--color-brand01);
}

@media screen and (max-width:1280px) {

  .navi-list  {
    padding-left: 50px;
  }

  .navi-list li {
    padding: 0 1em;
  }

  .navi-list a {
    font-size: 100%;
  }

}

@media screen and (max-width:834px) {

  .navi {
    display: none;
  }
}

/***********
module-mainVisual
************/

.mainVisual {
  position: relative;
  overflow: hidden;
}

.mainVisual-slider{
  display: flex;
}

.mainVisual-block {
  max-width: 1300px;
  margin: 0 auto 0;
  padding-top: 150px;
  position: relative;
  display: flex;
  align-items: center;
}

.mainVisual-heading {
  width: 25%;
  padding-bottom: 50px;
}
.mainVisual-inner {
  width: 75%;
}

.mainVisual-logo {
  text-align: center;
}
.mainVisual-logo img {
  width: 180px;
}


.mainVisual-img {
}
.mainVisual-img img {
}
.mainVisual-title {
  font-size: 108%;
  padding-top: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}



.mainVisual-scroll {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 10px;
}
.mainVisual-scroll a {
  display: inline-block;
  color: #022946;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 93%;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.mainVisual-scroll-arrow {
  display: block;
  width: 26px;
  margin: 5px auto;
  background: url(../../img/scrollarrow.png) no-repeat 0 0 / 100% 100%
}
.mainVisual-scroll img {
  transition: all 0.5s ease;
}
.mainVisual-scroll a:hover img {
  transform: translateY(5px);
}

/*
slick
*/

.mainVisual .slick-slide{
  transition:all 0.2s ease;
}
.mainVisual .slick-active{
  opacity: 1;
}

.mainVisual .slick-dots{
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -30px;
  display: flex;
  justify-content: center;
  padding-left: 00px;
}
.mainVisual .slick-dots button{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: #022946;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  text-indent: -99999px;
  overflow: hidden;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  opacity: 0.3;
}
.mainVisual .slick-dots .slick-active button{
  opacity: 1;
}


@media screen and (max-width:1024px) {

  .mainVisual-block {
    padding-top: 50px;
  }

}

@media screen and (max-width:834px) {

  .mainVisual {
    overflow: visible;
  }

  .mainVisual-block {
    max-width: initial;
    max-width: auto;
    padding-top: 0;
    display: block;
  }

  .mainVisual-heading {
    width: auto;
    padding: 40px 0;
  }
  .mainVisual-inner {
    width: auto;
  }

  .mainVisual-logo {
    text-align: center;
  }
  .mainVisual-logo img {
    width: 140px;
  }

  .mainVisual-img {
  }
  .mainVisual-img img {
  }
  .mainVisual-title {
    font-size: 93%;
    padding: 10px 4%;
    overflow: visible;
    white-space: pre-wrap;
    text-overflow:clip;
  }

  .mainVisual-scroll {
    padding-top: 40px;
  }
  .mainVisual-scroll a {
    font-size: 77%;
  }

  .mainVisual-scroll-arrow {
    width: 20px;
  }

}

/***********
module-keyVisual
************/

.keyVisual{
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  border: 12px solid #fffaee;
  overflow: hidden;
}

.keyVisual-slider{
  display: flex;
  transition: transform 1s ease 0.5s,opacity 1s ease 0.5s;
  opacity: 0;
}
.is-loaded .keyVisual-slider{
  opacity: 1;
}


.keyVisual-slider .slick-slide li{
  width: 100%;
  height: 100%;
  position: relative;
}
.keyVisual-slider .slick-slide li img {
  display: none;
}

.keyVisual-contents {
  position: absolute;
  left: 5%;
  bottom: 8vh;
  z-index: 99;
  color: #fff;
}
.keyVisual-contents-text {
  line-height: 2;
}
.keyVisual-contents-text a {
  color: #fff;
  display: inline-block;
  text-decoration: none;
}

.keyVisual-img{
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-size: cover;
/*  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1) 0.5s;*/
  transform: scale(1.1);
100% { transform: scale(1.1) }
}

.keyVisual-block{
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 99;
  transition-delay: 2.4s !important;
}
.keyVisual-logo{
  text-align: center;
  margin-top: -180px;
}
.keyVisual-logo img{
  width: 200px;
}

.keyVisual-lead {
  position: absolute;
  left: 5%;
  top: 55%;
  margin-top: -100px;
  color: #fff;
  z-index: 9;
  letter-spacing: 0.6em;
  line-height: 2.5;
}
.keyVisual-text {
  font-family: 'Noto Serif JP','Noto Serif JP',"Hiragino Mincho ProN","游明朝",YuMincho,serif;
  font-size: 185%;
  font-weight: lighter;
}

.keyVisual-scroll {
  width: 100px;
  margin-left: -50px;
  text-align: center;
  padding-bottom: 10px;
  position: absolute;
  left: 50%;
  bottom: 50px;
}
.keyVisual-scroll a {
  display: inline-block;
  color: #fff;
  font-family: "Roboto";
  font-weight: 300;
  font-size: 93%;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.keyVisual-scroll-arrow {
  display: block;
  width: 26px;
  margin: 5px auto;
  background: url(../../img/scrollarrow_wt.png) no-repeat 0 0 / 100% 100%
}
.keyVisual-scroll img {
  transition: all 0.5s ease;
}
.keyVisual-scroll a:hover img {
  transform: translateY(5px);
}

/*
loaded
*/

.keyVisual-fadein{
  transform: translateY(20px);
  transition: transform 3s cubic-bezier(0.65, 0, 0.35, 1) 1.4s, opacity 1s cubic-bezier(0.65, 0, 0.35, 1) 1.4s;
  opacity: 0;
}
body.is-loaded .keyVisual-fadein{
  transform: translateY(0);
  opacity: 1;
}


/*
fixed
*/

.keyVisual-fadeout{
  transition: transform 1s ease , opacity 1s ease;
}
body.is-fixed .keyVisual-fadeout{
  transform: translateY(-20px);
  opacity: 0;
}

/*
slider
*/

.keyVisual .slick-slide{
}
.keyVisual .keyVisual-img{
/*  transition: transform 8s ease;*/
}
.keyVisual .slick-active .keyVisual-img{
/*  transform: scale(1.1) !important;*/
animation: anime1 6.2s ease forwards;
}
@keyframes anime1 {
0% { transform: scale(1) }
100% { transform: scale(1.1) }
}

.keyVisual .slick-dots{
  position: absolute;
  width: 40%;
  right: 5%;
  bottom: 90px;
  display: flex;
  justify-content: flex-end;
}
.keyVisual .slick-dots button{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: #fff;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  text-indent: -99999px;
  overflow: hidden;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.keyVisual .slick-dots .slick-active button{
  opacity: 1;
  transform: scale(1.5)
}

@media screen and (max-width:834px) {

  .keyVisual{
    position: static;
    width: 100%;
    height: 90vh;
    min-height: 700px;
    border: 5px solid #fffaee;
  }

  .keyVisual-contents {
    left: 8%;
    bottom: 50px;
  }
  .keyVisual-contents-text {
    line-height: 1.8;
    font-size: 85%;
  }
  .keyVisual-contents-text a {
  }

  .keyVisual-img{
    width: 100%;
    height: 90vh;
    min-height: 700px;
  }

  .is-loaded .keyVisual-img{
  }


  .keyVisual-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }


  .keyVisual-block{
    position: static;
    padding-top: 15vh;
  }
  .keyVisual-logo{
    margin-top: 0;
  }
  .keyVisual-logo img{
    max-width: 240px;
    width: calc(110px + 12vmin);
  }

  .keyVisual-lead {
    position: static;
    margin-top: 0;
    line-height: 2.2;
    text-align: left;
    padding-top: 60px;
    padding-left: 8%;
  }
  .keyVisual-text {
    display: inline-block;
    text-align: left;
    font-size: calc(15px + 1vmin);
  }

  .keyVisual-scroll {
    display: none !important;
  }

  /*
  fixed
  */

  body.is-fixed .keyVisual-fadeout{
    transform: translateY(0);
    opacity: 1;
  }

  /*
  slider
  */


  .keyVisual .slick-dots{
    bottom: 20px;
  }
  .keyVisual .slick-dots button{
    width: 4px;
    height: 4px;
    margin: 0 3px;
  }

}

/***********
module-homeIntro01
************/

.contents-home{
  position: relative;
  margin-top: 100vh;
  z-index: 2;
  background-color: #fffaee;
}

@media screen and (max-width:834px) {

  .contents-home{
    margin-top: 0;
  }

}

/***********
module-homeIntro01
************/

.homeIntro01{
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.homeIntro01-title {
  font-family: var(--font-family-serif);
  font-size: 200%;
  font-weight: 500;
  letter-spacing: 0.35em;
  white-space: nowrap;
  position: absolute;
  right: 10%;
  top: 200px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.homeIntro01-lead {
  font-size: 200%;
  font-family: var(--font-family-serif);
  letter-spacing: 0.1em;
  position: absolute;
  right: 20%;
  top: 300px;
}

.homeIntro01-img {
  width: 560px;
  padding-top: 400px;
}
.homeIntro01-img img {
}

@media screen and (max-width:834px) {

  .homeIntro01{
    max-width: initial;
    max-width: auto;
    padding-bottom: 20px;
  }
  .homeIntro01-title {
    font-size: 147%;
    top: 50px;
    letter-spacing: 0.5em;
  }

  .homeIntro01-lead {
    font-size: 5vmin;
    right: 32%;
    top: 150px;
    line-height: 2.3;
  }


  .homeIntro01-img {
    width: 72%;
    max-width: 300px;
    padding-left: 8%;
    padding-top: 38vh;
  }
  .homeIntro01-img img {
  }

}


/***********
module-homeIntro02
************/

.homeIntro02{
  background-color: #fff;
  padding: 160px 0 100px;
  margin-top: -120px;
  position: relative;
  z-index: 1;
}
.homeIntro02-inner{
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}

.homeIntro02-block {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  z-index: 2;
}

.homeIntro02-title {
  font-weight: 400;
  font-size: 320%;
  font-family: 'Amiri', serif;
  letter-spacing: 0.1em;
  padding-top: 30px;
  padding-left: 60px;
}
.homeIntro02-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #022946;
  margin-top: 20px;
}

.homeIntro02-lead {
}

.homeIntro02-text {
  font-size: 170%;
  font-family: var(--font-family-serif);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.5;
  white-space: nowrap;
  width: 8em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}


.homeIntro02-img{
  position: absolute;
  left: -200px;
  top: 160px;
}

@media screen and (max-width:1024px) {

  .homeIntro02-img{
    left: -2vw;
    top: 10vw;
    width: 50vw;
  }
}

@media screen and (max-width:834px) {

/*
  .homeIntro02{
    padding: 200px 0 100px;
    z-index: 1;
  }
  .homeIntro02-inner{
    display: block;
  }

  .homeIntro02-block {
    justify-content: center;
  }

  .homeIntro02-title {
    font-weight: 400;
    font-size: 154%;
    padding-top: 30px;
    padding-left: 5vw;
  }
  .homeIntro02-title::after {
    width: 40px;
    height: 2px;
    margin-top: 15px;
  }

  .homeIntro02-lead {
  }

  .homeIntro02-text {
    font-size: 139%;
    line-height: 2;
    white-space: nowrap;
    width: 6.5em;
  }

  .homeIntro02-img{
    position: static;
    text-align: center;
    width: auto;
    padding-top: 50px;
  }
*/

  .homeIntro02 {
    padding: 160px 0 150px;
    margin-top: -120px;
  }

  .homeIntro02-inner {
    max-width: initial;
    max-width: auto;
    display: block;
  }

  .homeIntro02-block {
    display: block;
    text-align: center;
  }

  .homeIntro02-title {
    display: inline-block;
    text-align: left;
    font-weight: 400;
    font-size: 162%;
    padding-top: 30px;
    padding-left: 5vw;
  }

  .homeIntro02-title::after {
    width: 40px;
    height: 2px;
    margin-top: 15px;
  }

  .homeIntro02-lead {
    text-align: left;
    display: flex;
    justify-content: center;
  }

  .homeIntro02-text {
    padding-top: 50px;
    font-size: 147%;
    line-height: 2.3;
    white-space: nowrap;
    width: 6.5em;
    letter-spacing: 0.3em;
  }

  .homeIntro02-img{
    position: static;
    width: 70%;
    max-width: initial;
    max-width: auto;
    margin: 0 auto;
  }


}

/***********
module-homeConcept
************/

.homeConcept {
  max-width: 1000px;
  padding: 180px 12px 150px;
  margin: 0 auto;
  font-family: var(--font-family-serif);
}
.homeConcept-block {
  display: flex;
  justify-content: flex-end;
}

.homeConcept-inner {
  width: 75%;
  padding: 0 80px 0 100px;
}

.homeConcept-img {
  padding-bottom: 50px;
}

.homeConcept-lead {
  width: 25%;
  position: relative;
}
.homeConcept-lead::before {
  content: "";
  display: block;
  width: 2px;
  height: 50px;
  background-color: #022946;
  position: absolute;
  right: 0;
  top: 0;
}
.homeConcept-text {
  font-size: 170%;
  font-family: var(--font-family-serif);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.5;
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}


.homeConcept-title {
  font-size: 124%;
  text-align: center;
  margin-top: -60px;
  padding-bottom: 25px;
}
.homeConcept-summary {
  font-size: 116%;
  line-height: 2.5;
}

@media screen and (max-width:834px) {

/*
  .homeConcept {
    max-width: initial;
    max-width: auto;
    padding: 0 4% 50px;
    position: relative;
    z-index: 9;
  }
  .homeConcept-block {
    display: flex;
  }

  .homeConcept-inner {
    width: auto;
    flex: 1;
    padding: 0;
  }

  .homeConcept-img {
    margin-top: -80px;
    padding-bottom: 70px;
    text-align: center;
  }
  .homeConcept-img img {
    width: 80%;
    max-width: 420px;
  }

  .homeConcept-lead {
    width: 8em;
    position: relative;
  }
  .homeConcept-lead::before {
    width: 2px;
    height: 40px;
  }
  .homeConcept-text {
    font-size: 139%;
    line-height: 1.8;
    white-space: nowrap;
  }


  .homeConcept-title {
    font-size: 124%;
    text-align: center;
    margin-top: -40px;
    padding-bottom: 15px;
  }
  .homeConcept-summary {
    padding-left: 20px;
    font-size: 85%;
    line-height: 2.2;
  }
*/

  .homeConcept {
    max-width: initial;
    max-width: auto;
    padding: 0 12px 150px;
    background-color: #fff;
  }
  .homeConcept-block {
    display: block;
  }

  .homeConcept-inner {
    width: auto;
    padding: 0 5%;
  }

  .homeConcept-img {
    width: 100%;
    padding-bottom: 50px;
  }

  .homeConcept-lead {
    width: auto;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .homeConcept-lead::before {
    content: "";
    display: block;
    width: 2px;
    height: 50px;
    background-color: #022946;
    position: absolute;
    right: 0;
    top: 0;
  }
  .homeConcept-text {
    font-size: 147%;
    letter-spacing: 0.3em;
    line-height: 2.3;
  }


  .homeConcept-title {
    font-size: 116%;
    text-align: left;
    margin-top:50px;
    padding-bottom: 25px;
  }
  .homeConcept-summary {
    font-size: 93%;
    line-height: 2.2;
  }


}

/***********
module-homeTopics
************/

.homeTopics{
  position: relative;
  z-index: 9;
}

.homeTopics-container {
  display: block;
  color: #022946;
  text-decoration: none;
  background-color: #fff;
  color: #022946;
  text-decoration: none;
  border: 1px solid #022946;
  position: relative;
}
.homeTopics-container::before,
.homeTopics-container::after{
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  position: absolute;
  right: 65px;
  top: 50%;
  margin-top: -14px;
  transition: all 0.5s ease;
}
.homeTopics-container::before{
  background: url(../../img/arrow_base.png) no-repeat 0 0 / 100% 100%;
}
.homeTopics-container::after{
  background: url(../../img/arrow.png) no-repeat 0 0 / 100% 100%;
}
.homeTopics-container:hover::after {
  transform: translateX(5px);
}

.homeTopics-block {
  padding: 30px 40px;
  display: flex;
}
.homeTopics-heading {
  width: 140px;
}

.homeTopics-title{
  display: inline-block;
  font-family: var(--font-family-gothic-en);
  position: relative;
  padding: 6px 15px;
}


.homeTopics-inner {
  flex: 1;
  padding-right: 60px;
  font-family: var(--font-family-serif);
}
.homeTopics-subject {
  font-size: 154%;
  font-weight: 500;
}
.homeTopics-subject:hover{
  text-decoration: underline;
}
.homeTopics-subject-sub {
  font-size: 131%;
  font-weight: 500;
  padding-top: 5px;
}

.homeTopics-subject:hover {
}

.homeTopics-box {
  flex: 1;
  padding-right: 60px;
  font-family: var(--font-family-serif);
  font-size: 124%;
  line-height: 2;
  letter-spacing: 0.1em;
}


@media screen and (max-width:834px) {

  .homeTopics{
    margin-top: -10px;
    background-color: #fff;
  }

  .homeTopics a {
  }
  .homeTopics a::before,
  .homeTopics a::after {
  }

  .homeTopics-block {
    padding: 20px 5% 20px 5%;
    display: block;
  }
  .homeTopics-heading {
    width: auto;
    margin: 0 auto;
    text-align: center;
  }

  .homeTopics-title{
    padding: 6px 25px;
    margin-top: 5px;
    margin-bottom: 15px;
  }

  .homeTopics-inner {
    padding-right: 30px;
  }
  .homeTopics-subject {
    font-size: 116%;
  }
  .homeTopics-subject-sub {
    font-size: 93%;
    padding-top: 0.5em;
  }

  .homeTopics-subject:hover {
  }

  .homeTopics-container {
  }
  .homeTopics-container::before,
  .homeTopics-container::after{
    width: 16px;
    height: 16px;
    right: 8px;
    bottom: 20px;
  }

  .homeTopics-box {
    padding-right: 0;
    font-size: 108%;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }

}

/***********
module-homeNews
************/

.homeNews{
  padding: 50px 0 150px;
}
.homeNews-block{
  display: block;
  color: #022946;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #022946;
  position: relative;
}

.homeNews-list {
}
.homeNews-list li:not(:last-child) {
  padding-bottom: 20px;
}
.homeNews-list a {
  display: flex;
  font-weight: 500;
  color: #022946;
  text-decoration: none;
  position: relative;
}

.homeNews-time {
  display: block;
  width: 8em;
  font-size: 124%;
  letter-spacing: 0.1em;
}
.homeNews-heading {
}
.homeNews-title {
  font-size: 131%;
}
.homeNews-subTitle {
  font-size: 93%;
  padding-top: 2px;
}
.homeNews-title:hover {
  text-decoration: underline;
}

@media screen and (max-width:834px) {

  .homeNews{
    padding: 50px 0 50px;
  }
  .homeNews-block{
  }

  .homeNews-list {
  }
  .homeNews-list li:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  }
  .homeNews-list a {
    display: block;
    padding: 10px 0;
  }

  .homeNews-time {
    display: block;
    width: auto;
    font-size: 85%;
    padding-bottom: 5px;
  }
  .homeNews-heading {
  }
  .homeNews-title {
    font-size: 116%;
  }
  .homeNews-subTitle {
    font-size: 85%;
    padding-top: 0.2em;
  }
  .homeNews-title:hover {
  }

}

/***********
module-frameGap
************/

.frameGap{
  position: relative;
}
.frameGap::before,
.frameGap::after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #022946;
  position: absolute;
  left: 0;
}
.frameGap::before{
  top: 0;
}
.frameGap::after{
  bottom: 0;
}

.frameGap i::before,
.frameGap i::after{
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 6px);
  background-color: #022946;
  position: absolute;
}
.frameGap i::before{
  bottom: 0;
  left: 0;
}
.frameGap i::after{
  top: 0;
  right: 0;
}


/***********
module-heading
************/

.heading {
  text-align: center;
  font-family: 'Amiri', serif;
  font-size: 300%;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding-bottom: 30px;
}
.heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #022946;
  margin: 20px auto;
}

.heading-en {
  font-size: 200%;
  text-align: center;
}
.heading-en::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #022946;
  margin: 20px auto;
}

.heading-logo{
  height: 1em;
  width: auto;
  vertical-align:baseline;
  transform: translateY(0.1em);
  margin: 0 0.5em;
}

.heading-title {
  font-family: var(--font-family-serif);
  font-size: 170%;
  letter-spacing: 0.25em;
  text-align: center;
  margin-top: -20px;
  padding-bottom: 30px;
}

.heading-subTitle{
  text-align: center;
  letter-spacing: 0.15em;
  margin-top: -0.5em;
  margin-bottom: 40px;
  font-size: 170%;
  font-family: var(--font-family-serif);
}
.heading-subTitle-logo{
  height: 1.8em;
  width: auto;
  vertical-align:baseline;
  transform: translateY(0.5em);
  margin: 0 1em 0 0;
}


@media screen and (max-width:834px) {

  .heading {
    font-size: 154%;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding-bottom: 30px;
  }
  .heading::after {
    width: 40px;
    height: 2px;
    margin: 15px auto;
  }

  .heading-en {
    font-size: 124%;
    text-align: center;
  }
  .heading-en::after {
      width: 40px;
      height: 2px;
      margin: 15px auto;
  }

  .heading-logo{
    height: 0.8em;
    margin: 0 0.3em;
  }

  .heading-title {
    font-size: 100%;
    letter-spacing: 0.05em;
    margin-top: -20px;
    padding-bottom: 20px;
  }



  .heading-subTitle{
    letter-spacing: 0.1em;
    margin-top: -1.5em;
    margin-bottom: 30px;
    font-size: 100%;
  }


}
/***********
module-homeStay
************/

.homeStay{
  padding: 200px 0 360px 0;
  position: relative;
  margin-top: -60px;
}
.homeStay::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transform: skewY(-2deg);
}


.homeStay-upper {
  display: flex;
  justify-content: space-between;
}
.homeStay-img {
  flex: 1;
  padding-right: 50px;
}
.homeStay-img img {
  transform: scale(1.1);
  transform-origin: right top;
}
.homeStay-heading {
  width: 22%;
}



.homeStay-heading-lead {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
}
.homeStay-heading-text {
  font-size: 192%;
  font-family: var(--font-family-serif);
  font-weight: 500;
  letter-spacing: 0.4em;
  line-height: 2.8;
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}


.homeStay-badge {
  text-align: right;
  padding-top: 10px;
  padding-right: 35px;
}
.homeStay-badge img {
  width: 120px;
  height: 120px;
}


.homeStay-block {
  display: flex;
  justify-content: space-between;
  padding-top: 120px;
  position: relative;
  font-family: var(--font-family-serif);
}
.homeStay-item {
}
.homeStay-item-large {
  width: 54%;
}
.homeStay-item-small {
  width: 40%;
}

.homeStay-text {
  font-size: 139%;
  line-height: 2.5;
}
.homeStay-subText {
  font-size: 116%;
  line-height: 2.5;
}


.homeStay-link{
  margin-top: -50px;
}

@media screen and (max-width:834px) {

  .homeStay{
    padding: 180px 0 300px 0;
    margin-top: -60px;
  }

  .homeStay-upper {
    display: block;
    position: relative;
    padding-bottom: 120px;
  }
  .homeStay-img {
    flex: 1;
    padding-right: 0;
    max-width: 400px;
    position: absolute;
    left: 0px;
    bottom: 0;
  }
  .homeStay-img img {
    transform: scale(1.5) translateX(0);
    margin-top: 0;
  }
  .homeStay-heading {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
  }

  .homeStay-heading-lead {
    width: 10em;
  }
  .homeStay-heading-text {
    font-size: 147%;
    line-height: 2.3;
    letter-spacing: 0.3em;
  }

  .homeStay-badge {
    flex: 1;
    padding: 0 10px;
    text-align: center;
    margin-top: -10px;
    padding-top: 80px;
  }
  .homeStay-badge img {
    width: 120px;
    height: auto;
  }


  .homeStay-block {
    display: block;
    padding-top: 140px;
    padding-bottom: 20px;
  }
  .homeStay-item-large {
    width: auto;
  }
  .homeStay-item-small {
    width: auto;
  }

  .homeStay-text {
    font-size: 116%;
    line-height: 2;
  }
  .homeStay-subText {
    padding-top: 30px;
    font-size: 93%;
    line-height: 2;
  }

  .homeStay-link{
    text-align: center;
    margin-top: 20px;
  }

}

/***********
module-homeLead
************/

.homeLead{
  position: relative;
}

.homeLead-visual{
  width: 480px;
  height: 480px;
  border-radius: 50%;
  overflow: hidden;
  margin: -240px auto 0;
}
.homeLead-visual img{
  border-radius: 50%;
}


.homeLead-item{
  width: 480px;
  height: 480px;
  background: url(../../img/img07.jpg) no-repeat center center / cover !important;
  border-radius: 50%;
  overflow: hidden;
  margin: -240px auto 0;
}

.homeLead-item .parallax-inner{
  top: -40vh;
}

.homeLead-lead {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 200px;
}
.homeLead-text {
  font-size: 178%;
  font-family: var(--font-family-serif);
  font-weight: 500;
  letter-spacing: 0.4em;
  line-height: 2.6;
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

@media screen and (max-width:834px) {

  .homeLead{
    background-color: #fff;
  }

  .homeLead-visual{
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    overflow: hidden;
    margin: -240px auto 0;
  }
  .homeLead-visual img{
    border-radius: 50%;
  }

  .homeLead-item {
    width: 70vw;
    height: 70vw;
    margin: -240px auto 0;
  }

  .homeLead-item .parallax-inner{
  top: -30vh;
  }

  .homeLead-lead {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .homeLead-text {
    font-size: 147%;
    letter-spacing: 0.3em;
    line-height: 2.3;
  }

}

/***********
module-homeInfo
************/

.homeInfo{
  position: relative;
  z-index: 9;
  padding: 120px 0;
  background-color: #fff;
}

/***********
module-homeInfo-upper
************/

.homeInfo-upper {
  padding-bottom: 80px;
  font-family: var(--font-family-serif);
}
.homeInfo-upper-heading {
  padding-left: 52%;
}
.homeInfo-upper-heading .homeInfo-heading {
  text-align: left;
}
.homeInfo-upper-heading .homeInfo-heading::after {
  margin-left: 0;
}

.homeInfo-upper-block {
  display: flex;
  margin-top: -110px;
  justify-content: space-between;
}

.homeInfo-upper-img {
  width: 48%;
}
.homeInfo-upper-inner {
  width: 48%;
  padding-top: 100px;
}

@media screen and (max-width:834px) {

  .homeInfo-upper {
    padding-bottom: 50px;
  }
  .homeInfo-upper-heading {
    padding-left: 0;
  }
  .homeInfo-upper-heading .homeInfo-heading {
    text-align: center;
  }
  .homeInfo-upper-heading .homeInfo-heading::after {
    margin-left: auto;
  }

  .homeInfo-upper-block {
    display: block;
    margin-top:0px;
  }

  .homeInfo-upper-img {
    width: auto;
  }
  .homeInfo-upper-inner {
    width: auto;
    padding-top: 0;
  }


}


/***********
module-homeInfo-block
************/

.homeInfo-block {
  display: flex;
  justify-content: space-between;
}
.homeInfo-item {
  width: 48%;
}
.homeInfo-heading {
  text-align: center;
  font-family: var(--font-family-serif);
}
.homeInfo-heading span {
  font-size: 280%;
  font-weight: normal;
  letter-spacing: 0.1em;
  font-family: 'Amiri', serif;
}
.homeInfo-heading small {
  font-size: 185%;
  padding-left: 0.5em;
}
.homeInfo-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #022946;
  margin: 20px auto 30px;
}



.homeInfo-list {
  font-family: var(--font-family-serif);
}
.homeInfo-list li {
}
.homeInfo-list a {
  display: block;
  color: #022946;
  text-decoration: none;
}

.homeInfo-img {
  margin-bottom: 20px;
}
.homeInfo-img img {
}

.homeInfo-description {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.homeInfo-description-text {
  font-size: 116%;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.homeInfo-cat {
  display: inline-block;
  color: #022946;
  border: 1px solid #022946;
  font-weight: 500;
  padding: 2px 10px;
  font-size: 93%;
}
.homeInfo-title {
  font-size: 170%;
  font-weight: 500;
  padding-top: 15px;
  letter-spacing: 0.08em;
}
.homeInfo-subTitle {
  font-weight: 500;
  font-size: 108%;
  padding-top: 5px;
}
.homeInfo-schedule {
  display: block;
  font-size: 116%;
  padding-top: 5px;
  letter-spacing: 0.1em;
}

.homeInfo-summary {
  font-size: 116%;
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding-top: 15px;
}


@media screen and (max-width:834px) {

  .homeInfo{
    padding: 0 0 100px;
  }

  .homeInfo-block {
    display: block;
  }
  .homeInfo-item {
    width: auto;
  }
  .homeInfo-item:nth-child(2) {
    padding-top: 80px;
  }

  .homeInfo-heading {
  }
  .homeInfo-heading span {
    font-size: 154%;
  }
  .homeInfo-heading small {
    font-size: 116%;
  }
  .homeInfo-heading::after {
    width: 40px;
    height: 2px;
    background-color: #022946;
    margin: 15px auto 20px;
  }


  .homeInfo-list {
  }
  .homeInfo-list li {
  }
  .homeInfo-list a {
  }

  .homeInfo-img {
    margin-bottom: 20px;
  }
  .homeInfo-img img {
  }


  .homeInfo-description {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .homeInfo-description-text {
    font-size: 100%;
    line-height: 1.7;
  }

  .homeInfo-cat {
    padding: 2px 5px;
    font-size: 77%;
  }

  .homeInfo-title {
    font-size: 124%;
    padding-top: 5px;
  }
  .homeInfo-subTitle {
    font-size: 93%;
  }
  .homeInfo-schedule {
    font-size: 108%;
  }

  .homeInfo-summary {
    font-size: 116%;
    line-height: 1.6;
    padding-top: 15px;
  }

  .homeInfo-summary {
    font-size: 100%;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }


}
/***********
module-homeShop
************/

.homeShop{
  padding-top: 200px;
  position: relative;
  font-family: var(--font-family-serif);
}
.homeShop::before{
  content: "";
  display: block;
  width: 100%;
  height: 200%;
  position: absolute;
  left: 0;
  top: -400px;
  transform: skewY(-2deg);
  pointer-events: none;
}

.homeShop-half {
  display: flex;
  justify-content:space-between;
  padding-bottom: 50px;
}
.homeShop-item {
  width: 46%;
}


.homeShop-text {
  font-size: 139%;
  line-height: 2.5;
}
.homeShop-subText {
  font-size: 116%;
  line-height: 2.2;
  padding-top: 40px;
}


.homeShop-time {
  font-size: 154%;
  text-align: center;
  padding: 20px 0;
  letter-spacing: 0.14em;
}
.homeShop-time span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #022946;
  vertical-align: baseline;
  vertical-align: middle;
  transform: translateY(-0.1em);
  margin: 0 0.5em;
}

.homeShop-link {
  display: flex;
}
.homeShop-link li {
  width: 48%;
  flex: 1;
}
.homeShop-btn {
  display: block;
  font-size: 147%;
  text-align: center;
  padding: 20px 0;
  background-color: #022946;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.14em;
}
.homeShop-btn:hover {
  background-color: #134c76;
}

@media screen and (max-width:834px) {

  .homeShop{
    padding-top: 100px;
  }
  .homeShop::before{
    height: 200%;
    top: -50vw;
  }

  .homeShop-half {
    display: block;
    padding-bottom: 30px;
  }
  .homeShop-item {
    width: auto;
    text-align: center;
    padding-bottom: 10px;
  }
  .homeShop-item img{
    width: 70%;
  }

  .homeShop-text {
    padding-top: 20px;
    font-size: 116%;
    line-height: 2;
    text-align: left;
  }
  .homeShop-subText {
    font-size: 93%;
    line-height: 2;
    padding-top: 30px;
    text-align: left;
  }


  .homeShop-time {
    font-size: 131%;
    padding: 20px 0;
  }
  .homeShop-time span {
    width: 20px;
    margin: 0 0.3em;
  }

  .homeShop-btn {
    font-size: 131%;
  }

}

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

.footer{
  background-color: var(--color-brand01);
  color: var(--color-base);
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.footer-logo {
  max-width: 260px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.footer-navi {
  display: flex;
  justify-content: center;
}
.footer-navi-list {
  display: flex;
  padding-top: 5px;
}

.footer-navi-list li {
  padding: 0 1.2em;
}

.footer-navi-list a {
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  font-size: clamp(13px,1vw, 15px);
  font-weight: normal;
  position: relative;
}
.footer-navi-list a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.footer-navi-list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


.footer-sns {
  display: flex;
  padding-left: 15px;
}
.footer-sns li {
  padding: 0 0.5em;
}
.footer-sns a {
  min-width: 1.8em;
  display: inline-block;
  font-size: clamp(16px,1.4vw, 22px);
  color: inherit;
  text-decoration: none;
  text-align: center;
}
.footer-sns-text {
  font-size: 10px;
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  white-space: nowrap;
}


.footer-block {
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 50px;
}
.footer-item {
  width: 45%;
}

.footer-list {
}
.footer-list li {
  padding-bottom: 15px;
}
.footer-list a {
  display: block;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-weight: normal;
  font-size: 124%;
  padding: 15px 0;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
}
.footer-list a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-list a span{
  display: inline-block;
  width: 10em;
}
.footer-list a small{
  display: inline-block;
  width: 12em;
  text-align: left;
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  padding-left: 3em;
  font-size: 70%;
}


.footer-link {
  display: flex;
  padding-top: 10px;
}
.footer-link li:not(:last-child) {
  margin-right: 2em;
}
.footer-link a {
  text-decoration: none;
  color: var(--color-base);
}


.footer-address {
  font-style: normal;
  line-height: 2.2;
}
.footer-address a{
  color: #fff;
  text-decoration: none;
}

.footer-copyright{
  display: block;
  font-size: 100%;
  padding-top: 10px;
  letter-spacing: 0.1em;
}


.footer-credit{
  display: flex;
  justify-content: space-between;
  padding-top: 0px;
}
.footer-credit-heading {
  display: flex;
  padding-top: 5px;
}

.footer-credit-name {
  font-weight: normal;
  padding-right: 25px;
  letter-spacing: 0.15em;
}
.footer-credit-address {
  font-style: normal;
  letter-spacing: 0.15em;
}
.footer-credit-logo {
}
.footer-credit-logo a {
}
.footer-credit-logo img {
  width: 300px;
}

@media screen and (max-width:834px) {

  .footer{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .footer-logo {
    max-width: 240px;
    padding-bottom: 30px;
  }

  .footer-navi {
  }
  .footer-navi-list {
    display: none;
  }

  .footer-sns {
    display: flex;
    padding-left: 0;
  }
  .footer-sns li {
    padding: 0 0.5em;
  }
  .footer-sns a {
    font-size: 20px;
  }


  .footer-block {
    display: block;
    padding-top: 40px;
    padding-bottom: 0;
  }
  .footer-item {
    width: auto;
  }


  .footer-list {
  }
  .footer-list li {
    padding-bottom: 15px;
  }
  .footer-list a {
    font-size: 116%;
    padding: 15px 0;
    border-radius: 0;
  }
  .footer-list a:hover {
    opacity: 0.85;
  }

  .footer-list a span{
    display: inline-block;
    width: 7em;
    white-space: nowrap;
    text-align: left;
  }
  .footer-list a small{
    width: 9em;
    font-size: 70%;
    transform: translateY(-1px);
  }


  .footer-link {
    display: flex;
    padding-top: 20px;
    padding-bottom: 50px;
    justify-content: center;
    font-size: 85%;
  }

  .footer-address {
    line-height: 2;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    border-top: 1px solid #448fc5;
    border-bottom: 1px solid #448fc5;
  }
  .footer-address a{
  }

  .footer-copyright{
    display: block;
    font-size: 77%;
    padding-top: 0;
    text-align: center;
  }

  .footer-credit{
    display: block;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
  }
  .footer-credit:not(:last-child){
    border-bottom: 1px solid #448fc5;
  }
  .footer-credit-heading {
    display: block;
    padding-top: 5px;
  }

  .footer-credit-name {
    padding-right: 0;
    font-size: 93%;
  }
  .footer-credit-address {
    font-style: normal;
    font-size: 93%;
    line-height: 2;
    padding-top: 5px;
  }
  .footer-credit-logo {
    margin-top: 30px;
    padding-top: 60px;
    border-top: 1px solid #448fc5;
  }
  .footer-credit-logo a {
  }
  .footer-credit-logo img {
    width: 230px;
  }

}




/**********************************************
module-jump
***********************************************/

.jumpTop{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}
.jumpTop a{
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #134c76;
  z-index: 999;
  position: relative;
}
.jumpTop a::after{
  content: "";
  display: block;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  transform:rotate(45deg);
  position: absolute;
  left: 19px;
  top: 22px;
  width: 10px;
  height: 10px;
  transition:all 0.4s ease;
}



@media screen and (max-width:834px) {

  .jumpTop{
    display: none !important;
  }

}


/***********
module-mobile
************/

@media screen and (max-width:834px) {

  .mobile{
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9998;
    right: 0;
    top: 0;
    opacity: 0;
    transition:all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    -webkit-overflow-scrolling: touch;
  }

  .is-mobile-open .mobile{
    opacity: 1;
    right: 0;
  }

  .mobile-close{
    display: none !important;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition:all 0.2s ease;
    z-index: -1;
  }
  .is-mobile-open .mobile-close{
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    z-index: 9990;
  }

  .mobile-trigger {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    cursor: pointer;
    background: none;
    border: none;
    background-color: transparent;
  }
  .mobile-btn {
    display: block;
    position: relative;
    width: 60px;
    height: 55px;
    cursor: pointer;
    background: none;
    border: none;
    transition: all .4s;
  }
  .mobile-btn span {
    display: inline-block;
    position: absolute;
    left: 30%;
    width: 40%;
    height: 2px;
    background-color: #022946;
    transition: all .4s;
  }

  body.home .mobile-btn span {
    background-color: #fff;
  }
  body.home.is-fixed .mobile-btn span {
    background-color: #022946;
  }
  body.is-mobile-open .mobile-btn span {
    background-color: #022946;
  }

  .mobile-btn span:nth-of-type(1) {
    top: 18px;
  }
  .mobile-btn span:nth-of-type(2) {
    top: 25px;
  }
  .mobile-btn span:nth-of-type(3) {
    top: 32px;
  }

  .mobile-btn.is-active span:nth-of-type(1) {
    transform: translateY(7px) rotate(35deg);
  }

  .mobile-btn.is-active span:nth-of-type(2) {
    opacity: 0;
  }

  .mobile-btn.is-active span:nth-of-type(3) {
    transform: translateY(-7px) rotate(-35deg);
  }

}



/***********
module-mobile
************/

.mobile-logo{
  text-align: center;
  height: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.mobile-logo img{
  width: 160px;
}

.mobile-inner {
  height: 98vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}


.mobile-navi {
  text-align: center;
  padding-top: 30px;
}
.mobile-navi li {
}
.mobile-navi a {
  font-size: 108%;
  display: block;
  padding: 12px 0;
  color: #022946;
  text-decoration: none;
}
.mobile-navi a sup {
  padding-left: 0.4em;
}


.mobile-sns {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 150px;
}
.mobile-sns li {
  padding: 0 0.6em;
}
.mobile-sns a {
  min-width: 2em;
  display: inline-block;
  font-size: 20px;
  color: #022946;
  text-align: center;
  text-decoration: none;
}
.mobile-sns-text {
  font-size: 10px;
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  white-space: nowrap;
}


/***********
module-pageHeading
************/

.pageHeading{
  padding: 180px 0 80px;
}
.pageHeading-subTitle {
  font-family: 'Amiri', serif;
  font-size: 350%;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.pageHeading-title {
  font-family: var(--font-family-serif);
  font-size: 170%;
  letter-spacing: 0.2em;
  padding-left: 56px;
  position: relative;
}
.pageHeading-title::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #022946;
  position: absolute;
  left: 0;
  top: 0.55em;
}

.pageHeading-title-en {
  font-family: 'Amiri', serif;
  font-size: 280%;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.pageHeading-text {
  font-size: 116%;
  font-family: var(--font-family-serif);
  line-height: 2;
  padding-top: 40px;
}


@media screen and (max-width:834px) {

  .pageHeading{
    padding: 100px 0 60px;
  }
  .pageHeading-subTitle {
    font-size: 220%;
  }
  .pageHeading-title {
    font-size: 100%;
    letter-spacing: 0.1em;
    padding-left: 42px;
  }
  .pageHeading-title::before {
    width: 30px;
    height: 2px;
    top: 0.6em;
  }

  .pageHeading-text {
    font-size: 100%;
    line-height: 1.8;
    padding-top: 30px;
  }

.pageHeading-title-en {
  font-size: 154%;
  letter-spacing: 0.05em;
}


}


/***********
module-innerHeading
************/

.innerHeading {
  padding-bottom: 80px;
}

@media screen and (max-width:834px) {

  .innerHeading{
    padding: 0 0 60px;
  }

}

/***********
module-access
************/

.access{
  padding-top: 100px;
  padding-bottom: 100px;
  font-family: var(--font-family-serif);
  background: url(../../img/pattern01.jpg);
}
.access.bgColor01 {
  background: #fff ;
}

.access:nth-of-type(1){
  padding-top: 0;
}

.access-title {
  font-size: 170%;
  letter-spacing: 0.2em;
  padding-bottom: 40px;
}

.access-chart img {
  mix-blend-mode: multiply;
  position: relative;
  z-index: 2;
}

.access-service {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 30px;
}
.access-service li {
  width: 31%;
}
.access-service a {
  display: block;
  position: relative;
  padding: 20px 0;
  text-align: center;
  text-decoration: none;
  font-size: 154%;
  color: #022946;
  letter-spacing: 0.12em;
  position: relative;
}
.lang-en .access-service a {
  font-size: 116%;
  letter-spacing: 0.05em;
}
.access-service span {
  display: block;
}
.access-service span.access-service-offset{
  padding: 0.8em 0;
}


.access-service a::before,
.access-service a::after {
  content: "";
  display: block;
  width: calc(100% - 10px);
  height: 1px;
  background-color: #022946;
  position: absolute;
  left: 5px;
  z-index: 1;
}
.access-service a::before{
  top: 0;
  transform-origin: left top;
}
.access-service a::after {
  bottom: 0;
  transform-origin: right top;
}

.access-service a span::before,
.access-service a span::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 10px);
  background-color: #022946;
  position: absolute;
  top: 5px;
  z-index: 1;
}
.access-service a span::before{
  left: 0;
  transform-origin: left bottom;
}
.access-service a span::after {
  right: 0;
  transform-origin: left top;
}

.access-service a:hover {
  background-color: #022946;
  color: #fff;
}


@media screen and (max-width:834px) {

  .access{
    padding-top: 60px;
    padding-bottom: 60px;
  }


  .access-title {
    font-size: 131%;
    letter-spacing: 0.1em;
    padding-bottom: 30px;
  }

  .access-service {
    display: block;
    padding-top: 20px;
    padding-bottom: 0;
  }
  .access-service li {
    width: auto;
    max-width: 300px;
    margin: 0 auto 5px;
  }
  .access-service a {
    padding: 12px 0;
    font-size: 116%;
  }

}

/***********
module-accessMap
************/

.accessMap {
  padding: 100px 0;
}
.accessMap-block iframe{
  width: 100%;
  height: 600px;
}


@media screen and (max-width:834px) {

  .accessMap {
    padding: 0 0;
  }
  .accessMap-block iframe{
    width: 100%;
    height: 500px;
    vertical-align: middle;
  }

}


/***********
module-spAccess
************/

.spAccess {
  padding-bottom: 10px;
}
.spAccess-title {
  background-color: #022946;
  padding: 10px 15px;
  font-family: var(--font-family-serif);
  font-size: 131%;
  color: #fff;
  position: relative;
}
.spAccess-title::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../../img/icon/arrow_down_white.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -0.5em;
}
.is-active.spAccess-title::before {
  transform: rotate(180deg);
}

.spAccess-container {
  background-color: #fff;
  display: none;
  margin-bottom: 20px;
}
.spAccess-img {
  padding: 25px 15px;
}
.spAccess img {
}

/***********
module-bgColor
************/

.bgColor01{
  background-color: #fff;
}

/***********
module-cat
************/

.cat {
  margin-top: -20px;
  padding-bottom: 60px;
  font-family: var(--font-family-serif);
}
.cat-title {
  color: #022946;
  font-size: 170%;
  padding-bottom: 10px;
}

.cat-list {
  display: flex;
  flex-wrap: wrap;
}
.cat-list li {
  margin: 0 5px 5px 0;
}
.cat-list a {
  display: block;
  padding: 0.2em 1.2em;
  background-color: #022946;
  color: #fff;
  text-decoration: none;
}
.cat-list a:hover,
.cat-list a.is-current {
  background-color: #134c76;
}
.cat-list span {
  display: inline-block;
  letter-spacing: 0.08em;
  font-size: 108%;
}
.cat-list small {
  display: inline-block;
  padding-left: 10px;
  font-size: 85%;
}

@media screen and (max-width:834px) {

  .cat {
    padding-bottom: 40px;
  }
  .cat-title {
    font-size: 131%;
    padding-bottom: 5px;
  }

  .cat-list {
  }
  .cat-list li {
    margin: 0 2px 2px 0;
  }
  .cat-list a {
    padding: 0.4em 0.8em 0.4em;
    text-align: center;
    letter-spacing: 0;
  }
  .cat-list a:hover {
  }
  .cat-list span {
    font-size: 93%;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  .cat-list small {
    padding-left: 8px;
    font-size: 77%;
    line-height: 1;
  }

}

/***********
module-newsList
************/

.newsList {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
  font-family: var(--font-family-serif);
}
.newsList li {
  width: 31.33333%;
  margin-left: 2%;
  padding-bottom: 40px;
}
.newsList li.newsList-empty {
  width: 100%;
  padding: 60px 0;
  text-align: center;
  font-size: 116%;
}
.newsList a {
  display: block;
  color: #022946;
  text-decoration: none;
}

.newsList-img {
  margin-bottom: 15px;
}
.newsList-title {
  font-size: 124%;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
.newsList-subTitle {
  font-size: 85%;
  padding-top: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.newsList-title:hover {
  text-decoration: underline;
}
.newsList-time {
  display: inline-block;
}

@media screen and (max-width:834px) {

  .newsList {
  }
  .newsList li {
    width: 48%;
    margin-left: 2%;
    padding-bottom: 30px;
  }
  .newsList a {
  }

  .newsList-img {
    margin-bottom: 10px;
  }
  .newsList-title {
    font-size: 100%;
    line-height: 1.3;
    letter-spacing: 0.05em;
  }
  .newsList-subTitle {
    font-size: 77%;
    padding-top: 3px;
  }

}

/***********
module-article
************/

.article{
  font-family: var(--font-family-serif);
}

.article-heading {
  padding-bottom: 60px;
}
.article-heading-cat {
  display: inline-block;
  padding: 0.4em 1.5em;
  background-color: #022946;
  color: #fff;
}
.article-heading-cat span {
  display: inline-block;
  font-size: 185%;
  letter-spacing: 0.08em;
}
.article-heading-cat small {
  display: inline-block;
  padding-left: 18px;
  font-size: 154%;
}
.article-heading-title {
  padding-top: 40px;
  font-size: 200%;
  letter-spacing: 0.4em;
  line-height: 1.3;
}
.article-heading-subTitle {
  padding-top: 10px;
  font-size: 108%;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.article-heading-time {
}

@media screen and (max-width:834px) {


  .article{
  }

  .article-heading {
    padding-bottom: 30px;
  }
  .article-heading-cat {
    padding: 0.4em 1em 0.3em;
  }
  .article-heading-cat span {
    font-size: 124%;
    letter-spacing: 0.08em;
  }
  .article-heading-cat small {
    padding-left: 10px;
    font-size: 100%;
  }
  .article-heading-title {
    padding-top: 20px;
    font-size: 154%;
    letter-spacing: 0.3em;
  }
  .article-heading-subTitle {
    font-size: 93%;
    letter-spacing: 0.12em;
  }
  .article-heading-time {
  }


}

/***********
module-side
************/

.side {
}
.side-title {
  padding: 0.8em 10px 0.7em 20px;
  background-color: #022946;
  color: #fff;
  font-family: var(--font-family-serif);
}
.side-title span {
  display: inline-block;
  font-size: 139%;
  letter-spacing: 0.08em;
}
.side-title small {
  display: inline-block;
  padding-left: 10px;
  font-size: 100%;
  font-weight: 500;
  font-family: "Roboto";
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.side-newsList {
  font-family: var(--font-family-serif);
}
.side-newsList li {
  border-bottom: 1px solid rgba(2, 41, 70, 0.2);
}
.side-newsList a {
  display: block;
  color: #022946;
  text-decoration: none;
  padding: 18px 0;
}
.side-newsList-block {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.side-newsList-img {
  width: 35%;
}
.side-newsList-inner {
  width: 62%;
}

.side-newsList-title {
  font-size: 100%;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.side-newsList-title:hover {
  text-decoration: underline;
}
.side-newsList-subTitle {
  padding-top: 10px;
  font-size: 77%;
  font-weight: 600;
  letter-spacing: 0.05em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.article-heading-time {
}

@media screen and (max-width:834px) {

  .side {
  }
  .side-title {
    padding: 0.5em 10px 0.4em 20px;
  }
  .side-title span {
    font-size: 124%;
    letter-spacing: 0.08em;
  }
  .side-title small {
    padding-left: 10px;
    font-size: 85%;
  }

  .side-newsList {
  }
  .side-newsList li {
  }
  .side-newsList a {
    padding: 15px 0;
  }
  .side-newsList-block {
  }
  .side-newsList-img {
    width: 35%;
  }
  .side-newsList-inner {
    width: 62%;
    padding-top: 5px;
  }

}

/***********
module-faq
************/

.faq {
  font-family: var(--font-family-serif);
  padding-bottom: 40px;
}
.faq-title {
  font-size: 154%;
  letter-spacing: 0.2em;
  border-bottom: 1px solid #022946;
  padding-bottom: 5px;
  padding-left: 40px;
  position: relative;
}
.faq-title::before {
  content: "Q";
  position: absolute;
  left: 3px;
  top: 3px;
  font-size: 110%;
  line-height: 1;
}
.faq-answer {
  padding: 20px 0 20px 60px;
  position: relative;
}
.faq-answer::before {
  content: "A";
  position: absolute;
  left: 30px;
  top: 23px;
  font-size: 154%;
  font-weight: bold;
  line-height: 1;
}
.faq-post {
  font-size: 116%;
  line-height: 1.8;
}


@media screen and (max-width:834px) {

  .faq {
    padding-bottom: 30px;
  }
  .faq-title {
    font-size: 124%;
    letter-spacing: 0.1em;
    padding-bottom: 5px;
    padding-left: 1.8em;
    position: relative;
  }
  .faq-title::before {
    left: 0.2em;
    top: 0.1em;
    font-size: 110%;
  }
  .faq-answer {
    padding: 15px 0 15px 3.2em;
  }
  .faq-answer::before {
    content: "A";
    left: 0.8em;
    top: 18px;
    font-size: 154%;
  }
  .faq-post {
    font-size: 100%;
    line-height: 1.7;
  }


}




/**********************************************
module-post
***********************************************/

.post {
  font-size: 1.24rem;
  line-height: 2;
  padding-bottom: 20px;
}

.post p:not([class]) {
  font-size: 1.24rem;
  line-height: 2;
  padding-bottom: 1em;
}

.post h2:not([class]) {
  font-size: 2rem;
  margin: 40px 0 20px 0;
  border-left: 5px solid #222;
  padding: 0 0 0 20px;
  line-height: 1.3;
}

.post h3:not([class]) {
  font-size: 1.7rem;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 6px 20px;
  border-radius: 8px;
  margin: 30px 0 20px 0;
}

.post h4:not([class]) {
  font-size: 1.54rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 8px;
  margin: 30px 0 20px 0;
}

.post h5:not([class]) {
  font-size: 1.39rem;
  padding: 20px 0 15px 0;
}

.post h6:not([class]) {
  font-size: 1.31rem;
  padding: 15px 0 8px 0;
}

.post img:not([class]) {
  padding-bottom: 20px;
}

.post blockquote:not([class]) {
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 25px 3%;
  border-radius: 15px;
  margin: 30px 0;
}

.post table:not([class]) {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.post table:not([class]) thead th,
.post table:not([class]) thead td {
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.24rem;
  padding: 12px 3%;
  text-align: center;
  font-weight: 500;
  line-height: 1.7;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

.post table:not([class]) tbody th {
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.24rem;
  padding: 12px 3%;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
  background-color: rgba(0, 0, 0, 0.05);
}

.post table:not([class]) tbody td {
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.24rem;
  padding: 12px 3%;
  text-align: left;
  vertical-align: top;
  font-weight: 500;
  line-height: 1.7;
  background-color: #fff;
}



.post ul:not([class]){
  font-size: 1.24rem;
  line-height: 1.8;
  list-style: disc;
  margin-left: 1.5em;
  padding: 20px 0;
}
.post ol:not([class]){
  font-size: 1.24rem;
  line-height: 1.8;
  list-style: decimal;
  margin-left: 1.5em;
  padding: 20px 0;
}


@media screen and (max-width:834px) {

  .post {
    font-size: 1.16rem;
    line-height: 1.5;
    padding-bottom: 10px;
  }

  .post p:not([class]) {
    font-size: 1.16rem;
    line-height: 1.5;
  }

  .post h2:not([class]) {
    font-size: 1.31rem;
    margin: 30px 0 20px 0;
    border-left: 3px solid #222;
    padding: 0 0 0 10px;
    line-height: 1.3;
  }

  .post h3:not([class]) {
    font-size: 1.24rem;
    padding: 10px 10px;
    margin: 20px 0 14px 0;
    line-height: 1.3;
  }

  .post h4:not([class]) {
    font-size: 1.24rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin: 20px 0 10px 0;
    line-height: 1.3;
  }

  .post h5:not([class]) {
    font-size: 1.16rem;
    padding: 20px 0 10px 0;
  }

  .post h6:not([class]) {
    font-size: 1.16rem;
    padding: 15px 0 8px 0;
  }

  .post img:not([class]) {
    padding-bottom: 10px;
  }

  .post blockquote:not([class]) {
    padding: 15px 3%;
    margin: 20px 0;
  }

  .post table:not([class]) {
    border: 1px solid rgba(0, 0, 0, 0.2);
  }

  .post table:not([class]) thead th,
  .post table:not([class]) thead td {
    font-size: 0.93rem;
    padding: 5px 2%;
    line-height: 1.5;
  }

  .post table:not([class]) tbody th {
    font-size: 0.93rem;
    padding: 5px 2%;
    line-height: 1.5;
  }

  .post table:not([class]) tbody td {
    font-size: 0.93rem;
    padding: 5px 2%;
    line-height: 1.5;
  }


  .post ul:not([class]){
    font-size: 1.16rem;
    line-height: 1.5;
    padding: 10px 0;
  }
  .post ol:not([class]){
    font-size: 1.16rem;
    line-height: 1.5;
    padding: 10px 0;
  }


}


/***********
module-pagination
************/

.pagination {
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

.pagination:empty {
  display: none;
}

.pagination span,
.pagination a {
  display: inline-block;
  width: 2.5em;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  text-align: center;
  font-size: 131%;
  font-weight: normal;
  padding: 0.6em 0;
  line-height: 1;
  margin: 0 2px;
}
.pagination span,
.pagination a:hover {
  background-color: #000;
  color: #fff;
}

@media screen and (max-width:834px) {

  .pagination span,
  .pagination a {
    font-size: 116%;
  }

}

/***********
module-paging
************/

.paging{
  position: relative;
  height: 100px;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  font-family: var(--font-family-serif);
}

.paging a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  text-align: center;
  font-size: 131%;
  font-weight: normal;
  padding: 0.6em 2em;
  line-height: 1;
}
.paging a:hover {
}

.paging-next {
  position: absolute;
  right: 0;
}
.paging-next i {
  transform: translate(1em);
}

.paging-prev {
  position: absolute;
  left: 0;
}
.paging-prev i {
  transform: translate(-1em);
}

@media screen and (max-width:834px) {

  .paging a {
    font-size: 100%;
  }

}



/***********
module-note
************/

.note{
  font-family: var(--font-family-serif);
  counter-increment: note-title-cnt;
}
.note:not(:last-child){
  padding-bottom: 60px;
}

.note-title {
  padding: 0.2em 1em;
  background-color: #022946;
  color: #fff;
  font-weight: normal;
  font-size: 131%;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.note-title::before {
  content: "第"counter(note-title-cnt)"条　";
}

.note-subTitle {
  font-size: 116%;
  font-weight: normal;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}

.note-text{
  line-height: 1.8;
  font-size: 1.08rem;
}

.note-list {
  list-style: decimal;
  margin-left: 1.5em;
}
.note-list > li {
  line-height: 1.8;
  font-size: 1.08rem;
  padding-bottom: 0.5em;
}

.note-list-num {
  margin-left: 1.5em;
}
.note-list-num > li {
  list-style: decimal;
  line-height: 1.8;
  font-size: 1.08rem;
  padding-bottom: 0.5em;
}
.note-list-num > li:before{
  margin-left: -1.5em;
}

.note-list-kana {
  list-style: katakana-iroha;
  margin-left: 1.5em;
}
.note-list-kana > li {
  line-height: 1.8;
  font-size: 1.08rem;
  padding-bottom: 0.5em;
}
.note-list-kana > li:before{
  display: marker;
}

@media screen and (max-width:834px) {


  .note{
  }
  .note:not(:last-child){
    padding-bottom: 40px;
  }

  .note-title {
    font-size: 116%;
    letter-spacing: 0.05em;
  }
  .note-title::before {
  }
  .note-subTitle {
    font-size: 108%;
    margin-bottom: 10px;
  }

  .note-text{
    line-height: 1.7;
    font-size: 1.00rem;
  }

  .note-list {
  }
  .note-list > li {
    line-height: 1.7;
    font-size: 1.00rem;
  }

  .note-list-num {
    margin-left: 1.5em;
  }
  .note-list-num > li {
    line-height: 1.7;
    font-size: 1.00rem;
  }
  .note-list-num > li:before{
    margin-left: -1.5em;
  }

  .note-list-kana > li {
    line-height: 1.7;
    font-size: 1.00rem;
  }


}


/***********
module-hotelData
************/

.hotelData {
  display: flex;
  font-family: var(--font-family-serif);
  padding-bottom: 40px;
}
.hotelData-block {
  width: 50%;
}

.hotelData-heading{
  padding-bottom: 20px;
}
.hotelData-heading-title {
  font-size: 185%;
  font-weight: normal;
  letter-spacing: 0.1em;
}
.hotelData-heading-subTitle {
  font-size: 124%;
}

.hotelData-data {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.hotelData-data dt {
  width: 10em;
  white-space: nowrap;
  background-color: #022946;
  color: #fff;
  text-align: center;
  font-size: 116%;
}
.hotelData-data dd {
  padding-left: 1em;
  font-size: 131%;
}

.hotelData-text {
  font-size: 116%;
  padding-top: 10px;
  padding-right: 2em;
}
.hotelData-title {
  display: inline-block;
  background-color: #022946;
  color: #fff;
  padding: 0.2em 1em 0.1em;
  font-weight: normal;
  font-size: 116%;
  margin-top: 30px;
  margin-bottom: 15px;
}

.hotelData-cancel {
  display: flex;
  align-items: flex-start;
  font-size: 108%;
  margin-bottom: 0.6em;
}
.hotelData-cancel dt {
  width: 12em;
  position: relative;
  white-space: nowrap;
}
.hotelData-cancel dt::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(2, 41, 70, 0.2);
  position: absolute;
  left: 0;
  top: 50%;
}
.hotelData-cancel span {
  display: inline-block;
  background-color: #fffaee;
  position: relative;
  z-index: 2;
  padding-right: 1em;
}
.hotelData-cancel dd {
  padding-left: 1em;
}

@media screen and (max-width:834px) {


  .hotelData {
    display: block;
    padding-bottom: 40px;
  }
  .hotelData-block {
    width: auto;
  }
  .hotelData-block:not(:last-child) {
    padding-bottom: 60px;
  }

  .hotelData-heading{
    padding-bottom: 20px;
  }
  .hotelData-heading-title {
    font-size: 154%;
  }
  .hotelData-heading-subTitle {
    font-size: 108%;
  }

  .hotelData-data {
    letter-spacing: 0;
  }
  .hotelData-data dt {
    width: 10em;
    font-size: 100%;
  }
  .hotelData-data dd {
    font-size: 108%;
  }

  .hotelData-text {
    font-size: 108%;
  }
  .hotelData-title {
    font-size: 108%;
  }

  .hotelData-cancel {
    font-size: 93%;
  }

}

/***********
module-reserve
************/

.reserve {
  text-align: center;
}
.reserve .reserve-text {
  font-size: 124%;
  line-height: 1.8;
}

.reserve-check {
  padding: 40px 0;
  overflow: hidden;
}

.reserve-check {
  display: inline-block;
  font-weight: bold;
  font-size: 131%;
}
.reserve-check label {
  cursor: pointer;
}
.reserve-check input {
  margin-right: 0.2em;
}

.reserve-link {
  padding-top: 30px;
}


.reserve-btn{
  display: inline-block;
  width: 100%;
  max-width: 420px;
  font-size: 139%;
  font-family: var(--font-family-serif);
  padding: 15px 30px;
  text-align: center;
  background-color: #022946;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.reserve-btn small{
  display: inline-block;
}
.reserve-btn small:before{
  content: "／";
  margin: 0 0.5em;
  opacity: 0.5;
}
.reserve-btn:hover{
  background-color: #134c76;
}

.is-disabled.reserve-btn{
  opacity: 0.2;
  pointer-events: none;
}


@media screen and (max-width:834px) {

  .reserve {
  }
  .reserve .reserve-text {
    font-size: 100%;
    line-height: 1.8;
  }

  .reserve-check {
    padding: 30px 0;
  }

  .reserve-check {
    transform: scale(1.2);
  }

  .reserve-link {
    padding-top: 30px;
  }

  .reserve-btn{
    max-width: 320px;
    font-size: 124%;
  }
  .reserve-btn small{
    display: block;
  }
  .reserve-btn small:before{
    display: none;
  }

}

/***********
module-langSelect
************/

.langSelect {
  display: flex;
}
.langSelect li {
}
.langSelect li:not(:last-child)::after {
  content: "／";
  display: inline-block;
  margin: 0 1em;
  transform: scaleX(0.6);
}

.langSelect-btn{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 1px solid #022946;
  color: #022946;
  background: none;
  width: 6em;
  height: 2em;
  border-radius: 50px;
  cursor: pointer;
  font-family: Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,"Yu Gothic",Meiryo,sans-serif;
}

.langSelect-btn.is-active{
  background-color: #022946;
  color: #fff;
}

@media screen and (max-width:834px) {

  .langSelect {
    display: flex;
  }
  .langSelect li:not(:last-child)::after {
    margin: 0 0.5em;
  }

  .langSelect-btn{
    width: 6em;
    height: 2em;
    font-size: 85%;
  }

}




/***********
module-price
************/

.price-heading{
  text-align: center;
  padding-bottom: 40px;
}
.price-heading-title {
  font-size: 350%;
  font-weight: normal;
  letter-spacing: .4em;
  text-indent: 0.4em;
}
.price-heading-subTitle {
  font-size: 154%;
  letter-spacing: .3em;
  text-indent: 0.3em;
  margin-top: 0.5em;
}
.price-heading-subTitle span {
  display: inline-block;
  position: relative;
}
.price-heading-subTitle span::before,
.price-heading-subTitle span::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #022946;
  position: absolute;
  top: 50%;
}
.price-heading-subTitle span::before{
  left: 100%;
  margin-left: 10px;
}
.price-heading-subTitle span::after{
  right: 100%;
  margin-right: 10px;
}

@media screen and (max-width:834px) {

  .price-heading{
    padding-bottom: 20px;
  }
  .price-heading-title {
    font-size: 170%;
  }
  .price-heading-subTitle {
    font-size: 100%;
  }
  .price-heading-subTitle span::before,
  .price-heading-subTitle span::after {
    width: 30px;
  }

}


/***********
module-price-block
************/

.price-block {
  display: flex;
  padding-top: 60px;
  justify-content: space-between;
  font-family: Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,"Yu Gothic",Meiryo,sans-serif;
}

.price-item01 {
  width: 35%;
}
.price-item02 {
  width: 26%;
}


.price-title {
  font-family: var(--font-family-serif);
  font-size: 147%;
  font-weight: normal;
  background-color: #022946;
  color: #fff;
  text-align: center;
  padding: 0.5em 0;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}


.price-data {
  display: flex;
  align-items: flex-start;
  font-size: 116%;
  font-weight: 600;
  margin-bottom: 0.6em;
}
.price-data dt {
  width: 12em;
  white-space: nowrap;
  position: relative;
}
.price-data dt::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(2, 41, 70, 0.2);
  position: absolute;
  left: 0;
  top: 50%;
}
.price-data span {
  display: inline-block;
  background-color: #fffaee;
  position: relative;
  z-index: 2;
  padding-right: 1em;
}
.price-data dd {
  padding-left: 1em;
}

.price-data-text {
  font-size: 116%;
  font-weight: 600;
  font-family: Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,"Yu Gothic",Meiryo,sans-serif;
}


.price-subTitle {
  display: inline-block;
  font-size: 116%;
  border: 1px solid #022946;
  color: #022946;
  text-align: left;
  padding: 0.5em 1.5em;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}




.price-num {
  display: flex;
  align-items: flex-start;
  font-size: 116%;
  font-weight: 600;
  margin-bottom: 0.6em;
}
.price-num dt {
  width: 50%;
  white-space: nowrap;
  position: relative;
}
.price-num dt::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(2, 41, 70, 0.2);
  position: absolute;
  left: 0;
  top: 50%;
}
.price-num span {
  display: inline-block;
  background-color: #fffaee;
  position: relative;
  z-index: 2;
  padding-right: 1em;
}
.price-num dd {
  padding-left: 1em;
}



.price-check {
  border: 1px solid #022946;
  padding: 2em 5%;
  text-align: center;
}
.price-check-block {
  display: flex;
  justify-content: center;
}
.price-check-time {
  font-size: 131%;
  font-family: Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,"Yu Gothic",Meiryo,sans-serif;
  font-weight: 600;
  padding: 0 1.5em;
  line-height: 2.5em;
}
.price-check .price-check-time {
}



.price-reserve {
  text-align: center;
  padding-top: 60px;
}

.price-reserve-btn {
  display: inline-block;
  width: 160px;
  height: 160px;
  background-color: #022946;
  border-radius: 50%;
  padding-top: 50px;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.price-reserve-btn::before,
.price-reserve-btn::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #022946;
  position: absolute;
  top: 50%;
}
.price-reserve-btn::before{
  left: 100%;
  margin-left: 10px;
}
.price-reserve-btn::after{
  right: 100%;
  margin-right: 10px;
}
.price-reserve-btn:hover {
  background-color: #134c76;
}
.price-reserve-btn span {
  display: block;
  font-family: var(--font-family-serif);
  font-size: 200%;
  font-weight: normal;
  text-indent: 0.3em;
  letter-spacing: 0.3em;
}
.price-reserve-btn small {
  font-size: 85%;
  font-family: "Roboto";
  font-weight: 400;
  letter-spacing: 0.2em;
}

@media screen and (max-width:834px) {

  .price-block {
    display: block;
    padding-top: 30px;
  }

  .price-item01 {
    width: auto;
  }
  .price-item02 {
    width: auto;
    padding-top: 30px;
  }


  .price-title {
    font-size: 124%;
  }


  .price-data {
  }
  .price-data dt {
    width: 50%;
    flex: 1;
    white-space: nowrap;
    position: relative;
  }
  .price-data dt::after {
  }
  .price-data span {
  }
  .price-data dd {
    white-space: nowrap;
  }

  .price-data-text {
    font-size: 116%;
    font-weight: 600;
    font-family: Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,"Yu Gothic",Meiryo,sans-serif;
  }


  .price-subTitle {
    display: block;
    text-align: center;
  }



  .price-check {
    padding: 2em 5%;
  }
  .price-check-block {
    display: block;
  }
  .price-check-time {
    font-size: 116%;
  }


  .price-num {
  }
  .price-num dt {
    width: 50%;
    flex: 1;
    white-space: nowrap;
  }
  .price-num dt::after {
  }
  .price-num span {
  }
  .price-num dd {
    white-space: nowrap;
    padding-left: 1em;
  }

  .price-reserve {
    padding-top: 40px;
  }

  .price-reserve-btn {
    transform: scale(0.8);
  }

}



/***********
module-half
************/

.half {
  display: flex;
  justify-content: space-between;
}
.half .half-item {
  width: 46%;
}

@media screen and (max-width:834px) {

  .half {
    display: block;
  }
  .half .half-item {
    width: auto;
  }
  .half .half-item:not(:last-child) {
    padding-bottom: 0;
  }

}


/***********
module-priceRegular
************/

.priceRegular {
}
.priceRegular-heading {
  background-color: #022946;
  color: #fff;
  text-align: center;
}
.priceRegular-heading-title {
  font-size: 154%;
  padding: 1em 0 ;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: var(--font-family-serif);
}
.priceRegular-block {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 3em;
  font-feature-settings: "palt";
}
.priceRegular-data {
  font-size: 139%;
  font-weight: 600;
  font-family: Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,"Yu Gothic",Meiryo,sans-serif;
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.8em;
}
.priceRegular dt {
  overflow: hidden;
  flex: 1;
  margin-right: 1em;
}
.priceRegular dt span {
  display: inline-block;
  position: relative;
}
.priceRegular dt span::after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #515260;
  position: absolute;
  left: 100%;
  top: 48%;
  margin-left: 1em;
}
.priceRegular dd {
  white-space: nowrap;
}


.priceRegular-table{
  border: 1px solid #515260;
  font-family: Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,"Yu Gothic",Meiryo,sans-serif;
  table-layout: fixed;
}
.priceRegular-table th,
.priceRegular-table td{
  border: 1px solid #515260;
}
.priceRegular-table thead th{
  background-color: rgba(0, 0, 0, 0.1);
  font-size: 124%;
  font-weight: 600;
  font-feature-settings: "palt";
  padding: 1em 0.5em;
  text-align: center;
  line-height: 1.3;
}
.priceRegular-table tbody th{
  background-color: rgba(0, 0, 0, 0.1);
  font-size: 124%;
  font-weight: 600;
  padding: 1em 0.5em;
}
.priceRegular-table tbody td{
  font-size: 131%;
  font-weight: 600;
  font-weight: 600;
  padding: 1em 0.5em;
  text-align: center;
  white-space: nowrap;
}

@media screen and (max-width:834px) {


  .priceRegular {
  }
  .priceRegular-heading {
  }
  .priceRegular-heading-title {
    font-size: 139%;
    letter-spacing: 0;
  }
  .priceRegular-block {
    padding-top: 2em;
    width: 94%;
  }
  .priceRegular-data {
    font-size: 108%;
  }

  .priceRegular-table{
    table-layout: auto;
  }
  .priceRegular-table th,
  .priceRegular-table td{
  }
  .priceRegular-table thead th{
    font-size: 108%;
    white-space: nowrap;
    padding: 0.5em 2em
  }
  .priceRegular-table tbody th{
    background-color: rgba(0, 0, 0, 0.1);
    font-size: 108%;
  }
  .priceRegular-table tbody td{
    font-size: 108%;
  }

}


/***********
is-spScroll
************/

@media screen and (max-width:834px) {

  .is-spScroll{
    overflow: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
  }

  .is-spScroll::-webkit-scrollbar {
    height: 10px;
  }
  .is-spScroll::-webkit-scrollbar-thumb{
    background: #999;
    border-radius: 5px;
  }
  .is-spScroll::-webkit-scrollbar-track-piece {
    background: #eee;
  }

  .is-spScroll::before{
    content: "SWIPEABLE";
    display: block;
    width: 80px;
    height: 70px;
    margin-left: -40px;
    padding-top: 50px;
    box-sizing: border-box;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 10px;
    font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    left: 50%;
    top: 80px;
    z-index: 99;
  }
  .is-spScroll::after{
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    margin-left: -16px;
    background: url(../../img/icon/swipe.png) no-repeat 0 0 / 100% 100%;
    position: absolute;
    left: 50%;
    top: 90px;
    z-index: 99;
    animation:spScrollArrow 1.5s infinite ease-in-out ;
  }

  body.is-pc .is-spScroll::before,
  body.is-pc .is-spScroll::after{
    display: none !important;
  }
  .is-spScroll.is-active::before,
  .is-spScroll.is-active::after{
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 2s ease , visibility 0s linear 2s;
  }
  .is-spScroll > .spScroll-480{
    min-width: 480px;
  }
  .is-spScroll > .spScroll-640{
    min-width: 640px;
  }
  .is-spScroll > .spScroll-834{
    min-width: 834px;
  }
  .is-spScroll > .spScroll-1024{
    min-width: 1024px;
  }

}


@keyframes spScrollArrow {
  0%    {transform:translate(10px, 0); }
  60%   {transform:translate(-10px, 0) ;  }
  100%  {transform:translate(-10px, 0) ;  }
}


/***********
module-xxxxx
************/


/**********************
lang
**********************/

.lang-en{
  display: none;
}


/**********************
status
**********************/

.is-hide {
  display: none;
}

.is-out{
  position: absolute;
  left: -9999999px;
}

.is-pc-hide {
  display: none;
}

.is-pc-inline {
  display: inline;
}

.is-sp-inline {
  display: none;
}

.is-pc-noevent {
  pointer-events: none;
}


@media screen and (max-width:834px) {

  .is-pc-hide {
    display: block;
  }

  .is-sp-hide {
    display: none;
  }

  .is-sp-inline {
    display: inline;
  }

  .is-pc-inline {
    display: none;
  }

  .is-pc-noevent {
    pointer-events: auto;
  }

}
