@charset "UTF-8";

/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,h2,h3,h4,h5,h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,dt,dd,
ol,ul,li,
fieldset,
form,
label,
legend,
caption,
table,tbody,tfoot,thead,tr,th,td,
article,
aside,
canvas,
details,
embed,
figure,figcaption,
footer,header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* font-family
-------------------------------------*/
body {
  font-family:
    -apple-system,                    /* iOS・macOS */
    BlinkMacSystemFont,               /* Chrome on macOS */
    "Helvetica Neue",
    "Hiragino Kaku Gothic ProN",      /* iOS・macOS フォールバック */
    "Yu Gothic",                      /* Windows 游ゴシック */
    YuGothic,
    sans-serif;                       /* Android */

    font-style: normal;

}

/* ゴシック体 sans-serif体 */
/* f-gothicは bodyと同じ。 body全体を明朝体にしたときに、ゴシック体で表示されるようにするために使用。 */
.f-gothic {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, 
    sans-serif;
}
.f-gothic-noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}
.f-gothic-zen {
  font-family: "Zen Kaku Gothic New", serif;
  font-optical-sizing: auto;
}
.f-gothic-maru {
  font-family: "Zen Maru Gothic", serif;
  font-optical-sizing: auto;
}

/* 明朝体 serif体 */
.f-min {
  font-family: 
    "Hiragino Mincho ProN",   /* iOS・macOS */
    "Yu Mincho Medium",       /* Windows */
    "Yu Mincho",
    YuMincho,
    "Noto Serif JP",         /* Android */
    serif;
}
.f-min-old {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
}

.f-quicksand {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
}


/* 游ゴシック かすれ対策 */
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

/* Windows用：游ゴシックの擬似ボールド（文字のにじみ・潰れ）対策 */
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}



/* アニメーション
-------------------------------------*/
/*fadein*/
.animated__fadeIn {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 0.8s ease, translate 0.8s ease;
}

.animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

/*片側から出現*/
.animated__clipView {
  clip-path: inset(0 100% 0 0); /*before (出現前)*/
  transition: clip-path 0.8s ease;
}

/*after (出現後)*/
.animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

/*左からスライドするアニメーション*/
.animated__slideIn--left {
  opacity: 0; /*before (出現前)*/
  transition: opacity 0.5s ease, translate 0.5s ease;
  translate: -1000px;
}

.animated__slideIn--left.js-show {
  opacity: 1;
  translate: 0;
}

/*右からスライドするアニメーション*/
.animated__slideIn--right {
  opacity: 0; /*before (出現前)*/
  transition: opacity 0.5s ease, translate 0.5s ease;
  translate: 1000px;
}

.animated__slideIn--right.js-show {
  opacity: 1; /*before (出現前)*/
  translate: 0;
}

/* pagetop 表示制御（PC/SP共通）
-------------------------------------*/
.pagetop {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pagetop.is-visible:hover {
  opacity: 0.85;
}

/* ========================================
  @media screen and (min-width: 768px),print 
======================================== */
@media screen and (min-width: 768px), print {
/* base
-------------------------------------*/
body {
  font-size: 16px;
  overflow-x: hidden;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #3D3D3D;
}

/*pc・タブレットcss*/
/*pc_defaultset*/
.pc {
  display: block !important;
}
/*pcのみ表示ブロック*/
.pc2 {
  display: inline-block !important;
}
/*pcのみ表示ブロック*/
.sp,
.sp2 {
  display: none !important;
}
/*スマホのみ表示ブロック*/
.h_menu {
  display: none;
}
/*スマホ用ヘッダ*/
.sp-header {
  display: none;
}
/*スマホ用メニュー*/
#sp-global-nav {
  display: none;
}
/*スマホ用メニュー*/
.sp-fix-list {
  display: none;
}
/* Antialiasing ※任意　*/

/* header
-------------------------------------*/
.ais-header {
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
  background: #FFFBF1;
}
.ais-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-block: 20px;
  padding-inline: 40px;
  position: relative;
  z-index: 5;
}
#top .ais-header__inner {
  margin-bottom: -147px;
}
.ais-header__logo a {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ais-header__logo a:hover {
  text-decoration: none;
}
.ais-header__catch {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.57143;
  cursor: default;
  letter-spacing: 0;
}
.ais-header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: flex-end;
  margin-top: 20px;
}
.ais-header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.ais-header__nav-list a {
  font-size: clamp(0.625rem, 0.458rem + 0.35vw, 0.875rem);
  font-weight: 500;
  line-height: 1.57143;
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
}
.ais-header__nav-list a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -17px;
  width: 1px;
  height: 24px;
  background: url(../images/common/dashed-line.svg) no-repeat center center / contain;
}
.ais-header__nav-list li:first-child a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -14px;
  width: 1px;
  height: 24px;
  background: url(../images/common/dashed-line.svg) no-repeat center center / contain;
}
.ais-header__btn {
  width: 180px;
}
.ais-header__btn a {
  border-radius: 10px;
  background: #ED6C00;
  transition: opacity 0.2s ease;
  color: #FFF;
  font-size: clamp(0.625rem, 0.458rem + 0.35vw, 0.875rem);
  font-weight: 500;
  line-height: 1.57143;
  letter-spacing: 0.02em;
  position: relative;
  padding-block: 9px;
  display: block;
  padding-inline: 0 20px;
  text-align: center;
}
.ais-header__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  width: 16px;
  height: 16px;
  background: url(../images/common/btn-arrow-w.svg) no-repeat center center / contain;
}
.ais-header__btn a:hover {
  opacity: 0.85;
  text-decoration: none;
}

/* footer
-------------------------------------*/
.ais-footer {
  background: #FEE8B8;
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
  position: relative;
}

/* --- 上部（波・スタッフ・TOP） --- */
.ais-footer__top {
  position: relative;
  z-index: 2;
  top: -160px;
  margin-bottom: -207px;
}
.ais-footer__wave {
  position: relative;
  width: 100%;
  line-height: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.ais-footer__wave-svg {
  display: block;
  width: 100%;
  height: auto;
}
.ais-footer__wave-static {
  display: none;
  width: 100%;
  height: auto;
}
@media (prefers-reduced-motion: reduce) {
  .ais-footer__wave-svg--motion {
    display: none;
  }
  .ais-footer__wave-static {
    display: block;
  }
}
.ais-footer__staff {
  position: absolute;
  left: 80px;
  top: -55px;
  z-index: 0;
  margin: 0;
  pointer-events: none;
}
.ais-footer__staff img {
  display: block;
  width: min(95%,501px);
  height: auto;
}

/* --- メインコンテンツ --- */
.ais-footer__body {
  position: relative;
  z-index: 2;
}
.ais-footer__inner {
  width: min(95%, 1200px);
  margin-inline: auto;
  padding-block: 0 120px;
}
.ais-footer__upper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 31px;
}
.ais-footer__logo {
  width: 212px;
}
.ais-footer__logo img {
  width: 100%;
  height: auto;
}

/* ナビ3カラム */
.ais-footer__nav {
  display: flex;
  gap: 0 80px;
}
.ais-footer__nav-ttl {
  color: #ED6C00;
  font-size: 24px;
  font-weight: 500;
  line-height: 1; 
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.ais-footer__nav-col ul {padding-left: 14px;}
.ais-footer__nav-col a {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.1em;
  position: relative;
  display: block;
}
.ais-footer__nav-col a::before {
  content: "-";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -13px;
}
.ais-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.ais-footer__copy {
  font-size: clamp(0.625rem, 0.458rem + 0.35vw, 0.875rem);
  line-height: 1.71429;
  letter-spacing: 0.1em;
}

/* CTAボタン */
.ais-footer__cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 21px;
  width: min(95%, 765px);
}
.ais-footer__btn {
  text-align: center;
  font-size: 18.6px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  border-radius: 9.3px;
  position: relative;
  padding-block: 21.75px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  transition: opacity 0.2s ease;
}
.ais-footer__btn:hover {
  opacity: 0.85;
  text-decoration: none;
}
.ais-footer__btn img {
  width: 46px;
  height: auto;
}
.ais-footer__btn--mail {
  background: #ED6C00;
  color: #FFF;
  padding-right: 11px;
}
.ais-footer__btn--mail::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 59px;
  width: 18.6px;
  height: 18.6px;
  background: url(../images/common/btn-arrow-w.svg) no-repeat center center / contain;
}
.ais-footer__btn--line {
  background: #FFF;
  color: #06C755;
  padding-right: 29px;
}
.ais-footer__btn--line::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 74px;
  width: 18.6px;
  height: 18.6px;
  background: url(../images/common/btn-arrow-g.svg) no-repeat center center / contain;
}

.pagetop {
  position: fixed;
  right: 40px;
  bottom: 48px;
  z-index: 100;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
}
.pagetop img {
  width: 100%;
  height: auto;
}


/* end-contact
-------------------------------------*/
#end-contact {
  background: #eee;
  padding: 50px 0;
}
#end-contact .end-contact-ttl {
  margin-bottom: 50px;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
}
#end-contact p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
}
#end-contact .end-bx {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#end-contact .tel {
  margin-right: 20px;
}
#end-contact .btn a {
  font-weight: bold;
  margin: 0 auto;
  color: #fff;
  padding: 10px 50px;
  font-size: 18px;
  text-align: center;
  display: inline-block;
  background: #000;
}
#end-contact .btn a:hover {
  background: #333;
  text-decoration: none;
}

/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  z-index: 30;
}

/* common
-------------------------------------*/
.main-title-box {
  width: min(95%, 1280px);
  margin-inline: auto;
}
.main-title-en {
  color: var(--orange, #ED6C00);
  font-size: 80px;
  font-weight: 500;
  line-height: 1; 
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.main-title {
  color: var(--black, #3D3D3D);
  font-family: "Zen Kaku Gothic New";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.33333;
  letter-spacing: 0.1em;
}

/* 幅・中央寄せは page-system.css の .seo_bread_list と .system-contents で統一 */
/* 区切り文字は functions-aisaretai/breadcrumb.php の bcn_display_separator で ＜ を出力 */

/* レガシー用。新規の一覧サムネは page-system.css の aspect-ratio 3/2 を使う */
.fit img {
  object-fit: cover;
}
html {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: none;
  overflow-x: hidden;
}

/* chrome画質悪化の対策*/
img {
  image-rendering: -webkit-optimize-contrast;
}
body {
  -webkit-text-size-adjust: 100%;
}
img {
  vertical-align: bottom;
}
a {
  text-decoration: none;
  color: #090909;
}
a:hover {
  text-decoration: underline;
}
.nobd a:hover {
  text-decoration: none !important;
}

/* clearfix */
.clearfix {
  zoom: 1;
}
.clearfix:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  line-height: 0;
  content: ".";
}

/* リンク透明 */
a img:hover {
  -ms-filter: "alpha( opacity=80 )";
  filter: alpha(opacity=80);
  opacity: 0.8;
}
/* リンク透明にしない */
.noop a img:hover {
  -ms-filter: "alpha( opacity=100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}
/*---------------------------------------- 　　外部サービス ----------------------------------------*/
/* ggmap */
/* <div class="ggmap">iframeのコピーしたコード</div> */
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* <div class="youtube"><iframe  src="youtubeのURL?rel=0" frameborder="0" allowfullscreen></iframe></div> */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/*---------------------------------------- 　　webフォント（サーバー置き）　 ----------------------------------------*/
@font-face {
  font-family: "jp-sttl01";
  /* お好きな名前にしましょう */
  src: url("../font/.eot");
  /* IE9以上用 */
  src: url("../font/bokutachi.eot?#iefix") format("embedded-opentype"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff");
  /* iOS, Android用 */
  /* 念の為指定しておきます */
  font-weight: normal;
  /* 念の為指定しておきます */
  font-style: normal;
  vertical-align: top;
  margin: 0px;
  padding: 0px;
}
.myWebFontClass {
  font-family: "jp-sttl01";
}
}


/* ========================================
  @media screen and (min-width:768px) and (max-width:1919px) 
======================================== */
@media screen and (min-width:768px) and (max-width:1919px) {

/* header
-------------------------------------*/
.ais-header__inner {
  padding-block: 1.042vw;
  padding-inline: 2.083vw;
}
#top .ais-header__inner {
  margin-bottom: -7.656vw;
}
.ais-header__logo a {
  gap: 1.042vw;
}
.ais-header__logo img {
  width: 5.208vw;
  height: auto;
}
.ais-header__catch {
  font-size: 0.729vw;
}
.ais-header__nav {
  gap: 2.083vw;
  margin-top: 1.042vw;
}
.ais-header__nav-list {
  gap: 1.667vw;
}
.ais-header__nav-list a {
  /* font-size: 0.729vw; */
}
.ais-header__nav-list a::after {
  right: -0.885vw;
  height: 1.25vw;
}
.ais-header__nav-list li:first-child a::before {
  left: -0.729vw;
  height: 1.25vw;
}

  /* footer
-------------------------------------*/
.ais-footer__top {
  top: -8.338vw;
  margin-bottom: -10.787vw;
}
.ais-footer__staff {
  left: 4.169vw;
  top: -2.866vw;
}
.ais-footer__staff img {
  width: min(95%,26.09vw);
}

}

/* ========================================
  @media screen and (min-width:768px) and (max-width:1100px)
======================================== */
@media screen and (min-width:768px) and (max-width:1100px) {

  /* header
-------------------------------------*/
.ais-header__nav-list a {
  font-size: clamp(0.563rem, 0.129rem + 0.9vw, 0.75rem);
}
.ais-header__btn {
  width: 13.36vw;
}
.ais-header__btn a {
  padding-block: 0.82vw;
  padding-inline: 0 1.82vw;
  font-size: clamp(0.563rem, 0.129rem + 0.9vw, 0.75rem);
}
.ais-header__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.091vw;
  width: 1.455vw;
  height: 1.455vw;
  background: url(../images/common/btn-arrow-w.svg) no-repeat center center / contain;
}


/* footer
-------------------------------------*/
.ais-footer__logo {
  width: 19.27vw;
}
.ais-footer__nav {
  gap: 0 7.27vw;
}
.ais-footer__nav-col a {
  font-size: clamp(0.75rem, 0.172rem + 1.2vw, 1rem);
}
.ais-footer__cta {
  gap: 0 1.909vw;
  width: min(95%, 69.55vw);
}
.ais-footer__btn {
  font-size: 1.691vw;
  letter-spacing: 0.02em;
  border-radius: 0.845vw;
  padding-block: 1.977vw;
  gap: 1vw;
}
.ais-footer__btn--mail::after {
  right: 3.364vw;
}
.ais-footer__btn--line::after {
  right: 5.364vw;
}
}

/* ========================================
   @media screen and (max-width: 1200px) 
======================================== */
@media screen and (max-width: 1200px) {
  html {
    overflow: auto;
  }
  body {
    /* overflow: visible; */
  }
}

/* ========================================
   @media screen and (max-width: 767px)
======================================== */
@media screen and (max-width: 767px) {
html {
  font-size: 62.5%;
}
body {
  overflow: hidden;
  font-size: 3.6vw;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
  color: #3D3D3D;
}
.pc,
.pc2 {
  display: none !important;
}
/*pcのみ表示ブロック*/
.sp {
  display: block !important;
}
/*スマホのみ表示ブロック*/
.sp2 {
  display: inline-block !important;
}
/*スマホのみ表示ブロック*/
.no-br {
  display: none;
}
/*スマホでbrを解除したい場合に使用*/
.sp_display_block {
  display: block !important;
}
/*スマホでflexboxを解除したい場合等に使用*/
.pc-menu {
  display: none;
}
.side-fix {
  display: none;
}
.fix-list {
  display: none;
}
#pc-menu-open {
  display: none;
}
#g-nav {
  display: none;
}

/* sp-header
-------------------------------------*/
.ais-sp-header {display: flex;align-items: flex-start;padding-block: 4.35vw;padding-inline: 4.11vw;gap: 0 4.00vw;background: #FFFBF1;}
#top .ais-sp-header {
  margin-bottom: -18.52vw;
}
.ais-sp-header__logo {
  position: relative;
  z-index: 10;
}
.ais-sp-header__logo a {
  display: flex;
  align-items: center;
  gap: 2.4vw;
}
.ais-header__logo a:hover {
  text-decoration: none;
}
.ais-header__catch {
  font-size:2.898vw;
  font-weight: 500;
  line-height: 1.5; 
  cursor: default;
}
.ais-sp-header__logo img {
  height: auto;
  width: 9.18vw;
}

.ais-sp-header__menu {
  position: fixed;
  top: 4.35vw;
  right: 2.17vw;
  z-index: 97;
}
.ais-sp-header__menu img {
  height: auto;
  width: 7.97vw;
}
.ais-header__btn {
  width: 39.86vw;
  position: relative;
  z-index: 10;
}
.ais-header__btn a {
  border-radius: 1.77vw;
  background: #ED6C00;
  transition: opacity 0.2s ease;
  color: #FFF;
  font-size:3.14vw;
  font-weight: 500;
  line-height: 1.24103;
  letter-spacing: 0.02em;
  position: relative;
  padding-block: 2.402vw;
  display: block;
  padding-inline: 2.64vw;
}
.ais-header__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.66vw;
  width: 4.35vw;
  height: 4.35vw;
  background: url(../images/common/btn-arrow-w.svg) no-repeat center center / contain;
}
.ais-header__btn a:hover {
  opacity: 0.85;
  text-decoration: none;
}
  /* sp-global-nav
-------------------------------------*/
nav#sp-global-nav {
  font-size: 3.8vw;
  z-index: 99;
  overflow: scroll;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  background-color: #FFFBF1;
  box-sizing: border-box;
  color: #3D3D3D;
}
nav#sp-global-nav .ais-sp-header__logo {
  padding-block: 4.35vw;
  padding-inline: 4.11vw;
}
nav#sp-global-nav .ais-sp-header__logo a {
  display: flex;
  align-items: center;
  gap: 2.4vw;
}
nav#sp-global-nav .ais-sp-header__logo a:hover {
  text-decoration: none;
}
nav#sp-global-nav .ais-sp-header__logo img {
  height: auto;
  width: 9.18vw;
}
nav#sp-global-nav .open-close-01 {
  position: fixed;
  top: 5.07vw;
  right: 2.17vw;
  z-index: 98;
}
nav#sp-global-nav .open-close-01 img {
  height: auto;
  width: 7.97vw;
}
nav#sp-global-nav .open-color-Box {
  padding-inline: 5.07vw;
  padding-block: 24vw 40vw;
}
nav#sp-global-nav .list {
  display: grid;
  gap: 8.7vw 0;
  width: min(95%, 82.13vw);
  margin-inline: auto;
  padding-bottom: 14.49vw;
}
nav#sp-global-nav .list li a {
  text-decoration: none;
  display: block;
  font-size:4.348vw;
  font-weight: 500;
  line-height: 1.22222;
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 4vw;
}
nav#sp-global-nav .list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.24vw;
  height: 5.80vw;
  background: url(../images/common/dashed-line.svg) no-repeat center center / contain;
}
nav#sp-global-nav .ctaArea {
  display: grid;
  gap: 1.80vw 0;
}
nav#sp-global-nav .ctaArea a {
  height: 21.74vw;
  border-radius: 2.25vw;
  color: #FFF;
  text-align: center;
  font-size:4.348vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.89vw;
  justify-content: center;
  padding-right: 4vw;
}
nav#sp-global-nav .ctaArea a img {
  width: 11.23vw;
  height: auto;
}
nav#sp-global-nav .ctaArea .mail {
  background: #ED6C00;
}
nav#sp-global-nav .ctaArea .mail::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 13.9vw;
  width: 4.49vw;
  height: 4.49vw;
  background: url(../images/common/btn-arrow-w.svg) no-repeat center center / contain;
}
nav#sp-global-nav .ctaArea .line {
  border: 0.2vw solid #BFBFBF;
  background: #FFF;
  color: #06C755;
  padding-right: 8vw;
}
nav#sp-global-nav .ctaArea .line::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 17.9vw;
  width: 4.49vw;
  height: 4.49vw;
  background: url(../images/common/btn-arrow-g.svg) no-repeat center center / contain;
}

  /* side-fix
-------------------------------------*/
.side-fix {
  display: none !important;
}
.sp-fix-list {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 96;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-end;
}
.sp-fix-list .tel {
}
.sp-fix-list .icon {
}

/* end-contact
-------------------------------------*/
#end-contact {
  background: #eee;
  padding: 10vw 5vw;
}
#end-contact .end-contact-ttl {
  margin-bottom: 10vw;
  text-align: center;
  font-size: 4.3vw;
  font-weight: bold;
}
#end-contact p {
  text-align: center;
  margin-bottom: 5vw;
  font-size: 4vw;
}
#end-contact .tel {
  margin: 0 10vw 10vw;
}
#end-contact .btn a {
  font-weight: bold;
  margin: 0 auto;
  color: #fff;
  padding: 5vw 5vw;
  text-align: center;
  display: block;
  background: #000;
}

/* sp-page-top
-------------------------------------*/
.sp-page-top a {
  text-align: center;
  display: block;
  padding: 5vw 3vw;
}
.sp-page-top a img {
  width: 20vw;
  height: auto;
}

/* footer
-------------------------------------*/
.ais-footer {
  background: #FEE8B8;
  position: relative;
}

/* --- 上部（波・スタッフ・TOP） --- */
.ais-footer__top {
  position: relative;
  z-index: 2;
  top: -15vw;
  margin-bottom: -12.5vw;
}
.ais-footer__wave {
  position: relative;
  width: 100%;
  line-height: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.ais-footer__wave-svg {
  display: block;
  width: 100%;
  height: auto;
}
.ais-footer__wave-static {
  display: none;
  width: 100%;
  height: auto;
}
@media (prefers-reduced-motion: reduce) {
  .ais-footer__wave-svg--motion {
    display: none;
  }
  .ais-footer__wave-static {
    display: block;
  }
}
.ais-footer__staff {
  position: absolute;
  left: 1.5vw;
  top: -8.9vw;
  z-index: 0;
  margin: 0;
  pointer-events: none;
}
.ais-footer__staff img {
  display: block;
  width: 55.07vw;
  height: auto;
}

/* --- メインコンテンツ --- */
.ais-footer__body {
  position: relative;
  z-index: 2;
}
.ais-footer__inner {
  width: min(95%, 89.86vw);
  margin-inline: auto;
  padding-bottom: 30vw;
}
.ais-footer__upper {
  display: flex;
  justify-content: center;
  padding-bottom: 9.66vw;
}
.ais-footer__logo {
  width: 34.30vw;
}
.ais-footer__logo img {
  width: 100%;
  height: auto;
}

.ais-footer__nav {
  display: none;
}

.ais-footer__bottom {
  display: grid;
  gap: 16.80vw 0;
}
.ais-footer__copy {
  text-align: center;
  font-size:3.382vw;
  font-weight: 400;
  line-height: 1.71429;
  letter-spacing: 0.1em;
  order: 2;
}

/* CTAボタン */
.ais-footer__cta {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.80vw 0;
  order: 1;
}
.ais-footer__btn {
  text-align: center;
  font-size: 4.49vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  border-radius: 2.25vw;
  position: relative;
  padding-block: 5.25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.66vw;
  transition: opacity 0.2s ease;
}
.ais-footer__btn:hover {
  opacity: 0.85;
  text-decoration: none;
}
.ais-footer__btn img {
  width: 11.35vw;
  height: auto;
}
.ais-footer__btn--mail {
  background: #ED6C00;
  color: #FFF;
  padding-right: 2.66vw;
}
.ais-footer__btn--mail::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14.25vw;
  width: 4.59vw;
  height: 4.59vw;
  background: url(../images/common/btn-arrow-w.svg) no-repeat center center / contain;
}
.ais-footer__btn--line {
  background: #FFF;
  color: #06C755;
  padding-right: 7.00vw;
}
.ais-footer__btn--line::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 17.87vw;
  width: 4.59vw;
  height: 4.59vw;
  background: url(../images/common/btn-arrow-g.svg) no-repeat center center / contain;
}

.pagetop {
  position: fixed;
  right: 2vw;
  bottom: 9.66vw;
  width: 14.49vw;
  height: 14.49vw;
  border-radius: 50%;
  z-index: 98;
  cursor: pointer;
}
.pagetop img {
  width: 100%;
  height: auto;
}


/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  bottom: 22vw !important;
  z-index: 30;
}

  /* common
-------------------------------------*/
.main-title-box {
  width: min(95%, 82.13vw);
  margin-inline: auto;
  padding: 7vw 0;
}
.main-title-en {
  color: var(--orange, #ED6C00);
  font-size:10.145vw;
  font-weight: 500;
  line-height: 1.0119;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.93vw;
}
.main-title {
  color: var(--black, #3D3D3D);
  font-size:3.865vw;
  font-weight: 700;
  line-height: 2; 
  letter-spacing: 0.1em;
}

.seo_bread_list {
  color: #666;
}
/*.seo_bread_list{display: none;}*/
.seo_bread_list a {
  color: #CCC1A5;
}

/* .fit 同上（SP） */
.fit img {
  object-fit: cover;
}
.wysiwyg img {
  width: auto !important;
  height: auto !important;
}
html {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: none;
  overflow-x: hidden;
}

/* chrome画質悪化の対策*/
img {
  image-rendering: -webkit-optimize-contrast;
}

/* 2カラムサイト---------------- */
#tow-cl #side {
  display: none;
}

*:focus {
  outline: none !important;
}
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

body {
  -webkit-text-size-adjust: 100%;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: #090909;
}
a:hover {
  text-decoration: underline;
}
.nobd a:hover {
  text-decoration: none !important;
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  line-height: 0;
  content: ".";
}

/* img-block */
/* アンカーリンク調整 */
.hideAnchor {
  display: block;
  height: 0;
  overflow: hidden;
  text-indent: -9999px;
  margin-top: -2vw;
  padding-bottom: 2vw;
}
/* スクロール縦 */
.scroll-y {
  box-sizing: border-box;
  overflow-y: scroll;
  transform: translateZ(0);
}
/* リンク透明 */
a img:hover {
  -ms-filter: "alpha( opacity=80 )";
  filter: alpha(opacity=80);
  opacity: 0.8;
}
/* リンク透明にしない */
.noop a img:hover {
  -ms-filter: "alpha( opacity=100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}
/*---------------------------------------- 　　外部サービス ----------------------------------------*/
/* ggmap */
/* <div class="ggmap">iframeのコピーしたコード</div> */
.sp-ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 5vw;
  height: 0;
  overflow: hidden;
}
.sp-ggmap iframe,
.sp-ggmap object,
.sp-ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* <div class="youtube"><iframe  src="youtubeのURL?rel=0" frameborder="0" allowfullscreen></iframe></div> */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/*---------------------------------------- 　　webフォント（サーバー置き）　 ----------------------------------------*/
@font-face {
  font-family: "jp-sttl01";
  /* お好きな名前にしましょう */
  src: url("../font/.eot");
  /* IE9以上用 */
  src: url("../font/bokutachi.eot?#iefix") format("embedded-opentype"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff");
  /* iOS, Android用 */
  /* 念の為指定しておきます */
  font-weight: normal;
  /* 念の為指定しておきます */
  font-style: normal;
  vertical-align: top;
  margin: 0px;
  padding: 0px;
}
.myWebFontClass {
  font-family: "jp-sttl01";
}
}

/* ========================================
   @media screen and (max-height: 450px)
======================================== */
@media screen and (max-height: 450px) {
  /* 高さ450px以下の場合 andoroidのフォーム対策 ストーカーバナー用　*/
  .sp-fix-list {
    display: none;
  }
}
