@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&family=M+PLUS+2:wght@100..900&family=RocknRoll+One&display=swap');
/*font-family: 'Ubuntu', sans-serif;*/

/*font-family: 'Noto Sans JP', sans-serif;*/

/*font-family: "RocknRoll One", sans-serif;*/

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: left;
  line-height: 1.7;
  color: #111;
  min-width: 1040px;
  font-family: 'Noto Sans JP', 'Open Sans', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, 'Font Awesome 6 Free';
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  padding: 0;
  margin: 0;
}

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

p {
  padding: 0;
  margin: 0;
}

img {
  -webkit-touch-callout: none;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  display: block;
}

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

a:active,
a:hover,
a:focus {
  outline: none;
}

a,
input {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

a:hover,
.link input:hover {
  opacity: 0.6;
}

figure {
  width: 100%;
  overflow: hidden;
  position: relative;
}

figure img {
  display: block;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*横幅に合わせてトリミング*/
  width: 100%;
  height: auto;
  /*高さに合わせてトリミング*/
  /*
    width: auto;
    height: 100%;
*/
}

@media only screen and (max-width: 768px) {
  body {
    width: 100%;
    min-width: 0;
  }

  a {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
  }

  a:hover {
    opacity: 1;
  }

}

/*============================
Clearfix float
============================*/

.clearfix {
  zoom: 1;
  /* for IE */
}

.clearfix:after {
  content: "";
  /*空のコンテンツを挿入 これがないとafterが機能しない*/
  display: block;
  /*表示形式はブロックレベルに指定しないとうまく機能しないブラウザがある*/
  clear: both;
  /*そして、floatの解除をする*/
}

.left {
  float: left;
}

.right {
  float: right;
}

/*============================
flex
============================*/

.flex {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

/*============================
脚注文字表記etc.
============================*/

.eng {
  font-family: 'Ubuntu', sans-serif;
}

.ja {
  font-family: 'Noto Sans JP', sans-serif;
}

.min {
  font-size: 13px;
  display: block;
}

/*============================
表示切り替え
============================*/

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}


@media only screen and (max-width: 768px) {

  /*============================
Clearfix float
============================*/
  .right,
  .left {
    float: none;
    padding: 0;
  }

  /*============================
脚注文字表記etc.
============================*/
  .min {
    font-size: 12px;
  }

  /*============================
表示切り替え
============================*/
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}


/*============================
wrapper
============================*/

.wrapper {
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

@media only screen and (max-width: 980px) {
  .wrapper {
    padding-top: 55px;
  }
}

/*============================
inner
============================*/

.inner {
  width: 1040px;
  margin: auto;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .inner {
    width: 90.625%;
  }
}

/*============================
header
============================*/

#top {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
  z-index: 10000;
  transition: 0.5s;
}

#top.hide {
  transform: translateY(-110%);
}

#top.hide.active {
  transform: translateY(0);
}

#top .inner {
  padding: 0 0;
  width: 100%;
  align-items: center;
}

#top .siteTitle {
  margin-left: 3%;
}

.siteTitle a {
  font-family: 'Ubuntu';
  font-size: 42px;
  font-weight: bold;
  color: #00c8c8;
}

.announce {
  max-width: 330px;
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 0 20px;
  flex: 2;
  color: #fff;
}

#top .tel {
  display: none;
}

@media only screen and (max-width: 1315px) {
  .announce {
    display: none;
  }
}

@media only screen and (max-width: 980px) {
  #top {
    width: 100%;
    min-width: 0;
  }

  #top.active {
    top: 0 !important;
  }

  #top .inner {
    width: 100%;
    position: relative;
    padding: 10px;
  }

  .siteTitle a {
    font-size: 20px;
  }

  #top .tel {
    background-color: #00a5c8;
    display: block;
    padding: 0;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    right: 65px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  #top .tel a {
    display: block;
    color: #fff;
    font-weight: bold;
    padding: 0;
  }
}

/*============================
nav
============================*/

#top nav {
  margin-left: auto;
}

#top .globalNav {
  width: 100%;
  margin: auto;
}

#top .globalNav li {
  float: left;
}

#top .globalNav li.contact a {
  background-color: #00c8c8;
  color: #fff;
  padding: 40px 30px;
}

#top .globalNav li.pc-only a {
  background-color: #00b0b0;
  color: #fff;
  padding: 40px 30px;
}

#top .globalNav li a {
  display: block;
  color: #111;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-size: 16px;
  width: auto;
  padding: 40px 15px;
}

#top .globalNav li a:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 980px) {

  #top nav {
    margin: 0;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin-top: 53px;
    background-color: rgba(0, 200, 200, 0.9);
    overflow-y: scroll;
  }

  #top .globalNav li {
    float: none;
    width: 100%;
    position: relative;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
  }

  #top .globalNav li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  #top .globalNav li a {
    overflow: inherit;
    width: 100%;
    height: inherit;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 2px;
    background: none;
  }

  #top .globalNav li.contact a {
    background-color: #00a5c8;
    color: #fff;
    padding: 30px 0;
  }

  #top .globalNav li a:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.0);
  }

  #top .globalNav li.contact a:hover {
    background-color: #00a5c8;
  }

  #top .globalNav li a span {
    display: block;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: normal;
  }
}

/*============================
menu(sp)  ハンバーガー
============================*/

.menu {
  display: none;
}

@media only screen and (max-width: 980px) {
  .menu {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 16px;
    z-index: 1000;
    width: 31px;
    height: 23px;
  }

  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }

  .menu-trigger {
    position: relative;
    width: 31px;
    height: 23px;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00a5c8;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 10px;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  /* anime */
  .active .menu-trigger span {
    background-color: #00a5c8;
  }

  .active .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }

  .active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }

  .active .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
}

/*============================
cont_img
============================*/

.cont_img {
  text-align: center;
  position: relative;
  background-color: #00c8c8;
  height: 325px;
  align-items: center;
  justify-content: center;
}

.cont_img h1 {
  line-height: 1.3;
  font-size: 60px;
  color: #fff;
  position: absolute;
  bottom: 56px;
  text-align: left;
}

.cont_img h1 span {
  display: block;
}

.cont_img h1 span.eng::before {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  position: absolute;
  background-color: #fff;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.cont_img h1 span.eng {
  font-size: 30px;
  font-weight: bold;
  position: relative;
  padding-left: 45px;
  margin-top: 6px;
}

@media only screen and (max-width: 768px) {
  .cont_img {
    height: 180px;
  }

  .cont_img h1 {
    font-size: 25px;
    bottom: 16px;
  }

  .cont_img h1 span.eng::before {
    height: 1.5px;
  }

  .cont_img h1 span.eng {
    font-size: 14px;
    font-weight: 500;
  }
}

/*============================
container
============================*/

.cont .container {
  width: 100%;
  margin: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: left;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {

  .cont .container {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 0;
  }
}

/*============================
Link
============================*/

.link {
  width: 100%;
  margin: auto;
  padding-top: 60px;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.link li {
  width: 320px;
  margin: 0 20px;
}

.link li a,
.link li input {
  display: block;
  line-height: inherit;
  width: 100%;
  padding: 13px 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.06em;
  color: #fff;
  border: none;
  background-color: #00c8c8;
  position: relative;
}

.link li a::before,
.link li input::before,
.formBtn li::before {
  position: absolute;
  top: 17px;
  bottom: 0;
  right: 20px;
  margin: auto;
  content: '\f061';
  display: block;
  font-weight: 900;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  color: #fff;
  z-index: 10;
}

.cont .link li {
  width: 290px;
}

@media only screen and (max-width: 768px) {
  .link {
    padding-top: 20px;
  }

  .link li {
    width: 80%;
    margin: 0;
    margin-top: 20px
  }

  .cont .link li {
    width: 80%;
  }
}


/*============================
primary
============================*/

.cont article {
  padding-top: 80px;
}

.cont article:first-of-type {
  padding-top: 0;
}

.inner p {
  margin-top: 15px;
}

.inner p:first-of-type {
  margin-top: 0;
}

.cont h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 80px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #00c8c8;
  line-height: 1;
}

.cont h2 .ja {
  display: block;
  font-size: 30px;
  color: #111;
  margin-top: 20px;
}

.cont h3 {
  padding: 10px 20px;
  margin-top: 40px;
  margin-bottom: 30px;
  clear: both;
  font-size: 24px;
  font-weight: bold;
  border-left: 10px solid #00c8c8;
}

.cont h4 {
  font-size: 16px;
  margin: 30px 0 10px;
}

@media only screen and (max-width: 768px) {

  .cont article {
    padding-top: 40px;
  }

  .cont h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .cont h2 .ja {
    font-size: 16px;
    margin-top: 10px;
  }

  .cont h3 {
    margin-top: 20px;
    font-size: 16px;
    margin-bottom: 20px;
  }
}


/*============================
table
============================*/

table.info {
  width: 100%;
}

table.info tr {
  display: block;
  padding: 20px 0 0;
  border-bottom: 1px solid #ddd;
}

table.info tr:last-child {
  padding-bottom: 0;
}

table.info th {
  width: 140px;
  text-align: center;
  vertical-align: middle;
  background: #eee;
  color: #111;
}

table.info th,
table.info td {
  padding: 20px 0;
}

table.info tr:first-child {
  padding-top: 0;
}

table.info td {
  text-align: left;
  padding-left: 40px;
}

table.info td li {
  padding-top: 8px;
  padding-left: 20px;
  position: relative;
}

table.info td li:first-child {
  padding-top: 0;
}

table.info td li::before {
  content: '・';
  position: absolute;
  left: 0;
}

table.info td dt {
  padding-top: 10px;
}

table.info td dt:first-of-type {
  padding-top: 0;
}

table.info td strong {
  display: block;
}

a.google::before {
  content: '\f3c5';
  font-weight: 900;
  margin-right: 5px;
  color: #e7b000;
}

a.google {
  display: block;
  margin: 5px 0;
  font-weight: bold;
}

/* googlemap */

#map {
  width: 100%;
  height: 400px;
}

#map iframe {
  width: 100%;
  height: 100%;
}

.cont #map {
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {

  table.info th,
  table.info td {
    padding: 12px 0;
  }

  table.info th {
    width: 100px;
    font-size: 13px;
  }

  table.info td {
    padding-left: 10px;
    font-size: 14px;
  }

  /* googlemap */
  #map {
    height: 300px;
  }

  .cont #map {
    margin-top: 20px;
  }
}

/*============================
toTop
============================*/

.toTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10000;
}

.toTop li a {
  height: 45px;
  width: 45px;
  display: block;
  background-color: rgba(0, 176, 176, 0.5);
  border-radius: 50%;
  position: relative;
}

.toTop li a .icon::before {
  content: '\f062';
  color: #fff;
  font-weight: 900;
  font-family: 'Font Awesome 6 Free';
  font-size: 16px;
  position: absolute;
  top: 10px;
  left: 16.5px;
}

@media only screen and (max-width: 768px) {}


/*============================
banner
============================*/

#banner {
  padding: 80px 0;
  border-top: 1px solid #00c8c8;
}

#banner a {
  width: 320px;
  height: 100px;
}

#banner a img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  #banner {
    padding: 40px 0;
  }

  #banner a {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  #banner a:first-child {
    margin-top: 0;
  }

}


/*============================
footer
============================*/

footer {
  background: #00c8c8;
}

footer .inner {
  position: relative;
  padding: 60px 0;
}

footer .tel i {
  padding-right: 5px;
}

footer .detail {
  color: #fff;
  font-size: 15px;
}

footer .detail p {
  margin-bottom: 15px;
}

footer .detail .siteTitle {
  width: 186px;
  height: 186px;
}

footer .detail .siteTitle a {
  padding-top: 100%;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  background: url(../images/common/footer/sitetitle.png) no-repeat center center;
  background-size: 100%;
}

footer .detail p.hours {
  font-size: 20px;
}

footer .detail .googlemap {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.1);
  color: #fff;
  padding: 8px 40px;
  border-radius: 3px;
  font-weight: bold;
  text-align: center;
}

footer .footer-nav .sitelink {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 20px;
}

footer .footer-nav .sitelink li {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

footer .footer-nav .sitelink li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

footer .footer-nav .sitelink li a {
  display: block;
  color: #FFF;
  text-align: center;
  padding: 0 20px;
}

footer .footer-nav .sublink {
  overflow: hidden;
  padding: 20px 0;
}

footer .footer-nav .sublink li {
  float: left;
  margin-right: 25px;
}

footer .footer-nav .sublink li a {
  color: #FFF;
  position: relative;
  padding-left: 10px;
  font-size: 13px;
  line-height: 1;
}

footer .footer-nav .sublink li a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid #fff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

footer .footer-nav .sns {
  display: flex;
  justify-content: flex-start;
  color: #fff;
}

footer .footer-nav .sns .insta {
  font-size: 60px;
  margin-right: 20px;
}

footer .footer-nav .sns .line {
  font-size: 50px;
  margin-top: 10px;
  margin-right: 20px;
}

footer .footer-nav .sns .x {
  font-size: 50px;
  margin-top: 10px;
  margin-right: 20px;
}

footer .footer-nav .sns .youtube {
  font-size: 50px;
  margin-top: 10px;
}

footer .footer-nav p {
  color: #fff;
}

footer .footer-nav a {
  color: #fff;
}

footer .copyright {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 15px 0;
  color: #FFF;
  background-color: #00b0b0;
}

@media only screen and (max-width: 768px) {

  footer .inner {
    position: relative;
    width: 90.625%;
    padding: 40px 0;
    display: block;
  }

  footer .detail {
    color: #fff;
    font-size: 14px;
  }

  footer .detail .siteTitle {
    margin: 0 auto 15px;
  }

  footer .detail p.hours {
    font-size: 18px;
  }

  footer .detail .googlemap {
    width: 100%;
  }

  footer .footer-nav .sitelink {
    padding: 20px 0;
  }

  footer .footer-nav .sitelink li {
    border-left: none;
    background: rgba(0, 0, 0, 0.2);
    width: 49%;
    margin-bottom: 2%;
    border-radius: 3px;
  }

  footer .footer-nav .sitelink li:last-child {
    border-right: none;
  }

  footer .footer-nav .sitelink li a {
    padding: 10px 0;
    font-size: 14px;
    letter-spacing: 0;
  }

  footer .footer-nav .contact {
    display: block;
    padding: 15px 0;
  }
}

/*============================
common_js
============================*/

.sa {
  opacity: 0;
  transition: all 0.8s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 100px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}
