@charset "UTF-8";
/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #515151;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  letter-spacing: 0.03em;
  background-image: url("../images/back_green2.jpg");
  background-position: right bottom;
  background-repeat: no-repeat;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          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: #515151;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:hover {
  opacity: 0.7;
}
a img {
  border: none;
}

i {
  padding: 0 5px;
}

ul li {
  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;
  }
}

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

wrapper

************************************/
.wrapper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.wrapper::after {
  content: "";
  display: block;
  clear: both;
}
/************************************

.list(flexbox)

************************************/
.list {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list::after {
  content: "";
  display: block;
  clear: both;
}
.list article {
  width: auto;
}

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

header

************************************/
header {
  height: 100px;
  width: 100%;
  background-color: #fff;
  position: fixed;
  z-index: 10;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media print {
  header {
    position: relative;
  }
}
@media only screen and (max-width: 1024px) {
  header {
    position: relative;
    height: auto;
    z-index: auto;
  }
}
header .wrapper {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 96%;
  max-width: 96%;
}
@media only screen and (max-width: 1024px) {
  header .wrapper {
    height: auto;
    display: block;
  }
}
header .logo {
  width: 190px;
}
@media only screen and (max-width: 1200px) {
  header .logo {
    width: 15vw;
  }
}
@media only screen and (max-width: 1024px) {
  header .logo {
    width: 150px;
    margin: 10px auto;
  }
}
header nav {
  width: calc(100% - 190px - 180px - 2%);
  margin: 0 1%;
}
@media only screen and (max-width: 1200px) {
  header nav {
    width: calc(100% - 15vw - 13vw - 2%);
  }
}
@media only screen and (max-width: 1024px) {
  header nav {
    display: none;
  }
}
header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 15px;
  line-height: 1.1;
  font-weight: bold;
}
@media only screen and (max-width: 1300px) {
  header nav ul {
    font-size: 1.2vw;
  }
}
header nav ul li {
  border-right: 1px solid #ddd;
  position: relative;
}
header nav ul li:last-child {
  border: none;
}
header nav ul li a {
  padding: 0 13px;
  display: block;
}
@media only screen and (max-width: 1300px) {
  header nav ul li a {
    padding: 0 1vw;
  }
}
header nav ul li a:hover {
  opacity: 1;
  color: #afbe22;
}
header nav .submenu {
  opacity: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  width: 100vw;
  left: 0;
  right: 0;
  margin: auto;
  top: 60px;
}
header nav .submenu ul {
  padding: 30px 0;
  background-color: #f9f5e8;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
header nav .submenu ul li {
  border: none;
}
header nav .submenu ul li a {
  padding: 0 20px 0 16px;
}
header nav .submenu ul li a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  font-family: "FontAwesome";
  color: #afbe22;
  content: "\f105";
}
header nav ul li:hover > .submenu {
  opacity: 1;
  height: auto;
  padding: 30px 0 0;
}
header .contact {
  width: 180px;
  text-align: center;
}
@media only screen and (max-width: 1200px) {
  header .contact {
    width: 13vw;
  }
}
@media only screen and (max-width: 1024px) {
  header .contact {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #fff;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 50px 0 2%;
  }
}
header .contact .tel h3 {
  color: #afbe22;
  font-size: 12px;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 3px;
  background-image: url("../images/head_sen@2x.png");
  background-size: 324px;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1200px) {
  header .contact .tel h3 {
    font-size: 1vw;
  }
}
@media only screen and (max-width: 1024px) {
  header .contact .tel h3 {
    display: none;
  }
}
header .contact .tel .no {
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
}
@media only screen and (max-width: 1200px) {
  header .contact .tel .no {
    font-size: 1.7vw;
  }
}
@media only screen and (max-width: 1024px) {
  header .contact .tel .no {
    font-size: 18px;
    letter-spacing: 0;
  }
  header .contact .tel .no .sp {
    display: inline-block;
    width: 30px;
    margin-right: 3px;
  }
}
header .contact .tel .no a:hover {
  opacity: 1;
  color: #afbe22;
}
header .contact .bt {
  margin: 5px 0 0;
}
@media only screen and (max-width: 1024px) {
  header .contact .bt {
    margin: 0 0 0 10px;
  }
}
header .contact .bt a {
  display: block;
  font-size: 12px;
  letter-spacing: 0;
  padding: 7px 0;
}
@media only screen and (max-width: 1200px) {
  header .contact .bt a {
    font-size: 1vw;
  }
  header .contact .bt a::before {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  header .contact .bt a {
    padding: 5px 15px;
    font-size: 11px;
  }
  header .contact .bt a span {
    display: none;
  }
}

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

footer

************************************/
footer {
  padding: 30px 0 60px;
}
@media only screen and (max-width: 1024px) {
  footer {
    padding: 15px 0 80px;
  }
}
footer .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .info {
  width: 320px;
}
@media only screen and (max-width: 1024px) {
  footer .info {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 30px 0 0;
    text-align: center;
  }
}
footer .info .logo {
  margin: 0 0 15px;
}
@media only screen and (max-width: 1024px) {
  footer .info .logo {
    width: 150px;
    margin: 0 auto 15px;
  }
}
footer .info p {
  font-size: 15px;
  margin: 0 0 5px;
}
@media only screen and (max-width: 1024px) {
  footer .info p {
    font-size: 14px;
  }
}
footer .info .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  footer .info .tel {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .info .tel .mark {
  width: 36px;
  display: inline-block;
  margin: 0 5px 0 0;
}
footer .info .no {
  font-size: 28px;
  font-weight: bold;
}
footer .info .no a:hover {
  opacity: 1;
  color: #afbe22;
}
footer nav {
  width: calc(100% - 320px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 1024px) {
  footer nav {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
footer nav ul {
  margin: 0 0 0 30px;
}
@media only screen and (max-width: 1010px) {
  footer nav ul {
    margin: 0 0 0 20px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  footer nav ul {
    margin: 0 2% 0 0;
    width: 48%;
  }
  footer nav ul:last-child {
    width: 100%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer nav ul:last-child li {
    width: 48%;
    margin: 0 2% 8px 0;
  }
}
@media only screen and (max-width: 600px) {
  footer nav ul {
    font-size: 3.5vw;
  }
}
footer nav ul li {
  position: relative;
  padding-left: 16px;
  margin: 0 0 8px;
}
@media only screen and (max-width: 1024px) {
  footer nav ul li {
    padding-left: 10px;
  }
}
footer nav ul li::before {
  position: absolute;
  top: 4px;
  left: 0px;
  color: #afbe22;
  font-family: "FontAwesome";
  content: "\f105";
}
footer nav ul li a {
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
footer nav ul li a:hover {
  opacity: 1;
  color: #afbe22;
}
footer nav ul ul {
  margin: 5px 0 0 0px;
  display: block !important;
}
@media only screen and (max-width: 1010px) {
  footer nav ul ul {
    margin: 5px 0 0 0px;
  }
}
@media only screen and (max-width: 1024px) {
  footer nav ul ul {
    margin: 5px 0 0 0 !important;
    width: 100% !important;
  }
}
footer nav ul ul li {
  position: relative;
  padding-left: 10px;
  margin: 0 0 5px;
  font-size: 0.85rem;
}
@media only screen and (max-width: 1024px) {
  footer nav ul ul li {
    width: 100% !important;
  }
}
@media only screen and (max-width: 600px) {
  footer nav ul ul li {
    font-size: 3vw;
  }
}
footer nav ul ul li::before {
  font-family: "serif";
  content: "-";
  top: 0px;
}
footer .copyright {
  margin: 30px 0 0;
  width: 100%;
  font-size: 11px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1024px) {
  footer .copyright {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    text-align: center;
  }
}

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

PageUP

************************************/
#pageup {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 0;
  right: 0;
  z-index: 10;
  font-size: 8px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
  letter-spacing: 0;
}
@media only screen and (max-width: 1024px) {
  #pageup {
    width: 50px;
    height: 40px;
    bottom: 0px;
    right: 0px;
    font-size: 4px;
    line-height: 1;
  }
}
#pageup.none {
  display: none;
}
#pageup a {
  width: 50px;
  display: block;
  text-decoration: none;
  line-height: 100%;
  color: #333;
}
#pageup i {
  font-size: 40px;
  line-height: 0.8;
}
@media only screen and (max-width: 1024px) {
  #pageup i {
    font-size: 36px;
    line-height: 0.6;
  }
}

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

main

************************************/
main {
  position: relative;
  display: block;
  padding-top: 100px;
  background-image: url("../images/back_blue.jpg");
  background-repeat: no-repeat;
  background-position: left 100px;
  background-size: 50vw;
  /*
  &::before{
  position: absolute;
  top: 100vh;
  right: 0px;
  width:100%;
  height:0;
  padding-top: 50%;
  background-image: url("../images/back_green1.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  content: "";
  }*/
}
@media only screen and (max-width: 1024px) {
  main {
    padding-top: 0;
  }
}

main section {
  margin-bottom: 80px;
  -webkit-transition: 1s;
  transition: 1s;
}
@media only screen and (max-width: 1024px) {
  main section {
    margin-bottom: 50px;
  }
}
main section.mv07 {
  opacity: 1;
}
main section .white,
main section .beige {
  padding: 80px 0;
}
@media only screen and (max-width: 1024px) {
  main section .white,
main section .beige {
    padding: 50px 0;
  }
}
main section .white {
  background-color: #fff;
}
main section .beige {
  background-color: #f9f5e8;
}

@media print {
  main section {
    opacity: 1;
  }
}
/*移動＋フェードイン表示*/
.list-mv07:not(:target) {
  opacity: 1\9 ;
  /*IE9対策*/
}

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

midashi

************************************/
h1, h2, h3 {
  font-family: maru-maru-gothic-alr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 30px;
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 24px;
  }
}

h2 {
  font-size: 30px;
}
@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 24px;
}
@media only screen and (max-width: 1024px) {
  h3 {
    font-size: 20px;
  }
}

.midashi1 {
  text-align: center;
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 30px;
}
@media only screen and (max-width: 1024px) {
  .midashi1 {
    font-size: 24px;
  }
}
.midashi1 .eng {
  display: block;
  color: #afbe22;
  font-size: 14px;
  margin: 10px 0 0;
}
@media only screen and (max-width: 1024px) {
  .midashi1 .eng {
    font-size: 12px;
  }
}

p {
  font-size: 16px;
  line-height: 1.8;
}
@media only screen and (max-width: 1024px) {
  p {
    font-size: 15px;
  }
}

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

.bt

************************************/
.bt {
  text-align: center;
}
.bt a {
  display: inline-block;
  background-color: #afbe22;
  color: #fff;
  font-weight: bold;
  padding: 10px 40px 10px 30px;
  line-height: 1;
  border-radius: 2em;
  position: relative;
}
.bt a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  font-family: "FontAwesome";
  content: "\f105";
}

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

.to_contact

************************************/
.to_contact .waku {
  background-color: #f9f5e8;
  padding: 4% 6%;
  border-radius: 40px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .to_contact .waku {
    border-radius: 20px;
    padding: 7%;
  }
}
.to_contact h2 {
  margin: 0 0 20px;
}
@media only screen and (max-width: 600px) {
  .to_contact h2 {
    font-size: 20px;
    margin: 20px 0 20px;
  }
}
.to_contact p {
  margin: 0 0 20px;
}
@media only screen and (max-width: 1024px) {
  .to_contact p {
    text-align: left;
  }
}
.to_contact .list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.to_contact .list article {
  max-width: 280px;
  margin: 0 30px;
}
@media only screen and (max-width: 1024px) {
  .to_contact .list article {
    width: 48%;
    margin: 0 1%;
  }
}
@media only screen and (max-width: 600px) {
  .to_contact .list article {
    max-width: 240px;
    width: 100%;
    margin: 0 auto 20px;
  }
}
.to_contact .list h3 {
  font-size: 18px;
  background-image: url("../images/head_sen@2x.png");
  background-size: 325px;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #afbe22;
}
@media only screen and (max-width: 1024px) {
  .to_contact .list h3 {
    font-size: 16px;
  }
}
.to_contact .list .no {
  font-size: 32px;
  line-height: 1;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .to_contact .list .no {
    font-size: 24px;
  }
}
.to_contact .list .no img {
  margin-right: 5px;
  vertical-align: middle;
}
@media only screen and (max-width: 1024px) {
  .to_contact .list .no img {
    width: 28px;
  }
}
@media only screen and (max-width: 1024px) {
  .to_contact .list .bt a {
    font-size: 15px;
  }
}

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

.hyo

************************************/
.hyo {
  border-top: 1px solid #ccc;
}
.hyo dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
  padding: 15px;
}
@media only screen and (max-width: 1024px) {
  .hyo dl {
    font-size: 15px;
    padding: 15px 5px;
  }
}
.hyo dt {
  width: 20%;
}
@media only screen and (max-width: 600px) {
  .hyo dt {
    width: 25%;
  }
}
.hyo dd {
  width: 75%;
  margin: 0 0 0 5%;
}
@media only screen and (max-width: 600px) {
  .hyo dd {
    width: 70%;
  }
}
.hyo dd a {
  text-decoration: underline;
}

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

raf

************************************/
.raf {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.raf img {
  width: 100%;
  height: auto;
}

.raf a:hover {
  opacity: 1;
}

/*!------------------------------------*\
    Base
\*!------------------------------------*/
.drawer-nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  overflow: hidden;
  width: 80vw;
  color: #515151;
  height: 100%;
  background-color: #fff;
}

.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.drawer-open .drawer-overlay {
  display: block;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  right: -80vw;
  -webkit-transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 80vw;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
  position: fixed;
  z-index: 104;
  top: 7px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 30px;
  padding-top: 14px;
  padding-right: 10px;
  padding-bottom: 30px;
  padding-left: 10ox;
  background-color: transparent;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 10px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #515151;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -10px;
  left: 0;
  content: " ";
}

.drawer-hamburger-icon:after {
  top: 10px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*!------------------------------------*\
    accessibility
\*!------------------------------------*/
/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*\
    Container
\*!------------------------------------*/
.drawer-menu {
  padding: 8%;
}

.drawer-menu h2 {
  max-width: 150px;
  width: 100%;
  margin: 0 auto 20px;
}

.drawer-menu .menu1 li {
  margin: 0 0 0px;
  font-size: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
  position: relative;
}
.drawer-menu .menu1 li a {
  display: block;
  padding: 10px 0;
}
.drawer-menu .menu1 li a::before {
  position: absolute;
  top: 12px;
  right: 0px;
  color: #afbe22;
  font-family: "FontAwesome";
  content: "\f105";
}
.drawer-menu .menu1 li ul {
  margin: 0px 0 10px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.drawer-menu .menu1 li ul li {
  display: block;
  width: 100%;
  padding: 0 0px 0 15px;
  margin: 0 0 0;
  font-size: 13px;
  position: relative;
  border-bottom: none;
}
.drawer-menu .menu1 li ul li:nth-child(2), .drawer-menu .menu1 li ul li:nth-child(3), .drawer-menu .menu1 li ul li:nth-child(4), .drawer-menu .menu1 li ul li:nth-child(5) {
  width: 46%;
}
.drawer-menu .menu1 li ul li a {
  padding: 5px 0;
}
.drawer-menu .menu1 li ul li a::before {
  display: none;
}

.drawer-menu .menu2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px 0 0;
}
.drawer-menu .menu2 li {
  width: 49%;
  margin: 0 0 1%;
}
.drawer-menu .menu2 li a {
  display: block;
  padding: 7px 0;
  font-size: 12px;
  background-color: #f8fce7;
  border: 1px solid #afbe22;
  text-align: center;
  border-radius: 5px;
}

.drawer-menu ul.icon {
  width: 100%;
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.drawer-menu ul.icon li {
  width: 50px;
  padding: 10px;
  border-bottom: none;
}

.drawer-menu .tel {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  .drawer-menu .tel {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.drawer-menu .tel .mark {
  width: 32px;
  display: inline-block;
  margin: 0 5px 0 0;
}

.drawer-menu .contact {
  margin-top: 10px;
  text-align: center;
}
.drawer-menu .contact a {
  background-color: #afbe22;
  color: #fff;
  display: block;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 2em;
  font-size: 14px;
}

.drawer-menu .no {
  font-size: 24px;
  font-weight: bold;
}
.drawer-menu .no a:hover {
  opacity: 1;
  color: #afbe22;
}

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

#top

************************************/
#top {
  /************************************

  #mainimage

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

  #copy

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

  #top_menu

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

  #teikei

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

  #top_flow

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

  #top_news

  ************************************/
}
#top #mainimage {
  padding-top: 10px;
}
@media only screen and (max-width: 1024px) {
  #top #mainimage {
    margin-bottom: 60px;
  }
}
#top #mainimage .wrapper {
  width: 94%;
}
#top #mainimage .mainslide_waku {
  position: relative;
}
#top #mainimage .mainslide_waku .pic img {
  border-radius: 40px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #top #mainimage .mainslide_waku .pic img {
    border-radius: 20px;
  }
}
#top #mainimage .mainslide_waku h2 {
  position: absolute;
  font-size: 23px;
  line-height: 1.5;
  top: 40%;
  left: 5%;
  font-family: maru-maru-gothic-alr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  z-index: 2;
  text-shadow: 0px 0px 5px white;
}
@media only screen and (max-width: 1024px) {
  #top #mainimage .mainslide_waku h2 {
    font-size: 2.5vw;
  }
}
@media only screen and (max-width: 600px) {
  #top #mainimage .mainslide_waku h2 {
    font-size: 4.5vw;
    top: 70%;
  }
}
#top #mainimage .mainslide_waku:nth-child(1) h2 {
  top: 30%;
}
@media only screen and (max-width: 600px) {
  #top #mainimage .mainslide_waku:nth-child(1) h2 {
    top: 25%;
  }
}
#top #mainimage .mainslide_waku:nth-child(2) h2 {
  color: #fff;
  text-shadow: 0px 0px 5px black;
}
#top #mainimage .mainslide_waku:nth-child(3) h2 {
  color: #fff;
  text-shadow: 0px 0px 5px black;
  text-align: right;
  top: 10%;
  right: 5%;
}
#top #mainimage .mainslide_waku:nth-child(4) h2 {
  text-align: center;
  width: 100%;
  top: 70%;
  left: 0;
}
#top #copy {
  text-align: center;
}
#top #copy .wrapper {
  position: relative;
}
@media only screen and (max-width: 600px) {
  #top #copy .wrapper {
    padding-bottom: 80px;
  }
}
#top #copy .ill1, #top #copy .ill2 {
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 1200px) {
  #top #copy .ill1, #top #copy .ill2 {
    width: 15%;
  }
}
@media only screen and (max-width: 600px) {
  #top #copy .ill1, #top #copy .ill2 {
    width: 70px;
  }
}
#top #copy .ill1 {
  left: 0;
}
#top #copy .ill2 {
  right: 0;
}
#top #copy h2 {
  margin: 0 0 1em;
}
@media only screen and (max-width: 600px) {
  #top #copy h2 {
    font-size: 5.5vw;
  }
}
#top #copy p {
  margin: 0 0 1.5em;
  line-height: 2;
}
@media only screen and (max-width: 1200px) {
  #top #copy p {
    padding: 0 15%;
    text-align: left;
  }
  #top #copy p br {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  #top #copy p {
    padding: 0 5%;
  }
}
#top #copy p a {
  text-decoration: underline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), color-stop(30%, #fff799));
  background: linear-gradient(transparent 30%, #fff799 30%);
  font-weight: bold;
}
#top #copy .bt a {
  padding: 15px 40px 15px 30px;
}
#top #rainbow .image {
  margin: 4rem auto 8rem;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#top #rainbow .image img {
  width: 31%;
  border-radius: 2rem;
}
#top #top_menu {
  position: relative;
}
#top #top_menu .bg_img {
  position: absolute;
  z-index: -1;
  width: 50%;
  bottom: -50vh;
  right: 0;
  text-align: right;
}
@media only screen and (max-width: 600px) {
  #top #top_menu .bg_img {
    width: 70%;
    bottom: -20vw;
  }
}
#top #top_menu .wrapper {
  max-width: 1000px;
}
#top #top_menu h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #afbe22;
}
#top #top_menu .list article {
  width: 29.3%;
  margin: 0 2%;
}
@media only screen and (max-width: 600px) {
  #top #top_menu .list article {
    width: 100%;
    margin: 0 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#top #top_menu .list .image {
  text-align: center;
  margin: 0 0 20px;
}
@media only screen and (max-width: 600px) {
  #top #top_menu .list .image {
    width: 35%;
  }
}
#top #top_menu .list .image img {
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 600px) {
  #top #top_menu .list .text {
    width: 60%;
  }
}
#top #top_menu .list h3 {
  color: #afbe22;
  text-align: center;
  margin: 0 0 10px;
}
@media only screen and (max-width: 600px) {
  #top #top_menu .list h3 {
    text-align: left;
  }
}
#top #top_menu .list p {
  line-height: 1.8;
  margin: 0 0 15px;
}
@media only screen and (max-width: 600px) {
  #top #top_menu .list p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 7px;
  }
}
#top #top_menu .list a {
  display: block;
}
@media only screen and (max-width: 600px) {
  #top #top_menu .list .bt {
    text-align: left;
  }
}
#top #top_menu .list .bt a {
  display: inline-block;
  font-size: 14px;
}
@media only screen and (max-width: 600px) {
  #top #top_menu .list .bt a {
    font-size: 12px;
    padding: 5px 30px 5px 20px;
  }
}
#top #teikei {
  text-align: center;
}
#top #teikei ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0 0;
}
@media only screen and (max-width: 1024px) {
  #top #teikei ul {
    display: block;
  }
}
#top #teikei ul li {
  margin: 0 0.5%;
  width: 24%;
  font-family: maru-maru-gothic-alr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media only screen and (max-width: 1024px) {
  #top #teikei ul li {
    margin: 0 auto 5px;
    width: 100%;
    max-width: 300px;
  }
}
#top #teikei ul li a {
  display: block;
  background-color: #fff;
  border: 2px solid #afbe22;
  padding: 12px 0;
  position: relative;
}
#top #teikei ul li a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  font-family: "FontAwesome";
  color: #afbe22;
  content: "\f105";
}
#top #teikei ul li a:hover {
  background-color: #afbe22;
  color: #fff;
  opacity: 1;
}
#top #teikei ul li a:hover::before {
  color: #fff;
}
#top #top_flow {
  text-align: center;
  position: relative;
}
#top #top_flow .image img {
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  #top #top_flow .image img {
    border-radius: 20px;
  }
}
#top #top_flow .text {
  position: relative;
  padding-top: 60px;
}
@media only screen and (max-width: 1024px) {
  #top #top_flow .text {
    padding-top: 40px;
  }
}
#top #top_flow .midashi_flow {
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 1024px) {
  #top #top_flow .midashi_flow {
    top: -50px;
  }
}
#top #top_flow .midashi_flow h2 {
  background-color: #fff;
  padding: 50px 100px 10px;
  display: inline-block;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
@media only screen and (max-width: 1024px) {
  #top #top_flow .midashi_flow h2 {
    padding: 20px 60px 10px;
    font-size: 22px;
  }
}
@media only screen and (max-width: 600px) {
  #top #top_flow .midashi_flow h2 {
    padding: 20px 40px 10px;
  }
}
@media only screen and (max-width: 1024px) {
  #top #top_flow p {
    text-align: left;
    padding: 0 5%;
  }
}
#top #top_flow .bt {
  margin: 30px 0 0;
}
#top #top_flow .bt a {
  padding: 15px 40px 15px 30px;
}
#top #top_news .wrapper {
  max-width: 800px;
}
#top #top_news .midashi1 {
  margin-bottom: 10px;
}
#top #top_news dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding: 24px 12px;
}
@media only screen and (max-width: 1024px) {
  #top #top_news dl {
    padding: 20px 7px;
  }
}
#top #top_news dl dt {
  width: 100px;
  font-size: 14px;
  color: #afbe22;
  padding-top: 3px;
}
@media only screen and (max-width: 1024px) {
  #top #top_news dl dt {
    font-size: 13px;
  }
}
@media only screen and (max-width: 600px) {
  #top #top_news dl dt {
    width: 100%;
  }
}
#top #top_news dl dd {
  width: calc(100% - 100px);
  line-height: 1.7;
}
@media only screen and (max-width: 1024px) {
  #top #top_news dl dd {
    font-size: 15px;
  }
}
@media only screen and (max-width: 600px) {
  #top #top_news dl dd {
    width: 100%;
  }
}
#top #top_news dl dd a {
  text-decoration: underline;
}
#top #top_news dl dd .alignright {
  float: right;
  margin: 0 0 20px 20px;
}
#top #top_news dl dd .alignleft {
  float: left;
  margin: 0 20px 20px 0;
}
#top #top_news dl dd .aligncenter {
  margin: 0 auto 20px auto;
  display: block;
}
#top #blog {
  margin-top: 70px;
  padding: 6%;
  border-radius: 20px;
  background-color: #f8fce7;
}
@media only screen and (max-width: 1024px) {
  #top #blog {
    margin-top: 40px;
  }
}
#top #blog li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding: 16px 12px;
}
@media only screen and (max-width: 1024px) {
  #top #blog li {
    padding: 12px 7px;
  }
}
#top #blog li .wprss-feed-meta {
  width: 100px;
  font-size: 14px;
  color: #afbe22;
  padding-top: 3px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media only screen and (max-width: 1024px) {
  #top #blog li .wprss-feed-meta {
    font-size: 13px;
  }
}
@media only screen and (max-width: 600px) {
  #top #blog li .wprss-feed-meta {
    width: 100%;
  }
}
#top #blog li a {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: block;
  width: calc(100% - 100px);
  line-height: 1.7;
}
@media only screen and (max-width: 1024px) {
  #top #blog li a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 600px) {
  #top #blog li a {
    width: 100%;
  }
}
#top #blog .bt {
  margin-top: 20px;
}
#top #blog2 {
  margin-top: 70px;
  margin-bottom: 0;
  padding: 6%;
  border-radius: 20px;
  background-color: #f8fce7;
}
@media only screen and (max-width: 1024px) {
  #top #blog2 {
    margin-top: 40px;
  }
}
#top #blog2 h2 small {
  font-size: 15px;
  display: block;
  margin-top: 5px;
}
#top #blog2 .blog_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#top #blog2 article {
  width: 21%;
  margin: 0 2%;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  #top #blog2 article {
    width: 46%;
    margin: 0 2% 24px;
  }
}
#top #blog2 a {
  display: block;
}
#top #blog2 a:hover {
  opacity: 1;
  color: #afbe22;
}
#top #blog2 .image {
  margin: 0 0 15px;
  border-radius: 50%;
  overflow: hidden;
}
#top #blog2 .image img {
  width: 100%;
  display: block;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
#top #blog2 .image img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  opacity: 1;
}
#top #blog2 h3 {
  display: inline-block;
  text-align: left;
  font-size: 15px;
  margin: 0 15px;
}
@media only screen and (max-width: 1024px) {
  #top #blog2 h3 {
    margin: 0;
    font-size: 14px;
  }
}
#top #blog2 .day {
  width: 100%;
  font-size: 13px;
}
@media only screen and (max-width: 1024px) {
  #top #blog2 .day {
    font-size: 11px;
  }
}
#top #blog2 .bt {
  margin-top: 40px;
}
#top #blog2 .bt a {
  padding: 20px 40px 20px 30px;
  display: inline-block;
}
#top #blog2 .bt a:hover {
  color: #fff;
  opacity: 0.7;
}
#top #blog3 {
  margin-top: 0px;
  padding: 6%;
  border-radius: 20px;
}
@media only screen and (max-width: 1024px) {
  #top #blog3 {
    margin-top: 40px;
  }
}
#top #blog3 .wrapper {
  max-width: 720px;
}
#top #blog3 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding: 16px 12px;
}
@media only screen and (max-width: 1024px) {
  #top #blog3 li {
    padding: 12px 7px;
  }
}
#top #blog3 li .wprss-feed-meta {
  width: 100px;
  font-size: 14px;
  color: #afbe22;
  padding-top: 3px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media only screen and (max-width: 1024px) {
  #top #blog3 li .wprss-feed-meta {
    font-size: 13px;
  }
}
@media only screen and (max-width: 600px) {
  #top #blog3 li .wprss-feed-meta {
    width: 100%;
  }
}
#top #blog3 li a {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: block;
  width: calc(100% - 100px);
  line-height: 1.7;
}
@media only screen and (max-width: 1024px) {
  #top #blog3 li a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 600px) {
  #top #blog3 li a {
    width: 100%;
  }
}
#top #blog3 .bt {
  margin-top: 20px;
}

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

#about

************************************/
#about {
  background-position: left 100vh;
  /************************************

  #copy

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

  .sec_kihon

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

  #sec3

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

  #voice

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

  #access

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

  #gaiyo

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

  modal-window

  ************************************/
}
#about #copy {
  background-image: url("../about/images/copy_back.jpg");
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 100px 0 0;
}
#about #copy .wrapper {
  max-width: 1000px;
}
#about #copy h2 {
  text-align: center;
  margin: 50px 0;
}
@media only screen and (max-width: 1024px) {
  #about #copy h2 {
    margin: 50px 0 30px;
  }
}
#about #copy p {
  font-weight: bold;
  text-align: center;
  line-height: 2;
  margin: 0 0 0px;
}
#about #copy p a {
  text-decoration: underline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), color-stop(30%, #fff799));
  background: linear-gradient(transparent 30%, #fff799 30%);
  font-weight: bold;
}
#about #copy .image {
  text-align: center;
}
#about .sec_kihon {
  position: relative;
  margin-bottom: -50px;
}
@media only screen and (max-width: 600px) {
  #about .sec_kihon {
    margin-bottom: 50px;
  }
}
#about .sec_kihon .wrapper {
  max-width: 1200px;
}
#about .sec_kihon .image {
  max-width: 1200px;
}
#about .sec_kihon .image img {
  border-radius: 30px;
}
#about .sec_kihon .text {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 30px;
  padding: 4%;
  -webkit-transform: translateY(-120px);
          transform: translateY(-120px);
}
@media only screen and (max-width: 1024px) {
  #about .sec_kihon .text {
    padding: 6%;
    border-radius: 20px;
    -webkit-transform: translateY(-70px);
            transform: translateY(-70px);
  }
}
@media only screen and (max-width: 600px) {
  #about .sec_kihon .text {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    width: 100%;
    border-radius: 0;
    background-color: transparent;
    padding: 30px 0 0;
  }
}
#about .sec_kihon h2 {
  text-align: center;
  margin: 0 0 20px;
}
#about .sec_kihon h3 {
  text-align: center;
  margin: 60px 0 20px;
}
#about .sec_kihon p {
  max-width: 730px;
  margin: 0 auto 20px;
  line-height: 2;
}
#about .sec_kihon p a {
  text-decoration: underline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), color-stop(30%, #fff799));
  background: linear-gradient(transparent 30%, #fff799 30%);
  font-weight: bold;
}
#about .sec_kihon .image2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px 0 0;
}
#about .sec_kihon .image2 img {
  width: 31%;
  margin-bottom: 3%;
  border-radius: 20px;
}
@media only screen and (max-width: 600px) {
  #about .sec_kihon .image2 img {
    border-radius: 10px;
  }
}
#about .sec_kihon .bt a {
  padding: 15px 70px;
  margin: 0 7px 7px;
}
@media only screen and (max-width: 1024px) {
  #about .sec_kihon .bt a {
    padding: 15px 60px;
  }
}
@media only screen and (max-width: 600px) {
  #about .sec_kihon .bt a {
    display: block;
    margin: 0 auto 5px;
    max-width: 280px;
    padding: 15px 0px;
  }
}
#about #sec3 {
  background-color: #f8fce7;
  padding: 70px 0;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  #about #sec3 {
    padding: 50px 0;
  }
}
#about #sec3::before, #about #sec3::after {
  position: absolute;
  width: 100%;
  height: 280px;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
@media only screen and (max-width: 1024px) {
  #about #sec3::before, #about #sec3::after {
    height: 150px;
  }
}
@media only screen and (max-width: 600px) {
  #about #sec3::before, #about #sec3::after {
    height: 100px;
  }
}
#about #sec3::before {
  top: 0;
  right: 0px;
  background-image: url("../about/images/flower1.png");
  background-position: right top;
}
#about #sec3::after {
  bottom: 0;
  left: 0px;
  background-image: url("../about/images/flower2.png");
  background-position: left bottom;
}
#about #sec3 .wrapper {
  max-width: 1000px;
  background-color: #fff;
  padding: 5%;
}
@media only screen and (max-width: 600px) {
  #about #sec3 .wrapper {
    padding: 30px 6%;
  }
}
#about #sec3 h2 {
  text-align: center;
  margin: 0 0 25px;
}
@media only screen and (max-width: 600px) {
  #about #sec3 h2 {
    font-size: 5vw;
  }
}
#about #sec3 p {
  max-width: 730px;
  margin: 0 auto 30px;
  line-height: 2;
}
@media only screen and (max-width: 600px) {
  #about #sec3 p {
    line-height: 1.8;
  }
}
#about #sec3 .image {
  max-width: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}
#about #sec3 .image div {
  width: 48%;
  margin: 1%;
}
#about #sec3 .image div img {
  border-radius: 10px;
}
#about #voice .wrapper {
  max-width: 800px;
}
#about #voice ul {
  border-top: 1px dotted #ccc;
}
#about #voice li {
  padding: 20px 5px 20px 30px;
  border-bottom: 1px dotted #ccc;
  position: relative;
  line-height: 1.6;
}
#about #voice li::before {
  position: absolute;
  top: 26px;
  left: 0px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #afbe22;
  content: "";
}
#about #voice li strong {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(30%, #fff799));
  background: linear-gradient(transparent 60%, #fff799 30%);
  font-weight: bold;
}
#about #access p {
  text-align: center;
  margin: 0 0 30px;
}
@media only screen and (max-width: 600px) {
  #about #access p {
    text-align: left;
  }
}
#about #access .map {
  margin: 0 0 30px;
  height: 0;
  overflow: hidden;
  padding-bottom: 40%;
  position: relative;
}
@media only screen and (max-width: 600px) {
  #about #access .map {
    padding-bottom: 80%;
  }
}
#about #access .map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
#about #access .route {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}
#about #access .route div {
  width: 46%;
  margin: 0 2%;
}
@media only screen and (max-width: 600px) {
  #about #access .route div {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
  }
}
#about #gaiyo .wrapper {
  max-width: 800px;
}
#about .modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 10px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #about .modal-wrapper {
    padding: 2% 0;
  }
}
#about .modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
#about .modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
}
#about .modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  vertical-align: middle;
  content: "";
}
#about .modal-wrapper .modal-window {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 90%;
  max-width: 800px;
  padding: 0px;
  border-radius: 20px;
  background-color: #fff;
  background-image: url("../about/images/copy_back.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  vertical-align: middle;
}
#about .modal-wrapper .modal-window .modal-content {
  max-height: 90vh;
  overflow-y: auto;
  text-align: left;
  padding: 60px;
}
@media only screen and (max-width: 1024px) {
  #about .modal-wrapper .modal-window .modal-content {
    padding: 5%;
  }
}
@media only screen and (max-width: 600px) {
  #about .modal-wrapper .modal-window .modal-content {
    padding: 5% 8%;
  }
}
#about .modal-wrapper .modal-window .modal-content h2 {
  text-align: center;
  margin: 40px 0;
}
#about .modal-wrapper .modal-window .modal-content .text {
  max-width: 500px;
  margin: 0 auto;
  line-height: 2;
}
#about .modal-wrapper .modal-window .modal-content .text p {
  margin: 0 0 25px;
}
#about .modal-wrapper .modal-window .modal-content .chu {
  max-width: 500px;
  margin: 0 auto;
  font-size: 13px;
}
#about .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(175, 190, 34, 0.5);
}
#about .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  color: #333333 !important;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
}
@media only screen and (max-width: 1024px) {
  #about .modal-wrapper .modal-close {
    right: 15px;
    top: 15px;
  }
}
#about .modal-wrapper .modal-close:hover {
  color: #2b2e38 !important;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

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

#cremation

************************************/
#cremation {
  /************************************

  #copy

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

  #sec1

  ************************************/
}
#cremation #copy #mainimage {
  margin-bottom: 50px;
}
#cremation #copy #mainimage img {
  width: 100%;
}
#cremation #copy .wrapper {
  max-width: 800px;
}
#cremation #copy p {
  line-height: 2;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  #cremation #copy p {
    text-align: left;
    line-height: 1.7;
  }
}
#cremation #sec1 h2 {
  text-align: center;
  margin-bottom: 2rem;
}
#cremation #sec1 p {
  text-align: center;
  margin-bottom: 3rem;
}
#cremation #sec1 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}
#cremation #sec1 .container article {
  width: 46%;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 1024px) {
  #cremation #sec1 .container article {
    width: 96%;
  }
}
#cremation #sec1 .container h3 {
  color: #afbe22;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 600px) {
  #cremation #sec1 .container h3 {
    text-align: center;
    font-size: 1.4rem;
  }
}
#cremation #sec1 p {
  text-align: left;
  margin-bottom: 1.5rem;
}
#cremation #sec1 ol li {
  margin-bottom: 1.5rem;
  padding-left: 24px;
  list-style: none;
  position: relative;
}
#cremation #sec1 ol li::before {
  position: absolute;
  top: 0;
  left: 0px;
  width: 20px;
  height: 20px;
  content: "3";
  font-size: 1.1rem;
  font-weight: bold;
  color: #afbe22;
}
#cremation #sec1 ol li:nth-child(1)::before {
  content: "1";
}
#cremation #sec1 ol li:nth-child(2)::before {
  content: "2";
}
#cremation #sec1 ol li:nth-child(3)::before {
  content: "3";
}
#cremation #sec1 ol li:nth-child(4)::before {
  content: "4";
}
#cremation #sec1 ol li:nth-child(5)::before {
  content: "5";
}
#cremation #sec1 ol li:nth-child(6)::before {
  content: "6";
}
#cremation #sec1 ol li:nth-child(7)::before {
  content: "7";
}
#cremation #sec1 ol li:nth-child(8)::before {
  content: "8";
}
#cremation #sec1 ol li:nth-child(9)::before {
  content: "9";
}
#cremation #sec1 ol li:nth-child(10)::before {
  content: "10";
}
#cremation #sec1 ol h4 {
  font-size: 1.1rem;
}
#cremation #sec1 ol p {
  margin-bottom: 0;
  line-height: 1.6;
}
#cremation #sec1 .price table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  border: 2px solid #afbe22;
}
#cremation #sec1 .price th, #cremation #sec1 .price td {
  padding: 15px;
  border-bottom: 1px solid #afbe22;
}
#cremation #sec1 .price tbody tr:last-child th, #cremation #sec1 .price tbody tr:last-child td {
  border-bottom: none;
}
#cremation #sec1 .price thead th {
  background-color: #d6de8e;
}
#cremation #sec1 .price thead th:first-child {
  border-right: 1px solid #afbe22;
}
#cremation #sec1 .price tbody th {
  border-right: 1px solid #afbe22;
  background-color: #f5f4f0;
}
#cremation #sec1 .price .image {
  margin-top: 2rem;
}
#cremation #sec1 .price .image img {
  border-radius: 1.5rem;
}

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

#guide

************************************/
#guide {
  /************************************

  #park

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

  #type

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

  #etc

  ************************************/
}
#guide #park #mainimage {
  margin-bottom: 50px;
}
#guide #park #mainimage img {
  width: 100%;
}
#guide #park .wrapper {
  max-width: 800px;
}
#guide #park p {
  line-height: 2;
}
#guide #park .park_slide {
  margin-top: 50px;
  /* Arrows */
}
#guide #park .park_slide .slide_waku {
  margin: 0 10px;
}
#guide #park .park_slide .slide_waku img {
  border-radius: 20px;
}
#guide #park .park_slide .slick-prev {
  left: 25px;
  z-index: 10;
}
@media only screen and (max-width: 1024px) {
  #guide #park .park_slide .slick-prev {
    left: 10px;
  }
}
#guide #park .park_slide .slick-next {
  right: 25px;
  z-index: 10;
}
@media only screen and (max-width: 1024px) {
  #guide #park .park_slide .slick-next {
    right: 10px;
  }
}
#guide #type .wrapper {
  max-width: 1100px;
}
#guide #type p.lead {
  text-align: center;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  #guide #type p.lead {
    text-align: left;
  }
}
#guide #type .map {
  margin: 50px auto 100px;
  text-align: center;
}
#guide #type .type_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#guide #type article {
  width: 29.3%;
  margin: 0 2% 0px;
}
@media only screen and (max-width: 1024px) {
  #guide #type article {
    width: 31.3%;
    margin: 0 1% 0px;
  }
}
@media only screen and (max-width: 600px) {
  #guide #type article {
    width: 100%;
    margin: 0 0 40px;
  }
}
@media only screen and (max-width: 600px) {
  #guide #type article .image {
    width: 35%;
    float: right;
    margin: 0 0 10px 10px;
  }
}
#guide #type article .image img {
  border-radius: 20px;
}
@media only screen and (max-width: 1024px) {
  #guide #type article .image img {
    border-radius: 10px;
  }
}
#guide #type article .text h2 {
  text-align: center;
  margin: 50px 0 30px;
  font-size: 28px;
  padding-bottom: 8px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  #guide #type article .text h2 {
    font-size: 22px;
    margin: 36px 0 20px;
  }
}
#guide #type article .text h2::before {
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0;
  margin: auto;
  width: 100px;
  height: 2px;
  content: "";
  background: #afbe22;
}
@media only screen and (max-width: 1024px) {
  #guide #type article .text h2::before {
    width: 80px;
  }
}
#guide #type article .text h3 {
  text-align: center;
  margin: 30px 0 15px;
  font-size: 24px;
}
@media only screen and (max-width: 1024px) {
  #guide #type article .text h3 {
    font-size: 20px;
    margin: 24px 0 12px;
  }
}
@media only screen and (max-width: 600px) {
  #guide #type article .text h3 {
    margin: 0 0 10px;
    text-align: left;
  }
}
@media only screen and (max-width: 1024px) {
  #guide #type article .text p {
    font-size: 15px;
    line-height: 1.6;
  }
}
#guide #type article .data {
  margin-top: 15px;
  border: 1px solid #afbe22;
  padding: 20px;
  border-radius: 5px;
}
@media only screen and (max-width: 600px) {
  #guide #type article .data {
    margin-top: 25px;
  }
}
#guide #type article .data ul li {
  position: relative;
  padding-left: 18px;
}
@media only screen and (max-width: 1024px) {
  #guide #type article .data ul li {
    font-size: 15px;
  }
}
#guide #type article .data ul li::before {
  position: absolute;
  top: 5px;
  left: 0px;
  font-size: 14px;
  line-height: 1;
  color: #afbe22;
  content: "■";
}
#guide #type article#personal {
  width: 96%;
  margin: 0 auto 150px;
}
@media only screen and (max-width: 1024px) {
  #guide #type article#personal {
    width: 98%;
    margin: 0 auto 80px;
  }
}
@media only screen and (max-width: 600px) {
  #guide #type article#personal .image {
    width: 100%;
    float: none;
    margin: 0;
  }
}
#guide #type article#personal .text {
  max-width: 900px;
  margin: 0 auto;
}
#guide #type article#personal .text h3 {
  font-size: 24px;
}
@media only screen and (max-width: 1024px) {
  #guide #type article#personal .text h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 600px) {
  #guide #type article#personal .text h3 {
    margin: 24px 0 12px;
    text-align: center;
  }
}
#guide #type article#personal .text p {
  margin: 0 auto;
}
#guide #type article#personal .data {
  margin: 40px auto 40px;
}
#guide #type article#personal .data ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#guide #type article#personal .data ul li {
  margin: 0 20px 0 0;
}
#guide #type article#personal .data .bt {
  margin: 12px 0 0;
}
#guide #type article#personal .data .bt a {
  padding: 12px 40px;
}
#guide #type article#personal .price {
  margin: 0px auto 20px;
}
#guide #type article#personal .price input {
  display: none;
}
#guide #type article#personal .price label {
  cursor: pointer;
  display: block;
  border: 2px solid #afbe22;
  padding: 15px 5%;
  border-radius: 10px;
  position: relative;
  background-color: #f8fce7;
  font-weight: bold;
  font-size: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (max-width: 1024px) {
  #guide #type article#personal .price label {
    font-size: 18px;
  }
}
#guide #type article#personal .price label::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  content: "";
  border-bottom: 2px solid #afbe22;
  border-right: 2px solid #afbe22;
  content: "";
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
#guide #type article#personal .price label:hover {
  background-color: #afbe22;
  color: #fff;
}
#guide #type article#personal .price label:hover::before {
  border-color: #fff;
}
#guide #type article#personal .price input:checked ~ label::before {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
#guide #type article#personal .price .price_shosai {
  height: 0;
  opacity: 0;
  overflow: hidden;
}
#guide #type article#personal .price input:checked ~ .price_shosai {
  opacity: 1;
  height: auto;
  padding-top: 20px;
}
#guide #type article#personal .price .price_shosai p {
  margin: 0 auto 30px;
}
#guide #type article#personal .price .price_shosai article {
  width: 23%;
  margin: 0 1% 30px;
}
@media only screen and (max-width: 1024px) {
  #guide #type article#personal .price .price_shosai article {
    width: 31.3%;
  }
}
@media only screen and (max-width: 600px) {
  #guide #type article#personal .price .price_shosai article {
    width: 48%;
  }
}
#guide #type article#personal .price .price_shosai .image {
  margin: 0 0 15px;
}
#guide #type article#personal .price .price_shosai .image img {
  width: 100%;
  border-radius: 10px;
}
#guide #type article#personal .price .price_shosai h3 {
  border: 1px solid #afbe22;
  border-radius: 2em;
  font-size: 16px;
  padding: 5px 0;
  text-align: center;
  margin: 0 0 8px;
}
@media only screen and (max-width: 1024px) {
  #guide #type article#personal .price .price_shosai h3 {
    font-size: 16px;
  }
}
#guide #type article#personal .price .price_shosai dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
  margin: 0 10px;
}
@media only screen and (max-width: 1024px) {
  #guide #type article#personal .price .price_shosai dl {
    font-size: 14px;
    margin: 0 5px;
  }
}
#guide #type article#personal .price .price_shosai dl dt {
  width: 40px;
}
@media only screen and (max-width: 1024px) {
  #guide #type article#personal .price .price_shosai dl dt {
    width: 40px;
  }
}
#guide #type article#personal .price .price_shosai dl dd {
  width: calc(100% - 40px - 10px);
  margin: 0 0 2px 10px;
}
@media only screen and (max-width: 1024px) {
  #guide #type article#personal .price .price_shosai dl dd {
    width: calc(100% - 40px - 0px);
    margin: 0 0 2px 0px;
  }
}
#guide #type article#personal .price .price_shosai .chu {
  font-size: 13px;
  margin: 0 10px;
}
@media only screen and (max-width: 1024px) {
  #guide #type article#personal .price .price_shosai .chu {
    font-size: 13px;
    margin: 0 5px;
  }
}
#guide #type article#personal .bn {
  margin: 40px auto 0;
}
#guide #type article#personal .bt {
  margin: 30px auto 0;
}
#guide #type article#personal .bt a {
  margin: 0 7px;
  padding: 20px 50px;
}
@media only screen and (max-width: 1024px) {
  #guide #type article#personal .bt a {
    margin: 0 4px 4px;
    padding: 12px 40px;
  }
}
@media only screen and (max-width: 600px) {
  #guide #type article#personal .bt a {
    display: block;
    margin: 5px auto;
    padding: 12px 30px;
    max-width: 300px;
  }
}
#guide #etc {
  background-color: #f8fce7;
  padding: 60px 0;
}
@media only screen and (max-width: 1024px) {
  #guide #etc {
    padding: 40px 0;
  }
}
#guide #etc .wrapper {
  max-width: 1000px;
}
#guide #etc article {
  margin: 0 0 30px;
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
}
@media only screen and (max-width: 1024px) {
  #guide #etc article {
    padding: 30px 7%;
  }
}
@media only screen and (max-width: 600px) {
  #guide #etc article {
    width: 100%;
    margin: 10px 0;
  }
}
#guide #etc h2 {
  font-size: 24px;
  margin: 0 0 20px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #guide #etc h2 {
    font-size: 18px;
    margin: 0 0 10px;
  }
}
@media only screen and (max-width: 600px) {
  #guide #etc h2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1024px) {
  #guide #etc p {
    line-height: 1.6;
  }
}
#guide #etc .container .text {
  margin: 0 auto 20px;
  text-align: center;
}
#guide #etc .container .text p {
  display: inline-block;
  text-align: left;
}
#guide #etc .container .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#guide #etc .container .image img {
  border-radius: 12px;
  width: 24%;
}
@media only screen and (max-width: 600px) {
  #guide #etc .container .image img {
    width: 48%;
    margin: 5px 0;
  }
}

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

#personal

************************************/
#personal {
  /************************************

  #about

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

  #plan

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

  #type

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

  #design

  ************************************/
}
#personal #about {
  margin: 80px 0;
}
@media only screen and (max-width: 1024px) {
  #personal #about {
    margin: 50px 0;
  }
}
#personal #about .text {
  max-width: 800px;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 1024px) {
  #personal #about .text {
    margin: 0 auto 30px;
  }
}
@media only screen and (max-width: 600px) {
  #personal #about .text {
    width: 96%;
  }
}
#personal #about .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#personal #about .image div {
  width: 21%;
  margin: 0 2%;
}
@media only screen and (max-width: 600px) {
  #personal #about .image div {
    width: 46%;
    margin: 2%;
  }
}
#personal #about .image div img {
  width: 100%;
  border-radius: 50%;
}
#personal #plan .wrapper {
  max-width: 800px;
}
#personal #plan p {
  margin: 0 1%;
}
#personal #plan .data {
  max-width: 800px;
  margin: 30px auto;
}
#personal #plan .data .list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#personal #plan .data .waku {
  width: 48%;
  margin: 0 1%;
  border: 1px solid #afbe22;
  padding: 20px;
}
@media only screen and (max-width: 600px) {
  #personal #plan .data .waku {
    width: 100%;
    margin: 0 0 5px;
  }
}
#personal #plan .data ul li {
  position: relative;
  padding-left: 18px;
}
@media only screen and (max-width: 1024px) {
  #personal #plan .data ul li {
    font-size: 15px;
  }
}
#personal #plan .data ul li::before {
  position: absolute;
  top: 5px;
  left: 0px;
  font-size: 14px;
  line-height: 1;
  color: #afbe22;
  content: "■";
}
#personal #plan .bt {
  margin: 30px 0 0;
}
#personal #plan .bt a {
  margin: 0 7px;
  padding: 20px 50px;
}
@media only screen and (max-width: 600px) {
  #personal #plan .bt a {
    display: block;
    margin: 5px auto;
    padding: 15px 30px;
    max-width: 300px;
  }
}
#personal #type p {
  max-width: 800px;
  margin: 0 auto 40px;
}
#personal #type article {
  width: 23%;
  margin: 0 1% 30px;
}
@media only screen and (max-width: 1024px) {
  #personal #type article {
    width: 31.3%;
  }
}
@media only screen and (max-width: 600px) {
  #personal #type article {
    width: 48%;
  }
}
#personal #type .image {
  margin: 0 0 15px;
}
#personal #type .image img {
  width: 100%;
  border-radius: 10px;
}
#personal #type h3 {
  border: 1px solid #afbe22;
  border-radius: 2em;
  font-size: 18px;
  padding: 5px 0;
  text-align: center;
  margin: 0 0 12px;
}
@media only screen and (max-width: 1024px) {
  #personal #type h3 {
    font-size: 16px;
  }
}
#personal #type dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 15px;
  margin: 0 10px;
}
@media only screen and (max-width: 1024px) {
  #personal #type dl {
    font-size: 14px;
    margin: 0 5px;
  }
}
#personal #type dl dt {
  width: 60px;
}
@media only screen and (max-width: 1024px) {
  #personal #type dl dt {
    width: 40px;
  }
}
#personal #type dl dd {
  width: calc(100% - 60px - 10px);
  margin: 0 0 5px 10px;
}
@media only screen and (max-width: 1024px) {
  #personal #type dl dd {
    width: calc(100% - 40px - 0px);
    margin: 0 0 5px 0px;
  }
}
#personal #type .chu {
  font-size: 14px;
  margin: 0 10px;
}
@media only screen and (max-width: 1024px) {
  #personal #type .chu {
    font-size: 13px;
    margin: 0 5px;
  }
}
#personal #design {
  background-color: #f8fce7;
  padding: 60px 0;
}
#personal #design p {
  max-width: 800px;
  margin: 0 auto 30px;
}
#personal #design .bt a {
  padding: 18px 80px;
}
@media only screen and (max-width: 1024px) {
  #personal #design .bt a {
    padding: 18px 50px;
  }
}
#personal #design .image {
  margin: 50px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#personal #design .image div {
  width: 21%;
  margin: 0 2%;
}
@media only screen and (max-width: 600px) {
  #personal #design .image div {
    width: 46%;
    margin: 2%;
  }
}
#personal #design .image div img {
  width: 100%;
  border-radius: 50%;
}

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

#gallery

************************************/
#gallery {
  /************************************

  #list

  ************************************/
}
#gallery #list {
  margin: 80px 0;
}
@media only screen and (max-width: 1024px) {
  #gallery #list {
    margin: 50px 0;
  }
}
#gallery #list p {
  max-width: 800px;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 1024px) {
  #gallery #list p {
    margin: 0 auto 30px;
  }
}
@media only screen and (max-width: 600px) {
  #gallery #list p {
    width: 96%;
  }
}
#gallery #list .gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
@media only screen and (max-width: 1024px) {
  #gallery #list .gallery {
    gap: 3px;
  }
}
@media only screen and (max-width: 600px) {
  #gallery #list .gallery {
    gap: 2px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
#gallery #list .grid.grid4 {
  grid-row: 1/3;
  grid-column: 1/3;
}
@media only screen and (max-width: 600px) {
  #gallery #list .grid.grid4 {
    grid-row: 1/3;
    grid-column: 1/3;
  }
}
#gallery #list .grid.grid02 {
  grid-row: 2/4;
  grid-column: 5/7;
}
@media only screen and (max-width: 600px) {
  #gallery #list .grid.grid02 {
    grid-row: 2/4;
    grid-column: 3/5;
  }
}
#gallery #list .grid.grid12 {
  grid-row: 3/5;
  grid-column: 3/5;
}
@media only screen and (max-width: 600px) {
  #gallery #list .grid.grid12 {
    grid-row: 4/6;
    grid-column: 2/4;
  }
}
#gallery #list .grid.grid25 {
  grid-row: 5/7;
  grid-column: 1/3;
}
@media only screen and (max-width: 600px) {
  #gallery #list .grid.grid25 {
    grid-row: 6/8;
    grid-column: 1/3;
  }
}
#gallery #list .grid.grid28 {
  grid-row: 6/8;
  grid-column: 5/7;
}
@media only screen and (max-width: 600px) {
  #gallery #list .grid.grid28 {
    grid-row: 8/10;
    grid-column: 3/5;
  }
}
#gallery #list .grid.grid33 {
  grid-row: 7/9;
  grid-column: 3/5;
}
@media only screen and (max-width: 600px) {
  #gallery #list .grid.grid33 {
    grid-row: 11/13;
    grid-column: 1/3;
  }
}
#gallery #list .grid a {
  display: block;
}
#gallery #list .grid img {
  border-radius: 5px;
  width: 100%;
}
#gallery .bt {
  margin-top: 3rem;
}
#gallery .bt a {
  padding: 20px 60px;
}

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

#flow

************************************/
#flow {
  /************************************

  #copy

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

  .flow_base

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

  #flow1

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

  #flow2

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

  #flow3

  ************************************/
}
#flow #copy #mainimage {
  margin-bottom: 50px;
}
#flow #copy #mainimage img {
  width: 100%;
}
#flow #copy .wrapper {
  max-width: 800px;
}
#flow #copy p {
  line-height: 2;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  #flow #copy p {
    text-align: left;
    line-height: 1.7;
  }
}
#flow #copy .inpage_navi {
  margin: 30px 0 0;
}
#flow #copy .inpage_navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#flow #copy .inpage_navi ul li {
  margin: 0 2%;
  width: 25%;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #flow #copy .inpage_navi ul li {
    width: 31.3%;
    margin: 0 1%;
    font-size: 14px;
  }
}
@media only screen and (max-width: 600px) {
  #flow #copy .inpage_navi ul li {
    width: 100%;
    max-width: 240px;
    margin: 0 auto 7px;
  }
}
#flow #copy .inpage_navi ul li a {
  background-color: #afbe22;
  padding: 10px;
  display: block;
  border-radius: 2em;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#flow #copy .inpage_navi ul li .no {
  background-color: #fff;
  color: #afbe22;
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 18px;
  line-height: 1;
  width: 24px;
  padding: 3px;
  border-radius: 50%;
  display: block;
}
#flow #copy .inpage_navi ul li h4 {
  width: calc(100% - 24px - 5px);
}
#flow .flow_base {
  padding-top: 35px;
}
#flow .flow_base .wrapper {
  max-width: 1000px;
}
#flow .flow_base .midashi_no {
  font-size: 24px;
  padding: 25px 0 20px;
  border: 2px solid #afbe22;
  position: relative;
  margin: 0 0 40px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #flow .flow_base .midashi_no {
    font-size: 22px;
  }
}
#flow .flow_base .midashi_no .no {
  font-size: 32px;
  line-height: 1;
  width: 52px;
  padding: 10px;
  background-color: #afbe22;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: -32px;
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  #flow .flow_base .midashi_no .no {
    font-size: 26px;
    width: 40px;
    padding: 7px 0;
    top: -24px;
  }
}
#flow .flow_base .text {
  max-width: 800px;
  margin: 0 auto;
}
#flow .flow_base .text p {
  line-height: 2;
  margin: 0 0 1em;
}
@media only screen and (max-width: 1024px) {
  #flow .flow_base .text p {
    line-height: 1.7;
  }
}
#flow #flow1 .image {
  margin: 20px 0;
  text-align: center;
}
#flow #flow2 {
  background-color: #f8fce7;
  padding: 80px 0 60px;
}
@media only screen and (max-width: 1024px) {
  #flow #flow2 {
    padding: 60px 0 40px;
  }
}
#flow #flow2 .onlyone {
  background-color: #fff;
  padding: 40px 5%;
  border-radius: 2rem;
  -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #flow #flow2 .onlyone {
    padding: 30px 8%;
  }
}
#flow #flow2 .onlyone p {
  display: inline-block;
  text-align: left;
}
#flow #flow2 .image {
  margin: 20px 0;
  text-align: center;
}
#flow #flow2 .tab {
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /*アクティブ設定*/
}
#flow #flow2 .tab::after {
  content: "";
  width: 100%;
  height: 5px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  display: block;
  background: #afbe22;
}
#flow #flow2 .tab .tabLabel {
  /* タブ */
  margin-right: 3px;
  padding: 15px 0px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  border-radius: 5px 5px 0 0;
  color: #515151;
  font-size: 22px;
  font-family: maru-maru-gothic-alr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #d6de8e;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  #flow #flow2 .tab .tabLabel {
    font-size: 18px;
    padding: 12px 0px;
  }
}
@media only screen and (max-width: 600px) {
  #flow #flow2 .tab .tabLabel {
    font-size: 16px;
  }
}
#flow #flow2 .tab .tabLabel:nth-last-of-type(1) {
  margin-right: 0;
}
#flow #flow2 .tab input {
  /* ラジオボタン非表示 */
  display: none;
}
#flow #flow2 .tab .content {
  /* 本文 */
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
#flow #flow2 .tab input:checked + .tabLabel {
  color: #fff;
  background: #afbe22;
}
#flow #flow2 .tab input:checked + .tabLabel + .content {
  padding: 40px 6%;
  height: auto;
  overflow: auto;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
  opacity: 1;
  background-color: #fff;
}
@media only screen and (max-width: 1024px) {
  #flow #flow2 .tab input:checked + .tabLabel + .content {
    padding: 30px 5%;
  }
}
#flow #flow2 .tab .content h3 {
  font-size: 27px;
  margin: 0 0 15px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #flow #flow2 .tab .content h3 {
    font-size: 22px;
  }
}
#flow #flow2 .tab .content .takeout {
  text-align: center;
  margin: 0 0 30px;
}
#flow #flow2 .tab .content .takeout div {
  display: inline-block;
  color: #afbe22;
  border: 2px solid #afbe22;
  border-radius: 2em;
  padding: 8px 40px;
  font-weight: bold;
  font-size: 16px;
}
@media only screen and (max-width: 1024px) {
  #flow #flow2 .tab .content .takeout div {
    font-size: 15px;
    padding: 5px 20px;
  }
}
#flow #flow2 .tab .content .takeout div.no {
  color: #808080;
  border-color: #808080;
}
#flow #flow2 .tab .content h4 {
  margin: 0 0 20px;
}
#flow #flow2 .tab .content h4 strong {
  color: #c1272d;
}
#flow #flow2 .tab .content ul {
  margin: 0 0 20px;
  font-size: 15px;
}
#flow #flow2 .tab .content ul li {
  list-style: disc;
  margin: 0 0 5px 18px;
}
#flow #flow2 .tab .content dl dt, #flow #flow2 .tab .content dl dd {
  padding: 12px;
}
@media only screen and (max-width: 1024px) {
  #flow #flow2 .tab .content dl dt, #flow #flow2 .tab .content dl dd {
    font-size: 15px;
  }
}
#flow #flow2 .tab .content dl dt {
  background-color: #f8fce7;
  font-weight: bold;
}
#flow #flow2 .tab .content dl dd {
  background-color: #f5f4f0;
  margin: 0 0 2px 0;
}
#flow #flow2 .tab .content dl dd a {
  text-decoration: underline;
}
#flow #flow2 .tab .content.hatsukaichi dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 600px) {
  #flow #flow2 .tab .content.hatsukaichi dl {
    display: block;
  }
}
#flow #flow2 .tab .content.hatsukaichi dl dt {
  width: 160px;
  margin: 0 0 2px 0;
}
@media only screen and (max-width: 600px) {
  #flow #flow2 .tab .content.hatsukaichi dl dt {
    width: 100%;
    margin: 0;
  }
}
#flow #flow2 .tab .content.hatsukaichi dl dd {
  width: calc(100% - 160px - 2px);
  margin: 0 0 2px 2px;
}
@media only screen and (max-width: 600px) {
  #flow #flow2 .tab .content.hatsukaichi dl dd {
    width: 100%;
    margin: 0 0 2px 0;
  }
}
#flow #flow2 .tab .content .list article {
  width: 46%;
  margin: 0 2%;
}
@media only screen and (max-width: 600px) {
  #flow #flow2 .tab .content .list article {
    width: 100%;
    margin: 0 0 40px;
  }
  #flow #flow2 .tab .content .list article:last-child {
    margin: 0;
  }
}
#flow #flow2 .bt a {
  padding: 20px 80px;
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  #flow #flow2 .bt a {
    padding: 15px;
    width: 100%;
    max-width: 340px;
    margin: auto;
    font-size: 16px;
  }
}
#flow #flow3 {
  position: relative;
}
#flow #flow3::before {
  position: absolute;
  top: 0%;
  right: 0px;
  width: 100%;
  height: 0;
  padding-top: 50%;
  background-image: url("../images/back_green1.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  content: "";
  z-index: -1;
}
#flow #flow3 .list {
  margin: 40px 0;
}
#flow #flow3 .list article {
  width: 27.3%;
  margin: 0 3%;
}
@media only screen and (max-width: 600px) {
  #flow #flow3 .list article {
    width: 100%;
    margin: 0 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#flow #flow3 .list .image {
  margin: 0 auto 20px;
  max-width: 240px;
}
@media only screen and (max-width: 600px) {
  #flow #flow3 .list .image {
    width: 45%;
    margin: 0;
  }
}
#flow #flow3 .list .image img {
  border-radius: 50%;
  width: 100%;
}
@media only screen and (max-width: 600px) {
  #flow #flow3 .list .text {
    width: 50%;
    margin: 0 0 0 5%;
  }
}
#flow #flow3 .list h3 {
  text-align: center;
  color: #afbe22;
  font-size: 22px;
}
@media only screen and (max-width: 1024px) {
  #flow #flow3 .list h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  #flow #flow3 .list h3 {
    text-align: left;
  }
}
#flow #flow3 .list p {
  margin: 5px auto 10px;
  max-width: 200px;
  line-height: 1.7;
}
@media only screen and (max-width: 1024px) {
  #flow #flow3 .list p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 600px) {
  #flow #flow3 .list .bt {
    text-align: left;
  }
}
#flow #flow3 .list .bt a {
  font-size: 14px;
}
#flow #flow3 .sogi {
  margin: 70px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  #flow #flow3 .sogi {
    margin: 40px 0 0;
  }
}
@media only screen and (max-width: 600px) {
  #flow #flow3 .sogi {
    display: block;
  }
}
#flow #flow3 .sogi .text {
  width: 65%;
  margin: 0 5% 0 0;
}
@media only screen and (max-width: 600px) {
  #flow #flow3 .sogi .text {
    width: 100%;
    margin: 0 0 15px;
  }
}
#flow #flow3 .sogi .text .zu {
  margin: 20px 0 0;
}
#flow #flow3 .sogi .image {
  width: 30%;
}
@media only screen and (max-width: 600px) {
  #flow #flow3 .sogi .image {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }
}
#flow #flow3 .sogi .image img {
  border-radius: 15px;
  width: 100%;
}

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

#faq

************************************/
#faq {
  /************************************

  #lead

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

  .faq_shosai

  ************************************/
}
#faq #lead {
  margin: 80px 0;
}
@media only screen and (max-width: 1024px) {
  #faq #lead {
    margin: 50px 0;
  }
}
#faq #lead .wrapper {
  max-width: 800px;
}
#faq #lead p {
  text-align: center;
  margin: 0 0 40px;
}
@media only screen and (max-width: 600px) {
  #faq #lead p {
    text-align: left;
    font-size: 15px;
  }
}
#faq #lead nav {
  background-color: #f8fce7;
  padding: 4%;
  border-radius: 20px;
}
@media only screen and (max-width: 600px) {
  #faq #lead nav {
    border-radius: 10px;
  }
}
#faq #lead nav h3 {
  background-color: #afbe22;
  padding: 7px 26px;
  border-radius: 3px;
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  #faq #lead nav h3 {
    font-size: 16px;
    margin: 0 0 5px;
    padding: 7px 24px;
  }
}
#faq #lead nav ul {
  margin: 0 0 30px;
}
@media only screen and (max-width: 1024px) {
  #faq #lead nav ul {
    margin: 0 0 20px;
  }
}
#faq #lead nav ul li {
  border-bottom: 1px dotted #ccc;
  padding: 10px 0 10px 26px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  #faq #lead nav ul li {
    font-size: 15px;
    padding: 7px 0 7px 24px;
  }
}
#faq #lead nav ul li::before {
  position: absolute;
  top: 10px;
  left: 5px;
  color: #afbe22;
  content: "Q";
}
@media only screen and (max-width: 1024px) {
  #faq #lead nav ul li::before {
    top: 7px;
  }
}
#faq .faq_shosai .wrapper {
  max-width: 800px;
}
#faq .faq_shosai h2 {
  background-color: #afbe22;
  font-size: 22px;
  color: #fff;
  padding: 12px 20px;
  border-radius: 3px;
}
@media only screen and (max-width: 1024px) {
  #faq .faq_shosai h2 {
    font-size: 20px;
  }
}
#faq .faq_shosai article {
  margin: 40px 0 0;
}
@media only screen and (max-width: 1024px) {
  #faq .faq_shosai article {
    margin: 30px 0 0;
  }
}
#faq .faq_shosai .question h3 {
  padding: 10px 0 10px 50px;
  position: relative;
  border-bottom: 3px solid #afbe22;
  margin: 0 0 25px;
  font-size: 20px;
}
@media only screen and (max-width: 1024px) {
  #faq .faq_shosai .question h3 {
    padding: 3px 0 10px 36px;
    font-size: 18px;
    margin: 0 0 15px;
  }
}
#faq .faq_shosai .question h3::before {
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 40px;
  line-height: 1;
  color: #afbe22;
  content: "Q";
}
@media only screen and (max-width: 1024px) {
  #faq .faq_shosai .question h3::before {
    font-size: 30px;
  }
}
#faq .faq_shosai .answer {
  padding: 0 0 0px 50px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  #faq .faq_shosai .answer {
    padding: 0 0 0px 36px;
  }
}
#faq .faq_shosai .answer::before {
  position: absolute;
  top: -10px;
  left: 0px;
  font-size: 40px;
  line-height: 1;
  color: #ccc;
  font-family: maru-maru-gothic-alr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  content: "A";
}
@media only screen and (max-width: 1024px) {
  #faq .faq_shosai .answer::before {
    font-size: 30px;
    top: 0;
  }
}
@media only screen and (max-width: 1024px) {
  #faq .faq_shosai .answer p {
    font-size: 15px;
  }
}
#faq .faq_shosai .answer p a {
  text-decoration: underline;
  font-weight: bold;
  color: #893D06;
}
#faq .faq_shosai .answer .bt {
  text-align: left;
  margin: 15px 0 0;
}
@media only screen and (max-width: 1024px) {
  #faq .faq_shosai .answer .bt a {
    font-size: 15px;
  }
}
#faq .faq_shosai .pagetop {
  margin: 20px 0 0;
  text-align: right;
  font-size: 11px;
}
#faq .faq_shosai .pagetop a {
  color: #afbe22;
  border: 1px solid #afbe22;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 2em;
}

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

#contact

************************************/
#contact {
  /************************************

  #lead

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

  #form

  ************************************/
}
#contact .hissu {
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  background-color: #afbe22;
  display: inline-block;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 3px;
  margin: 0 5px;
}
#contact #lead {
  margin: 80px 0;
}
@media only screen and (max-width: 1024px) {
  #contact #lead {
    margin: 50px 0;
  }
}
#contact #lead .wrapper {
  max-width: 800px;
}
#contact #lead h3 {
  text-align: center;
  color: #afbe22;
  margin: 0 0 20px;
}
#contact #lead p {
  line-height: 2;
}
#contact #lead .chu {
  margin: 30px 0 0;
  font-size: 15px;
  padding: 4%;
  background-color: #f9f5e8;
}
@media only screen and (max-width: 1024px) {
  #contact #lead .chu {
    padding: 6%;
    font-size: 14px;
  }
}
#contact #lead .chu li {
  padding-left: 20px;
  position: relative;
}
#contact #lead .chu li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}
#contact #lead .chu li a {
  text-decoration: underline;
}
#contact #form .wrapper {
  max-width: 800px;
}
#contact #form table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
  border-top: 1px dotted #515151;
}
#contact #form table th, #contact #form table td {
  vertical-align: top;
  padding: 20px 10px;
  border-bottom: 1px dotted #515151;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  #contact #form table th, #contact #form table td {
    display: block;
    width: 100%;
    font-size: 15px;
  }
}
@media only screen and (max-width: 600px) {
  #contact #form table th {
    border-bottom: none;
    padding: 15px 5px 0;
  }
}
@media only screen and (max-width: 600px) {
  #contact #form table td {
    padding: 10px 5px 15px;
  }
}
#contact #form table .chu {
  margin: 5px 0 0;
  font-size: 15px;
  color: #893D06;
}
@media only screen and (max-width: 1024px) {
  #contact #form table .chu {
    font-size: 14px;
  }
}
#contact #form table td p {
  margin: 5px 0;
}
#contact #form table input[type=radio], #contact #form table input[type=checkbox] {
  margin: 0 3px 0 0;
}
#contact #form table input[type=text], #contact #form table input[type=email] {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
#contact #form table textarea {
  width: 100%;
  height: 150px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
}
#contact #form table .input_m {
  width: 70%;
}
@media only screen and (max-width: 1024px) {
  #contact #form table .input_m {
    width: 100%;
  }
}
#contact #form table .input_l {
  width: 100%;
}
#contact #form table .input_s {
  width: 150px;
}
#contact #form .privacy {
  margin: 20px 0;
}
#contact #form .privacy a {
  text-decoration: underline;
}
#contact #form .privacy .check {
  text-align: center;
  margin: 1em 0 0;
  font-weight: bold;
}
#contact #form .privacy input[type=checkbox] {
  margin: 0 3px 0 0;
}
#contact #form .form_bt {
  text-align: center;
}
#contact #form .form_bt input {
  background-color: #afbe22;
  border: none;
  color: #fff;
  -webkit-appearance: none;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 3px;
  cursor: pointer;
}
#contact #form .form_bt input.back {
  background-color: #aaa;
}

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

comfirm

************************************/
.mw_wp_form_confirm #contact #form table .chu {
  display: none;
}
.mw_wp_form_confirm #contact #form .privacy {
  display: none;
}

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

#privacy

************************************/
#privacy {
  /************************************

  #policy

  ************************************/
}
#privacy #policy {
  margin: 80px 0;
}
@media only screen and (max-width: 1024px) {
  #privacy #policy {
    margin: 50px 0;
  }
}
#privacy #policy .wrapper {
  max-width: 800px;
}
#privacy #policy article {
  margin: 30px 0 0;
}
#privacy #policy h3 {
  font-size: 18px;
  margin: 0 0 0.5em;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  #privacy #policy h3 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  #privacy #policy p {
    font-size: 15px;
    line-height: 1.7;
  }
}
#privacy #policy ul {
  margin: 1em 0 0 20px;
}
#privacy #policy ul li {
  list-style: disc;
  margin: 0 0 5px;
}
@media only screen and (max-width: 1024px) {
  #privacy #policy ul li {
    font-size: 15px;
  }
}

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

#blog

************************************/
#blog {
  /************************************

  nav_single

  ************************************/
}
#blog #blog_title {
  padding-top: 60px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  #blog #blog_title {
    padding-top: 30px;
    margin-bottom: 20px;
  }
}
#blog #blog_title small {
  display: block;
  font-size: 15px;
  margin-top: 3px;
}
@media only screen and (max-width: 1024px) {
  #blog #blog_title small {
    font-size: 14px;
  }
}
#blog #blog_archive .wrapper {
  max-width: 1000px;
}
#blog #blog_archive .cat_t {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 1024px) {
  #blog #blog_archive .cat_t {
    margin-bottom: 2rem;
  }
}
#blog #blog_archive .cat_t h2 {
  font-size: 22px;
  background-color: #f8fce7;
  padding: 15px;
}
@media only screen and (max-width: 1024px) {
  #blog #blog_archive .cat_t h2 {
    font-size: 18px;
    padding: 10px;
  }
}
#blog #blog_archive .archive_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#blog #blog_archive .archive_list::after {
  display: block;
  content: "";
  width: 31%;
}
#blog #blog_archive .archive_list article {
  width: 31%;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 600px) {
  #blog #blog_archive .archive_list article {
    width: 48%;
  }
}
#blog #blog_archive .archive_list .image {
  overflow: hidden;
  border-radius: 20px;
}
#blog #blog_archive .archive_list .image img {
  width: 100%;
  display: block;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
#blog #blog_archive .archive_list .image img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  opacity: 1;
}
#blog #blog_archive .archive_list h3 {
  margin: 1rem 0 0rem;
  font-size: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 1024px) {
  #blog #blog_archive .archive_list h3 {
    margin: 0.7rem 0 0rem;
    font-size: 15px;
  }
}
#blog #blog_archive .archive_list .day {
  font-size: 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 1024px) {
  #blog #blog_archive .archive_list .day {
    font-size: 11px;
  }
}
#blog #blog_archive .archive_list a:hover {
  opacity: 1;
}
#blog #blog_archive .archive_list a:hover h3, #blog #blog_archive .archive_list a:hover .day {
  color: #afbe22;
}
#blog .navi {
  width: 100%;
}
#blog .wp-pagenavi {
  text-align: center;
  font-size: 13px;
  padding: 20px 0;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #blog .wp-pagenavi {
    text-align: center;
    font-size: 12px;
  }
}
#blog .wp-pagenavi a {
  padding: 10px;
  text-decoration: none;
}
#blog .wp-pagenavi span {
  padding: 10px;
}
#blog .wp-pagenavi .page:hover {
  color: #afbe22;
}
#blog .wp-pagenavi .current {
  font-weight: bold;
  font-size: 14px;
}
#blog .wp-pagenavi .pages {
  display: none;
}
#blog .wp-pagenavi .first, #blog .wp-pagenavi .last, #blog .wp-pagenavi .previouspostslink, #blog .wp-pagenavi .nextpostslink {
  padding: 5px 15px;
  margin: 0 2px;
  border-radius: 3px;
  position: relative;
}
#blog .wp-pagenavi .first::before, #blog .wp-pagenavi .last::before, #blog .wp-pagenavi .previouspostslink::before, #blog .wp-pagenavi .nextpostslink::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 5px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#blog .wp-pagenavi .first, #blog .wp-pagenavi .last {
  background-color: #afbe22;
  color: #fff;
}
#blog .wp-pagenavi .first {
  padding: 5px 15px 5px 25px;
}
#blog .wp-pagenavi .first::before {
  left: 10px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
#blog .wp-pagenavi .last {
  padding: 5px 25px 5px 15px;
}
#blog .wp-pagenavi .last::before {
  right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
#blog .wp-pagenavi .previouspostslink, #blog .wp-pagenavi .nextpostslink {
  border: 1px solid #afbe22;
  color: #afbe22;
}
#blog .wp-pagenavi .previouspostslink:hover, #blog .wp-pagenavi .nextpostslink:hover {
  background-color: #afbe22;
  color: #fff;
}
#blog .wp-pagenavi .previouspostslink {
  padding: 5px 15px 5px 25px;
}
#blog .wp-pagenavi .previouspostslink::before {
  left: 10px;
  border-bottom: 1px solid #afbe22;
  border-left: 1px solid #afbe22;
}
#blog .wp-pagenavi .previouspostslink:hover::before {
  border-bottom-color: #fff;
  border-left-color: #fff;
}
#blog .wp-pagenavi .nextpostslink {
  padding: 5px 25px 5px 15px;
}
#blog .wp-pagenavi .nextpostslink::before {
  right: 10px;
  border-top: 1px solid #afbe22;
  border-right: 1px solid #afbe22;
}
#blog .wp-pagenavi .nextpostslink:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
@media only screen and (max-width: 1024px) {
  #blog .wp-pagenavi .pages, #blog .wp-pagenavi .extend {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  #blog .wp-pagenavi .pages, #blog .wp-pagenavi .extend, #blog .wp-pagenavi .first, #blog .wp-pagenavi .last {
    display: none;
  }
}
#blog #blog_sub .wrapper {
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#blog #blog_sub article {
  width: 30%;
}
@media only screen and (max-width: 600px) {
  #blog #blog_sub article {
    width: 100%;
    margin: 0 0 20px;
  }
}
#blog #blog_sub h3 {
  font-size: 18px;
  color: #afbe22;
  margin-bottom: 1rem;
  padding-bottom: 5px;
  border-bottom: 2px solid #afbe22;
}
@media only screen and (max-width: 1024px) {
  #blog #blog_sub h3 {
    font-size: 16px;
  }
}
#blog #blog_sub ul li {
  padding-left: 16px;
  position: relative;
  font-size: 14px;
  margin-bottom: 3px;
}
@media only screen and (max-width: 1024px) {
  #blog #blog_sub ul li {
    font-size: 13px;
  }
}
#blog #blog_sub ul li::before {
  position: absolute;
  top: 6px;
  left: 0px;
  width: 8px;
  height: 8px;
  background-color: #afbe22;
  border-radius: 50%;
  content: "";
}
#blog #blog_sub .sub_archive ul {
  height: 115px;
  overflow-y: scroll;
}
#blog #blog_sub .sub_archive ul::-webkit-scrollbar {
  width: 10px;
}
#blog #blog_sub .sub_archive ul::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}
#blog #blog_sub .sub_archive ul::-webkit-scrollbar-thumb {
  background-color: #afbe22;
}
#blog #blog_single .wrapper {
  max-width: 800px;
}
#blog #blog_single .day {
  font-size: 14px;
  margin-bottom: 0.2rem;
}
#blog #blog_single h1 {
  padding-bottom: 7px;
  border-bottom: 2px solid #afbe22;
  margin-bottom: 3rem;
}
#blog #blog_single .honbun h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1024px) {
  #blog #blog_single .honbun h2 {
    font-size: 1.3rem;
  }
}
#blog #blog_single .honbun h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1024px) {
  #blog #blog_single .honbun h3 {
    font-size: 1.2rem;
  }
}
#blog #blog_single .honbun h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: maru-maru-gothic-alr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media only screen and (max-width: 1024px) {
  #blog #blog_single .honbun h4 {
    font-size: 1rem;
  }
}
#blog #blog_single .honbun h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: maru-maru-gothic-alr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media only screen and (max-width: 1024px) {
  #blog #blog_single .honbun h5 {
    font-size: 1rem;
  }
}
#blog #blog_single .honbun h6 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: maru-maru-gothic-alr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media only screen and (max-width: 1024px) {
  #blog #blog_single .honbun h6 {
    font-size: 1rem;
  }
}
#blog #blog_single .honbun p {
  margin-bottom: 2rem;
  line-height: 1.8;
}
@media only screen and (max-width: 1024px) {
  #blog #blog_single .honbun p {
    font-size: 0.85rem;
  }
}
#blog #blog_single .honbun ul, #blog #blog_single .honbun ol {
  margin-bottom: 2rem;
  margin-left: 1rem;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  #blog #blog_single .honbun ul, #blog #blog_single .honbun ol {
    font-size: 0.85rem;
  }
}
#blog #blog_single .honbun ul li, #blog #blog_single .honbun ol li {
  margin-bottom: 5px;
}
#blog #blog_single .honbun ul li {
  list-style: disc;
}
#blog #blog_single .honbun ol li {
  list-style: decimal;
}
#blog #blog_single .honbun blockquote {
  margin: 0 0 1.2rem;
  border: 1px solid #ddd;
  padding: 3% 5% 0.5rem;
}
#blog #blog_single .cat {
  font-size: 13px;
  margin-bottom: 3rem;
  text-align: right;
}
#blog #blog_single .cat a {
  display: inline-block;
  color: #afbe22;
  padding: 2px 5px;
  border-radius: 3px;
  border: 1px solid #afbe22;
  margin: 0 0 0 5px;
  font-size: 12px;
}
#blog #blog_single .cat a:hover {
  background-color: #afbe22;
  color: #fff;
}
#blog .nav_single {
  clear: both;
  text-align: center;
  font-size: 13px;
}
#blog .nav_single a {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 5px;
  text-decoration: none;
  border: 1px solid #afbe22;
  border-radius: 3px;
  position: relative;
  background-color: #fff;
}
#blog .nav_single a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 5px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#blog .nav_single a:hover {
  background: #afbe22;
  color: #fff;
}
#blog .nav_single a.top {
  background: #afbe22;
  color: #fff;
}
#blog .nav_single a:nth-child(1) {
  padding: 10px 20px 10px 30px;
}
#blog .nav_single a:nth-child(1)::before {
  left: 10px;
  border-bottom: 1px solid #afbe22;
  border-left: 1px solid #afbe22;
}
#blog .nav_single a:nth-child(1):hover::before {
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
#blog .nav_single a:nth-child(1).top {
  background: #afbe22;
  color: #fff;
  padding: 10px 20px;
}
#blog .nav_single a:nth-child(1).top::before {
  display: none;
}
#blog .nav_single a:nth-child(3) {
  padding: 10px 30px 10px 20px;
}
#blog .nav_single a:nth-child(3)::before {
  right: 10px;
  border-top: 1px solid #afbe22;
  border-right: 1px solid #afbe22;
}
#blog .nav_single a:nth-child(3):hover::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
/*# sourceMappingURL=maps/common.css.map */