@charset "UTF-8";
/*!!!! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&display=swap");
body {
  font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  color: #333333;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  font-size: 17px;
}
@media only screen and (max-width: 1024px) {
  body {
    font-size: 15px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  img {
    border: 0;
    max-width: 100%;
    height: auto;
  }
}

a {
  color: #333333;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}
a img {
  border: none;
}

i {
  padding: 0 5px;
}

ul {
  letter-spacing: -1em;
}
ul li {
  letter-spacing: 0;
  list-style: none;
}

.pc {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.tablet {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .tablet {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  .tablet {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
}

.ssp {
  display: none;
}
@media only screen and (max-width: 600px) {
  .ssp {
    display: block;
  }
}

/*PC改行加える*/
.br-pc {
  display: inherit;
}
@media only screen and (max-width: 1024px) {
  .br-pc {
    display: none;
  }
}

/*PC改行無効*/
.br_sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .br_sp {
    display: block;
  }
}

.br_ssp {
  display: none;
}
@media only screen and (max-width: 600px) {
  .br_ssp {
    display: block;
  }
}

/*ズームイン表示*/
.zoomin {
  transition: 0.8s;
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
}

.mv01 {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}

/*フェードイン表示*/
.fadein {
  transition: 0.8s;
  opacity: 0;
}

.fadein:not(:target) {
  opacity: 1\9 ; /*IE9対策*/
}

.mv02 {
  opacity: 1;
}

/*移動＋フェードイン表示*/
.fadeup {
  transition: 0.8s;
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
}

.fadeup:not(:target) {
  opacity: 1\9 ; /*IE9対策*/
}

.mv07 {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

@media print {
  .zoomin, .fadein, .fadeup {
    opacity: 1;
  }
}
/************************************

wrapper

************************************/
.wrapper {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .wrapper {
    width: 84%;
  }
}

/************************************

header

************************************/
header {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 150px;
  background-color: #FDED64;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media print {
  header {
    position: relative;
  }
}
@media only screen and (max-width: 1024px) {
  header {
    height: 60px;
  }
}
header .wrapper {
  max-width: 96%;
  width: 96%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  width: 320px;
}
@media only screen and (max-width: 1024px) {
  header h1 {
    width: 160px;
  }
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 1024px) {
  header nav {
    width: calc(100% - 160px);
  }
}
header .info {
  color: #333333;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin: 0 40px 0 0;
}
@media only screen and (max-width: 1024px) {
  header .info {
    font-size: 12px;
    margin: 0 3% 0 0;
  }
}
header .menu {
  width: 240px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  header .menu {
    width: 260px;
  }
}
@media only screen and (max-width: 600px) {
  header .menu {
    display: none;
  }
}
header .menu h4 {
  display: inline-block;
  background-color: #FCF40C;
  padding: 2px 5px;
  line-height: 1;
  margin: 0 0 5px;
}
@media only screen and (max-width: 1024px) {
  header .menu h4 {
    font-size: 12px;
    margin: 0 0 3px;
  }
}
@media only screen and (max-width: 1024px) {
  header .menu ul {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 1024px) {
  header .menu ul li {
    width: 48%;
    margin: 0 1%;
  }
}

/************************************

main common

************************************/
main {
  display: block;
  padding-top: 150px;
}
@media only screen and (max-width: 1024px) {
  main {
    padding-top: 60px;
  }
}
main .title {
  text-align: center;
  padding-top: 15px;
}
main .title h2, main .title h1 {
  font-size: 2.2rem;
  color: #E04359;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  main .title h2, main .title h1 {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 600px) {
  main .title h2, main .title h1 {
    font-size: 5.6vw;
    letter-spacing: 0.05em;
  }
}
main .title h2 span, main .title h1 span {
  display: inline-block;
  position: relative;
}
main .title h2 span::before, main .title h1 span::before {
  position: absolute;
  top: -14px;
  left: 0px;
  right: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  background-color: #E04359;
  border-radius: 50%;
  content: "";
}
@media only screen and (max-width: 1024px) {
  main .title h2 span::before, main .title h1 span::before {
    width: 10px;
    height: 10px;
    top: -10px;
  }
}
@media only screen and (max-width: 1024px) {
  main .title h2 span::before, main .title h1 span::before {
    width: 7px;
    height: 7px;
    top: -7px;
  }
}
main .title h2 a, main .title h1 a {
  text-decoration: none;
  color: #E04359;
}
main .title p {
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1024px) {
  main .title p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  main .title p {
    font-size: 3.4vw;
  }
}

#mainimage .slider {
  margin: 0;
}
#mainimage .slick-prev,
#mainimage .slick-next {
  z-index: 9;
}
#mainimage .slick-prev {
  left: 15px;
}
#mainimage .slick-next {
  right: 15px;
}
#mainimage .slick-prev:before,
#mainimage .slick-next:before {
  opacity: 0.75;
  color: #E04359;
}
#mainimage .slick-dots {
  bottom: 15px;
}
#mainimage .slick-dots li button:before {
  font-size: 12px;
  line-height: 20px;
  color: #E04359;
}
#mainimage .slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #E04359;
}

.inpagenavi {
  padding: 50px 0;
}
@media only screen and (max-width: 1024px) {
  .inpagenavi {
    padding: 24px 0;
  }
}
.inpagenavi ul {
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.inpagenavi li {
  width: 25%;
  text-align: center;
}
.inpagenavi li img {
  width: 70px;
  padding-bottom: 3px;
}
@media only screen and (max-width: 1024px) {
  .inpagenavi li img {
    width: 50px;
  }
}
@media only screen and (max-width: 600px) {
  .inpagenavi li img {
    width: 36px;
  }
}
.inpagenavi a {
  color: #E04359;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  .inpagenavi a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  .inpagenavi a {
    font-size: 3.5vw;
    letter-spacing: 0.03em;
  }
}

#riron {
  background-color: #FDED64;
  padding: 50px 0;
}
@media only screen and (max-width: 1024px) {
  #riron {
    padding: 20px 0;
  }
}
#riron .wrapper {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 25px;
  padding: 40px 5%;
}
@media only screen and (max-width: 1024px) {
  #riron .wrapper {
    padding: 30px 5%;
  }
}
@media only screen and (max-width: 600px) {
  #riron .wrapper {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
  }
}
#riron h2 {
  text-align: center;
  color: #FA776D;
  font-size: 2.2rem;
  font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
  letter-spacing: 0.08em;
  font-weight:600;
}
@media only screen and (max-width: 1024px) {
  #riron h2 {
    font-size: 1.3rem;
  }
}
#riron p {
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media only screen and (max-width: 1024px) {
  #riron p {
    font-size: 1rem;
  }
}

#nayami {
  padding: 80px 0 0;
}
@media only screen and (max-width: 1024px) {
  #nayami {
    padding: 8vw 0 0;
  }
}
#nayami .nayami_list {
  background-image: url("../images/nayammi_back.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  margin-top: 30px;
}
@media only screen and (max-width: 1024px) {
  #nayami .nayami_list {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 600px) {
  #nayami .nayami_list {
    padding: 40px 0 10px;
    background-image: url("/wp-content/themes/matsuda/images/nayami_back-sp.jpg");
  }
}
#nayami .nayami_list .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  #nayami .nayami_list .wrapper {
    width: 90%;
  }
}
@media only screen and (max-width: 600px) {
  #nayami .nayami_list .wrapper {
    width: 84%;
  }
}
#nayami .nayami_list .waku {
  width: 31%;
  background-color: #fff;
  padding: 60px 30px 20px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  #nayami .nayami_list .waku {
    width: 32%;
    padding: 30px 20px 5%;
  }
}
@media only screen and (max-width: 600px) {
  #nayami .nayami_list .waku {
    width: 100%;
    margin: 0 0 40px;
  }
}
#nayami .nayami_list .no {
  position: absolute;
  z-index: 2;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  width: 70px;
}
@media only screen and (max-width: 1024px) {
  #nayami .nayami_list .no {
    width: 40px;
    top: -20px;
  }
}
#nayami .nayami_list h3 {
  text-align: center;
  margin-bottom: 12px;
  color: #E04359;
  font-size: 1.6rem;
}
@media only screen and (max-width: 1024px) {
  #nayami .nayami_list h3 {
    font-size: 2.5vw;
  }
}
@media only screen and (max-width: 600px) {
  #nayami .nayami_list h3 {
    font-size: 5vw;
  }
}
#nayami .nayami_list h3 span {
  display: inline-block;
  border-bottom: 7px solid #FCF40C;
}
@media only screen and (max-width: 1024px) {
  #nayami .nayami_list h3 span {
    border-bottom-width: 4px;
  }
}
#nayami .nayami_list .image {
  margin-bottom: 15px;
}
#nayami .nayami_list .image img {
  border-radius: 10%;
}
#nayami .nayami_list p {
  font-size: 0.85rem;
  line-height: 1.8;
}
@media only screen and (max-width: 1024px) {
  #nayami .nayami_list p {
    font-size: 0.75rem;
  }
}
#nayami .nayami_list .koka {
  margin-top: 15px;
}
#nayami .nayami_list .koka h4 {
  color: #E04359;
  text-align: center;
  font-size: 1.3rem;
}
@media only screen and (max-width: 1024px) {
  #nayami .nayami_list .koka h4 {
    font-size: 1.1rem;
  }
}
#nayami .nayami_list .koka h4 span {
  display: inline-block;
  position: relative;
}
#nayami .nayami_list .koka h4 span::before {
  position: absolute;
  top: -7px;
  left: 0px;
  right: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  background-color: #E04359;
  border-radius: 50%;
  content: "";
}
@media only screen and (max-width: 1024px) {
  #nayami .nayami_list .koka h4 span::before {
    width: 7px;
    height: 7px;
    top: -7px;
  }
}
@media only screen and (max-width: 1024px) {
  #nayami .nayami_list .koka h4 span::before {
    width: 7px;
    height: 7px;
    top: -7px;
  }
}
#nayami .nayami_list .koka p {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1024px) {
  #nayami .nayami_list .koka p {
    font-size: 0.85rem;
  }
}

#flow {
  margin: 80px 0 0;
}
@media only screen and (max-width: 1024px) {
  #flow {
    margin: 50px 0 0;
  }
}
@media only screen and (max-width: 1024px) {
  #flow .wrapper {
    width: 98%;
    margin: 0 0 0 auto;
  }
}
#flow .chui {
  color: #E04359;
  font-size: 0.8rem;
  text-align: center;
}
#flow .waku {
  width: 400px;
  background-color: #fff;
  padding: 30px 20px;
  margin-top: 15px;
}
@media only screen and (max-width: 1024px) {
  #flow .waku {
    width: 300px;
    padding: 20px 10px;
  }
}
#flow .waku2 {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  padding: 40px 8% 20px;
  border-radius: 20px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  #flow .waku2 {
    padding: 24px 8% 20px;
  }
}
#flow .no {
  position: absolute;
  z-index: 2;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #FA9432;
  border-radius: 50%;
  top: -30px;
  left: 12px;
  font-size: 24px;
  width: 60px;
  height: 60px;
  line-height: 60px;
}
@media only screen and (max-width: 1024px) {
  #flow .no {
    top: -20px;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
#flow .image {
  margin-bottom: 10px;
}
#flow .image img {
  border-radius: 16px;
}
#flow h4 {
  font-size: 1.1rem;
}
@media only screen and (max-width: 1024px) {
  #flow h4 {
    font-size: 0.9rem;
  }
}
#flow p {
  font-size: 0.9rem;
}
@media only screen and (max-width: 1024px) {
  #flow p {
    font-size: 0.75rem;
  }
}
#flow .slick-prev,
#flow .slick-next {
  z-index: 9;
  width: 30px;
  height: 30px;
}
#flow .slick-prev {
  left: 5px;
}
@media only screen and (max-width: 1024px) {
  #flow .slick-prev {
    left: 10px;
  }
}
#flow .slick-next {
  right: -15px;
}
@media only screen and (max-width: 1024px) {
  #flow .slick-next {
    right: 10px;
  }
}
#flow .slick-prev:before,
#flow .slick-next:before {
  opacity: 0.75;
  color: #E04359;
  font-size: 30px;
}
#flow .slick-dots {
  bottom: -15px;
}
#flow .slick-dots li button:before {
  font-size: 12px;
  line-height: 20px;
  color: #E04359;
}
#flow .slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #E04359;
}

#flow .no {
  position: absolute;
  z-index: 2;
  font-weight: bold;
  color: #333333;
  text-align: center;
  background: #FDED64;
  border-radius: 50%;
  top: -30px;
  left: 12px;
  font-size: 24px;
  width: 60px;
  height: 60px;
  line-height: 60px;
}

#menu {
  margin: 100px 0 50px;
}
@media only screen and (max-width: 1024px) {
  #menu {
    margin: 50px 0 20px;
  }
}
#menu .title {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  #menu .title {
    margin-bottom: 20px;
  }
}
#menu .title .chu {
  display: none;
}
@media only screen and (max-width: 600px) {
  #menu .title .chu {
    display: block;
    text-align: center;
    color: #E04359;
  }
}
@media only screen and (max-width: 600px) {
  #menu .menu_list {
    width: 100%;
    overflow-x: scroll;
  }
}
#menu .waku1 {
  background-color: #FA9432;
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0;
}
@media only screen and (max-width: 1024px) {
  #menu .waku1 {
    padding: 15px;
    margin: 15px 0;
  }
}
@media only screen and (max-width: 600px) {
  #menu .waku1 {
    width: 600px;
  }
}
#menu .waku2 {
  background-color: #fff;
  border-radius: 18px;
  padding: 60px 5% 40px;
}
@media only screen and (max-width: 1024px) {
  #menu .waku2 {
    padding: 30px 5% 10px;
  }
}
#menu article {
  max-width: 900px;
  margin: 0 auto 30px;
}
#menu h3 {
  border-bottom: 2px solid #FA776D;
  font-size: 1.5rem;
  padding-bottom: 3px;
  margin-bottom: 15px;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  #menu h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
#menu h3 small {
  color: #FA776D;
  font-size: 0.8rem;
  padding-left: 10px;
}
#menu p {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  #menu p {
    font-size: 1rem;
  }
}
#menu p.no {
  font-weight: normal;
  font-size: 1rem;
  margin: 0 0 0.8rem;
}
@media only screen and (max-width: 1024px) {
  #menu p.no {
    font-size: 0.85rem;
  }
}
#menu .chui {
  font-weight: bold;
  color: #FA776D;
  font-size: 1rem;
  margin: 1rem 0 0;
}
@media only screen and (max-width: 1024px) {
  #menu .chui {
    font-size: 0.8rem;
  }
}

#menu .waku1 {
  background-color: #FDED64;
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0;
}

#tichet h2 {
  text-align: center;
  color: #333333;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  margin: 0 0 2rem;
  padding-bottom: 10px;
  position: relative;
}

#tichet h2::before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0;
  margin: auto;
  width: 80px;
  height: 5px;
  background-color: #333333;
  content: "";
}

#tichet {
  background-color: #FDED64;
  padding: 60px 0;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  #tichet {
    padding: 30px 0;
    margin-bottom: 40px;
  }
}
#tichet h2 {
  text-align: center;
  color: #333333;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  margin: 0 0 2rem;
  padding-bottom: 10px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  #tichet h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  #tichet h2 {
    font-size: 5.6vw;
    letter-spacing: 0.05em;
  }
}
#tichet h2::before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0;
  margin: auto;
  width: 80px;
  height: 5px;
  background-color: #333333;
  content: "";
}
#tichet .waku {
  background-color: #fff;
  border: 4px solid #E04359;
  border-radius: 24px;
  padding: 80px 5% 100px;
  position: relative;
  z-index: 1;
  transform: translate(20px, 20px);
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #tichet .waku {
    transform: translate(10px, 10px);
    border-width: 3px;
    padding: 20px 5% 30px;
  }
}
@media only screen and (max-width: 600px) {
  #tichet .waku {
    padding: 20px 3% 30px;
  }
}
#tichet .waku::before {
  position: absolute;
  z-index: -1;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 4px solid #E04359;
  border-radius: 24px;
  content: "";
}
@media only screen and (max-width: 1024px) {
  #tichet .waku::before {
    top: -10px;
    left: -10px;
    border-width: 3px;
  }
}
#tichet h3 {
  font-size: 1.8rem;
  color: #E04359;
  margin: 0 0 1.5rem;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  #tichet h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-align: left;
  }
}
@media only screen and (max-width: 600px) {
  #tichet h3 {
    font-size: 4.0vw;
  }
}
#tichet .text {
  max-width: 800px;
  margin: 0 auto;
}
#tichet h4 {
  font-size: 1.6rem;
  text-align: left;
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 1024px) {
  #tichet h4 {
    font-size: 1.1rem;
    margin-bottom: 0rem;
  }
}
@media only screen and (max-width: 600px) {
  #tichet h4 {
    font-size: 3.8vw;
  }
}
#tichet h4 span {
  color: #E04359;
  padding-left: 5px;
}
#tichet p {
  text-align: left;
  font-size: 1.4rem;
}
@media only screen and (max-width: 1024px) {
  #tichet p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  #tichet p {
    font-size: 3.5vw;
  }
}
#tichet .maru {
  width: 20%;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1024px) {
  #tichet .maru {
    top: -20%;
    transform: none;
    right: 3%;
  }
}
@media only screen and (max-width: 600px) {
  #tichet .maru {
    width: 25%;
    top: -13vw;
  }
}

#person .waku {
  background-color: #FDED64;
  padding: 40px 0;
  margin: 2rem 0 80px;
}
@media only screen and (max-width: 600px) {
  #person .waku {
    padding: 15px 0;
    margin: 1rem 0 40px;
  }
}
@media only screen and (max-width: 600px) {
  #person .wrapper {
    width: 100%;
  }
}
#person .waku2 {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 40px 5%;
  border-radius: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 600px) {
  #person .waku2 {
    border-radius: 0;
    padding: 20px 5%;
  }
}
#person .image {
  width: 30%;
}
@media only screen and (max-width: 600px) {
  #person .image {
    width: 100%;
  }
}
#person .image img {
  border-radius: 40px;
}
#person .image h3 {
  color: #FA776D;
  font-size: 1.5rem;
  line-height: 1.1;
  margin: 0.7rem 0 0;
}
@media only screen and (max-width: 1024px) {
  #person .image h3 {
    font-size: 2.2vw;
  }
}
@media only screen and (max-width: 600px) {
  #person .image h3 {
    font-size: 5vw;
    margin-bottom: 1rem;
  }
}
#person .text {
  width: 65%;
}
@media only screen and (max-width: 600px) {
  #person .text {
    width: 100%;
  }
}
#person .text h4 {
  color: #E04359;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
  font-weight: normal;
}
@media only screen and (max-width: 1100px) {
  #person .text h4 {
    font-size: 3.5vw;
  }
}
@media only screen and (max-width: 1024px) {
  #person .text h4 {
    font-size: 3.2vw;
  }
}
@media only screen and (max-width: 600px) {
  #person .text h4 {
    font-size: 5vw;
  }
}
#person .text p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 1100px) {
  #person .text p {
    font-size: 1.9vw;
  }
}
@media only screen and (max-width: 600px) {
  #person .text p {
    font-size: 3.5vw;
  }
}

#access {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  #access {
    margin-bottom: 30px;
  }
}
#access .map {
  margin-top: 2rem;
}
@media only screen and (max-width: 1024px) {
  #access .map {
    margin-top: 1rem;
  }
}
#access .map iframe {
  width: 100%;
  height: 30vw;
}
@media only screen and (max-width: 600px) {
  #access .map iframe {
    height: 65vw;
  }
}

#timetable {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  #timetable .waku {
    margin-top: 10px;
    overflow-y: scroll;
    width: 100%;
  }
}
#timetable table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #707070;
  border-left: 1px solid #707070;
}
@media only screen and (max-width: 1024px) {
  #timetable table {
    width: 700px;
  }
}
#timetable table th, #timetable table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  letter-spacing: 0.08em;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  #timetable table th, #timetable table td {
    padding: 12px;
  }
}
#timetable table thead th, #timetable table thead td {
  background-color: #FA9432;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  #timetable table thead th, #timetable table thead td {
    font-size: 1.1rem;
  }
}
#timetable table tbody th, #timetable table tbody td {
  font-size: 1.4rem;
}
@media only screen and (max-width: 1024px) {
  #timetable table tbody th, #timetable table tbody td {
    font-size: 1rem;
  }
}
#timetable table tbody td span {
  color: #FA776D;
}
#timetable .chui {
  color: #E04359;
  font-weight: bold;
  font-size: 0.9rem;
  margin: 15px 0 0;
}

#info {
  margin-bottom: 30px;
}
#info .waku {
  border: 1px solid #FA776D;
  padding: 40px 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  #info .waku {
    padding: 20px 5%;
  }
}
#info .text {
  width: 60%;
}
@media only screen and (max-width: 600px) {
  #info .text {
    width: 100%;
  }
}
#info h2 {
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 0.8rem;
  color: #E04359;
  /*font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif;*/
}
@media only screen and (max-width: 1024px) {
  #info h2 {
    font-size: 2.9vw;
    margin-bottom: 0.4rem;
  }
}
@media only screen and (max-width: 600px) {
  #info h2 {
    font-size: 5vw;
    text-align: center;
  }
}
#info h2 img {
  display: inline-block;
  width: 44px;
  vertical-align: middle;
  padding: 0 0 7px 10px;
}
@media only screen and (max-width: 1024px) {
  #info h2 img {
    width: 36px;
  }
}
#info p {
  font-weight: bold;
  font-size: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  #info p {
    font-size: 1.8vw;
  }
}
@media only screen and (max-width: 600px) {
  #info p {
    font-size: 3vw;
  }
}
#info .bt {
  width: 35%;
}
@media only screen and (max-width: 600px) {
  #info .bt {
    width: 100%;
    max-width: 300px;
    margin: 10px auto 0;
  }
}

#info h2 {
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 0.8rem;
  color: #F81818;
  /*font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif;*/
}

.small-text {
  font-size: 0.6em;
}

#recruit {
  background-color: #EEFF00;
  text-align: center;
}
#recruit a {
  display: block;
  padding: 40px 0;
  text-decoration: none;
  color: #E04359;
}
@media only screen and (max-width: 600px) {
  #recruit a {
    padding: 20px 0;
  }
}
#recruit a:hover {
  background-color: #FA9432;
  opacity: 1;
  color: #fff;
}
#recruit h2 {
  font-size: 2rem;
}
@media only screen and (max-width: 1024px) {
  #recruit h2 {
    font-size: 1.6rem;
  }
}
#recruit h2 img {
  width: 46px;
  vertical-align: middle;
  display: inline-block;
  padding: 0 5px 5px 0;
}
#recruit p {
  font-weight: bold;
  font-size: 1.2rem;
}
@media only screen and (max-width: 1024px) {
  #recruit p {
    font-size: 1rem;
  }
}

#blog {
  padding-top: 30px;
}
#blog .waku {
  padding: 50px 0;
  background-color: rgba(250, 148, 50, 0.3);
  margin: 1rem 0 0;
}
@media only screen and (max-width: 600px) {
  #blog .waku {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 600px) {
  #blog .wrapper {
    width: 100%;
  }
}
#blog .waku2 {
  background-color: #fff;
  padding: 40px 5%;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #blog .waku2 {
    margin-bottom: 15px;
  }
}
#blog dl {
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: 0.04em;
}
#blog dt {
  font-weight: bold;
  font-size: 1rem;
}
@media only screen and (max-width: 1024px) {
  #blog dt {
    font-size: 0.9rem;
  }
}
#blog dd {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  #blog dd {
    font-size: 1rem;
  }
}
#blog .bt {
  text-align: center;
  margin-top: 40px;
}
#blog .bt img {
  width: 250px;
}
@media only screen and (max-width: 600px) {
  #blog .bt img {
    width: 200px;
  }
}

footer {
  padding: 50px 0 0;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  footer {
    padding-bottom: 13vw;
  }
}
footer .pp {
  padding: 0 0 10px;
}
footer .pp a {
  color: #4077F9;
  font-weight: bold;
}
footer .copyright {
  background-color: #FDED64;
  color: #333333;
  padding: 3px 0;
  font-size: 0.8rem;
}

#bottom {
  display: none;
}
@media only screen and (max-width: 600px) {
  #bottom {
    display: block;
    position: fixed;
    z-index: 10;
    width: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
  }
  #bottom ul {
    display: flex;
    flex-wrap: wrap;
  }
  #bottom li {
    width: 50%;
  }
}

.pankuzu {
  padding: 12px 0;
  font-size: 0.8rem;
}
@media only screen and (max-width: 1024px) {
  .pankuzu {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 1024px) {
  .pankuzu .wrapper {
    width: 94% !important;
  }
}

.blog_pagenavi {
  width: 100%;
  margin: 30px 0;
}
@media only screen and (max-width: 1024px) {
  .blog_pagenavi {
    margin: 15px 0;
  }
}

.wp-pagenavi {
  text-align: center;
  font-size: 13px;
  padding: 20px 0;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .wp-pagenavi {
    text-align: center;
    font-size: 12px;
  }
}
.wp-pagenavi a {
  text-decoration: none;
}
.wp-pagenavi span {
  padding: 10px;
}
.wp-pagenavi .page, .wp-pagenavi .current {
  background-color: rgba(250, 119, 109, 0.4);
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  border-radius: 3px;
  margin: 0 5px;
  padding: 10px 13px;
}
.wp-pagenavi .page:hover, .wp-pagenavi .current:hover {
  color: #E04359;
}
.wp-pagenavi .current {
  background-color: #E04359;
  color: #fff;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .first, .wp-pagenavi .last {
  display: none;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  color: #333333;
  padding: 5px 15px;
  margin: 0 2px;
  border-radius: 3px;
  position: relative;
}
.wp-pagenavi .previouspostslink::before, .wp-pagenavi .nextpostslink::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  transition: 0.5s;
}
.wp-pagenavi .previouspostslink::before {
  left: 10px;
  border-width: 8px 13.9px 8px 0;
  border-color: transparent #333333 transparent transparent;
}
.wp-pagenavi .nextpostslink::before {
  right: 10px;
  border-width: 8px 0 8px 13.9px;
  border-color: transparent transparent transparent #333333;
}
.wp-pagenavi .pages, .wp-pagenavi .extend {
  display: none;
}

.blog_navi {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  .blog_navi {
    margin-bottom: 30px;
  }
}
.blog_navi .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  width: 90% !important;
}
.blog_navi a {
  text-decoration: none;
  width: 31.3%;
  margin: 0 1%;
  display: block;
  background-color: #E04359;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 15px;
  border-radius: 2em;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .blog_navi a {
    font-size: 0.8rem;
    width: 48%;
    margin: 10px 1%;
  }
  .blog_navi a:first-child {
    order: 1;
  }
  .blog_navi a:nth-child(2) {
    order: 3;
  }
  .blog_navi a:nth-child(3) {
    order: 2;
  }
}
.blog_navi .yaji::before {
  position: absolute;
  top: 45%;
  transform: translateY(-45%);
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transform-origin: top;
  content: "";
}
.blog_navi .prev::before, .blog_navi .next::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
.blog_navi .prev::before {
  left: 15px;
  background-image: url("../images/icon_left.png");
}
.blog_navi .next::before {
  right: 15px;
  background-image: url("../images/icon_right.png");
}

#blog_single .wrapper {
  max-width: 900px;
}
#blog_single .blog_ttl {
  background-color: #FEEAD6;
  padding: 40px 0;
  margin-bottom: 60px;
}
#blog_single .blog_ttl .day {
  font-size: 1.1rem;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  #blog_single .blog_ttl .day {
    font-size: 0.9rem;
  }
}
#blog_single .blog_ttl h1 {
  font-size: 2.2rem;
}
@media only screen and (max-width: 1024px) {
  #blog_single .blog_ttl h1 {
    font-size: 1.6rem;
  }
}
#blog_single .entry h2, #blog_single .entry h3, #blog_single .entry h4, #blog_single .entry h5, #blog_single .entry h6 {
  letter-spacing: 0.08em;
  line-height: 1.3;
}
#blog_single .entry h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1024px) {
  #blog_single .entry h2 {
    font-size: 1.3rem;
  }
}
#blog_single .entry h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1024px) {
  #blog_single .entry h3 {
    font-size: 1.2rem;
  }
}
#blog_single .entry h4, #blog_single .entry h5, #blog_single .entry h6 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1024px) {
  #blog_single .entry h4, #blog_single .entry h5, #blog_single .entry h6 {
    font-size: 1rem;
  }
}
#blog_single .entry p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  #blog_single .entry p {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=common.css.map */

.cpbanner {
    padding: 30px 0;
    width: 70%;
    margin: auto;
}
@media only screen and (max-width: 1024px) {
  {
    padding: 30px 0;
    width: 90%;
  }
}/*# sourceMappingURL=common.css.map */
