@charset "UTF-8";
/* -----------------------------------
リセットCSS
基本的には触らないでください
----------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;800&family=Ranga:wght@700&display=swap");
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
img,
p {
  margin: 0;
  padding: 0;
}

hr {
  border: none;
  height: 1px;
  background: #f1eded;
  margin: 2em auto;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
p {
  line-height: 1.6em;
}

/* -----------------------------------
ベース設定
----------------------------------- */
* {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #0f0f0f;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
}
body.home {
  background: #fffdeb;
}

img {
  vertical-align: middle;
}

section .section_inner {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 0;
}
section .white_bg {
  padding: 1px 0;
  width: 100%;
  background: #ffffff;
}
/* つけるとスマホでしか表示されなくなるクラス */
.only-phone {
  display: inline-block;
}
@media (min-width: 481px) {
  .only-phone {
    display: none;
  }
}

/* つけるとタブレットでしか表示されなくなるクラス */
.only-pad {
  display: none;
}
@media (min-width: 481px) {
  .only-pad {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .only-pad {
    display: none;
  }
}

/* つけるとPCでしか表示されなくなるクラス */
.only-pc {
  display: none;
}
@media (min-width: 768px) {
  .only-pc {
    display: inline-block;
  }
}

/* つけるとPCで見たときだけ表示されなくなるクラス */
.except-pc {
  display: inline-block;
}
@media (min-width: 768px) {
  .except-pc {
    display: none;
  }
}

.max900 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------------
Flexbox設定
----------------------------------- */
.container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.flex-center {
  justify-content: center;
}

.flex-around {
  justify-content: space-around;
}

.flex-between {
  justify-content: space-between;
}

.center {
  text-align: center;
}

@media (min-width: 768px) {
  .left_center {
    text-align: center;
  }
}

.right {
  text-align: right;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.mt150 {
  margin-top: 150px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.mt0 {
  margin-top: 0 !important;
}

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

.max-100 {
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-200 {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-300 {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-400 {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-500 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-700 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-900 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.col-1 {
  width: calc((100% * 1) / 12);
  padding: 0 15px;
}

.col-lg1,
.col-md1,
.col-sm1,
.col-xl1 {
  width: 100%;
  margin-bottom: 40px;
}

.col-2 {
  width: calc((100% * 2) / 12);
  padding: 0 15px;
}

.col-lg2,
.col-md2,
.col-sm2,
.col-xl2 {
  width: 100%;
  margin-bottom: 40px;
}

.col-3 {
  width: calc((100% * 3) / 12);
  padding: 0 15px;
}

.col-lg3,
.col-md3,
.col-sm3,
.col-xl3 {
  width: 100%;
  margin-bottom: 40px;
}

.col-4 {
  width: calc((100% * 4) / 12);
  padding: 0 15px;
}

.col-lg4,
.col-md4,
.col-sm4,
.col-xl4 {
  width: 100%;
  margin-bottom: 40px;
}

.col-5 {
  width: calc((100% * 5) / 12);
  padding: 0 15px;
}

.col-lg5,
.col-md5,
.col-sm5,
.col-xl5 {
  width: 100%;
  margin-bottom: 40px;
}

.col-6 {
  width: calc((100% * 6) / 12);
  padding: 0 15px;
}

.col-lg6,
.col-md6,
.col-sm6,
.col-xl6 {
  width: 100%;
  margin-bottom: 40px;
}

.col-7 {
  width: calc((100% * 7) / 12);
  padding: 0 15px;
}

.col-lg7,
.col-md7,
.col-sm7,
.col-xl7 {
  width: 100%;
  margin-bottom: 40px;
}

.col-8 {
  width: calc((100% * 8) / 12);
  padding: 0 15px;
}

.col-lg8,
.col-md8,
.col-sm8,
.col-xl8 {
  width: 100%;
  margin-bottom: 40px;
}

.col-9 {
  width: calc((100% * 9) / 12);
  padding: 0 15px;
}

.col-lg9,
.col-md9,
.col-sm9,
.col-xl9 {
  width: 100%;
  margin-bottom: 40px;
}

.col-10 {
  width: calc((100% * 10) / 12);
  padding: 0 15px;
}

.col-lg10,
.col-md10,
.col-sm10,
.col-xl10 {
  width: 100%;
  margin-bottom: 40px;
}

.col-11 {
  width: calc((100% * 11) / 12);
  padding: 0 15px;
}

.col-lg11,
.col-md11,
.col-sm11,
.col-xl11 {
  width: 100%;
  margin-bottom: 40px;
}

.col-12 {
  width: calc((100% * 12) / 12);
  padding: 0 15px;
}

.col-lg12,
.col-md12,
.col-sm12,
.col-xl12 {
  width: 100%;
  margin-bottom: 40px;
}

@media (min-width: 481px) {
  .sm {
    flex-direction: row;
  }

  .col-sm1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }

  .col-sm2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }

  .col-sm3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }

  .col-sm4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }

  .col-sm5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }

  .col-sm6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }

  .col-sm7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }

  .col-sm8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }

  .col-sm9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }

  .col-sm10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }

  .col-sm11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }

  .col-sm12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  .md {
    flex-direction: row;
  }

  .col-md1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }

  .col-md2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }

  .col-md3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }

  .col-md4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }

  .col-md5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }

  .col-md6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }

  .col-md7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }

  .col-md8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }

  .col-md9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }

  .col-md10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }

  .col-md11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }

  .col-md12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }

  .col-5-md {
    width: 20%;
    padding: 0;
  }

  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 1030px) {
  .container {
    width: 960px;
  }

  .col-lg1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }

  .col-lg2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }

  .col-lg3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }

  .col-lg4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }

  .col-lg5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }

  .col-lg6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }

  .col-lg7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }

  .col-lg8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }

  .col-lg9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }

  .col-lg10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }

  .col-lg11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }

  .col-lg12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }

  .col-5-lg {
    width: 20%;
    padding: 0;
    margin-bottom: 15px;
  }
}
@media (min-width: 1240px) {
  .container {
    width: 1100px;
  }

  .col-xl1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }

  .col-xl2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }

  .col-xl3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }

  .col-xl4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }

  .col-xl5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }

  .col-xl6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }

  .col-xl7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }

  .col-xl8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }

  .col-xl9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }

  .col-xl10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }

  .col-xl11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }

  .col-xl12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }
}
/* -----------------------------------
見出し、テキストなど
----------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  line-height: 1.8em;
}

p {
  margin: 0 auto 1em;
  line-height: 2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.6em auto 1em;
}

h2 {
  font-size: 22px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 600;
  text-align: center;
}
h2.page_title {
  margin: 40px auto;
}
h2.page_title img {
  height: 70px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 28px;
    margin: 40px auto 20px;
  }
  h2.page_title img {
    height: 90px;
  }
}
h2 span.orange {
  color: #ff8158;
}
h2.left {
  text-align: left;
  margin-bottom: 0;
  font-size: 20px;
}
@media (min-width: 768px) {
  h2.left {
    font-size: 25px;
  }
}
h2.h2-b {
  background: #fffdeb;
  text-align: left;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 20px;
  margin-top: 60px;
  position: relative;
}
h2.h2-b .img {
  position: absolute;
}
h2.h2-b .img.img-01 {
  width: 80px;
  right: 0;
  top: 0;
}
h2.h2-b .img.img-08 {
  width: 70px;
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  h2.h2-b .img.img-08 {
    width: 80px;
    bottom: -18px;
  }
}

h3 {
  font-size: 21px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 24px;
  }
}
h3.left {
  margin-bottom: 0;
  font-size: 17px;
}
@media (min-width: 768px) {
  h3.left {
    font-size: 18px;
  }
}
h3.h3_s {
  font-size: 17px;
}
@media (min-width: 768px) {
  h3.h3_s {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  p.left-center {
    text-align: center;
  }
}

p.s {
  font-size: 14px;
  line-height: 1.8em;
}

p.big {
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

.text-blue {
  color: #0aa68c;
}

.max700 {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

span.marker {
  background: linear-gradient(transparent 50%, #ffdea9 50%);
}

/* -----------------------------------
リンク関係
----------------------------------- */
a {
  color: #ff8158;
  transition: 0.3s;
}
a:hover {
  color: #fdab90;
}

a.btn {
  display: block;
  font-family: "M PLUS Rounded 1c", sans-serif;
  background: url("img/btn_bg.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  color: #ffffff;
  font-weight: bold;
  height: 50px;
  line-height: 50px;
  min-width: 200px;
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
}
a.btn2 {
  background: url("img/btn_bg2.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  a.btn {
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    min-width: 300px;
    margin: 40px auto;
  }
}
a.btn:hover {
  color: #ffffffa6;
}
a.btn.btn_large {
  background-size: cover;
  margin-top: 20px;
}

a.btn_orange {
  display: block;
  background: #ff8158;
  color: #ffffff;
  font-weight: bold;
  height: 45px;
  line-height: 45px;
  border-radius: 30px;
  width: 100%;
  max-width: 700px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 15px;
  text-align: center;
  position: relative;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media (min-width: 768px) {
  a.btn_orange {
    height: 55px;
    line-height: 55px;
    font-weight: bold;
    font-size: 16px;
    margin: 40px auto;
  }
}
a.btn_orange:hover {
  background: #fdab90;
}

a.btn_w {
  display: block;
  background: white;
  color: #ff8158;
  font-weight: bold;
  height: 35px;
  line-height: 35px;
  min-width: 250px;
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 15px;
  text-align: center;
  position: relative;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
a.btn_w:after {
  content: "";
  background: url("img/icon/arrow.svg");
  display: block;
  position: absolute;
  width: 12px;
  height: 25px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  z-index: 10;
  right: 4%;
  margin: auto;
}
@media (min-width: 768px) {
  a.btn_w {
    height: 40px;
    line-height: 40px;
    font-weight: bold;
    font-size: 16px;
    min-width: 300px;
    margin: 40px auto;
  }
}
a.btn_w:hover {
  color: #fdab90;
}

a.table_btn {
  display: block;
  color: #fff;
  background: #0aa68c;
  font-weight: bold;
  border-radius: 30px;
  width: 200px;
  text-align: center;
  height: 50px;
  line-height: 50px;
  margin: 10px 0;
}
a.table_btn:hover {
  opacity: 0.6;
}
a.table_btn.nonactive {
  background: #ccc;
}
a.table_btn.nonactive:hover {
  opacity: 1;
  cursor: default;
}

dl {
  display: flex;
  flex-wrap: wrap;
}
dl dt {
  font-weight: bold;
  margin: 0 0 5px;
  width: 100%;
}
dl dd {
  margin: 0 0 20px;
  width: 100%;
  padding-left: 20px;
}
@media (min-width: 768px) {
  dl dt {
    width: 80px;
    margin: 0 0 20px;
  }
  dl dd {
    width: calc(100% - 80px);
    margin: 0 0 20px;
  }
}

/* -----------------------------------
ヘッダー
----------------------------------- */
@media (min-width: 768px) {
  .site-branding {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}

a#caution {
  padding: 10px 0;
  background: #e70000;
  display: block;
  color: white;
  text-align: center;
  position: relative;
  padding-top: 67px;
  z-index: 10;
}
a#caution.login {
  padding-top: 20px;
}
@media (min-width: 768px) {
  a#caution {
    padding-top: 10px;
    z-index: 21;
  }
  a#caution.login {
    padding-top: 10px;
  }
}
a#caution:hover {
  background: #ff3737;
}
a#caution p {
  line-height: 1.6em;
  margin: 0;
  font-weight: bold;
}

header.site-header {
  background: #fffdeb;
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 20;
}
header.site-header .header_bg {
  display: none;
}
header.site-header ul#header_sns {
  display: none;
  width: 100%;
  max-width: 1050px;
  top: 0;
  right: 0;
  left: 0;
  margin: 5px auto;
  justify-content: flex-end;
  z-index: -1;
}
@media (min-width: 768px) {
  header.site-header ul#header_sns {
    position: absolute;
    display: flex;
  }
}
header.site-header ul#header_sns li a {
  display: block;
  border-radius: 50px;
  margin: 0;
  padding: 5px;
}
header.site-header ul#header_sns li a img {
  width: 30px;
}
header.site-header ul#header_sns li a:hover {
  opacity: 0.6;
}
@media (min-width: 768px) {
  header.site-header {
    position: sticky;
    top: -75px;
    background: transparent;
    height: 150px;
    padding: 10px 0;
  }
  header.site-header .header_bg {
    display: block;
    background: #fffdeb;
    border-bottom-left-radius: 1100px 300px;
    border-bottom-right-radius: 1100px 300px;
    height: 267px;
    margin-left: -200px;
    margin-right: -200px;
    padding-left: 200px;
    padding-right: 200px;
    position: absolute;
    top: -107px;
    right: 0;
    left: 0;
    z-index: -1;
  }
}
@media (min-width: 768px) and (min-width: 1030px) {
  header.site-header .header_bg {
    border-bottom-left-radius: 1200px 500px;
    border-bottom-right-radius: 1200px 500px;
    height: 382px;
    top: -229px;
  }
}
header.site-header .container {
  position: relative;
}
@media (min-width: 1030px) {
  header.site-header .container {
    min-width: 0;
    width: 100%;
    max-width: 1260px;
  }
}
header.site-header .site-title {
  margin: 0 auto;
}
header.site-header .site-title a {
  padding: 5px 10px;
  display: block;
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
}
header.site-header .site-title a img {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  height: 45px;
}
@media (min-width: 768px) {
  header.site-header .site-title a {
    margin: 0 auto;
  }
  header.site-header .site-title a img {
    height: 60px;
  }
}

button#close_mobile_menu {
  display: block;
  width: 100vw;
  height: 50px;
  cursor: pointer;
  text-align: right;
  font-size: 50px;
  background: transparent;
  border: none;
  color: #0f0f0f;
  padding: 0 20px 0 0;
}
@media (min-width: 768px) {
  button#close_mobile_menu {
    display: none;
  }
}

button#open_mobile_menu {
  background: transparent;
  margin: 0;
  cursor: pointer;
  border: 0;
  display: block;
  width: 53px;
  height: 53px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
}
@media (min-width: 768px) {
  button#open_mobile_menu {
    display: none;
  }
}
button#open_mobile_menu img {
  pointer-events: none;
  width: 20px;
}
button#open_mobile_menu:hover {
  cursor: pointer;
}
button#open_mobile_menu#inmenu {
  color: #ffffff;
}
button#open_mobile_menu#inmenu-back {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: -1;
}

/* -----------------------------------
グローバルナビゲーション
----------------------------------- */
nav {
  color: #0f0f0f;
  text-align: left;
}
nav > ul > li > a {
  font-weight: 600;
  cursor: pointer;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 5px auto;
  /*2階層目以降は横並びにしない*/
}
nav ul li {
  position: relative;
}
nav ul li a {
  display: block;
  text-decoration: none;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #0f0f0f;
  padding: 5px 6px;
  margin: 10px 5px;
  transition: all 0.3s;
  font-size: 15px;
  line-height: 1;
}
@media (min-width: 768px) {
  nav ul li a {
    margin: 0px 5px;
  }
}
nav ul li a.current {
  border-bottom: 1px solid;
}
nav ul li a:hover {
  color: #ff8158;
}
@media (min-width: 1030px) {
  nav ul li a {
    font-size: 16px;
  }
}
nav ul li li a {
  padding: 8px 10px 8px 45px;
  position: relative;
}
nav ul li li a:before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  border-right: 2.5px solid #ff8158;
  border-top: 2.5px solid #ff8158;
  transform: rotate(45deg);
  margin: auto;
  top: 0;
  bottom: 0;
  left: 20px;
}
nav ul ul {
  display: block;
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: -50px;
  padding: 10px 0;
  margin: 0;
  top: 54px;
  z-index: 4;
  width: 200px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  background: white;
  border: 3px solid #C3E7E3;
}
nav li.has-child ul:after, nav li.has-child ul:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
nav li.has-child ul:after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #ffffff;
  border-width: 10px;
  margin-left: -10px;
}
nav li.has-child ul:before {
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color: #C3E7E3;
  border-width: 14px;
  margin-left: -14px;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*==768px以下の形状*/
@media screen and (max-width: 759px) {
  nav {
    padding: 0;
  }
  nav ul {
    display: block;
    margin: 0;
  }
  nav ul li.has-child a {
    padding-bottom: 4px;
  }
  nav ul li.has-child > a {
    font-size: 18px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: bold;
    position: relative;
  }
  nav ul li.has-child > a:after {
    content: "＋";
    display: block;
    position: absolute;
    right: 50px;
    top: 11px;
    font-size: 24px;
    color: #0f0f0f;
  }
  nav ul li.has-child.active > a:after {
    content: "－";
  }
  nav li.has-child ul {
    position: relative;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    /*JSで制御するため一旦表示*/
    opacity: 1;
    /*JSで制御するため一旦表示*/
    display: none;
    /*JSのslidetoggleで表示させるため非表示に*/
    transition: none;
    /*JSで制御するためCSSのアニメーションを切る*/
    border: none;
    background: transparent;
  }
  nav li.has-child ul:before, nav li.has-child ul:after {
    display: none;
  }
  nav li.has-child ul li {
    padding-top: 0;
  }
  nav li.has-child ul li a:before, nav li.has-child ul li a:after {
    display: none;
  }
}
/* -----------------------------------
メイン
----------------------------------- */
main {
  overflow: hidden;
}
@media (min-width: 768px) {
  main {
    margin-top: -150px;
  }
}

/* -----------------------------------
フッター
----------------------------------- */
footer.site-footer {
  position: relative;
  background: #fffdeb;
  text-align: center;
  padding: 20px 0 0;
}
footer.site-footer a#totop {
  position: absolute;
  top: -41px;
  right: 0;
  z-index: 10;
}
footer.site-footer a#totop:hover {
  opacity: 0.6;
}
footer.site-footer a#totop img {
  width: 80px;
}
@media (min-width: 768px) {
  footer.site-footer a#totop {
    right: 5%;
  }
}
footer.site-footer .container {
  position: relative;
}
footer.site-footer .container img.site_logo {
  position: relative;
  z-index: 10;
}
footer.site-footer .container img.img {
  position: absolute;
}
footer.site-footer .container img.img.img-04 {
  width: 80px;
  top: -93px;
  left: 1%;
}
@media (min-width: 768px) {
  footer.site-footer .container img.img.img-04 {
    width: 130px;
  }
}
footer.site-footer .container img.img.img-05 {
  width: 120px;
  right: 100px;
  top: -100px;
}
@media (min-width: 768px) {
  footer.site-footer .container img.img.img-05 {
    width: 170px;
    right: 3%;
    top: -94px;
  }
}
div.copyright {
  padding: 10px 0 15px;
}
div.copyright p {
  text-align: center;
  font-size: 13px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  div.copyright p {
    margin: 0 0 0 auto;
  }
}

div#partners {
  background: white;
  padding: 40px 0 20px;
}

ul.partners {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 500px;
  margin: 20px auto 60px;
  justify-content: center;
}
ul.partners li {
  margin: 10px;
}
ul.partners li a {
  display: block;
}
ul.partners li a img {
  width: 130px;
}
@media (min-width: 768px) {
  ul.partners {
    max-width: 600px;
  }
  ul.partners li a img {
    width: 150px;
  }
}

section#about_mv {
  padding: 1px 0 70px;
  background-color: #ccc;
  background-image: url("img/about_bg_sp.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  section#about_mv {
    background-image: url("img/about_bg_pc.jpg");
  }
}
section#about_mv p,
section#about_mv h2 {
  color: white;
}
section#about_mv h2 {
  line-height: 1.4em;
}
@media (min-width: 768px) {
  section#about_mv {
    padding: 150px 0 80px;
  }
  section#about_mv p {
    text-align: center;
  }
}

section#about_sec1 {
  padding-bottom: 100px;
}
section#about_sec1 .white_top {
  bottom: calc(100% - 70px);
}
section#about_sec1 .container {
  position: relative;
}
section#about_sec1 .container .img {
  position: absolute;
}
section#about_sec1 .container .img.img-06 {
  width: 50px;
  right: 10%;
  top: 0;
}
@media (min-width: 481px) {
  section#about_sec1 .container .img.img-06 {
    width: 60px;
  }
}
@media (min-width: 1030px) {
  section#about_sec1 .container .img.img-06 {
    width: 70px;
  }
}
section#about_sec1 .container .img.img-07 {
  width: 70px;
  left: 2%;
  bottom: -64px;
}
@media (min-width: 481px) {
  section#about_sec1 .container .img.img-07 {
    width: 100px;
    left: 5%;
    bottom: -103px;
  }
}

/*---------------------------------
アコーディオンボックス
--------------------------------*/
.acbox {
  width: auto;
  font-size: 0px;
  /* ラベルと開く部分を分離する時は数値を入れる */
  max-width: 700px;
  margin: 30px auto;
}
.acbox label {
  width: auto;
  font-size: 16px;
  /* ラベルの文字サイズ */
  position: relative;
  display: block;
  padding: 18px 50px 18px 20px;
  cursor: pointer;
  transition: 0.3s;
  background: #fffdeb;
  border-radius: 50px;
}
@media (min-width: 768px) {
  .acbox label {
    padding: 22px 70px 22px 50px;
  }
}
.acbox label:after {
  content: "＋";
  /* ラベルのアイコン */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  color: #0f0f0f;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -14px;
}
@media (min-width: 768px) {
  .acbox label:after {
    right: 25px;
  }
}
.acbox input {
  display: none;
}
.acbox input:checked ~ label::after {
  content: "－";
  /* ラベルをクリックした後のアイコン */
}
.acbox input:checked ~ div {
  height: auto;
  border-radius: 0px;
  padding: 18px 50px 18px 20px;
  opacity: 1;
  position: relative;
}
.acbox input:checked ~ div:before {
  opacity: 1;
}
@media (min-width: 768px) {
  .acbox input:checked ~ div {
    padding: 22px 70px 22px 50px;
  }
}
.acbox div {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s;
  /* 開閉スピードの設定 */
}
.acbox .acbox-under {
  font-size: 15px;
  /* 開いた部分の文字サイズ */
  line-height: 1.6em;
}
.acbox .acbox-under p {
  margin: 0;
}

section#access {
  padding-bottom: 100px;
}
section#access .container {
  max-width: 1000px;
}
section#access p.title {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 0;
  word-break: keep-all;
}
@media (min-width: 1030px) {
  section#access p.title {
    font-size: 32px;
  }
}
@media (min-width: 1240px) {
  section#access p.title {
    font-size: 34px;
  }
}
section#access p.memo {
  font-size: 90%;
  margin-bottom: 0;
}
section#access iframe#googlemap {
  height: 300px;
  width: 100%;
}
@media (min-width: 768px) {
  section#access iframe#googlemap {
    height: 400px;
  }
}
@media (min-width: 1030px) {
  section#access iframe#googlemap {
    height: 600px;
  }
}
section#access img.access01 {
  display: none;
}
@media (min-width: 1030px) {
  section#access img.access01 {
    display: block;
  }
}
section#access img.access02 {
  display: block;
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
}
@media (min-width: 1030px) {
  section#access img.access02 {
    display: none;
  }
}

.post_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  margin: 0;
}
.post_items li {
  margin-bottom: 30px;
}
.post_items .construction_item {
  height: 100%;
  border: 1px solid #ccc;
}

.select_wrap select {
  display: block;
  width: clamp(240px, 75%, 480px);
  height: 2.8em;
  margin: 0 auto 60px;
}

.post_item {
  flex: 0 0 320px;
  margin-bottom: 30px;
  padding: 40px 30px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.post_item_header {
  display: flex;
  height: 24px;
  font-size: 12px;
  line-height: 2;
}
.post_item_date {
  color: #0aa68c;
}
.post_item_cats {
  display: flex;
}
.post_item_cat a {
  display: block;
  margin: 0 6px;
  padding: 0 6px;
  border: 1px solid #0f0f0f;
  border-radius: 12px;
  color: #0f0f0f;
}
.post_item_cat a:hover {
  border-color: #ff8158;
  color: #ff8158;
}
.post_item_image {
  margin: 20px 0;
}
.post_item_image img {
  width: 100%;
  height: auto;
}
.post_item_heading {
  margin: 20px 0;
  text-align: left;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 21px;
}
@media (min-width: 768px) {
  .post_item_heading {
    font-size: 24px;
  }
}
.post_item_excerpt {
  margin: 10px 0;
  line-height: 1.6;
}
.post_item_excerpt > p:first-child {
  height: 120px;
  text-align: justify;
}
.post_item_more {
  margin: 0;
  text-align: right;
}
.post_item_more a {
  color: #999;
  text-decoration: underline;
}
.post_item_more a:hover {
  color: #ff8158;
}

.single_post article ul {
  list-style: circle;
  margin-left: 40px;
}
.single_post article ul li {
  padding-left: 14px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  main.artists {
    padding-top: 150px;
  }
}

.artist_item {
  position: relative;
}
.artist_item:not(:first-of-type) {
  border-top: 1px solid #ccc;
}
.artist_item > .img {
  position: absolute;
  z-index: 2;
  display: none;
}
@media (min-width: 1030px) {
  .artist_item > .img {
    display: block;
  }
}
.artist_item > .img.img-09 {
  width: 100px;
  bottom: 0;
  left: 0;
}
.artist_item > .img.img-10 {
  width: 160px;
  bottom: 0;
  right: -2%;
}
.artist_item > .img.img-11 {
  width: 100px;
  bottom: 0;
  left: 0;
}
.artist_item > .img.img-12 {
  width: 80px;
  bottom: 0;
  right: 0;
}

.artists_item_wrap {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .artists_item_wrap {
    padding: 100px 0;
  }
}
.artists_item_wrap p.title {
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 24px;
}
.artists_item_wrap p.title.pc {
  display: none;
}
@media (min-width: 1030px) {
  .artists_item_wrap p.title.pc {
    display: block;
  }
}
@media (min-width: 1030px) {
  .artists_item_wrap p.title.sp {
    display: none;
  }
}
.artists_item_wrap .image {
  text-align: center;
  margin-bottom: 20px;
}
.artists_item_wrap .image img {
  border-radius: 10px;
  overflow: hidden;
  max-width: 400px;
}
.artists_item_wrap .text p:not([class]) {
  font-size: 15px;
}
.artists_item_wrap .text p.artists_links {
  line-height: 2.2em;
}
.artists_item_wrap .text p.artists_links a {
  color: #0f0f0f;
}
.artists_item_wrap .text p.artists_links a:hover {
  color: #0f0f0f;
  opacity: 0.6;
}
@media (min-width: 1030px) {
  .artists_item_wrap {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .artists_item_wrap .image {
    width: 50%;
  }
  .artists_item_wrap .image img {
    width: 100%;
    max-width: 100%;
  }
  .artists_item_wrap .text {
    width: 45%;
  }
}
@media (min-width: 1240px) {
  .artists_item_wrap .image {
    width: 55%;
  }
  .artists_item_wrap .text {
    width: 40%;
  }
}

h3.h3-youtube {
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  position: relative;
  margin-top: 0;
}
h3.h3-youtube:after {
  content: "";
  width: 100px;
  height: 1px;
  display: block;
  background: #0f0f0f;
  margin: 10px auto 60px;
}

.responsive {
  width: 100%;
  max-width: 600px;
  margin: 20px auto 60px;
  aspect-ratio: 16/9;
}

.white_bottom {
  background: #ffffff;
  border-bottom-left-radius: 1000px 200px;
  border-bottom-right-radius: 1000px 200px;
  height: 130px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  position: absolute;
  top: calc(100% - 100px);
  right: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .white_bottom {
    height: 150px;
    border-bottom-left-radius: 1600px 200px;
    border-bottom-right-radius: 1600px 200px;
  }
}

.white_top {
  background: #ffffff;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: 130px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  position: absolute;
  bottom: calc(100% - 100px);
  right: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .white_top {
    height: 150px;
  }
}

/* -----------------------------------
パンくずリスト
----------------------------------- */
#breadcrumb ul {
  display: flex;
  padding: 20px 0;
  margin: 0;
}
@media (max-width: 500px) {
  #breadcrumb ul {
    flex-direction: column;
  }
}
#breadcrumb ul li {
  margin: 0 10px 0 0;
  font-size: 12px;
  font-weight: 500;
}
#breadcrumb ul li img.icon {
  width: 20px;
  margin: 0 8px 0 0;
  vertical-align: baseline;
}

section#comingsoon {
  background: white;
  height: 300px;
  padding: 1px;
}
section#comingsoon p {
  margin: 0 auto;
}

/* 全幅指定 */
.full-width {
  max-width: 500px;
  margin: auto;
}

/* pタグの余白を削除 */
.wpcf7-form p {
  margin-bottom: 0;
}

/* 背景色（お好きな色に） */
/*  フォームの幅（自由に変えてOK） */
.contactForm {
  max-width: 700px;
  margin: 0 auto;
}

/* 各項目の下部余白 */
.contact_item {
  margin-bottom: 2.5rem;
}

/* 項目名 */
.label {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  font-weight: bold;
}

/* 必須タグと任意タグ共通のスタイル */
.label_tag {
  font-size: 15px;
  color: #ffffff;
  border-radius: 0.3rem;
  margin-right: 1rem;
  padding: 5px 10px;
}

/* 必須タグ */
.label_must {
  background-color: #C84772;
}

/* 任意タグ */
.label_option {
  background-color: #888988;
}

/* 名前やメールアドレスなどユーザーが入力する箇所 */
.inputs {
  width: 100%;
  box-sizing: border-box;
}

input[type=text], input[type=email], input[type=tel] {
  border: solid 1px #707070;
  padding: 0.5rem;
  width: 100%;
}

/* お問い合わせ内容を入力する箇所 */
textarea {
  border: solid 1px #707070;
  padding: 0.5rem;
  height: 207px;
  width: 100%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.6em;
}

/* ボタン */
.btnArea {
  text-align: center;
}

input[type=submit] {
  background: #ff8158;
  border: 2px solid #ffffff;
  width: 200px;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  font-weight: bold;
  padding: 1.4rem 0;
  margin-top: 2rem;
  cursor: pointer;
  border-radius: 0.3rem;
  transition: all 0.3s;
}

/* ボタンにホバーした時 */
input[type=submit]:hover {
  color: #ff8158;
  background-color: #ffffff;
  border-color: #ff8158;
}

/* ローダー */
.wpcf7 .ajax-loader {
  display: block;
  margin: 0 auto;
}

/* モバイル版 */
@media screen and (max-width: 480px) {
  .contact_item {
    margin-bottom: 1.6rem;
  }

  .label {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }

  .label_tag {
    font-size: 1.1rem;
  }

  input[type=text], input[type=email] {
    padding: 0.4rem;
    font-size: 1.5rem;
  }

  textarea {
    padding: 0.4rem;
    font-size: 1.5rem;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

p.recapcha {
  color: #ccc;
  font-size: 12px;
  margin-top: 60px;
}

.contents_wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .contents_wrap {
    flex-direction: row;
    justify-content: start;
  }
}
.contents_wrap a.content-toppage_news {
  display: block;
  width: 300px;
  color: #0f0f0f;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  .contents_wrap a.content-toppage_news {
    margin: 0 0 20px;
    width: 30%;
  }
  .contents_wrap a.content-toppage_news:not(:nth-of-type(3n)) {
    margin-right: 5%;
  }
}
.contents_wrap a.content-toppage_news .thumbnail {
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
}
.contents_wrap a.content-toppage_news .thumbnail figure {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
}
.contents_wrap a.content-toppage_news .thumbnail figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.contents_wrap a.content-toppage_news:hover .thumbnail figure img {
  transform: scale(1.15);
}
.contents_wrap a.content-toppage_news .text p {
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 0;
}
.contents_wrap a.content-toppage_news .text p.entry-title {
  font-weight: bold;
  font-size: 15px;
}

.contents_wrap_artist {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.contents_wrap_artist a.content-toppage_artists {
  display: block;
  width: 300px;
  color: #0f0f0f;
  margin: 0 auto 20px;
  border-radius: 10px;
  background: white;
  overflow: hidden;
}
@media (min-width: 481px) {
  .contents_wrap_artist a.content-toppage_artists {
    width: 48%;
    max-width: 280px;
    margin: 0 1% 20px;
  }
}
@media (min-width: 1030px) {
  .contents_wrap_artist a.content-toppage_artists {
    width: 23%;
    margin: 0 1% 20px;
  }
}
.contents_wrap_artist a.content-toppage_artists .thumbnail {
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .contents_wrap_artist a.content-toppage_artists .thumbnail {
    height: 200px;
  }
}
@media (min-width: 1030px) {
  .contents_wrap_artist a.content-toppage_artists .thumbnail {
    height: 180px;
  }
}
.contents_wrap_artist a.content-toppage_artists .thumbnail figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
}
.contents_wrap_artist a.content-toppage_artists .thumbnail figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.contents_wrap_artist a.content-toppage_artists:hover .thumbnail figure img {
  transform: scale(1.15);
}
.contents_wrap_artist a.content-toppage_artists .text p {
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 0;
}
.contents_wrap_artist a.content-toppage_artists .text p.entry-title {
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  margin: 10px auto;
}

/* -----------------------------------
フローボタン
----------------------------------- */
#flow_btn {
  position: fixed;
  background: url("img/flow_bg.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 226px;
  top: 200px;
  right: 0;
  z-index: 20;
  transition: 0.3s;
  visibility: visible;
  pointer-events: all;
}
#flow_btn a {
  writing-mode: vertical-rl;
  display: block;
  color: #ffffff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  width: 100%;
  height: 100%;
  font-size: 15px;
  line-height: 62px;
  position: relative;
  padding: 15px 0;
}
#flow_btn a:after {
  content: "";
  display: block;
  position: absolute;
  background: url("img/icon/arrow-w.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  width: 14px;
  height: 14px;
  right: 22px;
  margin: auto;
  bottom: 17px;
  transition: 0.3s;
}
#flow_btn a:hover {
  color: #ffffffa6;
}
#flow_btn a:hover:after {
  opacity: 0.6;
}

main.foods {
  background: #fffdeb;
}
@media (min-width: 768px) {
  main.foods {
    padding-top: 150px;
  }
}
main.foods .container {
  position: relative;
}
main.foods .container > .img {
  position: absolute;
}
main.foods .container > .img.img-13 {
  width: 80px;
  bottom: -30px;
  left: 0;
}
@media (min-width: 768px) {
  main.foods .container > .img.img-13 {
    width: 100px;
    bottom: -56px;
  }
}
main.foods .container > .img.img-03 {
  width: 80px;
  bottom: -30px;
  right: 0;
}
@media (min-width: 768px) {
  main.foods .container > .img.img-03 {
    width: 100px;
    bottom: -50px;
  }
}

@media (min-width: 768px) {
  .foods_wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.content-foods {
  display: block;
  width: 300px;
  color: #0f0f0f;
  margin: 0 auto 40px;
  border-radius: 10px;
  background: white;
  overflow: hidden;
}
.content-foods:hover {
  color: #0f0f0f;
}
.content-foods:hover img {
  opacity: 0.6;
}
@media (min-width: 768px) {
  .content-foods {
    width: 49%;
    margin-left: 0;
    margin-right: 2%;
  }
  .content-foods:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1030px) {
  .content-foods {
    width: 32%;
    margin-right: 2%;
  }
  .content-foods:nth-of-type(2n) {
    margin-right: 2%;
  }
  .content-foods:nth-of-type(3n) {
    margin-right: 0;
  }
}
.content-foods .thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  margin-bottom: 10px;
}
.content-foods .thumbnail figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
}
.content-foods .thumbnail figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.content-foods .text {
  padding: 0 15px;
}
.content-foods .text ul {
  list-style: disc;
  margin-left: 20px;
}
.content-foods .text p {
  font-size: 15px;
  line-height: 1.8em;
  margin-bottom: 20px;
}
.content-foods .text p.entry-title {
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  text-align: center;
  margin: 15px auto 5px;
  word-break: auto-phrase;
  line-height: 1.4em;
}
@media (min-width: 768px) {
  .content-foods .text p.entry-title {
    font-size: 18px;
  }
}
.content-foods .text p.shop {
  text-align: center;
  font-size: 85% !important;
}

section#frontpage_mv {
  height: 400px;
  background: #fff9b3;
  position: relative;
}
section#frontpage_mv img.mv25 {
  height: 90%;
  width: auto;
  display: block;
  margin: 0 auto 0;
  position: relative;
  top: 30px;
}
section#frontpage_mv img.mv25.mv25pc {
  display: none;
}
@media (min-width: 481px) {
  section#frontpage_mv {
    height: 500px;
  }
}
@media (min-width: 768px) {
  section#frontpage_mv {
    height: 750px;
  }
  section#frontpage_mv img.mv25 {
    height: calc(100% - 150px);
    position: relative;
    top: 100px;
  }
  section#frontpage_mv img.mv25.mv25sp {
    display: none;
  }
  section#frontpage_mv img.mv25.mv25pc {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media (min-width: 1030px) {
  section#frontpage_mv {
    min-height: 810px;
    height: calc(100vh + 50px);
    max-height: 1100px;
  }
}

section#frontpage_artists {
  padding: 30px 0 0;
}
@media (min-width: 768px) {
  section#frontpage_artists {
    padding: 60px 0 30px;
  }
}

section#frontpage_tickets {
  background: url("img/tickets_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1px 0 42px;
  position: relative;
}
section#frontpage_tickets:before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: white;
  position: absolute;
  bottom: 100%;
  z-index: -1;
}
section#frontpage_tickets h2.page_title {
  margin-bottom: 40px;
}
section#frontpage_tickets h2.page_title img {
  height: 100px;
}
@media (min-width: 768px) {
  section#frontpage_tickets h2.page_title img {
    height: 120px;
  }
}
section#frontpage_tickets ul.price {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  color: white;
}
@media (min-width: 768px) {
  section#frontpage_tickets ul.price {
    margin-bottom: 10px;
  }
}
section#frontpage_tickets .container {
  position: relative;
}
section#frontpage_tickets img.img {
  position: absolute;
}
section#frontpage_tickets img.img.img-02 {
  width: 130px;
  top: -125px;
}
@media (min-width: 768px) {
  section#frontpage_tickets img.img.img-02 {
    width: 150px;
    top: -146px;
  }
}
section#frontpage_tickets img.img.img-03 {
  width: 110px;
  right: 0;
  bottom: -126px;
}
@media (min-width: 768px) {
  section#frontpage_tickets img.img.img-03 {
    width: 150px;
    right: 0;
    bottom: -172px;
  }
}

#frontpage_news {
  position: relative;
}
#frontpage_news img.img-01 {
  position: absolute;
  width: 90px;
  right: 0;
  bottom: -44px;
}
@media (min-width: 768px) {
  #frontpage_news img.img-01 {
    width: 120px;
    left: 70%;
    bottom: -81px;
  }
}

#frontpage_instagram {
  background: white;
  padding: 60px 0;
}

#frontpage_movie {
  background: white;
  padding: 60px 0;
}

#youtube_wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
}
#youtube_wrap iframe {
  width: 100%;
  height: 100%;
}

p.open_time {
  font-size: 18px;
  color: #ff8158;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  p.open_time {
    font-size: 30px;
  }
}

p.open_time2 {
  font-size: 16px;
  color: #ff0000;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  p.open_time2 {
    font-size: 24px;
  }
}

.font_title {
  font-family: "Ranga", cursive;
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
}

#frontpage_archive {
  padding: 60px 0;
}
#frontpage_archive .archive_wrap {
  display: flex;
  flex-direction: column;
}
#frontpage_archive .archive_wrap a.archive_item {
  display: block;
  background: #ff8158;
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  padding: 5px 25px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 15px;
}
#frontpage_archive .archive_wrap a.archive_item:hover {
  opacity: 0.6;
}
@media (min-width: 768px) {
  #frontpage_archive .archive_wrap {
    flex-direction: row;
    justify-content: center;
  }
  #frontpage_archive .archive_wrap a.archive_item {
    margin: 0 1px;
  }
}

main.goods {
  background: #fffdeb;
}
@media (min-width: 768px) {
  main.goods {
    padding-top: 150px;
  }
}
main.goods .container {
  position: relative;
}
main.goods .container > .img {
  position: absolute;
}
main.goods .container > .img.img-14 {
  width: 50px;
  left: 14%;
  top: -1px;
}
@media (min-width: 768px) {
  main.goods .container > .img.img-14 {
    width: 60px;
  }
}

@media (min-width: 768px) {
  .goods_wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.content-goods {
  display: block;
  width: 300px;
  color: #0f0f0f;
  margin: 0 auto 40px;
  border-radius: 10px;
  background: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.content-goods .text_inner {
  flex-grow: 1;
}
.content-goods a.content-goods-link {
  display: block;
  color: #0f0f0f;
}
.content-goods a.content-goods-link:hover {
  color: #ff8158;
}
@media (min-width: 768px) {
  .content-goods {
    width: 49%;
    margin-left: 0;
    margin-right: 2%;
  }
  .content-goods:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1030px) {
  .content-goods {
    width: 32%;
    margin-right: 2%;
  }
  .content-goods:nth-of-type(2n) {
    margin-right: 2%;
  }
  .content-goods:nth-of-type(3n) {
    margin-right: 0;
  }
}
.content-goods .thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  margin-bottom: 10px;
}
.content-goods .thumbnail figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
}
.content-goods .thumbnail figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.content-goods .text {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.content-goods .text ul {
  list-style: disc;
  margin-left: 20px;
}
.content-goods .text p {
  line-height: 1.8em;
  margin-bottom: 20px;
}
.content-goods .text p.entry-title {
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  text-align: center;
  margin: 15px auto 0;
}
.content-goods .text p.price {
  text-align: center;
  font-size: 15px;
}

.sb_instagram_header.sbi_no_avatar {
  display: none;
}

ul#links_sns {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5px auto;
}
ul#links_sns li a {
  display: block;
  border-radius: 50px;
  margin: 0;
  padding: 5px;
}
ul#links_sns li a img {
  width: 30px;
}
ul#links_sns li a:hover {
  opacity: 0.6;
}

/* -----------------------------------
リスト
----------------------------------- */
ul.ul {
  list-style: disc;
}
ul.ul li {
  margin-left: 30px;
  margin-bottom: 10px;
}

ol.ol li {
  margin-left: 30px;
  margin-bottom: 10px;
}

ul.ul_check {
  display: flex;
  flex-wrap: wrap;
  max-width: 450px;
  margin: auto;
}
@media (min-width: 1030px) {
  ul.ul_check {
    max-width: 750px;
  }
}
ul.ul_check li {
  padding-left: 35px;
  position: relative;
  font-weight: bold;
  width: 100%;
  margin-bottom: 8px;
}
ul.ul_check li:before {
  content: "";
  display: block;
  background: url("../img/check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  height: 28px;
  position: absolute;
  left: 0;
}

/* -----------------------------------
メニュー
----------------------------------- */
#mobile_menu {
  overflow: scroll;
  padding: 80px 0 0;
  height: 100vh;
  width: 100vw;
  position: fixed;
  bottom: 0;
  right: 0;
  background: #fffdeb;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
  z-index: 100;
}
#mobile_menu.checked {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
#mobile_menu nav.main-navigation {
  max-width: 500px;
  margin: auto;
}
#mobile_menu div.menu_company {
  max-width: 500px;
  margin: 60px auto 0;
}
#mobile_menu div.menu_company .copyright {
  background: transparent;
}
#mobile_menu div.menu_company .copyright .container {
  flex-direction: column;
}
#mobile_menu div.menu_company .copyright ul.menu-footer {
  display: flex;
  margin: 0 0 60px;
}
#mobile_menu div.menu_company .copyright p {
  width: 100%;
  text-align: right;
}
@media (min-width: 768px) {
  #mobile_menu {
    height: 40px;
    padding: 0;
    position: relative;
    background: transparent;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    pointer-events: all;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  #mobile_menu nav.main-navigation {
    max-width: 100%;
  }
  #mobile_menu .menu_company {
    display: none;
  }
}

div.menu_company {
  max-width: 500px;
  margin: 60px auto 30px;
  padding: 0 15px;
}
div.menu_company img.site_logo {
  width: 150px;
}
div.menu_company p {
  font-size: 14px;
}
div.menu_company p.company_name {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
}

@media (min-width: 768px) {
  main.news {
    padding-top: 150px;
  }
}
main.news .container {
  position: relative;
}
main.news .container > .img {
  position: absolute;
}
main.news .container > .img.img-08 {
  width: 80px;
  bottom: 0;
  right: 2%;
}

ul.post_items li {
  width: 100%;
}
ul.post_items li:not(:last-of-type) a {
  border-bottom: 1px solid #ccc;
}
ul.post_items li a {
  display: flex;
  flex-direction: column;
  color: #0f0f0f;
  max-width: 100%;
  width: 300px;
  margin: auto;
}
ul.post_items li a:hover {
  opacity: 0.6;
}
ul.post_items li a div.img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  border: 1px solid #ccc;
  overflow: hidden;
}
ul.post_items li a div.img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
ul.post_items li a div.text {
  margin: 10px 0;
}
ul.post_items li a div.text span.posted-on {
  font-size: 13px;
}
ul.post_items li a div.text p {
  line-height: 1.8em;
}
ul.post_items li a div.text p.title {
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  margin: 10px 0 0;
}
@media (min-width: 768px) {
  ul.post_items li a {
    width: 100%;
    flex-direction: row;
    padding-bottom: 30px;
  }
  ul.post_items li a div.img {
    width: 250px;
    height: 150px;
  }
  ul.post_items li a div.text {
    width: calc(100% - 280px);
    margin: auto 0 auto 20px;
  }
}

@media (min-width: 768px) {
  .rockfes_page {
    padding-top: 150px;
  }
}

/**
 * Component - Pagination
 */
.pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 3rem;
  padding-bottom: 0;
  text-align: center;
  line-height: 1;
}
.pagination__item {
  margin-bottom: 0;
  position: relative;
}
.pagination__item:not(:last-of-type):after {
  content: "";
  display: block;
  width: 1.5px;
  height: 14px;
  position: absolute;
  margin: auto;
  background: #0f0f0f;
  top: 0;
  bottom: 0;
  right: 0;
  transform: rotate(14deg);
}
.pagination__item a {
  display: block;
  margin: auto;
  padding: 1rem;
  opacity: 0.85;
  color: #0f0f0f;
  text-decoration: none;
  text-align: center;
  outline: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.pagination__item.--prev {
  margin-right: 3rem;
}
.pagination__item.--next {
  margin-left: 3rem;
}
.pagination__item.--current {
  padding: 1rem;
  color: #cccccc;
}
.pagination__item.--joint {
  padding: 1rem;
  border: 2px solid #ffffff;
  background-color: #ff8158;
  color: #ffffff;
}

.qa .acbox label {
  padding: 32px 50px 32px 30px;
}
.qa .acbox label:before {
  top: 14px;
  width: 35px;
  height: 63px;
}
@media (min-width: 768px) {
  .qa .acbox label {
    padding: 40px 60px;
  }
  .qa .acbox label:before {
    width: 45px;
    height: 80px;
  }
}
.qa .acbox input ~ div {
  min-height: 0px;
}
.qa .acbox input:checked ~ div {
  padding-left: 20px;
  padding-right: 80px;
  min-height: 90px;
}
@media (min-width: 768px) {
  .qa .acbox input:checked ~ div {
    padding-left: 100px;
    padding-right: 100px;
    min-height: 110px;
  }
}

section#faq .container {
  position: relative;
}
section#faq .container > .img {
  position: absolute;
}
section#faq .container > .img.img-01 {
  width: 108px;
  bottom: -93px;
  right: 1%;
}
@media (min-width: 768px) {
  section#faq .container > .img.img-01 {
    width: 160px;
    right: -1%;
    bottom: -113px;
  }
}
section#faq .cat01 {
  position: relative;
}
section#faq .cat01 > .img {
  position: absolute;
}
section#faq .cat01 > .img.img-09 {
  width: 55px;
  bottom: -118px;
  right: 4%;
}
@media (min-width: 768px) {
  section#faq .cat01 > .img.img-09 {
    width: 70px;
    right: 5%;
    bottom: -140px;
  }
}
@media (min-width: 1030px) {
  section#faq .cat01 > .img.img-09 {
    right: 10%;
  }
}

ul.list.faq-list {
  max-width: 800px;
  margin: 40px auto 40px 40px;
}
ul.list.faq-list li {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.8em;
}
@media (min-width: 768px) {
  ul.list.faq-list {
    margin: 40px auto;
  }
}

span.red {
  color: red;
}

.faq_btns {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
@media (min-width: 1030px) {
  .faq_btns {
    flex-direction: row;
    justify-content: center;
  }
}
.faq_btns a.btn {
  margin: 20px auto;
}
@media (min-width: 1030px) {
  .faq_btns a.btn {
    margin-left: 0;
    margin-right: 20px;
    min-width: 100px;
  }
  .faq_btns a.btn:last-of-type {
    margin-right: 0;
  }
}

.single_post {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .single_post {
    padding-top: 180px;
  }
}
.single_post p.meta {
  font-size: 14px;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
.single_post .post_item_heading {
  font-family: "M PLUS Rounded 1c", sans-serif;
  margin-bottom: 0;
}

a.back_btn:hover {
  color: #ffffff;
  opacity: 0.6;
}

table {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #C2C2C2;
  border-bottom: 1px solid #C2C2C2;
  border-right: none;
  border-left: none;
}
table tr:not(:first-of-type) {
  border-top: 1px solid #C2C2C2;
}
@media (max-width: 500px) {
  table tr {
    display: flex;
    flex-direction: column;
  }
}
table th, table td {
  padding: 11px 15px;
  font-size: 15px;
  line-height: 1.8em;
  border-right: none;
  border-left: none;
}
table th {
  text-align: left;
}
@media (max-width: 500px) {
  table th {
    padding: 11px 0;
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  table td {
    padding: 0 0 11px;
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  table th {
    padding: 12px 10px 12px 20px;
  }
  table td {
    padding: 12px 20px;
  }
}

.wp-block-table th {
  text-align: center;
  min-width: 120px;
}

.wp-block-table td, .wp-block-table th {
  border: none;
  padding-top: 0.7em;
  padding-top: 0.7em;
}

ul.tickets {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 700px;
}
ul.tickets li {
  margin: 0 10px 10px;
}
@media (min-width: 1030px) {
  ul.tickets li {
    margin: 0 20px 10px;
  }
}
ul.tickets li a {
  display: block;
  color: #0f0f0f;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  border-bottom: 2px solid #e0e0e0;
}
ul.tickets li a:hover {
  border-bottom-color: #0aa68c;
}

ul.price {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
ul.price li {
  font-size: 40px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
}
ul.price li span.small {
  font-size: 15px;
}
@media (min-width: 768px) {
  ul.price {
    flex-direction: row;
  }
  ul.price li {
    margin-right: 15px;
  }
}

h3.ticket {
  color: #0aa68c;
  position: relative;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
h3.ticket span {
  display: block;
  background: white;
  padding: 0px 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
h3.ticket:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #cccccc;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}

section#ticket .container {
  position: relative;
}
section#ticket .container > .img {
  position: absolute;
}
section#ticket .container > .img.img-12 {
  width: 80px;
  left: 5%;
  top: 10px;
}
@media (min-width: 768px) {
  section#ticket .container > .img.img-12 {
    width: 100px;
    left: 4%;
  }
}

#toujitsu-parking {
  position: relative;
}
#toujitsu-parking > .img {
  position: absolute;
}
#toujitsu-parking > .img.img-02 {
  width: 70px;
  right: -12px;
  top: -20px;
}
@media (min-width: 481px) {
  #toujitsu-parking > .img.img-02 {
    right: 0;
  }
}
@media (min-width: 768px) {
  #toujitsu-parking > .img.img-02 {
    width: 90px;
    top: -90px;
    right: -32px;
  }
}
@media (min-width: 1030px) {
  #toujitsu-parking > .img.img-02 {
    top: -25px;
    right: 30px;
  }
}

.ticket_btns {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1030px) {
  .ticket_btns {
    flex-direction: row;
    justify-content: center;
  }
}
.ticket_btns a.btn {
  margin: 20px auto;
}
@media (min-width: 1030px) {
  .ticket_btns a.btn {
    margin-left: 0;
    margin-right: 20px;
    min-width: 100px;
    background-size: cover;
    width: calc(25% - 15px);
  }
  .ticket_btns a.btn:last-of-type {
    margin-right: 0;
  }
}

h4.h4_tickets {
  text-align: center;
  font-size: 22px;
  margin-bottom: 0;
}

ul.list {
  list-style: disc;
  margin-left: 40px;
}

.widget_block {
  margin: 20px auto 60px;
  padding: 20px;
  border: 1px solid #ccc;
}
.widget_block h2 {
  margin: 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  text-align: left;
}
.widget_block ul li::before {
  content: ">";
  padding: 0 10px;
  font-family: cursive;
}
.widget_block ul li a {
  color: #0f0f0f;
  transition: 0.3s;
}
.widget_block ul li a:hover {
  color: #fdab90;
}