@charset "UTF-8";
/* ==========================================================================
   Mixin　ミックスインの定義
   ========================================================================== */
/**
 * media queries
**/
/*! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat;
  /* 1 */
  box-sizing: inherit;
  /* 2 */
}

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

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
  box-sizing: border-box;
  /* 1 */
  cursor: default;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * 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, Firefox, and Safari.
 */
/*h1 {
	font-size: 2em;
	margin: .67em 0;
}*/
/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
/*figure {
	margin: 1em 40px;
}*/
/**
 * 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 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
/*nav ol,
nav ul {
	list-style: none;
}*/
/**
 * 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 (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

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

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

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

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ffff00;
  color: #000000;
}

/**
 * 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: -.25em;
}

sup {
  top: -.5em;
}

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */
::-moz-selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none;
}

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (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 images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
/**
 * Collapse border spacing
 */
table {
  border-collapse: collapse;
}

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

/**
 * Inherit styling in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  /* background-color: transparent; */
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

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

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 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 odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

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

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

/* Interactive elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

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

/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

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

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  /* 1 */
  touch-action: manipulation;
}

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

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}

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

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
  cursor: default;
}

/* All browsers without overlaying scrollbars */
html {
  overflow-y: scroll;
}

/* Reset padding and margin of all elements */
* {
  padding: 0;
  margin: 0;
}

/* Inherit styling in all browsers */
button,
input,
select,
textarea {
  font-family: inherit;
}

/* Remove focus outline in all browsers */
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

/* Remove input background color in Chrome */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
}

/* Apply cursor pointer to button elements */
button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* Set table width & table-layout */
table {
  width: 100%;
  table-layout: fixed;
}

body {
  font-family: "Noto Sans Japanese", sans;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 88.8%;
  line-height: 1.7;
  font-weight: 400;
  color: #444;
}

p {
  line-height: 1.7;
}

p:not(:last-of-type) {
  margin-bottom: 1.5em;
}

a {
  color: #444;
  text-decoration: none;
  transition: .2s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  transition: .2s ease-in-out;
}

.thumb > img {
  width: 100%;
}

.thumb {
  overflow: hidden;
}

a:hover .thumb img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

h2, h3, h4, h5 {
  font-weight: bold;
  margin: 0 0 1.5em;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.4em;
}

h4 {
  font-size: 1.3em;
}

h5 {
  font-size: 1.2em;
}

hr {
  border: 0;
  border-top: 1px dashed #cfcfcf;
  margin: 3em 0;
}

ul {
  list-style: none;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote {
  padding: 1.5em;
  margin: 2em 0;
  position: relative;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

blockquote:before,
blockquote:after {
  font-family: 'FontAwesome';
  position: absolute;
  font-size: 2em;
  color: #cfcfcf;
}

blockquote:before {
  content: '\f10d';
  left: .5em;
  top: 0;
}

blockquote:after {
  content: '\f10e';
  right: .5em;
  bottom: 0;
}

blockquote p {
  font-weight: bold;
  margin: 1.5em 0;
}

.youtube-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube-wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.googlemap-wrap {
  position: relative;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: 100%;
}

.googlemap-wrap iframe, .googlemap-wrap object, .googlemap-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header {
  position: relative;
  z-index: 300;
  background-color: #fff;
}

.header-Inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.header-Logo {
  width: 180px;
}

.header-Logo a:hover {
  opacity: .5;
}

.header-Menu_List {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-Menu_List_Item {
  position: relative;
}

.header-Menu_List_Item:not(:first-of-type) {
  margin-left: 12px;
}

.header-Menu_List_Item img {
  height: 32px;
}

.header-Menu_List_Item .notice {
  width: 20px;
  line-height: 20px;
  background-color: #d3533e;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: -4px;
  right: 8px;
}

.header-Menu_Anchor {
  display: block;
  text-align: center;
  font-size: 13px;
  padding: 2px 2px 0;
  border-radius: 4px;
}

.header-Menu_Anchor:hover {
  color: #d3533e;
}

.header-Menu_Anchor span {
  display: block;
}

.header-Menu_Anchor span::before {
  font-size: 2rem;
  color: #d3533e;
}

.header-Tab {
  margin-bottom: 20px;
  background-color: #d3533e;
  color: #fff;
  border-radius: 4px;
  padding: 8px 8px;
}

.header-Tab_List {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.header-Tab_List_Item {
  flex-grow: 1;
  padding: .0rem .25rem;
  font-size: 12px;
  cursor: pointer;
  text-align: center;
}

.header-Tab_List_Item.current, .header-Tab_List_Item:hover {
  border-bottom: 2px solid #fff;
}

@media screen and (max-width: 767px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    box-shadow: 0 0 4px #cfcfcf;
  }
  .header-Inner {
    padding: 8px;
  }
  .header-Logo img {
    height: 40px;
  }
  .header-Menu {
    position: absolute;
    top: 56px;
    right: -70vw;
    z-index: -1;
    background-color: #fff;
    width: 70vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    overflow-y: scroll;
    padding-bottom: 56px;
  }
  .header-Menu.open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-70vw);
    transform: translateX(-70vw);
  }
  .header-Menu_List {
    display: block;
  }
  .header-Menu_List_Item:not(:first-of-type) {
    margin-left: 0;
    margin-top: 24px;
  }
  .header-Menu_Anchor {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
  }
  .header-Menu_Anchor span {
    display: inline-block;
    margin-right: 8px;
  }
  .header-Menu_Item dt {
    font-size: 12px;
    background-color: #f7f7f7;
    padding: 8px;
  }
  .header-Menu_Item li:not(:first-of-type) {
    border-top: 1px solid #ddd;
  }
  .header-Menu_Item_Anchor {
    display: flex;
    align-items: center;
    padding: 8px 16px;
  }
  .header-Menu_Item span::before {
    color: #d3533e;
    margin-right: 4px;
    font-size: 1.5em;
    position: relative;
    top: -1px;
  }
  .header-Menu_Item.Search input {
    padding: 4px 8px;
  }
  .header-Menu_Item.account img {
    width: 50px;
    margin-right: 8px;
  }
  .header-Menu_Item.info a {
    align-items: top;
  }
  .header-Menu_Item.info img {
    height: 50px;
    margin-right: 8px;
  }
  .header-Menu_Item.info div:nth-of-type(2) {
    flex: 1;
    line-height: 1.3;
  }
  .header-Menu_Item.notice dt {
    position: relative;
  }
  .header-Menu_Item.notice dt a {
    position: absolute;
    top: 50%;
    right: 4px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header-Menu_Item.notice a {
    align-items: top;
  }
  .header-Menu_Item.notice img {
    height: 50px;
    margin-right: 8px;
  }
  .header-Menu_Item.notice div:nth-of-type(2) {
    flex: 1;
    line-height: 1.3;
    font-size: 12px;
  }
  .header-Menu_Item.notice div:nth-of-type(2) span {
    display: block;
    color: #aaa;
  }
  .header-Menu_Item.copyright {
    text-align: center;
    padding: 1rem;
    color: #aaa;
    font-size: 12px;
    border-top: 1px solid #ddd;
  }
  .header-Trigger {
    border: 1px solid #ddd;
    border-radius: 5rem;
    padding-right: 8px;
    position: relative;
  }
  .header-Trigger img {
    height: 32px;
    border-radius: 50%;
  }
  .header-Trigger .text {
    margin-left: 4px;
  }
  .header-Trigger .text::before {
    content: "メニュー";
  }
  .header-Trigger .text.open::before {
    content: "元に戻る";
  }
  .header-Trigger .notice {
    width: 20px;
    line-height: 20px;
    background-color: #d3533e;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: -8px;
    left: -8px;
  }
  .header-Tab {
    border-radius: 0;
    margin-bottom: 20px;
    margin-left: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 56px;
    z-index: 100;
  }
  .header-Tab_List {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-x: scroll;
    width: 100vw;
  }
  .header-Tab_List.current, .header-Tab_List:hover {
    background-color: #d3533e;
    color: #fff;
  }
  .header-Tab_List_Item {
    flex-grow: 1;
    font-size: 13px;
    padding: 0 8px;
  }
}

.footer {
  margin-top: 32px;
  text-align: center;
  line-height: 2.5;
  color: #fff;
  background-color: #d3533e;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 10px 0;
}

.footer-Inner {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (min-width: 550px) {
  .footer-Inner {
    display: flex;
    justify-content: space-between;
  }
}

.footer-List {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-List_Item {
  font-size: 13px;
}

.footer-List_Item:not(:first-of-type) {
  margin-left: 1em;
}

@media screen and (min-width: 550px) {
  .footer-List_Item:not(:first-of-type) {
    margin-left: 30px;
  }
}

.footer-List_Item a {
  color: #fff;
}

.footer-List_Item a:hover {
  text-decoration: underline;
}

.footer-Copyright {
  color: #fff;
}

body {
  color: #19180A;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
}

.musubi {
  position: relative;
  background-color: #ebeaea;
}

.musubi p {
  font-size: 16px;
  line-height: 2.3;
}

@media screen and (min-width: 1024px) {
  .musubi p {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }
}

@media screen and (min-width: 1920px) {
  .musubi p {
    font-size: 1.2rem;
  }
}

.musubi p:not(:last-of-type) {
  margin-bottom: 2em;
}

.musubi p.db {
  margin-top: 3em;
}

.musubi p.tb {
  margin-top: 4.5em;
}

.musubi-Deco1 {
  background: linear-gradient(transparent 70%, #dccda4 70%);
}

.musubi-Deco2 {
  color: #c7152e;
  font-weight: bold;
  font-size: 1.3em;
}

@media screen and (min-width: 550px) {
  .musubi-Deco2 {
    font-size: 2em;
  }
}

.musubi-Deco3 {
  font-weight: bold;
  text-decoration: underline;
  color: #c7152e;
}

.musubi-H2 {
  position: relative;
  font-family: 'Noto Serif Japanese', serif;
  text-align: center;
  font-size: 1.3rem;
  font-weight: normal;
  background-color: #a78b40;
  color: #fff;
  margin: 0 auto;
  padding: 4rem 1rem;
  letter-spacing: 1px;
  background-color: rgba(0, 0, 0, 0.6);
}

@media screen and (min-width: 768px) {
  .musubi-H2 {
    font-size: 2.5rem;
    font-weight: normal;
  }
}

@media screen and (min-width: 1920px) {
  .musubi-H2 {
    font-size: 3rem;
  }
}

.musubi-H2 span {
  font-size: 2em;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .musubi-H2 {
    letter-spacing: 2px;
    padding: 5rem 1rem;
  }
}

@media screen and (min-width: 1366px) {
  .musubi-H2 {
    padding: 7rem 1rem;
    letter-spacing: 4px;
  }
}

@media screen and (min-width: 1920px) {
  .musubi-H2 {
    padding: 10rem 1rem;
  }
}

.musubi-H2_Wrap {
  background-size: cover;
  background-position: center;
  margin: 0 calc(50% - 50vw);
}

.musubi h2 {
  color: #c7152e;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 1px;
  margin: 0;
  font-weight: normal;
}

@media screen and (min-width: 768px) {
  .musubi h2 {
    font-size: 3.5rem;
  }
}

.musubi h2 span {
  color: #19180A;
  font-size: .8em;
}

.musubi h3 {
  font-size: 2rem;
  letter-spacing: 1px;
  border-bottom: 1px solid #19180A;
}

.musubi h3:not(:first-of-type) {
  margin-top: 5rem;
}

.musubi-Main {
  position: relative;
}

.musubi-Inner {
  position: relative;
  background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
  padding: 0 1px;
}

@media screen and (min-width: 768px) {
  .musubi-Inner {
    max-width: 1366px;
    margin: 0 auto;
  }
}

.musubi-Headcopy {
  background-image: url("img/back.png");
  background-position: top center;
  background-size: cover;
  border-bottom: 4px solid #a78b40;
}

@media screen and (min-width: 768px) {
  .musubi-Headcopy {
    border-bottom-width: 8px;
  }
}

.musubi-Headcopy img {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.musubi-Sentence {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.musubi-Section {
  background-color: #fff;
  border: 8px solid #c7152e;
  border-width: 0 0 8px;
}

.musubi-Section:last-of-type {
  border: 0;
}

.musubi-Section:not(:first-of-type) {
  padding: 3rem 0;
}

@media screen and (min-width: 768px) {
  .musubi-Section:not(:first-of-type) {
    padding: 5rem 0;
  }
}

.musubi-Section_Inner {
  padding: 3rem 1rem;
  width: 100%;
  margin: 0 auto;
  max-width: 1024px;
}

@media screen and (min-width: 768px) {
  .musubi-Section_Inner {
    padding: 3rem;
  }
}

@media screen and (min-width: 1366px) {
  .musubi-Section_Inner {
    padding: 5rem;
  }
}

.musubi-Section_Image {
  margin: 3rem auto;
  font-size: 16px;
}

.musubi-Section_Image img {
  width: 100%;
}

@media screen and (min-width: 550px) {
  .musubi-Section_Image {
    text-align: center;
  }
}

.musubi-Section_Image.separator {
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.musubi-Section_Image.col > div:not(:first-of-type) {
  margin-top: 1.5rem;
}

@media screen and (min-width: 550px) {
  .musubi-Section_Image.col {
    display: flex;
    max-width: 960px;
  }
  .musubi-Section_Image.col > div:not(:first-of-type) {
    margin: 0;
    margin-left: 1rem;
  }
}

.musubi-Section_Note p {
  display: inline-block;
  color: #a78b40;
  padding: 1rem 1.5rem;
  border: 1px solid #a78b40;
  margin: 3rem auto;
}

.musubi-Section_Note p.alt {
  color: #d96d5a;
  border-color: #d96d5a;
}

.musubi-Section_Note p.alt a {
  color: #d96d5a;
}

@media screen and (min-width: 550px) {
  .musubi-Section_Note {
    text-align: center;
  }
  .musubi-Section_Note p {
    padding: 1rem 2rem;
  }
}

.musubi-Credit {
  text-align: center;
  line-height: 2rem;
  font-size: 11px;
  padding-bottom: 66px;
}

.musubi-Credit a {
  font-size: 11px;
  display: block;
}

@media screen and (min-width: 768px) {
  .musubi-Credit {
    font-size: 1rem;
    margin: 0 auto;
    line-height: 2rem;
  }
  .musubi-Credit a {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .musubi-Credit {
    padding-bottom: 94px;
  }
}

@media screen and (min-width: 1024px) {
  .musubi-Header {
    background-image: url("img/header-back.jpg");
    background-size: cover;
    background-position: center center;
  }
}

.musubi-Header img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .musubi-Header img {
    width: auto;
    max-height: 80vh;
    margin: 0 auto;
  }
}

.musubi-Header .pc {
  display: none;
}

.musubi-Header .sp {
  display: block;
}

@media screen and (min-width: 1024px) {
  .musubi-Header .pc {
    display: block;
  }
  .musubi-Header .sp {
    display: none;
  }
}

.musubi-Header_Image {
  max-width: 768px;
  margin: 0 auto;
}

.musubi-Lead {
  background-image: url("img/sentence-back.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.musubi-Lead section {
  margin: 5rem auto;
  display: flex;
}

.musubi-Lead_List {
  margin: 5rem auto;
  max-width: 90%;
}

.musubi-Lead_List_Item {
  margin: 2rem 0;
}

.musubi-Lead_Col {
  margin: 3rem auto 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
}

.musubi-Lead_Col img {
  width: 100%;
}

.musubi-Lead_Col_Item:last-of-type {
  margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .musubi-Lead_Col {
    padding: 0 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .musubi-Lead_Col {
    margin: 5rem auto 0;
    padding: 0;
    flex-direction: row-reverse;
  }
  .musubi-Lead_Col:last-of-type:not(.alt) {
    flex-direction: row;
  }
  .musubi-Lead_Col_Item {
    flex: 1;
  }
  .musubi-Lead_Col_Item:first-of-type {
    padding-left: 5rem;
  }
  .musubi-Lead_Col_Item:last-of-type {
    margin: 0;
  }
  .musubi-Lead_Col_Item.long {
    padding-left: 5rem;
  }
}

@media screen and (min-width: 1366px) {
  .musubi-Lead_Col {
    align-items: center;
  }
}

.musubi-Lead_Thumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
}

.musubi-Lead_Thumb_Item {
  width: 48%;
  margin-bottom: 4%;
}

@media screen and (min-width: 768px) {
  .musubi-Lead_Thumb_Item {
    width: 23.5%;
    margin-bottom: 2%;
  }
}

.musubi-Seminar_Note {
  color: #a78b40;
  margin: 3rem auto;
  max-width: 768px;
}

@media screen and (min-width: 550px) {
  .musubi-Seminar_Note {
    text-align: center;
  }
}

.musubi-Seminar_Head {
  text-align: center;
  font-weight: normal;
  font-size: 6vw;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.musubi-Seminar_Head span {
  color: #a78b40;
  font-size: .6em;
}

@media screen and (min-width: 550px) {
  .musubi-Seminar_Head {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  .musubi-Seminar_Head span {
    font-size: .5em;
  }
}

.musubi-Seminar_List {
  padding: 0 1rem;
  margin: 3rem 0;
}

.musubi-Seminar_List_Item {
  background-color: rgba(69, 78, 158, 0.2);
}

@media screen and (max-width: 1023px) {
  .musubi-Seminar_List_Item {
    margin-top: 10%;
  }
}

@media screen and (min-width: 1024px) {
  .musubi-Seminar_List {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .musubi-Seminar_List_Item {
    width: 30%;
  }
  .musubi-Seminar_List_Item:not(:nth-of-type(3n+1)) {
    margin-left: 5%;
  }
  .musubi-Seminar_List_Col {
    display: flex;
  }
  .musubi-Seminar_List_Col_Item:first-of-type {
    width: 150px;
    margin-right: 10px;
  }
  .musubi-Seminar_List_Col_Item:last-of-type {
    flex: 1;
  }
}

.musubi-Seminar_List_Image img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.musubi-Seminar_List_Data {
  padding: 1rem 1rem 2rem;
}

.musubi-Seminar_List_Title {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.musubi-Seminar_List_Title span {
  font-size: .7em;
  font-weight: normal;
  letter-spacing: normal;
  letter-spacing: 2px;
}

.musubi-Seminar_List_Content ul {
  list-style: disc;
  padding-left: 30px;
  text-align: justify;
}

@media screen and (min-width: 550px) {
  .musubi-Seminar_List_Content li {
    font-size: 1rem;
  }
}

.musubi-Seminar_Plus {
  font-size: 5rem;
  color: #a78b40;
  text-align: center;
  margin: 2rem 0;
  line-height: 1;
}

@media screen and (min-width: 1366px) {
  .musubi-Seminar_Plus {
    font-size: 8rem;
  }
}

.musubi-Ura p a {
  display: inline-block;
  padding: .5rem 2rem;
  border: 1px solid #c7152e;
  background-color: #c7152e;
  color: #fff;
}

.musubi-Ura p a:hover {
  background-color: transparent;
  color: #c7152e;
}

@media screen and (max-width: 767px) {
  .musubi-Ura_Col {
    padding: 0 1rem;
  }
  .musubi-Ura_Col_Item:last-of-type {
    margin-top: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .musubi-Ura_Col {
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .musubi-Ura_Col {
    align-items: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .musubi-Ura_Col:not(:first-of-type) {
    margin-top: 5rem;
  }
  .musubi-Ura_Col_Item:first-of-type {
    flex: 1;
    margin-right: 1.5rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 1024px) {
  .musubi-Ura_Col_Item:first-of-type {
    width: 500px;
    margin-right: 3rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 1920px) {
  .musubi-Ura_Col_Item:first-of-type {
    width: 600px;
  }
}

@media screen and (min-width: 768px) {
  .musubi-Ura_Col_Item:last-of-type {
    flex: 1;
  }
}

.musubi-Ura_Title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #19180A;
}

@media screen and (min-width: 768px) {
  .musubi-Ura_Title {
    font-size: 1.5rem;
  }
}

.musubi-Ura_Title span {
  font-size: .7em;
  font-weight: bold;
  color: #c7152e;
}

.musubi-Ura_Detail {
  margin: 5rem auto;
  max-width: 1024px;
}

@media screen and (max-width: 767px) {
  .musubi-Ura_Detail dl {
    padding: 0 1rem;
  }
  .musubi-Ura_Detail dl:not(:first-of-type) {
    margin-top: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .musubi-Ura_Detail_Col {
    display: flex;
  }
  .musubi-Ura_Detail dl {
    flex: 1;
  }
  .musubi-Ura_Detail dl:last-of-type {
    margin-left: 3rem;
  }
}

.musubi-Ura_Detail dt {
  display: block;
  border: 1px solid #19180A;
  text-align: center;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.musubi-Ura_Detail dt, .musubi-Ura_Detail dd {
  font-size: 1rem;
}

.musubi-Ura_Detail_Note {
  padding: 1.5rem;
  margin-top: 3rem;
  border: 1px solid #19180A;
  border-width: 1px 0;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .musubi-Ura_Detail_Note {
    padding: 3rem;
  }
}

.musubi-Ura_Option {
  max-width: 1366px;
  margin: 0 auto;
}

.musubi-Ura_Option_Title {
  text-align: center;
  font-weight: bold;
  color: #a78b40;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  margin-top: 3rem;
}

.musubi-Ura_Option ul {
  padding-left: 30px;
  margin: 0 auto;
  max-width: 600px;
  border: 2px solid #a78b40;
  padding: 1.5rem;
}

@media screen and (min-width: 768px) {
  .musubi-Ura_Option ul {
    padding: 3rem;
  }
}

.musubi-Ura_Option li {
  font-size: 1rem;
}

.musubi-Ura_Option li:not(:first-of-type) {
  margin-top: 1rem;
}

@media screen and (min-width: 1366px) {
  .musubi-Ura_Option li {
    font-size: 1.2rem;
  }
}

.musubi-Ura_Course {
  margin: 0 calc(50% - 50vw);
  background-color: rgba(69, 78, 158, 0.2);
}

.musubi-Ura_Course.alt {
  background-color: rgba(255, 105, 120, 0.2);
}

.musubi-Ura_Course_Head {
  text-align: center;
  color: #454E9E;
  font-weight: bold;
  font-size: 7vw;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.alt .musubi-Ura_Course_Head {
  color: #FF6978;
}

.musubi-Ura_Course_Head span {
  font-size: .55em;
}

@media screen and (min-width: 550px) {
  .musubi-Ura_Course_Head {
    font-size: 3rem;
    letter-spacing: 2px;
  }
  .musubi-Ura_Course_Head span {
    font-size: .5em;
  }
}

.musubi-Ura_Compare {
  overflow-x: scroll;
}

.musubi-Ura_Compare table {
  width: 800px;
  border: 1px solid #aaaaaa;
  margin-top: 3rem;
}

.musubi-Ura_Compare tr:not(:first-of-type) {
  border-top: 1px solid #aaaaaa;
}

.musubi-Ura_Compare th:not(:first-of-type),
.musubi-Ura_Compare td {
  border-left: 1px solid #aaaaaa;
}

.musubi-Ura_Compare td, .musubi-Ura_Compare th {
  padding: .5rem;
}

.musubi-Ura_Compare th:first-of-type {
  font-size: 1rem;
  text-align: left;
  width: 25%;
}

.musubi-Ura_Compare td {
  text-align: center;
  font-size: 1.5rem;
}

.musubi-Ura_Compare td span.small {
  font-size: 1rem;
}

.musubi-Ura_Compare th:nth-of-type(n+2) {
  color: #fff;
  background-color: #454E9E;
}

.musubi-Ura_Compare th:nth-of-type(n+4) {
  color: #fff;
  background-color: #FF6978;
}

.musubi-Ura_Compare td:nth-of-type(n+1) {
  background-color: rgba(69, 78, 158, 0.2);
}

.musubi-Ura_Compare td:nth-of-type(n+3) {
  background-color: rgba(255, 105, 120, 0.2);
}

.musubi-Ura_Compare img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  margin-right: 4px;
}

.musubi-Course .musubi-H2 {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 3rem 1rem;
  font-size: 6vw;
  margin: 0;
  border: 0;
}

@media screen and (min-width: 768px) {
  .musubi-Course .musubi-H2 {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1366px) {
  .musubi-Course .musubi-H2 {
    padding: 5rem 0;
  }
}

.musubi-Course .musubi-H2_Wrap {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.musubi-Course_Head {
  text-align: center;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 6vw;
}

@media screen and (min-width: 550px) {
  .musubi-Course_Head {
    font-size: 3rem;
  }
}

.musubi-Course_Item {
  background-color: #fff;
  max-width: 1024px;
  margin: 0 auto;
  margin-top: 3rem;
}

@media screen and (min-width: 550px) {
  .musubi-Course_Item {
    margin-top: 5rem;
  }
}

.musubi-Profile {
  max-width: 768px;
  margin: 0 auto;
}

.musubi-Profile img {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 50%;
}

.musubi-Profile_List {
  padding: 0 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.musubi-Profile_List_Item {
  margin-top: 3rem;
}

@media screen and (max-width: 549px) {
  .musubi-Profile_Col_Item:first-of-type {
    width: 200px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 550px) {
  .musubi-Profile_Col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .musubi-Profile_Col_Item:first-of-type {
    width: 200px;
    margin-right: 2rem;
  }
  .musubi-Profile_Col_Item:last-of-type {
    flex: 1;
  }
}

.musubi-Profile_Name {
  font-size: 1.5rem;
  letter-spacing: 2px;
  line-height: 1rem;
}

.musubi-Profile_Name .small {
  margin-top: 4px;
  font-size: .6em;
  letter-spacing: 1px;
}

@media screen and (max-width: 549px) {
  .musubi-Profile_Name {
    text-align: center;
    margin: 1rem 0 0;
  }
  .musubi-Profile_Name span::before {
    content: "\A";
    white-space: pre;
  }
}

.musubi-Profile_Desc {
  margin-top: .7rem;
  line-height: 2;
  text-align: justify;
}

.musubi-Uniwajuku {
  background-color: #a78b40;
  padding: 3rem 1rem;
  margin: 0 calc(50% - 50vw);
}

@media screen and (min-width: 768px) {
  .musubi-Uniwajuku {
    padding: 5rem 0;
  }
}

.musubi-Uniwajuku p span {
  color: #a78b40;
}

.musubi-Uniwajuku_Inner {
  max-width: 960px;
  background-color: #fff;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .musubi-Uniwajuku_Inner {
    padding: 3rem;
  }
}

.musubi-Uniwajuku_Title {
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  color: #a78b40;
}

@media screen and (min-width: 768px) {
  .musubi-Uniwajuku_Title {
    font-size: 2rem;
  }
}

.musubi-Uniwajuku img {
  display: block;
  margin: 3rem auto;
}

.musubi-Uniwajuku_Sentence {
  max-width: 768px;
  margin: 0 auto;
}

.musubi-Uniwajuku_Note p {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .musubi-Uniwajuku_Note p {
    font-size: 1rem;
  }
}

.musubi-Uniwajuku_Action {
  text-align: center;
  margin-top: 2rem;
}

.musubi-Uniwajuku_Action_Button {
  display: inline-block;
  width: 360px;
  max-width: 100%;
  background-color: #a78b40;
  color: #fff;
  letter-spacing: 1px;
  font-size: 1.2rem;
  text-align: center;
  padding: .5rem;
  border: 1px solid #a78b40;
}

.musubi-Uniwajuku_Action_Button:hover {
  color: #a78b40;
  background-color: transparent;
}

.musubi-Question_Inner {
  max-width: 1366px;
}

.musubi-Question dl {
  padding: 1.5rem;
  border-top: 1px solid #19180A;
}

@media screen and (min-width: 768px) {
  .musubi-Question dl {
    padding: 3rem;
  }
}

.musubi-Question dt {
  color: #a78b40;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 1px;
}

@media screen and (min-width: 550px) {
  .musubi-Question dt {
    font-size: 1.2rem;
  }
}

.musubi-Question dd {
  padding-top: 1rem;
  text-align: justify;
  line-height: 2;
}

@media screen and (min-width: 550px) {
  .musubi-Question dd {
    font-size: 1rem;
  }
}

.musubi-Question dd a {
  color: #c7152e;
  text-decoration: underline;
  font-weight: bold;
}

.musubi-Question dd a:hover {
  text-decoration: none;
}

.musubi-Question_Tel {
  text-align: center;
}

.musubi-Question_Tel img:hover {
  opacity: .5;
}

.musubi-Question_Tel_Reserved {
  font-size: 1.2em;
  display: inline-block;
  color: #aa0002;
  border: 1px solid #aa0002;
  padding: 0 8px;
  border-radius: 4px;
  margin-top: 1rem;
}

.musubi-Question a:hover img {
  opacity: .5;
}

.musubi-Video {
  margin: 1rem auto 0;
  width: 100%;
  max-width: 93%;
}

@media screen and (min-width: 768px) {
  .musubi-Video {
    max-width: 640px;
    margin: 5rem auto 0;
  }
}

.musubi-Video_Title {
  font-size: 1.3rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.musubi-Video_Title img {
  width: 130px;
}

@media screen and (min-width: 768px) {
  .musubi-Video_Title {
    font-size: 2rem;
    justify-content: center;
  }
  .musubi-Video_Title img {
    width: 120px;
  }
}

.musubi-Story_Director {
  display: flex;
  align-items: flex-end;
  justify-content: end;
  margin-top: 3rem;
}

.musubi-Story_Director_Name {
  text-align: right;
  margin-right: 1rem;
  letter-spacing: 1px;
}

@media screen and (min-width: 550px) {
  .musubi-Story_Director_Name {
    font-size: 1.2rem;
  }
}

.musubi-Story_Director_Name span {
  font-size: 1.5em;
}

.musubi-Story_Director_Photo {
  width: 150px;
}

.musubi-Collaboration_Concept {
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .musubi-Collaboration_Concept {
    margin-bottom: 5rem;
  }
}

.musubi-Collaboration_Concept img {
  display: block;
  margin-bottom: 3rem;
}

.musubi-Collaboration_Concept p {
  color: #c7152e;
}

.musubi-Collaboration_Item {
  padding: 3rem 0;
  margin: 0 auto;
  max-width: 960px;
}

@media screen and (min-width: 768px) {
  .musubi-Collaboration_Item {
    padding: 5rem 0;
  }
}

.musubi-Collaboration_Item:not(:first-of-type) {
  border-top: 2px dashed #c7152e;
}

.musubi-Collaboration_Item:last-of-type {
  padding-bottom: 0;
}

.musubi-Collaboration_Title {
  color: #c7152e;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

@media screen and (min-width: 768px) {
  .musubi-Collaboration_Title {
    font-size: 2.5rem;
  }
}

.musubi-Collaboration_Staff {
  display: flex;
  align-items: center;
  margin: 2rem auto;
  max-width: 600px;
  background-color: rgba(199, 21, 46, 0.1);
  padding: 1rem;
  border-radius: 1rem;
}

.musubi-Collaboration_Staff > div:first-of-type {
  width: 100px;
  margin-right: 1rem;
}

.musubi-Collaboration_Staff > div:first-of-type img {
  border-radius: 50%;
}

.musubi-Collaboration_Staff > div:last-of-type {
  flex: 1;
}

.musubi-Collaboration_Staff_Name {
  font-size: 1.2em;
  font-weight: bold;
}

.musubi-Collaboration_Sentence {
  font-size: 1rem;
  margin-top: 1rem;
  line-height: 2;
}

.musubi-Footer {
  background-color: #262626;
  color: #fff;
  text-align: center;
  font-weight: normal;
}

.musubi-Footer_Inner {
  padding: 5rem 1rem;
}

.musubi-Footer_Title {
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.musubi-Footer p {
  letter-spacing: 1px;
}

.musubi-Footer p a {
  display: inline-block;
  padding: .5rem 2rem;
  border: 1px solid #fff;
  color: #fff;
}

.musubi-Footer p a:hover {
  background-color: #fff;
  color: #262626;
}

.musubi-Footer_Copyright {
  padding: 1rem 0;
}
