/* Scss Document */
/*------------- reset -------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  transition: all 0.5s ease-out;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*------------- base -------------*/
body {
  color: #000000;
  margin: 0;
  padding: 0;
  background: #f8f7f4;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-text-size-adjust: none;
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}

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

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

ul {
  list-style: none;
}

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

a {
  outline: none;
  text-decoration: none;
  color: #212020;
}

a:hover {
  transition: all 0.3s ease-out;
}

a:hover {
  opacity: 0.6;
}

.clearfix:after {
  content: " ";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
}

.clearfix {
  display: inline-block;
}

/* exlude MacIE5 \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* end MacIE5 */
.clear {
  clear: both;
}

.slick-slider div {
  transition: none;
}

/*------------- layout -------------*/
.l-inner {
  padding: 0 30px;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
  width: 840px;
}

.l-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 100;
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 27px 30px;
}
.l-header .logo {
  width: 240px;
}
.l-header .logo img {
  line-height: 1;
}
.l-header .language {
  width: 125px;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.l-header .language ul {
  position: absolute;
  top: 40px;
  right: 0;
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
  background: #fff;
  width: 100%;
  padding: 0 8px;
  transition: opacity 0.3s ease, filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-header .language ul li a {
  display: block;
  white-space: nowrap;
}
.l-header .language ul li {
  padding: 0.4em;
}
.l-header .language ul li + li {
  border-top: 1px solid #d9d9d9;
}
.l-header .language.is-open ul {
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
}
.l-header .language.is-open p::after {
  transform: rotate(180deg);
}
.l-header .language p {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 15px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-header .language p::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #fff;
  transition: transform 0.5s ease;
}
.l-header .language p.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header {
    padding: 10px;
  }
  .l-header .logo {
    width: 120px;
  }
  .l-header .language {
    width: 60px;
  }
  .l-header .language img {
    width: 18px;
  }
  .l-header .language ul {
    width: 125px;
    padding: 0 8px;
  }
  .l-header .language.is-open ul {
    opacity: 1;
    filter: blur(0);
    pointer-events: auto;
  }
  .l-header .language.is-open p::after {
    transform: rotate(180deg);
  }
  .l-header .language p {
    padding: 10px 12px;
    gap: 10px;
  }
  .l-header .language p img {
    line-height: 1;
  }
  .l-header .language p.sp {
    display: flex;
  }
  .l-header .language p.pc {
    display: none;
  }
}

.l-footer {
  padding: 180px 0 20px;
  background: url("../img/bg-footer.jpg") top center no-repeat;
  background-size: cover;
  color: #fff;
}
.l-footer .contents {
  width: 540px;
  max-width: 100%;
  margin-left: 8%;
  padding-bottom: 360px;
  text-align: center;
}
.l-footer .contents .open-day {
  letter-spacing: 2px;
  margin-top: -1em;
  font-size: 28px;
  text-align: center;
  line-height: 1.8;
}
.l-footer .contents .open-day span {
  display: block;
  font-size: 20px;
}
.l-footer .copy {
  font-size: 14px;
  text-align: right;
  padding-right: 20px;
}
.l-footer.en .open-day {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 80px 0 20px;
    background: url("../img/bg-footer_sp.jpg") top center no-repeat;
    background-size: cover;
  }
  .l-footer .contents {
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
    padding-bottom: 120px;
  }
  .l-footer .contents .open-day {
    font-size: 20px;
    margin-top: 0;
  }
  .l-footer .contents .open-day span {
    font-size: 15px;
  }
  .l-footer .copy {
    font-size: 12px;
    text-align: center;
    padding-right: 0px;
  }
  .l-footer.en .open-day {
    font-size: 15px;
  }
}

/*------------- component -------------*/
.c-flexPC {
  display: flex;
  justify-content: space-between;
}
.c-flexPC--alceter {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-flexPC {
    display: block;
  }
}

.c-flexSP {
  display: flex;
}

.c-head01 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 400;
  letter-spacing: 2px;
}
.c-head01 span {
  font-size: 20px;
  display: block;
}
@media screen and (max-width: 768px) {
  .c-head01 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .c-head01 span {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

/*------------- c-blur -------------*/
@keyframes blurFocusIn {
  0% {
    opacity: 0;
    filter: blur(20px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.c-blur {
  opacity: 0;
  filter: blur(20px);
}
.c-blur.is-active {
  animation: blurFocusIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.c-blur.delay1 {
  animation-delay: 0.2s;
}
.c-blur.delay5 {
  animation-delay: 0.4s;
}

/*------------- c-fadein -------------*/
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-fadein {
  opacity: 0;
  transform: translateY(30px);
}
.c-fadein.is-active {
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/*------------- top -------------*/
@keyframes fvFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgZoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes logoFocusIn {
  0% {
    opacity: 0;
    filter: blur(20px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.p-top .p-top-fv {
  position: relative;
  overflow: hidden;
  padding: 0 30px 240px;
  color: #fff;
}
.p-top .p-top-fv::before, .p-top .p-top-fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 0;
}
.p-top .p-top-fv::before {
  background-image: url("../img/bg-fv01.jpg");
  animation: bgZoomOut 12s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.p-top .p-top-fv::after {
  background-image: url("../img/bg-fv02.jpg");
  animation: bgZoomOut 12s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  opacity: 0;
  transition: opacity 3s ease;
}
.p-top .p-top-fv.is-fv02::after {
  opacity: 1;
}
.p-top .p-top-fv .l-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0;
}
.p-top .p-top-fv h1 {
  padding: 200px 0 100px;
  text-align: center;
}
.p-top .p-top-fv h1 img {
  width: 734px;
  max-width: 100%;
  animation: logoFocusIn 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.p-top .p-top-fv .open-day {
  font-size: 28px;
  text-align: center;
  margin-bottom: 500px;
  line-height: 1.8;
  letter-spacing: 2px;
}
.p-top .p-top-fv .open-day span {
  display: block;
  font-size: 20px;
}
.p-top .p-top-fv h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 240px;
}
.p-top .p-top-fv p {
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 2.5;
}
.p-top .p-top-fv .text01 {
  margin-left: 50%;
}
.p-top .p-top-fv .text02 {
  margin: 190px 0 160px 10%;
}
.p-top .p-top-fv .text03 {
  margin-left: 60%;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-fv {
    padding-bottom: 100px;
  }
  .p-top .p-top-fv::before {
    background-image: url("../img/bg-fv01_sp.jpg");
  }
  .p-top .p-top-fv::after {
    background-image: url("../img/bg-fv02_sp.jpg");
  }
  .p-top .p-top-fv h1 {
    padding: 120px 0 150px;
  }
  .p-top .p-top-fv h1 img {
    width: 100%;
  }
  .p-top .p-top-fv .open-day {
    font-size: 20px;
    margin-bottom: 100px;
  }
  .p-top .p-top-fv .open-day span {
    font-size: 15px;
  }
  .p-top .p-top-fv h2 {
    font-size: 32px;
    margin-bottom: 80px;
  }
  .p-top .p-top-fv p {
    font-size: 17px;
  }
  .p-top .p-top-fv .text01 {
    margin-left: 0;
  }
  .p-top .p-top-fv .text02 {
    margin: 70px 0;
  }
  .p-top .p-top-fv .text03 {
    margin-left: 0;
  }
}
.p-top .p-top-sec {
  padding: 230px 0;
}
.p-top .p-top-sec .text01 {
  margin: 70px 0 230px auto;
  width: 50%;
}
.p-top .p-top-sec .mapArea .text {
  width: 40%;
  padding-right: 40px;
}
.p-top .p-top-sec .mapArea .text p + p {
  margin-top: 1.8em;
}
.p-top .p-top-sec .mapArea .mapOuter {
  width: 60%;
}
.p-top .p-top-sec .mapArea .map {
  width: 100%;
  position: relative;
  padding-top: 80%;
  height: 0;
}
.p-top .p-top-sec .mapArea .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-top .p-top-sec {
    padding: 120px 0;
  }
  .p-top .p-top-sec .text01 {
    margin: 20px 0 60px;
    width: 100%;
  }
  .p-top .p-top-sec .image {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
  .p-top .p-top-sec .mapArea {
    flex-direction: column-reverse;
  }
  .p-top .p-top-sec .mapArea .text {
    width: 100%;
    padding-right: 0px;
  }
  .p-top .p-top-sec .mapArea .mapOuter {
    width: 100%;
    margin-bottom: 30px;
  }
  .p-top .p-top-sec .mapArea .map {
    width: 100%;
    padding-top: 80%;
  }
}

.en.p-top .p-top-fv .text01 {
  margin-left: 37%;
}
.en.p-top .p-top-fv .text03 {
  margin-left: 53%;
}
.en.p-top .p-top-sec .mapArea {
  padding: 0 30px;
  width: 1070px;
  max-width: 100%;
  margin: 0 auto;
}
.en.p-top .p-top-sec .mapArea .text {
  width: 60%;
  padding-right: 10px;
}
.en.p-top .p-top-sec .mapArea .mapOuter {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .en.p-top .p-top-fv .text01 {
    margin-left: 0;
  }
  .en.p-top .p-top-fv .text03 {
    margin-left: 0;
  }
  .en.p-top .p-top-fv h2 {
    font-size: 17px;
  }
  .en.p-top .p-top-sec .mapArea .text {
    width: 100%;
    padding-right: 0px;
  }
  .en.p-top .p-top-sec .mapArea .mapOuter {
    width: 100%;
  }
}

/*------------- utility -------------*/
.u-tac {
  text-align: center !important;
}

.u-tal {
  text-align: left !important;
}

.u-tar {
  text-align: right !important;
}

.u-spbr {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-spbr {
    display: inline-block;
  }
}

.u-pcbr {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .u-pcbr {
    display: none;
  }
}

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

@media screen and (max-width: 768px) {
  .u-sp-none {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
