@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  font-size: 2.2rem;
  color: #111;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

@media screen and (max-width: 750px) {
  body {
    font-size: 2.9vw;
  }
}

.img-slide_wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: url(../img/common/back-parts.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

a {
  color: #111;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
  -ms-transition: .3s;
}

a:hover {
  color: #111;
  text-decoration: none;
  opacity: 0.65;
}

a:active,
a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
dd,
dt,
dl {
  margin: 0;
}

figcaption,
figure,
main,
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  border: none;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/*margin*/
.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  margin: 2px;
  padding: 0 .3em;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus {
  outline: none;
  border-color: #000;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: .5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  padding: 0 .3em;
  resize: vertical;
  width: 100%;
}

textarea :focus {
  outline: none;
  border-color: #000;
}

input[type=checkbox],
input[type=radio] {
  background: #FFF;
  cursor: pointer;
  margin-right: .5em;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.4rem;
  color: #C5C5C5;
}


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

layout/header.scss

***************************/
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

/* Hamburger menu */
.gnav {
  position: fixed;
  left: 5%;
  top: 80px;
  max-width: 750px;
  width: 90%;
  background: #fff;
  z-index: 6;
  padding: 40px 20px;
  border: 2px solid #1d9894;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
}

.gnav.active {
  opacity: 1;
  visibility: visible;
  transition: all .4s;
}

.gnav ul {
  width: 100%;
}

.gnav ul li {
  text-align: center;
}

.gnav ul li:not(:last-child) {
  margin-bottom: 10px;
}

.gnav ul li a {
  font-size: 2.2rem;
}

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

 header

***************************/
.header {
  max-width: 750px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 999;
  width: 100%;
}

.header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  padding: 20px 25px;

  line-height: 1;
  font-size: 0;
}

.header .logo a {
  display: inline-block;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  .header .logo {
    width: 24vw;
    padding: 2.7vw 3.3vw;
  }
}

.header.fixedmenu .logo {
  width: 130px;
  padding: 10px 25px;
  transition: all .4s;
}

@media screen and (max-width: 750px) {
  .header.fixedmenu .logo {
    width: 24vw;
    padding: 2.7vw 3.3vw;
  }
}

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

layout/footer.scss

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


.footer a,
.footer a:hover {
  color: #fff;
}

.footer_inner {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.footer-text {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 750px) {
  .footer-text {
    margin-bottom: 6.7vw;
  }
}

.footer-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.footer .copyright {
  text-align: center;
}

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

 user common css

////////////////////////*/
main {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 20px #738299;
}

.wrap_700 {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  padding-right: 25px;
  padding-left: 25px;
}

.wrap_640 {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

.sp_550 {
  display: none;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vt_align_top {
  vertical-align: top;
}

.wd_100 {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block;
  }
}

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

  .sp_550 {
    display: block;
  }
}

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

fonts

////////////////////////*/
.ls_5 {
  letter-spacing: 0.05em;
}

.lh_2 {
  line-height: 2;
}

.lh_18 {
  line-height: 1.8;
}

.lh_1 {
  line-height: 1;
}

.gap-20 {
  gap: 20px;
}

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

object/project/effects.scss

***************************/
/*ロード時にフェードイン*/
.fadein {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*スクロールフェードイン*/
.fadeInTop {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
  visibility: visible !important;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInBottom {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  visibility: visible !important;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@-webkit-keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}

@keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}

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

btn

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

.btn-center {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .tab-center {
    margin: 0 auto;
  }
}

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

hdg__

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

object/project/top.scss

***************************/
.mv {
  width: 100%;
  padding-bottom: 20px;
}

.mv img {
  width: 100%;
}

.t-right {
  text-align: right;
}

.t-center {
  text-align: center;
}

.event_btn {
  margin-top: 30px;
}

.bg_blue {
  background: #AED1EF;
}

.bg_lping {
  background: #FEF7F1;
}

.footer {
  padding-bottom: 80px;
}

.footer_fixed_container {
  gap: 10px;
  position: fixed;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: #4D4747;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_fixed_container li {
  width: 100%;
  max-width: calc(100% / 3);
  text-align: center;

}

.footer_fixed_container a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 5px;
  height: 80px;
  width: 100%;
}

.footer_fixed_container li+li {
  border-left: 3px dotted #fff;
}

.img-slide_wrap {

  overflow: hidden;
}

.img-slide {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/specialsail.png);
  background-repeat: repeat-x;
  background-size: auto 130px;
  -webkit-animation: loop-txt 35s linear infinite;
  animation: loop-txt 35s linear infinite;
  transition: 0.4s;
}

@-webkit-keyframes loop-txt {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -2000px 0;
  }
}

@keyframes loop-txt {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -2000px 0;
  }
}

.top01 {
  padding-bottom: 100px;
  border-radius: 0 0 20px 20px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .top01 {
    padding-bottom: 200px;
  }
}

.top02 {
  margin-top: -20px;
  padding-top: 80px;
  padding-bottom: 100px;

  background: url(../img/top/top02_bg.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
  .top02 {
    padding-top: 100px;
    padding-bottom: 200px;
  }
}

.top_02_box {
  border-radius: 15px;
  padding: 40px 20px;
}

@media screen and (min-width: 769px) {
  .top_02_box {
    border-radius: 25px;
    padding: 60px 40px;
  }
}

.top02_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (min-width: 769px) {
  .top02_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

.top_02_box.--yellow {
  background: #FFFCD1;
}

.top_02_box.--blue {
  background: #BAE3F9;
}

.top_02_box.--pink {
  background: #FADCE9;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;

  margin-top: 40px;
}

@media screen and (min-width: 769px) {
  .youtube {
    margin-top: 60px;
  }
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.top02_list.--type02 {
  align-items: center;
  margin-top: 60px;
}

@media screen and (min-width: 769px) {
  .top02_list.--type02 {
    margin-top: 120px;
  }
}

.top02_event_btn {
  margin-top: 60px;
}

@media screen and (min-width: 769px) {
  .top02_event_btn {
    margin-top: 120px;
  }
}

.top03 {
  padding-top: 30px;
  padding-bottom: 100px;

  position: relative;
}

.top03::before{
  content: "";
  background: url(../img/top/top03_bg.png);
  width: 80%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  z-index: 1;
}
.top03_contents{
  position: relative;
  z-index: 5;
}
.top03_event_btn {
  padding-top: 60px;
}

@media screen and (min-width: 769px) {
  .top03 {
    padding-top: 40px;
    padding-bottom: 200px;
  }

  .top03_event_btn {
    padding-top: 90px;
  }
}