@charset "UTF-8";
body {
  font-weight: 400;
}
p,
span {
  line-height: 1.5;
}
a {
  word-break: break-all;
  color: inherit;
  transition: all 0.3s all;
}
a:hover {
  color: inherit;
}
em {
  font-style: normal;
}
sup {
  top: -0.25em;
}
.txt {
  font-size: 12px;
  line-height: 2;
}
@media screen and (min-width: 641px) {
  .txt {
    font-size: 16px;
  }
}

.bold {
  font-weight: 500;
}
.underline {
  text-decoration: underline;
}

ul.notes {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 10px;
  line-height: 1.6;
}
.notes li:before {
  content: "※";
}
ul.notes.number {
  counter-reset: number;
  text-indent: -2.5em;
  padding-left: 2.5em;
}
ul.notes.number > li:not(.nonumber):before {
  counter-increment: number;
  content: "※" counter(number) " ";
}
ul.notes.number > li.nonumber:before {
  content: "※";
  margin-right: 1.5em;
}
@media screen and (min-width: 641px) {
  ul.notes {
    font-size: 12px;
  }
}
.dot li:before {
  content: "・";
}
ul.dot {
  text-indent: -1em;
  padding-left: 1em;
}
.wrap {
  position: relative;
  counter-reset: number;
}
@media screen and (min-width: 641px) {
  .wrap {
    min-width: 1440px;
  }
  .row {
    width: 1320px;
    padding: 0 20px;
    max-width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .row {
    padding: 0 20px;
  }
}
@media screen and (max-width: 335px) {
  .row {
    padding: 0 10px;
  }
}

/** SITE HEADER
==============================================*/
.site-header {
  position: relative;
  z-index: 1;
}
.site-header .fixed_header {
  position: fixed;
  width: 100%;
  top: -100px;
  left: 0;
  background-color: #fff;
  transition: all 0.5s ease;
  opacity: 0;
}
.site-header.is-active .fixed_header {
  top: 0;
  opacity: 1;
  transition: all 0.5s ease;
}

.site-header .site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  width: 100%;
  position: relative;
  transition: all 0.5s ease;
}
/* .site-header.is-active {
  position: fixed;
} */

.site-header .masthead .brand-logo .logo img {
  max-width: 100%;
}
@media only screen and (min-width: 641px) {
  .site-header {
  }
  .site-header .site-header-inner {
    padding-right: 20px;
  }
  .site-header .masthead .brand-logo .logo img {
    width: 138px;
  }
  .gn-nav {
    display: none;
  }
  .site-header .globalnav .gn-list .globalnav_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .site-header .globalnav .gn-list .globalnav_list > li:last-child {
    margin-left: 25px;
  }
  .site-header .globalnav .gn-list .globalnav_list > li:not(:last-child) > a {
    font-size: 20px;
    padding: 10px;
  }
}

@media only screen and (max-width: 640px) {
  .site-header .masthead .brand-logo .logo img {
    width: 100px;
  }
  .site-header .globalnav .gn-list .globalnav_list > li {
    width: 100%;
  }
  .site-header .globalnav .gn-list .globalnav_list > .gn-icon {
    text-align: center;
    position: absolute;
    bottom: 30px;
    right: 0;
  }
  .site-header .globalnav .gn-list .globalnav_list > .gn-icon a {
    padding: 20px;
    display: inline-block;
  }
  .site-header .globalnav .gn-list .globalnav_list > li:not(:last-child) > a {
    font-size: 18px;
    padding: 5px;
  }
  .gn-nav {
    display: block;
    border-radius: 0;
    background-color: transparent;
    -webkit-transition: background-color 400ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: background-color 400ms cubic-bezier(0.42, 0, 0.58, 1);
    z-index: 9;
    line-height: 1;
    position: absolute;
    top: 0;
    right: 0;
  }
  .site-header.is-active .gn-nav {
    position: fixed;
  }
  .gn-nav .hamburger-inner,
  .gn-nav .hamburger-inner::before,
  .gn-nav .hamburger-inner::after {
    height: 3px;
  }

  /*!
   * Hamburgers
   * @description Tasty CSS-animated hamburgers
   * @author Jonathan Suh @jonsuh
   * @site https://jonsuh.com/hamburgers
   * @link https://github.com/jonsuh/hamburgers
   */
  .hamburger {
    padding: 20px 20px;
    display: inline-block;
    cursor: pointer;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
  }

  .hamburger:hover {
    opacity: 0.7;
  }

  .hamburger.is-active:hover {
    opacity: 0.7;
  }

  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #000;
    opacity: 1;
  }

  .hamburger-box {
    width: 35px;
    height: 18px;
    display: inline-block;
    position: relative;
  }

  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1.5px;
  }

  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 35px;
    height: 3px;
    background-color: #000;
    border-radius: 3px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
  }

  .hamburger-inner::before,
  .hamburger-inner::after {
    content: "";
    display: block;
  }

  .hamburger-inner::before {
    top: -10px;
  }

  .hamburger-inner::after {
    bottom: -10px;
  }

  /*
     * 3DX Reverse
     */
  .hamburger--3dx-r .hamburger-box {
    -webkit-perspective: 56px;
    perspective: 56px;
  }

  .hamburger--3dx-r .hamburger-inner {
    -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  .hamburger--3dx-r .hamburger-inner::before,
  .hamburger--3dx-r .hamburger-inner::after {
    -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  .hamburger--3dx-r.is-active .hamburger-inner {
    background-color: transparent !important;
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }

  .hamburger--3dx-r.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
    transform: translate3d(0, 8px, 0) rotate(45deg);
  }

  .hamburger--3dx-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
    transform: translate3d(0, -8px, 0) rotate(-45deg);
  }

  /*
     * Spin
     */
  .hamburger--spin .hamburger-inner {
    -webkit-transition-duration: 0.22s;
    transition-duration: 0.22s;
    -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spin .hamburger-inner::before {
    -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  }

  .hamburger--spin .hamburger-inner::after {
    -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spin.is-active .hamburger-inner {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    -webkit-transition-delay: 0.12s;
    transition-delay: 0.12s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  }

  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  /*
     * Spin Reverse
     */
  .hamburger--spin-r .hamburger-inner {
    -webkit-transition-duration: 0.22s;
    transition-duration: 0.22s;
    -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spin-r .hamburger-inner::before {
    -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  }

  .hamburger--spin-r .hamburger-inner::after {
    -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spin-r.is-active .hamburger-inner {
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
    -webkit-transition-delay: 0.12s;
    transition-delay: 0.12s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  }

  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #000;
  }
  .globalnav {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.5);
    top: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
  }
  .hum-open .globalnav {
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 8;
    pointer-events: visible;
  }
  .gn-list {
    position: fixed;
    top: 0;
    right: 0;
    margin-right: 0;
    margin-left: auto;
    padding: 50px 20px 20px;
    width: 90%;
    max-width: 300px;
    height: 100%;
    background: linear-gradient(0deg, #fff 75%, rgba(223, 223, 223, 1) 100%);
    pointer-events: auto;
    contain: paint;
    transform: translateX(100%);
    transition: all 0.5s ease;
  }
  .hum-open .gn-list {
    transform: translateX(0);
  }

  .gn-list ul {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .gn-list .gn-concept {
    margin: 10px 0;
  }
  .gn-list .gn-concept a {
    display: block;
    letter-spacing: 1px;
    padding: 10px;
    font-size: 16px;
    text-align: center;
  }
}
/** MAIN
==============================================*/

/** SECTION HERO
==============================================*/
.section-hero {
  background-image: url(../images/hero-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 641px) {
  .section-hero {
    padding: 30px 0 40px;
    border-top: 20px solid #80ffce;
    border-bottom: 20px solid #65acfb;
    background-position: center center;
  }
}
@media only screen and (max-width: 640px) {
  .section-hero {
    padding: 70px 0 20px;
    border-top: 10px solid #80ffce;
    border-bottom: 10px solid #65acfb;
    background-position: 80% center;
  }
}

.section-hero .content {
  position: relative;
}

.section-hero .content .block {
}
.section-hero .content .block .hero_sub {
  position: absolute;
  border-radius: 10px;
  border: 3px solid #282e80;
  font-size: 20px;
  color: #282e80;
  font-weight: 600;
  line-height: 1;
}
@media only screen and (min-width: 641px) {
  .section-hero .content .block {
    padding: 0 15px;
    width: 40%;
  }
  .section-hero .content .block .hero_sub {
    top: 0;
    right: -25px;
    padding: 10px 15px;
  }
}
@media only screen and (max-width: 640px) {
  .section-hero .content .block .hero_sub {
    font-size: 14px;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
  }
}

.section-hero .content .block .hero_title {
  color: #fff;
  font-weight: 600;
  text-shadow: 0px 8px 8px rgb(0 0 0 / 35%);
  text-align: center;
}
@media only screen and (min-width: 641px) {
  .section-hero .content .block .hero_title {
    font-size: 27px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 640px) {
  .section-hero .content .block .hero_title {
    font-size: 18px;
    padding-bottom: 30px;
  }
}

.section-hero .content .block .hero_title_img {
  text-align: center;
}
@media only screen and (min-width: 641px) {
  .section-hero .content .block .hero_title_img {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .section-hero .content .block .hero_title_img {
    padding-bottom: 50px;
  }
}

.section-hero .content .block .tel_box .tel_links {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  transition: all 0.3s ease-out;
}
.section-hero .content .block .tel_box .tel_links:hover {
  opacity: 1;
}
@media only screen and (min-width: 641px) {
  .section-hero .content .block .tel_box .tel_links {
    border: 8px solid transparent;
    padding: 2px;
  }
  .section-hero .content .block .tel_box {
  }
  .section-hero .content .block .tel_box .tel_links:hover {
    border: 8px solid #071387;
  }
}
@media only screen and (max-width: 640px) {
  .section-hero .content .block .tel_box .tel_links {
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
  }
  .section-hero .content .block .tel_box .tel_links:active {
    -webkit-transform: translate(0, 2px);
    -moz-transform: translate(0, 2px);
    transform: translate(0, 2px);
  }
}

.section-hero .content .block .tel_box .tel_links > span {
  font-weight: 600;
}
.section-hero .content .block .tel_box .tel_links .tel_txt {
  line-height: 1.5;
}
.section-hero .content .block .tel_box .tel_links .tel_num_main {
  line-height: 1.2;
}
.section-hero .content .block .tel_box .tel_links .tel_num_sub {
  line-height: 1;
}
@media only screen and (min-width: 641px) {
  .section-hero .content .block .tel_box .tel_links .tel_txt {
    font-size: 27px;
  }
  .section-hero .content .block .tel_box .tel_links .tel_num_main {
    font-size: 45px;
  }
  .section-hero .content .block .tel_box .tel_links .tel_num_sub {
    font-size: 27px;
  }
}
@media only screen and (max-width: 640px) {
  .section-hero .content .block .tel_box .tel_links .tel_txt {
    font-size: 18px;
  }
  .section-hero .content .block .tel_box .tel_links .tel_num_main {
    font-size: 26px;
  }
  .section-hero .content .block .tel_box .tel_links .tel_num_sub {
    font-size: 18px;
  }
}

/** ARTICLE
==============================================*/
article {
  background: linear-gradient(0deg, rgba(223, 223, 223, 0) 75%, rgba(223, 223, 223, 1) 100%);
}

/** HEADLINE
==============================================*/
.headline {
  border-bottom: 5px solid #65acfb;
}
.headline .headline_title {
  border-bottom: 5px solid #80ffce;
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 5px;
}
@media only screen and (min-width: 641px) {
  .headline .headline_title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 640px) {
  .headline .headline_title {
    font-size: 20px;
  }
}

/** SECTION NEWS
==============================================*/
.section-news {
  padding-bottom: 30px;
}
@media only screen and (min-width: 641px) {
  .section-news {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 640px) {
  .section-news {
    padding-top: 40px;
  }
}

.section-news .content .block {
  background-color: #fff;
  border-radius: 10px;
}
@media only screen and (min-width: 641px) {
  .section-news .content .block {
    padding: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .section-news .content .block {
    padding: 15px;
  }
}

.section-news .content .block .news_box .news_list {
  list-style-type: disc;
  padding-left: 1em;
}
.section-news .content .block .news_box .news_list > li:not(:last-child) {
  margin-bottom: 5px;
}
@media only screen and (min-width: 641px) {
  .section-news .content .block .news_box {
    padding: 20px 30px 0;
  }
  .section-news .content .block .news_box .news_list > li {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .section-news .content .block .news_box {
    padding: 15px 15px 0;
  }
  .section-news .content .block .news_box .news_list > li {
    font-size: 16px;
  }
}

/** SECTION SCHEDULE
==============================================*/
.section-schedule {
  padding-bottom: 30px;
}
@media only screen and (min-width: 641px) {
  .section-schedule {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 640px) {
  .section-schedule {
    padding-top: 20px;
  }
}

.section-schedule .content .block {
}
@media only screen and (min-width: 641px) {
  .section-schedule .content .block {
    display: flex;
    padding-top: 55px;
  }
}
@media only screen and (max-width: 640px) {
  .section-schedule .content .block {
    padding-top: 20px;
  }
}

.section-schedule .content .block .schedule_calendar_box iframe {
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 641px) {
  .section-schedule .content .block .schedule_calendar_box {
    width: 45%;
    padding-right: 35px;
  }
  .section-schedule .content .block .schedule_calendar_box iframe {
    width: 550px;
    min-height: 550px;
  }
}
@media only screen and (max-width: 640px) {
  .section-schedule .content .block .schedule_calendar_box {
    padding-bottom: 20px;
  }
  .section-schedule .content .block .schedule_calendar_box iframe {
    width: 100%;
    min-height: 350px;
  }
}

.section-schedule .content .block .schedule_txt_box {
}
@media only screen and (min-width: 641px) {
  .section-schedule .content .block .schedule_txt_box {
    width: 55%;
  }
}
@media only screen and (max-width: 640px) {
}

.section-schedule .content .block .schedule_txt_box .schedule_txt_lead {
  color: #0600ff;
  font-weight: 600;
  padding-bottom: 10px;
}
@media only screen and (min-width: 641px) {
  .section-schedule .content .block .schedule_txt_box .schedule_txt_lead {
    font-size: 28px;
  }
}
@media only screen and (max-width: 640px) {
  .section-schedule .content .block .schedule_txt_box .schedule_txt_lead {
    font-size: 18px;
  }
}

.section-schedule .content .block .schedule_txt_box .schedule_txt_sub {
}
.section-schedule .content .block .schedule_txt_box .schedule_txt_sub .yellow {
  color: #ffc601;
}
.section-schedule .content .block .schedule_txt_box .schedule_txt_sub .red {
  color: #ff0000;
}
@media only screen and (min-width: 641px) {
  .section-schedule .content .block .schedule_txt_box .schedule_txt_sub {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .section-schedule .content .block .schedule_txt_box .schedule_txt_sub {
    font-size: 18px;
    padding-bottom: 10px;
  }
}

.section-schedule .content .block .schedule_txt_box .schedule_notes > li {
  color: #fe0000;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.5;
}
.section-schedule .content .block .schedule_txt_box .schedule_notes > li:before {
  content: "※";
}
@media only screen and (min-width: 641px) {
  .section-schedule .content .block .schedule_txt_box .schedule_notes {
    padding-bottom: 30px;
  }
  .section-schedule .content .block .schedule_txt_box .schedule_notes > li {
    font-size: 18px;
  }
}
@media only screen and (max-width: 640px) {
  .section-schedule .content .block .schedule_txt_box .schedule_notes {
    padding-bottom: 20px;
  }
  .section-schedule .content .block .schedule_txt_box .schedule_notes > li {
    font-size: 16px;
  }
}

.section-schedule .content .block .schedule_txt_box .schedule_tel {
  padding-bottom: 40px;
}
.section-schedule .content .block .schedule_txt_box .schedule_tel .tel_links {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border: 8px solid #071387;
  width: 450px;
  max-width: 100%;
  margin: 0 auto;
  -webkit-box-shadow: 5px 5px 0px 3px rgb(0 0 0 / 8%);
  -ms-box-shadow: 5px 5px 0px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 5px 5px 0px 3px rgb(0 0 0 / 8%);
  color: #000;
  transition: all 0.3s ease-out;
}
.section-schedule .content .block .schedule_txt_box .schedule_tel .tel_links:hover {
  opacity: 1;
}

.section-schedule .content .block .schedule_txt_box .schedule_tel .tel_links > span {
  font-weight: 600;
}
.section-schedule .content .block .schedule_txt_box .schedule_tel .tel_links .tel_txt {
  line-height: 1.5;
}
.section-schedule .content .block .schedule_txt_box .schedule_tel .tel_links .tel_num_main {
  line-height: 1.2;
}
.section-schedule .content .block .schedule_txt_box .schedule_tel .tel_links .tel_num_sub {
  line-height: 1;
}
@media only screen and (min-width: 641px) {
  .section-schedule .content .block .schedule_txt_box .schedule_tel .tel_links:hover {
    -webkit-box-shadow: 5px 5px 0px 3px rgb(0 0 0 / 30%);
    -ms-box-shadow: 5px 5px 0px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 5px 5px 0px 3px rgb(0 0 0 / 30%);
  }
  .section-schedule .content .block .schedule_txt_box .schedule_tel .tel_links .tel_txt {
    font-size: 27px;
  }
  .section-schedule .content .block .schedule_txt_box .schedule_tel .tel_links .tel_num_main {
    font-size: 45px;
  }
  .section-schedule .content .block .schedule_txt_box .schedule_tel .tel_links .tel_num_sub {
    font-size: 33px;
  }
}
@media only screen and (max-width: 640px) {
  .section-schedule .content .block .schedule_txt_box .schedule_tel .tel_links:active {
    -webkit-transform: translate(0, 2px);
    -moz-transform: translate(0, 2px);
    transform: translate(0, 2px);
  }
  .section-schedule .content .block .schedule_txt_box .schedule_tel .tel_links .tel_txt {
    font-size: 18px;
  }
  .section-schedule .content .block .schedule_txt_box .schedule_tel .tel_links .tel_num_main {
    font-size: 26px;
  }
  .section-schedule .content .block .schedule_txt_box .schedule_tel .tel_links .tel_num_sub {
    font-size: 18px;
  }
}

.section-schedule .content .block .schedule_dl > dt {
  font-weight: 600;
  color: #fe0000;
  padding-bottom: 5px;
}
@media only screen and (min-width: 641px) {
  .section-schedule .content .block .schedule_dl > dt {
    font-size: 28px;
  }
}
@media only screen and (max-width: 640px) {
  .section-schedule .content .block .schedule_dl > dt {
    font-size: 20px;
  }
}

.section-schedule .content .block .schedule_dl > dd {
  line-height: 1.4;
  color: #fe0000;
}
@media only screen and (min-width: 641px) {
  .section-schedule .content .block .schedule_dl > dd {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .section-schedule .content .block .schedule_dl > dd {
    font-size: 16px;
  }
}

/** SECTION MENU
==============================================*/
.section-menu {
  background: url(../images/menu-bg.png) no-repeat center bottom/100% auto;
}
@media only screen and (min-width: 641px) {
  .section-menu {
    padding-top: 80px;
    padding-bottom: 140px;
  }
}
@media only screen and (max-width: 640px) {
  .section-menu {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}

.section-menu .content {
  color: #505050;
}

.section-menu .content .menu_people_block {
}
@media only screen and (min-width: 641px) {
  .section-menu .content .menu_people_block {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 640px) {
  .section-menu .content .menu_people_block {
    padding-top: 20px;
  }
}

.section-menu .content .menu_people_block .menu_people > dt {
  font-weight: 600;
  padding-bottom: 10px;
}
@media only screen and (min-width: 641px) {
  .section-menu .content .menu_people_block .menu_people > dt {
    font-size: 24px;
  }
}
@media only screen and (max-width: 640px) {
  .section-menu .content .menu_people_block .menu_people > dt {
    font-size: 18px;
  }
}

.section-menu .content .menu_people_block .menu_people > dd .txt {
  line-height: 1.4;
}
@media only screen and (min-width: 641px) {
  .section-menu .content .menu_people_block .menu_people > dd .txt {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .section-menu .content .menu_people_block .menu_people > dd .txt {
    font-size: 16px;
  }
}

.section-menu .content .menu_people_block .menu_people > dd .notes {
  font-size: 14px;
  font-weight: 600;
  padding-top: 10px;
}

.section-menu .content .menu_fish_block {
}
@media only screen and (min-width: 641px) {
  .section-menu .content .menu_fish_block {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 640px) {
  .section-menu .content .menu_fish_block {
    padding-top: 25px;
  }
}

.section-menu .content .menu_fish_block .menu_fish_list {
}
@media only screen and (min-width: 641px) {
  .section-menu .content .menu_fish_block .menu_fish_list {
    display: flex;
  }
}
@media only screen and (max-width: 640px) {
  .section-menu .content .menu_fish_block .menu_fish_list {
    text-align: center;
  }
}

.section-menu .content .menu_fish_block .menu_fish_list > li {
}
.section-menu .content .menu_fish_block .menu_fish_list > li:not(:last-child) {
}
@media only screen and (min-width: 641px) {
  .section-menu .content .menu_fish_block .menu_fish_list > li {
    width: 32%;
  }
  .section-menu .content .menu_fish_block .menu_fish_list > li:not(:last-child) {
    margin-right: 2%;
  }
}
@media only screen and (max-width: 640px) {
  .section-menu .content .menu_fish_block .menu_fish_list > li {
    display: inline-block;
    text-align: left;
  }
  .section-menu .content .menu_fish_block .menu_fish_list > li:not(:last-child) {
    margin-bottom: 20px;
  }
}

.section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_name {
  color: #0900c7;
  font-weight: 600;
  padding-bottom: 10px;
}
@media only screen and (min-width: 641px) {
  .section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_name {
    font-size: 18px;
  }
}
@media only screen and (max-width: 640px) {
  .section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_name {
    font-size: 17px;
    display: inline-block;
  }
}

.section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_box {
  display: flex;
}

@media only screen and (min-width: 641px) {
  .section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_box .menu_fish_img {
  }
}
@media only screen and (max-width: 640px) {
  .section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_box {
    justify-content: center;
    align-items: flex-start;
  }
  .section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_box .menu_fish_img {
    text-align: right;
  }
}

.section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_box .menu_fish_dl {
}
@media only screen and (min-width: 641px) {
  .section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_box .menu_fish_dl {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 640px) {
  .section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_box .menu_fish_dl {
    padding-left: 10px;
  }
}

.section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_box .menu_fish_dl > dt {
  font-weight: 600;
  line-height: 1.2;
}
@media only screen and (min-width: 641px) {
  .section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_box .menu_fish_dl > dt {
    font-size: 18px;
  }
}
@media only screen and (max-width: 640px) {
  .section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_box .menu_fish_dl > dt {
    font-size: 16px;
  }
}

.section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_box .menu_fish_dl > dd {
}
.section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_box .menu_fish_dl > dd:not(:last-of-type) {
  padding-bottom: 10px;
}
@media only screen and (min-width: 641px) {
  .section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_box .menu_fish_dl > dd {
    font-size: 18px;
  }
}
@media only screen and (max-width: 640px) {
  .section-menu .content .menu_fish_block .menu_fish_list > li .menu_fish_box .menu_fish_dl > dd {
    font-size: 14px;
  }
}

.section-menu .content .menu_discount_block {
  padding-top: 50px;
}

.section-menu .content .menu_discount_block .menu_discount > dt {
  font-weight: 600;
}
@media only screen and (min-width: 641px) {
  .section-menu .content .menu_discount_block .menu_discount > dt {
    font-size: 24px;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 640px) {
  .section-menu .content .menu_discount_block .menu_discount > dt {
    font-size: 18px;
  }
}

.section-menu .content .menu_discount_block .menu_discount > dd {
  display: inline-block;
}
.section-menu .content .menu_discount_block .menu_discount > dd .notes {
  font-size: 14px;
  font-weight: 600;
  padding-top: 10px;
}

.section-menu .content .menu_discount_block .menu_discount > dd .menu_discount_dl {
}
@media only screen and (min-width: 641px) {
  .section-menu .content .menu_discount_block .menu_discount > dd .menu_discount_dl {
    display: inline-block;
  }
}
@media only screen and (max-width: 640px) {
  .section-menu .content .menu_discount_block .menu_discount > dd .menu_discount_dl {
    padding-top: 20px;
  }
}

.section-menu .content .menu_discount_block .menu_discount > dd .menu_discount_dl > dt {
  width: 5em;
  font-size: 20px;
  font-weight: 600;
  float: left;
}
@media only screen and (min-width: 641px) {
  .section-menu .content .menu_discount_block .menu_discount > dd .menu_discount_dl > dt {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .section-menu .content .menu_discount_block .menu_discount > dd .menu_discount_dl > dt {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .section-menu .content .menu_discount_block .menu_discount > dd .menu_discount_dl > dt:not(:last-of-type) {
  }
}

.section-menu .content .menu_discount_block .menu_discount > dd .menu_discount_dl > dd {
  /* width: calc(100% - 5em); */
  margin-left: 5em;
  text-indent: -0.5em;
  padding-left: 0.5em;
}
.section-menu .content .menu_discount_block .menu_discount > dd .menu_discount_dl > dd:before {
  content: "：";
}
.section-menu .content .menu_discount_block .menu_discount > dd .menu_discount_dl > dd:after {
  content: "";
  display: inline-block;
  clear: both;
}
@media only screen and (min-width: 641px) {
  .section-menu .content .menu_discount_block .menu_discount > dd .menu_discount_dl > dd {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .section-menu .content .menu_discount_block .menu_discount > dd .menu_discount_dl > dd {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .section-menu .content .menu_discount_block .menu_discount > dd .menu_discount_dl > dd:not(:last-of-type) {
  }
}

.section-menu .content .menu_discount_block .menu_discount > dd .menu_discount_notes {
  display: block;
  text-align: right;
  font-size: 14px;
}

/** SECTION ACCESS
==============================================*/
.section-access {
  padding-bottom: 30px;
}
@media only screen and (min-width: 641px) {
  .section-access {
    padding-top: 110px;
  }
}
@media only screen and (max-width: 640px) {
  .section-access {
    padding-top: 40px;
  }
}

.section-access .content {
}
@media only screen and (min-width: 641px) {
  .section-access .content {
    padding-top: 55px;
  }
}
@media only screen and (max-width: 640px) {
  .section-access .content {
    padding-top: 30px;
  }
}

.section-access .content .block {
}
@media only screen and (min-width: 641px) {
  .section-access .content .block {
    display: flex;
  }
}
@media only screen and (max-width: 640px) {
}

.section-access .content .block .access_map_box iframe {
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 641px) {
  .section-access .content .block .access_map_box {
    width: 45%;
    padding-right: 35px;
  }
  .section-access .content .block .access_map_box iframe {
    width: 550px;
    height: 650px;
  }
}
@media only screen and (max-width: 640px) {
  .section-access .content .block .access_map_box {
    padding-bottom: 20px;
  }
  .section-access .content .block .access_map_box iframe {
    width: 100%;
    min-height: 350px;
  }
}

.section-access .content .block .access_txt_box {
}
@media only screen and (min-width: 641px) {
  .section-access .content .block .access_txt_box {
    width: 55%;
  }
}
@media only screen and (max-width: 640px) {
}

.section-access .content .block .access_txt_box .access_txt_dl {
  display: flex;
  flex-wrap: wrap;
}

.section-access .content .block .access_txt_box .access_txt_dl > dt {
  width: 4em;
  color: #000096;
  line-height: 1.2;
  margin-bottom: 1em;
}
.section-access .content .block .access_txt_box .access_txt_dl > dt:after {
  content: "：";
}
@media only screen and (min-width: 641px) {
  .section-access .content .block .access_txt_box .access_txt_dl > dt {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .section-access .content .block .access_txt_box .access_txt_dl > dt {
    font-size: 16px;
  }
}

.section-access .content .block .access_txt_box .access_txt_dl > dd {
  width: calc(100% - 4em);
  line-height: 1.2;
  margin-bottom: 1em;
}
.section-access .content .block .access_txt_box .access_txt_dl > dd .red {
  color: #fe0000;
}
@media only screen and (min-width: 641px) {
  .section-access .content .block .access_txt_box .access_txt_dl > dd {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .section-access .content .block .access_txt_box .access_txt_dl > dd {
    font-size: 16px;
  }
}

.section-access .content .block .access_txt_box .access_photo .access_photo_list {
  display: flex;
}
.section-access .content .block .access_txt_box .access_photo .access_photo_list > li:not(:last-child) {
  padding-right: 10px;
}

.section-access .content .block .access_txt_box .access_photo .access_photo_list > li img {
  width: 295px;
  max-width: 100%;
}

.section-access .content .block .access_txt_box .access_photo .access_photo_txt {
  font-size: 14px;
  line-height: 1.7;
  padding-top: 1em;
}

/** SECTION HOWTO
==============================================*/
.section-howto {
  background: url(../images/howto-bg.png) no-repeat center bottom/100% auto;
}
@media only screen and (min-width: 641px) {
  .section-howto {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 640px) {
  .section-howto {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.section-howto .content {
  color: #505050;
}

.section-howto .content .howto_block {
}
@media only screen and (min-width: 641px) {
  .section-howto .content .howto_block {
    padding-top: 55px;
  }
}
@media only screen and (max-width: 640px) {
  .section-howto .content .howto_block {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

.section-howto .content .howto_block .howto_block_ttl {
  font-weight: 600;
}
@media only screen and (min-width: 641px) {
  .section-howto .content .howto_block .howto_block_ttl {
    font-size: 24px;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .section-howto .content .howto_block .howto_block_ttl {
    font-size: 18px;
    padding-bottom: 10px;
  }
}

.section-howto .content .howto_block .howto_photo_box .howto_photo_list {
}
@media only screen and (min-width: 641px) {
  .section-howto .content .howto_block .howto_photo_box .howto_photo_list {
    display: flex;
  }
}
@media only screen and (max-width: 640px) {
}

.section-howto .content .howto_block .howto_photo_box .howto_photo_list > li {
  max-width: 100%;
}
.section-howto .content .howto_block .howto_photo_box .howto_photo_list > li:not(:last-child) {
}
@media only screen and (min-width: 641px) {
  .section-howto .content .howto_block .howto_photo_box .howto_photo_list > li {
    width: 460px;
  }
  .section-howto .content .howto_block .howto_photo_box .howto_photo_list > li:not(:last-child) {
    margin-right: 45px;
  }
}
@media only screen and (max-width: 640px) {
  .section-howto .content .howto_block .howto_photo_box .howto_photo_list > li {
  }
  .section-howto .content .howto_block .howto_photo_box .howto_photo_list > li:not(:last-child) {
    padding-bottom: 20px;
  }
}

.section-howto .content .howto_block .howto_photo_box .howto_photo_list > li .howto_photo_title {
  font-weight: 600;
  color: #000096;
  text-align: center;
}
@media only screen and (min-width: 641px) {
  .section-howto .content .howto_block .howto_photo_box .howto_photo_list > li .howto_photo_title {
    font-size: 20px;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 640px) {
  .section-howto .content .howto_block .howto_photo_box .howto_photo_list > li .howto_photo_title {
    font-size: 17px;
    padding-bottom: 5px;
  }
}

.section-howto .content .howto_block .howto_photo_box .howto_photo_list > li .howto_photo {
  text-align: center;
}
.section-howto .content .howto_block .howto_photo_box .howto_photo_list > li .howto_photo img {
}
@media only screen and (min-width: 641px) {
  .section-howto .content .howto_block .howto_photo_box .howto_photo_list > li .howto_photo {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .section-howto .content .howto_block .howto_photo_box .howto_photo_list > li .howto_photo {
    padding-bottom: 10px;
  }
}

.section-howto .content .howto_block .howto_photo_box .howto_photo_list > li .howto_photo_caption {
}
@media only screen and (min-width: 641px) {
  .section-howto .content .howto_block .howto_photo_box .howto_photo_list > li .howto_photo_caption {
    font-size: 19px;
  }
}
@media only screen and (max-width: 640px) {
  .section-howto .content .howto_block .howto_photo_box .howto_photo_list > li .howto_photo_caption {
    font-size: 15px;
  }
}

.section-howto .content .howto_block .howto_rule {
  color: #000096;
  @media only screen and (min-width: 641px) {
    .section-howto .content .howto_block .howto_rule {
      font-size: 20px;
      line-height: 1.8;
    }
  }
}
@media only screen and (max-width: 640px) {
  .section-howto .content .howto_block .howto_rule {
    font-size: 16px;
    line-height: 1.6;
  }
}

/** SECTION FAQ
==============================================*/
.section-faq {
  background: url(../images/faq-bg.png) no-repeat center bottom/100% auto;
}
@media only screen and (min-width: 641px) {
  .section-faq {
    padding-top: 110px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 640px) {
  .section-faq {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

.section-faq .content {
}
@media only screen and (min-width: 641px) {
  .section-faq .content {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 640px) {
  .section-faq .content {
    padding-top: 20px;
  }
}

.section-faq .content .faq_lead_block .faq_lead_txt {
  font-weight: 600;
}
@media only screen and (min-width: 641px) {
  .section-faq .content .faq_lead_block .faq_lead_txt {
    font-size: 24px;
    line-height: 2;
  }
}
@media only screen and (max-width: 640px) {
  .section-faq .content .faq_lead_block .faq_lead_txt {
    font-size: 16px;
    line-height: 1.7;
  }
}

.section-faq .content .faq_main_block {
}
@media only screen and (min-width: 641px) {
  .section-faq .content .faq_main_block {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 640px) {
  .section-faq .content .faq_main_block {
    padding-top: 30px;
  }
}

.section-faq .content .faq_main_block .faq_dl > dt {
  display: flex;
  /* text-indent: -27px;
  padding-left: 27px; */
}
.section-faq .content .faq_main_block .faq_dl > dt:before {
  content: "Ｑ：";
}
@media only screen and (min-width: 641px) {
  .section-faq .content .faq_main_block .faq_dl > dt {
    font-size: 20px;
    line-height: 1.8;
  }
}
@media only screen and (max-width: 640px) {
  .section-faq .content .faq_main_block .faq_dl > dt {
    font-size: 16px;
    line-height: 1.6;
  }
}

.section-faq .content .faq_main_block .faq_dl > dd {
  display: flex;
  /* text-indent: -27px;
  padding-left: 27px; */
  color: #fe0000;
}
.section-faq .content .faq_main_block .faq_dl > dd:before {
  content: "Ａ：";
}
@media only screen and (min-width: 641px) {
  .section-faq .content .faq_main_block .faq_dl > dd {
    font-size: 20px;
    line-height: 1.8;
  }
  .section-faq .content .faq_main_block .faq_dl > dd:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .section-faq .content .faq_main_block .faq_dl > dd {
    font-size: 16px;
    line-height: 1.6;
  }
  .section-faq .content .faq_main_block .faq_dl > dd:not(:last-of-type) {
    margin-bottom: 15px;
  }
}

/** SECTION BANNER
==============================================*/
.section-banner {
  text-align: center;
}
@media only screen and (min-width: 641px) {
  .section-banner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 640px) {
  .section-banner {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

/** SITE FOOTER
==============================================*/
.site-footer {
  background-color: #000;
  color: #fff;
}
.site-footer .copyright {
}
@media only screen and (min-width: 641px) {
  .site-footer {
    padding: 15px 35px;
  }
  .site-footer .footer_copyright {
    font-size: 16px;
    text-align: right;
  }
}
@media only screen and (max-width: 640px) {
  .site-footer {
    padding: 15px;
  }
  .site-footer .footer_copyright {
    font-size: 11px;
    text-align: center;
  }
}
