@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700&display=swap");
/*------------------------------------------------------------
共通タグ
------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック", Yu Gothic Medium, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, system-ui, sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #4d4d4d;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 834px) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 834px) {
  body {
    line-height: 1.5;
  }
}
body.on {
  overflow: hidden;
}

img {
  vertical-align: bottom;
  border: none;
}

a {
  color: inherit;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
a img {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

h1 a, h1 a img {
  -webkit-transition: none;
  transition: none;
}

li {
  list-style: none;
}

input, textarea, select {
  font-family: "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック", Yu Gothic Medium, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, system-ui, sans-serif;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type=checkbox] {
  width: 17px;
  height: 17px;
  margin: 0 3px 0 0;
}
input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  background: #fff;
  width: 17px;
  height: 17px;
  margin: 0 3px 0 0;
  border: 1px solid #ccc;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
}
input[type=radio]:checked:after {
  display: block;
  content: "";
  background: #4d4d4d;
  width: 50%;
  height: 50%;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
input[type=text], input[type=email], input[type=url], input[type=tel], input[type=number], input[type=password], input[type=search], input[type=date], input[type=month], input[type=week], input[type=time], input[type=color] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  line-height: 38px;
  height: 40px;
  padding: 0 5px;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #fff;
}
input[type=file] {
  width: 100%;
  height: 40px;
}
input[type=submit], input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: inline-block;
  line-height: 40px;
  color: #fff;
  background: #f29c97;
  border: none;
  border-radius: 0;
  text-align: center;
  padding: 0 20px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  cursor: pointer;
}
input[type=submit]:hover, input[type=button]:hover {
  opacity: 0.75;
}
input[type=submit][disabled], input[type=button][disabled] {
  opacity: 0.75;
  cursor: not-allowed;
}
input:-webkit-autofill {
  -webkit-transition: background-color 9999s;
  transition: background-color 9999s;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  line-height: 1.4;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 0;
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

select {
  line-height: 1;
  height: 40px;
  border-radius: 0;
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*------------------------------------------------------------
共通クラス
------------------------------------------------------------*/
.inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.sp, .sp_inline {
  display: none;
}

.bt_black, .bt_black_back {
  text-align: center;
  width: 40%;
  margin: 40px auto 0;
}
.bt_black a, .bt_black_back a {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  line-height: 40px;
  text-decoration: none;
  background: #4d4d4d url("../images/common/arrow_white.png") no-repeat right 10px center;
  border-radius: 20px;
}
@media screen and (max-width: 834px) {
  .bt_black a, .bt_black_back a {
    font-size: 1.4rem;
  }
}
.bt_black a:hover, .bt_black_back a:hover {
  opacity: 0.65;
}

.bt_black_back a {
  background: #4d4d4d url("../images/common/arrow_white_back.png") no-repeat left 10px center;
}

.bt_pink {
  text-align: center;
  width: 40%;
  margin: 40px auto 0;
}
.bt_pink a {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  line-height: 40px;
  text-decoration: none;
  background: #f29c97 url("../images/common/arrow_white.png") no-repeat right 10px center;
  border-radius: 20px;
}
@media screen and (max-width: 834px) {
  .bt_pink a {
    font-size: 1.4rem;
  }
}
.bt_pink a:hover {
  opacity: 0.65;
}

@media screen and (max-width: 834px) {
  .inner {
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .sp_inline {
    display: inline;
  }
  .bt_black, .bt_black_back {
    width: 80%;
    margin: 20px auto 0;
  }
  .bt_black a:hover, .bt_black_back a:hover {
    opacity: 1;
  }
  .bt_pink {
    width: 80%;
    margin: 20px auto 0;
  }
  .bt_pink a:hover {
    opacity: 1;
  }
}
/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
@media screen and (max-width: 834px) {
  #wrapper {
    overflow: hidden;
  }
}
/*------------------------------------------------------------
ヘッダー
------------------------------------------------------------*/
#header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  padding: 0 20px;
  font-size: 1.6rem;
}
@media screen and (max-width: 834px) {
  #header {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 834px) {
  #header {
    height: 50px;
    padding: 0 10px;
  }
  #header h1 img {
    width: 240px;
    height: auto;
  }
}
/*------------------------------------------------------------
フッター
------------------------------------------------------------*/
#footer {
  margin-top: 180px;
  background: #eee;
}
#footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
}
#footer .inner .footer_left {
  width: 340px;
  border-right: 1px solid #aaa;
  font-size: 1.4rem;
}
@media screen and (max-width: 834px) {
  #footer .inner .footer_left {
    font-size: 1.2rem;
  }
}
#footer .inner .footer_left dl dt img {
  max-width: 85%;
  height: auto;
}
#footer .inner .footer_left dl dd {
  margin-top: 10px;
}
#footer .inner .footer_left dl dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .inner .footer_left dl dd ul li a {
  display: inline-block;
  width: 130px;
  margin-right: 10px;
  text-decoration: none;
  line-height: 24px;
  text-align: center;
  background: #fff url("../images/common/arrow_black_s.png") no-repeat right 10px center;
  border: 1px solid #888;
  border-radius: 13px;
}
#footer .inner .footer_left dl dd ul li a:hover {
  color: #fff;
  background: #4d4d4d url("../images/common/arrow_white_s.png") no-repeat right 10px center;
}
#footer .inner .footer_right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#footer .inner .footer_right ul li {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  #footer .inner .footer_right ul li {
    font-size: 1.4rem;
  }
}
#footer .inner .footer_right ul li a {
  text-decoration: none;
}
#footer .inner .footer_right ul li a:hover {
  text-decoration: underline;
}
#footer .inner .footer_right ul li > ul {
  padding-left: 1em;
}
#footer .inner .footer_right ul li > ul li {
  font-size: 1.4rem;
  font-weight: normal;
}
@media screen and (max-width: 834px) {
  #footer .inner .footer_right ul li > ul li {
    font-size: 1.2rem;
  }
}
#footer .inner .footer_right ul div {
  margin-top: 15px;
}
#footer p {
  color: #fff;
  background: #666;
  line-height: 60px;
  text-align: center;
}
#footer p small {
  font-size: 1.2rem;
}
@media screen and (max-width: 834px) {
  #footer p small {
    font-size: 1rem;
  }
}

@media screen and (max-width: 834px) {
  #footer {
    margin-top: 60px;
  }
  #footer .inner {
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .inner .footer_left {
    width: auto;
    border-right: none;
  }
  #footer .inner .footer_left dl {
    text-align: center;
  }
  #footer .inner .footer_left dl dd ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #footer .inner .footer_left dl dd ul li {
    width: 48%;
  }
  #footer .inner .footer_left dl dd ul li a {
    display: block;
    width: auto;
    margin-right: 0;
    line-height: 40px;
    border-radius: 20px;
  }
  #footer .inner .footer_right {
    padding-left: 0;
  }
  #footer .inner .footer_right ul li {
    font-size: 1.2rem;
    margin: 10px 0;
  }
  #footer p {
    line-height: 30px;
  }
}
/*------------------------------------------------------------
パンくず
------------------------------------------------------------*/
#pan ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
}
#pan ul li {
  font-size: 1.2rem;
  line-height: 40px;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  #pan ul li {
    font-size: 1rem;
  }
}
#pan ul li:not(:first-child) {
  position: relative;
}
#pan ul li:not(:first-child):before {
  display: inline-block;
  content: ">";
  margin: 0 6px;
}
#pan ul li img {
  vertical-align: middle;
  margin-bottom: 4px;
}
#pan ul li a {
  text-decoration: underline;
}
#pan ul li a:hover {
  text-decoration: none;
}

@media screen and (max-width: 834px) {
  #pan {
    border-top: 1px solid #f29c97;
  }
  #pan ul {
    padding: 0 15px;
  }
  #pan ul li {
    line-height: 20px;
  }
}
/*------------------------------------------------------------
ページヘッダー
------------------------------------------------------------*/
#page_header {
  background: #fef7f3;
  text-align: center;
  padding: 40px 0;
}
#page_header.category_top {
  padding-bottom: 140px;
}
#page_header h1 {
  font-size: 3.6rem;
}
#page_header p {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #f29c97;
}
@media screen and (max-width: 834px) {
  #page_header p {
    font-size: 2rem;
  }
}

@media screen and (max-width: 834px) {
  #page_header {
    padding: 20px 0;
  }
  #page_header.category_top {
    padding-bottom: 70px;
  }
  #page_header h1 {
    font-size: 2.8rem;
  }
}
/*------------------------------------------------------------
ナビ
------------------------------------------------------------*/
#nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
#nav.fixed nav {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  height: 60px;
  padding-top: 8px;
  padding-bottom: -22px;
}
#nav nav {
  height: 80px;
  min-width: 960px;
  padding-top: 18px;
  padding-bottom: 18px;
  background: #f29c97;
}
#nav nav ul {
  display: table;
  width: 100%;
}
#nav nav ul li {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
#nav nav ul li a {
  display: inline-block;
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  line-height: 44px;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  #nav nav ul li a {
    font-size: 1.5rem;
  }
}
#nav nav ul li a:hover {
  opacity: 0.65;
}
#nav nav ul li a img {
  margin: 0 5px 8px 0;
}
#nav nav ul li:not(:first-child, :last-child) {
  border-left: 1px solid #fff;
}
#nav nav ul li.staff_only a {
  width: 90%;
  background-color: #fff;
  color: #f29c97;
  border-radius: 22px;
}

@media screen and (max-width: 834px) {
  #nav.fixed {
    position: static;
  }
  #nav.fixed nav {
    height: auto;
    padding-top: 8px;
    padding-bottom: auto;
  }
  #nav nav {
    height: auto;
    min-width: 0;
    padding-top: 8px;
    padding-bottom: auto;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    overflow-y: scroll;
  }
  #nav nav ul {
    display: block;
  }
  #nav nav ul li {
    display: block;
    padding: 0 15px;
  }
  #nav nav ul li a {
    display: block;
  }
  #nav nav ul li a:hover {
    opacity: 1;
  }
  #nav nav ul li:not(:first-child, :last-child) {
    border-left: none;
  }
  #nav nav ul li.staff_only a {
    width: auto;
  }
  #nav p.sp {
    position: fixed;
    top: 5px;
    right: 5px;
    z-index: 100;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.75) -webkit-gradient(linear, left top, left bottom, from(#f29c97), to(#f29c97)) no-repeat center center;
    background: rgba(255, 255, 255, 0.75) linear-gradient(to bottom, #f29c97, #f29c97) no-repeat center center;
    background-size: 22px 2px;
    -webkit-transition: background-size 0.2s;
    transition: background-size 0.2s;
    color: rgba(77, 77, 77, 0);
    overflow: hidden;
  }
  #nav p.sp:before, #nav p.sp:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 22px;
    height: 2px;
    background: #f29c97;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #nav p.sp:before {
    -webkit-transform: translate(0, -8px);
            transform: translate(0, -8px);
  }
  #nav p.sp:after {
    -webkit-transform: translate(0, 8px);
            transform: translate(0, 8px);
  }
  #nav p.sp.on {
    background-size: 0 2px;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  #nav p.sp.on:before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  #nav p.sp.on:after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}/*# sourceMappingURL=common.css.map */