body {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

img {
  line-height: 0;
  font-size: 0;
  border: 0;
}

a img, fieldset, img {
  border: 0;
}

blockquote, dd, div, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, ul, li, ol, p, pre, span, td, th {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, address {
  font-size: 100%;
}

ul, li, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

a:link, a:visited {
  color: #fff;
  text-decoration: none;
}

a:hover, a:active {
  color: #fff;
  text-decoration: none;
}

a {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity: 0.80;
  opacity: 0.80;
}

hr {
  display: none;
}

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 760px) {
  .sp {
    display: none !important;
  }

  .pc {
    display: block;
  }
}
@media screen and (max-width: 759px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }

  .fit {
    width: 100%;
    height: auto;
  }
}
body {
  background-color: #00b1af;
}

#container {
  background-color: #00b1af;
  margin: 0 auto;
  color: #FFF;
  text-align: center;
  line-height: 160%;
  min-width: 1100px;
  overflow-x: hidden;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 759px) {
  #container {
    min-width: 100%;
    font-size: 3.4vw;
  }
}

.inner {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 759px) {
  .inner {
    width: 100%;
    padding: 0 5vw;
  }
}

.colRed {
  color: #d3005f;
}

.colGreen {
  color: #00b1af;
}

/*-------------------------------------------------
	++ COMMON 
-------------------------------------------------*/
#main {
  position: relative;
  margin-bottom: 70px;
}
@media screen and (max-width: 759px) {
  #main {
    padding: 0;
  }
}
#main .title {
  margin-bottom: 60px;
}
@media screen and (max-width: 759px) {
  #main .title {
    margin-bottom: 0;
  }
}
#main .mainText {
  font-size: 32px;
  line-height: 1.6;
}
@media screen and (max-width: 759px) {
  #main .mainText {
    padding: 0 5vw;
    font-size: 5.2vw;
  }
}

/*-------------------------------------------------
	++ HOME CONTENTS 
-------------------------------------------------*/
.section {
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 759px) {
  .section {
    padding: 10vw 0;
  }
}
.section .secHead {
  margin-bottom: 40px;
}
@media screen and (max-width: 759px) {
  .section .secHead {
    margin-bottom: 7.5vw;
  }
}
.section .secHead h2 {
  display: inline-block;
  background-color: #003242;
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #FFF;
  position: relative;
  letter-spacing: .05em;
  padding: 10px 50px;
  transform: skewX(-25deg);
}
@media screen and (max-width: 759px) {
  .section .secHead h2 {
    font-size: 5vw;
    padding: 3vw 7vw;
  }
}
.section .secHead h2 span {
  display: block;
  transform: skewX(25deg);
}
.section .secHead h2:before, .section .secHead h2:after {
  content: "";
  width: 26px;
  height: 100%;
  border-left: 10px solid #003242;
  border-right: 10px solid #003242;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}
.section .secHead h2:before {
  left: -20px;
}
.section .secHead h2:after {
  right: -45px;
}

#navigator {
  background: url("../img/bg.png");
}
#navigator .text {
  line-height: 2;
}
@media screen and (max-width: 759px) {
  #navigator .photo {
    padding: 0 15vw;
  }
}
#navigator .photo img {
  display: block;
  margin: 0 auto;
  text-align: center;
  border-radius: 10px;
}
#navigator .photo .capName {
  display: block;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 759px) {
  #navigator .photo .capName {
    margin-top: 3vw;
  }
}

#present .presentList ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
}
#present .presentList ul li {
  width: 442px;
}
#present .presentList ul li img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 759px) {
  #present .presentList ul {
    gap: 5vw;
  }
  #present .presentList ul li {
    width: calc(calc(100% - 5vw) / 2);
  }
}

.infoPanel {
  background-color: #FFF;
  color: #333;
  border-radius: 10px;
  padding: 35px;
  margin-top: 70px;
}
@media screen and (max-width: 759px) {
  .infoPanel {
    padding: 5vw;
    margin-top: 10vw;
  }
}
.infoPanel h3 {
  display: inline-block;
  line-height: 1.2;
  padding: 5px 30px;
  background-color: #003242;
  color: #FFF;
  border-radius: 9999px;
}
.infoPanel .mtline {
  margin-top: 40px;
}
@media screen and (max-width: 759px) {
  .infoPanel .mtline {
    margin-top: 5vw;
  }
}

.btn {
  margin-top: 60px;
}
@media screen and (max-width: 759px) {
  .btn {
    margin-top: 10vw;
  }
}
.btn a {
  background-color: #d3005f;
  color: #FFF;
  padding: 20px 50px;
  display: inline-block;
  box-shadow: 5px 5px 0 0 black;
}
@media screen and (max-width: 759px) {
  .btn a {
    padding: 2vw 10vw;
  }
}
.btn a .en {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 32px;
}
@media screen and (max-width: 759px) {
  .btn a .en {
    font-size: 5vw;
  }
}
.btn a .ja {
  display: block;
}

.bnrLink {
  margin-top: 60px;
}
@media screen and (max-width: 759px) {
  .bnrLink {
    margin-top: 10vw;
  }
}

.xBox {
  max-width: 1000px;
  margin: 50px auto 0 auto;
  text-align: center;
  height: 400px;
}
@media screen and (max-width: 759px) {
  .xBox {
    margin-top: 5vw;
  }
}
.xBox iframe {
  vertical-align: top;
}

@media screen and (max-width: 759px) {
  #sns h2 img {
    width: 10%;
  }
}

/*-------------------------------------------------
	++ FORM 
-------------------------------------------------*/
#message {
  background-color: #000;
}
#message .formAtt {
  margin: 20px 0;
  text-align: left;
}
@media screen and (max-width: 759px) {
  #message .formAtt {
    margin: 5vw 0;
  }
}
#message .formWrap {
  padding: 0 75px 50px 75px;
}
@media screen and (max-width: 759px) {
  #message .formWrap {
    padding: 5vw;
  }
}
#message .formWrap .message-subtitle {
  color: #00b1af;
  padding: 7px;
  margin: 20px 0;
  font-size: 18px;
  border-bottom: 2px solid #00b1af;
}
@media screen and (max-width: 759px) {
  #message .formWrap .message-subtitle {
    margin: 3vw 0;
    padding: 2vw;
    font-size: 3.8vw;
  }
}
#message .formWrap .sub-link {
  margin: 20px 0;
}
@media screen and (max-width: 759px) {
  #message .formWrap .sub-link {
    margin: 3vw 0;
  }
}
#message .formWrap .sub-link a {
  margin: 0 20px;
}
@media screen and (max-width: 759px) {
  #message .formWrap .sub-link a {
    margin: 0 3vw;
  }
}
#message .formWrap #form-notice {
  margin: 20px 0;
  text-align: left;
  font-size: 14px;
}
@media screen and (max-width: 759px) {
  #message .formWrap #form-notice {
    margin: 3vw 0;
  }
}
#message .formWrap #form-notice .formAtt {
  margin-bottom: 20px;
}
@media screen and (max-width: 759px) {
  #message .formWrap #form-notice .formAtt {
    margin-bottom: 3vw;
  }
}
#message .formWrap a {
  text-decoration: underline;
}
#message .formWrap table {
  width: 100%;
  border-collapse: collapse;
}
#message .formWrap table tr th {
  vertical-align: top;
  padding-top: 9px;
  width: 30%;
  padding-left: 30px;
  padding-right: 24px;
  text-align: right;
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 759px) {
  #message .formWrap table tr th {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0 0 1vw 0;
    font-size: 3.6vw;
  }
}
#message .formWrap table tr td {
  padding: 1px 0px 7px 0;
  width: 70%;
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 759px) {
  #message .formWrap table tr td {
    display: block;
    width: 100%;
    text-align: left;
    padding-bottom: 5vw;
    font-size: 3.6vw;
  }
  #message .formWrap table tr td textarea, #message .formWrap table tr td select {
    font-size: 16px;
  }
}
@media screen and (max-width: 759px) {
  #message .formWrap table tr td input {
    font-size: 16px;
  }
}
#message .formWrap table tr td input.fname {
  width: 50%;
  margin-bottom: 2px;
  vertical-align: middle;
}
@media screen and (max-width: 759px) {
  #message .formWrap table tr td input.fname {
    width: 45%;
  }
}
#message .formWrap table tr td input.fage {
  width: 10%;
  margin-right: 3px;
  margin-bottom: 2px;
  vertical-align: middle;
}
@media screen and (max-width: 759px) {
  #message .formWrap table tr td input.fage {
    width: 15%;
  }
}
@media screen and (max-width: 759px) {
  #message .formWrap .thanks {
    padding: 10vw 0;
  }
}
#message .formWrap .thanks h2 {
  color: #00b1af;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 400;
}
@media screen and (max-width: 759px) {
  #message .formWrap .thanks h2 {
    font-size: 6vw;
    margin-bottom: 3vw;
  }
}

#hw-message input[type="text"], #hw-message input[type="password"], #hw-message input[type="tel"], #hw-message input[type="email"], #hw-message input[type="number"] {
  width: 100%;
  border: 0;
  background: #fff;
  -webkit-appearance: none;
  padding: 5px;
  border-radius: 0;
  font-size: 16px;
  height: 36px;
  vertical-align: top;
}
@media screen and (max-width: 759px) {
  #hw-message input[type="text"], #hw-message input[type="password"], #hw-message input[type="tel"], #hw-message input[type="email"], #hw-message input[type="number"] {
    padding: 2vw;
  }
}
#hw-message input:focus {
  outline: none;
}
#hw-message select:focus {
  outline: none;
}
#hw-message textarea {
  width: 100%;
  border: 1px solid #d1d1d1;
  background: #fff;
  -webkit-appearance: none;
  padding: 5px;
  border-radius: 0;
  font-size: 16px;
  height: 100px;
}
@media screen and (max-width: 759px) {
  #hw-message textarea {
    padding: 2vw;
    height: 40vw;
  }
}
#hw-message textarea:focus {
  outline: none;
}

.custom-selectbox {
  position: relative;
  display: inline-block;
  border: 1px solid #d0d0d0;
  border-radius: 0;
  background: #f8f8f8;
  margin-bottom: 5px;
  width: 100%;
  padding: 7px;
}
@media screen and (max-width: 759px) {
  .custom-selectbox {
    margin-bottom: 3vw;
  }
}
.custom-selectbox:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -3px;
  display: block;
  width: 6px;
  height: 6px;
  border-top: solid 2px #4d4d4d;
  border-right: solid 2px #4d4d4d;
  transform: rotate(135deg);
}
@media screen and (max-width: 759px) {
  .custom-selectbox:before {
    right: 3vw;
    margin-top: -1vw;
    width: 2vw;
    height: 2vw;
  }
}
.custom-selectbox:nth-last-of-type(1) {
  margin-bottom: 0;
}
.custom-selectbox select {
  cursor: pointer;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  padding: 2px 20px 2px 5px;
  border: none;
  outline: none;
  border-radius: 0;
  background: transparent;
  width: 100%;
  font-size: 16px;
}
@media screen and (max-width: 759px) {
  .custom-selectbox select {
    padding: 1vw 7vw 1vw 3vw;
  }
}
.custom-selectbox select::-ms-expand {
  display: none;
}

#form-submit,
#form-reset {
  -webkit-appearance: none;
  border: 0;
  background-color: #f7f7f7;
  color: #333;
  height: 44px;
  width: 264px;
  margin: 0 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
@media screen and (max-width: 759px) {
  #form-submit,
  #form-reset {
    width: 80%;
    padding: 2vw 3vw;
    font-size: 3.4vw;
    margin-bottom: 3vw;
  }
}

#form-submit {
  background-color: #d3005f;
  color: #FFF;
}

/*-------------------------------------------------
	++ FOOTER
-------------------------------------------------*/
#jwaveFooter {
  background-color: #00b1af;
  color: #FFF;
  padding: 20px 0 78px 0;
}
#jwaveFooter .commonSet {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
#jwaveFooter .commonSet .toHome {
  width: 50%;
  text-align: left;
}
#jwaveFooter .commonSet .footerLogo {
  width: 50%;
  text-align: right;
}
#jwaveFooter .commonSet .copyRight {
  width: 100%;
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 759px) {
  /* SP */
  #jwaveFooter {
    padding: 6vw 0;
  }
  #jwaveFooter .commonSet .toHome {
    width: 70%;
  }
  #jwaveFooter .commonSet .toHome a {
    width: 25%;
    display: block;
  }
  #jwaveFooter .commonSet .footerLogo {
    width: 30%;
  }
  #jwaveFooter .commonSet .copyRight {
    width: 60%;
    margin: 0 auto;
    margin-top: 8vw;
  }
}
.remodal {
  padding: 0 !important;
}
.remodal .modalImg img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.remodal .remodal-close {
  left: auto;
  right: 0;
  top: -35px;
}
