@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 */
  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: -0.25em;
}

sup {
  top: -0.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] {
  -ms-touch-action: manipulation; /* 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: 100%;
  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: 0.2s ease-in-out;
}

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

.thumb {
  overflow: hidden;
}
a:hover .thumb img {
  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: "“" "”" "‘" "’";
}

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: 0.5em;
  top: 0;
}

blockquote:after {
  content: "\f10e";
  right: 0.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: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1rem 0;
}
.header-Logo {
  width: 180px;
}
.header-Logo a:hover {
  opacity: 0.5;
}
.header-Menu_List {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      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: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.header-Tab_List_Item {
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 0rem 0.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: 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: 0.2s ease-out;
    overflow-y: scroll;
    padding-bottom: 56px;
  }
  .header-Menu.open {
    opacity: 1;
    visibility: visible;
    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: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
        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: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        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 {
    -ms-flex-align: top;
        align-items: top;
  }
  .header-Menu_Item.info img {
    height: 50px;
    margin-right: 8px;
  }
  .header-Menu_Item.info div:nth-of-type(2) {
    -ms-flex: 1;
        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;
    transform: translateY(-50%);
  }
  .header-Menu_Item.notice a {
    -ms-flex-align: top;
        align-items: top;
  }
  .header-Menu_Item.notice img {
    height: 50px;
    margin-right: 8px;
  }
  .header-Menu_Item.notice div:nth-of-type(2) {
    -ms-flex: 1;
        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: 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 {
    -ms-flex-positive: 1;
        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: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
.footer-List {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      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: #545454;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: justify;
}

.tsumugi {
  position: relative;
}
.tsumugi-Back {
  position: fixed;
  top: 0;
  z-index: 1;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  width: 100%;
}
@media screen and (min-width: 550px) {
  .tsumugi-Back {
    width: calc(100% - 390px);
  }
}
@media screen and (min-width: 1025px) {
  .tsumugi-Back {
    width: 50%;
    width: calc(100% - 768px);
  }
}
@media screen and (min-width: 1366px) {
  .tsumugi-Back {
    width: 50%;
    width: calc(50% - 195px);
  }
}
.tsumugi-Back.left {
  display: none;
  left: 0;
  background-image: url("../img/back/back1.jpg");
}
@media screen and (min-width: 1025px) {
  .tsumugi-Back.left {
    display: block;
  }
}
.tsumugi-Back.right {
  right: 0;
  background-image: url("../img/back/back2.jpg");
}
.tsumugi p {
  font-size: 16px;
  line-height: 1.7;
}
.tsumugi p:not(:last-of-type) {
  margin-bottom: 1.2rem;
}
.tsumugi p.db {
  margin-top: 3em;
}
.tsumugi p.tb {
  margin-top: 4.5em;
}
.tsumugi p a {
  color: #2e7fb4;
  text-decoration: underline;
}
.tsumugi p a:hover {
  text-decoration: none;
}
.tsumugi-Main {
  position: relative;
  z-index: 2;
  max-width: 100%;
  background-size: contain;
  background-color: #ffffff;
  padding-bottom: 100px;
  margin-right: auto;
}
@media screen and (max-width: 549px) {
  .tsumugi-Main {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1025px) {
  .tsumugi-Main {
    max-width: 768px;
  }
}
@media screen and (min-width: 1366px) {
  .tsumugi-Main {
    margin: 0 auto;
  }
}
.tsumugi-Main img {
  width: 100%;
}
.tsumugi-Inner {
  position: relative;
  background-color: #fff;
  max-width: 100%;
  margin: 0 auto;
}
.tsumugi-Header img {
  width: 100%;
}
.tsumugi-Header .pc {
  display: none;
}
.tsumugi-Header .sp {
  display: block;
}
@media screen and (min-width: 550px) {
  .tsumugi-Header .pc {
    display: block;
  }
  .tsumugi-Header .sp {
    display: none;
  }
}
.tsumugi-Header_Copy {
  padding: 0.5rem 0;
  background-color: #ce474a;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
}
.tsumugi-Sentence {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  background-image: url(img/sentence-back.png);
  background-size: 100%;
  background-repeat: repeat-y;
}
.tsumugi-Sentence input[type=checkbox] {
  display: none;
}
.tsumugi-Sentence label.close {
  display: none;
}
.tsumugi-Sentence input[type=checkbox]:checked ~ label.open {
  display: none;
}
.tsumugi-Sentence input[type=checkbox]:checked ~ label.close {
  display: block;
}
.tsumugi-Sentence .button {
  width: auto;
  height: 70px;
  display: block;
  margin: 1.5rem auto 3rem;
}
@media screen and (min-width: 1025px) {
  .tsumugi-Sentence .button {
    height: 100px;
  }
}
.tsumugi-Sentence .hidden-text {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  max-height: 0;
  overflow: hidden;
}
.tsumugi-Sentence input[type=checkbox]:checked ~ .hidden-text {
  max-height: none;
}
.tsumugi-Section_Inner {
  padding: 3rem 1rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 550px) {
  .tsumugi-Section_Inner {
    padding: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .tsumugi-Section_Inner {
    padding: 5rem 0;
    max-width: 768px;
  }
}
.tsumugi-Section_Image {
  margin: 3rem auto;
  padding: 6px;
  border: 1px solid #ddd;
  font-size: 16px;
  text-align: center;
}
.tsumugi-Section_Image img {
  width: 100%;
}
.tsumugi-Section_Image.col > div:not(:first-of-type) {
  margin-top: 1.5rem;
}
@media screen and (min-width: 550px) {
  .tsumugi-Section_Image.col {
    display: -ms-flexbox;
    display: flex;
    max-width: 960px;
  }
  .tsumugi-Section_Image.col > div:not(:first-of-type) {
    margin: 0;
    margin-left: 1rem;
  }
}
.tsumugi-Section_Note p {
  display: inline-block;
  color: #ce474a;
  padding: 1rem 1.5rem;
  border: 1px solid #ce474a;
  margin: 3rem auto;
}
.tsumugi-Section_Note p.alt {
  color: #d96d5a;
  border-color: #d96d5a;
}
.tsumugi-Section_Note p.alt a {
  color: #d96d5a;
}
@media screen and (min-width: 550px) {
  .tsumugi-Section_Note {
    text-align: center;
  }
  .tsumugi-Section_Note p {
    padding: 1rem 2rem;
  }
}
.tsumugi-Bread_List {
  max-width: 600px;
  margin: 0 auto;
}
.tsumugi-Bread_List_Item {
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
}
.tsumugi-Bread_List_Item::before {
  content: "◉";
  color: #ce474a;
  margin-right: 2px;
}
.tsumugi-Bread_List_Item:not(:first-of-type) {
  margin-top: 16px;
}
.tsumugi-Bread p {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .tsumugi-Bread p {
    text-align: center;
  }
}
.tsumugi-Action_Button {
  color: #FFF;
  text-decoration: none;
  text-align: center;
  display: block;
  padding: 1rem;
  font-size: 1.3rem;
  line-height: 1.2;
  border-radius: 100px;
  position: relative;
  border: 2px solid #f7931e;
  background-color: #f7931e;
  color: #fff;
  letter-spacing: 0.02em;
  max-width: 600px;
  margin: 1rem auto 0;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .tsumugi-Action_Button {
    font-size: 1.8rem;
  }
}
.tsumugi-Action_Button.alt {
  background-color: #ffffff;
  color: #f7931e;
}
.tsumugi-Action_Button:hover {
  opacity: 0.5;
}
.tsumugi-Action_Button span {
  font-size: 0.7em;
}
.tsumugi-Credit {
  text-align: center;
  line-height: 2;
  font-size: 12px;
  margin-top: 3rem;
}
.tsumugi-Memo {
  padding: 0 1rem;
  margin-bottom: 1rem;
}
.tsumugi-Memo p {
  font-size: 13px;
}
@media screen and (min-width: 1025px) {
  .tsumugi-Memo {
    padding: 0 3rem;
  }
  .tsumugi-Memo p {
    font-size: 18px;
  }
}
.tsumugi-Scroll {
  width: 80px;
  height: 80px;
  position: fixed;
  bottom: 8px;
  right: 8px;
  z-index: 100;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, visibility 0.4s;
}
/* .tsumugi-Scroll a:hover {
  opacity: 0.5;
} */
@media screen and (min-width: 768px) {
  .tsumugi-Scroll {
    width: 120px;
    height: 120px;
    bottom: 1rem;
    right: 1rem;
  }
}

/* 非表示にするためのクラス */
.tsumugi-Scroll.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* 透明な状態でもクリックできないようにする */
}

.overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  /*width: 100%;*/
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  transition: 0.5s ease;
  z-index: 125;
  cursor: pointer;
}

.open .overlay {
  visibility: visible;
  opacity: 1;
}

/* iframeに重なる要素を選択できなくなるため */
.open iframe {
  pointer-events: none;
}