@charset "UTF-8";
@media screen and (hover: hover) and (pointer: fine) {
  .hov {
    transition: opacity 0.3s;
  }
  @supports (filter: brightness(100%)) {
    .hov {
      transition-property: filter;
    }
  }
  .hov:hover {
    opacity: 0.8;
  }
  @supports (filter: brightness(100%)) {
    .hov:hover {
      filter: brightness(110%);
      opacity: 1;
    }
  }
}

* {
  -webkit-tap-highlight-color: transparent;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
table,
tr,
th,
td,
form,
figure {
  font-size: inherit;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}

summary {
  display: block;
}

table {
  border-collapse: collapse;
  empty-cells: show;
}

th,
td {
  text-align: left;
  vertical-align: top;
}

li {
  list-style: none;
}

img {
  vertical-align: top;
  height: auto;
}

input,
textarea,
select {
  color: inherit;
  font-family: inherit;
  appearance: none;
}

button {
  color: inherit;
  font-family: inherit;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

input[type=number] {
  appearance: textfield;
}

select::-ms-expand {
  display: none;
}

[disabled] {
  cursor: not-allowed;
}

input[type=button]:not([disabled]), input[type=submit]:not([disabled]), input[type=reset]:not([disabled]),
button[type=button]:not([disabled]),
button[type=submit]:not([disabled]),
button[type=reset]:not([disabled]) {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}
img,
video {
  max-width: none;
  height: auto;
  width: 100%;
}

:root {
  font-size: 50px;
}
@media screen and (max-width: 1440px) and (min-width: 751px) {
  :root {
    font-size: 3.4722222222vw;
  }
}
@media screen and (max-width: 750px) {
  :root {
    font-size: 13.3333333333vw;
  }
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  color: #0d183d;
  overflow: hidden;
  overflow-y: auto;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", serif;
  font-size: 0.36rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 0.32rem;
    font-weight: 500;
    line-height: 1.5;
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

i,
em {
  font-style: normal;
}

.wrap {
  width: 20rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .wrap {
    width: auto;
    padding-right: 0.4rem;
    padding-left: 0.4rem;
  }
}

@media screen and (min-width: 751px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 751px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .blurIn {
    opacity: 0;
    filter: blur(15px);
    transition: 1.6s;
    transition-property: opacity, filter;
  }
  .blurIn.scrollIn {
    opacity: 1;
    filter: blur(0);
  }
  .fadeUp {
    opacity: 0;
    transform: translate3d(0, 0.2rem, 0);
    transition: 1.2s;
    transition-property: opacity, transform;
  }
  .fadeUp.scrollIn {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  .delay01 {
    transition-delay: 0.1s !important;
  }
  .delay02 {
    transition-delay: 0.2s !important;
  }
  .delay03 {
    transition-delay: 0.3s !important;
  }
  .delay04 {
    transition-delay: 0.4s !important;
  }
  .delay05 {
    transition-delay: 0.5s !important;
  }
  .delay06 {
    transition-delay: 0.6s !important;
  }
  .delay07 {
    transition-delay: 0.7s !important;
  }
  .delay08 {
    transition-delay: 0.8s !important;
  }
  .delay09 {
    transition-delay: 0.9s !important;
  }
  .delay10 {
    transition-delay: 1s !important;
  }
}
.gHeader {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  color: #fff;
}
.gHeader-inner {
  background: rgba(2, 14, 33, 0.5);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 751px) {
  .gHeader-inner {
    width: 100%;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 0.6rem;
  }
}
@media screen and (max-width: 750px) {
  .gHeader-inner {
    height: 1.2rem;
  }
}
.gHeader .siteTitle {
  position: relative;
  z-index: 9;
}
.gHeader .siteTitle a {
  display: block;
  width: 7rem;
}
@media screen and (max-width: 750px) {
  .gHeader .siteTitle a {
    position: absolute;
    top: 0.45rem;
    left: 0.3rem;
    margin: 0 auto;
    width: 4.6rem;
    z-index: 10;
  }
}

.h_link {
  margin-right: 1.3rem;
}
@media screen and (max-width: 750px) {
  .h_link {
    margin-right: 0;
  }
}
.h_link a {
  width: 5.6rem;
  height: 0.9rem;
  background-image: url(../../assets/imgs/arrow_w.svg);
  background-color: #a89a3f;
  background-repeat: no-repeat;
  background-position: calc(100% - 0.3rem) 50%;
  background-size: 0.15rem;
  font-size: 0.3rem;
  display: flex;
  align-items: center;
  padding: 0 0.3rem;
  transition: all 0.3s ease;
  letter-spacing: 0.01rem;
}
.h_link a:hover {
  background-color: rgb(112.3636363636, 103, 42.1363636364);
}
@media screen and (max-width: 750px) {
  .h_link a {
    width: 100%;
    height: 1rem;
    font-size: 0.32rem;
    justify-content: center;
  }
}
@media screen and (max-width: 750px) {
  .h_link.sp_fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .h_link.sp_fixed a {
    font-size: 0.24rem;
    background-image: none;
    padding: 0;
  }
  .h_link.sp_fixed .contact a {
    background-image: url(../../assets/imgs/ico_file.png);
    background-color: #a89a3f;
    background-repeat: no-repeat;
    background-position: 0.25rem 50%;
    background-size: 0.3rem;
    padding-left: 0.5rem;
  }
  .h_link.sp_fixed .tel a {
    background-image: url(../../assets/imgs/ico_tel.png);
    background-color: rgb(130.9090909091, 120, 49.0909090909);
    background-repeat: no-repeat;
    background-position: 0.9rem 50%;
    background-size: 0.3rem;
    padding-left: 0.5rem;
  }
}

.h_menu {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  width: 0.7rem;
  height: 0.32rem;
  z-index: 10;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .h_menu {
    top: 0.28rem;
    right: 0.4rem;
  }
}
.h_menu img {
  display: block;
  position: absolute;
  right: 0;
  transition: all 0.3s ease;
}
.h_menu .open_bar {
  position: relative;
}
.h_menu .open_bar:after {
  content: "MENU";
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  font-size: 0.2rem;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 750px) {
  .h_menu .open_bar:after {
    bottom: -0.75rem;
  }
}
.h_menu .open_bar span {
  width: 0.7rem;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  transition: all 0.3s ease;
}
.h_menu .open_bar span:nth-child(1) {
  top: 0;
}
.h_menu .open_bar span:nth-child(2) {
  top: 0.17rem;
}
.h_menu .open_bar span:nth-child(3) {
  top: 0.34rem;
}
.h_menu .open {
  width: 0.5rem;
}
@media screen and (min-width: 751px) {
  .h_menu .open.sp {
    display: none !important;
  }
}
.h_menu .close {
  opacity: 0;
}
@media screen and (min-width: 751px) {
  .h_menu .close.sp {
    display: none !important;
  }
}
body.open .h_menu .open_bar:after {
  content: "CLOSE";
  color: #0d183d;
}
body.open .h_menu .open_bar span {
  background: #0d183d;
}
body.open .h_menu .open_bar span:nth-child(1) {
  transform: rotate(20deg);
  top: 0.2rem;
}
body.open .h_menu .open_bar span:nth-child(2) {
  display: none;
}
body.open .h_menu .open_bar span:nth-child(3) {
  transform: rotate(-20deg);
  top: 0.2rem;
}
body.open .h_menu .open {
  opacity: 0;
}
body.open .h_menu .close {
  opacity: 1;
}

.gNav {
  z-index: 9;
  display: none;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  padding: 3rem 2rem 1rem;
  width: 10rem;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .gNav {
    width: 100%;
    padding: 2rem 1rem;
  }
}
.gNav .h_nav {
  display: grid;
  gap: 0.8rem;
}
.gNav .h_nav a {
  color: #0d183d;
  font-size: 0.4rem;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.gNav .h_nav a .en {
  color: #a89a3f;
  font-size: 0.28rem;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 750px) {
  .gNav .h_nav a .en {
    font-size: 0.24rem;
  }
}
.gNav .h_link {
  margin-top: 2rem;
  margin-right: 0;
}
.gNav .h_link a {
  width: 100%;
  height: 1.2rem;
}

/*
header[data-js-scroll="true"],
.pageHeader {
	@include pc {
		color: inherit;


		.gHeader-inner {
			background: rgba($dgreen, 0.95);
			position: relative;
			z-index: 1;
			top: 0;
			padding-top: 0.4rem;
			padding-bottom: 0.4rem;
		}

		.h_menu {
			top: 0.65rem;
		}


		.h_link a.ye {
			background: #a08647;
			color: #fff;

			&:hover {
				color: #a08647;
			}
		}


	}


	@include sp {
		.gHeader-inner {
			background: rgba($dgreen, 0.95);

		}
	}

}

*/
.gFooter {
  background: #041430;
  padding: 2rem 0;
}
@media screen and (max-width: 750px) {
  .gFooter {
    padding: 1rem 0 2rem;
  }
}
.gFooter .box_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 750px) {
  .gFooter .box_grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}
.gFooter .box_grid .box a {
  display: grid;
  grid-template-columns: 2.4rem auto;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem;
  border-radius: 3px;
  background-image: url(../../assets/imgs/arrow.svg);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: calc(100% - 0.3rem) 50%;
  background-size: 0.2rem;
  transition: all 0.3s ease;
  letter-spacing: 0.01rem;
}
@media screen and (max-width: 750px) {
  .gFooter .box_grid .box a {
    grid-template-columns: 1.5rem auto;
    padding: 0.1rem;
    gap: 0.3rem;
    background-position: calc(100% - 0.3rem) calc(100% - 0.3rem);
    background-size: 0.15rem;
  }
}
.gFooter .box_grid .box a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .gFooter .box_grid .box a .image {
    height: 100%;
  }
  .gFooter .box_grid .box a .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 750px) {
  .gFooter .box_grid .box a .ttl {
    padding: 0.3rem 0;
    letter-spacing: 0;
    font-size: 0.3rem;
  }
}
.gFooter .box_grid .box a .space {
  margin-left: -0.15rem;
}
.gFooter .tel {
  margin-top: 1.4rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .gFooter .tel {
    margin-top: 1rem;
  }
}
.gFooter .tel .text.--01 {
  font-size: 0.6rem;
}
@media screen and (max-width: 750px) {
  .gFooter .tel .text.--01 {
    font-size: 0.4rem;
  }
}
.gFooter .tel .text.--02 {
  font-size: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
@media screen and (max-width: 750px) {
  .gFooter .tel .text.--02 {
    font-size: 0.32rem;
    display: grid;
    gap: 0.1rem;
  }
}
.gFooter .tel a {
  display: block;
  width: 10.6rem;
  margin: 0.5rem auto;
}
@media screen and (max-width: 750px) {
  .gFooter .tel a {
    width: 100%;
    margin: 0.3rem auto;
  }
}
.gFooter .bottom {
  margin-top: 1.8rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .gFooter .bottom {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
    text-align: center;
  }
}
.gFooter .bottom .logo {
  width: 7rem;
}
@media screen and (max-width: 750px) {
  .gFooter .bottom .logo {
    width: 4rem;
    margin: 0 auto;
  }
}
.gFooter .bottom .copy {
  font-family: "EB Garamond", serif;
  font-size: 0.28rem;
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  .gFooter .bottom .copy {
    font-size: 0.2rem;
  }
}

@media print {
  body {
    zoom: 0.5;
  }
  body .gHeader {
    position: absolute;
  }
}
@media screen and (max-width: 750px) {
  .scroll {
    margin-top: -1rem;
    padding-top: 1rem;
    display: block;
  }
}/*# sourceMappingURL=common.css.map */