@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  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: 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 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;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * 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: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-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] { /* 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;
}

/* reset
   ========================================================================== */
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
}

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

dl {
  margin: 0;
  padding: 0;
}
dl dt {
  margin: 0;
  padding: 0;
}
dl dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0 0 0 0;
}

/* Utility
   ========================================================================== */
.reset {
  line-height: 1.5rem;
  margin: 0;
  padding: 0;
}

.clearfix {
  min-height: 1px;
}
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  line-height: 0;
}

.column2 ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.column2 ul li {
  width: 49%;
  margin-top: 20px;
}
.column2 ul li:nth-child(-n+2) {
  margin-top: 0;
}

.column3 ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.column3 ul li {
  width: 32%;
  margin-top: 20px;
}
.column3 ul li:nth-child(-n+3) {
  margin-top: 0;
}
.column3 ul li:nth-child(3n+2):last-child {
  margin-left: auto;
  margin-right: 34%;
}
.column3 ul::after {
  content: "";
  display: block;
  width: 32%;
}

.column4 ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.column4 ul li {
  width: 23.5%;
  margin-top: 20px;
}
.column4 ul li:nth-child(-n+4) {
  margin-top: 0;
}
.column4 ul::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}
.column4 ul::after {
  content: "";
  display: block;
  width: 23%;
}

.column5 ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.column5 ul li {
  width: 18.4%;
  margin-top: 20px;
}
.column5 ul li:nth-child(-n+5) {
  margin-top: 0;
}

A:link {
  COLOR: #0033cc;
}

A:visited {
  COLOR: #990099;
}

A:HOVER {
  COLOR: red;
}

table {
  width: 100%;
}

#page_title {
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 45px;
  font-size: 1.875rem;
  line-height: 2.8125rem;
  width: 9em;
  padding: 10px 0;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  border: 3px solid #ff8b82;
  position: relative;
}
#page_title::before {
  content: url(../grp/title_left.png);
  position: absolute;
  left: -20px;
  top: -15px;
}
#page_title::after {
  content: url(../grp/title_right.png);
  position: absolute;
  right: -23px;
  bottom: -20px;
}
@media screen and (max-width: 768px) {
  #page_title::before {
    content: "";
  }
  #page_title::after {
    content: "";
  }
}

.section_title, .section_title_mt0 {
  margin: 50px 0 20px 0;
  font-size: 20px;
  line-height: 30px;
  font-size: 1.25rem;
  line-height: 1.875rem;
  text-align: left;
  background: #ff8b82;
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 500;
}

.section_title_mt0 {
  margin-top: 0;
}

/********************
	a img:hover {
		filter: alpha(opacity=75);
		-moz-opacity:0.75;
		opacity:0.75;
	}
*********************/
/*-----------------------------------------------------	*/
/*	for all						*/
/*-----------------------------------------------------	*/
body,
html {
  font-size: 62.5%;
  height: 100%;
  color: #333333;
  text-align: center;
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro";
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  background: url(../grp/kumo.png), #fff8e3;
  font-weight: 400;
}

#page {
  position: relative;
  height: auto !important;
  height: 100%;
  min-height: 100%;
  transform: rotate(0.03deg);
}

#globalHeader {
  background: url(../grp/head_bg.png) top center repeat-x, white;
  border-top: 5px solid #ff8b82;
  border-bottom: 1px solid #ff8b82;
}
#globalHeader > div {
  position: relative;
  width: calc(100% - 40px);
  padding: 24px 0 15px 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  align-items: center;
}
#globalHeader > div #title {
  text-align: left;
}
#globalHeader > div #title a {
  display: block;
  font-size: 22px;
  line-height: 22px;
  font-size: 1.375rem;
  line-height: 1.375rem;
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  position: relative;
  padding: 0 0 0 75px;
}
#globalHeader > div #title a span {
  display: block;
  font-size: 15px;
  line-height: 28px;
  font-size: 0.9375rem;
  line-height: 1.75rem;
}
#globalHeader > div #title a::before {
  content: url(../grp/logo_hari.png);
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -28px;
}
#globalHeader > div #title a::after {
  content: url(../grp/head_tori.png);
  position: absolute;
  top: -10px;
  right: -95px;
}
#globalHeader > div nav ul {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: end;
}
#globalHeader > div nav ul li a {
  display: block;
  text-decoration: none;
  color: #333333;
  padding: 0.5em 20px;
  background: white;
  font-size: 15px;
  line-height: 15px;
  font-size: 0.9375rem;
  line-height: 0.9375rem;
  position: relative;
  font-weight: 500;
  min-width: 120px;
  -moz-opacity: 0.8;
  transition: 0.1s ease-in-out;
}
#globalHeader > div nav ul li a i {
  margin: 0 0.3em 0 0;
  font-size: 20px;
  line-height: 28px;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
#globalHeader > div nav ul li a span {
  display: block;
}
#globalHeader > div nav ul li a::before {
  content: "";
  width: 1px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -15px;
  background: #eee;
}
#globalHeader > div nav ul li a:hover {
  color: #ff8b82;
  -moz-opacity: 0.8;
  transition: 0.1s ease-in-out;
}
#globalHeader > div nav ul li:nth-child(1) a i {
  color: #fcabb4;
}
#globalHeader > div nav ul li:nth-child(2) a i {
  color: #d1f1c0;
}
#globalHeader > div nav ul li:nth-child(3) a i {
  color: #b5e4ea;
}
#globalHeader > div nav ul li:nth-child(4) a i {
  color: #f2e0aa;
}
#globalHeader > div nav ul li:nth-child(5) a i {
  color: #fdd2ee;
}
#globalHeader > div nav ul li:nth-child(5) a::after {
  content: "";
  width: 1px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -15px;
  background: #eee;
}
#globalHeader > div nav ul li.this_page a, #globalHeader > div nav ul li.this_page a:hover {
  color: #ff8b82;
}
@media screen and (max-width: 1199px) {
  #globalHeader > div {
    display: block;
  }
  #globalHeader > div #title a::after {
    content: "";
  }
  #globalHeader > div nav {
    margin: 10px auto 0 auto;
  }
  #globalHeader > div nav ul {
    grid-template-columns: repeat(5, 1fr);
    justify-content: space-between;
  }
  #globalHeader > div nav ul li a {
    padding: 0.5em 0;
  }
}
@media screen and (max-width: 768px) {
  #globalHeader > div {
    width: auto;
    padding-bottom: 5px;
  }
  #globalHeader > div #title {
    margin-left: 10px;
  }
  #globalHeader > div nav {
    margin: 15px 5px 0 5px;
  }
  #globalHeader > div nav ul {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 5px;
  }
  #globalHeader > div nav ul li a {
    border: 1px solid #ff8b82;
    border-radius: 5px;
  }
  #globalHeader > div nav ul li a span {
    display: inline-block;
  }
  #globalHeader > div nav ul li a::before {
    width: 0;
  }
  #globalHeader > div nav ul li:nth-child(1) {
    display: none;
  }
  #globalHeader > div nav ul li:nth-child(5) a::after {
    width: 0;
  }
}
#preamble {
  padding: 80px 0 0 0;
  margin: 0 auto;
  background: url(../grp/flag.png) top center repeat-x, url(../grp/body_bg.png) bottom center repeat-x;
}
#preamble main {
  position: relative;
  display: block;
  width: 1200px;
  max-width: 100%;
  z-index: 60;
  padding-bottom: 80px;
  min-height: 70vh;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  #preamble {
    padding: 30px 20px 0 20px;
  }
}

.backtotop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 99;
}
.backtotop a {
  display: block;
  text-decoration: none;
  color: white !important;
  background: #333;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid white;
}
.backtotop a i {
  font-size: 25px;
  line-height: 25px;
  font-size: 1.5625rem;
  line-height: 1.5625rem;
}
.backtotop a:hover {
  background: #999;
  color: white;
}

#breadcrumb {
  display: none;
}
#breadcrumb ul {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
#breadcrumb ul li {
  font-size: 13px;
  line-height: 19.5px;
  font-size: 0.8125rem;
  line-height: 1.21875rem;
}
#breadcrumb ul li a {
  text-decoration: none;
}
#breadcrumb ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  margin: 0 0.7em;
}
#breadcrumb ul li:first-child::before {
  content: "";
  margin: 0 0 0 0;
}

#sns_btn {
  margin: 10px auto 0 auto;
  padding: 0 0 70px 0;
  position: relative;
  z-index: 22;
}
#sns_btn > div {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
#sns_btn > div ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#sns_btn > div ul li > a {
  border: 2px solid #eee;
  border-radius: 0.4rem;
  display: block;
  text-decoration: none;
  padding: 1rem 0;
  font-weight: bold;
  background: white;
}
#sns_btn > div ul li > a:hover {
  color: white !important;
}
#sns_btn > div ul li.facebook a {
  color: #3c5a99;
  border-color: #3c5a99;
}
#sns_btn > div ul li.facebook a:hover {
  background: #3c5a99;
}
#sns_btn > div ul li.twitter a {
  color: #28aae1;
  border-color: #28aae1;
}
#sns_btn > div ul li.twitter a:hover {
  background: #28aae1;
}
#sns_btn > div ul li.hatena a {
  color: #009fd7;
  border-color: #009fd7;
}
#sns_btn > div ul li.hatena a:hover {
  background: #009fd7;
}
#sns_btn > div ul li.pocket a {
  color: #ed374d;
  border-color: #ed374d;
}
#sns_btn > div ul li.pocket a:hover {
  background: #ed374d;
}
#sns_btn > div ul li.line a {
  color: #01ba01;
  border-color: #01ba01;
}
#sns_btn > div ul li.line a:hover {
  background: #01ba01;
}
#sns_btn > div ul:after {
  content: "";
  clear: both;
  display: block;
  height: 0;
}
@media screen and (max-width: 768px) {
  #sns_btn > div ul {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 10px;
  }
}

footer#globalFooter {
  position: sticky;
  top: 100vh;
  margin: 0 auto 0 auto;
}
footer#globalFooter > div {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
footer#globalFooter > div::before {
  content: url(../grp/tree_left.png);
  position: absolute;
  left: 0;
  bottom: 160px;
  z-index: 20;
}
footer#globalFooter > div::after {
  content: url(../grp/tree_right.png);
  position: absolute;
  right: 0;
  bottom: 160px;
  z-index: 20;
}
footer#globalFooter > div > div {
  padding: 30px 0;
  background: url(../grp/foot_bg.png) bottom center repeat-x, url(../grp/foot_bg-leaf.png), #f3d177;
  font-size: 18px;
  line-height: 27px;
  font-size: 1.125rem;
  line-height: 1.6875rem;
}
footer#globalFooter > div > div h3 {
  font-size: 26px;
  line-height: 39px;
  font-size: 1.625rem;
  line-height: 2.4375rem;
  font-weight: 500;
  width: 18em;
  text-align: left;
  margin: 0 auto;
  padding: 0 0 0 73px;
  position: relative;
}
footer#globalFooter > div > div h3 span {
  font-size: 20px;
  line-height: 25px;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  display: block;
}
footer#globalFooter > div > div h3::before {
  content: url(../grp/logo_bird.png);
  position: absolute;
  left: 0;
}
footer#globalFooter > div > div p {
  display: inline-block;
  position: relative;
  margin: 5px auto 0 auto;
}
footer#globalFooter > div > div p i {
  font-size: 18px;
  line-height: 27px;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  margin: 0 0.3em 0 0;
}
footer#globalFooter > div > div p span {
  font-size: 24px;
  line-height: 36px;
  font-size: 1.5rem;
  line-height: 2.25rem;
}
footer#globalFooter > div > div p span:nth-of-type(1) {
  margin: 0 20px 0 0;
}
footer#globalFooter > div > div p br:nth-of-type(2) {
  display: none;
}
footer#globalFooter > div > div p::before {
  content: url(../grp/usagi.png);
  bottom: -5px;
  left: -90px;
  position: absolute;
  z-index: 23;
}
footer#globalFooter > div > div p::after {
  content: url(../grp/kuma.png);
  bottom: -5px;
  right: -130px;
  position: absolute;
  z-index: 23;
}
footer#globalFooter > div #copyright {
  font-size: 18px;
  line-height: 27px;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  background: #ff8b82;
  color: white;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  footer#globalFooter > div::before {
    content: "";
  }
  footer#globalFooter > div::after {
    content: "";
  }
  footer#globalFooter > div > div h3 {
    width: auto;
    text-align: center;
    padding: 70px 0 0 0;
  }
  footer#globalFooter > div > div h3::before {
    top: 0;
    left: 50%;
    margin-left: -30px;
  }
  footer#globalFooter > div > div p::before {
    content: "";
  }
  footer#globalFooter > div > div p::after {
    content: "";
  }
}
@media screen and (max-width: 480px) {
  footer#globalFooter > div > div h3 {
    font-size: 23px;
    line-height: 34.5px;
    font-size: 1.4375rem;
    line-height: 2.15625rem;
  }
  footer#globalFooter > div > div p span::nth-of-type(1) {
    margin-right: 0;
  }
  footer#globalFooter > div > div p br:nth-of-type(2) {
    display: block;
  }
}

.normal_box {
  margin: 30px auto 0 auto;
}

section.normal_box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid #ff8b82;
  width: 100%;
}/*# sourceMappingURL=master.css.map */