@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined in IE 8/9.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
* Correct `inline-block` display not defined in IE 8/9.
*/
audio,
canvas,
video {
  display: inline-block;
}

/**
* Prevent modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
* Address `[hidden]` styling not present in IE 8/9.
* Hide the `template` element in IE, Safari, and Firefox < 22.
*/
[hidden],
template {
  display: none;
}

/* ==========================================================================
Base
========================================================================== */
/**
* 1. Set default font family to sans-serif.
* 2. Prevent iOS text size adjust after orientation change, without disabling
*    user zoom.
*/
html {
  font-family: "游明朝", serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
* Remove default margin.
*/
body {
  margin: 0 auto !important;
}

/* ==========================================================================
Links
========================================================================== */
/**
* Remove the gray background color from active links in IE 10.
*/
a {
  background: transparent;
}

/**
* Address `outline` inconsistency between Chrome and other browsers.
*/
a:focus {
  outline: thin dotted;
}

/**
* Improve readability when focused and also mouse hovered in all browsers.
*/
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
Typography
========================================================================== */
/**
* Address variable `h1` font-size and margin within `section` and `article`
* contexts in Firefox 4+, Safari 5, and Chrome.
*/
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
* Address styling not present in IE 8/9, Safari 5, and Chrome.
*/
abbr[title] {
  border-bottom: 1px dotted;
}

/**
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
*/
b,
strong,
.strong {
  font-weight: bold;
}

/**
* Address styling not present in Safari 5 and Chrome.
*/
dfn,
em,
.em {
  font-style: italic;
}

/**
* Address differences between Firefox and other browsers.
*/
hr {
  box-sizing: content-box;
  height: 0;
}

/*
* proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  hyphens: auto;
}

/*
* Addresses margins set differently in IE6/7.
*/
pre {
  margin: 0;
}

/**
* Correct font family set oddly in Safari 5 and Chrome.
*/
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
* Improve readability of pre-formatted text in all browsers.
*/
pre {
  white-space: pre-wrap;
}

/**
* Set consistent quote types.
*/
q {
  quotes: "“" "”" "‘" "’";
}

/**
* Address inconsistent and variable font size in all browsers.
*/
q:before,
q:after {
  content: "";
  content: none;
}

small, .small {
  font-size: 75%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
Lists
========================================================================== */
/*
* Addresses margins set differently in IE6/7.
*/
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0;
}

/*
* Addresses paddings set differently in IE6/7.
*/
menu {
  padding: 0 0 0 40px;
}

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

/*
* Corrects list images handled incorrectly in IE7.
*/
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
Embedded content
========================================================================== */
/**
* Remove border when inside `a` element in IE 8/9.
*/
img {
  border: 0;
}

/**
* Correct overflow displayed oddly in IE 9.
*/
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
Figures
========================================================================== */
/**
* Address margin not present in IE 8/9 and Safari 5.
*/
figure {
  margin: 0;
}

/* ==========================================================================
Forms
========================================================================== */
/**
* Define consistent border, margin, and padding.
*/
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
* 1. Correct `color` not being inherited in IE 8/9.
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
*/
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
* 1. Correct font family not being inherited in all browsers.
* 2. Correct font size not being inherited in all browsers.
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
*/
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
* the UA stylesheet.
*/
button,
input {
  line-height: normal;
}

/**
* Address inconsistent `text-transform` inheritance for `button` and `select`.
* All other form control elements do not inherit `text-transform` values.
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
* Correct `select` style inheritance in Firefox 4+ and Opera.
*/
button,
select {
  text-transform: none;
}

/**
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
*    and `video` controls.
* 2. Correct inability to style clickable `input` types in iOS.
* 3. Improve usability and consistency of cursor style between image-type
*    `input` and others.
*/
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
* Re-set default cursor for disabled elements.
*/
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
* 1. Address box sizing set to `content-box` in IE 8/9/10.
* 2. Remove excess padding in IE 8/9/10.
*/
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
*    (include `-moz` to future-proof).
*/
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
* Remove inner padding and search cancel button in Safari 5 and Chrome
* on OS X.
*/
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* Remove inner padding and border in Firefox 4+.
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
* 1. Remove default vertical scrollbar in IE 8/9.
* 2. Improve readability and alignment in all browsers.
*/
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
Tables
========================================================================== */
/**
* Remove most spacing between table cells.
*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf {
  zoom: 1;
}

.clearfix:before, .clearfix:after, .cf:before, .cf:after {
  content: "";
  display: table;
}

.clearfix:after, .cf:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic;
}

/* !Tools ------------------------------------------------------------------- */
.clear {
  clear: both;
}

.block {
  display: block;
}

/* !Margin ------------------------------------------------------------------ */
.mt00 {
  margin-top: 0 !important;
}

.mt05 {
  margin-top: 0.5% !important;
}

.mt10 {
  margin-top: 1% !important;
}

.mt15 {
  margin-top: 1.5% !important;
}

.mt20 {
  margin-top: 2% !important;
}

.mt25 {
  margin-top: 2.5% !important;
}

.mt30 {
  margin-top: 3% !important;
}

.mt35 {
  margin-top: 3.5% !important;
}

.mt40 {
  margin-top: 4% !important;
}

.mt45 {
  margin-top: 4.5% !important;
}

.mt50 {
  margin-top: 5% !important;
}

.mt55 {
  margin-top: 5.5% !important;
}

.mt60 {
  margin-top: 6% !important;
}

.mt65 {
  margin-top: 6.5% !important;
}

.mt70 {
  margin-top: 7% !important;
}

.mt75 {
  margin-top: 7.5% !important;
}

.mt80 {
  margin-top: 8% !important;
}

.mt85 {
  margin-top: 8.5% !important;
}

.mt90 {
  margin-top: 9% !important;
}

.mt95 {
  margin-top: 9.5% !important;
}

.mt100 {
  margin-top: 10% !important;
}

.mr00 {
  margin-right: 0 !important;
}

.mr05 {
  margin-right: 0.5% !important;
}

.mr10 {
  margin-right: 1% !important;
}

.mr15 {
  margin-right: 1.5% !important;
}

.mr20 {
  margin-right: 2% !important;
}

.mr25 {
  margin-right: 2.5% !important;
}

.mr30 {
  margin-right: 3% !important;
}

.mr35 {
  margin-right: 3.5% !important;
}

.mr40 {
  margin-right: 4% !important;
}

.mr45 {
  margin-right: 4.5% !important;
}

.mr50 {
  margin-right: 5% !important;
}

.mr55 {
  margin-right: 5.5% !important;
}

.mr60 {
  margin-right: 6% !important;
}

.mr65 {
  margin-right: 6.5% !important;
}

.mr70 {
  margin-right: 7% !important;
}

.mr75 {
  margin-right: 7.5% !important;
}

.mr80 {
  margin-right: 8% !important;
}

.mr85 {
  margin-right: 8.5% !important;
}

.mr90 {
  margin-right: 9% !important;
}

.mr95 {
  margin-right: 9.5% !important;
}

.mr100 {
  margin-right: 10% !important;
}

.mb00 {
  margin-bottom: 0 !important;
}

.mb05 {
  margin-bottom: 0.5% !important;
}

.mb10 {
  margin-bottom: 1% !important;
}

.mb15 {
  margin-bottom: 1.5% !important;
}

.mb20 {
  margin-bottom: 2% !important;
}

.mb25 {
  margin-bottom: 2.5% !important;
}

.mb30 {
  margin-bottom: 3% !important;
}

.mb35 {
  margin-bottom: 3.5% !important;
}

.mb40 {
  margin-bottom: 4% !important;
}

.mb45 {
  margin-bottom: 4.5% !important;
}

.mb50 {
  margin-bottom: 5% !important;
}

.mb55 {
  margin-bottom: 5.5% !important;
}

.mb60 {
  margin-bottom: 6% !important;
}

.mb65 {
  margin-bottom: 6.5% !important;
}

.mb70 {
  margin-bottom: 7% !important;
}

.mb75 {
  margin-bottom: 7.5% !important;
}

.mb80 {
  margin-bottom: 8% !important;
}

.mb85 {
  margin-bottom: 8.5% !important;
}

.mb90 {
  margin-bottom: 9% !important;
}

.mb95 {
  margin-bottom: 9.5% !important;
}

.mb100 {
  margin-bottom: 10% !important;
}

.ml00 {
  margin-left: 0 !important;
}

.ml05 {
  margin-left: 0.5% !important;
}

.ml10 {
  margin-left: 1% !important;
}

.ml15 {
  margin-left: 1.5% !important;
}

.ml20 {
  margin-left: 2% !important;
}

.ml25 {
  margin-left: 2.5% !important;
}

.ml30 {
  margin-left: 3% !important;
}

.ml35 {
  margin-left: 3.5% !important;
}

.ml40 {
  margin-left: 4% !important;
}

.ml45 {
  margin-left: 4.5% !important;
}

.ml50 {
  margin-left: 5% !important;
}

.ml55 {
  margin-left: 5.5% !important;
}

.ml60 {
  margin-left: 6% !important;
}

.ml65 {
  margin-left: 6.5% !important;
}

.ml70 {
  margin-left: 7% !important;
}

.ml75 {
  margin-left: 7.5% !important;
}

.ml80 {
  margin-left: 8% !important;
}

.ml85 {
  margin-left: 8.5% !important;
}

.ml90 {
  margin-left: 9% !important;
}

.ml95 {
  margin-left: 9.5% !important;
}

.ml100 {
  margin-left: 10% !important;
}

/* !Padding  ---------------------------------------------------------------- */
.pt00 {
  padding-top: 0 !important;
}

.pt05 {
  padding-top: 0.5% !important;
}

.pt10 {
  padding-top: 1% !important;
}

.pt15 {
  padding-top: 1.5% !important;
}

.pt20 {
  padding-top: 2% !important;
}

.pt25 {
  padding-top: 2.5% !important;
}

.pt30 {
  padding-top: 3% !important;
}

.pt35 {
  padding-top: 3.5% !important;
}

.pt40 {
  padding-top: 4% !important;
}

.pt45 {
  padding-top: 4.5% !important;
}

.pt50 {
  padding-top: 5% !important;
}

.pt55 {
  padding-top: 5.5% !important;
}

.pt60 {
  padding-top: 6% !important;
}

.pt65 {
  padding-top: 6.5% !important;
}

.pt70 {
  padding-top: 7% !important;
}

.pt75 {
  padding-top: 7.5% !important;
}

.pt80 {
  padding-top: 8% !important;
}

.pt85 {
  padding-top: 8.5% !important;
}

.pt90 {
  padding-top: 9% !important;
}

.pt95 {
  padding-top: 9.5% !important;
}

.pt100 {
  padding-top: 10% !important;
}

.pr00 {
  padding-right: 0 !important;
}

.pr05 {
  padding-right: 0.5% !important;
}

.pr10 {
  padding-right: 1% !important;
}

.pr15 {
  padding-right: 1.5% !important;
}

.pr20 {
  padding-right: 2% !important;
}

.pr25 {
  padding-right: 2.5% !important;
}

.pr30 {
  padding-right: 3% !important;
}

.pr35 {
  padding-right: 3.5% !important;
}

.pr40 {
  padding-right: 4% !important;
}

.pr45 {
  padding-right: 4.5% !important;
}

.pr50 {
  padding-right: 5% !important;
}

.pr55 {
  padding-right: 5.5% !important;
}

.pr60 {
  padding-right: 6% !important;
}

.pr65 {
  padding-right: 6.5% !important;
}

.pr70 {
  padding-right: 7% !important;
}

.pr75 {
  padding-right: 7.5% !important;
}

.pr80 {
  padding-right: 8% !important;
}

.pr85 {
  padding-right: 8.5% !important;
}

.pr90 {
  padding-right: 9% !important;
}

.pr95 {
  padding-right: 9.5% !important;
}

.pr100 {
  padding-right: 10% !important;
}

.pb00 {
  padding-bottom: 0 !important;
}

.pb05 {
  padding-bottom: 0.5% !important;
}

.pb10 {
  padding-bottom: 1% !important;
}

.pb15 {
  padding-bottom: 1.5% !important;
}

.pb20 {
  padding-bottom: 2% !important;
}

.pb25 {
  padding-bottom: 2.5% !important;
}

.pb30 {
  padding-bottom: 3% !important;
}

.pb35 {
  padding-bottom: 3.5% !important;
}

.pb40 {
  padding-bottom: 4% !important;
}

.pb45 {
  padding-bottom: 4.5% !important;
}

.pb50 {
  padding-bottom: 5% !important;
}

.pb55 {
  padding-bottom: 5.5% !important;
}

.pb60 {
  padding-bottom: 6% !important;
}

.pb65 {
  padding-bottom: 6.5% !important;
}

.pb70 {
  padding-bottom: 7% !important;
}

.pb75 {
  padding-bottom: 7.5% !important;
}

.pb80 {
  padding-bottom: 8% !important;
}

.pb85 {
  padding-bottom: 8.5% !important;
}

.pb90 {
  padding-bottom: 9% !important;
}

.pb95 {
  padding-bottom: 9.5% !important;
}

.pb100 {
  padding-bottom: 10% !important;
}

.pl00 {
  padding-left: 0 !important;
}

.pl05 {
  padding-left: 0.5% !important;
}

.pl10 {
  padding-left: 1% !important;
}

.pl15 {
  padding-left: 1.5% !important;
}

.pl20 {
  padding-left: 2% !important;
}

.pl25 {
  padding-left: 2.5% !important;
}

.pl30 {
  padding-left: 3% !important;
}

.pl35 {
  padding-left: 3.5% !important;
}

.pl40 {
  padding-left: 4% !important;
}

.pl45 {
  padding-left: 4.5% !important;
}

.pl50 {
  padding-left: 5% !important;
}

.pl55 {
  padding-left: 5.5% !important;
}

.pl60 {
  padding-left: 6% !important;
}

.pl65 {
  padding-left: 6.5% !important;
}

.pl70 {
  padding-left: 7% !important;
}

.pl75 {
  padding-left: 7.5% !important;
}

.pl80 {
  padding-left: 8% !important;
}

.pl85 {
  padding-left: 8.5% !important;
}

.pl90 {
  padding-left: 9% !important;
}

.pl95 {
  padding-left: 9.5% !important;
}

.pl100 {
  padding-left: 10% !important;
}

/*********************
GENERAL STYLES
*********************/
body {
  font-size: clamp(0.2rem, 0.5vw + 0.7rem, 1.4rem);
  line-height: 210%;
  background-color: #fff;
  font-family: "游明朝", serif;
  color: #000;
  overflow: auto;
  letter-spacing: 0.15em;
}
body.checked {
  overflow: hidden;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #fff;
  /* on hover */
  /* on click */
  /* mobile tap color */
}

a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #fff;
}

a:link, a:visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.7);
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */
}

h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em;
}

h2, .h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em;
}

h3, .h3 {
  font-size: 1.125em;
}

h4, .h4 {
  font-size: 1.1em;
  font-weight: 700;
}

h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* メニュー */
header #navArea .logo {
  width: 68.7%;
}

/*============
nav
=============*/
#navArea {
  padding: 10px;
  position: fixed;
  width: 78px;
  background: #938355;
  z-index: 99;
  transition: background-color 0.6s;
  right: 0;
  height: 100vh;
}
@media only screen and (max-width: 900px) {
  #navArea {
    width: 8%;
  }
}

#navArea.open {
  background: #fff;
}
@media only screen and (max-width: 900px) {
  #navArea.open {
    background: #000;
  }
}

nav {
  width: calc(100% - 78px);
  display: block;
  position: fixed;
  top: 0;
  transform: translateX(100%);
  transition: all 0.6s;
  bottom: 0;
  background: #938355;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  height: 100%;
}
@media only screen and (max-width: 900px) {
  nav {
    width: 92%;
  }
}
nav .mn_bk {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .mn_bk .flex_wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (max-width: 900px) {
  nav .mn_bk .flex_wrap {
    flex-direction: column;
  }
}

nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}

nav .inner {
  padding: 50px 14%;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 33.3333333333%;
}
@media only screen and (max-width: 900px) {
  nav .inner ul {
    width: 100%;
  }
}
nav .inner ul li {
  position: relative;
  margin: 0 0 50px;
}
@media only screen and (max-width: 900px) {
  nav .inner ul li {
    margin: 0 0 20px;
  }
}
nav .inner ul li.two_line {
  margin-bottom: 20px;
}
nav .inner ul li a {
  display: block;
  color: #363434;
  font-size: clamp(0.3rem, 0.4vw + 0.8rem, 1.4rem);
  font-weight: 700;
  text-decoration: none;
  transition-duration: 0.2s;
  position: relative;
}
nav .inner ul li a::after {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 20px);
  right: 0;
}
nav .inner ul li a:hover, nav .inner ul li a:visited {
  color: #000;
}
nav .inner ul li a img {
  height: 9.5px;
  width: auto;
  margin-top: 5px;
}
nav .inner ul li ul.s_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .inner ul li ul.s_menu li {
  margin: 10px 0 0 0;
}
nav .inner ul li ul.s_menu li a {
  font-size: 14px;
  font-weight: 400;
  display: inline;
}
nav .inner ul li ul.s_menu li a::after {
  content: none;
}

/*=============================
.toggle_btn
=============================*/
.toggle_btn {
  position: absolute;
  width: 9px;
  height: 57px;
  cursor: pointer;
  z-index: 10;
  top: 40px;
  right: calc(50% - 4px);
}
@media only screen and (max-width: 900px) {
  .toggle_btn {
    top: 40px;
  }
}

.toggle_btn span {
  position: absolute;
  left: 0;
  width: 1px;
  height: 57px;
  background-color: #000;
}
@media only screen and (max-width: 900px) {
  .toggle_btn span {
    background-color: #fff;
  }
}

.toggle_btn, .toggle_btn span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.toggle_btn span:nth-of-type(1) {
  top: 0;
  left: 0;
}

.toggle_btn span:nth-of-type(2) {
  top: 0;
  left: 4px;
}

.toggle_btn span:nth-of-type(3) {
  top: 0;
  left: 8px;
}

/*=============================
#btn01
=============================*/
#navArea.open span:nth-of-type(1) {
  transform: rotate(10deg) translateX(4px);
}

#navArea.open span:nth-of-type(2) {
  transform: rotate(10deg);
  opacity: 0;
}

#navArea.open span:nth-of-type(3) {
  transform: rotate(-10deg) translateX(-4px);
}

/*=============================
スマホサイズ
=============================*/
#sp_wrapper {
  overflow: hidden;
  position: relative;
}

.first {
  margin-top: 0;
}

.last {
  margin-bottom: 0;
}

/*=============================
footer
=============================*/
footer {
  width: calc(100% - 78px);
}
@media only screen and (max-width: 900px) {
  footer {
    width: 92%;
  }
}
footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
@media only screen and (max-width: 900px) {
  footer ul {
    flex-direction: column;
  }
}
footer ul li {
  width: 33.3333333333%;
  height: 170px;
}
@media only screen and (max-width: 900px) {
  footer ul li {
    width: 100%;
    height: 150px;
  }
}
footer ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 180%;
}
@media only screen and (max-width: 900px) {
  footer ul li a {
    font-size: clamp(0.2rem, 1.5vw + 0.7rem, 1.4rem);
  }
}
footer ul li a:visited {
  color: #fff;
}
footer ul li a:hover {
  opacity: 0.8;
  color: #fff;
}
footer ul li a span {
  font-size: 0.7rem;
  padding-right: 60px;
  position: relative;
}
footer ul li a span::after {
  content: "";
  background: url(../images/to_site_arrow_l.svg);
  width: 49px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 7px);
  right: 0;
  background-position-x: right;
}
footer ul li:first-child {
  background: #231842;
}
footer ul li:nth-child(2) {
  background: #574d2f;
}
footer ul li:last-child {
  background: #591722;
}
footer div {
  padding: 30px 46px;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 900px) {
  footer div {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 30px;
  }
}
footer div a {
  color: #fff;
  text-decoration: none;
}
footer div a:visited {
  color: #fff;
}
footer div span {
  font-size: clamp(0.18rem, 0.25vw + 0.5rem, 1.2rem);
  color: #fff;
}
@media only screen and (max-width: 900px) {
  footer div span {
    letter-spacing: 0.05em;
  }
}

@media only screen and (min-width: 900px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Tablet & Small Desktop Stylesheet

  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!

  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}/*# sourceMappingURL=common.css.map */