@charset "UTF-8";
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  color: #222;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #222;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

a,
span {
  display: inline-block;
}

/*===================================================
共通
===================================================*/
/* 基本
***************************************************************/
html {
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #000;
  font-weight: 400;
  line-height: 1.5;
}

main {
  background-image: url(../images/main_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

a {
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.1333333333vw;
  }
}
/* フォント
***************************************************************/
.serif {
  font-family: "Noto Serif JP", serif;
}

.cinzel {
  font-family: "Cinzel", serif;
}

/* コンテンツ幅
***************************************************************/
.inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* PC・SP 非表示
***************************************************************/
.sp_only {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
}
/* 共通パーツ (全ページ)
***************************************************************/
.section_title {
  font-size: 40px;
  line-height: 54px;
  position: relative;
}

.section_title::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 54px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #333;
}

.section_title span {
  font-size: 40px;
  font-weight: 300;
  margin-top: 17px;
  display: block;
}

.btn {
  line-height: 22px;
  width: 120px;
  height: 22px;
  display: block;
  border-bottom: 1px solid #333;
  position: relative;
}

.btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 2px;
  width: 17px;
  height: 5px;
  transform: translate(0, -50%);
  background-image: url(../images/about_arrow_icon.svg);
}

@media screen and (max-width: 767px) {
  .section_title {
    font-size: 8vw;
    line-height: 10.8vw;
  }
  .section_title::after {
    content: "";
    top: 10.8vw;
    width: 8vw;
    height: 0.5333333333vw;
  }
  .section_title span {
    font-size: 6.4vw;
    margin-top: 8.6666666667vw;
  }
  .btn {
    line-height: 5.3333333333vw;
    width: 32vw;
    height: 5.6vw;
    font-size: 4vw;
  }
  .btn::after {
    content: "";
    right: 0.5333333333vw;
    width: 4.5333333333vw;
    height: 1.2vw;
  }
}
/* 共通パーツ(下層)
***************************************************************/
/*===================================================
ヘッダー
===================================================*/
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 7px 0 7px 25px;
  border-bottom: 2px solid #000;
  z-index: 100;
}

header::after {
  content: "";
  display: inline-block;
  position: fixed;
  top: 0;
  right: 70px;
  width: 2px;
  height: 100vh;
  background-color: #000;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_inner .logo_content .logo {
  width: 176px;
}

.header_inner .global_nav ul {
  display: flex;
  margin-right: 70px;
}

.header_inner .global_nav ul li {
  padding: 4px 20px;
  border-right: 1px solid #333;
}

.header_inner .global_nav ul li:first-of-type {
  padding: 4px 20px 4px 0;
}

.header_inner .global_nav ul li:last-of-type {
  padding: 4px 43px 4px 20px;
  border-right: unset;
}

.header_inner .global_nav ul li a p.title_ja {
  font-size: 10px;
  text-align: center;
}

.header_inner .global_nav ul li a p.title_en.cinzel {
  line-height: 1;
}

.header_contact {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  flex-flow: column;
}

.header_contact a {
  width: 70px;
  height: 50px;
  font-size: 12px;
  line-height: 16px;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 2px;
}

.header_contact .link1.cinzel {
  padding-top: 10px;
  color: #333;
  background-color: #f2f2f2;
}

.header_contact .link1.cinzel img {
  width: 23px;
}

.header_contact .link2.cinzel {
  padding-top: 7px;
  color: #fff;
  background-color: #333;
}

.header_contact .link2.cinzel img {
  width: 18px;
}

header .toggle-menu {
  display: none;
}

.mask {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background-color: #313131;
  transition: all 0.3s ease;
}

.open .mask {
  left: 0;
}

@media screen and (max-width: 1080px) {
  .header_inner .global_nav ul li:first-of-type {
    padding: 4px 10px 4px 0;
  }
  .header_inner .global_nav ul li {
    padding: 4px 10px;
  }
  .header_inner .global_nav ul li:last-of-type {
    padding: 4px 10px 4px 10px;
    border-right: unset;
  }
  .header_inner .global_nav ul li a p.title_ja {
    font-size: 8px;
  }
  .header_inner .global_nav ul li a p.title_en.cinzel {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 4.6666666667vw 0 3.8666666667vw 2.6666666667vw;
    overflow: hidden;
  }
  header::after {
    content: "";
    display: none;
  }
  .header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header_inner .logo_content .logo {
    width: 30.4vw;
  }
  .header_inner .header_nav {
    display: none;
  }
  .header_contact {
    top: 0;
    right: 14.6666666667vw;
    flex-flow: unset;
    bottom: unset;
  }
  .header_contact a {
    width: 18.6666666667vw;
    height: 13.3333333333vw;
    font-size: 3.2vw;
    line-height: 4.2666666667vw;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 0.5333333333vw;
  }
  .header_contact .link1.cinzel {
    padding-top: 2.6666666667vw;
    color: #333;
    background-color: #f2f2f2;
  }
  .header_contact .link1.cinzel img {
    width: 6.1333333333vw;
  }
  .header_contact .link2.cinzel {
    padding-top: 1.8666666667vw;
    color: #fff;
    background-color: #333;
  }
  .header_contact .link2.cinzel img {
    width: 4.8vw;
  }
  header .toggle-menu {
    display: none;
  }
  .mask {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background-color: #313131;
    transition: all 0.3s ease;
    overflow-y: scroll;
  }
  .open .mask {
    left: 0;
  }
  .mask .menu_logo {
    padding: 4.6666666667vw 0 4vw 2.6666666667vw;
    border-bottom: 0.5333333333vw solid #fff;
    width: 100%;
  }
  .mask .menu_logo img {
    width: 30.4vw;
  }
  .mask .global_nav {
    padding: 10.6666666667vw 0 0 8vw;
  }
  .mask .global_nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6.9333333333vw 9.3333333333vw;
  }
  .mask .global_nav ul li a {
    color: #fff;
    display: flex;
    flex-flow: column-reverse;
  }
  .mask .global_nav ul li a p.title_ja {
    font-size: 3.2vw;
  }
  .mask .global_nav ul li a p.title_en.cinzel {
    font-size: 8vw;
  }
  .mask .link_box {
    margin-top: 18vw;
    display: flex;
    justify-content: center;
    gap: 4.1333333333vw;
  }
  .mask .link_box a {
    width: 40vw;
    height: 8vw;
    font-size: 4vw;
    line-height: 5.3333333333vw;
  }
  .mask .link_box .link1 {
    color: #fff;
    background-color: #333;
    padding: 1.3333333333vw 9.6vw 1.3333333333vw 11.4666666667vw;
    position: relative;
    border: 1px solid #fff;
  }
  .mask .link_box .link1::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 2.6666666667vw;
    width: 6.1333333333vw;
    height: 4.5333333333vw;
    transform: translate(0, -50%);
    background-image: url(../images/mail_icon_menu.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .mask .link_box .link2 {
    color: #000;
    background-color: #fff;
    padding: 1.4666666667vw 12.6666666667vw 1.2vw 12.8vw;
    position: relative;
  }
  .mask .link_box .link2::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 3.8666666667vw;
    width: 4.8vw;
    height: 5.6vw;
    transform: translate(0, -50%);
    background-image: url(../images/calender_icon_menu.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .mask .sns {
    padding: 6.9333333333vw 0 10.1333333333vw 8vw;
    border-top: 1px solid #fff;
    margin-top: 18.6666666667vw;
  }
  .mask .sns a .img1 {
    width: 8vw;
  }
  .mask .sns a .img2 {
    width: 10.5333333333vw;
    margin-left: 6.9333333333vw;
  }
  header .toggle-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 14.6666666667vw;
    height: 13.3333333333vw;
    cursor: pointer;
    z-index: 1000;
  }
  header .toggle-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8vw;
    height: 0.5333333333vw;
    transform: translate(-50%, -50%);
    background-color: #000;
    transition: all 0.3s ease;
  }
  header .toggle-line:nth-of-type(1) {
    top: 4.4vw;
  }
  header .toggle-line:nth-of-type(3) {
    top: 8.6666666667vw;
  }
  .open .toggle-line:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #fff;
  }
  .open .toggle-line:nth-of-type(2) {
    display: none;
  }
  .open .toggle-line:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #fff;
  }
}
/*===================================================
フッター
===================================================*/
footer {
  background-image: url(../images/footer_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

footer .text_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

footer .text_box .text_item1,
footer .text_box .text_item2 {
  border-right: 1px solid #fff;
}

footer .text_box .logo {
  width: 194px;
  padding-top: 62px;
}

footer .text_box .footer_nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 40px;
  padding: 45px 115px 65px;
  width: 455px;
}

footer .text_box .footer_nav li {
  white-space: nowrap;
}

footer .text_box .footer_nav li a {
  color: #fff;
}

footer .text_box .sns {
  padding: 50px 0 0 0;
  display: flex;
  flex-flow: column;
  gap: 23px;
}

footer .text_box .sns li {
  margin-left: auto;
}

footer .text_box .sns li a {
  color: #fff;
  width: 91px;
  transition: all 0.3s ease;
}

footer .text_box .sns li .title1 {
  position: relative;
}

footer .text_box .sns li .title1::before {
  content: "";
  position: absolute;
  background-image: url(../images/footer_instagram_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  left: -41px;
  width: 23px;
  height: 23px;
  transform: translate(0, -50%);
}

footer .text_box .sns li .title2 {
  position: relative;
}

footer .text_box .sns li .title2::before {
  content: "";
  position: absolute;
  background-image: url(../images/footer_youtube_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  left: -45px;
  width: 30px;
  height: 21px;
  transform: translate(0, -50%);
}

footer p.copy_right {
  font-size: 13px;
  padding: 20px 0;
  color: #fff;
  text-align: center;
  border-top: 1px solid #fff;
}

@media screen and (max-width: 1280px) {
  footer .text_box .footer_nav {
    padding: 45px 65px 65px;
    width: 295px;
  }
  footer .text_box .text_item1 {
    text-align: right;
    padding-right: 20px;
  }
  footer .text_box .sns li {
    margin-left: 65px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    background-image: url(../images/footer_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
  }
  footer .text_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  footer .text_box .logo {
    width: 100%;
    padding-top: unset;
  }
  footer .text_box .text_item1,
  footer .text_box .text_item2 {
    border-right: unset;
    border-bottom: 1px solid #fff;
    text-align: unset;
    padding-right: unset;
  }
  footer .text_box .text_item1 a {
    width: 56vw;
    margin: 12.9333333333vw 0 9.6vw 21.6vw;
    padding: 0;
  }
  footer .text_box .footer_nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.1333333333vw 14vw;
    padding: 4vw 24.5333333333vw 9.3333333333vw 19.4666666667vw;
    width: auto;
    font-size: 4vw;
  }
  footer .text_box .footer_nav li {
    white-space: nowrap;
  }
  footer .text_box .footer_nav li a {
    color: #fff;
  }
  footer .text_box .sns {
    padding: 5.6vw 0 0 0;
    display: flex;
    flex-flow: unset;
    justify-content: center;
    gap: 16.1333333333vw;
  }
  footer .text_box .sns li {
    margin-left: unset;
  }
  footer .text_box .sns li a {
    width: auto;
    font-size: 4vw;
  }
  footer .text_box .sns li .title1::before {
    content: "";
    position: absolute;
    background-image: url(../images/footer_instagram_icon.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: -5.4666666667vw;
    width: 4.8vw;
    height: 4.8vw;
    transform: translate(0, -50%);
  }
  footer .text_box .sns li .title2 {
    position: relative;
  }
  footer .text_box .sns li .title2::before {
    content: "";
    position: absolute;
    background-image: url(../images/footer_youtube_icon.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: -6vw;
    width: 5.6vw;
    height: 3.8666666667vw;
    transform: translate(0, -50%);
  }
  footer p.copy_right {
    font-size: 3.2vw;
    padding: 12.2666666667vw 0 2.6666666667vw;
    border-top: unset;
  }
}
/*===================================================
トップページ
===================================================*/
/* トップページ FV
***************************************************************/
.fv {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.fv .fv_bg {
  position: absolute;
  top: 7.7777777778vw;
  left: 0;
  height: 40.8333333333vw;
  width: 76.7361111111vw;
  z-index: -1;
}

.fv .inner {
  display: flex;
  align-items: flex-start;
  max-width: 75vw;
}

.fv .inner .fv_img1 {
  margin-left: 3.4722222222vw;
  width: 30.6944444444vw;
  height: 44.9305555556vw;
}

.fv .inner .fv_img2 {
  margin-left: 2.0833333333vw;
  margin-top: 15.9027777778vw;
  width: 30.6944444444vw;
  height: 34.1666666667vw;
}

.fv .inner h1 {
  font-size: 2.5vw;
  writing-mode: vertical-rl;
  letter-spacing: 0.12rem;
  font-weight: 300;
  margin-left: 3.8194444444vw;
  margin-top: 11.8055555556vw;
  white-space: nowrap;
}

.bbs {
  align-items: center;
  display: flex;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  margin-top: 30px;
  z-index: 1;
}

.bbs ul {
  animation: flowing 120s linear infinite;
  font-size: 90px;
  transform: translateX(100%);
}

.bbs ul li {
  display: inline-block;
  padding-right: 10px;
}

@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 1420px) {
  .fv .inner {
    margin: 0;
  }
  .fv .inner .fv_img1 {
    margin-top: 4.8vw;
  }
  .fv .inner .fv_img2 {
    margin-top: 19vw;
  }
  .fv .inner h1 {
    margin-left: 13vw;
  }
}
@media screen and (min-width: 768px) {
  .fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes fadeInAnime {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes fadeLeftAnime {
    from {
      opacity: 0;
      transform: translateX(-100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes fadeRightAnime {
    from {
      opacity: 0;
      transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
@media screen and (max-width: 767px) {
  .fv {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .fv .fv_bg {
    position: absolute;
    top: 28.4vw;
    left: 0;
    height: 78.4vw;
    width: 88.9333333333vw;
    z-index: -1;
  }
  .fv .inner {
    margin: 0;
    position: relative;
  }
  .fv .inner .fv_img1 {
    margin-left: 0;
    margin-top: 9.3333333333vw;
    width: 58.9333333333vw;
    height: 86.2666666667vw;
  }
  .fv .inner .fv_img2 {
    margin-left: 2.6666666667vw;
    margin-top: 35.8666666667vw;
    width: 38.6666666667vw;
    height: 65.6vw;
  }
  .fv .inner h1 {
    font-size: 6.9333333333vw;
    writing-mode: unset;
    letter-spacing: unset;
    font-weight: 300;
    margin-left: unset;
    margin-top: unset;
    position: absolute;
    top: 109.3333333333vw;
    left: 4.6666666667vw;
  }
  .bbs {
    margin-top: 16vw;
  }
  .bbs ul {
    font-size: 12vw;
  }
}
/* トップページ section1
***************************************************************/
.sec1 {
  padding: 292px 0 152px;
  position: relative;
}

.sec1::before {
  content: "";
  position: absolute;
  top: 207px;
  left: 0;
  width: 100%;
  border-top: 2px solid #333;
  transform: rotate(-3deg);
}

.sec1::after {
  content: "";
  position: absolute;
  bottom: 86px;
  left: 0;
  width: 100%;
  border-top: 2px solid #333;
  transform: rotate(-3deg);
}

.sec1 .inner {
  position: relative;
}

.sec1 .inner p.text {
  line-height: 2.18;
  margin-top: 30px;
}

.sec1 .inner a.btn.cinzel {
  margin-top: 50px;
}

.sec1 .inner .img_box {
  position: absolute;
  top: -162px;
  left: 335px;
  z-index: 1;
}

.sec1 .inner .img_box .img_wrap {
  position: relative;
}

.sec1 .inner .img_box .img_wrap .img1 {
  width: 301px;
}

.sec1 .inner .img_box .img_wrap .img2 {
  width: 564px;
  position: absolute;
  top: 98px;
  left: 332px;
}

.sec1 .inner .img_box .img_wrap .img3 {
  width: 212px;
  position: absolute;
  top: 504px;
  left: 252px;
}

@media screen and (max-width: 1420px) {
  .sec1 .inner .img_box .img_wrap .img1 {
    width: 240px;
  }
  .sec1 .inner .img_box .img_wrap .img2 {
    width: 450px;
    top: 114px;
    left: 292px;
  }
  .sec1 .inner .img_box .img_wrap .img3 {
    width: 170px;
    top: 471px;
    left: 221px;
  }
}
@media screen and (max-width: 1200px) {
  .sec1 {
    padding: 292px 0 152px 30px;
  }
  .sec1 .inner .img_box {
    top: -240px;
    left: 0px;
  }
  .sec1 .inner .img_box .img_wrap .img2 {
    width: 400px;
    top: 24px;
    left: 310px;
  }
  .sec1 .inner .img_box .img_wrap .img3 {
    width: 170px;
    top: 585px;
    left: 451px;
  }
}
@media screen and (min-width: 768px) {
  .fadeRightTrigger {
    opacity: 0;
  }
  .fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes fadeRightAnime {
    from {
      opacity: 0;
      transform: translateX(200px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
@media screen and (max-width: 767px) {
  .sec1 {
    padding: 72.9333333333vw 5.3333333333vw 37.4666666667vw;
    overflow: hidden;
  }
  .sec1::before {
    content: "";
    top: 59.4666666667vw;
    transform: rotate(-3deg);
  }
  .sec1::after {
    content: "";
    bottom: 13.4666666667vw;
  }
  .sec1 .inner {
    position: relative;
  }
  .sec1 .inner p.text {
    font-size: 4vw;
    line-height: 1.5;
    margin-top: 6.4vw;
  }
  .sec1 .inner a.btn.cinzel {
    margin-top: 12vw;
  }
  .sec1 .inner .img_box {
    position: absolute;
    top: -59.2vw;
    left: 0;
    z-index: 1;
  }
  .sec1 .inner .img_box .img_wrap {
    position: relative;
  }
  .sec1 .inner .img_box .img_wrap .img1 {
    width: 42.6666666667vw;
  }
  .sec1 .inner .img_box .img_wrap .img2 {
    width: 50.6666666667vw;
    position: absolute;
    top: 22vw;
    left: 44.2666666667vw;
  }
  .sec1 .inner .img_box .img_wrap .img3 {
    width: 28.2666666667vw;
    position: absolute;
    top: 175.2vw;
    left: 61.0666666667vw;
  }
}
/* トップページ section2
***************************************************************/
.sec2 {
  padding-top: 10px;
  overflow: hidden;
}

.sec2 .title {
  font-size: 20px;
  margin-top: 11px;
  color: #fff;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 100vw;
  margin: 50px calc(50% - 50vw) 0 0;
  text-align: center;
  padding-left: 231px;
}

.slider img {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 17px;
  width: 242px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 0;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  height: 65px;
  width: 65px;
  background-image: url(../images/style_arrow_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 0;
  transform: rotate(0);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  left: 90px;
  transform: scale(-1, 1);
}

@media screen and (max-width: 1200px) {
  .sec2 {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .sec2 {
    padding: 13.4666666667vw 5.3333333333vw 0;
  }
  .sec2 .title {
    font-size: 4vw;
    margin-top: 2.1333333333vw;
  }
  /*==================================================
    スライダーのためのcss
    ===================================*/
  .slider {
    margin: 12.8vw calc(50% - 50vw) 0 0;
    padding-left: 0;
  }
  .slider .slick-slide {
    margin: 0 2.9333333333vw;
    width: 48.8vw;
  }
  .slick-prev,
  .slick-next {
    top: -14.9333333333vw;
    height: 9.8666666667vw;
    width: 9.8666666667vw;
  }
  .slick-prev {
    left: unset;
    right: 24.2666666667vw;
  }
  .slick-next {
    left: unset;
    right: 10.6666666667vw;
  }
}
/* トップページ section3
***************************************************************/
.sec3 {
  margin-top: -93px;
  background-image: url(../images/menu_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 243px 0 80px;
}

.sec3 .inner {
  display: flex;
  justify-content: space-between;
}

.sec3 .inner .text_box h2.section_title {
  color: #fff;
}

.sec3 .inner .text_box h2.section_title::after {
  background-color: #fff;
}

.sec3 .inner .text_box p.text {
  color: #fff;
  margin-top: 50px;
}

.sec3 .inner table {
  background-color: #f9f9f9;
}

.sec3 .inner table tbody tr:nth-of-type(1) {
  background-color: #4c4c4c;
  color: #fff;
}

.sec3 .inner table tbody tr .type2 {
  border-right: 1px solid #fff;
}

.sec3 .inner table tbody tr td {
  width: 230px;
  border: 1px solid #4c4c4c;
  padding: 10px 15px 10px 20px;
  vertical-align: middle;
  letter-spacing: -1px;
}

@media screen and (max-width: 1200px) {
  .sec3 {
    padding: 243px 30px 80px;
  }
}
@media screen and (max-width: 980px) {
  .sec3 .inner {
    display: block;
  }
  .sec3 .text_box {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .sec3 {
    margin-top: -29.0666666667vw;
    background-image: url(../images/menu_bg_sp.jpg);
    padding: 54.6666666667vw 0 13.3333333333vw 5.3333333333vw;
  }
  .sec3 .inner {
    flex-flow: column;
  }
  .sec3 .inner .text_box p.text {
    margin-top: 9.0666666667vw;
  }
  .sec3 .inner .table_box {
    overflow: auto;
    padding-right: 2.6666666667vw;
  }
  .sec3 .inner table {
    margin-top: 12vw;
    white-space: nowrap;
    width: 166.1333333333vw;
    font-size: 3.7333333333vw;
  }
  .sec3 .inner table tbody tr .type2 {
    border-right: 0.2666666667vw solid #fff;
  }
  .sec3 .inner table tbody tr td {
    border: 0.2666666667vw solid #4c4c4c;
    padding: 2.6666666667vw 4.6666666667vw;
  }
}
s .sec4 {
  padding-top: 150px;
}

.sec4 .inner .products_slider {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  text-align: center;
}

.sec4 .inner .products_slider li a {
  display: block;
  transition: all 0.3s ease;
}

.sec4 .inner .products_slider li h3.title {
  margin-top: 8px;
  font-weight: bold;
  letter-spacing: -1px;
}

.sec4 .inner .products_slider li p.text {
  margin-top: 8px;
}

.sec4 .inner .products_slider li p.price {
  margin-top: 14px;
}

.sec4 .inner a.btn {
  display: block;
  margin: 50px auto 0;
}

@media screen and (min-width: 768px) {
  .sec4 .inner .products_slider li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1280px) {
  .sec4 {
    padding: 0 70px 0 30px;
  }
}
@media screen and (max-width: 1200px) {
  .sec4 .inner .products_slider {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-align: center;
  }
  .sec4 .inner .products_slider li {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .sec4 {
    padding: 24.2666666667vw 0 0 0;
    overflow: hidden;
  }
  .sec4 .section_title {
    margin-left: 5.3333333333vw;
  }
  .sec4 .inner .products_slider {
    margin-top: 12.6666666667vw;
  }
  .sec4 .inner .products_slider li {
    width: auto;
  }
  .sec4 .inner .products_slider li a {
    display: block;
    transition: all 0.3s ease;
  }
  .sec4 .inner .products_slider li h3.title {
    margin-top: 1.3333333333vw;
    font-size: 4vw;
    height: 12vw;
  }
  .sec4 .inner .products_slider li p.text {
    margin-top: 5.4666666667vw;
    font-size: 3.7333333333vw;
  }
  .sec4 .inner .products_slider li p.price {
    margin-top: 3.2vw;
  }
  .sec4 .inner a.btn {
    display: block;
    margin: 14.4vw auto 0;
  }
  /*==================================================
  スライダーのためのcss
  ===================================*/
  .products_slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 100vw;
    margin: 50px calc(50% - 50vw) 0 0;
    text-align: center;
  }
  .products_slider img {
    width: 100%;
    /*スライダー内の画像を横幅100%に*/
    height: auto;
  }
  /*slickのJSで書かれるタグ内、スライド左右の余白調整*/
  .products_slider .slick-slide {
    margin: 0 2.2666666667vw;
    width: 45.6vw;
  }
  /*矢印の設定*/
  /*戻る、次へ矢印の位置*/
  .products_slider .slick-prev,
  .products_slider .slick-next {
    position: absolute;
    /*絶対配置にする*/
    top: -14.9333333333vw;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    height: 9.8666666667vw;
    width: 9.8666666667vw;
    background-image: url(../images/style_arrow_icon.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .products_slider .slick-prev {
    /*戻る矢印の位置と形状*/
    right: 24.2666666667vw;
    transform: rotate(0);
  }
  .products_slider .slick-next {
    /*次へ矢印の位置と形状*/
    right: 10.6666666667vw;
    transform: scale(-1, 1);
  }
}
/* トップページ section5
***************************************************************/
.sec5 {
  padding: 150px 0;
  overflow: hidden;
}

.sec5 .inner {
  position: relative;
}

.sec5 .inner::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  margin-left: 290px;
}

.sec5 .inner ul {
  margin: 12px 0 0 auto;
  max-width: 690px;
  position: relative;
  z-index: 1;
}

.sec5 .inner ul li {
  border-top: 1px solid #333;
}

.sec5 .inner ul li a {
  display: flex;
  align-items: center;
  padding: 21px 0 10px 20px;
  transition: all 0.3s ease;
}

.sec5 .inner ul li:last-of-type {
  border-bottom: 1px solid #333;
}

.sec5 .inner ul li time {
  width: 82px;
}

.sec5 .inner ul li a span.cat {
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  width: 70px;
  height: 18px;
  background-color: #333;
  text-align: center;
  margin-left: 10px;
  border-radius: 10px;
}

.sec5 .inner ul li a .text {
  flex: 1;
  margin-left: 28px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.sec5 .inner .btn {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .sec5 .inner ul li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1280px) {
  .sec5 {
    padding: 150px 80px 150px 30px;
  }
  .sec5 .section_title {
    top: -85px;
  }
  .sec5 .inner ul {
    max-width: 560px;
  }
  .sec5 .inner::after {
    margin-left: 80px;
  }
  .sec5 .inner .btn {
    position: relative;
    bottom: -40px;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec5 {
    padding: 21.6vw 5.3333333333vw 24.5333333333vw;
    overflow: hidden;
  }
  .sec5 .inner::after {
    content: "";
    top: 24vw;
    left: 0;
    width: 100%;
    height: 79.2vw;
    margin-left: 0;
  }
  .sec5 .inner ul {
    margin: 19.2vw 0 0 0;
    padding: 0 5.3333333333vw;
  }
  .sec5 .inner ul li a {
    display: unset;
    display: block;
    padding: 4.8vw 0;
  }
  .sec5 .inner ul li time {
    font-size: 4vw;
    width: 21.0666666667vw;
  }
  .sec5 .inner ul li a span.cat {
    font-size: 3.7333333333vw;
    line-height: 4.5333333333vw;
    width: 18.6666666667vw;
    height: 5.0666666667vw;
    margin-left: 1.4666666667vw;
  }
  .sec5 .inner ul li a .text {
    margin-left: 0;
    margin-top: 0.8vw;
    font-size: 4vw;
  }
  .sec5 .inner .btn {
    display: none;
  }
}
/* トップページ section6
***************************************************************/
.sec6 {
  padding: 95px 0 150px;
  -webkit-clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 100%);
  background-color: #fff;
}

.sec6 .inner .text_box {
  display: flex;
  gap: 70px;
  margin-top: 50px;
}

.sec6 .inner .text_box .img_box {
  position: relative;
  width: 540px;
  height: 494px;
}

.sec6 .inner .text_box .img_box .img2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.sec6 .inner .text_box img {
  width: 418px;
  height: 259px;
  box-shadow: 7px 7px 16px rgba(0, 0, 0, 0.23);
}

.sec6 .inner .text_box ul {
  display: flex;
  flex-flow: column;
  gap: 35px;
  margin-top: 5px;
}

.sec6 .inner .text_box ul li p.text {
  margin-top: 6px;
}

.sec6 .inner .text_box ul li .link {
  text-decoration: underline;
  position: relative;
}

.sec6 .inner .text_box ul li .link::after {
  content: "";
  position: absolute;
  background-image: url(../images/info_map_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 7px;
  right: -15px;
  width: 13px;
  height: 14px;
}

@media screen and (max-width: 1200px) {
  .sec6 {
    padding: 95px 80px 150px 30px;
  }
}
@media screen and (max-width: 1080px) {
  .sec6 .inner .text_box {
    gap: 30px;
  }
  .sec6 .inner .text_box img {
    width: 280px;
    height: 160px;
  }
  .sec6 .inner .text_box .img_box {
    width: 280px;
    height: 494px;
  }
  .sec6 .inner .text_box .img_box .img2 {
    bottom: 148px;
    right: 0px;
  }
}
@media screen and (max-width: 767px) {
  .sec6 {
    padding: 5.2vw 5.3333333333vw 33.3333333333vw;
    -webkit-clip-path: polygon(0 0, 100% 3%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 3%, 100% 100%, 0% 100%);
    background-color: #fff;
  }
  .sec6 .inner .text_box {
    flex-flow: column;
    gap: 9.3333333333vw;
    margin-top: 15.7333333333vw;
  }
  .sec6 .inner .text_box .img_box {
    position: relative;
    width: auto;
    height: auto;
  }
  .sec6 .inner .text_box .img_box .img2 {
    bottom: 0;
    right: 0;
  }
  .sec6 .inner .text_box img {
    width: 42.6666666667vw;
    height: 26.4vw;
    box-shadow: 7px 7px 16px rgba(0, 0, 0, 0.23);
  }
  .sec6 .inner .text_box ul {
    gap: 9.0666666667vw;
    margin-top: 0;
  }
  .sec6 .inner .text_box ul .title {
    font-size: 4vw;
  }
  .sec6 .inner .text_box ul li p.text {
    margin-top: 1.3333333333vw;
    font-size: 4vw;
  }
  .sec6 .inner .text_box ul li .link {
    font-size: 4vw;
  }
  .sec6 .inner .text_box ul li .link::after {
    content: "";
    top: 1.3333333333vw;
    right: -4vw;
    width: 3.6vw;
    height: 3.6vw;
  }
}
/*===================================================
会社概要
===================================================*/
/* 会社概要 section1
***************************************************************/
/*===================================================
お問い合わせ
===================================================*/
.contact_page {
  padding: 108px 0 150px;
}

.contact_page .inner p.text {
  margin-top: 50px;
}

.contact_page .inner .contact_form {
  margin: 60px 0 0;
  padding: 80px 0;
  font-size: 18px;
  border: 2px solid #333;
}

.contact_page .inner .contact_form ul {
  max-width: 800px;
  margin-inline: auto;
}

.contact_page .inner .contact_form li {
  display: flex;
  gap: 55px;
  margin-top: 50px;
}

.contact_page .inner .contact_form li .text2 {
  flex: 1;
  padding: 10px 0;
}

.contact_page .inner .contact_form li p + p {
  width: 590px;
  font-size: 18px;
  padding: 10px 0;
}

.confirm li {
  border-bottom: 1px solid #8a8a8a;
}

.contact_page .inner .contact_form li:first-of-type {
  margin-top: 0;
}

.contact_page .inner .contact_form li input,
.contact_page .inner .contact_form li textarea {
  width: 590px;
  background-color: #fff;
  border: 1px solid #333;
  padding: 10px 16px;
  font-size: 18px;
}

.contact_page .inner .contact_form li input::-moz-placeholder, .contact_page .inner .contact_form li textarea::-moz-placeholder {
  color: #999999;
}

.contact_page .inner .contact_form li input::placeholder,
.contact_page .inner .contact_form li textarea::placeholder {
  color: #999999;
}

.contact_page .inner .contact_form li textarea {
  height: 260px;
  resize: none;
}

.contact_page .inner .submit {
  text-align: center;
  margin-top: 50px;
}

.contact_page .inner .submit input {
  width: 233px;
  height: 44px;
  line-height: 19px;
  padding: 13px 0 12px;
  background-color: #fff;
  border: 2px solid #333;
}

.contact_page .inner .submit p {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.contact_page .inner .submit span {
  display: contents;
}

.thanks_form {
  border: 2px solid #333;
  margin-top: 60px;
  text-align: center;
  padding: 80px 0;
}

.thanks_form .text3 {
  line-height: 30px;
}

/* お問い合わせ section1
***************************************************************/
@media screen and (max-width: 1280px) {
  .contact_page {
    padding: 108px 80px 150px 30px;
  }
}
@media screen and (max-width: 1000px) {
  .contact_page .inner .contact_form ul {
    padding: 0 30px;
  }
  .contact_page .inner .contact_form li p + p {
    width: 372px;
  }
  .contact_page .inner .contact_form li input,
  .contact_page .inner .contact_form li textarea {
    width: 382px;
  }
}
@media screen and (max-width: 768px) {
  .contact_page {
    padding: 27.0666666667vw 5.3333333333vw 32vw;
  }
  .contact_page .inner p.text {
    margin-top: 13.3333333333vw;
    font-size: 4vw;
    line-height: 4.8vw;
  }
  .contact_page .inner .contact_form {
    margin: 13.3333333333vw 0 0;
    padding: 10.6666666667vw 5.3333333333vw;
    font-size: 4vw;
    border: 0.5333333333vw solid #333;
  }
  .contact_page .inner .contact_form li {
    flex-flow: column;
    gap: 3.3333333333vw;
    margin-top: 7.7333333333vw;
  }
  .contact_page .inner .contact_form li .text2 {
    padding: 0;
  }
  .contact_page .inner .contact_form li p + p {
    width: 100%;
    padding: 0;
  }
  .confirm li {
    border-bottom: 0.2666666667vw solid #8a8a8a;
  }
  .contact_page .inner .contact_form li input,
  .contact_page .inner .contact_form li textarea {
    width: 100%;
    border: 0.2666666667vw solid #333;
    padding: 1.6vw 4vw;
    font-size: 4vw;
  }
  .contact_page .inner .contact_form li textarea {
    height: 50.4vw;
  }
  .contact_page .inner .submit {
    text-align: center;
    margin-top: 8vw;
  }
  .contact_page .inner .confirm .submit {
    margin-top: 12vw;
  }
  .contact_page .inner .submit input {
    width: 46.6666666667vw;
    height: 8.8vw;
    line-height: 4.8vw;
    font-size: 4vw;
    padding: 2vw 0;
    border: 0.5333333333vw solid #333;
  }
  .contact_page .inner .confirm .submit input:first-of-type {
    width: 27.2vw;
  }
  .contact_page .inner .submit p {
    display: flex;
    justify-content: center;
    gap: 3.8666666667vw;
  }
  .contact_page .inner .confirm .submit p br {
    display: contents;
  }
  .contact_page .inner .submit span {
    display: contents;
  }
  .thanks_form {
    border: 0.5333333333vw solid #333;
    margin-top: 13.3333333333vw;
    padding: 9.0666666667vw 2vw 10.6666666667vw;
  }
  .thanks_form .text3 {
    line-height: 6.4vw;
    font-size: 4vw;
  }
}