<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* --------------------------------
[コーディングルール]
・基本classのみ使用し、idはアンカーやJSで使用
・class名、フォルダ名、ファイル名はハイフン(-）区切り
・トップページはロゴを&lt;h1&gt;、他のページはロゴを&lt;p&gt;でページタイトルを&lt;h1&gt;にする
・メディアクエリーはPCファーストで、@media screen and (max-width: 767px) {}を使用
-------------------------------- */
/* reset -------- */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px; }

body {
  margin: 0;
  padding: 0; }

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

h1, h2, h3, h4, h5, h6, p, th, td, address, small, i {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal; }

ol, ul, dl, dt, dd {
  list-style-type: none;
  margin: 0;
  padding: 0; }

img, object, embed, video {
  border: 0;
  vertical-align: bottom; }

img {
  max-width: 100%; }

table {
  border-spacing: 0;
  border-collapse: collapse; }

th {
  text-align: left; }

em {
  font-style: normal;
  font-weight: bold; }

a {
  color: #000;
  text-decoration: none; }
  a:hover {
    color: #000; }

/* body -------- */
body {
  line-height: 1.5;
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1.3rem;
  color: #333;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  text-align: justify;
  text-justify: inter-ideograph; }

/* header -------- */
.header {
  position: relative;
  min-height: 110px;
  background: #fcf9f0 url(../images/h-line.png) repeat-x center top;
  background-size: 100% 14px; }
  @media screen and (max-width: 767px) {
    .header {
      min-height: 70px;
      background-size: 100% 10px; } }
  .header:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: -40px;
    width: 100%;
    height: 40px;
    background-repeat: repeat-x;
    background-position: center bottom;
    background-image: url(../images/home/sec-bg1.png); }
    @media screen and (max-width: 767px) {
      .header:after {
        bottom: -20px;
        height: 20px;
        background-size: auto 20px; } }
  .header .logo-wrap {
    padding-top: 55px;
    text-align: center; }
    @media screen and (max-width: 767px) {
      .header .logo-wrap {
        padding-top: 33px; } }
  .header .sns {
    position: absolute;
    right: 20px;
    top: 42px; }
    .header .sns ul li {
      display: inline-block; }
    @media screen and (max-width: 767px) {
      .header .sns {
        right: 10px;
        top: 30px; } }

/* content -------- */
.content {
  line-height: 1.8;
  font-size: 14px; }
  .content .content-title {
    padding: 15px;
    background-color: #ddd;
    text-align: center;
    font-size: 24px; }

/* footer -------- */
/* --------------------------------
[module.cssについて]
・共通レイアウトと共通タグを記述
-------------------------------- */
/* all -------- */
.clearfix {
  zoom: 1; }

.clearfix:after {
  content: "";
  display: block;
  clear: both; }

.over {
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s; }
  @media screen and (min-width: 768px) {
    .over :hover {
      opacity: 0.7; } }

.container {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px; }

.display-inline {
  display: inline; }

.display-inline-block {
  display: inline-block; }

.display-block {
  display: block; }

.display-table {
  display: table; }

.display-table-cell {
  display: table-cell; }

.text-left {
  text-align: left; }

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

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

.image-over {
  display: block;
  height: 0;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }

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

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

/* wordpress editor -------- */
.format .aligncenter {
  display: block;
  margin: 0 auto; }

.format .alignright {
  float: right; }

.format .alignleft {
  float: left; }

.format img[class*="wp-image-"],
.format img[class*="attachment-"] {
  max-width: 100%;
  height: auto; }

/* format -------- */
.format a {
  color: #03c;
  text-decoration: none; }

.format a:hover {
  color: #69f; }

.format h2 {
  margin: 30px 0 20px;
  font-size: 24px;
  font-weight: bold; }

.format h3 {
  margin: 30px 0 20px;
  font-size: 18px;
  font-weight: bold; }

.format p,
.format ul,
.format ol,
.format table {
  margin-bottom: 20px; }

.format li {
  margin-bottom: 10px; }

.format ul {
  list-style-type: disc;
  padding-left: 1.5em; }

.format ol {
  list-style-type: decimal;
  padding-left: 1.5em; }

.format hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #999; }

.format table {
  width: 100%; }

.format th {
  width: 150px;
  padding: 10px 20px;
  border: 1px solid #999;
  background-color: #eee; }

.format td {
  padding: 10px 20px;
  border: 1px solid #999; }

.m-movie {
  max-width: 620px;
  margin: 0 auto; }
  .m-movie .frame {
    position: relative;
    padding-top: 56.25%; }
    .m-movie .frame iframe {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%; }

/* --------------------------------
[page.cssについて]
・各ページごとのCSSを記述
・必ず.page-homeなど各ページごとのclassを付ける
-------------------------------- */
/* page-home -------- */
.page-home .sec {
  position: relative;
  min-height: 100px;
  font-size: 1.5rem;
  color: #69737c;
  line-height: 1.4; }
  @media screen and (max-width: 767px) {
    .page-home .sec {
      font-size: 1.4rem; } }
  .page-home .sec:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: -40px;
    width: 100%;
    height: 40px;
    background-repeat: repeat-x;
    background-position: center bottom; }
  .page-home .sec .sec-inner {
    padding-top: 85px; }
  .page-home .sec h2 {
    text-align: center; }

.page-home .sec-kv {
  padding-bottom: 40px;
  background-color: #fcf9f0; }
  @media screen and (max-width: 767px) {
    .page-home .sec-kv {
      padding-bottom: 15px; } }
  .page-home .sec-kv:after {
    background-image: url(../images/home/sec-bg1.png); }
  .page-home .sec-kv .sec-inner {
    padding-top: 0; }
  .page-home .sec-kv h2 {
    margin-bottom: 34px;
    text-align: center; }
    @media screen and (max-width: 767px) {
      .page-home .sec-kv h2 {
        margin-bottom: 15px; } }
  .page-home .sec-kv .gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .page-home .sec-kv .gnav ul li a {
      display: block; }
  @media screen and (max-width: 767px) {
    .page-home .sec-kv .gnav {
      max-width: 320px;
      margin: 0 auto; }
      .page-home .sec-kv .gnav ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
        .page-home .sec-kv .gnav ul li a {
          padding: 5px 0; }
          .page-home .sec-kv .gnav ul li a img {
            height: 30px; }
        .page-home .sec-kv .gnav ul li.sep img {
          height: 15px; } }

.page-home .sec-intro {
  height: 2260px;
  background: #b2efee url(../images/home/intro-bg.png) no-repeat center 110px;
  background-size: 1330px auto; }
  @media screen and (max-width: 1280px) {
    .page-home .sec-intro {
      height: 1870px;
      background-position: center 180px;
      background-size: 1040px auto; } }
  @media screen and (max-width: 980px) {
    .page-home .sec-intro {
      height: 1550px;
      background-position: center 160px;
      background-size: 840px auto; } }
  @media screen and (max-width: 767px) {
    .page-home .sec-intro {
      height: auto;
      background: #b2efee none;
      padding-bottom: 60px; } }
  .page-home .sec-intro:after {
    background-image: url(../images/home/sec-bg2.png); }
  .page-home .sec-intro h2 {
    margin-bottom: 50px; }
    @media screen and (max-width: 767px) {
      .page-home .sec-intro h2 {
        margin-bottom: 30px; } }
  .page-home .sec-intro .movie {
    padding: 0 15px; }
    .page-home .sec-intro .movie .text {
      margin-top: 78px;
      text-align: center; }
    @media screen and (max-width: 1280px) {
      .page-home .sec-intro .movie .text {
        margin-top: 50px; } }
    @media screen and (max-width: 980px) {
      .page-home .sec-intro .movie .m-movie {
        max-width: 500px; }
      .page-home .sec-intro .movie .text {
        max-width: 500px;
        margin: 15px auto 0; } }
  .page-home .sec-intro .sp-bg {
    overflow: hidden;
    margin-top: 20px; }
    .page-home .sec-intro .sp-bg .inner {
      margin: 0 -20px; }
  .page-home .sec-intro .btn {
    position: absolute;
    left: 0;
    bottom: 90px;
    width: 100%;
    text-align: center; }
    @media screen and (max-width: 767px) {
      .page-home .sec-intro .btn {
        position: relative;
        bottom: auto;
        margin-top: 20px; } }

.page-home .sec-enjoy {
  background-color: #fcf9f0;
  background: #fcf9f0 url(../images/home/enjoy-bg.png) no-repeat center 90px;
  background-size: 792px auto; }
  .page-home .sec-enjoy:after {
    background-image: url(../images/home/sec-bg1.png); }
  .page-home .sec-enjoy .sec-inner {
    padding-bottom: 60px;
    overflow: hidden; }
  .page-home .sec-enjoy h2 {
    margin-bottom: 55px; }
    @media screen and (max-width: 767px) {
      .page-home .sec-enjoy h2 {
        margin-bottom: 40px; } }
  .page-home .sec-enjoy .m-movie {
    max-width: 760px;
    margin-bottom: 50px; }
    @media screen and (max-width: 767px) {
      .page-home .sec-enjoy .m-movie {
        margin-bottom: 30px; } }
  .page-home .sec-enjoy .boxs .box {
    margin-bottom: 35px; }
    .page-home .sec-enjoy .boxs .box h3 {
      position: relative;
      z-index: 2;
      margin-bottom: 8px; }
      @media screen and (max-width: 767px) {
        .page-home .sec-enjoy .boxs .box h3 img {
          height: 50px; } }
    .page-home .sec-enjoy .boxs .box .enjoy-slider-wrap {
      position: relative; }
      .page-home .sec-enjoy .boxs .box .enjoy-slider-wrap:before {
        content: '';
        display: block;
        position: absolute;
        z-index: 1;
        width: 100%;
        max-width: 775px;
        height: 0;
        padding-top: 60%;
        left: -50px;
        top: -61px;
        background-color: #f8dedd; }
        @media screen and (max-width: 767px) {
          .page-home .sec-enjoy .boxs .box .enjoy-slider-wrap:before {
            left: -25px;
            top: -40px; } }
    .page-home .sec-enjoy .boxs .box:nth-child(2n) .enjoy-slider-wrap:before {
      left: auto;
      right: -50px;
      background-color: #c7eee5; }
      @media screen and (max-width: 767px) {
        .page-home .sec-enjoy .boxs .box:nth-child(2n) .enjoy-slider-wrap:before {
          right: -25px; } }
    .page-home .sec-enjoy .boxs .box .enjoy-slider {
      position: relative;
      z-index: 2;
      margin-bottom: 70px; }
      @media screen and (max-width: 767px) {
        .page-home .sec-enjoy .boxs .box .enjoy-slider {
          margin-bottom: 50px; } }
      .page-home .sec-enjoy .boxs .box .enjoy-slider .slide span {
        display: block;
        height: 0;
        padding-top: 60.52%;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover; }
      .page-home .sec-enjoy .boxs .box .enjoy-slider .slick-prev {
        z-index: 1;
        width: 53px;
        height: 53px;
        background: url(../images/home/enjoy-box-slide-prev.png) no-repeat center center;
        background-size: contain; }
        .page-home .sec-enjoy .boxs .box .enjoy-slider .slick-prev:before {
          display: none; }
        .page-home .sec-enjoy .boxs .box .enjoy-slider .slick-prev:hover {
          opacity: .8; }
        @media screen and (max-width: 767px) {
          .page-home .sec-enjoy .boxs .box .enjoy-slider .slick-prev {
            left: -10px;
            width: 40px;
            height: 40px; } }
      .page-home .sec-enjoy .boxs .box .enjoy-slider .slick-next {
        z-index: 1;
        width: 53px;
        height: 53px;
        background: url(../images/home/enjoy-box-slide-next.png) no-repeat center center;
        background-size: contain; }
        .page-home .sec-enjoy .boxs .box .enjoy-slider .slick-next:before {
          display: none; }
        .page-home .sec-enjoy .boxs .box .enjoy-slider .slick-next:hover {
          opacity: .8; }
        @media screen and (max-width: 767px) {
          .page-home .sec-enjoy .boxs .box .enjoy-slider .slick-next {
            right: -10px;
            width: 40px;
            height: 40px; } }
      .page-home .sec-enjoy .boxs .box .enjoy-slider .slick-dots {
        bottom: -42px; }
        .page-home .sec-enjoy .boxs .box .enjoy-slider .slick-dots li button {
          width: 14px;
          height: 13px;
          background: url(../images/home/enjoy-box-slide-icon.png) no-repeat center center;
          background-size: contain;
          opacity: .3; }
          .page-home .sec-enjoy .boxs .box .enjoy-slider .slick-dots li button:before {
            display: none; }
        .page-home .sec-enjoy .boxs .box .enjoy-slider .slick-dots li.slick-active button {
          opacity: 1; }
        @media screen and (max-width: 767px) {
          .page-home .sec-enjoy .boxs .box .enjoy-slider .slick-dots {
            bottom: -30px; } }
    .page-home .sec-enjoy .boxs .box .prof {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      @media screen and (max-width: 767px) {
        .page-home .sec-enjoy .boxs .box .prof {
          display: block; } }
      .page-home .sec-enjoy .boxs .box .prof .photo {
        width: 170px; }
        @media screen and (max-width: 767px) {
          .page-home .sec-enjoy .boxs .box .prof .photo {
            width: 120px;
            margin: 0 auto 10px;
            text-align: center; } }
      .page-home .sec-enjoy .boxs .box .prof .info {
        position: relative;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        background: url(../images/home/enjoy-box-info-bg1.png) no-repeat left top, url(../images/home/enjoy-box-info-bg2.png) no-repeat right top, url(../images/home/enjoy-box-info-bg3.png) no-repeat right bottom, url(../images/home/enjoy-box-info-bg4.png) no-repeat left bottom;
        background-size: 33px 35px;
        padding: 3px 30px 25px; }
        .page-home .sec-enjoy .boxs .box .prof .info .name {
          position: relative;
          margin-bottom: 8px;
          padding-top: 5px;
          padding-left: 80px;
          line-height: 1.3;
          font-size: 2rem;
          font-weight: bold; }
          .page-home .sec-enjoy .boxs .box .prof .info .name:before {
            content: '';
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            width: 64px;
            height: 60px;
            background: url(../images/home/enjoy-box-info-icon.png) no-repeat left top;
            background-size: contain; }
          @media screen and (max-width: 767px) {
            .page-home .sec-enjoy .boxs .box .prof .info .name {
              padding-left: 50px;
              font-size: 1.5rem; }
              .page-home .sec-enjoy .boxs .box .prof .info .name:before {
                width: 40px;
                height: 40px; } }
        .page-home .sec-enjoy .boxs .box .prof .info .text {
          font-size: 1.6rem;
          letter-spacing: -1px; }
  .page-home .sec-enjoy .boxs .box-coming .enjoy-slider .slick-prev {
    pointer-events: none; }
    .page-home .sec-enjoy .boxs .box-coming .enjoy-slider .slick-prev:hover {
      opacity: 1; }
  .page-home .sec-enjoy .boxs .box-coming .enjoy-slider .slick-next {
    pointer-events: none; }
    .page-home .sec-enjoy .boxs .box-coming .enjoy-slider .slick-next:hover {
      opacity: 1; }
  .page-home .sec-enjoy .boxs .box-coming .enjoy-slider .slick-dots {
    bottom: -42px; }
    .page-home .sec-enjoy .boxs .box-coming .enjoy-slider .slick-dots li {
      pointer-events: none; }
      .page-home .sec-enjoy .boxs .box-coming .enjoy-slider .slick-dots li button {
        opacity: .3 !important; }
      .page-home .sec-enjoy .boxs .box-coming .enjoy-slider .slick-dots li.slick-active button {
        opacity: 1; }

.page-home .sec-enjoywith {
  background: #ffd5d6 url(../images/home/enjoywith-bg.png) no-repeat center 110px;
  background-size: 1360px auto; }
  @media screen and (max-width: 767px) {
    .page-home .sec-enjoywith {
      background-position: center 60px;
      background-size: 160% auto; } }
  .page-home .sec-enjoywith:after {
    background-image: url(../images/home/sec-bg3.png); }
  .page-home .sec-enjoywith .sec-inner {
    padding-bottom: 80px; }
  .page-home .sec-enjoywith h2 {
    margin-bottom: 65px; }
    @media screen and (max-width: 767px) {
      .page-home .sec-enjoywith h2 {
        margin-bottom: 40px; } }
  .page-home .sec-enjoywith .flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -2%; }
    .page-home .sec-enjoywith .flow .box {
      width: 50%; }
      .page-home .sec-enjoywith .flow .box p {
        padding: 1% 3% 8% 3%;
        letter-spacing: -2px; }
    .page-home .sec-enjoywith .flow .box-wide {
      width: auto; }
      .page-home .sec-enjoywith .flow .box-wide p {
        padding: .5% 1.5% 4% 1.5%;
        letter-spacing: -1px; }
    @media screen and (max-width: 767px) {
      .page-home .sec-enjoywith .flow {
        display: block;
        margin: 0 4% 0 5%; }
        .page-home .sec-enjoywith .flow .box {
          width: auto; }
          .page-home .sec-enjoywith .flow .box p {
            padding-bottom: 7%; } }

.page-home .sec-use {
  background: #fcf9f0 url(../images/home/use-bg.png) no-repeat center 100px;
  background-size: 1234px auto; }
  @media screen and (max-width: 767px) {
    .page-home .sec-use {
      background-size: 110% auto; } }
  .page-home .sec-use:after {
    background-image: url(../images/home/sec-bg1.png); }
  .page-home .sec-use .sec-inner {
    overflow: hidden;
    padding-bottom: 80px; }
  .page-home .sec-use h2 {
    margin-bottom: 60px; }
    @media screen and (max-width: 767px) {
      .page-home .sec-use h2 {
        margin-bottom: 30px; } }
  .page-home .sec-use .movie {
    margin-bottom: 105px; }
    @media screen and (max-width: 767px) {
      .page-home .sec-use .movie {
        margin-bottom: 50px; } }
  .page-home .sec-use .flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5%; }
    .page-home .sec-use .flow .box {
      width: 50%; }
      .page-home .sec-use .flow .box:nth-child(2n) {
        margin-left: -3%; }
      .page-home .sec-use .flow .box p {
        padding: 1% 1% 4% 9%;
        letter-spacing: -1px; }
    @media screen and (max-width: 767px) {
      .page-home .sec-use .flow {
        display: block;
        margin: 0 5% 0 -1%; }
        .page-home .sec-use .flow .box {
          width: auto; }
          .page-home .sec-use .flow .box:nth-child(2n) {
            margin-left: 0; }
          .page-home .sec-use .flow .box p {
            padding-bottom: 6%; } }

.page-home .sec-acce-wrap {
  background: #b2efee url(../images/home/acce-wrap-bg.png) no-repeat center 82px;
  background-size: 1173px auto; }
  @media screen and (max-width: 767px) {
    .page-home .sec-acce-wrap {
      background-size: 160% auto; } }

.page-home .sec-standard {
  text-align: center; }
  .page-home .sec-standard .sec-inner {
    padding-left: 15px;
    padding-right: 15px; }
  .page-home .sec-standard h2 {
    margin-bottom: 13px; }
  .page-home .sec-standard .image-wrap {
    max-width: 1040px;
    margin: 0 auto;
    position: relative; }
  .page-home .sec-standard .text {
    position: absolute;
    left: 30px;
    bottom: 1.5%;
    width: 315px;
    padding: 18px 22px;
    text-align: left;
    background: url(../images/home/standard-text-bg1.png) no-repeat left top, url(../images/home/standard-text-bg2.png) no-repeat right top, url(../images/home/standard-text-bg3.png) no-repeat right bottom, url(../images/home/standard-text-bg4.png) no-repeat left bottom;
    background-size: 33px; }
    @media screen and (max-width: 767px) {
      .page-home .sec-standard .text {
        position: relative;
        left: auto;
        width: auto;
        max-width: 315px;
        margin: 20px auto 0; } }

.page-home .sec-acce {
  padding-bottom: 40px;
  text-align: center; }
  .page-home .sec-acce:after {
    display: none; }
  .page-home .sec-acce .sec-inner {
    padding-top: 55px; }
  .page-home .sec-acce h2 {
    margin-bottom: 52px; }
    @media screen and (max-width: 767px) {
      .page-home .sec-acce h2 {
        margin-bottom: 20px; } }
  .page-home .sec-acce h3 {
    margin-bottom: 13px; }
  .page-home .sec-acce .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 62px; }
    .page-home .sec-acce .items .item {
      margin: 0 1.7%; }
    @media screen and (max-width: 767px) {
      .page-home .sec-acce .items {
        display: block;
        margin-bottom: 20px; }
        .page-home .sec-acce .items .item {
          padding: 10px 0; }
          .page-home .sec-acce .items .item img {
            width: 240px; } }
  .page-home .sec-acce .btn {
    margin-bottom: 62px; }
    @media screen and (max-width: 767px) {
      .page-home .sec-acce .btn {
        margin-bottom: 40px; } }
  .page-home .sec-acce .gotop {
    margin-bottom: 80px; }
    @media screen and (max-width: 767px) {
      .page-home .sec-acce .gotop {
        margin-bottom: 60px; } }
  .page-home .sec-acce .sns {
    margin-bottom: 15px; }
    .page-home .sec-acce .sns li {
      display: inline-block; }
  .page-home .sec-acce .copyright {
    font-size: 1.1rem; }

/* --------------------------------
[サンプルコード]
-------------------------------- */
/* 白文字が太いとき
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  */
/* 画像文字を縮小しべぼやけるとき
  backface-visibility;
  -webkit-backface-visibility;
  */
</pre></body></html>