body {
  width: 100%;
  /* font-family: Georgia, 'Times New Roman', Times, serif; */
  font-family: serif;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.no-pc {
  display: none;
}

@media screen and (max-width :767px) {
  .no-pc {
    display: block;
  }
}

@media screen and (min-width :1450px) {
  h1 {
    font-size: 80px !important;
  }

  h2 {
    font-size: 60px !important;
  }

  p {
    font-size: 30px !important;
  }

  td,th {
    font-size: 25px !important;
  }
}

/* ---header--- */
header {
  background-size: cover;
  width: 100%;
  height: 100%;
  margin-top: 30px;
}

.header-inner {
  padding: 10px 50px;
  align-items: center;
  z-index: 9999;
  background-color:rgba(255,255,255,0.3);
}

.header-pc {
  float: right;
}

.header-pc li {
  display: inline-block;
  padding: 0 20px;  
  text-align: center;
  line-height: 1.8;
  font-family: sans-serif;
}

.header-pc li:hover {
  opacity: 0.5;
}

.header-pc li span {
  font-size: 15px;
  font-weight: bold;
}

.header-pc li i {
  font-size: 25px;
}

.header-pc li .fa-line {
  color: green;
}
.header-pc li .fa-instagram {
  color: purple;
}

.hamburger {
  display: none;
}

.globalMenuSp {
  display: none;
}

.logo {
  max-width: 1400px;
  margin: 0 auto;
}

/* ---top--- */

.top h1 {
  text-align: center;
  font-size: 60px;
  align-items: center;
  line-height: 1.5;
  font-weight: bold;
  color: #000;
  text-shadow: 3px 4px 5px #ccc;
  padding-top: 50px;
}

.top .btn {
  background: url(../img/skyblue.png);
  background-size: cover;
  font-size: 30px;
  padding: 20px 30px;
  border-radius: 30px;
  color: #fff;
  border: 3px solid yellow;
  text-shadow: 2px 3px 4px #333;
}

.top .btn:hover {
  opacity: 0.8;
}
/* ---top--- */

@media screen and (max-width :767px) {
  .header-inner {
    display: block;
    padding: 0;
  }

  .header-pc {
    display: none;
  }

  .top .btn {
    font-size: 15px;
    padding: 5px 30px;
  }

  .top h1 {
    font-size: 23px;
  }

  /*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: absolute;
  z-index : 3;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition     : all 0.3s ease-in-out;
  transition        : all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay     : 0.6s;
  transition-delay        : 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform    : rotate(45deg);
  -o-transform     : rotate(45deg);
  transform        : rotate(45deg);
}
.hamburger.active span:nth-child(2){
  width: 0px;
}
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3){
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.hamburger.active span:nth-child(1){
  -webkit-transform: translateY(4px);
  -ms-transform    : translateY(4px);
  -o-transform     : translateY(4px);
  transform        : translateY(4px);
}

.hamburger.active span:nth-child(3){
  -webkit-transform: translateY(-16px) rotate(90deg);
  -ms-transform: translateY(-16px) rotate(90deg);
  -o-transform : translateY(-16px) rotate(90deg);
  transform    : translateY(-16px) rotate(90deg);
}


nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  right: 0;
  color: #000;
  background: url(../img/skyblue.png);
  text-align: center;
  transform: translateX(100%);
  transition: all .9s;
  width: 80%;
  height: 100%;
  display: block;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 100px 50px;
  width: 100%;
  text-align: left;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 3px solid #fff;
  font-size: 20px;
}

nav.globalMenuSp ul li span {
  padding-left: 20px;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

  .logo {
    margin-top: 50px;
  }
}
/* ---header--- */


/* ---main--- */

/* ---section-01--- */
.section-01 {
  background: url(../img/section-bg2.png);
  background-position: bottom;
  background-size: contain;

}

.section-01-inner {
  padding-top: 100px;
}

.section-01-box {
  text-align: center;
  width: 80%;
  margin: 50px auto;
  background: #fff;
}

.section-01-box h2 {
  font-size: 40px;
  width: 100%;
  border-bottom: 1px solid #fff;
  padding: 20px 0;
  background-size: cover;
  font-weight: bold;
  text-shadow: 3px 4px 5px #ccc;
}

.section-01-box p {
  text-align: left;
  display: inline-block;
  line-height: 2;
  font-size: 20px;
  color: #000;
  padding: 50px;
  font-weight: bold;
}

@media screen and (max-width :767px) {
  .section-01-inner {
    padding-top: 50px;
  }

  .section-01-box {
    width: 90%;
  }

  .section-01-box h2 {
    font-size: 20px;
    width: 100%;
  }

  .section-01-box p {
    font-size: 16px;
    color: #000;
    padding: 20px;
  }
}
/* ---section-01--- */

/* ---section-02--- */
.section-02-inner {
  padding-top: 50px;
  text-align: center;
}

.section-02-box {
  display: flex;
  justify-content: center;
  margin: 0 auto; 
}

.section-02-item {
  width: 100%;
  max-height: 680px;
  margin: 0 0;
}

.section-02-item img {
  object-fit: cover;
}

.modal-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.5);
  pointer-events: none;
  opacity: 0;
  transition: 0.25s ease-out;
}

.modal-wrapper.show {
  opacity: 1;
  pointer-events: all;
}

.modal-image {
  position: absolute;
  max-width: 60%;
  max-height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  opacity: 0;
  transition: 0.5s ease-out;
}

.modal-image.show {
  opacity: 1;
}

@media screen and (max-width :767px) {
  .section-02-item p {
    margin-top: 10px;
  }

  .modal-image {
    max-width: 100%;
  }
}
/* ---section-02--- */

/* ---section-03--- */
.section-03 {
  background: url(../img/section-bg2.png);
  background-position: bottom;
  background-size: contain;
}

.section-03-inner {
  padding: 100px 0;
}

.section-03-box {
  text-align: center;
  display: block;
  width: 80%;
  margin: 0 auto 100px;
  background: #fff;
  overflow: hidden;
}

.section-03-box h2 {
  font-size: 40px;
  width: 100%;
  padding: 20px 0;
  background-size: cover;
  font-weight: bold;  
  text-shadow: 3px 4px 5px #ccc;
}

.section-03-box p {
  text-align: left;
  display: inline-block;
  line-height: 2;
  font-size: 20px;
  padding: 50px;
  font-weight: bold;
}

.section-03-box img {
  object-fit: none;
}

@media screen and (max-width :767px) {
  .section-03-inner {
    padding: 50px 0 0;
    overflow: hidden;
  }

  .section-03-box {
    width: 90%;
    margin: 0 auto 50px;
  }

  .section-03-box h2 {
    font-size: 20px;
  }

  .section-03-box p { 
    font-size: 16px;
    padding: 20px;
  }

  .section-03-box img {
    object-fit: contain;
  }
}
/* ---section-03--- */

/* ---section-04--- */
.section-04-inner {
  width: 80%;
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
}

.section-04-inner h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 3px solid #167F92;
  display: inline-block;
}

.section-04-inner p {
  font-size: 20px;
  margin: 30px 0;
  border-bottom: 3px solid #fff;
  width: 100%;
  display: block;
  padding-bottom: 10px;
  padding-left: 20px;
  text-align: left;
}

table {
  width: 100%;
  margin-bottom: 50px;
  border-collapse: collapse;
}

table th, table td {
  border: 5px solid whitesmoke;
  padding: 20px;  
  width: 30%;
  text-align: center;
  font-weight: bold;
}

table .shape {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHN0eWxlPSJ3aWR0aDoxMDAlO2hlaWdodDoxMDAlOyI+PGxpbmUgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSIgc3R5bGU9InN0cm9rZTogI2ZmZmZmZjtzdHJva2Utd2lkdGg6IDU7Ij48L2xpbmU+PC9zdmc+');
}

table .red {
  background: orange;
}
table .yellow {
  background: red;
}
table span {
  color: red;
}


@media screen and (max-width :767px) {
  .section-04-inner {
    width: 90%;
    padding: 50px 0;
  }

  .section-04-inner h2 {
    font-size: 25px;
  }

  table .head{
    display:none;
  }

  table th, table td {
    display: block;
    width: 100%;
    border-bottom:none;
    text-align: center;
  }

  table td{
    padding: 0px 12px 0 0;
    display: block;
    width: 100%;
    line-height: 2.5;
  }
  table td:before{
    color: #fff;
    content: attr(data-label);
    font-weight: bold;
    padding: 0px 10px;
    display: inline;
    background: url(../img/red.png);
    margin-right: 10px;
    float: left;
  }
  table tr:last-child{
    border-bottom: solid 1px #ccc;
  }  

  .section-04-inner p {
    margin-bottom: 10px;
    padding-left: 0;
  }

  .sp-yellow {
    background: url(../img/yellow.png);
    background-size: cover;
  }
}

/* ---section-03--- */

/* ---contact--- */
.contact {
  background: url(../img/skyblue.png);
  background-size: cover;
  font-family: sans-serif;
}

.contact h3 {
  text-align: center;
  padding: 50px 0 30px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 3px 4px #333;
}

.contact-inner {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}

.contact-box {
  margin: 0 30px;
  border: 5px solid whitesmoke;
  padding: 10px 100px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 50px;
  background: #fff;
  color: #000;
  margin-bottom: 30px;
}

.contact-box:hover {
  background: #167F92;
  color: #fff;
}

.contact-box p {
  font-weight: bold;
}

.contact-box span {
  font-size: 20px;
}

@media screen and (max-width :767px) {
  .contact-inner {
    display: block;
  }


  .contact-box {
    border: none;
    padding: 0;
    border-radius: 0;
  }
  

  .contact h3 {
    font-size: 22px;
  }

  .contact p {
    background: #fff;
    width: 90%;
    margin: 0 auto;
    border-radius: 30px;
    padding: 10px 0;
    border: 5px solid whitesmoke;
  }
}
/* ---contact--- */

/* ---qr--- */
.qr {
  background: whitesmoke;
}

.qr-inner {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

.qr h3 {
  font-weight: bold;
  font-size: 30px;
  text-shadow: 2px 3px 4px #333;
  padding: 50px 0 20px;
}

.qr-box {
  display: flex;
  justify-content: center;
  margin: 30px 0 0;
}

.qr-box .qr-img {
  background: #000;
  width: 150px;
  height: 150px;
  margin: 0 30px;
}

.qr-box .app {
  background: #000;
  width: 250px;
  height: 60px;
  margin: 0 30px 30px;
}

@media screen and (max-width :767px) {
  .qr-inner {
    width: 90%;
    padding-bottom: 30px;
  }

  .qr h3 {
    font-size: 20px;
  }

  .qr-box {
    display: block;
    text-align: center;
  }

  .qr-box .qr-img {
    margin: 0 auto 30px;
  }

  .qr-box .app {
    margin: 0 auto 30px;
  }
}
/* ---qr--- */

/* ---main--- */


/* ---fotter--- */
footer {
  text-align: center;
  padding: 20px 0;
}
/* ---fotter--- */