@charset "utf-8";
/*
Theme Name: サイトタイトル
Theme URI:
Description:
Author:
Version: 1.0
License:
License URI:
Tags:
*/
/*-----------------------------------------------------
@@ Reset
------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  line-height: 1.5em;
}
html {
  height: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap : break-word;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  /*overflow-x: hidden;*/
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
  max-width: 100%;
}
:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #__next {
  isolation: isolate;
}

/* For modern browsers */
.clearfix:before,.clearfix:after,.cf:before,.cf:after{
  content:"";
  display:table;
}
.clearfix:after,.cf:after{clear:both;}
.clearfix,.cf{zoom:1;}/* For IE 6/7 (trigger hasLayout) */

ul{
  padding: 0;
}

/*-----------------------------------------------------
@@ 基本
------------------------------------------------------*/
:root {
  --primary-color: #20b1aa;
  --link-color: #2f2087;
  --text-color: #333;
  --form-border: #777777;
}
a {
  color: #0066cc;
  text-decoration: underline;
  transition-duration: 0.3s;
}
a:hover {
  color: #ff6600;
}
a:hover img {
  transition-duration: 0.1s;
}

html {
  color: #333333;
  background: white;
  block-size: 100%;
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: 90px;
}
body {
  font-size: 16px;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', 'メイリオ', sans-serif;
  background-color: white;
  overflow-y: scroll;
  min-height: 100dvh;
}

#layer {
  display: none;
}
@media screen and (max-width: 767.9px) {/* @@ sm xs 767px以下(スマホ) */
  #layer {
      position: fixed;
      /*z-index: 500;*/
      background: #000000;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      filter: alpha(opacity=0);
      opacity: 0.0;
      display: none;
  }
}

/*-----------------------------------------------------
@@ ヘッダ
------------------------------------------------------*/
.wrap-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 80px;
  background-color: rgba(255,255,255, 1);
}
header#page-header {
  width: min(100%, 1188px);
  margin-inline: auto;
  position: relative;
}

header#page-header h1 {
  display: block;
  position: absolute;
  top: 25px;
  left: 5px;
  z-index: 1001;
}
header#page-header h1 a {
  display: block;
  width: min(83vw, 394px);
  aspect-ratio: 394 / 30;
  background: url(images/logo.png) no-repeat 50% 50%;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.wrap-headermenu {
  position: relative;
}
  #headermenu-btn {
    display: block;
    width: 80px;/*★*/
    height: 80px;/*★*/
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    z-index: 1000;
    background: url(images/headermenu__menu.webp) no-repeat 50% 50%;
    background-size: contain;
    z-index: 1006;
  }
  #headermenu-btn.clicked {
    background: url(images/headermenu__close.webp) no-repeat 50% 50%;
    background-size: contain;
  }
  #headermenu {
    display: none;  /* 最初は非表示 */
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    padding: 120px 40px 30px;
    box-shadow: 0px 0px 5px 0 rgba(0,0,0,0.3);
    z-index: 1005;
  }

  .headermenu-list {
    list-style-type: none;
  }
  .headermenu-list > li {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    text-align: left;
    margin-bottom: 20px;
  }
  .headermenu-list > li > a {
    display: block;
    text-decoration: none;
    color: var(--link-color);
    padding-left: 30px;
    position: relative;
  }
  .headermenu-list > li > a:before {
    content: "";
    display: block;
    width: 24px;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 6px;
    left: 0;
    background: url(images/list01.webp) no-repeat 50% 50%;
    background-size: contain;
  }
  .headermenu-list > li > a:hover {
  }

@media screen and (max-width: 767.9px) {

  .wrap-header {
    height: 64px;
  }
  header#page-header h1 {
    top: 22px;
  }
  #headermenu {
    padding: 100px 40px 30px;
  }
  #headermenu-btn {
    display: block;
    width: 64px;/*★*/
    height: 64px;/*★*/
  }

}/* スマホ ここまで */


/*-----------------------------------------------------
@@ フッタ
------------------------------------------------------*/
.page-footer {
  position: -webkit-sticky;
  position: sticky;
	bottom: 0;
}
.footer__top {
  background-color: #efefef;
}
.footer__bottom {
  background-color: var(--primary-color);
}

.footer__top__inner,
.footer__bottom__inner {
  width: min(100% - 20px, 1024px);
  margin: 0 auto;
}

.footer__top__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: flex-end;
  column-gap: 20px;
  padding: 20px 0 14px;
}
.footer__top__inner__left {
  flex: 1;
}
.footer__top__inner__right {
  max-inline-size: max-content;
}

.footer__title {
  font-size: 18px;
  line-height: 1.25;
}
.footer__address {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.footer__list-01 {
  display: flex;
  justify-content: flex-end;
  column-gap: 1em; /* 横方向の余白 */
  row-gap: 10px; /* 縦方向の余白 */
  font-size: 14px;
  list-style-type: none;
}
.footer__list-01 a {
  color: var(--primary-color);
  text-decoration: none;
}


.footer__bottom__inner {
  padding: 4px 15px 5px;
}
.copyright {
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  color: white;
  margin: 0;
}

@media screen and (max-width: 767.9px) {

  .footer__top__inner {
    display: block;
    padding: 40px 0 14px;
  }

  .footer__title {
    margin-bottom: 8px;
  }
  .footer__address {
    margin-bottom: 16px;
  }

}


/*-----------------------------------------------------
@@ メイン
------------------------------------------------------*/
.contents {
  /*  width: min(100% - 40px, 1128px);  */
  width: min(100%, 1126px);
  margin: 0 auto;
}


@media screen and (min-width: 768px) {
  .contents {
    padding:0 30px 120px 30px;
  }
}/* PC ここまで */
@media screen and (max-width: 767.9px) {

  .contents {
  padding: 0 10px 10px 10px;
  }
  img{width: 100%;}

}/* スマホ ここまで */


/*-----------------------------------------------------
@@ 段落
------------------------------------------------------*/
p{
  margin-bottom: 1em;
}
p.indent1{
  text-indent: -1em;
  margin-left: 1em;
}

p.err-box{
  color: red;
  border: 1px solid red;
  padding: 8px;
}


/*-----------------------------------------------------
@@ IME制御（WinIEのみ）等
------------------------------------------------------*/
.imeon  {ime-mode: active;}
.imeoff {ime-mode: disabled;}

.right  {text-align: right;}
.center {text-align: center;}
.left   {text-align: left;}

.nowrap {white-space: nowrap;}

@media screen and (min-width: 768px) {
  .sp, .smp {display: none !important;}
}
@media screen and (max-width: 767.9px) {
  .pc {display: none !important;}
}



/*-----------------------------------------------------
@@ レスポンシブ対策
------------------------------------------------------*/
video, object {
  max-width: 100%;
  height: auto;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}
/* YouTube等のiframeを囲む
<div class="video169"><iframe>...</iframe></div> 16:9の場合
<div class="video34"><iframe>...</iframe></div> 4:3の場合
*/
.video169, .video34 {
  width:100%;
  height: auto;
  position: relative;
}
.video169 {aspect-ratio: 16 / 9;}
.video34  {aspect-ratio: 4 / 3;}

.video169 iframe, .video34 iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* @@ Googleマップ */
.gmap {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0 auto 20px;
}
.gmap iframe,.gmap object,.gmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width:767.9px){
  .gmap {
    /*height: 300px;*/
    margin: 0 auto 10px;
  }
}


/*-----------------------------------------------------
@@ 共通
------------------------------------------------------*/
@media (min-width: 768px) {

}/* PC ここまで================================ */
@media screen and (max-width: 767.9px) {

}/* スマホ ここまで============================ */


/* @@ なんか */


/*-----------------------------------------------------
@@ index インデックス トップページ
------------------------------------------------------*/


/*-----------------------------------------------------
@@ 
------------------------------------------------------*/


/*-----------------------------------------------------
@@ 
------------------------------------------------------*/







/*-----------------------------------------------------
@@ ページトップへ戻る
------------------------------------------------------*/
#page_top {
  width: 64px;
  aspect-ratio: 1 / 1;
  position: fixed;
  right: 10px;
  bottom: -100%;
  transition-duration: 0.3s;
}
#page_top.in {
  bottom: 10px;
}
#page_top.bottom {
  bottom: 10px;/* 一番下までスクロールした時のトップに戻るボタンの位置（PC） */
}
#page_top a {
  display: block;
  width: 64px;
  aspect-ratio: 1 / 1;
  height: 64px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: rgba(255,0,0, .7) url(images/top_arrow.png) no-repeat 50% 50%;
  background-size: contain;
}
@media screen and (max-width: 767.9px) {
  #page_top.bottom {
    bottom: 10px;/* 一番下までスクロールした時のトップに戻るボタンの位置（SP） */
  }
}

