@charset "UTF-8";
/* CSS Document */
@import url("reset.css");
/**** カラー設定 *****/
/****************************

ページ共通設定 

*****************************/
/* 背景カラー設定 */
/* 文字カラー設定 */
/* リンクカラー設定 */
/****************************

トップ

*****************************/
/* PC_SP_width設定 */
/* setting */
html {
  font-size: 62.5%;
  scroll-behavior: smooth; }

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "sans-serif";
  scroll-behavior: smooth;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 1px;
  background: #FFF;
  color: #333; }

img {
  width: 100%;
  vertical-align: top; }

a {
  transition: 0.3s;
  text-decoration: none;
  color: #00004A; }

a:hover {
  opacity: 0.8;
  color: #C2201F; }

.pc {
  display: block; }

.sp {
  display: none; }

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

  .sp {
    display: block; } }
input[type="submit"] {
  appearance: none;
  -webkit-appearance: none; }

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

トップヘッダー

***************************/
header {
  background: #FFF;
  height: 70px;
  width: 100%;
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0%;
  z-index: 10;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1); }
  header .header-wrap {
    width: 100%;
    text-align: left; }
    header .header-wrap .logo-wrap {
      margin-top: 0%;
      margin-left: 0%;
      padding: 5px 50% 5px 5px; }
      header .header-wrap .logo-wrap img {
        width: 100%;
        max-width: 200px;
        margin-top: 5px; }
    header .header-wrap nav {
      position: relative;
      z-index: 10; }
      header .header-wrap nav ul {
        display: flex;
        justify-content: center !important;
        flex-direction: column;
        position: fixed;
        top: 0%;
        right: -100%;
        width: 100%;
        height: 100%;
        /*height: calc(100vh - 100px - 120px); padding: 100px 0 120px;*/
        background: rgba(255, 255, 255, 0.9);
        color: #FFF;
        z-index: 9;
        transition: .5s;
        opacity: 0; }
        header .header-wrap nav ul li {
          color: #000;
          width: 76% !important;
          padding: 2% !important;
          margin: 1% 9%;
          text-align: left;
          font-size: 1.6rem;
          border-bottom: solid 1px #C2201F; }
          header .header-wrap nav ul li a {
            color: #000;
            padding: 5px 10px;
            display: block; }

button {
  margin-top: 3px;
  padding: 5px 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none; }

.btn {
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 100;
  width: 60px;
  height: 50px;
  display: block;
  padding: 18px 9px; }

.btn-line {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background: #828282;
  transition: .2s; }

.btn-line::before, .btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #828282;
  transition: .5s;
  left: 0; }

.btn-line::before {
  transform: translateY(-10px); }

.btn-line::after {
  transform: translateY(10px); }

.btn-line.open {
  background-color: transparent; }

.btn-line.open::before, .btn-line.open::after {
  content: "";
  background: #828282;
  transition: .2s; }

.btn-line.open::before {
  transform: rotate(45deg); }

.btn-line.open::after {
  transform: rotate(-45deg); }

.btn-txt {
  font-size: 1rem;
  color: #FFF;
  padding-top: 10px;
  text-align: center; }

.btn-close {
  color: #828282; }

.btn-txt.open {
  color: #828282;
  padding-top: 10px;
  text-align: center;
  margin-left: -1px; }

.btn-txt-on.disp-off {
  display: none; }

.menu-list.line {
  border-bottom: solid 1px #CCC; }

.menu.open {
  right: 0 !important;
  opacity: 1; }

@media screen and (max-width: 949px) {
  header {
    height: 60px; }
    header .header-wrap .logo-wrap img {
      max-width: 170px; } }
@keyframes nav-fade {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.more-btn {
  margin: 20px 0; }
  .more-btn a {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 15px 25px;
    width: 200px;
    color: #FFF;
    font-size: 2.4rem;
    font-weight: 500;
    transition: 0.3s;
    background: -webkit-linear-gradient(60deg, #ECA022, #FBB03B);
    background: -moz-linear-gradient(60deg, #ECA022, #FBB03B);
    background: -o-linear-gradient(60deg, #ECA022, #FBB03B);
    background: linear-gradient(60deg, #ECA022, #FBB03B);
    border-radius: 50px; }
    .more-btn a::after {
      content: '';
      width: 5px;
      height: 5px;
      border-top: 3px solid #FFF;
      border-right: 3px solid #FFF;
      transform: rotate(45deg); }

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

コンテンツ

***************************/
.head-main {
  position: relative; }
  .head-main__item {
    position: absolute;
    top: 40%;
    left: 10vw;
    width: 80vw;
    animation: nav-fade 2s;
    z-index: 1; }
    .head-main__item p {
      font-size: 2.6rem;
      color: #FFF;
      font-weight: 600;
      text-align: center; }

.content {
  width: 950px;
  text-align: center;
  margin: 40px auto; }

@media screen and (max-width: 949px) {
  .head-main__item {
    top: calc(50% - 40px);
    left: calc(50% - 100px);
    width: 200px; }
    .head-main__item p {
      font-size: 1.4rem; }

  .content {
    width: 90%;
    margin: 30px auto 20px auto;
    padding-right: 0px; } }
/***************************

トップ詳細

***************************/
.top-event {
  width: 100%;
  margin-top: 70px; }
  .top-event .slideBox {
    position: relative; }
    .top-event .slideBox img {
      /*height: calc(70vh - 50px);  object-fit: cover; */
      width: 100%; }
  .top-event .top-filter {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 2; }

.swiper-button-prev, .swiper-button-next {
  width: 35px !important;
  height: 35px !important; }

.swiper-button-prev:after, .swiper-button-next:after {
  background-repeat: no-repeat !important;
  background-size: contain !important;
  content: "" !important;
  height: 35px;
  margin: auto;
  width: 35px; }

.swiper-button-prev:after {
  background: url("../images/index/prev.png") !important; }

.swiper-button-next:after {
  background: url("../images/index/next.png") !important; }

.news-wrap {
  width: 950px;
  text-align: center;
  margin: 40px auto; }
  .news-wrap__item {
    background: #FFF;
    padding: 2%;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    border-radius: 15px; }
    .news-wrap__item h2 {
      text-align: left;
      font-size: 1.8rem;
      margin-bottom: 10px; }
      .news-wrap__item h2 i {
        color: #D61B06; }
    .news-wrap__item p {
      font-size: 1.4rem;
      text-align: left; }
      .news-wrap__item p span {
        display: block;
        font-weight: 600; }

.plan-wrap {
  background: #EEE;
  border-radius: 40px 40px 0px 0px;
  padding: 3% 0; }
  .plan-wrap h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 600; }
    .plan-wrap h2 img {
      width: 60px;
      margin-top: 5px; }
  .plan-wrap ul {
    width: 950px;
    text-align: center;
    margin: 30px auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start; }
    .plan-wrap ul li {
      background: #FFF;
      border-radius: 17px;
      border: solid 3px #CCC;
      width: calc(32.5% - 6px);
      margin-bottom: 2%;
      padding: 0;
      margin-right: 2%;
      /*inputを非表示*/ }
      .plan-wrap ul li .plan-title {
        background: #C2201F;
        color: #FFF;
        border-radius: 15px 15px 0 0;
        font-size: 1.4rem;
        padding: 10px;
        font-weight: 600; }
        .plan-wrap ul li .plan-title span {
          font-size: 0.8rem;
          font-weight: 300;
          vertical-align: middle; }
      .plan-wrap ul li .plan-price {
        font-size: 2rem;
        color: #D61B06;
        font-weight: bold;
        margin: 10px 0; }
        .plan-wrap ul li .plan-price span {
          font-size: 1.4rem;
          font-weight: 400; }
      .plan-wrap ul li .plan-price.charge-title {
        color: #333; }
      .plan-wrap ul li .plan-info {
        background: #F9F9F9;
        margin: 3px;
        padding: 5px 5px 5px 10px;
        text-align: left;
        font-size: 1.2rem; }
        .plan-wrap ul li .plan-info__box {
          border-bottom: solid 1px #DDD;
          display: flex;
          justify-content: space-between;
          padding: 2px 0;
          align-items: center; }
          .plan-wrap ul li .plan-info__box .info-title {
            width: 44%;
            font-size: 1rem;
            padding: 3px 0; }
            .plan-wrap ul li .plan-info__box .info-title i {
              color: #D61B06;
              font-size: 1.2rem; }
          .plan-wrap ul li .plan-info__box .info-item {
            width: 55%;
            font-weight: 600;
            padding: 3px 0; }
      .plan-wrap ul li input[type="checkbox"].on-off {
        opacity: 0; }
      .plan-wrap ul li .open-box {
        margin-top: -10px; }
      .plan-wrap ul li .open-label {
        margin: 0 0 3px 0;
        padding: 3px;
        display: block;
        color: #C2201F;
        font-weight: bold;
        text-align: center;
        background: #FFF;
        border: solid 1px #C2201F; }
      .plan-wrap ul li .open-label:hover {
        background: #C2201F;
        color: #FFF; }
      .plan-wrap ul li .open-label::after {
        content: 'more +'; }
      .plan-wrap ul li .on-off:checked ~ .open-label::after {
        content: 'close -'; }
      .plan-wrap ul li .open1 {
        padding: 0;
        height: 0;
        opacity: 0;
        visibility: hidden;
        transition: .3s; }
      .plan-wrap ul li .on-off:checked ~ .open1 {
        padding: 0;
        height: auto;
        opacity: 1;
        visibility: visible; }
      .plan-wrap ul li .open2 {
        padding: 0;
        height: 0;
        opacity: 0;
        visibility: hidden;
        transition: .3s; }
      .plan-wrap ul li .on-off:checked ~ .open2 {
        padding: 0;
        height: auto;
        opacity: 1;
        visibility: visible; }
      .plan-wrap ul li .open3 {
        padding: 0;
        height: 0;
        opacity: 0;
        visibility: hidden;
        transition: .3s; }
      .plan-wrap ul li .on-off:checked ~ .open3 {
        padding: 0;
        height: auto;
        opacity: 1;
        visibility: visible; }
      .plan-wrap ul li .open4 {
        padding: 0;
        height: 0;
        opacity: 0;
        visibility: hidden;
        transition: .3s; }
      .plan-wrap ul li .on-off:checked ~ .open4 {
        padding: 0;
        height: auto;
        opacity: 1;
        visibility: visible; }
      .plan-wrap ul li .open5 {
        padding: 0;
        height: 0;
        opacity: 0;
        visibility: hidden;
        transition: .3s; }
      .plan-wrap ul li .on-off:checked ~ .open5 {
        padding: 0;
        height: auto;
        opacity: 1;
        visibility: visible; }
      .plan-wrap ul li .open6 {
        padding: 0;
        height: 0;
        opacity: 0;
        visibility: hidden;
        transition: .3s; }
      .plan-wrap ul li .on-off:checked ~ .open6 {
        padding: 0;
        height: auto;
        opacity: 1;
        visibility: visible; }
      .plan-wrap ul li .open7 {
        padding: 0;
        height: 0;
        opacity: 0;
        visibility: hidden;
        transition: .3s; }
      .plan-wrap ul li .on-off:checked ~ .open7 {
        padding: 0;
        height: auto;
        opacity: 1;
        visibility: visible; }
      .plan-wrap ul li .counter-wrap {
        width: 100%;
        margin: 15px 0 25px 0;
        position: relative; }
        .plan-wrap ul li .counter-wrap .number-spinner-wrap {
          border: solid 1px #999;
          border-radius: 5px;
          padding: 10px; }
          .plan-wrap ul li .counter-wrap .number-spinner-wrap input {
            border: none;
            width: 150px;
            text-align: center;
            font-size: 1.6rem;
            -webkit-appearance: none;
            appearance: none;
            -moz-appearance: textfield; }
          .plan-wrap ul li .counter-wrap .number-spinner-wrap .spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            font-size: 2rem;
            border-radius: 50%;
            color: #FFF;
            padding: 5px;
            text-align: center;
            background: #CCC;
            cursor: pointer;
            user-select: none;
            line-height: 0.9; }
          .plan-wrap ul li .counter-wrap .number-spinner-wrap .spinner-down {
            position: absolute;
            left: 25px;
            top: -2px; }
          .plan-wrap ul li .counter-wrap .number-spinner-wrap .spinner-up {
            position: absolute;
            right: 25px;
            top: -2px; }
    .plan-wrap ul li:nth-child(4), .plan-wrap ul li:nth-child(7) {
      margin-right: 0%; }
  .plan-wrap .caption-box {
    width: 950px;
    text-align: center;
    margin: 20px auto; }
    .plan-wrap .caption-box__txt {
      font-weight: 600;
      margin-bottom: 10px; }
    .plan-wrap .caption-box__txt2 {
      font-size: 1.4rem; }
    .plan-wrap .caption-box a {
      font-size: 1.4rem;
      border-bottom: solid 1px #D61B06;
      color: #D61B06;
      padding: 5px; }

.reservation-btn {
  margin: 20px 0; }
  .reservation-btn a {
    padding: 12px 35px;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 600;
    transition: 0.3s;
    background: -webkit-linear-gradient(60deg, #C2201F, #ECA022);
    background: -moz-linear-gradient(60deg, #C2201F, #ECA022);
    background: -o-linear-gradient(60deg, #C2201F, #ECA022);
    background: linear-gradient(60deg, #C2201F, #ECA022);
    border-radius: 50px; }

.howto-eSim {
  width: 950px;
  margin: 40px auto;
  padding-bottom: 1px; }
  .howto-eSim__title {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    width: 300px;
    margin: 0 auto;
    margin-bottom: 40px; }
    .howto-eSim__title span {
      display: block;
      font-size: 1.4rem;
      font-weight: 300; }
  .howto-eSim ul {
    display: flex;
    background: #F4F4F4;
    border-radius: 15px;
    padding: 20px;
    justify-content: space-between;
    flex-wrap: wrap; }
    .howto-eSim ul li {
      width: 45%;
      text-align: center;
      margin: 10px auto; }
      .howto-eSim ul li h3 {
        background: #4D4D4D;
        font-weight: 600;
        color: #FFF;
        border-radius: 50px;
        padding: 5px 20px;
        width: 200px;
        text-align: center;
        margin: 10px auto 20px auto; }
      .howto-eSim ul li a {
        border-bottom: solid 1px #333;
        color: #333 r;
        padding: 5px; }

.about-eSim {
  background: url("../images/index/eSim-bg.jpg");
  background-size: cover;
  border-top: 3px solid #ECA022;
  margin-top: 40px;
  margin-right: 100px;
  padding-bottom: 1px; }
  .about-eSim__title {
    background: #ECA022;
    text-align: center;
    color: #FFF;
    font-size: 3rem;
    font-weight: 600;
    width: 300px;
    margin: 0 auto; }
  .about-eSim ul {
    width: 950px;
    text-align: center;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .about-eSim ul li {
      background: #FFF;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
      width: 44%;
      margin-bottom: 4%;
      padding: 2%;
      font-weight: 700; }
      .about-eSim ul li i {
        display: block;
        font-size: 5rem;
        background: -webkit-linear-gradient(90deg, #C2201F, #FBB03B);
        background: -moz-linear-gradient(90deg, #C2201F, #FBB03B);
        background: -o-linear-gradient(90deg, #C2201F, #FBB03B);
        background: linear-gradient(90deg, #C2201F, #FBB03B);
        width: 100px;
        height: 85px;
        color: #FFF;
        padding: 35px 10px 0px 10px;
        border-radius: 50%;
        text-align: center;
        margin: 10px auto 20px auto; }

@media screen and (max-width: 949px) {
  .top-event {
    margin-top: 60px; }

  .news-wrap {
    width: 90%;
    margin: 30px auto; }
    .news-wrap__item {
      padding: 10px;
      box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
      border-radius: 10px; }
      .news-wrap__item h2 {
        font-size: 1.6rem;
        margin-bottom: 5px; }

  .plan-wrap {
    border-radius: 30px 30px 0px 0px;
    padding: 20px 0; }
    .plan-wrap h2 {
      text-align: center;
      font-size: 2.4rem;
      margin-bottom: 10px; }
      .plan-wrap h2 img {
        width: 50px;
        margin-top: 5px; }
    .plan-wrap ul {
      width: 90%;
      text-align: center;
      margin: 20px auto;
      display: flex;
      justify-content: flex-start;
      flex-wrap: wrap;
      align-items: flex-start; }
      .plan-wrap ul li {
        background: #FFF;
        border-radius: 17px;
        border: solid 3px #CCC;
        width: 100%;
        margin-bottom: 5%;
        padding: 0;
        margin-right: 0%;
        /*inputを非表示*/ }
        .plan-wrap ul li .plan-title {
          background: #C2201F;
          color: #FFF;
          border-radius: 15px 15px 0 0;
          font-size: 1.4rem;
          padding: 10px;
          font-weight: 600; }
          .plan-wrap ul li .plan-title span {
            font-size: 0.8rem;
            font-weight: 300;
            vertical-align: middle; }
        .plan-wrap ul li .plan-price {
          font-size: 2rem;
          color: #D61B06;
          font-weight: bold;
          margin: 10px 0; }
          .plan-wrap ul li .plan-price span {
            font-size: 1.4rem;
            font-weight: 400; }
        .plan-wrap ul li .plan-price.charge-title {
          color: #333; }
        .plan-wrap ul li .plan-info {
          background: #F9F9F9;
          margin: 3px;
          padding: 5px 5px 5px 10px;
          text-align: left;
          font-size: 1.2rem; }
          .plan-wrap ul li .plan-info__box {
            border-bottom: solid 1px #DDD;
            display: flex;
            justify-content: space-between;
            padding: 2px 0; }
            .plan-wrap ul li .plan-info__box .info-title {
              width: 44%;
              font-size: 1rem; }
              .plan-wrap ul li .plan-info__box .info-title i {
                color: #D61B06;
                font-size: 1.2rem; }
            .plan-wrap ul li .plan-info__box .info-item {
              width: 55%;
              font-weight: 600; }
        .plan-wrap ul li input[type="checkbox"].on-off {
          opacity: 0; }
        .plan-wrap ul li .open-box {
          margin-top: -10px; }
        .plan-wrap ul li .open-label {
          margin: 0 0 3px 0;
          padding: 3px;
          display: block;
          color: #C2201F;
          font-weight: bold;
          text-align: center;
          background: #FFF;
          border: solid 1px #C2201F; }
        .plan-wrap ul li .open-label:hover {
          background: #C2201F;
          color: #FFF; }
        .plan-wrap ul li .open-label::after {
          content: 'more +'; }
        .plan-wrap ul li .on-off:checked ~ .open-label::after {
          content: 'close -'; }
        .plan-wrap ul li .open1 {
          padding: 0;
          height: 0;
          opacity: 0;
          visibility: hidden;
          transition: .3s; }
        .plan-wrap ul li .on-off:checked ~ .open1 {
          padding: 0;
          height: auto;
          opacity: 1;
          visibility: visible; }
        .plan-wrap ul li .open2 {
          padding: 0;
          height: 0;
          opacity: 0;
          visibility: hidden;
          transition: .3s; }
        .plan-wrap ul li .on-off:checked ~ .open2 {
          padding: 0;
          height: auto;
          opacity: 1;
          visibility: visible; }
        .plan-wrap ul li .open3 {
          padding: 0;
          height: 0;
          opacity: 0;
          visibility: hidden;
          transition: .3s; }
        .plan-wrap ul li .on-off:checked ~ .open3 {
          padding: 0;
          height: auto;
          opacity: 1;
          visibility: visible; }
        .plan-wrap ul li .open4 {
          padding: 0;
          height: 0;
          opacity: 0;
          visibility: hidden;
          transition: .3s; }
        .plan-wrap ul li .on-off:checked ~ .open4 {
          padding: 0;
          height: auto;
          opacity: 1;
          visibility: visible; }
        .plan-wrap ul li .open5 {
          padding: 0;
          height: 0;
          opacity: 0;
          visibility: hidden;
          transition: .3s; }
        .plan-wrap ul li .on-off:checked ~ .open5 {
          padding: 0;
          height: auto;
          opacity: 1;
          visibility: visible; }
        .plan-wrap ul li .open6 {
          padding: 0;
          height: 0;
          opacity: 0;
          visibility: hidden;
          transition: .3s; }
        .plan-wrap ul li .on-off:checked ~ .open6 {
          padding: 0;
          height: auto;
          opacity: 1;
          visibility: visible; }
        .plan-wrap ul li .open7 {
          padding: 0;
          height: 0;
          opacity: 0;
          visibility: hidden;
          transition: .3s; }
        .plan-wrap ul li .on-off:checked ~ .open7 {
          padding: 0;
          height: auto;
          opacity: 1;
          visibility: visible; }
        .plan-wrap ul li .counter-wrap {
          width: 100%;
          margin: 15px 0 25px 0;
          position: relative; }
          .plan-wrap ul li .counter-wrap .number-spinner-wrap {
            border: solid 1px #999;
            border-radius: 5px;
            padding: 10px; }
            .plan-wrap ul li .counter-wrap .number-spinner-wrap input {
              border: none;
              width: 150px;
              text-align: center;
              font-size: 1.6rem;
              -webkit-appearance: none;
              appearance: none;
              -moz-appearance: textfield; }
            .plan-wrap ul li .counter-wrap .number-spinner-wrap .spinner {
              display: inline-block;
              width: 20px;
              height: 20px;
              font-size: 2rem;
              border-radius: 50%;
              color: #FFF;
              padding: 5px;
              text-align: center;
              background: #CCC;
              cursor: pointer;
              user-select: none;
              line-height: 0.9; }
            .plan-wrap ul li .counter-wrap .number-spinner-wrap .spinner-down {
              position: absolute;
              left: 25px;
              top: -2px; }
            .plan-wrap ul li .counter-wrap .number-spinner-wrap .spinner-up {
              position: absolute;
              right: 25px;
              top: -2px; }
      .plan-wrap ul li:nth-child(4), .plan-wrap ul li:nth-child(8) {
        margin-right: 0%; }
    .plan-wrap .caption-box {
      width: 90%;
      text-align: center;
      margin: 20px auto; }
      .plan-wrap .caption-box__txt {
        font-weight: 600;
        margin-bottom: 10px; }
      .plan-wrap .caption-box__txt2 {
        font-size: 1.4rem; }
      .plan-wrap .caption-box a {
        font-size: 1.4rem;
        border-bottom: solid 1px #D61B06;
        color: #D61B06;
        padding: 5px; }

  .howto-eSim {
    width: 90%;
    margin: 40px auto;
    padding-bottom: 1px; }
    .howto-eSim__title {
      text-align: center;
      font-size: 3rem;
      font-weight: 600;
      width: 300px;
      margin: 0 auto;
      margin-bottom: 40px; }
      .howto-eSim__title span {
        display: block;
        font-size: 1.4rem;
        font-weight: 300; }
    .howto-eSim ul {
      display: flex;
      background: #F4F4F4;
      border-radius: 15px;
      padding: 20px;
      justify-content: space-between;
      flex-wrap: wrap; }
      .howto-eSim ul li {
        width: 100%;
        text-align: center;
        margin: 10px auto; }
        .howto-eSim ul li h3 {
          background: #4D4D4D;
          font-weight: 600;
          color: #FFF;
          border-radius: 50px;
          padding: 5px 20px;
          width: 200px;
          text-align: center;
          margin: 10px auto 20px auto; }
        .howto-eSim ul li a {
          border-bottom: solid 1px #333;
          color: #333 r;
          padding: 5px; } }
/*


@media screen and (max-width: 949px) {
	.top-event { width: 100%; margin-top: 60px;
	}
	
	.news-wrap { margin-top: 10px; margin-left: 2vw; margin-right: 2vw; padding: 3%; position: relative;
		p { font-size: 1.2rem; }
	}

	.plan-wrap { margin-right: 0; margin-top: 20px;
		ul { width: $spWidth; margin: 40px auto; display: flex; justify-content: space-between; flex-wrap: wrap;
			li { background: #FFF; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); width: 98%; margin-bottom: 20px; padding: 2% 2% 2% 5%;
				.plan-title { background: $keyColor3; color: #FFF; border-radius: 30px; margin: 10px 20px;  font-size: 2rem; padding: 5px; font-weight: 600; }
				.plan-info { font-size: 1.4rem; padding: 10px 0;}
				.plan-price { font-size: 2rem; color: $keyColor1; font-weight: bold; }
			}
		}
	}
	.about-eSim { margin-right: 0;
		&__title { background: $keyColor1; text-align: center; color: #FFF; font-size: 3rem; font-weight: 600; width: 300px; margin: 0 auto; }
		ul { width: $spWidth; text-align: center; margin: 40px auto; display: flex; justify-content: space-between; flex-wrap: wrap;
			li { background: #FFF; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); width: 44%; margin-bottom: 4%; padding: 2%; font-weight: 700;
				i { display: block; font-size: 5rem; background: -webkit-linear-gradient(90deg, $keyColor3, $keyColor4); background:-moz-linear-gradient(90deg, $keyColor3, $keyColor4); background:-o-linear-gradient(90deg, $keyColor3, $keyColor4); background:linear-gradient(90deg, $keyColor3, $keyColor4); width: 100px; height: 85px; color: #FFF; padding: 35px 10px 0px 10px; border-radius: 50%; text-align: center; margin: 10px auto 20px auto; }

			}
		}
		
	}
	.howto-eSim { margin-right: 0;
		&__title { text-align: center; color: $keyColor1; font-size: 3rem; font-weight: 600; width: 300px; margin: 0 auto; }
		div { width: $spWidth; margin: 40px auto; display: flex; justify-content: space-between; flex-wrap: wrap;
		}
	}
}

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

フッター

***************************/
footer {
  background: #FFF;
  margin-top: 50px; }
  footer .ft-nav {
    padding: 30px 10px 30px 10px;
    border-top: solid 1px #EEE; }
    footer .ft-nav .ft-nav-content {
      width: 950px;
      text-align: center;
      margin: 0px auto; }
      footer .ft-nav .ft-nav-content ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; }
        footer .ft-nav .ft-nav-content ul li {
          margin: 1% 1.5%; }
          footer .ft-nav .ft-nav-content ul li a {
            color: #333;
            font-size: 1.2rem; }
            footer .ft-nav .ft-nav-content ul li a i {
              opacity: 0; }
  footer .ft-company {
    border-top: solid 1px #EEE;
    border-bottom: solid 1px #EEE;
    display: flex;
    background: #FFF;
    padding: 20px 35%;
    text-align: center;
    justify-content: space-between;
    align-items: center; }
    footer .ft-company__logo {
      width: 70px; }
    footer .ft-company__txt {
      width: calc(98% - 70px);
      font-size: 1rem;
      text-align: left; }
  footer .ft-company.mobile-c {
    background: #FFF;
    border-bottom: solid 1px #EEE; }
  footer .copyright {
    font-size: 1.2rem;
    font-weight: 200;
    padding: 20px 5px;
    margin: 0px auto;
    text-align: center;
    color: #333; }

@media screen and (max-width: 949px) {
  footer {
    background: #FFF;
    margin-top: 50px; }
    footer .ft-nav {
      padding: 20px 10px 20px 10px;
      border-top: solid 1px #EEE; }
      footer .ft-nav .ft-nav-content {
        width: 90%;
        text-align: center;
        margin: 0px auto; }
        footer .ft-nav .ft-nav-content ul {
          display: flex;
          flex-wrap: wrap;
          justify-content: center; }
          footer .ft-nav .ft-nav-content ul li {
            margin: 3% 0%;
            padding: 5px 0;
            border-bottom: solid 1px #CCC;
            width: 100%;
            text-align: left; }
            footer .ft-nav .ft-nav-content ul li a {
              color: #333;
              font-size: 1.4rem; }
              footer .ft-nav .ft-nav-content ul li a i {
                opacity: 1; }
    footer .ft-company {
      border-top: solid 1px #EEE;
      display: flex;
      padding: 20px 5%;
      text-align: center;
      justify-content: center;
      align-items: center; }
      footer .ft-company__logo {
        width: 70px;
        margin-right: 2%; }
      footer .ft-company__txt {
        font-size: 1rem;
        text-align: left; }
    footer .ft-company.mobile-c {
      background: #FFF;
      border-bottom: solid 1px #EEE; }
    footer .copyright {
      font-size: 1.2rem;
      font-weight: 200;
      padding: 20px 5px;
      margin: 0px auto;
      text-align: center;
      color: #333; } }
/***************************

インナー

***************************/
.inner-title {
  background: -webkit-linear-gradient(60deg, #C2201F, #ECA022);
  background: -moz-linear-gradient(60deg, #C2201F, #ECA022);
  background: -o-linear-gradient(60deg, #C2201F, #ECA022);
  background: linear-gradient(60deg, #C2201F, #ECA022);
  color: #FFF;
  text-align: center;
  margin-top: 70px;
  padding: 50px 0;
  font-size: 3rem;
  font-weight: 500; }

@media screen and (max-width: 949px) {
  .inner-title {
    margin-right: 0px;
    margin-top: 60px;
    padding: 30px 0;
    font-size: 2rem; } }
/***************************

FAQ

***************************/
.faq-wrap__item .faq-acd-wrap {
  border-bottom: 1px solid #CCC;
  max-width: 100%;
  margin-bottom: 0px; }
.faq-wrap__item .faq-acd-wrap-hidden {
  display: none; }
.faq-wrap__item .faq-acd-wrap-open {
  display: block;
  padding: 20px 40px 20px 20px;
  cursor: pointer;
  margin: 0px 0;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 600;
  position: relative;
  color: #333;
  transition: 0.5s;
  text-align: left;
  word-break: break-all;
  background: #EEE; }
  .faq-wrap__item .faq-acd-wrap-open:hover {
    color: #ECA022; }
  .faq-wrap__item .faq-acd-wrap-open::before, .faq-wrap__item .faq-acd-wrap-open::after {
    content: '';
    width: 20px;
    height: 2px;
    background: #ECA022;
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%); }
  .faq-wrap__item .faq-acd-wrap-open::after {
    transform: translateY(-50%) rotate(90deg);
    transition: .5s; }
.faq-wrap__item .faq-acd-wrap-hidden:checked + .faq-acd-wrap-open:after {
  transform: translateY(-50%) rotate(0); }
.faq-wrap__item .faq-acd-wrap-close {
  display: block;
  height: 0;
  overflow: hidden;
  margin: 0px 0 0 0;
  padding: 0;
  opacity: 0;
  line-height: 1.8;
  background: #FFF;
  text-align: left;
  transition: 0.5s;
  word-break: break-all; }
.faq-wrap__item .faq-acd-wrap-hidden:checked + .faq-acd-wrap-open + .faq-acd-wrap-close {
  height: auto;
  opacity: 1; }
  .faq-wrap__item .faq-acd-wrap-hidden:checked + .faq-acd-wrap-open + .faq-acd-wrap-close p {
    padding: 20px; }

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

特商

***************************/
.tokusyo-wrap ul li {
  display: flex;
  width: 100%;
  margin-bottom: 1px;
  font-size: 1.4rem; }
  .tokusyo-wrap ul li .item {
    background: #EEE;
    margin-right: 1px;
    padding: 10px;
    width: 30%;
    font-weight: 600; }
  .tokusyo-wrap ul li .txt {
    background: #FFF;
    padding: 10px 20px;
    width: 69%;
    text-align: left; }
  .tokusyo-wrap ul li .card-icon {
    display: flex;
    justify-content: flex-start;
    margin: 5px 0; }
    .tokusyo-wrap ul li .card-icon li {
      width: 40px;
      margin-right: 5px; }

@media screen and (max-width: 949px) {
  .tokusyo-wrap ul li {
    display: block; }
    .tokusyo-wrap ul li .item {
      background: #EEE;
      margin-right: 1px;
      padding: 10px;
      width: 100%;
      font-weight: 600; }
    .tokusyo-wrap ul li .txt {
      background: #FFF;
      padding: 10px;
      width: 100%;
      text-align: left; } }
/***************************

対応端末

***************************/
.phone-wrap {
  text-align: left; }
  .phone-wrap h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #C2201F;
    padding: 5px;
    border-bottom: solid 2px #C2201F;
    margin-bottom: 10px; }
  .phone-wrap p {
    padding: 5px;
    padding-bottom: 10px; }

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

set up

***************************/
.tabs-wrap {
  width: 100%;
  padding-bottom: 40px;
  background-color: #fff;
  border-radius: 15px; }

.tab-item {
  width: calc(100%/2);
  height: 50px;
  border-bottom: 3px solid #C2201F;
  background-color: #d9d9d9;
  line-height: 50px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  transition: all 0.2s ease;
  border-radius: 15px 15px 0 0; }
  .tab-item:hover {
    opacity: 0.75; }

input[name="tab-item"] {
  display: none; }

.tab-content {
  display: none;
  padding: 40px 20px;
  clear: both;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }
  .tab-content h3 {
    font-size: 2rem;
    padding: 10px;
    margin-bottom: 30px;
    color: #C2201F;
    border-bottom: solid 2px #C2201F;
    border-top: solid 2px #C2201F; }
  .tab-content h4 {
    margin-bottom: 20px; }
    .tab-content h4 span {
      font-size: 1.8rem;
      background-color: #C2201F;
      color: #FFF;
      border-radius: 30px;
      padding: 10px 25px; }
  .tab-content .step-wrap {
    display: flex;
    justify-content: space-between; }
    .tab-content .step-wrap .img-box {
      width: 40%;
      border-radius: 15px;
      border: solid 5px #FFF;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      margin-bottom: 30px; }
      .tab-content .step-wrap .img-box img {
        border-radius: 15px; }
    .tab-content .step-wrap .txt-box {
      width: 58%;
      text-align: left;
      margin-bottom: 30px; }

#case-iphone:checked ~ #case-iphone__content, #case-android:checked ~ #case-android__content {
  display: block; }

.tabs-wrap input:checked + .tab-item {
  background-color: #C2201F;
  color: #fff; }

@media screen and (max-width: 949px) {
  .tab-content {
    display: none;
    padding: 40px 20px;
    clear: both;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }
    .tab-content h4 {
      margin-bottom: 20px; }
      .tab-content h4 span {
        font-size: 1.8rem;
        background-color: #C2201F;
        color: #FFF;
        border-radius: 30px;
        padding: 10px 25px; }
    .tab-content .step-wrap {
      flex-wrap: wrap; }
      .tab-content .step-wrap .img-box {
        width: 100%; }
        .tab-content .step-wrap .img-box img {
          border-radius: 15px; }
      .tab-content .step-wrap .txt-box {
        width: 100%; } }
.buy-content {
  padding: 40px 20px;
  clear: both;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }
  .buy-content h3 {
    font-size: 2rem;
    padding: 10px;
    margin-bottom: 30px;
    color: #C2201F;
    border-bottom: solid 2px #C2201F;
    border-top: solid 2px #C2201F; }
  .buy-content h4 {
    margin-bottom: 20px; }
    .buy-content h4 span {
      font-size: 1.8rem;
      background-color: #C2201F;
      color: #FFF;
      border-radius: 30px;
      padding: 10px 25px; }
  .buy-content .step-wrap {
    display: flex;
    justify-content: space-between; }
    .buy-content .step-wrap .img-box {
      width: 40%;
      border-radius: 15px;
      border: solid 5px #FFF;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      margin-bottom: 30px; }
      .buy-content .step-wrap .img-box img {
        border-radius: 15px; }
    .buy-content .step-wrap .txt-box {
      width: 58%;
      text-align: left;
      margin-bottom: 30px; }
  .buy-content .needto {
    border: solid 1px #ECA022;
    padding: 10px;
    border-radius: 40px;
    color: #ECA022;
    margin-bottom: 20px; }
  .buy-content .needto2 {
    border-bottom: solid 1px #C00;
    padding: 5px;
    color: #C00;
    margin-bottom: 10px;
    margin-top: 30px; }
  .buy-content .txt-box2 {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 30px; }

@media screen and (max-width: 949px) {
  .buy-content {
    padding: 40px 20px;
    clear: both;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }
    .buy-content h4 {
      margin-bottom: 20px; }
      .buy-content h4 span {
        font-size: 1.8rem;
        background-color: #C2201F;
        color: #FFF;
        border-radius: 30px;
        padding: 10px 25px; }
    .buy-content .step-wrap {
      flex-wrap: wrap; }
      .buy-content .step-wrap .img-box {
        width: 100%; }
        .buy-content .step-wrap .img-box img {
          border-radius: 15px; }
      .buy-content .step-wrap .txt-box {
        width: 100%; } }
/***************************

会社概要・PP・規約

***************************/
.base-style-wrap {
  margin-bottom: 40px; }
  .base-style-wrap h2 {
    text-align: center;
    margin: 20px auto 40px auto;
    color: #000;
    font-size: 4rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em; }
  .base-style-wrap__box {
    text-align: left;
    font-size: 1.4rem; }
    .base-style-wrap__box__title {
      background: #FBB03B;
      color: #FFF;
      padding: 5px;
      margin-bottom: 10px;
      font-weight: 400; }
    .base-style-wrap__box p {
      padding: 5px;
      line-height: 2;
      margin-bottom: 20px; }

@media screen and (max-width: 949px) {
  .base-style-wrap {
    padding-top: 40px;
    margin-bottom: 60px; }
    .base-style-wrap h2 {
      font-size: 3rem;
      margin-bottom: 20px; } }
.link-btn {
  margin: 10px 0; }
  .link-btn a {
    padding: 15px 25px;
    width: 200px;
    color: #FFF;
    font-weight: 500;
    transition: 0.3s;
    background: -webkit-linear-gradient(60deg, #ECA022, #FBB03B);
    background: -moz-linear-gradient(60deg, #ECA022, #FBB03B);
    background: -o-linear-gradient(60deg, #ECA022, #FBB03B);
    background: linear-gradient(60deg, #ECA022, #FBB03B);
    border-radius: 50px; }

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

メール登録

***************************/
.sendmail-wrap {
  position: relative;
  z-index: 0;
  margin-top: 80px;
  width: 100%;
  height: calc(100vh - 280px);
  overflow: hidden; }
  .sendmail-wrap__item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 80%;
    text-align: center; }
    .sendmail-wrap__item h2 {
      font-size: 2rem;
      font-weight: 500;
      margin-bottom: 30px; }
    .sendmail-wrap__item .mail-info {
      margin: 30px auto;
      max-width: 400px; }
      .sendmail-wrap__item .mail-info__item {
        margin-bottom: 20px;
        width: 100%; }
        .sendmail-wrap__item .mail-info__item input {
          border: none;
          border: 1px solid #CCC;
          color: #666;
          font-size: 1.6rem;
          height: 40px;
          transition: border-color 0.3s;
          width: 94%;
          padding: 2% 3%;
          border-radius: 5px; }
        .sendmail-wrap__item .mail-info__item input:focus {
          border: 1px solid #ECA022;
          outline: none; }
      .sendmail-wrap__item .mail-info__item-b {
        margin: 40px auto;
        max-width: 300px; }
        .sendmail-wrap__item .mail-info__item-b .send-btn {
          border: none;
          color: #FFF;
          cursor: pointer;
          height: 50px;
          font-size: 1.8rem;
          letter-spacing: 1px;
          text-align: center;
          width: 80%;
          border-radius: 5px;
          background: #ECA022; }
        .sendmail-wrap__item .mail-info__item-b:hover {
          opacity: 0.8;
          transition: .3s; }
    .sendmail-wrap__item p.send-txt {
      font-size: 1.4rem;
      margin: 20px 0; }
    .sendmail-wrap__item p.pass a {
      color: #ECA022;
      text-decoration: underline;
      cursor: pointer; }

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

ログイン

***************************/
.login-wrap {
  position: relative;
  z-index: 0;
  margin-top: 80px;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
  margin-bottom: -80px; }
  .login-wrap .sign-in-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 80%;
    text-align: center; }
    .login-wrap .sign-in-wrap .sign-in-item {
      margin: 10px auto;
      max-width: 400px; }
      .login-wrap .sign-in-wrap .sign-in-item .s-item {
        margin-bottom: 20px;
        width: 100%; }
        .login-wrap .sign-in-wrap .sign-in-item .s-item input {
          border: none;
          border: 1px solid #FFF;
          color: #666;
          font-size: 1.6rem;
          height: 40px;
          transition: border-color 0.3s;
          width: 94%;
          padding: 2% 3%;
          border-radius: 5px; }
        .login-wrap .sign-in-wrap .sign-in-item .s-item input:focus {
          border: 1px solid #ECA022;
          outline: none; }
      .login-wrap .sign-in-wrap .sign-in-item .b-item {
        margin: 40px auto;
        max-width: 300px; }
        .login-wrap .sign-in-wrap .sign-in-item .b-item .sign-in-btn {
          border: none;
          color: #ECA022;
          cursor: pointer;
          height: 50px;
          font-size: 1.8rem;
          letter-spacing: 1px;
          text-align: center;
          width: 80%;
          border-radius: 5px;
          background: #FFF; }
      .login-wrap .sign-in-wrap .sign-in-item .b-item:hover {
        opacity: 0.8;
        transition: .3s; }
    .login-wrap .sign-in-wrap p.pass a {
      color: #FFF;
      text-decoration: underline;
      cursor: pointer; }

.login-wrap:before {
  content: '';
  background: url("../images/index/s1.jpg") center center no-repeat;
  background-size: cover;
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  filter: blur(3px);
  z-index: -1; }

.login-wrap .bfilter {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); }

.membership-btn {
  margin-top: 40px;
  display: block;
  background: #ECA022;
  background: -webkit-linear-gradient(60deg, #ECA022, #FBB03B);
  background: -moz-linear-gradient(60deg, #ECA022, #FBB03B);
  background: -o-linear-gradient(60deg, #ECA022, #FBB03B);
  background: linear-gradient(60deg, #ECA022, #FBB03B);
  color: #FFF;
  width: 80%;
  padding: 20px 10%;
  border-radius: 50px; }

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

ニュース

***************************/
.search-wrap {
  width: 100%;
  padding: 10px 0;
  margin-bottom: 30px; }
  .search-wrap .news-search-box {
    box-sizing: border-box;
    position: relative;
    background: #EEE;
    display: block;
    padding: 1px 2%;
    border-radius: 5px;
    overflow: hidden;
    text-align: left;
    margin: 0 auto; }
    .search-wrap .news-search-box input[type="text"] {
      border: none;
      height: 35px;
      font-size: 1.6rem;
      background: #EEE;
      width: 100%; }
    .search-wrap .news-search-box input[type="submit"] {
      cursor: pointer;
      font-size: 1.4em;
      border: none;
      background: #EEE;
      color: #C2201F;
      position: absolute;
      width: 50px;
      height: 50px;
      right: 0;
      top: -5px;
      outline: none; }

.inner-head-news {
  margin: 120px 0 20px; }
  .inner-head-news .head-title {
    text-align: center;
    margin: 0 auto;
    color: #ECA022;
    font-size: 2.4rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600; }

.news-layout {
  display: flex;
  text-align: left;
  justify-content: space-between; }
  .news-layout .article-wrap {
    width: 70%; }
    .news-layout .article-wrap ul {
      padding: 5px; }
      .news-layout .article-wrap ul li {
        position: relative;
        border-bottom: solid 1px #EEE;
        transition: .3s;
        padding-bottom: 20px;
        margin-bottom: 30px; }
        .news-layout .article-wrap ul li a {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%; }
        .news-layout .article-wrap ul li h3 {
          font-size: 2rem;
          margin: 10px 0;
          font-weight: 500; }
        .news-layout .article-wrap ul li .post-date {
          font-size: 1.4rem;
          color: #999;
          margin-bottom: 20px; }
        .news-layout .article-wrap ul li img {
          margin-bottom: 20px; }
        .news-layout .article-wrap ul li .info-more {
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 3;
          overflow: hidden; }
        .news-layout .article-wrap ul li .info-more.details {
          display: block;
          -webkit-line-clamp: none;
          overflow: visible;
          word-break: break-all; }
          .news-layout .article-wrap ul li .info-more.details a {
            position: relative; }
      .news-layout .article-wrap ul li:hover {
        opacity: 0.8; }
    .news-layout .article-wrap .pager-wrap {
      margin: 10px 0 30px;
      padding: 0 20px;
      font-family: 'Josefin Sans', sans-serif;
      display: flex;
      justify-content: space-between; }
      .news-layout .article-wrap .pager-wrap .prev-link {
        width: 30%; }
      .news-layout .article-wrap .pager-wrap .next-link {
        width: 30%;
        text-align: right; }
      .news-layout .article-wrap .pager-wrap .news-all-link {
        width: 30%;
        font-size: 1.4rem;
        text-align: center; }
  .news-layout .archive-wrap {
    width: 25%; }
    .news-layout .archive-wrap h4 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 600;
      color: #ECA022;
      font-size: 2.4rem;
      padding: 5px 10px;
      border-bottom: solid 1px #DDD;
      margin-bottom: 20px; }
    .news-layout .archive-wrap ul li {
      font-size: 1.4rem;
      padding: 6px 10px; }

@media screen and (max-width: 979px) {
  .search-wrap {
    margin-bottom: 10px; }

  .inner-head-news {
    margin: 100px 0 10px; }

  .news-layout {
    display: block; }
    .news-layout .article-wrap {
      width: 100%; }
      .news-layout .article-wrap ul li:last-child {
        margin-bottom: 5px; }
    .news-layout .archive-wrap {
      width: 100%; } }
/*************************************

enter email

*************************************/
.modal-style {
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); }
  .modal-style .modal-title {
    font-size: 1.8rem;
    color: #C2201F;
    padding: 20px 0 10px 0;
    border-bottom: solid 1px #CCC;
    margin-bottom: 20px; }
    .modal-style .modal-title i {
      color: #D61B06; }
  .modal-style .modal-text {
    background: #E1F5FF;
    padding: 10px;
    margin: 20px 0; }
  .modal-style .submit-button {
    text-align: center;
    margin: 20px auto;
    display: block;
    background: #ECA022;
    background: -webkit-linear-gradient(60deg, #ECA022, #FBB03B);
    background: -moz-linear-gradient(60deg, #ECA022, #FBB03B);
    background: -o-linear-gradient(60deg, #ECA022, #FBB03B);
    background: linear-gradient(60deg, #ECA022, #FBB03B);
    color: #FFF;
    width: 90%;
    padding: 10px 5%;
    border-radius: 50px;
    font-weight: 500; }
  .modal-style label {
    color: #FBB03B;
    padding: 5px 0; }

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

アニメーション

*************************************/
/*************************************
スクロールアクション
*************************************/
.scroll-action {
  opacity: 0; }

.fadeinUp {
  transform: translate(0px, 150px);
  transition: all 600ms; }

.fadeinLeft {
  transform: translate(-500px, 0px);
  transition: all 600ms;
  backface-visibility: hidden; }

.fadeinRight {
  transform: translate(150px, 0px);
  transition: all 600ms;
  backface-visibility: hidden; }

.fadeinZoom {
  transform: scale(0.1);
  transition: all 600ms; }

.fadeinRight2 {
  transform: translate(500px, 0px); }

/* 画面内に入った状態 */
.scroll-action.scroll-in {
  opacity: 1;
  transform: translate(0, 0) scale(1); }

.container-fade {
  position: relative;
  width: 400px;
  height: 200px; }

.fade-image {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: change-img-anim 15s infinite;
  overflow: hidden; }

.fade-image:nth-of-type(1) {
  animation-delay: 0s; }

.fade-image:nth-of-type(2) {
  animation-delay: 5s; }

.fade-image:nth-of-type(3) {
  animation-delay: 10s; }

@keyframes change-img-anim {
  0% {
    opacity: 0;
    transform: scale(1.3); }
  20% {
    opacity: 1;
    transform: scale(1); }
  36% {
    opacity: 1; }
  45% {
    opacity: 0; }
  100% {
    opacity: 0; } }
.fade-image2 {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: change-img-anim2 2.4s infinite;
  overflow: hidden; }

.fade-image2:nth-of-type(1) {
  animation-delay: 0s; }

.fade-image2:nth-of-type(2) {
  animation-delay: 0.4s; }

.fade-image2:nth-of-type(3) {
  animation-delay: 0.8s; }

.fade-image2:nth-of-type(4) {
  animation-delay: 1.2s; }

.fade-image2:nth-of-type(5) {
  animation-delay: 1.6s; }

.fade-image2:nth-of-type(6) {
  animation-delay: 2s; }

@keyframes change-img-anim2 {
  0% {
    opacity: 0;
    transform: scale(1.2); }
  15% {
    opacity: 1;
    transform: scale(1); }
  25% {
    opacity: 1; }
  40% {
    opacity: 0; }
  100% {
    opacity: 0; } }
