@charset "UTF-8";

/* リセット */
body,
div,
p,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
caption,
tr,
td,
th,
address,
header,
footer,
nav,
main,
article,
section,
aside,
figure,
figcaption {
  margin: 0;
  padding: 0;
}

body,
div,
p,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
address,
header,
footer,
nav,
main,
article,
section,
aside,
figure,
figcaption {
  display: block;
}

body,
div,
p,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
caption,
tr,
td,
th,
address,
header,
footer,
nav,
main,
article,
section,
aside,
figure,
figcaption,
img,
span,
a {
  box-sizing: border-box;
}

ul,
ol {
  list-style-type: none;
}

img {
  border: none;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

/* ユーティリティー */
a {
  zoom: 1;
  text-decoration: none;
  color: #333;
  transition: opacity 0.7s;
  display: block;
}

a:hover {
  opacity: 0.8;
}

.fgo {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
}

.fmin {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

.farno {
  font-family: arno-pro, serif;
  font-weight: 400;
}

.frob {
  font-family: roboto, serif;
  font-weight: 400;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.page_w {
  width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}

.page {
  width: 1000px;
  margin: 0 auto;
}

.page_s {
  max-width: 800px;
  margin: 0 auto;
}

body {
  color: #333;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  -webkit-text-size-adjust: 100%;
}

body p {
  line-height: 1.8;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* -------------------------------------
header
------------------------------------- */
header #logo {
  width: 200px;
  margin: 0 auto;
  position: fixed;
  top: 25px;
  left: 0;
  z-index: 30;
}

header #logo a {
  padding: 61px;
  background-color: #c8dbda;
}

header #logo a img {
  width: 78px;
}

header nav {
  width: 100%;
  height: 100vh;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  overflow: auto;
}

header nav ul {
  font-size: 0;
  text-align: center;
  padding: 40px 20px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 1;
  transform: translateY(-50%);
}

header nav ul li:not(:last-child) {
  margin-bottom: 15px;
}

header nav ul li a {
  font-size: 18px;
  color: #fff;
  display: inline-block;
  padding: 5px;
  position: relative;
  transition: color 0.3s;
}

header nav ul li a::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background-color: #fff;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
}

header nav ul li a:hover,
header nav ul li a.active {
  opacity: 1;
}

header nav ul li a:hover::after,
header nav ul li a.active::after {
  opacity: 1;
}

header a#menu_btn,
header a#menu_btn span {
  display: inline-block;
  transition: all 0.4s;
}

header a#menu_btn {
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  background-color: #666;
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 50;
}

header a#menu_btn span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
}

header a#menu_btn span:nth-of-type(1) {
  top: 21px;
}

header a#menu_btn span:nth-of-type(2) {
  top: 29px;
}

header a#menu_btn span:nth-of-type(3) {
  top: 37px;
}

header a#menu_btn.active {
  background-color: #fff;
}

header a#menu_btn.active span {
  background-color: #666;
}

header a#menu_btn.active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-315deg);
}

header a#menu_btn.active span:nth-of-type(2) {
  opacity: 0;
}

header a#menu_btn.active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(315deg);
}

/* -------------------------------------
common
------------------------------------- */
#sns {
  background-color: #f3f7f7;
  padding-top: 28px;
  padding-bottom: 28px;
}

.sns__inner {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sns__item-link {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}

.sns__item-link:hover {
  opacity: 0.8;
}

.sns__item-txt {
  font-size: 12px;
  font-weight: 500;
}

.sns__item-icon {
  width: 38px;
  margin-right: 8px;
}

.img {
  width: 100%;
  height: auto;
  display: block;
}

.sptel {
  cursor: default;
  pointer-events: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.alitems_cen {
  align-items: center;
}

.alitems_start {
  align-items: flex-start;
}

.alitems_end {
  align-items: flex-end;
}

.juscontent_center {
  justify-content: center;
}

.juscontent_sb {
  justify-content: space-between;
}

.bg_gr {
  background-color: #c8dbda;
}

.tb {
  width: 100%;
  display: table;
}

.cell {
  display: table-cell;
  vertical-align: middle;
}

.posrel {
  position: relative;
}

.abimg {
  position: absolute;
  z-index: 1;
}

.inv_mov {
  opacity: 0;
  transition: opacity 1s, transform 1s;
}

.tl_yb {
  transform: translate(0, 60px);
}

.tl_yt {
  transform: translate(-60px, 0);
}

.tl_xl {
  transform: translate(-60px, 0);
}

.tl_xr {
  transform: translate(60px, 0);
}

.tl_rol {
  transform: rotate(-10deg);
}

.tl_ror {
  transform: rotate(10deg);
}

.mov {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
  transition: opacity 1s, transform 1s;
}

.mov.delay100 {
  transition-delay: 100ms;
}

.mov.delay200 {
  transition-delay: 200ms;
}

.mov.delay300 {
  transition-delay: 300ms;
}

.mov.delay400 {
  transition-delay: 400ms;
}

.mov.delay500 {
  transition-delay: 500ms;
}

main {
  margin-bottom: 10%;
}

.title span {
  display: block;
}

.title .eng {
  font-size: 32px;
  letter-spacing: 0.2em;
  font-weight: 300;
}

.title .ja {
  font-size: 14px;
}

.title .eng::after {
  content: "";
  display: block;
}

.title.short {
  text-align: center;
  margin-bottom: 60px;
}

.title.short .eng::after {
  width: 162px;
  height: 3px;
  margin: 5px auto 10px auto;
  background: url(../imgs/common/bdr_title_short.png) no-repeat center center;
}

.title.long {
  margin-bottom: 40px;
  overflow: hidden;
}

.title.long .eng::after {
  width: 368px;
  height: 4px;
  margin: 7px 0 15px 0;
  background: url(../imgs/common/bdr_title_long.png) no-repeat center center;
  position: relative;
}

.float .box {
  padding: 100px 0;
}

.float .box.bg_gr {
  padding: 55px 0;
}

.float .box .left {
  float: left;
}

.float .box .right {
  float: right;
}

.float .box .photo,
.float .box .text {
  width: 50%;
}

.float .box .text {
  padding: 25px 0 0 0;
}

.float .box .text.right {
  padding-right: 70px;
}

.float .box .text.left {
  padding-left: 70px;
}

.float .box .text .in {
  max-width: 368px;
  margin: 0 auto;
}

.float .box .text p {
  line-height: 2.2;
  letter-spacing: 0;
}

.link {
  font-size: 14px;
  display: inline-block;
  width: 190px;
  padding: 0 0 18px 5px;
  background: url(../imgs/common/arrow_link.png) no-repeat left bottom;
  background-size: 183px auto;
  transition: background 0.4s;
}

.link:hover {
  background-position: left 5px bottom;
  opacity: 1;
}

.link.center {
  margin: 0 auto;
}

.link.right {
  float: none;
  margin-left: calc(100% - 190px);
}

.page_title {
  padding: 120px 0 70px 0;
  text-align: center;
}

.page_title .eng {
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-bottom: 25px;
  font-weight: 300;
}

.page_title h1 {
  font-size: 14px;
  font-weight: 500;
  color: #999;
}

#page_mainimg {
  margin-bottom: 6.2%;
}

.lead {
  text-align: center;
  margin-bottom: 9.9%;
}

.lead h2 {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.lead p {
  line-height: 2.6;
}

.lead p .spbr {
  display: none;
}

#notfound {
  padding: 100px 0;
}

#notfound h1 {
  font-size: 0;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

#notfound h1 span {
  font-size: 60px;
  font-weight: bold;
  color: #666;
  line-height: 1.2;
  display: inline-block;
  padding: 0 20px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

#notfound h1::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #e4e4e4;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}

#notfound p {
  text-align: center;
}

#notfound p a {
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
  position: relative;
}

#notfound p a::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #666;
  position: absolute;
  bottom: -1px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}

#notfound p a:hover {
  opacity: 1;
}

#notfound p a:hover::after {
  opacity: 1;
}

.nolink {
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}

.commingsoon {
  text-align: center;
  padding: 100px 0;
}

.rev-bnr {
  display: block;
  font-size: 21px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.15em;
  padding: 60px 20px;
  background: url(../imgs/common/bg_reserve2.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

.rev-bnr svg {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 75px;
  height: auto;
}

.rev-bnr .cls-1 {
  fill: #fff;
}

.rev-bnr .cls-2 {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
}

.scroll-hint-text {
  font-size: 9px;
}

/* -------------------------------------
footer
------------------------------------- */
footer {
  color: #fff;
  padding: 50px 0;
  background-color: #333;
}

footer dl {
  text-align: center;
  max-width: 755px;
  padding-bottom: 25px;
  margin: 0 auto 30px auto;
  border-bottom: 1px solid #808080;
}

footer dl dt {
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}

footer dl dd {
  font-size: 16px;
  line-height: 1.8;
}

footer dl dd:not(:last-child) {
  margin-bottom: 5px;
}

footer dl dd.address {
  font-size: 14px;
}

footer dl dd.address span {
  padding-right: 1em;
}

footer dl dd.tel {
  letter-spacing: 0.2em;
}

footer dl dd.tel a {
  color: #fff;
  display: inline-block;
}

footer #cp {
  text-align: center;
}

footer #cp small {
  font-size: 12px;
  line-height: 1.2;
  display: block;
}

@media screen and (max-width: 1420px) {
  /* -------------------------------------
	header
	------------------------------------- */
  header #logo {
    width: 190px;
  }

  header #logo a {
    padding: 56px;
  }

  /* -------------------------------------
	common
	------------------------------------- */
  .page_w {
    width: 100%;
  }

  .page_title {
    padding: 115px 0 65px 0;
  }

  .title.short {
    margin-bottom: 58px;
  }

  .float .box .text {
    padding: 20px 0 0 0;
  }

  .lead h2 {
    margin-bottom: 33px;
  }

  .lead p {
    line-height: 2.5;
  }

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

@media screen and (max-width: 1240px) {
  /* -------------------------------------
	header
	------------------------------------- */
  header #logo {
    width: 180px;
  }

  header #logo a {
    padding: 51px;
  }

  /* -------------------------------------
	common
	------------------------------------- */
  .page_title {
    padding: 110px 0 60px 0;
  }

  .title.short {
    margin-bottom: 55px;
  }

  .float .box .text {
    padding: 10px 0 0 0;
  }

  .lead h2 {
    margin-bottom: 31px;
  }

  .lead p {
    line-height: 2.4;
  }
}

@media screen and (max-width: 1100px) {
  .float .box .text {
    padding: 0;
  }

  .float .box .text.right {
    padding-right: 0;
    padding-left: 40px;
  }

  .float .box .text.left {
    padding-left: 0;
    padding-right: 40px;
  }

  .float .box .text .in {
    margin: 0;
  }

  .float .box .text.left .in {
    margin-left: calc(100% - 368px);
  }
}

@media screen and (max-width: 1060px) {
  /* -------------------------------------
	header
	------------------------------------- */
  header #logo {
    width: 170px;
    top: 20px;
  }

  header #logo a {
    padding: 50px;
  }

  header #logo a img {
    width: 70px;
  }

  header a#menu_btn {
    width: 56px;
    height: 56px;
    top: 28px;
    right: 30px;
  }

  header a#menu_btn span {
    width: 17px;
  }

  header a#menu_btn span:nth-of-type(1) {
    top: 19px;
  }

  header a#menu_btn span:nth-of-type(2) {
    top: 27px;
  }

  header a#menu_btn span:nth-of-type(3) {
    top: 35px;
  }

  /* -------------------------------------
	common
	------------------------------------- */
  .page {
    width: 100%;
    padding: 0 20px;
  }

  .page_title {
    padding: 105px 0 55px 0;
  }

  .page_title .eng {
    font-size: 30px;
    letter-spacing: 0.15em;
    margin-bottom: 23px;
  }

  .title .eng {
    font-size: 30px;
  }

  .title.short {
    margin-bottom: 50px;
  }

  .title.short .eng::after {
    width: 158px;
  }

  .lead h2 {
    font-size: 17px;
    margin-bottom: 29px;
  }

  .lead p {
    line-height: 2.2;
  }

  .float .box {
    padding: 90px 0;
  }

  #notfound {
    padding: 80px 0;
  }

  #notfound h1 {
    margin-bottom: 23px;
  }

  #notfound h1 span {
    font-size: 55px;
    padding: 0 18px;
  }

  /* -------------------------------------
	footer
	------------------------------------- */
  footer dl {
    padding-bottom: 23px;
    margin: 0 auto 28px auto;
  }
}

@media screen and (max-width: 880px) {
  /* -------------------------------------
	header
	------------------------------------- */

  /* -------------------------------------
	common
	------------------------------------- */
  .float .box .text.right {
    padding-left: 35px;
  }

  .float .box .text.left {
    padding-right: 35px;
  }

  .float .box .text .in {
    max-width: 100%;
  }

  .float .box .text.left .in {
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .sns__inner {
    padding-left: 7%;
    padding-right: 3%;
  }

  .sns__item-txt {
    font-size: 10px;
  }

  .sns__item {
    width: 48%;
  }

  .sns__item:first-child {
    margin-bottom: 5px;
  }

  .sns__item-icon {
    width: 25px;
  }

  .rev-bnr svg {
    width: 45px;
  }

  /* -------------------------------------
	header
	------------------------------------- */
  header #logo {
    width: 150px;
  }

  header #logo a {
    padding: 45px;
  }

  header #logo a img {
    width: 60px;
  }

  header nav ul li:not(:last-child) {
    margin-bottom: 13px;
  }

  header nav ul li a {
    font-size: 17px;
  }

  header a#menu_btn {
    width: 50px;
    height: 50px;
    top: 25px;
    right: 25px;
  }

  header a#menu_btn span {
    width: 16px;
  }

  header a#menu_btn span:nth-of-type(1) {
    top: 16px;
  }

  header a#menu_btn span:nth-of-type(2) {
    top: 24px;
  }

  header a#menu_btn span:nth-of-type(3) {
    top: 32px;
  }

  /* -------------------------------------
	common
	------------------------------------- */
  .page_title {
    padding: 90px 0 50px 0;
  }

  .page_title .eng {
    font-size: 28px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }

  main {
    margin-bottom: 100px;
  }

  .title .eng {
    font-size: 28px;
  }

  .title.short {
    margin-bottom: 45px;
  }

  .title.short .eng::after {
    width: 154px;
  }

  .float .box {
    padding: 80px 0;
  }

  .float .box.bg_gr {
    padding: 80px 0;
  }

  .float .box .text.right {
    padding-left: 30px;
  }

  .float .box .text.left {
    padding-right: 30px;
  }

  .lead {
    margin-bottom: 80px;
  }

  .lead h2 {
    font-size: 16px;
    margin-bottom: 27px;
  }

  .lead p {
    line-height: 2;
  }

  .lead p .spbrnone {
    display: none;
  }

  #notfound {
    padding: 60px 0;
  }

  #notfound h1 {
    margin-bottom: 20px;
  }

  #notfound h1 span {
    font-size: 45px;
    padding: 0 15px;
  }

  /* -------------------------------------
	footer
	------------------------------------- */
  footer dl {
    padding-bottom: 20px;
    margin: 0 auto 25px auto;
  }
}

@media screen and (max-width: 640px) {
  /* -------------------------------------
	header
	------------------------------------- */
  header #logo {
    width: 125px;
  }

  header #logo a {
    padding: 35px;
  }

  header #logo a img {
    width: 55px;
  }

  /* -------------------------------------
	common
	------------------------------------- */
  .page_title {
    padding: 170px 0 40px 0;
  }

  .title.long {
    text-align: center;
  }

  .title.long .eng::after {
    width: 100%;
    background: url(../imgs/common/bdr_title_short.png) no-repeat center center;
    background-size: 160px 3px;
  }

  .float .box .left {
    float: none;
  }

  .float .box .right {
    float: none;
  }

  .float .box .photo,
  .float .box .text {
    width: 100%;
  }

  .float .box .text {
    text-align: center;
  }

  .float .box .photo {
    margin-bottom: 30px;
  }

  .float .box .text.right {
    padding-left: 0;
  }

  .float .box .text.left {
    padding-right: 0;
  }

  .float .box .text p {
    text-align: left;
  }

  .float .box .text p .spbrnone {
    display: none;
  }

  .float .box .link {
    margin: 0 auto;
  }

  #page_mainimg {
    margin-bottom: 40px;
  }

  .lead h2 {
    margin-bottom: 25px;
  }

  .lead p .spbr {
    display: block;
  }

  #notfound {
    padding: 50px 0;
  }

  #notfound h1 span {
    font-size: 40px;
    padding: 0 10px;
  }

  /* -------------------------------------
	footer
	------------------------------------- */
  footer #cp small {
    font-size: 11px;
  }
}

@media screen and (max-width: 500px) {
  /* -------------------------------------
	header
	------------------------------------- */
  header #logo {
    width: 100px;
  }

  header #logo a {
    padding: 25px;
  }

  header #logo a img {
    width: 50px;
  }

  header nav ul li:not(:last-child) {
    margin-bottom: 10px;
  }

  header nav ul li a {
    font-size: 16px;
  }

  /* -------------------------------------
	common
	------------------------------------- */
  .page_title {
    padding: 160px 0 40px 0;
  }

  .title .eng {
    font-size: 26px;
  }

  .title.short .eng::after {
    width: 150px;
  }

  #notfound {
    padding: 40px 0;
  }

  #notfound h1 span {
    font-size: 30px;
  }

  /* -------------------------------------
	footer
	------------------------------------- */
  footer dl dd.address span {
    display: block;
    padding-right: 0;
  }

  footer dl dd {
    letter-spacing: 0.05em;
  }
}

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