@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 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: 1em; /* 2 */
}

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

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

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

/**
 * 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: 1em; /* 2 */
}

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
/* svg:not([fill]) {
  fill: currentColor;
} */
/**
 * Hide the overflow in IE.
 */
/* svg:not(:root) {
  overflow: hidden;
} */
/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

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

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

ol, ul {
  list-style: none;
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 1.5rem;
  color: #000;
  line-height: 1;
  position: relative;
  z-index: 5;
  min-width: 1200px;
  background: url(../imgs/top/bg_pattern_lightblue.png) center top;
}
@media (max-width: 480px) {
  body {
    min-width: auto;
  }
}
body.ja {
  font-family: "Noto Sans JP", sans-serif;
}
body.zh-CN {
  font-family: "Noto Sans SC", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

main {
  display: block;
}

ul {
  padding-left: 0;
  list-style: none;
}

select,
input,
textarea,
button {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}

select,
button {
  cursor: pointer;
}

p {
  line-height: 1.75;
}

.gothic {
  font-family: "Noto Sans JP", sans-serif;
}

.baseW {
  width: 94%;
  max-width: 1000px;
  margin: 0 auto;
}

.dib {
  display: inline-block;
}

.fwb {
  font-weight: bold;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.section_head {
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .section_head {
    margin-bottom: 30px;
  }
}
.section_title {
  font-size: 3.4rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  margin-bottom: 0.5em;
  padding-top: 1.8em;
  position: relative;
}
@media (max-width: 480px) {
  .section_title {
    font-size: 2.2rem;
  }
}
.section_title:before {
  content: "";
  display: block;
  width: 3.15em;
  height: 1.5em;
  position: absolute;
  left: 50.2%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.section_title.kiri_tomoe:before {
  background-image: url(../imgs/common/icon_kiri_tomoe.svg);
}
.section_title_sub {
  font-size: 0.76em;
  display: block;
}
.section_intro {
  text-align: center;
  font-size: 2.1rem;
  letter-spacing: 0.08em;
}
@media (max-width: 480px) {
  .section_intro {
    font-size: 1.5rem;
    margin: 0 1em;
  }
}

.btn_detail {
  width: 80%;
  max-width: 250px;
  margin: 0 auto;
  background-color: #FFF;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  text-align: center;
}
@media (max-width: 480px) {
  .btn_detail {
    font-size: 1.5rem;
  }
}
.btn_detail > a {
  display: block;
  text-decoration: none;
  border: 1px solid;
  color: #485e6e;
  padding: 0.7em 1.5em;
  position: relative;
}
.btn_detail > a:after {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-right: 1px solid #485e6e;
  border-top: 1px solid #485e6e;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 0.7em;
  top: 50%;
}
.btn_detail.transparent {
  background: none;
}
.btn_detail.transparent > a {
  color: #FFF;
}
.btn_detail.transparent > a:after {
  border-color: #FFF;
}
.btn_detail.black {
  background-color: rgba(0, 0, 0, 0.6);
}
.btn_detail.black > a {
  color: #FFF;
  border: none;
}
.btn_detail.black > a:after {
  border-color: #FFF;
}

.page_link_list {
  max-width: 950px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 480px) {
  .page_link_list {
    display: block;
    width: 90%;
  }
}
.page_link_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 452px;
          flex: 0 0 452px;
  margin-bottom: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 480px) {
  .page_link_item {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .page_link_item:last-child {
    margin-bottom: 0;
  }
}
.page_link_item_guide {
  line-height: 1.75;
  letter-spacing: 0.2em;
  margin: 1em 1.5em auto;
}
@media (max-width: 480px) {
  .page_link_item_guide {
    letter-spacing: 0.15em;
    font-size: 1.4rem;
  }
}
.page_link_item .btn_detail {
  margin-top: 30px;
}
@media (max-width: 480px) {
  .page_link_item .btn_detail {
    margin-top: 20px;
  }
}
.page_link_image {
  height: 385px;
  position: relative;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 480px) {
  .page_link_image {
    height: 180px;
  }
}
.page_link_image.about_shingonshu {
  background-image: url(../imgs/top/bg_about_shingonshu.jpg);
}
.page_link_image.about_shingonshu .page_link_image_text:before {
  background-image: url(../imgs/top/bg_about_shingonshu.jpg);
}
.page_link_image.about_kongobuji {
  background-image: url(../imgs/top/bg_about_kongobuji.jpg);
}
.page_link_image.about_kongobuji .page_link_image_text:before {
  background-image: url(../imgs/top/bg_about_kongobuji.jpg);
}
.page_link_image.midokoro_koyasan {
  background-image: url(../imgs/top/bg_midokoro_koyasan.jpg);
}
.page_link_image.midokoro_koyasan .page_link_image_text:before {
  background-image: url(../imgs/top/bg_midokoro_koyasan.jpg);
}
.page_link_image.midokoro_kongobuji {
  background-image: url(../imgs/top/bg_midokoro_kongobuji.jpg);
}
.page_link_image.midokoro_kongobuji .page_link_image_text:before {
  background-image: url(../imgs/top/bg_midokoro_kongobuji.jpg);
}
.page_link_image.experience {
  background-image: url(../imgs/top/bg_experience.jpg);
}
.page_link_image.experience .page_link_image_text:before {
  background-image: url(../imgs/top/bg_experience.jpg);
}
.page_link_image.event {
  background-image: url(../imgs/top/bg_event.jpg);
}
.page_link_image.event .page_link_image_text:before {
  background-image: url(../imgs/top/bg_event.jpg);
}
.page_link_image.art {
  background-image: url(../imgs/top/bg_art.jpg);
}
.page_link_image.art .page_link_image_text:before {
  background-image: url(../imgs/top/bg_art.jpg);
}
.page_link_image.praise {
  background-image: url(../imgs/top/bg_praise.jpg);
}
.page_link_image.praise .page_link_image_text:before {
  background-image: url(../imgs/top/bg_praise.jpg);
}
.page_link_image.learn {
  background-image: url(../imgs/top/bg_learn.jpg);
}
.page_link_image.learn .page_link_image_text:before {
  background-image: url(../imgs/top/bg_learn.jpg);
}
.page_link_image.monthly {
  background-image: url(../imgs/top/bg_monthly.jpg);
}
.page_link_image.monthly .page_link_image_text:before {
  background-image: url(../imgs/top/bg_monthly.jpg);
}
.page_link_image:before {
  content: "";
  display: block;
  border: 1px solid #FFF;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 10;
}
.page_link_image_text {
  color: #FFF;
  font-size: 2.6rem;
  letter-spacing: 0.22em;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 5;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: 100%;
  padding: 1em;
  overflow: hidden;
}
@media (max-width: 480px) {
  .page_link_image_text {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    height: auto;
    width: 75%;
    padding: 0.3em;
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: 0.14em;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.page_link_image_text:before, .page_link_image_text:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
}
.page_link_image_text:before {
  width: 120%;
  left: -10%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  z-index: 1;
}
@media (max-width: 480px) {
  .page_link_image_text:before {
    background-size: 90vw auto;
  }
}
.page_link_image_text:after {
  width: 100%;
  left: 0;
  background-color: #3a5e6f;
  opacity: 0.6;
  mix-blend-mode: multiply;
  z-index: 10;
}
.page_link_image_text_inner {
  position: relative;
  z-index: 20;
}
.page_link_image_text_inner .main_text {
  letter-spacing: 0.14em;
  font-size: 1.45em;
}
@media (max-width: 480px) {
  .page_link_image_text_inner .main_text {
    font-size: 1.2em;
    padding-top: 0.5em;
  }
}
.page_link_image_text_inner .main_text:before {
  content: "";
  display: block;
  width: 80%;
  max-width: 65px;
  height: 2px;
  background-color: #ff0000;
  position: absolute;
  left: 50%;
  top: 20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 480px) {
  .page_link_image_text_inner .main_text:before {
    max-width: 40px;
    top: 5px;
  }
}
.page_link_image_text_inner .main_text > span {
  font-size: 0.8em;
}
.page_link_image_text_inner .sub_text {
  letter-spacing: 0.2em;
  font-size: 0.73em;
  margin-right: 0.5em;
}
@media (max-width: 480px) {
  .page_link_image_text_inner .sub_text {
    font-size: 0.7em;
    padding-bottom: 0.5em;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 45px;
  }
}

.header {
  width: 250px;
  background-color: rgba(0, 0, 0, 0.65);
  height: 100vh;
  overflow-y: scroll;
  padding: 50px 10px 10px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.header::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1400px) {
  .header {
    width: 200px;
  }
}
@media (max-width: 480px) {
  .header {
    background-color: #000;
    width: 100%;
    height: 45px;
    padding: 0 15px;
    overflow-y: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header_logo {
  width: 120px;
  margin: 0 auto 35px;
}
@media (max-width: 1400px) {
  .header_logo {
    width: 100px;
  }
}
@media (max-width: 480px) {
  .header_logo {
    width: 50%;
    max-width: 180px;
    margin: 0;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.header_logo .sp {
  display: none;
}
@media (max-width: 480px) {
  .header_logo .sp {
    display: inline;
  }
}
@media (max-width: 480px) {
  .header_logo .pc {
    display: none;
  }
}
.header_logo a {
  display: block;
}
@media (max-width: 480px) {
  .header_menu {
    background-color: #000;
    position: absolute;
    left: 0;
    top: 45px;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    padding-bottom: 15px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    height: calc(100vh - 45px);
    overflow-y: scroll;
  }
}
@media (max-width: 480px) {
  .header_menu.is_active {
    opacity: 1;
    z-index: 1000;
    pointer-events: all;
  }
}
.header_menu_list {
  width: 160px;
  margin: 0 auto 20px;
}
@media (max-width: 1400px) {
  .header_menu_list {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .header_menu_list {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    border-top: 1px solid #FFF;
  }
}
@media (max-width: 480px) {
  .header_menu_item {
    border-bottom: 1px solid #FFF;
  }
}
.header_menu_item > a {
  color: #FFF;
  display: block;
  text-decoration: none;
  padding: 0.8em 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .header_menu_item > a {
    padding: 1em;
  }
}
.header_menu_item > a:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  left: -100%;
  bottom: 0;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}
@media (max-width: 480px) {
  .header_menu_item > a:before {
    content: none;
  }
}
.header_menu_item > a:after {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-right: 1px solid #FFF;
  border-top: 1px solid #FFF;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 480px) {
  .header_menu_item > a:after {
    content: none;
  }
}
.header_menu_item > a:hover:before {
  left: 0;
}
.header_menu_item > a:hover:after {
  opacity: 1;
}
.header_menu_btn {
  display: none;
}
@media (max-width: 480px) {
  .header_menu_btn {
    display: block;
    width: 45px;
    height: 45px;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
  }
}
@media (max-width: 480px) {
  .header_menu_btn.is_active {
    background-color: #CACACA;
  }
  .header_menu_btn.is_active .header_menu_bar:before, .header_menu_btn.is_active .header_menu_bar:after {
    background-color: #000;
  }
  .header_menu_btn.is_active .header_menu_bar:before {
    -webkit-transform: translate(-50%, 0) rotate(45deg);
            transform: translate(-50%, 0) rotate(45deg);
  }
  .header_menu_btn.is_active .header_menu_bar:after {
    -webkit-transform: translate(-50%, 0) rotate(-45deg);
            transform: translate(-50%, 0) rotate(-45deg);
  }
}
.header_menu_bar:before, .header_menu_bar:after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header_menu_bar:before {
  -webkit-transform: translate(-50%, -4px);
          transform: translate(-50%, -4px);
}
.header_menu_bar:after {
  -webkit-transform: translate(-50%, 4px);
          transform: translate(-50%, 4px);
}
.header_lang_change {
  text-align: center;
  cursor: pointer;
  margin-bottom: 30px;
}
@media (max-width: 1400px) {
  .header_lang_change {
    font-size: 1.4rem;
  }
}
.header_lang_change.sp {
  display: none;
}
@media (max-width: 480px) {
  .header_lang_change.sp {
    display: block;
    position: absolute;
    right: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (max-width: 320px) {
  .header_lang_change.sp {
    right: 45px;
  }
}
.header_lang_change.sp .txt {
  display: inline-block;
  margin-left: 0.5em;
  color: #fff;
  font-size: 1.2rem;
}
@media (max-width: 320px) {
  .header_lang_change.sp .txt {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .header_lang_change.pc {
    display: none;
  }
}
.header_lang_change > img {
  width: 17px;
  vertical-align: middle;
}
@media (max-width: 480px) {
  .header_lang_change > img {
    width: 15px;
  }
}
.header_lang_change_text {
  color: #FFF;
  margin-left: 0.5em;
  letter-spacing: 0.14em;
}
.header_lang_change_list {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: calc(100vh - 45px);
  padding-bottom: 15px;
  background-color: #000;
  border-top: 1px solid #fff;
  overflow-y: scroll;
  text-align: center;
  font-size: 1.5rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
.header_lang_change_list.is_active {
  opacity: 1;
  z-index: 1000;
  pointer-events: all;
}
.header_lang_change_list > li {
  border-bottom: 1px solid #fff;
}
.header_lang_change_list > li a {
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 1em 0;
  position: relative;
  overflow: hidden;
}
.header_sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.header_sns_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  margin: 0 8px;
}
@media (max-width: 1400px) {
  .header_sns_item {
    -ms-flex-preferred-size: 28px;
        flex-basis: 28px;
  }
}
.header_brochures {
  margin-bottom: 1em;
}
@media (max-width: 480px) {
  .header_brochures {
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
  }
}
.header_brochures_text {
  padding: 0.2em;
  color: #fff;
  background-color: #485e6e;
  border-radius: 5px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0.5em;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}
@media (max-width: 1400px) {
  .header_brochures_text {
    font-size: 1.3rem;
  }
  .header_brochures_text:hover {
    color: #000;
    background-color: #fff;
  }
  .header_brochures_text:hover::after {
    border-color: #000 transparent transparent transparent;
  }
}
.header_brochures_banner {
  margin-bottom: 0.5em;
  background-color: #fff;
  cursor: pointer;
}
.header_brochures_banner img {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 1400px) {
  .header_brochures_banner:hover img {
    opacity: 0.8;
  }
}
@media (max-width: 480px) {
  .header_brochures_banner {
    margin-bottom: 1em;
  }
}
.header_brochures_list {
  display: none;
  width: 160px;
  margin: 0 auto 20px;
}
@media (max-width: 1400px) {
  .header_brochures_list {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .header_brochures_list {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
  }
}
.header_brochures_item a {
  color: #FFF;
  display: block;
  text-decoration: none;
  padding: 0.8em 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .header_brochures_item a {
    padding: 1em;
  }
}
.header_brochures_item a:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  left: -100%;
  bottom: 0;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}
@media (max-width: 480px) {
  .header_brochures_item a:before {
    content: none;
  }
}
.header_brochures_item a:after {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-right: 1px solid #FFF;
  border-top: 1px solid #FFF;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 480px) {
  .header_brochures_item a:after {
    content: none;
  }
}
.header_brochures_item a:hover:before {
  left: 0;
}
.header_brochures_item a:hover:after {
  opacity: 1;
}
@media (max-width: 480px) {
  .header_special {
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
  }
}
.header_special_guide {
  color: #FFF;
  border: 1px solid #FFF;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
@media (max-width: 1400px) {
  .header_special_guide {
    font-size: 1.3rem;
  }
}
.header_special_guide:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.6em 0.4em 0 0.4em;
  border-color: #FFF transparent transparent transparent;
  margin-left: 0.2em;
}

.pl_content {
  padding-left: 250px;
}
@media (max-width: 1400px) {
  .pl_content {
    padding-left: 200px;
  }
}
@media (max-width: 480px) {
  .pl_content {
    padding-left: 0;
  }
}

.mv {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 480px) {
  .mv {
    display: block;
  }
}
.mv::before {
  content: "";
  width: 250px;
  background: #000;
}
@media (max-width: 1400px) {
  .mv::before {
    width: 200px;
  }
}
@media (max-width: 480px) {
  .mv::before {
    content: none;
  }
}
.mv_outer {
  position: relative;
  width: calc(100% - 250px);
}
@media (max-width: 1400px) {
  .mv_outer {
    width: calc(100% - 200px);
  }
}
@media (max-width: 480px) {
  .mv_outer {
    width: auto;
  }
}
.mv_outer .logo_limited {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 120px;
  z-index: 1010;
}
@media (max-width: 480px) {
  .mv_outer .logo_limited {
    top: 10px;
    left: 10px;
    width: 80px;
  }
}
.mv_outer .lang_change_wrap {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1010;
}
@media (max-width: 480px) {
  .mv_outer .lang_change_wrap.pc {
    display: none;
  }
}
.mv_outer .lang_change {
  position: relative;
  padding: 0.5em 0.5em;
  margin-bottom: 10px;
  width: 180px;
  text-align: center;
  background-color: #485e6e;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.mv_outer .lang_change::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  vertical-align: middle;
  background-image: url(../imgs/common/icon_global.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 480px) {
  .mv_outer .lang_change::before {
    width: 15px;
    height: 15px;
  }
}
.mv_outer .lang_change:hover {
  background-color: #fff;
}
.mv_outer .lang_change:hover::before {
  background-image: url(../imgs/common/icon_global_black.svg);
}
@media (max-width: 1400px) {
  .mv_outer .lang_change {
    font-size: 1.4rem;
  }
}
.mv_outer .lang_change_text {
  margin-left: 0.5em;
  letter-spacing: 0.14em;
  color: #fff;
  font-weight: bold;
}
.mv_outer .lang_change:hover .lang_change_text {
  color: #000;
}
.mv_outer .lang_change_list {
  display: none;
  color: #fff;
  z-index: 1010;
}
.mv_outer .lang_change_list > li {
  text-align: center;
}
.mv_outer .lang_change_list > li:not(:last-of-type) a {
  border-bottom: 1px solid #fff;
}
.mv_outer .lang_change_list > li a {
  display: block;
  padding: 0.5em 2em;
  color: #fff;
  background-color: #485e6e;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.mv_outer .lang_change_list > li a:hover {
  background-color: #fff;
  color: #000;
}
.mv_slide {
  height: 900px;
}
@media (max-width: 1400px) {
  .mv_slide {
    height: 800px;
  }
}
@media (max-width: 480px) {
  .mv_slide {
    height: 500px;
    margin-bottom: 30px;
  }
}
.mv_slide_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* font-family: 'object-fit: cover; object-position: bottom;'; */
}
.mv_slide_item_caption {
  position: absolute;
  bottom: 90px;
  right: 1em;
  color: #fff;
  font-size: 1.2rem;
}
@media (max-width: 480px) {
  .mv_slide_item_caption {
    bottom: 10px;
  }
}
.mv_pc {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 1000;
}
@media (max-width: 480px) {
  .mv_pc {
    position: static;
  }
}
@media (max-width: 480px) {
  .mv_sp {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1000;
    height: 500px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.mv_title {
  width: 120px;
  margin: 0 auto 30px;
}
@media (max-width: 1400px) {
  .mv_title {
    width: 110px;
  }
}
@media (max-width: 480px) {
  .mv_title {
    width: 20vw;
    max-width: 80px;
  }
}
.mv_location {
  width: 185px;
  position: absolute;
  right: 50%;
  bottom: 250px;
  -webkit-transform: translateX(480px);
          transform: translateX(480px);
}
@media (max-width: 1400px) {
  .mv_location {
    width: 170px;
    -webkit-transform: translateX(350px);
            transform: translateX(350px);
  }
}
@media (max-width: 480px) {
  .mv_location {
    width: 30vw;
    max-width: 200px;
    right: 0;
    -webkit-transform: translate(120%);
            transform: translate(120%);
    bottom: 30px;
  }
}
.mv_pagination {
  bottom: 90px !important;
}
@media (max-width: 480px) {
  .mv_pagination {
    width: 200% !important;
    left: 50% !important;
    bottom: 30px !important;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.mv_pagination .swiper-pagination-bullet {
  border: 1px solid #FFF;
  background: none;
  opacity: 1;
}
.mv_pagination .swiper-pagination-bullet-active {
  background-color: #FFF;
}
.mv_intro {
  color: #FFF;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  line-height: 3;
  text-align: center;
  margin: 0 1em;
}
@media (max-width: 1400px) {
  .mv_intro {
    font-size: 1.5rem;
    line-height: 2.5;
  }
}
@media (max-width: 480px) {
  .mv_intro {
    color: #485e6e;
    line-height: 2;
    font-size: 1.4rem;
    margin-bottom: 1.5em;
  }
}
.mv_intro rt {
  font-size: 0.7em;
}
.mv_visiting_guide {
  max-width: 816px;
  margin: 0 auto;
  background: url(../imgs/top/img_visiting_guide_202206.jpg) no-repeat right center;
  background-size: auto 140%;
  position: relative;
}
.mv .mv_visiting_guide {
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 480px) {
  .mv .mv_visiting_guide {
    display: none;
  }
}
@media (max-width: 480px) {
  .mv_visiting_guide {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    -webkit-transform: none;
            transform: none;
    background: none;
  }
}
.mv_visiting_guide_banner {
  width: 600px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #485e6e), color-stop(80%, #485e6e), to(rgba(72, 94, 110, 0)));
  background-image: linear-gradient(to right, #485e6e 0, #485e6e 80%, rgba(72, 94, 110, 0) 100%);
  color: #FFF;
  padding: 20px 30px;
}
@media (max-width: 480px) {
  .mv_visiting_guide_banner {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #485e6e), color-stop(80%, #485e6e), to(rgba(72, 94, 110, 0))), url(../imgs/top/img_visiting_guide_202206.jpg);
    background-image: linear-gradient(to right, #485e6e 0, #485e6e 80%, rgba(72, 94, 110, 0) 100%), url(../imgs/top/img_visiting_guide_202206.jpg);
    background-position: left top, right center;
    background-size: 65% 100%, 55% auto;
    background-repeat: no-repeat, no-repeat;
    width: auto;
    height: 70px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
}
.mv_visiting_guide_title {
  width: 218px;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  font-size: 2.5rem;
  letter-spacing: 0.28em;
  line-height: 1.3;
  padding: 0.5em 0;
  text-align: center;
}
@media (max-width: 480px) {
  .mv_visiting_guide_title {
    width: auto;
    display: inline-block;
    margin-left: 8%;
    border: none;
    font-size: 1.8rem;
  }
}
.mv_visiting_guide_title_sub {
  font-size: 0.8em;
  letter-spacing: 0.14em;
  display: block;
}
.mv_visiting_guide_link {
  position: absolute;
  left: 280px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 200px;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .mv_visiting_guide_link {
    position: static;
    -webkit-transform: none;
            transform: none;
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  .mv_visiting_guide_link.btn_detail > a {
    color: #485e6e;
  }
}
@media (max-width: 480px) {
  .mv_visiting_guide_link.btn_detail > a:after {
    border-color: #485e6e;
  }
}

.news {
  padding-top: 100px;
  padding-bottom: 70px;
  position: relative;
}
@media (max-width: 480px) {
  .news {
    padding: 40px 0;
  }
}
.news--jp {
  z-index: 20;
  padding-top: 0;
  margin-top: -65px;
}
@media (max-width: 480px) {
  .news--jp {
    margin-top: 0;
  }
}
.news .bnr_single {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .news .bnr_single {
    width: 90%;
    max-width: 400px;
    margin: 0 auto 30px;
  }
}
.news .bnr_single > a {
  display: inline-block;
  background-color: white;
}
.news .bnr_single > a img {
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .news .bnr_single > a img:hover {
    opacity: 0.8;
  }
}
.news .bnr_single .sp {
  display: none;
}
@media (max-width: 480px) {
  .news .bnr_single .sp {
    display: block;
  }
}
@media (max-width: 480px) {
  .news .bnr_single .pc {
    display: none;
  }
}
.news .bnrWrap_col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 36px;
  margin-bottom: 65px;
}
@media (max-width: 480px) {
  .news .bnrWrap_col2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    width: 90%;
    max-width: 400px;
    margin: 0 auto 30px;
  }
}
.news .bnrWrap_col2 .bnr_col2 {
  width: 100%;
  max-width: 390px;
}
@media (max-width: 480px) {
  .news .bnrWrap_col2 .bnr_col2 {
    max-width: 400px;
  }
}
.news .bnrWrap_col2 .bnr_col2_note {
  margin-top: 0.25em;
  padding-left: 1em;
  text-indent: -1em;
}
.news .bnrWrap_col2 a {
  display: inline-block;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
@media (max-width: 480px) {
  .news .bnrWrap_col2 a {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news .bnrWrap_col2 a:hover {
    opacity: 0.8;
  }
}
@media (max-width: 480px) {
  .news .bnrWrap_col2 a img {
    width: 100%;
  }
}
.news .bnr_anniversary {
  width: 90%;
  max-width: 860px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .news .bnr_anniversary {
    margin-top: 30px;
  }
}
.news .bnr_anniversary a {
  display: block;
}
.news .bnr_anniversary img {
  width: 100%;
}
.news .bnr_rurubu {
  margin-bottom: 65px;
}
@media (max-width: 480px) {
  .news .bnr_rurubu {
    margin: 0 auto 30px;
  }
}
.news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 480px) {
  .news_list {
    display: block;
    width: 90%;
    max-width: 250px;
    margin: 0 auto;
  }
}
.news_list_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 950px;
  margin: 0 auto 55px;
}
@media (max-width: 480px) {
  .news_list_wrap {
    display: block;
    margin-bottom: 30px;
  }
}
.news_list_block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 620px;
          flex: 0 0 620px;
}
.news_item {
  position: relative;
  margin-bottom: 35px;
  width: 48%;
  max-width: 297px;
}
@media (max-width: 480px) {
  .news_item {
    width: 100%;
  }
}
.news_img {
  position: relative;
  padding-bottom: 58.58%;
  background-color: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}
.news_img.no_img {
  background: rgba(255, 255, 255, 0.35) url(../imgs/top/img_dummy_news1.jpg) center center;
  background-size: contain;
}
.news_img img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: auto;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.news_head {
  margin: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 480px) {
  .news_head {
    font-size: 1.3rem;
  }
}
.news_category {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
  text-align: center;
  margin-left: 1em;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .news_category {
    -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
  }
}
.news_category.notice {
  background-color: #b09a14;
  color: #FFF;
}
.news_title {
  letter-spacing: 0.1em;
}
.news_title > a {
  color: #000;
  text-decoration: none;
}
.news_title > a:hover {
  text-decoration: underline;
}
.news_title > a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.news_contents {
  display: none;
}
.news_all {
  background: none;
}
.news_facebook {
  text-align: center;
}
@media (max-width: 480px) {
  .news_facebook {
    margin-top: 30px;
  }
}
.news .youtube {
  background-color: rgba(255, 255, 255, 0.8);
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .news .youtube {
    width: 90%;
  }
}
.news .youtube_channel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
}
@media (max-width: 480px) {
  .news .youtube_channel {
    display: block;
    padding: 30px 15px;
  }
}
.news .youtube_channel_guide {
  padding-left: 30px;
}
@media (max-width: 480px) {
  .news .youtube_channel_guide {
    padding-left: 0;
    text-align: center;
  }
}
.news .youtube_channel_name {
  font-size: 4.3rem;
  letter-spacing: 0.14em;
  color: #485e6e;
  margin-bottom: 0.4em;
}
@media (max-width: 480px) {
  .news .youtube_channel_name {
    font-size: 2.2rem;
    margin-bottom: 1em;
  }
}
.news .youtube_channel_info {
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  margin-bottom: 1em;
}
@media (max-width: 480px) {
  .news .youtube_channel_info {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.news .youtube_channel_link {
  background-color: #485e6e;
  max-width: 325px;
  margin-left: 0;
}
@media (max-width: 480px) {
  .news .youtube_channel_link {
    margin-left: auto;
    margin-bottom: 20px;
  }
}
.news .youtube_channel_link > a {
  color: #FFF;
}
.news .youtube_channel_link > a:after {
  border-color: #FFF;
}
.news .youtube_channel_movie {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 375px;
          flex: 0 0 375px;
}
.news .youtube_channel_movie_wrap {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.news .youtube_channel_movie_wrap > iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.news .youtube_learn_culture {
  background-color: #485e6e;
  color: #FFF;
  padding: 25px 70px;
  font-size: 2.6rem;
  letter-spacing: 0.14em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 480px) {
  .news .youtube_learn_culture {
    display: block;
    font-size: 2rem;
    text-align: center;
    padding: 25px;
  }
}
.news .youtube_learn_culture_link {
  margin-right: 0;
}
@media (max-width: 480px) {
  .news .youtube_learn_culture_link {
    margin-right: auto;
    margin-top: 1em;
  }
}
.news .bnr_column {
  text-align: center;
  width: 90%;
  max-width: 816px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .news .bnr_column {
    max-width: 400px;
    margin-bottom: 30px;
  }
}
.news .bnr_column a {
  position: relative;
  display: inline-block;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .news .bnr_column a:hover {
    opacity: 0.8;
  }
}
.news .bnr_column .sp {
  display: none;
}
@media (max-width: 480px) {
  .news .bnr_column .sp {
    display: block;
  }
}
@media (max-width: 480px) {
  .news .bnr_column .pc {
    display: none;
  }
}

.section_learn {
  background: url(../imgs/top/bg_section_learn.jpg) no-repeat center bottom #000;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 20px;
}
@media (max-width: 480px) {
  .section_learn {
    background-size: contain;
    background-position: center top;
    padding: 40px 0;
  }
}
.section_learn .section_title {
  color: #FFF;
}
.section_learn .page_link_item {
  -ms-flex-preferred-size: 461px;
      flex-basis: 461px;
}
.section_learn .page_link_image {
  height: 445px;
}
@media (max-width: 480px) {
  .section_learn .page_link_image {
    height: 200px;
  }
}

.midokoro {
  background: url(../imgs/top/bg_section_midokoro.jpg) no-repeat center bottom;
  background-size: cover;
  padding-top: 80px;
}
@media (max-width: 480px) {
  .midokoro {
    padding: 40px 0;
  }
}

.guidance {
  padding-top: 60px;
  padding-bottom: 20px;
  background-color: #FFF;
}
@media (max-width: 480px) {
  .guidance {
    padding: 40px 0;
  }
}

.instagram {
  background-color: #FFF;
}
.instagram_title {
  position: relative;
  color: #FFF;
  background-color: #485e6e;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  padding-top: 0.8em;
  padding-right: 0.8em;
  padding-bottom: 0.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 480px) {
  .instagram_title {
    font-size: 1.5rem;
    padding-left: 0.8em;
  }
}
.instagram_title > img {
  width: 20px;
  margin-right: 0.5em;
}
.instagram_title a {
  color: #fff;
  text-decoration: none;
}
.instagram_title a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.instagram_outer {
  overflow: hidden;
}
.instagram_post {
  /* display: flex;
  line-height: 0; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 3870px;
}
@media (max-width: 480px) {
  .instagram_post {
    width: 2340px;
  }
}
.instagram_post_wrap {
  width: 50%;
}
.instagram_post_wrap.is_animation {
  -webkit-animation: infinity-loop 66s infinite linear;
          animation: infinity-loop 66s infinite linear;
}
.instagram_post_item {
  position: relative;
  width: 215px;
  height: 215px;
  background: #eceff0 url(../imgs/top/bg_pattern_lightblue.png) center top;
  overflow: hidden;
}
@media (max-width: 480px) {
  .instagram_post_item {
    width: 130px;
    height: 130px;
  }
}
.instagram_post_item a {
  display: block;
  width: 100%;
  height: 100%;
}
.instagram_post_item img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: auto;
}

/* 無限ループアニメーション */
@-webkit-keyframes infinity-loop {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes infinity-loop {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.other_links {
  background-color: #485e6e;
  padding-top: 45px;
  padding-bottom: 35px;
}
@media (max-width: 480px) {
  .other_links {
    padding: 30px 0;
  }
}
.other_links_list {
  max-width: 950px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 480px) {
  .other_links_list {
    display: block;
    border-top: 1px solid #FFF;
    width: 90%;
  }
}
.other_links_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 256px;
          flex: 0 0 256px;
  margin: 0 25px;
  padding: 30px 0 20px;
  text-align: center;
  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;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  position: relative;
}
@media (max-width: 480px) {
  .other_links_item {
    border-top: none;
    margin: 0;
    padding: 20px 0 20px 35px;
    padding-right: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.other_links_item:before {
  content: "";
  display: block;
  width: 85px;
  height: 30px;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../imgs/common/icon_kiri_tomoe.svg) no-repeat #485e6e 60% center;
  background-size: auto 100%;
}
@media (max-width: 480px) {
  .other_links_item:before {
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: transparent;
    width: 2em;
    height: 1.5em;
    background-position: center center;
    background-size: contain;
  }
}
.other_links_name {
  color: #FFF;
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  line-height: 1.3;
  margin-bottom: 0.5em;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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;
}
@media (max-width: 480px) {
  .other_links_name {
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
.other_links_link {
  font-size: 1.7rem;
}
@media (max-width: 480px) {
  .other_links_link {
    font-size: 1.3rem;
    width: 50%;
    max-width: 200px;
  }
}
.other_site {
  background-color: #FFF;
}
.other_site_banner {
  max-width: 950px;
  margin: 0 auto;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 480px) {
  .other_site_banner {
    width: 90%;
    padding: 30px 0;
  }
}
.other_site_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 296px;
          flex: 0 0 296px;
  margin: 10px 0;
}
@media (max-width: 480px) {
  .other_site_item {
    -ms-flex-preferred-size: 48.5%;
        flex-basis: 48.5%;
    margin: 5px 0;
  }
}
.other_site_item img {
  width: 100%;
}

.footer {
  background-color: #000;
}
.footer .to_pagetop {
  position: fixed;
  right: 50px;
  bottom: 50px;
  opacity: 0;
  font-size: 2.4rem;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer .to_pagetop.is_active {
  opacity: 1;
  z-index: 900;
}
@media (max-width: 480px) {
  .footer .to_pagetop {
    right: 10px;
    bottom: 20px;
    font-size: 1.3rem;
  }
}
.footer .to_pagetop > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  color: #FFF;
  text-decoration: none;
  background-color: #485e6e;
}
@media (max-width: 480px) {
  .footer .to_pagetop > a {
    width: 45px;
    height: 45px;
  }
}
.footer .to_pagetop > a:before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: translate(-50%, 200%) rotate(-45deg);
          transform: translate(-50%, 200%) rotate(-45deg);
  position: absolute;
  left: 50%;
  top: 0;
}
.footer_menu {
  max-width: 950px;
  margin: 0 auto;
  padding: 50px 0;
  border-bottom: 1px solid #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 480px) {
  .footer_menu {
    display: block;
    padding: 0;
    border: none;
  }
}
.footer_menu_block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  color: #FFF;
}
.footer_menu_block > dt {
  font-size: 2.2rem;
  margin-bottom: 1em;
}
@media (max-width: 480px) {
  .footer_menu_block > dt {
    margin-bottom: 0;
    padding: 1em 5%;
    font-size: 1.7rem;
    border-bottom: 1px solid #FFF;
    position: relative;
  }
}
@media (max-width: 480px) {
  .footer_menu_block > dt:before, .footer_menu_block > dt:after {
    content: "";
    display: block;
    width: 0.7em;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: 5%;
    top: 50%;
  }
}
@media (max-width: 480px) {
  .footer_menu_block > dt:after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
}
@media (max-width: 480px) {
  .footer_menu_block > dt.is_active:after {
    opacity: 0;
  }
}
.footer_menu_block > dt a {
  color: #FFF;
  text-decoration: none;
}
.footer_menu_block > dt a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .footer_menu_block > dt a:hover {
    text-decoration: none;
  }
}
@media (max-width: 480px) {
  .footer_menu_block > dd {
    display: none;
    background-color: rgba(255, 255, 255, 0.15);
  }
}
.footer_menu_item {
  font-size: 1.4rem;
  margin-bottom: 1em;
}
@media (max-width: 480px) {
  .footer_menu_item {
    margin-bottom: 0;
    border-bottom: 1px dotted #666;
    position: relative;
    text-indent: 1em;
  }
}
@media (max-width: 480px) {
  .footer_menu_item:after {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-right: 1px solid #FFF;
    border-top: 1px solid #FFF;
    position: absolute;
    right: 5%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
}
.footer_menu_item > a {
  color: #FFF;
  text-decoration: none;
}
@media (max-width: 480px) {
  .footer_menu_item > a {
    display: block;
    padding: 1em 5%;
  }
}
.footer_menu_item > a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .footer_menu_item > a:hover {
    text-decoration: none;
  }
}
.footer_info {
  max-width: 650px;
  color: #FFF;
  margin: 0 auto;
  padding: 35px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  letter-spacing: 0.2em;
}
@media (max-width: 480px) {
  .footer_info {
    width: 90%;
    display: block;
    padding: 25px 0;
  }
}
.footer_site_name {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 1em;
}
@media (max-width: 480px) {
  .footer_site_name {
    text-align: left;
    font-size: 1.4rem;
  }
}
.footer_address, .footer_tel_fax {
  font-style: normal;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  line-height: 1.75;
}
@media (max-width: 480px) {
  .footer_address, .footer_tel_fax {
    font-size: 1.3rem;
    margin: 1em 0;
  }
}
.footer_copyright {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  font-size: 1.6rem;
  text-align: center;
  margin-top: 2em;
}
@media (max-width: 480px) {
  .footer_copyright {
    font-size: 1.1rem;
    text-align: left;
  }
}

.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}/*# sourceMappingURL=style.css.map */