@charset "UTF-8";
/* --------------------------------------------------------------------------------
	colors
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
	font
-------------------------------------------------------------------------------- */
@import url(import/reset.css);
/*@import url(import/util.css);*/

@font-face {
  font-family: "Noto Serif Japanese";
  font-style: normal;
  font-weight: 500;
  src: url("../font/NotoSerifCJKjp-Medium.woff") format("woff");
}

@font-face {
  font-family: "Noto Serif Japanese";
  font-style: normal;
  font-weight: 600;
  src: url("../font/NotoSerifCJKjp-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 500;
  src: url("../font/NotoSansCJKjp-Medium.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 100;
  src: url("../font/NotoSansCJKjp-Thin.woff") format("woff");
}

@font-face {
  font-family: "RobotoSlab";
  font-style: normal;
  font-weight: 400;
  src: url("../font/RobotoSlab-Light.ttf") format("truetype");
}

@font-face {
  font-family: 'Cormorant', serif;
  font-style: normal;
  src: url("../font/Cormorant-Regular.woff") ;
}

@font-face {
  font-family: 'Cormorant', serif;
  font-style: normal;
  src: url("../font/Cormorant-Light.woff") ;
}

@font-face {
  font-family: 'Crimson Text', serif;
  font-style: normal;
  src: url("../font/CrimsonText-Regular.woff") ;
}

@font-face {
  font-family: 'Cinzel', serif;
  font-style: normal;
  src: url("../font/Cinzel-Regular.woff") ;
}

@font-face {
	font-family: 'ico';
	font-style: normal;
	src: url('../font/ico.ttf') format('truetype');
}

/* --------------------------------------------------------------------------------
	tag
-------------------------------------------------------------------------------- */
body {
  background-color: #fff;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 737px) {
  body {
    min-width: 1160px;
    margin: auto;
  }
}

a {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  background-repeat: no-repeat;
  background-position: top left;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 737px) {
  #container {
    margin-top: 220px;
  }

  #container.p-top,
  #container.concept {
    margin-top: 155px;
  }
}

/* --------------------------------------------------------------------------------
  header
-------------------------------------------------------------------------------- */
.hdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.61118% 2.77777% 2.10278%;
  position: fixed !important;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height:136px;
}

.hdr-logo {
  width:185px;
  z-index: 9999;
}
.hdr-logo img{
  width:100%;
}


@media screen and (max-width: 736px) {
  .hdr {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 20px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.6);
  }
}

@media screen and (max-width: 736px) {
  .hdr-logo {
    width: 120px;
    z-index: 9999;
  }
}

@media screen and (max-width: 736px) {
  .hdr-menu-btn {
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 9998;
  }

  .hdr-menu-btn::before,
  .hdr-menu-btn::after {
    content: "";
  }

  .hdr-menu-btn::before,
  .hdr-menu-btn::after,
  .hdr-menu-btn span {
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #6cced9;
    left: 0;
  }

  .hdr-menu-btn::before,
  .hdr-menu-btn span {
    top: 0;
  }

  .hdr-menu-btn::after,
  .hdr-menu-btn span {
    bottom: 0;
  }

  .hdr-menu-btn span {
    margin: auto;
  }


  .hdr-menu-btn::before,
  .hdr-menu-btn span {
    top: 0;
  }

  .is-menuOpen .hdr-menu-btn::before {
		top: 9px;
		transform: rotate(45deg);
  }
  .is-menuOpen .hdr-menu-btn::after {
		display: none;
  }
  .is-menuOpen .hdr-menu-btn span {
		transform: rotate(-45deg);
  }

  .hdr-menu-phone {
    margin-left: 110px;
    width: 26px;
  }
}

.hdr-body {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 736px) {
  .hdr-body {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
/*
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
*/
    position: fixed;
    top: 0;
		bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
/*
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
*/
    background-color: #fff;
    z-index: 9997;/* 5000 */

    opacity: 0;

    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0);
    pointer-events: none;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease, opacity 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease,
      -webkit-transform 0.5s ease;
  }

  .is-menuOpen .hdr-body {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    overflow-y: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (min-width: 737px) {
  .hdr-body__upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 4px;
  }
}

@media screen and (max-width: 736px) {
  .hdr-body__upper {
		display: none !important;
    width: 100%;
  }
}

.hdr-body__upper a {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.hdr-body__upper a:nth-child(3) {
  letter-spacing: 0.3em;
}

.hdr-body__upper a:nth-child(4) {
  letter-spacing: 0.3em;
}

.hdr-body__upper a:not(.hdr-body__upper__btn) {
  color: #49c3d1;
}

@media screen and (max-width: 736px) {
  .hdr-body__upper {
		background: #999;
	}
  .hdr-body__upper a {
/*
    display: block;
*/
		width: 50%;
/*
    font-family: "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体",
      "YuGothic", sans-serif;
    color: #000;
    text-align: center;
*/
    font-size: 16px;
    padding: 8px;
  }
/*
  .hdr-body__upper a:not(.hdr-body__upper__btn) {
    color: #000 !important;
  }
*/
}

.hdr-body__upper__textlink {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.hdr-body__upper__textlink:hover {
  opacity: 0.6;
}

@media screen and (min-width: 737px) {
  .hdr-body__upper__textlink + .hdr-body__upper__textlink {
    margin-left: 22px;
  }
}

.hdr-body__upper__btn {
  border: 1px solid transparent;
  padding: 8px 25px 9px;
  background: #49c3d1;
  color: #fff;
}
.hdr-body__upper__btn.req {
  border: 1px solid #49c3d1 !important;
  padding: 10px 25.5px 11px;
  color: #49c3d1;
  background: #fff;
}
.hdr-body__upper__btn.res {
  border: 1px solid #49c3d1 !important;
  padding: 4px 25.5px 4px;
  color: #49c3d1;
  background: #fff;
  text-align: center;
}
.hdr-body__upper__btn.res small {
  font-size: 10px;
  letter-spacing: .1em;
}
@media screen and (max-width: 736px) {
  .hdr-body__upper__btn {
    display: none !important;
  }
}

.hdr-body__upper__textlink + .hdr-body__upper__btn {
  margin-left: 30px;
}

.hdr-body__upper__btn + .hdr-body__upper__btn {
  margin-left: 16px;
}

.hdr-body__upper__btn:hover {
  border-color: #49c3d1;
  color: #49c3d1;
  background: #fff;
}
.hdr-body__upper__btn.req:hover {
  border: 1px solid #49c3d1 !important;
  padding: 8px 25.5px 9px;
  color: #fff;
  background: #49c3d1;
}
@media screen and (max-width: 736px) {
  .hdr-body__lower {
    width: 100%;
  }
}


.hdr-body__lower a {
  display: inline-block;
  position: relative;
  font-family:"Cormorant", "Noto Serif Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体",
    "YuGothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 0px 11px 0px;
  line-height: 1.14286;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  margin: 25px 1.4px 0;
  letter-spacing: 0.06em;
}

.hdr-body__lower a .jp{
  font-size: 11px;
  transition: .4s;
  position: absolute;
  display: block;
  width: 100%;
  text-align: center;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

.hdr-body__lower a:last-child{
  margin: 0px;
}

  .hdr-body__lower a.sp-only {
		display: none;
	}
@media screen and (max-width: 1330px) {
  .hdr-body__lower a {
    padding: 0 7px;
  }
}

@media screen and (max-width: 736px) {
	.hdr-body__lower {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		width: 100%;

		justify-content: between;

		margin-top: 84px;
		text-align: center;
    padding-bottom: 20vh;
	}

  .hdr-body__lower a {
		position: relative;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;

		justify-content: center;

		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
/*
    display: inline-block;
*/
		width: 50%;
		margin: 0;
    padding: 16px 0;
/*
    padding: 8px;
*/
    font-size: 14px;
		letter-spacing: .1em;
    text-align: center;
		z-index: 9999;
  }
  .hdr-body__lower a.sp-only {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;

		justify-content: center;

		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

  .hdr-body__lower a span {
		position: relative;
		display: inline-block;
		width: 120px;
		margin: 0 auto;
    text-align: left;
	}
  .hdr-body__lower a span::before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		width: 5px;
		height: 16px;
		background: url(../imgs/icon-nav-arrow.png) no-repeat center center;
		background-size: 100% auto;
	}

  .hdr-body__lower a.sp-btn-request {
		width: 90%;
		margin: 10px 5% 0;
    padding: 10px 0 9px;
		background: #fff;
		border: solid 1px #6bcdd8;
		color: #6bcdd8;
    line-height: 1.4;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
	}
  .hdr-body__lower a.sp-btn-reserve {
		width: 42.5%;
		margin: 12px 2.5% 0 5%;
    padding: 15px 0 14px;
		background: #6bcdd8;
		border: solid 1px #6bcdd8;
		color: #fff;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
	}
  .hdr-body__lower a.sp-btn-reserve:nth-child(odd) {
		margin: 12px 5% 0 2.5%;
  }

  .hdr-body__lower a .jp{
    opacity: 1;
    position: static;
    transform: none;
    text-align: left;
    font-size: 14px;
  }

  .hdr-body__lower a .jp::before {
    display: none;
  }

  .hdr-body__lower a .en{
    display: none!important;
  }

}


@media screen and (min-width: 737px) {
  .hdr-body__lower a:hover span{
    border-bottom: 1px solid #49c3d1;
    padding-bottom: 3px;
  }
  .hdr-body__lower a:not(:last-child) {
    border-right: 1px solid #e0e0e0;
  }
}


.hdr-body__lower a:last-child {
  padding-right: 0;
}

.hdr-body__lower a.is-active {
  pointer-events: none;
}

.hdr-body__lower a.is-active span.on{
  border-bottom: 1px solid #49c3d1;
  padding-bottom: 3px;
}

.hdr-body__lower a.is-active .jp{
  opacity: 1;
  top: -13px;
  border: none;
}

@media screen and (min-width: 737px) {
  .hdr-body__lower a:hover .jp{
  opacity: 1;
  top: -13px;
  border: none;
}
}


.hdr-body__lower a.off {
	pointer-events: none;
}
.hdr-body__lower a.off span {
	opacity: .5;
}
.hdr-body__lower a.off:hover span {
  border-bottom: none;
}

/* .hdr-body__lower a {
	pointer-events: none;
  opacity: .5;
} */
.hdr-body__lower a:hover span {
  border-bottom: none;
}

.hdr-body__lower a:first-child {
	pointer-events: auto !important;
  opacity: 1;
}


@media screen and (max-width: 736px) {


	.hdr-body__lower a.is-active span.on{
		border-bottom: 1px solid #333 !important;
	}
}

/* .hdr-body__lower a.is-active span {
  position: relative;
} */

/* .hdr-body__lower a.is-active span::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: #caa846;
} */

.hdr-body__lower .new:after{
  content: "new";
  display: block;
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 38px;
  padding: 2px 0 3px;
  box-sizing: border-box;
  background-color: rgba(213,100,81,0.8);
  color: #fff;
  font-size: 11px;
  line-height: 0.8;
  vertical-align: top;
  text-align: center;
}

.hdr-body__lower a:last-child .new:after{
  left: calc( 50% + 10px );
}

@media screen and (max-width: 736px) {
  .hdr-body__lower .new:after{
    bottom: auto;
    top: -5px;
    left: 0;
    transform: translate(0, -100%);
    /* left: calc( 50% - 42px ); */
  }
  .hdr-body__lower a:last-child .new:after{
    left: calc( 50% - 105px );
  }
}

/* --------------------------------------------------------------------------------
	sp-fixed-btns
-------------------------------------------------------------------------------- */
@media screen and (max-width: 736px) {
  .sp-fixed-btns {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background-color: #fff;
    border-top: 1px solid #49c3d1;
  }

  .sp-fixed-btns a {
		position: relative;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		flex-direction: column;

		justify-content: center;

		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
/*
    display: block;
*/
    width: 100%;
		height: 60px;
    margin: auto;
/*
    padding: 10px 20px;
*/
/*
    font-family: "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体",
      "YuGothic", sans-serif;
*/
    text-align: center;
    font-size: 14px;
		letter-spacing: .2em;
		line-height: 1.4;
  }
  .sp-fixed-btns a.request {
    color: #49c3d1;
    background-color: #fff;
  }

  .sp-fixed-btns a.reserve {
    color: #fff;
    background-color: #25a2b0;
  }
  .sp-fixed-btns a.reserve + a.reserve:before {
		content: "";
		position: absolute;
		top: 5px;
		bottom: 5px;
		left: 0;
		width: 1px;
		height: auto;
		background: #fff;
	}

  .sp-fixed-btns a small {
		width: 100%;
	}
}

/* --------------------------------------------------------------------------------
	contact
-------------------------------------------------------------------------------- */
.contact {
  padding: 105px 0 83px;
  background-color: #f6f6f6;
}

@media screen and (max-width: 736px) {
  .contact {
    padding: 50px 0 40px;
  }
}

.contact h3 {
  text-align: center;
  font-family:"Cormorant";
  font-size: 80px;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 50px;
}

@media screen and (max-width: 736px) {
  .contact h3 {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 737px) {
  .contact__inner {
    width: 840px;
    margin: auto;
  }
}

@media screen and (max-width: 736px) {
  .contact__inner {
    padding: 0 20px;
  }
}

.contact__btns {
  margin-bottom: 64px;
}

@media screen and (min-width: 737px) {
  .contact__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 736px) {
  .contact__btns {
    margin-bottom: 40px;
  }
}

.contact__btns a {
  width: 400px;
  padding: 21px 0;
  border: 1px solid #49c3d1;
  font-family: "Noto Serif Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体",
  "YuGothic", sans-serif;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.3em;
}

.contact__btns a.req {
  color: #49c3d1;
  background-color: #fff;
  padding-top: 30px;
  padding-left: 7px;
}
.contact__btns a.res small {
  font-size: 70%;
}
.contact__btns a.res {
  color: #49c3d1;
  background-color: #fff;
  text-indent: 5px;
  text-align: center;
}

@media screen and (max-width: 736px) {
  .contact__btns a {
    display: block;
    width: 100%;
    font-size: 16px;
  }
  .contact__btns a.res {
    padding-top: 21px;
  }
  .contact__btns a.req {
    color: #49c3d1;
    background-color: #fff;
    padding: 15px 0 15px 7px;
    padding-left: 7px;
    line-height: 1.2;
  }
  .contact__btns a.req small {
    font-size: 80%;
  }
}

@media screen and (min-width: 737px) {
  .contact__btns a + a {
    margin-left: 32px;
  }
}

@media screen and (max-width: 736px) {
  .contact__btns a + a {
    margin-top: 20px;
  }
}

.contact__btns a.req:hover {
  background: #49c3d1;
  color: #fff;
}
.contact__btns a.res:hover {
  background: #fff;
  color: #49c3d1;
}

@media screen and (min-width: 737px) {
  .contact__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
  }
}



.contact__tel {
  line-height: 1;
}

.contact__tel p {
  font-size: 16px;
  letter-spacing: 0.15em;
  line-height: 1.5;
  margin-bottom: 32px;
  font-family: "Noto Serif Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体",
  "YuGothic", sans-serif;
}

@media screen and (max-width: 736px) {
  .contact__tel p {
    font-size: 12px;
    margin-bottom: 18px;
    text-align: center;
  }
}

.contact__tel a {
  display: block;
  font-size: 40px;
  line-height: 0.77;
}

@media screen and (min-width: 737px) {
  .contact__tel a {
    pointer-events: none;
    font-family: "Cinzel", "Roboto Slab", serif;
  }
  a.tel {
    pointer-events: none;
  }
}

@media screen and (max-width: 736px) {
  .contact__tel a {
    margin-bottom: 20px;
    padding: 12px 17px 13px 0;
    color: #fff;
    font-size: 24px;
    /* font-family: "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体",
      "YuGothic", sans-serif; */
    font-family: 'Cinzel', serif;
    background-color: #949494;
    text-align: center;
  }

  .contact__tel a::before {
    content: "\e90b";
    display: inline-block;
    margin-right: 10px;
    font-family: "ico";
  }
}

.contact__txt p {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.144em;
  font-family: "Noto Serif Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体",
      "YuGothic", sans-serif;
}

.contact__txt p:before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((6.3 - 2) * 0.5em);
}

.contact__txt p:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}

@media screen and (max-width: 736px) {
  .contact__txt p {
    font-size: 9px;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------------
  bottom-caption
-------------------------------------------------------------------------------- */
@media screen and (min-width: 737px) {
  .bottom-caption {
    padding: 45px 0;
    min-height: 148px;
  }
}

@media screen and (max-width: 736px) {
  .bottom-caption {
    padding: 20px 0;
  }
}

.bottom-caption .caption {
  color: #aaa;
}

/* --------------------------------------------------------------------------------
	layout
-------------------------------------------------------------------------------- */
.page {
  overflow-x: hidden;
  min-width: 1000px;
  color: #231815;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: "Noto Serif Japanese", "游明朝", "Yu Mincho", "游明朝体",
    "YuMincho", serif;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 736px) {
  .page {
    min-width: inherit;
    padding: 84px 0 51px;
    font-size: 12px;
    min-width: inherit;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
}

.wrap {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 736px) {
  .wrap {
    width: auto;
    padding: 0px 20px;
  }
}

@media screen and (min-width: 737px) {
  .wrap--small {
    width: 840px;
  }
}

/* --------------------------------------------------------------------------------
	parts
-------------------------------------------------------------------------------- */
/* txt
----------------------------------------*/
.txt {
  font-size: 16px;
  line-height: 1.625;
}

.txt:before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.625) * 0.5em);
}

.txt:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 1.625) * 0.5em);
}

@media screen and (max-width: 736px) {
  .txt {
    font-size: 14px;
  }
}

.txt--large {
  font-size: 18px;
  line-height: 2.11111;
}

.txt--large:before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2.11111) * 0.5em);
}

.txt--large:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 2.11111) * 0.5em);
}

@media screen and (max-width: 736px) {
  .txt--large {
    font-size: 16px;
  }
}

.txt--small {
  font-size: 14px;
  line-height: 2.14286;
}

.txt--small:before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2.14286) * 0.5em);
}

.txt--small:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 2.14286) * 0.5em);
}

@media screen and (max-width: 736px) {
  .txt--small {
    font-size: 12px;
  }
}

.txt--xsmall {
  font-size: 13px;
  line-height: 1.69231;
}

.txt--xsmall:before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.69231) * 0.5em);
}

.txt--xsmall:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 1.69231) * 0.5em);
}

@media screen and (max-width: 736px) {
  .txt--xsmall {
    font-size: 11px;
  }
}

.txt--center {
  text-align: center;
}

/* heading
----------------------------------------*/
.heading {
  line-height: 2;
}

.heading:before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2) * 0.5em);
}

.heading:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}

.heading--main {
  font-size: 30px;
  letter-spacing: 0.16em;
  margin-right: -0.16em;
}

.heading-set .heading--title {
  font-size: 80.13px;
  letter-spacing: 0.045em;
  font-family:"Cormorant", "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体",
    "YuGothic", sans-serif;
    position: absolute;
    z-index:99;
    top:271px;

}

@media screen and (max-width: 736px) {

  .heading-set .heading--title {
    top: -3px;
  }

  .heading--main {
    font-size: 24px;
  }
}

.heading--medium {
  font-size: 28px;
}

@media screen and (max-width: 736px) {
  .heading--medium {
    font-size: 22px;
  }
}

.heading--small {
  font-size: 24px;
}

@media screen and (max-width: 736px) {
  .heading--small {
    font-size: 20px;
  }
}

.heading--xsmall {
  font-size: 20px;
}

@media screen and (max-width: 736px) {
  .heading--xsmall {
    font-size: 18px;
  }
}

.heading--gold {
  color: #49c3d1;
}


.heading--center {
  text-align: center;
}

/* heading-set
----------------------------------------*/
.heading-set {
  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;
  position: relative;
}

.heading-set--main {
  margin: 107px 0 136px;
}


@media screen and (max-width: 736px) {
  .heading-set--main {
    margin: 54px 0 48px;
  }
}

.heading-set--alignLeft {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.heading-set--alignRight {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}


.heading-set .heading--main {
  margin-bottom: 11px;
  padding-bottom: 7px;
  border-bottom: 1px solid #000;
}



.heading-set > * {
  display: inline-block;
}

/* caption
----------------------------------------*/
.caption {
  color: #000;
  font-size: 10px;
  line-height: 1.5;
  background: none;
  font-family: "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体",
    "YuGothic", sans-serif;
}

.caption:before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
}

.caption:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
}

.caption--in-right {
  position: absolute;
  bottom: 18px;
  right: 30px;
}

@media screen and (max-width: 736px) {
  .caption--in-right {
    bottom: 10px;
    right: 10px;
  }
}

.caption--in-left {
  position: absolute;
  bottom: 18px;
  left: 30px;
}

@media screen and (max-width: 736px) {
  .caption--in-left {
    bottom: 10px;
    left: 10px;
  }
}

.caption--out-right {
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 11px;
}

@media screen and (max-width: 736px) {
  .caption--out-right {
    padding-top: 6px;
  }
}

.caption--out-left {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 11px;
}

@media screen and (max-width: 736px) {
  .caption--out-left {
    padding-top: 6px;
  }
}

.caption--white {
  color: #fff;
}

/* pc / sp 切り替え
----------------------------------------*/
@media screen and (max-width: 736px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}

@media screen and (max-width: 736px) {
  .sp-only {
    display: block;
  }
}

/* txt-box
----------------------------------------*/
.txt-box {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid #49c3d1;
}
/*
  border-bottom: 1px solid #caa846;
*/

.txt-box--borderLeft {
/*
  border-left: 1px solid #caa846;
*/
  border-left: 1px solid #49c3d1;
}

.txt-box--borderRight {
/*
  border-right: 1px solid #caa846;
*/
  border-right: 1px solid #49c3d1;
}

.txt-box--alignLeft {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.txt-box--alignRight {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.txt-box .heading--main {
  margin-bottom: 45px;
}

@media screen and (max-width: 736px) {
  .txt-box .heading--main {
    margin-bottom: 20px;
  }
}

.txt-box .btn {
  margin-top: 40px;
}

@media screen and (max-width: 736px) {
  .txt-box .btn {
    margin-top: 20px;
  }
}

/* page-mv
----------------------------------------*/
.page-mv {
  position: relative;
  background-size: cover;
}

.page-mv_main{
  margin-top:-84px;
}

.page-mv__img img {
  width: 100%;
}

@media screen and (min-width: 737px) {
  .page-mv .txt-box {
    width: 40.69444%;
    position: absolute;
    top: -49px;
    bottom: -49px;
    left: 0;
    right: 0;
    margin: auto;
  }
}

@media screen and (max-width: 736px) {
  .page-mv .txt-box {
    position: relative;
    padding: 20px;
    margin: auto;
  }
}

/* btn
----------------------------------------*/
.btn {
  display: inline-block;
  border: 1px solid #caa846;
  padding: 13px 25px 14px;
  color: #caa846;
  font-family: "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "游ゴシック体",
    "YuGothic", sans-serif;
  font-size: 14px;
  line-height: 1;
}

.btn-info {
  font-size: 14px;
  padding: 2px 20px 3px;
  border: 1px solid transparent;
  text-decoration: none;
  background: #caa846;
  color: #fff;
  margin-left: 30px;
}

.btn-info:hover {
  border-color: #caa846;
  color: #caa846;
  background: #fff;
}

.btnwrapper-info {
  display: flex;
}

@media screen and (max-width: 736px) {
  .btn {
    padding: 7px 12px 8px;
    font-size: 12px;
  }

  .btn-info {
    font-size: 10px;
    padding: 2px 10px 3px;
    margin-left: 10px;
    display: inline-block;
  }
}

.btn:hover {
  color: #fff;
  background: #caa846;
}

/* figure
----------------------------------------*/
.figure {
  position: relative;
}

.figure img {
  width: 100%;
}

/* img-col
----------------------------------------*/
@media screen and (min-width: 737px) {
  .img-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.img-col > *:not(:last-child) {
  margin-bottom: 35px;
}

@media screen and (min-width: 737px) {
  .img-col--2col > * {
    width: calc((100% - 54px) / 2);
  }
}

@media screen and (min-width: 737px) {
  .img-col--3col > * {
    width: calc((100% - 10px) / 3);
  }
}

/* visual-block
----------------------------------------*/
.visual-block {
  position: relative;
  margin-bottom: 244px;
}

@media screen and (min-width: 737px) {
  .visual-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

@media screen and (max-width: 736px) {
  .visual-block {
    margin-bottom: 60px;
    padding: 0 20px;
  }
}

@media screen and (min-width: 737px) {
  .visual-block__img {
    width: 58.33333%;
  }

  .visual-block__img img {
    width: 100%;
  }
}

@media screen and (min-width: 737px) {
  .visual-block--imgRight {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .visual-block--imgRight .txt-box {
    margin-left: 0;
    margin-right: -140px;
  }
}

@media screen and (min-width: 737px) {
  .visual-block .txt-box {
    position: relative;
    right: 0;
    bottom: -60px;
    width: 37.91667%;
    padding: 4.16667% 5.55556%;
    margin-left: -140px;
  }
}

@media screen and (max-width: 736px) {
  .visual-block .txt-box {
    padding: 20px;
  }
}

/* --------------------------------------------------------------------------------
	bottom-menu
-------------------------------------------------------------------------------- */
.bottom-menu {
  padding: 20px 0;
}

@media screen and (max-width: 736px) {
  .bottom-menu {
    padding: 20px 20px 0;
    display: none;
  }
}

.bottom-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 737px) {
  .bottom-menu ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 736px) {
  .bottom-menu ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 736px) {
  .bottom-menu ul li {
    width: calc(50% - 1px);
    margin-bottom: 2px;
  }
}

.bottom-menu ul li a {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 0 20px;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
    letter-spacing: 0.144em;
    font-family: "Noto Serif Japanese", "游明朝", "Yu Mincho", "游明朝体","YuMincho", serif;
}

.bottom-menu ul li.off a {
  pointer-events: none;
  opacity: .5;
}

/*.bottom-menu ul li:nth-of-type(4) a,
.bottom-menu ul li:nth-of-type(11) a {
	pointer-events: none;
	opacity: .5;
}*/
@media screen and (min-width: 737px) {
  .bottom-menu ul li a {
    font-family: "Noto Serif Japanese", "游明朝", "Yu Mincho", "游明朝体","YuMincho", serif,
    "YuGothic", sans-serif;
  }
  .bottom-menu ul li.on a span,
  .bottom-menu ul li a:hover span{
    border-bottom: 1px solid #49c3d1;
    padding-bottom: 3px;
  }
  /* .bottom-menu ul li:nth-of-type(11) a:hover span{
    border-bottom: none;
	} */
}

@media screen and (max-width: 736px) {
  .bottom-menu ul li a {
    display: block;
    width: 100%;
    padding: 12px 0 14px;
    color: #333333;
    /* background-color: #49c3d1; */
    /* text-align: center; */
    padding-left: 27px;
    position: relative;
  }
  .bottom-menu ul li a::after {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: rotate(-45deg) translateY(-70%);
    transform-origin: center;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
  }
}

@media screen and (min-width: 737px) {
  .bottom-menu ul li:not(:last-child) {
    border-right: 1px solid #e0e0e0;
  }
}

/* --------------------------------------------------------------------------------
	footer
-------------------------------------------------------------------------------- */
#ftrLinks {
  overflow: hidden;
  width: 100%;
  background-color: #262626;
}

#ftrLinks .item {
  padding: 20px 0;
  border-bottom: 1px dotted #5a5a5a;
  zoom: 1;
}

#ftrLinks .item:last-child {
  border: none;
}

/* #ftrLinks .item:last-child .item_logo {
  width: 177px;
} */

/* #ftrLinks .item:last-child .item_btns {
  width: 200px;
} */

@media only screen and (max-width: 768px) {
  #ftrLinks .item:last-child .item_btns {
    width: 100%;
  }
}

#ftrLinks .item:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  line-height: 0;
  visibility: hidden;
}

#ftrLinks .item_title {
  float: left;
  line-height: 1;
}

#ftrLinks .item_more {
  margin-top: 5px;
}

#ftrLinks .item_more a {
  display: inline-block;
  padding: 0 19px;
  border-radius: 2px;
  background: #4d4d4d url(../imgs/ftr-links-more-arr.png) no-repeat 5px center;
  color: #fff;
  font-size: 12px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  line-height: 16px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#ftrLinks .item_more a:hover {
  background-color: #999;
}

#ftrLinks .item_btns {
  overflow: hidden;
  float: right;
  width: 830px;
}

@media only screen and (max-width: 870px) {
  #ftrLinks .item_btns {
    width: 410px;
  }
}

#ftrLinks .item_btns ul {
  margin-right: -10px;
  font-size: 0;
  letter-spacing: -0.4em;
  text-align: left;
}

#ftrLinks .item_btns li {
  display: inline-block;
  margin-right: 10px;
  background-color: #fff;
}

#ftrLinks .item_btns a {
  letter-spacing: 0.12em;
}

#ftrLinks .item_btns a img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

#ftrLinks .item_btns a:hover img {
  opacity: 0.8;
}

@media screen and (max-width: 736px) {
  #ftrLinks .wrap {
    width: 95%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #ftrLinks .item_title,
  #ftrLinks .item_btns {
    float: none;
    width: 100%;
  }

  #ftrLinks .item_title {
    margin-bottom: 10px;
  }

  #ftrLinks .item_btns li {
    width: 50%;
    margin-right: 0;
    padding-right: 5px;
    background-color: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  #ftrLinks .item_btns li img {
    width: 100%;
    height: auto;
  }
}

#group li {
  display: inline-block;
  margin-right: 30px;
  vertical-align: top;
  text-align: left;
}

#group span {
  display: block;
  margin: 0 0 10px;
  font-size: 10px;
  line-height: 20px;
}

@media only screen and (max-width: 599px) {
  #group li {
    margin-right: 0;
  }
  #group span.mt10 {
    margin: 10px 0;
  }
}

/* wrapper */
.wrapper {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  zoom: 1;
}

.wrapper:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  line-height: 0;
  visibility: hidden;
}

#cigrCommonFooter {
  clear: both;
  line-height: 0;
  background: #fff;
  padding-bottom: 10px;
}

#cigrCommonFooter .cigrFooterAddBannerArea {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}

#cigrCommonFooter .cigrFooterAddBannerArea ul li {
  width: 200px;
  height: 55px;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: center;
  vertical-align: bottom;
}

#cigrCommonFooter img {
  max-width: 100%;
  vertical-align: bottom;
}

.cigrFooterBannerArea {
  float: right;
  padding: 36px 0 0 0;
  max-width: 420px;
}

.cigrFooterBannerArea li {
  float: right;
  margin: 10px 0 0 10px;
}

.cigrFooterCorporateSign {
  float: left;
  padding: 0 0 4px 0;
}

.cigrFooterCorporateSign ul {
  float: right;
}

.cigrFooterCorporateSign li {
  float: left;
  margin: 20px 0 0 0;
  margin-right: 20px;
}

body #cigrCommonFooter .wrapper {
  max-width: 940px;
}

.cigrFooterCopyright {
  clear: both;
  color: #1f73b9;
  font-size: 10px;
  line-height: 15px;
  font-family: Helvetica, Arial, "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
}

.cigrFooterCopyright br {
  display: none;
}

/**
	レスポンシブ対応ではない場合は以下を削除かコメントアウトしてください。
**/
/* @media 960 START */
@media only screen and (max-width: 960px) {
  /* wrapper */
  .wrapper {
    width: 100% !important;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
  }

  #cigrCommonFooter .cigrFooterAddBannerArea {
    margin-bottom: 20px;
  }

  #cigrCommonFooter .cigrFooterAddBannerArea ul li {
    width: 23%;
  }

  .cigrFooterBannerArea {
    float: none;
    clear: both;
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 0;
  }

  .cigrFooterBannerArea li {
    float: none;
    display: inline-block;
  }

  .cigrFooterCorporateSign {
    float: none;
    text-align: center;
    margin-bottom: 20px;
  }

  .cigrFooterCorporateSign ul {
    float: none;
  }

  .cigrFooterCorporateSign ul li {
    float: none;
    display: inline-block;
    vertical-align: top;
  }

  .cigrFooterCopyright {
    text-align: center;
  }
}

/* @media 960 END */
/* @media 599 START */
@media only screen and (max-width: 599px) {
  #cigrCommonFooter .cigrFooterAddBannerArea ul li {
    width: 100%;
  }

  .cigrFooterCorporateSign ul li {
    width: 100%;
    margin: 0;
  }

  .cigrFooterCopyright br {
    display: block;
  }
}

/* @media 599 END */
/* @media 420 START */
@media only screen and (max-width: 420px) {
  .cigrFooterBannerArea li {
    margin-left: 0;
  }
}

/* @media 420 END */
/* pop */
#pop #cigrCommonFooter .cigrFooterAddBannerArea,
#pop .cigrFooterBannerArea,
.pop #cigrCommonFooter .cigrFooterAddBannerArea,
.pop .cigrFooterBannerArea {
  display: none;
}

/* @media 599 START */
@media only screen and (max-width: 599px) {
  .cigrFooterCorporateSign {
    padding-top: 10px;
  }
}

/* --------------------------------------------------------------------------------
	interaction
-------------------------------------------------------------------------------- */
.js-scroll-animation {
  -webkit-transform: translate3d(0, 10%, 0);
  transform: translate3d(0, 10%, 0);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  -o-transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease,
    -webkit-transform 0.6s ease;
}

.js-scroll-animation.is-anime {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.pc {
  display: inline-block;
}
.sp {
  display: none;
}

@media screen and (max-width: 736px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
}

/* parts */

.p-relative {
  position: relative;
}

.p-clmn {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /*
		flex-direction: column;
*/
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-clmn.rev {
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-clmn.cen {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-clmn > div {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.caption--shadow {
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 0.8),
    0 0 2px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 0.8),
    0 0 2px rgba(0, 0, 0, 0.8);
}

.caption--shadow-white {
  text-shadow: 0 0 2px rgba(255, 255, 255, 1), 0 0 2px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1), 0 0 2px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1);
}

#gBannerArea {
  padding-bottom:21px;
  box-sizing: border-box !important;
}
#gBannerArea ul {
  font-size: 0;
  letter-spacing: -0.4em;
  text-align: center;
}
#gBannerArea .bnr {
  display: inline-block;
  width: 235px;
  height: 153px;
  margin: 0 20px 20px 0;
  background-color: #f8f8f8;
  vertical-align: top;
  box-sizing: border-box;
  text-align: left;
}
#gBannerArea .bnr:last-child {
  margin-right: 0;
}
#gBannerArea .bnr_image {
  float: left;
  width: 65px;
  height: 50px;
}
#gBannerArea .bnr_ttl {
  font-family: "Crimson Text", "FOT-マティス Pro DB";
  float: right;
  width: 128px;
  padding-top: 10px;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
#gBannerArea .bnr_txt {
  font-family: "FOT-マティス Pro L";
  clear: both;
  padding:8px 6px 0px 0px;
  font-size: 11px;
  letter-spacing: -0.055em;
  text-indent:-1px;
  line-height: 15px;
  text-align: justify;
}
#gBannerArea a {
  display: block;
  padding: 18px;
  letter-spacing: 0.12em;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  zoom: 1;
}
#gBannerArea a:hover {
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}
#gBannerArea a:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  line-height: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  #gBannerArea {
    width: 100%;
    padding-top: 0;
  }
  #gBannerArea ul {
    margin-right: 0;
  }
  #gBannerArea .bnr {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: transparent;
    border-bottom: 1px solid #d9d9d9;
  }
  #gBannerArea .bnr:last-child {
    border: none;
  }
  #gBannerArea .bnr_ttl {
    float: none;
    width: auto;
    margin-left: 75px;
    padding-top: 5px;
    font-size: 10px;
    line-height: 11px;
  }
  #gBannerArea .bnr_ttl br {
    display: none;
  }
  #gBannerArea .bnr_txt {
    clear: none;
    margin-left: 75px;
    padding-top: 5px;
    font-size: 8px;
    line-height: 10px;
  }
  #gBannerArea a {
    padding: 18px 0;
  }
}


/* 200316 */
@media screen and (min-width: 737px) {
  #container {
    margin-top: 136px;
  }
}

	.center-2clm {
		justify-content: center;
	}
	.center-2clm > div {
		margin-right: calc(32/1000*100%);
	}
	.center-2clm > div:last-child {
		margin-right: 0;
	}
@media screen and (max-width: 736px) {
	.center-2clm {
		justify-content: space-between;
	}
	.center-2clm > div {
		margin-right: 0;
	}
}

	.imageCap {
		position: relative;
	}
	.fullSize { width: 100%;}

	.imageCap .caption {
		position: absolute;
		padding: 10px;
	}
	.imageCap .caption.side {
		padding: 10px 0 0;
	}

	.caption--inLeft {
		bottom: 0;
		left: 0;
		text-align: left;
	}

	.caption--inUpLeft {
		top: 0;
		left: 0;
		text-align: left;
	}
	.caption--outLeft {
		top: 100%;
		left: 0;
		text-align: left;
	}

	.caption--inRight {
		bottom: 0;
		right: 0;
		text-align: right;
	}
	.caption--inUpRight {
		top: 0;
		right: 0;
		text-align: right;
	}
	.caption--outRight {
		top: 100%;
		right: 0;
		text-align: right;
	}

	.caption-white-shadow {
		color: #fff;
		text-shadow: 0px 0px 6px #000, 0px 0px 6px #000, 0px 0px 6px #000;
	}
@media screen and (max-width: 736px) {
	.imageCap .caption {
/*
		position: absolute;
*/
		position: static;
		padding: 5px;
	}
	.imageCap .caption.side {
		padding: 5px 0 0;
	}
}

	.color-white { color: #fff !important;}
	.color-black { color: #000 !important;}


	.page-mv {
		display: none;
	}

	.visual--title {
		position: relative;
		height: 395px;
	}
	.visual--title .caption {
		position: absolute;
		bottom: 10px;
		left: 10px;
		text-align: left;
		color: #fff;
	}
	.visual--title .shadow {
		text-shadow: 0 0 2px rgba(0, 0, 0, .8), 0 0 2px rgba(0, 0, 0, .8), 0 0 2px rgba(0, 0, 0, .8);
	}
	.headline--content-title {
		position: absolute;
		bottom: -40px;
		left: 0;
		right: 0;
		font-family: 'Cormorant', serif;
		font-size: 80px;
		font-weight: normal;
		line-height: 1;
		text-align: center;
	}
@media screen and (max-width: 736px) {
	.visual--title {
		height: 200px;
	}
	.headline--content-title {
		bottom: -20px;
		font-size: 50px;
	}
}

	.headline--01 {
		font-size: 28px;
		line-height: 1.6428;
		text-align: center;
	}

	.headline--02 {
		font-size: 26px;
		line-height: 1.4615;
		text-align: center;
	}
	.headline--02 + .text {
		margin-top: 30px;
	}

	.headline--03 {
		font-size: 22px;
		line-height: 1.4545;
	}
	.headline--03 + .text {
		margin-top: 30px;
	}

	section sup {
		font-size: 10px;
		vertical-align: super;
	}
@media screen and (max-width: 736px) {
	.headline--01 {
		font-size: 22px;
	}

	.headline--02 {
		font-size: 20px;
	}

	.headline--03 {
		font-size: 18px;
	}
	.headline--03 + .text {
		margin-top: 20px;
	}
}

	.text-01 {
		font-size: 16px !important;
		line-height: 1.75;
	}

	.p-acTxt {
		text-align: center;
	}

	.text {
		color: #333;
	}
@media screen and (max-width: 736px) {
	.text-01 {
		font-size: 12px !important;
	}

	.p-acTxt {
		text-align: left;
	}
}

  .headline--01::before,
	.headline--01::after,
  .headline--02::before,
	.headline--02::after,
  .headline--03::before,
	.headline--03::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
	}
  .headline--01::before {
    margin-top: calc((1 - 1.6428) * 0.5em);
	}
  .headline--01::after {
    margin-bottom: calc((1 - 1.6428) * 0.5em);
	}

  .headline--02::before {
    margin-top: calc((1 - 1.4615) * 0.5em);
	}
  .headline--02::after {
    margin-bottom: calc((1 - 1.4615) * 0.5em);
	}

  .headline--03::before {
    margin-top: calc((1 - 1.4545) * 0.5em);
	}
  .headline--03::after {
    margin-bottom: calc((1 - 1.4545) * 0.5em);
	}

  .text-01::before,
	.text-01::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
	}
  .text-01::before {
    margin-top: calc((1 - 1.75) * 0.5em);
	}
  .text-01::after {
    margin-bottom: calc((1 - 1.75) * 0.5em);
	}

	.color-half {
		opacity: .5;
	}
	.color-lblue { color: #49c3d1;}

	.fix--cv {
		position: fixed;
		bottom: 10vh;
		right: 0;
		z-index: 1000;
	}
	.fix--cv ul li {
		box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    border-radius: 10px 0 0px 10px;

    height: calc(70vh/3);
    /* background-color: #fff; */
	}
	.fix--cv ul li a {
    display: block;
    overflow: hidden;
  }
	.fix--cv ul li img {
    height: calc(70vh/3);
    border-radius: 10px 0 0px 10px;
	}
	.fix--cv ul li:nth-child(n+2) {
		margin-top: 2vh;
	}
@media only screen and (max-width: 736px) {
	.fix--cv {
		display: none;
	}
}

.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}
.mt60 {
  margin-top: 60px;
}
.mt70 {
  margin-top: 70px;
}
.mt80 {
  margin-top: 80px;
}
.mt90 {
  margin-top: 90px;
}
.mt100 {
  margin-top: 100px;
}

/* add */
.infoArea .infoArea__inner,
.contact .infoArea__inner {
  text-align: center;
}

.contact .infoArea__inner {
  margin-bottom: 40px;
}

.infoArea .infoArea__head,
.contact .infoArea__head {
  font-family: 'Cormorant', seif;
  font-size: 20px;
  line-height: 1;
}

.infoArea .infoArea__text,
.contact .infoArea__text {
  margin-top: 40px;
  font-size: 14px;
}

.infoArea .infoArea__text + .infoArea__text,
.contact .infoArea__text + .infoArea__text {
  margin-top: 20px;
}

.infoArea .infoArea__text--large,
.contact .infoArea__text--large {
  font-size: 24px;
}
@media only screen and (max-width: 736px) {
  .contact .infoArea__inner {
    margin-bottom: 30px;
  }

  .infoArea .infoArea__head,
  .contact .infoArea__head {
    font-size: 16px;
  }

  .infoArea .infoArea__text,
  .contact .infoArea__text {
    font-size: 12px;
  }

  .infoArea .infoArea__text--large,
  .contact .infoArea__text--large {
    font-size: 20px;
  }
}