@charset "UTF-8";
/*------------------------------------------------------------
 全体設定                                           
------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  line-height: 1.4;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  height: auto;
}

@media screen and (min-width: 481px) {
  body {
    font-size: 14pt;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  html {
    touch-action: manipulation;
  }
  body {
    width: 100vw;
    height: 100%;
    font-size: 4vw;
    overflow-x: hidden;
  }
  .overflow {
    position: relative;
    overflow: hidden;
  }
  .pc {
    display: none;
  }
}
a {
  color: #1b1464;
  text-decoration: none;
  position: relative;
}

a:hover {
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  opacity: 0.6;
}

strong {
  color: #1b1464;
  font-weight: bold;
}

.note {
  line-height: 1.2em;
  color: #4d4d4d;
}

@media screen and (min-width: 481px) {
  .note {
    font-size: 10pt !important;
  }
}
@media screen and (max-width: 480px) {
  .note {
    font-size: 3.6vw !important;
    margin: 2vw 0 0;
  }
}
.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.num {
  background: #000;
  border-radius: 50%;
  font-weight: bold;
  color: #fff;
}

@media screen and (min-width: 481px) {
  .num {
    font-size: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto 5px;
  }
}
@media screen and (max-width: 480px) {
  .num {
    font-size: 7vw;
    width: 10vw;
    height: 10vw;
    line-height: 10vw;
    margin: 0 auto;
  }
}
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

ul {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}

li {
  box-sizing: border-box;
  text-align: center;
}

li:last-child {
  margin-right: 0;
}

li:after {
  box-sizing: border-box;
  position: absolute;
  content: "";
  vertical-align: middle;
}

li:last-child:after {
  border: none;
}

/*--------------------コンテナ--------------------*/
.container {
  box-sizing: border-box;
  margin: 0 auto;
  text-align: justify;
  padding: 0;
}

@media screen and (min-width: 481px) {
  .container {
    width: 920px;
    position: relative;
  }
}
@media screen and (max-width: 480px) {
  .container {
    width: 100%;
  }
}
.wrapper {
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
  padding: 0;
}

/*--------------------見出し--------------------*/
h2 {
  line-height: 1.4;
  text-align: left;
  font-weight: normal;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

h2:before {
  content: "";
  /* 空の要素を作る */
  border-radius: 50%;
  /* 丸くする */
  border: 4px solid #bbe3fb;
  /* 枠線指定 */
  display: block;
  /* ブロック要素にする */
  position: absolute;
  /* 位置調整 */
  right: 0;
  /* 位置調整 */
  top: 0;
  /* 位置調整 */
  z-index: -1;
  /* 重なり調整 */
}

h2:after {
  content: "";
  /* 空の要素を作る */
  border-radius: 50%;
  /* 丸くする */
  border: 2px solid #bbe3fb;
  /* 枠線指定 */
  display: block;
  /* ブロック要素にする */
  position: absolute;
  /* 位置調整 */
  z-index: -1;
  /* 重なり調整 */
}

h3 {
  box-sizing: border-box;
  color: #1b1464;
  margin: 0;
}

h4 {
  color: #000;
  line-height: 1em;
}

h4 span {
  font-weight: normal;
}

@media screen and (min-width: 481px) {
  h2 {
    font-size: 36px;
    margin: 10px 0 45px;
    padding-top: 20px;
    z-index: 10;
  }
  h2:before {
    width: 82px;
    /* 幅指定 */
    height: 82px;
    /* 高さ指定 */
    left: 30px;
    /* 位置調整 */
    right: 0;
    /* 位置調整 */
    top: 0;
    /* 位置調整 */
  }
  h2:after {
    width: 70px;
    /* 幅指定 */
    height: 70px;
    /* 高さ指定 */
    left: 38px;
    /* 位置調整 */
    top: 7px;
    /* 位置調整 */
  }
  h2 span {
    font-size: 18px;
  }
  h3 {
    font-size: 24pt;
  }
  h4 {
    font-size: 20px;
    margin: 10px 0 0;
  }
  h4 span {
    font-size: 10pt;
  }
  h5 {
    background: #6edb8f;
    display: inline-block;
    padding: 0.5em 1.5em;
    border-radius: 50px;
    font-size: 18px;
    color: #fff;
    text-align: left;
    float: right;
    margin: 0;
  }
  h5::after {
    font-family: Fontawesome;
    content: "\f054";
    position: relative;
    right: -10px;
  }
}
@media screen and (max-width: 480px) {
  h2 {
    font-size: 8vw;
    margin: 0 0 7vw;
    padding-top: 5vw;
  }
  h2:before {
    width: 18vw;
    /* 幅指定 */
    height: 18vw;
    /* 高さ指定 */
    border-radius: 50%;
    /* 丸くする */
    left: 8vw;
    /* 位置調整 */
    right: 0;
    /* 位置調整 */
    top: 0;
    /* 位置調整 */
  }
  h2:after {
    width: 15vw;
    /* 幅指定 */
    height: 15vw;
    /* 高さ指定 */
    left: 10vw;
    /* 位置調整 */
    top: 2vw;
    /* 位置調整 */
  }
  h2 span {
    display: block;
    font-size: 6vw;
  }
  h3 {
    font-size: 6vw;
  }
  h4 {
    font-size: 4.5vw;
    margin: 2vw 0;
  }
  h4 span {
    font-size: 10pt;
  }
  h5 {
    background: #6edb8f;
    display: inline-block;
    padding: 0.5em 1.5em;
    border-radius: 50px;
    font-size: 4vw;
    color: #fff;
    text-align: left;
    float: right;
    margin: 0;
  }
  h5::after {
    font-family: Fontawesome;
    content: "\f054";
    position: relative;
    right: -10px;
  }
}
/*--------------------バナー--------------------*/
@media screen and (min-width: 481px) {
  .banner {
    box-sizing: border-box;
    margin: 20px 0;
  }
  .banner ul {
    display: flex;
    justify-content: space-between;
  }
  .banner ul li {
    margin: 0 !important;
    width: 32%;
    aspect-ratio: 320/90;
  }
  .banner a {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    line-height: 3em;
    display: block;
  }
  .banner a img {
    width: 100%;
    height: 100%;
  }
  .banner a:nth-child(2) {
    margin: 0;
  }
  .banner a:last-child {
    margin: 0;
  }
  .banner ul li {
    margin: 0 20px 0 0;
  }
  .banner ul li:nth-child(3n) {
    margin: 0;
  }
  .banner ul li:after {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .banner {
    box-sizing: border-box;
    margin: 5vw 0;
  }
  .banner a {
    margin: 0 auto 0;
    padding: 0;
    width: 80vw;
    line-height: 3em;
  }
  .banner ul li {
    margin: 0 auto;
  }
  .banner ul li:after {
    display: none;
  }
  .banner ul li img {
    width: 320px;
  }
}
/*--------------------ボタン--------------------*/
.btn {
  box-sizing: border-box;
  background: #1b1464;
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  float: left;
}

.btn i {
  margin: 0;
}

.btn after {
  font-family: Fontawesome;
  content: "\f054";
  position: relative;
}

.btn:hover {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}

@media screen and (min-width: 481px) {
  .btn {
    width: 300px;
    margin: 30px 85px;
    font-size: 20px;
    padding: 15px;
  }
  .btn i {
    padding-right: 10px;
    font-size: 24px;
  }
  .btn after {
    right: -10px;
  }
  .linkbtn {
    margin-left: 20px;
  }
}
@media screen and (max-width: 480px) {
  .btn {
    width: 80%;
    margin: 2vw 10%;
    font-size: 6vw;
    padding: 5vw;
  }
  .btn i {
    padding-right: 10px;
    font-size: 24px;
  }
  .btn after {
    right: -10px;
  }
  .linkbtn {
    margin: 3vw 0;
  }
}
@-webkit-keyframes push {
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes push {
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.push:hover {
  -webkit-animation-name: push;
          animation-name: push;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

/*------------------------------------------------------------
 ヘッダー                                          
------------------------------------------------------------*/
.header {
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
  background: #fff;
  margin: 0;
}

.header .wrapper {
  position: relative;
}

@media screen and (min-width: 481px) {
  .header {
    min-width: 1000px;
    padding: 0 0 0 0;
  }
}
@media screen and (max-width: 480px) {
  .header {
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 101;
  }
}
/*--------------------タイトル--------------------*/
.header .title {
  box-sizing: border-box;
  background: #1b1464;
  margin: 0;
}

@media screen and (min-width: 481px) {
  .header h1 {
    box-sizing: border-box;
    margin: 0;
    padding: 5px 0 0;
    font-size: 11px;
    font-weight: normal;
    color: #fff;
  }
}
@media screen and (max-width: 480px) {
  .header h1 {
    display: none;
    /*非表示*/
  }
}
/*--------------------ロゴ--------------------*/
.header .logo {
  box-sizing: border-box;
  margin-top: 0px;
}

.header .logo a {
  text-indent: -9999px;
  background: url(../img/logo.gif) no-repeat;
  display: block;
}

@media screen and (min-width: 481px) {
  .header .logo {
    padding: 15px 0;
    float: left;
  }
  .header .logo a {
    background-size: 400px;
    width: 400px;
    height: 60px;
  }
}
@media screen and (max-width: 480px) {
  .header .logo {
    width: 100%;
    height: 12vw;
    padding: 2vw 3vw;
  }
  .header .logo a {
    background-size: 56vw;
    height: 9vw;
  }
}
/*--------------------運営会社--------------------*/
@media screen and (min-width: 481px) {
  .header .management {
    position: absolute;
    top: 32px;
    right: 160px;
    margin: 0;
    padding: 0;
    color: #828282;
    font-weight: bold;
    font-size: 14px;
    line-height: 2em;
    text-align: center;
  }
  .header .management a {
    display: inline-block;
    width: 180px;
    margin-left: 0.3em;
    background: url(../img/pkb.png) no-repeat;
    background-size: 180px auto;
    text-indent: -9999px;
  }
  .header .management span {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .header .management {
    position: absolute;
    top: 3.5vw;
    right: 2vw;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .header .management a {
    display: inline-block;
    width: 30vw;
    margin: 1vw 7vw 0 0;
    background: url(../img/pkb.png) no-repeat;
    background-size: 25vw auto;
    text-indent: -9999px;
  }
  .header .management span {
    display: none;
    /*非表示*/
  }
  .whight {
    background: #fff;
  }
}
/*--------------------問合せ先--------------------*/
@media screen and (min-width: 481px) {
  .header .tel {
    position: absolute;
    top: 25px;
    right: 0;
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 14px;
    color: #828282;
    line-height: 1.5em;
  }
  .header .tel strong {
    font-size: 18px;
    color: #828282;
  }
}
@media screen and (max-width: 480px) {
  .header .tel {
    display: none;
    /*非表示*/
  }
}
/*------------------------------------------------------------
 メニュー                                        
------------------------------------------------------------*/
@media screen and (min-width: 481px) {
  .gmenul {
    box-sizing: border-box;
    min-width: 1000px;
  }
  .gmenu ul {
    margin: 0;
    padding: 5px 0 0 0;
    list-style-type: none;
  }
  .gmenu li {
    float: left;
  }
  .gmenu li a {
    position: relative;
    display: block;
    color: #fff;
    font-weight: bold;
    font-size: 16pt;
    text-decoration: none;
    text-align: center;
    margin: 0 50px 5px 0;
  }
  .gmenu li:after {
    border: none;
  }
  .gmenu li a:before {
    font-family: FontAwesome;
    content: "\f0da";
    margin-right: 5px;
    color: #faed00;
  }
  .gmenu li a:hover {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    text-decoration: underline;
  }
  .fixed {
    position: fixed;
    top: 0;
    z-index: 101;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  nav.globalMenuSp {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 2;
    top: 0;
    left: 0;
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
  }
  nav.globalMenuSp ul {
    background: #666;
    margin: 0 auto;
    padding: 12vw 0 0;
    width: 100%;
  }
  nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #fff;
  }
  nav.globalMenuSp ul li:after {
    display: none;
  }
  nav.globalMenuSp ul li:first-child {
    padding-top: 0;
    border-top: 1px dotted #fff;
  }
  /* 最後はラインを描かない */
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li:nth-child(n+9) {
    background: #999;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
  }
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    transform: translateY(0%);
  }
  .navToggle {
    box-sizing: border-box;
    display: block;
    position: fixed;
    /* bodyに対しての絶対位置指定 */
    right: 0;
    top: 0;
    background: #666;
    width: 12vw;
    height: 12vw;
    padding: 1vw;
    cursor: pointer;
    z-index: 3;
    text-align: center;
  }
  .navToggle span {
    box-sizing: border-box;
    display: block;
    position: absolute;
    /* .navToggleに対して */
    width: 8vw;
    border-bottom: solid 3px #fff;
    transition: 0.35s ease-in-out;
    left: 2vw;
  }
  .navToggle span:nth-child(1) {
    top: 2vw;
  }
  .navToggle span:nth-child(2) {
    top: 4vw;
  }
  .navToggle span:nth-child(3) {
    top: 6vw;
  }
  .navToggle span:nth-child(4) {
    border: none;
    color: #fff;
    font-size: 2vw;
    font-weight: bold;
    top: 8vw;
  }
  /* 最初のspanをマイナス45度に */
  .navToggle.active span:nth-child(1) {
    top: 4vw;
    left: 2vw;
    transform: rotate(-45deg);
  }
  /* 2番目と3番目のspanを45度に */
  .navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 4vw;
    transform: rotate(45deg);
  }
}
/*------------------------------------------------------------
 右下 ページトップ                                   
------------------------------------------------------------*/
#page_top {
  position: fixed;
  background: #1b1464;
  border-radius: 50%;
  filter: drop-shadow(3px 3px 3px #999);
}

#page_top a {
  position: relative;
  display: block;
  text-decoration: none;
}

#page_top a::before {
  font-family: FontAwesome;
  content: "\f102";
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

@media screen and (min-width: 481px) {
  #page_top {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 50px;
    opacity: 0.6;
  }
  #page_top a {
    width: 50px;
    height: 40px;
  }
  #page_top a::before {
    font-size: 25px;
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 480px) {
  #page_top {
    width: 12vw;
    height: 12vw;
    right: 2vw;
    bottom: 2vw;
    z-index: 90;
  }
  #page_top a {
    width: 12vw;
    height: 12vw;
  }
  #page_top a::before {
    font-size: 5.5vw;
    width: 6vw;
    height: 6vw;
    line-height: 1em;
  }
}
/*------------------------------------------------------------
 コンテンツ                                        
------------------------------------------------------------*/
/*-------------------イメージスライダー---------------------*/
.image img {
  width: 100%;
  text-align: center;
}

.slider {
  box-sizing: border-box;
  position: relative;
  background: #fff;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 481px) {
  .image {
    max-width: 1400px;
    min-width: 1000px;
    margin: 0 auto;
  }
  .image .wrapper {
    padding: 0 0 0 500px;
  }
  .image p {
    text-align: left;
    width: 500px;
    position: relative;
    font-size: 8pt !important;
    margin: 0;
  }
  .sparrow {
    width: 30px !important;
  }
  .about .cocolink {
    text-align: left;
    max-width: 1400px;
    margin: 0 auto 1em;
    font-weight: 600;
    border: 2px solid #6ccbf4;
    padding: 30px 35px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .about .cocolink a {
    text-decoration: underline;
    color: #6ccbf4;
  }
}
.top_bnr {
  width: 100%;
  margin: 20px 0;
  margin-bottom: 55px;
}
.top_bnr a {
  display: block;
  width: 100%;
  height: 100%;
}
.top_bnr a img {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .top_bnr a img img {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .slider {
    position: relative;
    top: 12vw;
    margin: 0 auto 10vw;
  }
  .image {
    position: relative;
    width: 100vw;
  }
  .image .wrapper {
    padding: 0 5vw;
  }
  .image p {
    text-align: left;
    position: relative;
    font-size: 3.5vw !important;
    margin: 0;
  }
  .sparrow {
    width: 3vw !important;
  }
  .about .cocolink {
    text-align: left;
    max-width: 1400px;
    margin: 0 auto 1em;
    font-weight: 600;
    border: 2px solid #6ccbf4;
    padding: 30px 35px;
    margin-top: 14px;
    margin-bottom: 15px;
  }
  .about .cocolink a {
    text-decoration: underline;
    color: #6ccbf4;
  }
}
/*----------NFCとは-------------*/
.about {
  box-sizing: border-box;
  background-color: #fff;
  margin: 0;
}
.about .about_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.about .about_box .text {
  width: 70%;
}
.about .about_box .text p {
  font-size: 16px;
}
.about .about_box .img {
  width: 27%;
}
.about .about_box .img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 480px) {
  .about .about_box {
    width: 100%;
    flex-direction: column-reverse;
    align-items: center;
  }
  .about .about_box .text,
.about .about_box .img {
    width: 100%;
  }
  .about .about_box .text img,
.about .about_box .img img {
    width: 60%;
    max-width: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .about .about_box .img {
    text-align: center;
  }
}

.imgl {
  float: left;
}

.imgr {
  float: right;
}

@media screen and (min-width: 481px) {
  .about {
    padding: 5px 0 20px;
    width: 100%;
  }
  .about p {
    font-size: 14pt;
    margin: 0 0 20px 0;
  }
  .about p span {
    vertical-align: super;
    font-size: 8pt;
  }
  .imgl {
    margin-right: 20px;
  }
  .imgr {
    margin-left: 20px;
  }
}
@media screen and (max-width: 480px) {
  .about {
    padding: 5vw;
  }
  .about p {
    margin: 0 0 5vw 0;
  }
  .about p span {
    vertical-align: super;
    font-size: 2vw;
  }
  .imgl {
    margin-right: 4vw;
  }
  .imgr {
    width: 100%;
  }
}
/* 企画例 */
#planning {
  padding-top: 3em !important;
  margin-top: 0 !important;
}
@media screen and (max-width: 480px) {
  #planning {
    padding: 0 5vw;
  }
}

.planning_list li {
  background: white;
  border-radius: 10px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1);
  padding: 3em 4em;
  margin-bottom: 2em;
  display: block;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .planning_list li {
    padding: 6vw;
  }
}
.planning_list li::after, .planning_list li::before {
  display: none;
}
.planning_list li:last-child {
  margin: 0;
}
.planning_list li .planning_box {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  display: block;
}
.planning_list li .planning_box h3,
.planning_list li .planning_box p {
  text-align: left;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 480px) {
  .planning_list li .planning_box h3 {
    font-size: 22px;
  }
}
.planning_list li .planning_box p {
  font-size: 16px;
  margin-bottom: 1.5em;
}
.planning_list li .planning_box .buttons {
  margin-top: 1em;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .planning_list li .planning_box .buttons {
    flex-direction: column;
  }
}
.planning_list li .planning_box .buttons a {
  width: 49%;
  border-radius: 100px;
  padding: 15px 0 17px;
  border: 1px solid #1b1464;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .planning_list li .planning_box .buttons a {
    width: 100%;
    margin-bottom: 6px;
  }
  .planning_list li .planning_box .buttons a:last-child {
    margin: 0;
  }
}
.planning_list li .planning_box .buttons a span {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  width: 85%;
  padding-left: 14%;
  text-align: center;
}
.planning_list li .planning_box .buttons a i {
  margin-left: auto;
  width: 15%;
}
.planning_list li .planning_box .buttons a.button2 {
  background: #1b1464;
}
.planning_list li .planning_box .buttons a.button2 span {
  color: white;
}
.planning_list li .planning_box .buttons a.button2 i {
  color: #faed00;
}

/*--------NFC×モバイルスタンプラリーキャンペーン----------*/
.mstr {
  box-sizing: border-box;
  margin: 0;
}

.mstr h3 {
  color: #6ccbf4;
}

.mstr h5 {
  background: #6ccbf4;
}

.mstr li p {
  font-weight: bold;
}

.numstr {
  background: #6ccbf4;
}

@media screen and (min-width: 481px) {
  .mstr {
    padding: 5px 0 20px;
    margin: 0;
  }
  .mstr h3 {
    margin: 30px 0 0;
  }
  .mstr li p {
    font-size: 12pt;
    padding: 10px 0;
  }
  .mstr ul:nth-of-type(1) li {
    width: 180px;
    margin-right: 36px;
  }
  .mstr ul:nth-of-type(1) li:after {
    margin: 110px 0 0 35px;
  }
  .mstr ul:nth-of-type(2) li {
    width: 147px;
    margin-right: 15px;
  }
  .mstr ul:nth-of-type(2) li:after {
    margin: 110px 0 0 9px;
  }
  .mstr ul:nth-of-type(3) li {
    width: 289px;
    margin-right: 36px;
  }
  .mstr ul:nth-of-type(3) li:after {
    margin: 110px 0 0 53px;
  }
  .mstr ul:nth-of-type(1) li:first-child,
.mstr ul:nth-of-type(2) li:first-child,
.mstr ul:nth-of-type(3) li:first-child {
    width: 350px;
  }
  .mstr ul:nth-of-type(1) li:last-child,
.mstr ul:nth-of-type(2) li:last-child,
.mstr ul:nth-of-type(3) li:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .mstr {
    padding: 5vw;
    margin: 0;
  }
  .mstr h3 {
    margin: 5vw 0 0;
  }
  .mstr li {
    margin: 3vw 0 5vw 0;
    padding: 0;
    width: 50%;
  }
  .mstr li:first-child {
    width: 100%;
    margin-bottom: 20vw;
  }
  .mstr li:after {
    display: none;
  }
  .mstr li p {
    font-size: 4vw;
    padding: 3vw 0;
  }
  .mstr li img {
    width: 80%;
  }
  .mstr .note {
    position: relative;
    top: -225vw;
    margin-bottom: -20vw;
  }
  .mstr .note:nth-of-type(6) {
    position: relative;
    top: -122vw;
    margin-bottom: -20vw;
  }
  .mstr h5 {
    margin: 3vw 0 0;
  }
}
/*------------------------------------------------------------
 費用と納期                                     
------------------------------------------------------------*/
.price {
  box-sizing: border-box;
  margin: 0;
}

.price li {
  background: url("../img/price_bg.png") no-repeat;
  display: flex;
  /* 子要素をflexboxで揃える */
  flex-direction: column;
  /* 子要素をflexboxにより縦方向に揃える */
  justify-content: center;
  /* 子要素をflexboxにより中央に配置する */
  align-items: center;
}

.price li:after {
  display: none;
}

.price li p {
  box-sizing: border-box;
  font-weight: bold;
}

.price strong {
  color: #c1272d;
}

@media screen and (min-width: 481px) {
  .price {
    margin: 0 0 50px;
  }
  .price ul {
    display: flex;
    margin: 1em 0;
    justify-content: space-between;
  }
  .price li {
    width: 300px;
    max-width: 32%;
    height: auto;
    aspect-ratio: 1/1;
    padding: 0 40px;
    background-size: 100%;
    font-size: 18pt;
    font-weight: bold;
  }
  .price li:last-child {
    margin-right: 0;
  }
  .price li div {
    font-weight: normal;
  }
  .price li span {
    vertical-align: super;
    font-size: 8pt;
  }
  .price li strong {
    font-size: 24pt;
  }
}
@media screen and (max-width: 480px) {
  .price {
    padding: 5vw;
  }
  .price li {
    width: 100vw;
    height: 48vw;
    margin: 0 auto;
    padding: 0 16vw;
    text-align: left;
    background-size: 50%;
    background-position: center;
    font-size: 4.5vw;
  }
  .price li p {
    font-size: 4vw;
  }
  .price li img {
    width: 90%;
  }
  .price li span {
    vertical-align: super;
    font-size: 2.5vw;
  }
  .price strong {
    font-size: 6vw;
  }
}
/*--------リンク----------*/
.button div div {
  box-sizing: border-box;
  background: #1b1464;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  margin: 0 auto 20px;
}

.button div div:after {
  font-family: Fontawesome;
  content: "\f054";
  position: relative;
  right: -10px;
}

@media screen and (min-width: 481px) {
  .button div div {
    width: 80%;
    font-size: 24px;
    border-radius: 30px;
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .button div div {
    width: 90%;
    font-size: 6vw;
    border-radius: 7vw;
    padding: 3vw;
  }
}
/*------------------------------------------------------------
 商標                                     
------------------------------------------------------------*/
.trademark {
  box-sizing: border-box;
}

.trademark p {
  text-align: justify;
}

@media screen and (min-width: 481px) {
  .trademark {
    margin: 0 0 50px;
  }
  .trademark p {
    font-size: 0.9rem;
  }
  .trademarkpc {
    text-align: right !important;
  }
}
@media screen and (max-width: 480px) {
  .trademark {
    padding: 0 5vw 5vw;
  }
  .trademark p {
    font-size: 3vw;
  }
}
/*------------------------------------------------------------
 Thanksページ                                     
------------------------------------------------------------*/
@media screen and (max-width: 480px) {
  .thanks {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 3.8vw;
    padding: 5vw;
    margin-top: 18vw;
  }
}
@media screen and (min-width: 481px) {
  #about,
#planning,
#price,
#faq,
#inquiry {
    margin-top: -50px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 480px) {
  #about,
#planning,
#price,
#faq,
#inquiry {
    margin-top: -20vw;
    padding-top: 20vw;
  }
}
/*------------------------------------------------------------
 モーダル                                  
------------------------------------------------------------*/
@media screen and (min-width: 481px) {
  .popupModal1 {
    margin: 0 0 70px;
  }
}
@media screen and (max-width: 480px) {
  .popupModal1 {
    margin: 0 0 15vw;
  }
}
.popupModal1 > input {
  /* ラジオボックス非表示 */
  display: none;
}

.popupModal1 > input:nth-child(1) + label {
  cursor: pointer;
}

.modalPopup2 {
  /* 初期設定 ポップアップ非表示 */
  display: none;
}

.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 {
  /* ラジオ１ チェックでポップアップ表示 */
  display: block;
  z-index: 998;
  position: fixed;
  width: 90%;
  height: 80%;
  left: 50%;
  top: 50%;
  margin-top: 30px;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 10px 20px;
  overflow: hidden;
}

@media screen and (min-width: 481px) {
  .popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 {
    width: 880px;
    height: 650px;
    padding: 30px;
  }
  .popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label {
    left: 50% !important;
    top: 50% !important;
    margin-left: 360px !important;
    margin-top: 330px !important;
  }
}
@media screen and (max-width: 480px) {
  .popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 {
    width: 100%;
    height: 100vw;
    padding: 0;
  }
  .popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label {
    left: 50% !important;
    top: 50% !important;
    margin-left: 30vw !important;
    margin-top: 40vw !important;
  }
}
.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 > div {
  /* */
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 > div > iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 > div > img {
  /* ポップアップの中の要素 */
  max-width: 100%;
}

.popupModal1 > input:nth-child(1) + label ~ label {
  display: none;
  /* ラジオ１ 以外のラベルを初期は非表示 */
}

.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 997;
  text-indent: -999999px;
  overflow: hidden;
}

@media screen and (min-width: 481px) {
  .popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label {
    display: inline-block;
    position: fixed;
    z-index: 999;
    color: #999;
    font-size: 14px;
    font-weight: bold;
    vertical-align: middle;
  }
  .popupModal1 span {
    font-size: 28px;
    font-weight: bold;
    vertical-align: -2px;
  }
}
@media screen and (max-width: 480px) {
  .popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label {
    display: inline-block;
    position: fixed;
    z-index: 999;
    color: #999;
    font-size: 3vw;
    font-weight: bold;
    vertical-align: middle;
  }
  .popupModal1 span {
    font-size: 6vw;
    font-weight: bold;
    vertical-align: -2px;
  }
}
.popupModal1 > input:nth-child(1) + label + input:nth-child(3):checked + label + input:nth-child(5) + label + .modalPopup2,
.popupModal1 > input:nth-child(1) + label + input:nth-child(3) + label + input:nth-child(5):checked + label + .modalPopup2 {
  /* ラジオ２と３ どっちかチェックでポップアップ非表示 */
  display: none;
}

.modalPopup2 {
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.popupModal1 .modalTitle {
  padding-bottom: 0.5em;
  margin: 0.5em 0;
  border-bottom: 1px solid #ccc;
  color: #999;
  font-weight: bold;
}

.popupModal1 .modalMain {
  color: #222;
  text-align: center;
  font-size: 14px;
  line-height: 1.8em;
}

@media screen and (max-width: 480px) {
  .popupModal1 img {
    width: 100%;
  }
}
/*------------------------------------------------------------*/
/* テレワーク                                                 */
/*------------------------------------------------------------*/
.telework {
  box-sizing: border-box;
  width: 100%;
  margin: 50px 0;
  padding: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #FF6347;
  border: #FF6347 solid 4px;
  border-radius: 10px;
  text-align: center;
  line-height: 1.4;
}

.telework a {
  font-size: 16px;
  font-weight: bold;
  color: #6495ED;
  text-decoration: none;
}

@media screen and (max-width: 480px) {
  .telework {
    width: 94%;
    margin: 15vw 3% 5vw;
    padding: 3vw;
    font-size: 3.8vw;
    text-align: left;
  }
  .telework a {
    font-size: 4vw;
  }
}
/*# sourceMappingURL=style_new.css.map */