@charset "UTF-8";
/*!!!! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;600;900;&display=swap");
html {
  font-weight: 500;
  font-size: 18px;
}
@media only screen and (max-width: 1300px) {
  html {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #3B4043;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  letter-spacing: 0.03em;
}

* {
  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: #3B4043;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
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;
  }
}

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

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

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

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

.mv02 {
  opacity: 1;
}

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

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

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

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

wrapper

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

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

.list(flexbox)

************************************/
.list {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

header

************************************/
header {
  position: relative;
  z-index: 1;
  text-align: center;
}
@media print {
  header {
    position: relative;
  }
}
header .head_back {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 50vw;
  background-image: url("../images/title_back.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 600px) {
  header .head_back {
    background-image: url("../images/title_back-sp.png");
    height: 70vw;
  }
}
header .title {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 5vw;
  margin: auto;
  width: 90%;
  max-width: 1500px;
}
@media only screen and (max-width: 600px) {
  header .title {
    top: 10vw;
  }
}
header nav {
  padding-top: 45vw;
}
@media only screen and (max-width: 600px) {
  header nav {
    padding-top: 50vw;
  }
}
@media only screen and (max-width: 1024px) {
  header nav .wrapper {
    width: 90%;
  }
}
@media only screen and (max-width: 600px) {
  header nav .wrapper {
    width: 70%;
  }
}
header nav 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;
}
header nav li {
  width: 23%;
  margin: 0 1%;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  header nav li {
    width: 24%;
  }
}
@media only screen and (max-width: 600px) {
  header nav li {
    margin: 1.5vw 0;
    width: 100%;
  }
}
header nav li:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
header nav li:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
header nav li:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
header nav li a {
  display: block;
  background-color: #fff;
  border-radius: 20px;
  padding: 15px;
  border: 5px solid #2EB6AA;
  color: #2EB6AA;
  -webkit-box-shadow: 7px 7px 0px #2eb6aa;
          box-shadow: 7px 7px 0px #2eb6aa;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 700;
}
@media only screen and (max-width: 1300px) {
  header nav li a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  header nav li a {
    padding: 1.5vw;
    font-size: 1.7vw;
    border: 0.5vw solid #2EB6AA;
    -webkit-box-shadow: 0.5vw 0.5vw 0px #2eb6aa;
            box-shadow: 0.5vw 0.5vw 0px #2eb6aa;
    border-radius: 2vw;
  }
}
@media only screen and (max-width: 600px) {
  header nav li a {
    font-size: 16px;
    border-radius: 3vw;
    -webkit-box-shadow: 1vw 1vw 0px #2eb6aa;
            box-shadow: 1vw 1vw 0px #2eb6aa;
  }
}
header nav li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #FFE200;
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
header nav li a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
header nav li .new {
  position: absolute;
  z-index: 2;
  top: -15px;
  left: -15px;
  background-color: #FF6C00;
  color: #fff;
  font-size: 16px;
  line-height: 60px;
  display: block;
  width: 60px;
  border-radius: 50%;
}
@media only screen and (max-width: 1024px) {
  header nav li .new {
    top: -2vw;
    left: -2vw;
    font-size: 1.2vw;
    line-height: 4vw;
    width: 4vw;
  }
}
@media only screen and (max-width: 600px) {
  header nav li .new {
    top: -1vw;
    left: -1vw;
    font-size: 2vw;
    line-height: 8vw;
    width: 8vw;
  }
}
header nav li .new.zoomin {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

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

main

************************************/
main {
  display: block;
  padding-top: 80px;
  position: relative;
  z-index: 1;
}
main section {
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  main section {
    margin-bottom: 6vw;
  }
}
@media only screen and (max-width: 600px) {
  main section {
    margin-bottom: 12vw;
  }
}
main section.backimage {
  padding-top: 100px;
  background-image: url("../images/sec_back.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media only screen and (max-width: 1024px) {
  main section.backimage {
    padding-top: 7vw;
  }
}
@media only screen and (max-width: 600px) {
  main section.backimage {
    padding-top: 10vw;
  }
}

#about .wrapper {
  position: relative;
  z-index: 1;
}
#about .about2.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;
}
#about .about2 .text {
  width: 45%;
}
@media only screen and (max-width: 1024px) {
  #about .about2 .text {
    width: 100%;
  }
}
#about .about2 .text h2 {
  text-align: left;
  background-image: url("../images/tensen_yellow.svg");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 730px;
  padding-bottom: 35px;
  padding-right: 40px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1024px) {
  #about .about2 .text h2 {
    text-align: center;
    padding-right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  #about .about2 .text h2 img {
    max-width: 300px;
  }
}
#about .about2 .text p {
  line-height: 2rem;
  padding-right: 5%;
}
@media only screen and (max-width: 1024px) {
  #about .about2 .text p {
    line-height: 1.8;
    text-align: center;
  }
}
#about .about2 .image {
  width: 55%;
}
@media only screen and (max-width: 1024px) {
  #about .about2 .image {
    width: 100%;
    margin-top: 3rem;
  }
}
#about .about2 .image img {
  border-radius: 10px;
}
#about .voice {
  padding-top: 5rem;
}
#about .voice.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;
}
#about .voice .text {
  width: 45%;
  padding-left: 5%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  #about .voice .text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    padding-left: 0%;
    margin-bottom: 2rem;
    text-align: left;
  }
}
#about .voice .text h3 {
  text-align: left;
  margin-bottom: 1rem;
}
#about .voice .text h3 img {
  width: 100%;
}
#about .voice .text h4 {
  color: #3B4043;
  font-size: 1.2rem;
  border-bottom: 3px solid #FFE200;
  padding-bottom: 7px;
  display: inline-block;
  margin-bottom: 1rem;
}
#about .voice .text p {
  line-height: 2rem;
}
@media only screen and (max-width: 600px) {
  #about .voice .text p {
    line-height: 1.8;
  }
}
#about .voice .image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 55%;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media only screen and (max-width: 600px) {
  #about .voice .image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}
#about .voice .image img {
  width: 100%;
  border-radius: 1rem;
}
#about .shokai {
  padding-top: 5rem;
}
#about .shokai.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;
}
#about .shokai .text {
  width: 65%;
  padding-right: 5%;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  #about .shokai .text {
    width: 100%;
    padding-right: 0%;
    text-align: left;
  }
}
#about .shokai .text h3 {
  width: 550px;
  margin: 0 0 1.5rem;
}
@media only screen and (max-width: 1024px) {
  #about .shokai .text h3 {
    width: 400px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  #about .shokai .text h3 {
    width: 100%;
  }
}
#about .shokai .text h3 img {
  width: 100%;
}
#about .shokai .text .waku {
  margin-bottom: 3rem;
}
#about .shokai .text h4 {
  color: #3B4043;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 1.2rem;
}
@media only screen and (max-width: 1024px) {
  #about .shokai .text h4 {
    text-align: left;
    border-bottom: 1px solid #2EB6AA;
  }
}
#about .shokai .text h4::before {
  position: absolute;
  top: 100%;
  left: 0px;
  width: 550px;
  height: 3px;
  background-color: #FFE200;
  content: "";
}
@media only screen and (max-width: 1024px) {
  #about .shokai .text h4::before {
    width: 100%;
  }
}
#about .shokai .text p {
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  #about .shokai .text p {
    text-align: left;
  }
}
#about .shokai .movie {
  width: 35%;
}
@media only screen and (max-width: 600px) {
  #about .shokai .movie {
    width: 100%;
    margin: 0 auto;
  }
}
#about .shokai .movie video {
  width: 100%;
  border: 1px solid #eee;
}
#about .logo {
  padding-top: 5rem;
}
#about .logo.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;
}
#about .logo .text {
  width: 60%;
  padding-left: 5%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  #about .logo .text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    padding-left: 0%;
    margin-bottom: 2rem;
    text-align: left;
  }
}
#about .logo .text h3 {
  text-align: left;
  margin-bottom: 1rem;
}
#about .logo .text h3 img {
  width: 100%;
}
#about .logo .text h4 {
  color: #3B4043;
  font-size: 1.2rem;
  border-bottom: 3px solid #FFE200;
  padding-bottom: 7px;
  display: inline-block;
  margin-bottom: 1rem;
}
#about .logo .text p {
  line-height: 2rem;
}
@media only screen and (max-width: 600px) {
  #about .logo .text p {
    line-height: 1.8;
  }
}
#about .logo .image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 40%;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media only screen and (max-width: 600px) {
  #about .logo .image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}
#about .logo .image img {
  width: 100%;
  border-radius: 1rem;
}

#rinoka .wrapper {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}
#rinoka .wrapper::before, #rinoka .wrapper::after {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  background-image: url("../images/dotsen_green.svg");
  background-repeat: repeat-x;
  background-size: 1300px;
}
#rinoka .wrapper::before {
  top: 0;
}
#rinoka .wrapper::after {
  bottom: 0;
}
#rinoka .about.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;
}
#rinoka .about .text {
  width: 45%;
}
@media only screen and (max-width: 1024px) {
  #rinoka .about .text {
    width: 100%;
  }
}
#rinoka .about .text h2 {
  text-align: left;
  background-image: url("../images/tensen_green.svg");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 730px;
  padding-bottom: 35px;
  padding-right: 40px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1024px) {
  #rinoka .about .text h2 {
    text-align: center;
    padding-right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  #rinoka .about .text h2 img {
    max-width: 300px;
  }
}
#rinoka .about .text p {
  line-height: 2rem;
  padding-right: 5%;
}
@media only screen and (max-width: 1024px) {
  #rinoka .about .text p {
    line-height: 1.8;
  }
}
#rinoka .about .image {
  width: 55%;
}
@media only screen and (max-width: 1024px) {
  #rinoka .about .image {
    width: 100%;
    margin-top: 3rem;
  }
}
#rinoka .about .image img {
  border-radius: 10px;
}

#etc h3 {
  width: 100%;
  max-width: 550px;
  margin: 0 auto 1.5rem;
}
@media only screen and (max-width: 1024px) {
  #etc h3 {
    max-width: 450px;
  }
}
#etc h3 img {
  width: 100%;
}
#etc p {
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  #etc p {
    text-align: left;
  }
}
#etc .suisho {
  width: 100%;
  text-align: center;
}
#etc .shoborikata {
  width: 100%;
  margin-top: 5rem;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #etc .shoborikata {
    margin-top: 5vw;
  }
}
@media only screen and (max-width: 600px) {
  #etc .shoborikata {
    margin-top: 10vw;
  }
}
#etc .shoborikata .waku {
  margin-bottom: 3rem;
}
#etc .shoborikata h4 {
  color: #2EB6AA;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 1.2rem;
}
@media only screen and (max-width: 1024px) {
  #etc .shoborikata h4 {
    text-align: left;
    border-bottom: 1px solid #2EB6AA;
  }
}
#etc .shoborikata h4::before {
  position: absolute;
  top: 100%;
  left: 0px;
  right: 0;
  margin: auto;
  width: 150px;
  height: 2px;
  background-color: #2EB6AA;
  content: "";
}
@media only screen and (max-width: 1024px) {
  #etc .shoborikata h4::before {
    display: none;
  }
}
#etc .shoborikata .flow {
  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;
}
#etc .shoborikata .flow .flow_waku {
  width: 28%;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  #etc .shoborikata .flow .flow_waku {
    width: 100%;
  }
}
#etc .shoborikata .flow .yaji {
  width: 8%;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  #etc .shoborikata .flow .yaji {
    width: 100%;
    margin: 15px 0;
  }
}
#etc .shoborikata .flow .pic {
  width: 90%;
  margin: 0 auto 10px;
  max-width: 200px;
}
#etc .shoborikata .flow p {
  line-height: 1.4;
  font-size: 0.85rem;
}
@media only screen and (max-width: 1024px) {
  #etc .shoborikata .flow p {
    text-align: center;
  }
}

.kihon h2 {
  text-align: center;
  margin: 0 auto 2rem;
}
.kihon .lead p {
  line-height: 2;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .kihon .lead p {
    line-height: 1.8;
    text-align: left;
  }
}
.kihon .image {
  margin: 2rem 0;
}
.kihon dl dt {
  border: 2px solid #2EB6AA;
  color: #2EB6AA;
  border-radius: 4px;
  padding: 2px;
  width: 250px;
  text-align: center;
  margin-bottom: 0.3rem;
  font-weight: 900;
}
@media only screen and (max-width: 600px) {
  .kihon dl dt {
    width: 200px;
  }
}
.kihon dl dd {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.kihon dl dd li {
  padding-left: 1.2rem;
  position: relative;
  list-style: none;
}
.kihon dl dd li::before {
  position: absolute;
  top: 0;
  left: 0px;
  content: "●";
}
.kihon .bt {
  max-width: 810px;
  width: 80%;
  margin: 70px auto 0;
}
@media only screen and (max-width: 1024px) {
  .kihon .bt {
    margin: 5vw auto 0;
  }
}
@media only screen and (max-width: 600px) {
  .kihon .bt {
    width: 100%;
  }
}
.kihon .bt a {
  border: 5px solid #6EBA44;
  border-radius: 20px;
  background-color: #fff;
  color: #6EBA44;
  font-size: 1.15rem;
  font-weight: 900;
  display: block;
  padding: 12px;
  text-align: center;
  margin: 0 0 25px;
  -webkit-box-shadow: 8px 8px 0px #6EBA44;
          box-shadow: 8px 8px 0px #6EBA44;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .kihon .bt a {
    padding: 1.5vw;
    font-size: 2vw;
    border: 0.5vw solid #6EBA44;
    -webkit-box-shadow: 0.5vw 0.5vw 0px #6EBA44;
            box-shadow: 0.5vw 0.5vw 0px #6EBA44;
    border-radius: 2vw;
    margin: 0 0 1.5vw;
  }
}
@media only screen and (max-width: 600px) {
  .kihon .bt a {
    padding: 3vw;
    font-size: 17px;
    border-radius: 3vw;
    border: 0.7vw solid #6EBA44;
    -webkit-box-shadow: 1vw 1vw 0px #6EBA44;
            box-shadow: 1vw 1vw 0px #6EBA44;
    margin: 0 0 3vw;
  }
}
.kihon .bt a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #FFE200;
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
.kihon .bt a:hover::before {
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.kihon .bt a:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#campaign h2 {
  max-width: 755px;
}
#campaign h2 img {
  width: 100%;
}
#campaign .insta_link {
  text-align: center;
  margin: 2rem 0;
}
#campaign .insta_link .qr {
  display: block;
  margin: 0 auto;
  width: 150px;
}
#campaign .insta_link p {
  line-height: 2;
  text-align: center;
}
#campaign .insta_link p span {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid #ccc;
  border-radius: 2em;
  margin: 4px;
}
#campaign .insta {
  margin: 5rem 0 0;
}
#campaign .insta h2 {
  max-width: 720px;
  margin: 0 auto 3rem;
}
@media only screen and (max-width: 1024px) {
  #campaign .insta h2 {
    max-width: 540px;
  }
}

footer {
  background: #6BCBC3;
  padding: 4rem 0;
  color: #fff;
}
footer a {
  color: #fff;
}
footer .wrapper {
  position: relative;
}
@media only screen and (max-width: 600px) {
  footer .text {
    text-align: center;
  }
}
footer .text h2 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  footer .text h2 {
    font-size: 1rem;
  }
}
footer .text h2 .pc {
  display: inline-block;
}
@media only screen and (max-width: 1024px) {
  footer .text h2 .pc {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  footer .text h2 .sp {
    display: inline-block;
  }
}
@media only screen and (max-width: 600px) {
  footer .text h2 .sp {
    display: block;
  }
}
footer .text p {
  letter-spacing: 0.08em;
}
footer .privacy {
  position: absolute;
  right: 0;
  top: 0;
  width: 240px;
  text-align: right;
  font-size: 15px;
}
@media only screen and (max-width: 1024px) {
  footer .privacy {
    font-size: 0.85rem;
  }
}
@media only screen and (max-width: 600px) {
  footer .privacy {
    position: relative;
    margin: 2rem 0;
    width: 100%;
    text-align: center;
  }
}
footer .privacy a {
  text-decoration: underline;
}
footer .copyright {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  padding: 2rem 0 0;
}

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

PageUP

************************************/
#pageup {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 5px;
  right: 5px;
  z-index: 10;
  font-size: 8px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#pageup.none {
  display: none;
}
#pageup a {
  width: 50px;
  padding: 36px 0 4px 0;
  position: relative;
  display: block;
  text-decoration: none;
  line-height: 100%;
  color: #555;
}
#pageup a::before {
  position: absolute;
  top: 26px;
  left: 0px;
  right: 0;
  margin: auto;
  border-top: 1px solid #555;
  border-left: 1px solid #555;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

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

.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: 3px;
  -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: #3B4043;
}

.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: 60px 8%;
}

.drawer-menu h2 {
  max-width: 400px;
  width: 100%;
  margin: 0 auto 20px;
}
@media only screen and (max-width: 1024px) {
  .drawer-menu h2 {
    max-width: 350px;
  }
}
@media only screen and (max-width: 600px) {
  .drawer-menu h2 {
    max-width: 300px;
  }
}
.drawer-menu h2 a {
  color: #fff;
}

.drawer-menu li {
  margin: 0 0 0px;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px dashed #eee;
  position: relative;
}
.drawer-menu li a {
  display: block;
  padding: 15px 0;
  color: #fff;
}
.drawer-menu li a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  color: #2EB6AA;
  content: "";
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.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 .insta {
  margin: 10px 0;
}
.drawer-menu .insta a {
  border: 1px solid #2EB6AA;
  border-radius: 5px;
  display: block;
  padding: 10px;
}

.drawer-menu .tel {
  margin: 15px 0 0;
  background-color: #2EB6AA;
  border-radius: 5px;
  color: #fff;
  font-size: 2rem;
}
.drawer-menu .tel a {
  color: #fff;
  display: block;
  padding: 12px 0;
}
/*# sourceMappingURL=common25.css.map */