@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
html {
  font-size: 100% !important;
}

body {
  background: #fff;
  color: #666;
  font-family: Hiragino Mincho ProN,-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

.font_type01 {
  font-family: "EB Garamond", serif;
}

.inline_block {
  display: inline-block;
}

@media (max-width: 768px) {
  .column + .column {
    margin-top: 35px;
  }
}
@media (max-width: 768px) {
  .under #content div:not(.upper_footer) .column + .column {
    margin-top: 20px;
  }
}
.nowrap_cell {
  white-space: nowrap;
}

ul.ul02 li {
  margin-top: 0 !important;
}

.under {
  letter-spacing: 0.05em;
  line-height: 2;
}

.hidden {
  display: none;
}

body:not(.page_edit) .page_hidden {
  display: none;
}

.carousel .slick-arrow {
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 10vw;
  height: 10vw;
  max-width: 118px;
  max-height: 108px;
  margin-top: 0px;
  padding: 0;
  border: none;
  outline: none;
  background-position: center center;
  background-repeat: no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  opacity: 0.8;
}

.carousel .slick-arrow.slick-prev {
  background: url(/images/arrow_prev.png) no-repeat top center/contain;
  left: -40px;
}

.carousel .slick-arrow.slick-next {
  background: url(/images/arrow_next.png) no-repeat top center/contain;
  right: -40px;
}

.wf_lic {
  border-bottom: 1px dashed #d1d1d1;
}

.wf_blog_li_thumb {
  display: none !important;
}

#header p.hd_tel {
  font-size: 20px;
}

.under .slick-slide img {
  display: block;
  margin: 0 auto;
}

.carousel > div {
  max-width: 1000px;
}

.wrap iframe {
  display: block;
}

.t04_wrap table {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

.t04_wrap table th {
  background: #e9f5c4;
}

.t04_wrap table th,
.t04_wrap table td {
  width: 25%;
  border: 1px solid #ccc;
  padding: 8px;
}

.line_center {
  text-align: center;
}

.t01_wrap thead th {
  background: #60bfce;
  color: #fff;
}
.t02_wrap thead th {
  background: #60bfce;
  color: #fff;
}

a,
a:visited,
a:hover {
  color: #4b4841;
}

/**/
#content .inner,
.totop .inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

#upper_footer .inner,
.totop .inner {
display:flex;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  #upper_footer .inner,
  .totop .inner {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  #content .inner,
  .totop .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}


.header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
}
.header_inner {
  position: relative;
  padding: 15px;
}
.logo{
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 15px
}
.title{
  font-size: 2rem;
  font-weight: 600;
}

/* header固定のため余白をつける。メニューのCSSには関係ない */
.main{  
  margin-top: 60px;
}

@media only screen and (max-width: 768px) {
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
  }
  .nav_item a:hover {
    background-color: #eee;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #333;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}/* sp */

@media only screen and (min-width: 769px) {
  .header_inner{
    max-width: 980px;
    width: 100%;
    padding: 15px 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .logo{
    padding: 12px 30px
  }
  .nav_list{
    text-align: right;
  }
  .nav_list li{
    display: inline-block;
    text-align: right;
    padding-left: 20px;
  }
  .nav_list li a{
    color: #fff;
    font-weight: 600;
  }
}/* pc */









.column {
  box-sizing: border-box;
}

form .wrap > .inner {
  border: none;
}

.youtube_btn .img_anchor::after {
  top: -40px !important;
}

.youtube_btn .img_anchor::before {
  display: none !important;
}

a {
  transition: 200ms;
}

a:hover,
a:hover img {
  opacity: 0.8;
}

/* header */
#header .btn02 .btn_wrap .wf_btn_part a {
  background: #ef4000;
  color: white;
  font-size: 14px;
  letter-spacing: 0.2em;
  border-radius: 0;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 100%;
  letter-spacing: normal;
  line-height: 32px;
  border: none;
}
#header .btn02 .btn_wrap .wf_btn_part a:hover {
  opacity: 1 !important;
  background: #ff723f;
}
#header .btn01 .btn_wrap .wf_btn_part a {
  background: rgb(132, 128, 119);
  color: white;
  font-size: 14px;
  letter-spacing: 0.2em;
  border-radius: 0;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 100%;
  letter-spacing: normal;
  line-height: 32px;
  border: none;
}

@media (min-width: 769px) {
  #header .hdr_info_wrap {
    display: flex;
    align-items: center;
  }
}
#header > .inner {
  padding: 10px 0;
}

#header .info {
  float: right;
  text-align: right;
  margin-top: 2em;
}

.header_tel a.mail img {
  width: 37%;
  max-width: 170px;
}

.header_tel img.tel {
  width: 55%;
  max-width: 271px;
}

/* nav */
#nav {
  width: 100%;
  float: none;
  padding: 10px 0 20px;
}

#nav #menu {
  margin: 0 auto;
}

#nav #menu > li {
  float: left;
  list-style: none;
  width: 9%;
  box-sizing: border-box;
  position: relative;
  border-right: 1px dashed #b29f64;
  padding: 5px;
}

#nav #menu > li img {
  max-height: 45px;
}

#nav li > a,
#nav li > span {
  color: #4b4841;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.5;
}

#nav li a span {
  font-size: 14px;
  color: #4b4841;
  display: block;
}

#nav li a:hover {
  color: #1f92e2;
}



.submenu_ul {
  position: absolute;
  z-index: 1;
  left: 0%;
}

.submenu_ul > li {
  list-style: none;
  width: 230px;
  font-size: 13px;
  box-sizing: border-box;
  border-collapse: collapse;
  border-bottom: 1px solid #fff;
}

.submenu_ul > li a {
  padding: 10px 20px;
  box-sizing: border-box;
  color: #fff !important;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  background: #60bfce;
}

.submenu_ul > li a:hover {
  color: #37919f !important;
  opacity: 1 !important;
}

/* content */
#content {
  margin-bottom: 0px;
  min-height: 500px;
}

.top #content {
  margin-bottom: 0;
}

#content .wrap p {
  margin-bottom: 1.2em;
}

th p,
td p {
  margin-bottom: 0 !important;
}

.wrap .inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* main */
.carousel {
  width: 100%;
  overflow: hidden;
}

.carousel > div {
  margin: 0 auto;
}

.carousel .slick-list {
  overflow: visible;
}

.carousel .slick-slide {
  position: relative;
  outline: 0;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid rgba(102, 102, 102, 0.6);
}

.slick-dots li.slick-active button:before {
  background: rgba(102, 102, 102, 0.6);
}

/* table */
.menu_table {
  width: 100%;
  margin-bottom: 10px;
  border-top: 1px solid #e8e9e3;
}

.menu_table th,
.menu_table td {
  padding: 14px 14px;
  border-bottom: 1px solid #e8e9e3;
}

.menu_table th {
  text-align: left;
}

.menu_table td {
  text-align: right;
}

table.news {
  border-top: 1px solid #e8e9e3;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

table.news th,
table.news td {
  padding: 15px 10px 14px;
  border-bottom: 1px solid #e8e9e3;
}

table.news th {
  width: 20%;
  color: #b4c22e;
  padding: 15px 0 14px 20px;
}

table.info {
  border-top: 1px solid #e8e9e3;
}

table.info th,
table.info td {
  padding: 15px 5px 14px;
  border-bottom: 1px solid #e8e9e3;
  text-align: left;
}

table.info th {
  width: 20%;
}

/* item */
.item-list li {
  float: left;
  width: 25%;
  box-sizing: border-box;
  padding: 0 2% 2%;
  text-align: center;
}

.item-list li img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 10px;
}

.item-list li span.item-price {
  padding-top: 6px;
  font-size: 14px;
  font-weight: bold;
  color: #b0bf24;
  display: block;
}

.under .wrap {
  max-width: 100vw;
  overflow: hidden;
  margin-bottom: 10px;
}

.type_basic_fl img {
  width: 30%;
  margin-right: 2%;
  float: left;
}

.type_basic_fr img {
  width: 30%;
  margin-left: 2%;
  float: right;
}

.img-half .type_basic_fl img {
  width: 48%;
  margin-right: 2%;
}

.img-half .type_basic_fr img {
  width: 48%;
  margin-left: 2%;
}

.wrap img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.img_list1 img {
  margin: 0 0 2%;
}

.img_list3 li {
  width: 32%;
  margin: 0 0 2% 2%;
  float: left;
  display: block;
}

.img_list3 li:first-child {
  margin-left: 0;
}

/*-------------------
 Responsive 
-------------------*/
.sp {
  display: none !important;
}

.map {
  position: relative;
  padding-bottom: 40%;
  height: 0;
  overflow: hidden;
}

.map iframe,
.map object,
.map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1020px) {
  .map {
    padding-bottom: 45%;
  }
  /**/
}
@media only screen and (max-width: 1000px) {
  .carousel > div {
    width: 100%;
  }
  .carousel .slick-arrow.slick-next {
    right: 10px;
  }
  .carousel .slick-arrow.slick-prev {
    left: 10px;
  }
}
.carousel .slick-arrow {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  img {
    max-width: 100%;
  }
  #header h1 {
    margin-top: 0;
    width: 45%;
  }
  #header .info {
    position: absolute;
    top: 30px;
    right: 10px;
    margin-top: 0;
    width: 166px;
    max-width: 36%;
    padding-top: 0;
    float: right;
  }
  #header .info a {
    margin-right: 4.5%;
    display: block;
    width: 30.5%;
    float: left;
    max-width: 50px;
  }
  #header .info img {
    width: 100%;
    display: block;
    max-width: 39px;
  }
  #nav {
    background: none;
    border: none;
  }
  #menu {
    display: none;
  }
  #toggle {
    display: block;
    position: absolute;
    top: 30px;
    right: 10px;
    max-width: 50px;
    width: 10%;
  }
  #header #toggle a {
    width: 100%;
    margin: 0;
    float: none;
    position: relative;
  }
  #nav ul {
    background: rgba(255, 255, 255, 0.9);
    left: 0;
    margin: 0;
    top: 90px;
    width: 100%;
    position: absolute;
    z-index: 9999;
  }
  #nav #menu > li {
    display: block;
    text-align: left;
    float: none;
    height: auto;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #ccc;
    margin: 0;
  }
  #nav ul li > a,
  #nav ul li > span.sp {
    display: block;
    padding: 14px 10px;
    width: 100%;
    float: none;
    box-sizing: border-box;
    text-align: left;
    height: auto;
    line-height: 1.5;
  }
  .submenu_ul > li {
    width: 100%;
  }
  .item-list li {
    float: none;
    margin: 0 auto 20px;
    max-width: 250px;
    width: 80%;
  }
  #content {
    width: 100%;
  }
  /* top */
  .top .concept-block img,
  .top .shop-block img {
    margin: 0 0 20px;
    max-width: 100%;
  }
  .top .concept-block h4,
  .top .concept-block p,
  .top .concept-block .anchor_wrap {
    padding-left: 0;
  }
  .top .shop-block .anchor_wrap,
  .top .concept-block .anchor_wrap {
    text-align: center;
  }
  .top .shop-block p.entry_p {
    width: 100%;
  }
  /* template */
  .type_basic_fl img,
  .type_basic_fr img,
  .img-half .type_basic_fl img,
  .img-half .type_basic_fr img,
  .img_list3 img,
  .img_list3 a {
    float: none;
    width: 100%;
    margin: 0 0 20px;
  }
}
@media only screen and (max-width: 480px) {
  #nav ul {
    top: 88px;
  }
  #header h1 {
    margin-top: 1em;
  }
  .top .recommend-block .block-inner {
    background-size: 20px;
    background-position: 0 0;
  }
  .top .recommend-block .block-inner .fl {
    padding-left: 0;
  }
  table.news th,
  table.news td,
  .info_dt,
  .info_dd {
    display: block;
    float: none;
    width: 100%;
    text-align: left;
  }
  table.news th,
  .info_dt {
    padding: 15px 2px 4px;
  }
  table.news td,
  .info_dd {
    padding: 4px 2px 15px;
  }
  table.news th,
  .info_dt {
    border-bottom: none;
  }
  .menu_table th,
  .menu_table td {
    display: block;
  }
  .menu_table th {
    border-bottom: none;
    padding-bottom: 4px;
  }
  .menu_table td {
    padding-top: 4px;
  }
}
/***********BLOG************/
/***********BLOG************/
.wf_blog_ul {
  max-width: 1000px;
  width: 100%;
  margin: 5px auto;
  display: block;
  box-sizing: border-box;
}

.wf_blog_ul .wf_blog_li_thumb,
.wf_blog_ul .wf_blog_li_thumb:hover {
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  display: block;
  overflow: hidden;
  float: left;
  margin-right: 10px;
}

.wf_blog_ul .wf_blog_li_thumb img {
  width: 100%;
  min-width: 45px;
  max-width: 200px;
  min-height: 45px;
  max-height: 200px;
}

.wf_blog_ul li {
  display: block;
  padding: 0;
}

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

.wf_blog_ul .wf_blog_li_date,
.wf_blog_ul .wf_blog_li_title {
  display: block;
  float: left;
  margin: 0px !important;
  padding: 14px;
  box-sizing: border-box;
  max-width: 100%;
}

.wf_bread_ul li {
  display: inline;
}

.wf_bread_ul {
  width: 100%;
  max-width: 1000px;
  display: block;
  margin: 0px auto;
  padding: 5px;
}

.wf_blog_li_date_time {
  display: none;
}

/* *******************************************************************************
******************************************************************************* */
.word_break {
  word-break: break-all;
}

a:focus,
*:focus {
  outline: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:hover img {
  opacity: 0.8;
}

#header h1 a:hover img {
  opacity: 1;
}

ul.list_dot {
  list-style: none;
}

ul.list_dot li {
  padding: 0 0 5px 22px;
  position: relative;
  word-wrap: break-word;
}

.dot_txt {
  padding: 0 0 5px 22px;
  position: relative;
}

.list_dot li:before,
.dot_txt:before {
  background: #14d1ad;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 7px;
  position: absolute;
  top: 10px;
  width: 8px;
}

@media (max-width: 768px) {
  .ul02 li:before {
    top: 9px;
  }
  .list_dot li:before,
  .dot_txt:before {
    top: 10px;
  }
}
.float_ul01 li {
  margin: 0 20px 0 0;
  float: left;
  width: 40%;
}

ul.ul_check li {
  padding: 5px 0px 5px 24px;
  position: relative;
}

ul.ul02 {
  list-style: none;
}

ul.ul02 li {
  padding: 0 0 5px 21px;
  position: relative;
}

ul.ul02.float_ul01 li {
  box-sizing: border-box;
  float: left;
  margin: 0 1% 0 0;
  padding: 0 0 5px 14px;
  position: relative;
  width: 32%;
}

ul.ul02 li a {
  font-weight: bold;
}

.ul02 li:before {
  display: block;
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left: 5px solid #14d1ad;
}

.sitemap.ul02 {
  background: none;
  padding: 0;
}

.sitemap.ul02 li {
  border-bottom: 1px dotted #ccc;
  margin-bottom: 15px;
}

ol li {
  list-style: decimal;
  margin-left: 1em;
}

ul.ul_check li:before {
  background: none repeat scroll 0 0 #6a91c4;
  border: 1px solid #0f7144;
  border-radius: 3px;
  content: "";
  height: 17px;
  left: 0;
  position: absolute;
  top: 9px;
  width: 17px;
  z-index: 0;
}

ul.ul_check li:after {
  position: absolute;
  top: 9px;
  left: 3px;
  content: "";
  width: 11px;
  height: 4px;
  border: transparent 4px solid;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-40deg);
  -webkit-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  z-index: 10;
}

p.point_p {
  color: #cab52c;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  padding: 7px 5px 8px 14px;
  position: relative;
  text-shadow: 2px 2px 1px #fff, -2px -2px 1px #fff, 2px -2px 1px #fff, -2px 2px 1px #fff;
  z-index: 1;
}

p.point_p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border: 9px solid #d7f0f9;
  border-radius: 50%;
  z-index: -1;
}

.number_p {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 10px;
  padding: 0 0 0 110px;
  text-indent: -110px;
}

.number {
  background: none repeat scroll 0 0 #cab52c;
  border-radius: 5px;
  box-shadow: 3px 3px 0 #ccc;
  color: #fff;
  font-size: 23px;
  margin: 0 10px 0 0;
  padding: 0 8px;
}

.arrow_box {
  position: relative;
  height: 40px;
  width: 100%;
}

.arrow_box:before {
  content: "";
  position: absolute;
  background: none;
  top: 10px;
  left: 0px;
  height: 0;
  border-top: dotted #e6ddb8 2px;
  width: 100%;
}

.arrow_box:after {
  display: block;
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  margin: 0 0 0 -30px;
  width: 0px;
  height: 0px;
  border: 30px solid transparent;
  border-top: 14px solid #faeaa9;
}

.merit01 {
  padding: 0px 6px 0px 6px;
  border-radius: 5px;
  background: #cdb827;
  font-size: 20px;
  color: #fff;
  margin: 0 0 8px;
  display: inline-block;
}

.merit02 {
  padding: 0px 6px 0px 6px;
  border-radius: 5px;
  margin: 0 0 8px;
  background: #6a91c4;
  font-size: 20px;
  color: #fff;
  display: inline-block;
}

.text_box {
  float: right;
  width: 62%;
}

.bg_box {
  background: #fffbd9;
  padding: 2em !important;
  box-sizing: border-box;
  border-radius: 10px;
}

.border_box {
  padding: 2em;
  border: 2px solid #ffee5f;
  box-sizing: border-box;
}

.text_01 {
  color: #cdb827;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.6 !important;
  padding: 0;
  text-align: center;
}

.link_btn a {
  line-height: 1.4;
  display: block;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  color: #fff;
  width: 100%;
  margin: 2em auto 1em;
  font-size: 16px;
  max-width: 230px;
  transition: all 0.5s ease 0s;
  text-decoration: none;
  background: #569dd2;
  padding: 15px 50px;
  border-radius: 30px;
}

.link_btn a::before {
  border-radius: 50%;
  background: #fff;
  content: "";
  width: 12px;
  height: 12px;
  margin-top: -5px;
  position: absolute;
  right: 15px;
  top: 50%;
  z-index: 0;
}

.link_btn a::after {
  border-right: 5px solid #60bfce;
  border-bottom: 5px solid transparent;
  content: "";
  margin-top: -2px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  z-index: 1;
}

.link_btn a:hover {
  opacity: 0.6;
  color: #fff;
}

/*--------------------------------------
	table01
--------------------------------------*/
table.table01,
table .table01 {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #ccc;
  margin: 0 0 15px;
}

.table01 th,
.table01 td {
  padding: 0.5em;
  text-align: left;
  vertical-align: middle;
}

.table01 thead th {
  text-align: center;
  font-weight: bold !important;
  background: #ffee5f;
}

.table01 tbody th {
  background: #e9faff;
  width: 30%;
  text-align: left !important;
}

.center .table01 td {
  text-align: center !important;
}

.table01 th,
.table01 td {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.table01.price th {
  width: 75%;
}

table.table02 {
  border-collapse: collapse;
  background: none;
  width: 100%;
  margin: 0 auto 2em;
}

table.table02 th,
table.table02 td {
  border-bottom: solid 1px #d8cec1;
  text-align: left;
  box-sizing: border-box;
  line-height: 1.4;
  padding: 2% 1%;
}

table.table02 th {
  padding: 2% 1% 2%;
  width: 25%;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .table01 th,
  .table01 td {
    padding: 0.5em;
  }
}
.t01_wrap tbody th {
  background: #fffbe4;
}
.t02_wrap tbody th {
  background: #fffbe4;
}


/* =====================================
===================================== */
.slick-dots {
  bottom: -65px !important;
}

.grn {
  color: #1f92e2 !important;
}

.text-large {
  font-size: 20px;
}

.part.center {
  display: block;
}

.center1 {
  text-align: center !important;
}

.center2 {
  text-align: center;
}

@media (max-width: 768px) {
  .sp-center {
    text-align: center;
  }
  .part.sp-center {
    display: block;
  }
  .center2 {
    text-align: left;
  }
}
#bread span:hover {
  text-decoration: underline;
}

.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

form .wrap {
  border-bottom: none;
  padding-top: 0;
  padding-bottom: 0;
}

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

.wf_form_text {
  box-sizing: border-box;
}

.top_img .columns,
.top_img .column {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.mainimage {
  position: relative;
}

@media screen and (max-width: 1500px) {
  table.table02 th {
    padding: 2%;
  }
  .mainimage::after {
    width: 35%;
    left: 20%;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  #nav li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .mainimage::after {
    width: 50%;
    top: 0;
    z-index: 1;
    right: 0;
    left: 0;
  }
  .top_img .columns,
  .top_img .column {
    display: inline-block;
  }
  .top_bn a img {
    display: block;
    margin: auto;
  }
  .link_btn a {
    font-size: 14px;
  }
  .youtube_btn {
    margin-bottom: 20px !important;
    display: block;
  }
  .youtube_btn img {
    width: 100%;
  }
  .columns {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .under .columns p,
  .under .columns ul {
    text-align: left;
  }
  #mailform .column {
    padding: 0px;
    text-align: left;
  }
  .submenu_ul {
    top: auto !important;
  }
  ul.ul02.float_ul01 li {
    box-sizing: border-box;
    float: none;
    margin: 0;
    padding: 0 0 5px 14px;
    position: relative;
    width: 100%;
  }
  .sec01 .link_btn a {
    margin: 2em auto 2em;
  }
  .sec05 .link_btn a {
    margin: 2em auto 2em;
  }
}
.leadtext {
  font-size: 22px;
  font-weight: bold;
  color: #b92725;
  letter-spacing: 0.1em;
  text-align: center;
}

.t01_wrap.w17 tbody th {
  width: 17%;
}

@media (max-width: 480px) {
  .t01_wrap table {
    font-size: 100%;
  }
}
.t01_wrap.wtdr tbody th {
  width: 100%;
}

@media (max-width: 768px) {
  .wf_blog_ul .wf_blog_li_title {
    text-align: left;
  }
  table.table02 th {
    width: 30%;
  }
  .t01_wrap.w17 tbody th {
    width: 25%;
  }
}
.t02_wrap.w17 tbody th {
  width: 17%;
}

@media (max-width: 480px) {
  .t02_wrap table {
    font-size: 100%;
  }
}
.t02_wrap.wtdr tbody th {
  width: 100%;
}

@media (max-width: 768px) {
  .wf_blog_ul .wf_blog_li_title {
    text-align: left;
  }
  table.table02 th {
    width: 30%;
  }
  .t02_wrap.w17 tbody th {
    width: 25%;
  }
}
/* =====================================
=================追加分================ */
.t01_wrap tbody th {
  background: rgba(5, 173, 105, 0.1);
}
.t02_wrap tbody th {
  background: rgba(5, 173, 105, 0.1);
}
.fs10 {
  font-size: 10px;
  padding: 10%;
}

.fs11 {
  font-size: 11px;
  padding: 11%;
}

.fs12 {
  font-size: 12px;
  padding: 12%;
}

.fs13 {
  font-size: 13px;
  padding: 13%;
}

.fs14 {
  font-size: 14px;
  padding: 14%;
}

.fs15 {
  font-size: 15px;
  padding: 15%;
}

.fs16 {
  font-size: 16px;
  padding: 16%;
}

.fs17 {
  font-size: 17px;
  padding: 17%;
}

.fs18 {
  font-size: 18px;
  padding: 18%;
}

.fs19 {
  font-size: 19px;
  padding: 19%;
}

.fs20 {
  font-size: 20px;
  padding: 20%;
}

.fs21 {
  font-size: 21px;
  padding: 21%;
}

.fs22 {
  font-size: 22px;
  padding: 22%;
}

.fs23 {
  font-size: 23px;
  padding: 23%;
}

.fs24 {
  font-size: 24px;
  padding: 24%;
}

.fs25 {
  font-size: 25px;
  padding: 25%;
}

.fs26 {
  font-size: 26px;
  padding: 26%;
}

.fs27 {
  font-size: 27px;
  padding: 27%;
}

.fs28 {
  font-size: 28px;
  padding: 28%;
}

.fs29 {
  font-size: 29px;
  padding: 29%;
}

.fs30 {
  font-size: 30px;
  padding: 30%;
}

.fs31 {
  font-size: 31px;
  padding: 31%;
}

.fs32 {
  font-size: 32px;
  padding: 32%;
}

.fs33 {
  font-size: 33px;
  padding: 33%;
}

.fs34 {
  font-size: 34px;
  padding: 34%;
}

.fs35 {
  font-size: 35px;
  padding: 35%;
}

.fs36 {
  font-size: 36px;
  padding: 36%;
}

.fs37 {
  font-size: 37px;
  padding: 37%;
}

.fs38 {
  font-size: 38px;
  padding: 38%;
}

.fs39 {
  font-size: 39px;
  padding: 39%;
}

.fs40 {
  font-size: 40px;
  padding: 40%;
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.sp_mt0 {
  margin-top: 0;
}

.sp_mb0 {
  margin-bottom: 0;
}

.mt1 {
  margin-top: 10px !important;
}

.mb1 {
  margin-bottom: 10px !important;
}

.sp_mt1 {
  margin-top: 0;
}

.sp_mb1 {
  margin-bottom: 0;
}

.mt2 {
  margin-top: 20px !important;
}

.mb2 {
  margin-bottom: 20px !important;
}

.sp_mt2 {
  margin-top: 0;
}

.sp_mb2 {
  margin-bottom: 0;
}

.mt3 {
  margin-top: 30px !important;
}

.mb3 {
  margin-bottom: 30px !important;
}

.sp_mt3 {
  margin-top: 0;
}

.sp_mb3 {
  margin-bottom: 0;
}

.mt4 {
  margin-top: 40px !important;
}

.mb4 {
  margin-bottom: 40px !important;
}

.sp_mt4 {
  margin-top: 0;
}

.sp_mb4 {
  margin-bottom: 0;
}

.mt5 {
  margin-top: 50px !important;
}

.mb5 {
  margin-bottom: 50px !important;
}

.sp_mt5 {
  margin-top: 0;
}

.sp_mb5 {
  margin-bottom: 0;
}

@media (max-width: 769px) {
  .sp_mt1 {
    margin-top: 10px !important;
  }
  .sp_mb1 {
    margin-bottom: 10px !important;
  }
  .sp_mt2 {
    margin-top: 20px !important;
  }
  .sp_mb2 {
    margin-bottom: 20px !important;
  }
  .sp_mt3 {
    margin-top: 30px !important;
  }
  .sp_mb3 {
    margin-bottom: 30px !important;
  }
  .sp_mt4 {
    margin-top: 40px !important;
  }
  .sp_mb4 {
    margin-bottom: 40px !important;
  }
  .sp_mt5 {
    margin-top: 50px !important;
  }
  .sp_mb5 {
    margin-bottom: 50px !important;
  }
}
.d-flex {
  display: flex;
}

.reverse {
  flex-direction: row-reverse;
}

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

.justify-content-center {
  justify-content: center;
}

/*トップと下層で表示を変更*/
.top .top_only {
  display: block !important;
}

.top .under_only {
  display: none !important;
}

.under .top_only {
  display: none !important;
}

.under .under_only {
  display: block !important;
}

/*sp,tab,pcの表示切替*/
@media (max-width: 768px) {
  .tablet-only {
    display: none !important;
  }
}
@media (min-width: 1001px) {
  .tablet-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .tablet-hide {
    display: none !important;
  }
}
/*テーブルの各要素幅をautoに設定（tbodyの上の階層に.autowidを追記）*/
.autowid tbody th {
  width: auto !important;
}

/*テーブルが800px以下の時にスクロールバーを表示（画面外にはみ出そうなtableの上の階層に.autoscrollを追記）*/
.responsive-scroll {
  overflow: auto;
}

.responsive-scroll table {
  min-width: 800px;
}

/*.justsizeimgのクラスを付けたコードの下にある写真を、実際の画像サイズで表示、中央に寄せる*/
.justsizeimg img {
  width: auto !important;
  display: block;
  margin: auto;
}

/*スマホ表示時のみ電話番号リンクをアクティブ*/
@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  border-color: #e33c17 !important;
  background-color: #e33c17 !important;
}

/*ヘッダー固定時のアンカーリンク調整*/
@media (max-width: 960px) {
  .under #a02,
  .under #a03,
  .under #a04,
  .under #a05,
  .under #a06,
  .under #a07,
  .under #a08,
  .under #a09,
  .under #a10,
  .under #a11,
  .under #a12,
  .under #a13,
  .under #a14,
  .under #a15,
  .under #a16,
  .under #a17,
  .under #a18,
  .under #a19,
  .under #a20,
  .under #a21,
  .under #a22,
  .under #a23,
  .under #a24,
  .under #a25,
  .under #a26,
  .under #a27,
  .under #a28,
  .under #a29,
  .under #a30,
  .under #a31 {
    margin-top: -70px;
    padding-top: 70px;
  }
}
.text-center {
  text-align: center;
}

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

@media (max-width: 769px) {
  .pc-text-center {
    text-align: left;
  }
}
.color_pri {
  color: #e33c17;
}

/*slide幅*/
.carousel > div {
  max-width: 100%;
}

.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}

.accordion-area li {
  margin: 10px 0;
}

/*.accordion-area section {
  border: 1px solid #ccc;
  }*/
/*アコーディオンタイトル*/
.accordion-area .title {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-weight: normal;
  padding: 1% 3% 1% 50px;
  transition: all 0.5s ease;
  border-bottom: none;
  font-size: 22px;
}

@media (max-width: 768px) {
  .accordion-area .title {
    font-size: 20px;
  }
}
/*アイコンの＋と×*/
.accordion-area .title::before,
.accordion-area .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #4b4841;
  transition: all 0.5s ease;
}

.accordion-area .title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}

.accordion-area .title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
  margin: 0;
}

/*　closeというクラスがついたら形状変化　*/
.accordion-area .title.close::before {
  transform: rotate(45deg);
}

.accordion-area .title.close::after {
  transform: rotate(135deg);
}

/*アコーディオンで現れるエリア*/
.accordion-area .box02 {
  display: block;
  /*管理画面は表示*/
  /*background: #f3f3f3;*/
  border-left: 2px solid #4b4841;
  margin: 0 3% 3% 3%;
  padding: 3%;
}

.accordion-area .box {
  display: none;
  /*はじめは非表示*/
  /*background: #f3f3f3;*/
  border-left: 2px solid #4b4841;
  margin: 0 3% 3% 3%;
  padding: 3%;
}

body.page_edit .accordion-area .box {
  display: block;
}

/*ボタンデザイン*/
.btn_wrap .wf_btn_part a {
  background: rgb(132, 128, 119);
  color: white;
  font-size: 14px;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 100%;
  letter-spacing: normal;
  line-height: 40px;
  background-color: transparent;
  color: #333;
  border: 1px solid #666;
  padding: 0 30px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0;
  cursor: pointer;
}

.btn_wrap .wf_btn_part a:after {
  display: none;
}

.btn_wrap .wf_btn_part a:hover {
  opacity: 0.7 !important;
}

.btn_wrap .wf_btn_part a:hover::after {
  right: 12px;
  transition: 0.2s;
}

/*pagetopボタン*/
.pagetop {
  z-index: 10;
  position: fixed;
  right: 16px;
  bottom: 10px;
  cursor: pointer;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline fill='none' stroke='%23000' stroke-width='1.03' points='4 13 10 7 16 13' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  color: #999;
}

@media (max-width: 769px) {
  .pagetop {
    display: none !important;
  }
}
.pagetop:before {
  display: none;
}

.pagetop:hover {
  text-decoration: none;
}

/*submenuが枠外に出てしまう場合（枠外に出るメニューのIDを更新）*/
.nav05 .submenu_ul {
  right: 0%;
  left: auto;
}

/*ブログ一覧のカテゴリ表示*/
/*各タイトルパーツ調整*/
/*タイトルパーツデザイン*/
h2.top_title {
  text-align: center;
  font-family: "EB Garamond", serif;
  font-size: 27.2px;
  color: #333;
}

h3.top_title {
  text-align: center;
  font-family: "EB Garamond", serif;
  font-size: 27.2px;
  color: #333;
}

.under h2,
.under h3,
.under h4,
.under h5,
.under h6 {
  font-family: "EB Garamond", serif;
  line-height: 1.4;
color: #333;
font-weight: normal !important;
}

.under .h2_title_wrap,
.blog_body .h3_title_wrap {
  position: relative;
  background: #f8f8f8;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog_body .h3_title_wrap h3,
.under .h2_title_wrap h2 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding: 30px 0;
  margin: 0;
}

@media (max-width: 768px) {
  .blog_body .h3_title_wrap h3,
  .under .h2_title_wrap h2 {
    font-size: 30px;
    padding: 25px 0;
  }
}
.under .h3_title_wrap .inner {
  padding-block: 0;
}

.under h3 {
  margin: 40px 0 20px;
  font-size: 27px;
  text-align: center;
}

@media (max-width: 768px) {
  .under h3 {
    font-size: 25px;
    margin: 40px 0 20px;
  }
}
.under .h4_title_wrap .inner {
  padding-block: 0;
}

.under h4 {
  margin: 30px 0 20px;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .under h4 {
    font-size: 20px;
    margin: 20px 0 10px;
  }
}

.under .h5_title_wrap .inner {
  padding-block: 0;
}

.under h5 {
  margin-block: 15px 0;
  font-size: 18px;
}

@media (max-width: 768px) {
  .under h5 {
    font-size: 18px;
  }
}

.blog_body h2,
.blog_body h3,
.blog_body h4,
.blog_body h5,
.blog_body h6 {
  font-family: "EB Garamond", serif;
}

.blog_body .h3_title_wrap::before,
.blog_body .h3_title_wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 30%;
  height: 100%;
}

.blog_body .h3_title_wrap::before {
  left: 0;
  max-width: 506px;
  background: url("/images/sp_h2_bg_l.png") no-repeat right/cover;
}

@media (min-width: 769px) {
  .blog_body .h3_title_wrap::before {
    background: url("/images/h2_bg_l.png") no-repeat right/cover;
  }
}
.blog_body .h3_title_wrap::after {
  right: 0;
  max-width: 496px;
  background: url("/images/sp_h2_bg_r.png") no-repeat left/cover;
}

@media (min-width: 769px) {
  .blog_body .h3_title_wrap::after {
    background: url("/images/h2_bg_r.png") no-repeat left/cover;
  }
}
.blog_body .h3_title_wrap .inner {
  position: relative;
  z-index: 1;
  padding-block: 20px;
}

@media (min-width: 769px) {
  .blog_body .h3_title_wrap .inner {
    padding-block: 40px;
  }
}
.blog_body .h3_title_wrap h3 {
  margin-block: 0;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 769px) {
  .blog_body .h3_title_wrap h3 {
    font-size: 36px;
  }
}
.blog_body .h4_title_wrap .inner {
  padding-block: 0;
}

.blog_body h4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 40px 0;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 769px) {
  .blog_body h4 {
    margin-block: 80px 0;
    font-size: 30px;
  }
}
.blog_body h4::before {
  content: "";
  display: block;
  width: 38px;
  height: auto;
  aspect-ratio: 1/1;
  background: url("/images/h2_icon.png") no-repeat center/contain;
}

.blog_body .h5_title_wrap .inner {
  padding-block: 0;
}

.blog_body h5 {
  display: flex;
  -moz-column-gap: 0.3em;
  column-gap: 0.3em;
  margin-block: 20px 0;
  border-bottom: 3px dotted #f8b300;
  font-size: 20px;
  font-weight: bold;
  line-height: 2.0454545455;
}

@media (min-width: 769px) {
  .blog_body h5 {
    margin-block: 40px 0;
    font-size: 22px;
  }
}
.blog_body h5::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 45px;
  background: url("/images/h3_icon.png") no-repeat center/contain;
}

.blog_body .h6_title_wrap .inner {
  padding-block: 0;
}

.blog_body h6 {
  display: flex;
  -moz-column-gap: 0.3em;
  column-gap: 0.3em;
  margin-block: 20px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}

@media (min-width: 769px) {
  .blog_body h6 {
    margin-block: 40px 0;
    font-size: 20px;
  }
}
.blog_body h6::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 14px;
  height: 40px;
  background: url("/images/h5_icon.png") no-repeat center/contain;
}

.borderbox .h2_title_wrap:first-child h2,
.borderbox .h3_title_wrap:first-child h3,
.borderbox .h4_title_wrap:first-child h4,
.borderbox .h5_title_wrap:first-child h5,
.borderbox .h6_title_wrap:first-child h6 {
  margin-top: 0;
}

ul.ul02 {
  margin: 0;
  padding: 0 10px;
  box-sizing: border-box;
}

.under .wrap:last-child {
  margin-bottom: 100px;
}

@media (max-width: 769px) {
  .under .wrap:last-child {
    margin-bottom: 50px;
  }
}
.textstrong {
  font-weight: bold;
}

.bg01 {
  padding: 40px !important;
  box-sizing: border-box;
  background: #f8f9ed;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .bg01 {
    padding: 30px !important;
  }
}
#content,
#upper_footer {
  overflow: hidden;
}

.under .column {
  margin-bottom: 1em;
}

.ul02 .column {
  margin-bottom: 0em;
}

.under li.column {
  margin-bottom: 0;
}

#header {
  position: relative;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

#header .inner {

  display: flex;
  flex-direction: column;
  height: 100%;
  padding: unset;
  align-items: center;
}

#header .hdr_info_wrap .sp2_login a {
  color: #999;
  font-size: 14px;
}
#header .hdr_info_wrap .sp2_login a:hover {
  text-decoration: none;
  color: #444;
}

#header .hdr_top {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  padding: 6px 0;
}

#header h1 {
  width: 270px;
  max-width: 36%;
  float: none;
  margin: 0;
  padding: 0 15px;
}

#header h1 img,
#upper_footer img {
  max-width: 100%;
  display: block;
}

#header .hdr_info_list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 960px) {
  #header .hdr_info_list {
    gap: 30px;
    margin-right: 10px;
  }
}
#menu {
  display: flex;
  justify-content: center;
}

#menu #menu-inner {
  max-width: 100%;
}

#menu-btn {
  display: none;
}

#menu-list > li {
  position: relative;
  transition: all 0.2s;
}

#menu-list > li:hover {
  cursor: pointer;
}

#menu-list > li > a {
  display: block;
  padding: 0 15px;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.05em;
}

#menu-list > li > a:hover {
  color: #333;
}

#menu-list > li > a > .blogicon-chevron-down {
  margin-right: 5px;
}

#menu-list > li > ul.menu-children {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding-left: 0;
  list-style-type: none;
  width: 100%;
  box-sizing: border-box;
}

.hdr_info_list.pc2 > li > ul.menu-children {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding-left: 0;
  list-style-type: none;
  right: 0;
  left: auto;
  background: #fff;
  padding: 25px;
  width: 200px;
  font-size: 13px;
}

@media (min-width: 769px) {
  #menu-list > li > ul.menu-children {
    width: -moz-fit-content;
    width: fit-content;
  }
}
#menu-list > li:hover > ul.menu-children {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s, visibility 0.2s;
  box-sizing: border-box;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

#menu-list > li > ul.menu-children .btn_wrap .wf_btn_part a {
  margin-top: 10px;
  color: #fff;
  background: #848077;
  padding-left: 5px;
  line-height: 48px;
  border: none;
}
@media (min-width: 961px) {
  #menu-list > li > ul.menu-children .btn_wrap .wf_btn_part a {
    width: 100%;
    text-align: left;
  }
}

#menu-list > li > ul.menu_list .btn_wrap .wf_btn_part a {
  background: #ef4000;
  width: 100%;
}
#menu-list > li > ul.menu_list .btn_wrap .wf_btn_part a:hover {
  opacity: 1 !important;
  background: #ff723f;
}

.hdr_info_list.pc2 .menu-has-child {
  position: relative;
}

.hdr_info_list.pc2 .menu-has-child a:hover {
  text-decoration: none;
}

.hdr_info_list.pc2 .menu-has-child:hover > ul.menu-children {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s, visibility 0.2s;
  box-sizing: border-box;
}

#menu-list > li > ul.menu-children > li {
  text-align: center;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}

#menu-list > li > ul.menu-children > li > a {
  display: block;
  line-height: normal;
  text-decoration: none;
  text-align: left;
  padding: 4px;
  border-bottom: 1px solid #fff;
  color: #999;
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;
  display: block;
}

#menu-list > li > ul.menu-children > li > a span {
  margin-right: 5px;
}

#menu-list > li > ul.menu-children > li > a:hover {
  color: #666;
  transition: all 0.2s;
  opacity: 1 !important;
}

@media (min-width: 961px) {
  .sp2 {
    display: none !important;
  }
  #menu-list {
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: stretch;
  }
  #menu-list > li {
    display: flex;
    justify-content: center;
    flex: auto;
    /*   width: 100%; */
    box-sizing: border-box;
  }
  #menu-list > li > a {
    display: flex;
    justify-content: end;
    gap: 15px;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 0 15px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #999;
    line-height: 2.4;
    letter-spacing: normal;
  }
  #menu-list > li:nth-child(5) > a,
  #menu-list > li:nth-child(8) > a {
    gap: 8px;
  }
  #menu-list > li > ul.menu-children {
    top: 100%;
    z-index: 1;
    padding: 25px;
    background: #fff;
  }
  #menu-list > li:first-child > ul.menu-children {
    width: 400px;
  }
  #menu-list > li:last-child > ul.menu-children {
    width: 200px;
  }
}
@media screen and (max-width: 960px) {
  .pc2 {
    display: none !important;
  }
  #content {
    margin-top: 75px;
  }
  #header {
    background: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    box-sizing: border-box;
    z-index: 5;
  }
  #header .hdr_top {
    height: 100%;
    padding: 0;
    display: block;
    position: absolute;
    right: 10px;
  }
  #header h1 {
    max-width: 50%;
    width: 185px;
  }
  #header .hdr_info_list a {
    display: block;
  }
  #header .hdr_info_list img {
    width: 35px;
    display: block;
  }
  #header .hdr_info_list .sp img {
    width: 35px;
  }
  nav:not(.wf_paging) {
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 100%;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.3s;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .open nav {
    left: 0;
    opacity: 1;
    visibility: visible;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  .scroll-box::-webkit-scrollbar {
    display: none;
  }
  .toggle {
    display: block;
    width: 35px;
    height: 40px;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 3;
    position: relative;
  }
  .toggle span {
    position: absolute;
    left: 0;
    width: 35px;
    height: 4px;
    background-color: #a5cc05;
    border-radius: 7px;
    transition: all 0.3s;
  }
  .toggle span:nth-child(1) {
    top: 4px;
  }
  .toggle span:nth-child(2) {
    top: 18px;
  }
  .toggle span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle span {
    background-color: #fff;
  }
  .open .toggle span:nth-child(1) {
    transform: translateY(14px) rotate(-45deg);
  }
  .open .toggle span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle span:nth-child(3) {
    transform: translateY(-14px) rotate(45deg);
  }
  .toggle .close_btn {
    display: none !important;
  }
  .open .menu_logo img {
    width: 200px;
  }
  .open .toggle .close_btn {
    display: block !important;
    width: 14px !important;
  }
  .open .toggle .menu_btn {
    display: none !important;
  }
  .toggle #navbk {
    display: none;
    transition: all 0.3s;
  }
  .open #navbk {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 2;
    cursor: pointer;
  }
  .language_Box ul {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 20px 0;
  }
  #menu-list .btn01 .btn_wrap .wf_btn_part a {
    max-width: 360px;
    margin-left: 0;
    margin: 20px 0;
  }
  #menu {
    padding-bottom: 0;
  }
  #menu-list > li {
    width: 100%;
  }
  #menu-list > li:hover {
    background: none;
  }
  #menu-list > li > a {
    height: 100%;
    padding: 0px;
    font-size: 100%;
    color: #000;
    border-bottom: 1px solid #767676;
    padding: 10px;
    background: #fff;
  }
  #menu-list > li > a img {
    display: none;
  }
  #menu-list > li > ul.menu-children {
    display: block !important;
    visibility: visible;
    opacity: 1;
    width: 100%;
    position: relative;
    box-shadow: none;
  }
  #menu-list > li > ul.menu-children > li {
    width: 100%;
    border-bottom: none;
  }
  #menu-list > li > ul.menu-children > li > a {
    padding-left: 20px;
    background: #fff;
    color: #444;
  }
}
@media (max-width: 960px) {
  #menu-list {
    display: flex;
    flex-direction: column;
  }
  #menu-list > li:last-child {
  box-sizing: border-box;
  }
  #menu-list > li:last-child ul.menu-children > li > a {
    text-align: center;
    line-height: 38px;
  }
  #menu-list > li:last-child .btn_wrap .wf_btn_part a {
    background: #ef4000;
    border: none;
    color: #fff;
  }
  #menu-list > li:first-child > ul.menu-children > li:nth-child(n+2) {
    margin-top: 6px;
  }
  #menu-list > li:first-child > ul.menu-children > li > a {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  #header {
    height: 75px;
    padding: 5px 0;
  }
}
.header_inner_box {
  height: 100%;
}

@media (max-width: 960px) {
  #header .header_inner_box .inner .hdr_top h1 {
    max-width: 185px;
  }
}
@media (min-width: 961px) {
  #header .header_inner_box .inner .hdr_top .hdr_info_wrap .hdr_info_list {
    align-items: center;
    gap: 20px;
    margin-right: 20px;
  }
}
#header .header_inner_box .inner .hdr_top .hdr_info_wrap .hdr_info_list li:last-child a:hover SVG {
  color: #000;
  opacity: 1;
  cursor: pointer;
}

#header .header_inner_box .inner .hdr_top .hdr_info_wrap .hdr_info_list li:last-child a:hover::after {
  right: 12px;
  transition: 0.2s;
}

.mainmovie {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}

.mainmovie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainimage {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.mainimage iframe,
.mainimage video {
  position: absolute;
  width: 101%;
  height: 141%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

@media (max-width: 768px) {
  .mainimage video {
    width: 202%;
    height: 100%;
  }
}
.tb_br {
  display: none;
}

.mainimage {
  position: relative;
}

.mainimage .column {
  padding: 0;
}

.maincopy_wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  top: auto;
  width: 100%;
  height: auto;
  margin: 0 !important;
}

.maincopy_wave img {
  display: block;
  width: 100%;
}

.sec_loopslide {
  overflow: hidden;
}

.sec_loopslide .slider_wrap {
  animation: loopslider 150s linear infinite;
  display: flex;
  width: 7360px;
  height: 100%;
  margin: 0;
}

@media (max-width: 768px) {
  .sec_loopslide .slider_wrap {
    width: 3200px;
  }
}
.sec_loopslide .slider_wrap .column {
  padding: 0;
  margin: 0;
}

.sec_loopslide .slider_wrap .column:nth-child(2n) {
  margin-top: 50px;
}

@media (max-width: 768px) {
  .sec_loopslide .slider_wrap .column:nth-child(2n) {
    margin-top: 30px;
  }
}
.sec_loopslide .slider_wrap .column > span {
  margin: 0;
  display: block;
  padding: 0 10px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .sec_loopslide .slider_wrap .column > span {
    padding: 0 5px;
  }
}
@keyframes loopslider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3680px);
  }
}
@media (max-width: 768px) {
  @keyframes loopslider {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-1600px);
    }
  }
}
body.top #content .sec_parent {
  overflow: hidden;
  position: relative;
  background-color: #fff6b2;
}

body.top #content .sec_parent::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/146;
  background: url("/images/bg_img003_1.jpg") no-repeat top/cover;
}

body.top #content .sec_parent .inner {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}

@media (min-width: 769px) {
  body.top #content .sec_parent .inner {
    padding-top: 50px;
  }
}
body.top #content .sec_parent .inner::before,
body.top #content .sec_parent .inner::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  z-index: -1;
}

body.top #content .sec_parent .inner::before {
  left: 20px;
  width: auto;
  height: 21.3333333333vw;
  aspect-ratio: 150/119;
  background: url("/images/bg_img003_2.png") no-repeat center/contain;
}

@media (min-width: 769px) {
  body.top #content .sec_parent .inner::before {
    height: 119px;
  }
}
@media (min-width: 1400px) {
  body.top #content .sec_parent .inner::before {
    left: unset;
    right: calc(100% + 20px);
  }
}
body.top #content .sec_parent .inner::after {
  right: 20px;
  width: auto;
  height: 24vw;
  aspect-ratio: 143/130;
  background: url("/images/bg_img03_3.png") no-repeat center/contain;
}

@media (min-width: 769px) {
  body.top #content .sec_parent .inner::after {
    height: 130px;
  }
}
@media (min-width: 1400px) {
  body.top #content .sec_parent .inner::after {
    right: unset;
    left: calc(100% + 30px);
  }
}
body.top #content .sec_parent .ttlbox {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  body.top #content .sec_parent .ttlbox {
    display: block;
  }
}
body.top #content .sec_parent .ttlbox h2 {
  font-size: clamp(24px, 3.1vw, 50px);
}

@media (min-width: 769px) {
  body.top #content .sec_parent .ttlbox h2 {
    flex-shrink: 0;
    padding: 0;
    padding-block: 30px;
    padding-right: 80px;
    margin: 0;
    margin-right: 80px;
    border-right: 1px solid #f8b300;
  }
  body.top #content .sec_parent .columns .column {
    padding: 9.5px;
  }
}
@media (max-width: 768px) {
  body.top #content .sec_parent .columns .column:not(:last-child) {
    margin-bottom: 20px;
  }
}
#upper_footer .box02 {
  padding-top: 40px;
}

#upper_footer {
  padding: 40px 0;
  background:#efefef;
}

#upper_footer .column01 img {
  margin-left: 0;
}

#upper_footer .tel_text {
  margin-top: 20px;
}

@media (max-width: 768px) {
  #upper_footer .tel_text {
    margin-top: 10px;
  }
}
#upper_footer .column03 .bnrspace1 {
  margin-top: 45px;
}

#upper_footer .logospace {
  margin-bottom: 20px;
}

@media (min-width: 769px) {
  #upper_footer .logospace img {
    margin-left: 0;
  }
}
#upper_footer .footerttl {
  margin-bottom: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #14d1ad;
  font-weight: bold;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
}

#upper_footer .footerttl:after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-image: radial-gradient(#14d1ad 1px, transparent 1px);
  background-size: 10px 10px; /* 間隔の調整 */
  background-repeat: repeat-x;
  margin-top: 10px;
}

@media (max-width: 768px) {
  #upper_footer .footerttl {
    margin-inline: 0;
  }
}
#upper_footer .menu_title a {
  color: #e33c17;
  font-size: 15px;
  font-weight: bold;
  line-height: 2.2666666667;
}

@media (max-width: 768px) {
  #upper_footer .menu_title {
    margin: 0;
  }
}
#upper_footer .columns {
  box-sizing: border-box;
}

@media (min-width: 769px) {
  #upper_footer .columns .column:last-child {
    padding-right: 0;
width: 100%;
  }
}
#upper_footer .columns .column ul li:last-child {
  padding-bottom: 0;
}

#upper_footer .columns .column ul li a {
  position: relative;
  display: inline-block;
  color: #848077;
}

#upper_footer .columns .column .footer_nav li a:hover {
  opacity: 1;
  color: #0f6ecd;
}

#upper_footer .columns .column .footer_nav li:nth-child(n+2) {
  margin-top: 10px;
}

#upper_footer .columns .column .footer_menu_children li a {
  margin-left: 3px;
  margin-left: 10px;
}

#upper_footer .columns .column .footer_menu_children li a:before {
  border-radius: 0;
  height: 1px;
  top: 15px;
}

#upper_footer .columns .column:last-child .bnrspace1.column:not(:last-child) {
  margin-bottom: 10px;
}

#upper_footer .columns .column:last-child .bnrspace1.column:not(:last-child) img {
  vertical-align: middle;
}

.column.is-6, .column.is-6-tablet {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  width: auto;
 
  }
  .column.is-offset-6, .column.is-offset-6-tablet {
    margin-left: 50%;
  }



.copyright {
  background: #222;
  text-align: center;
  color: #fff;
  padding: 10px 0;
  letter-spacing: 0.01em;
  font-size: 10px;
  position: relative;
}

@media (max-width: 768px) {
  .copyright {
    padding-top: 10px;
  }
}
.copyright::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  aspect-ratio: 1920/63;
  bottom: auto;
  top: 0;
  left: 0;
  right: auto;
  margin: 0 auto;
  background: url(/images/f_bg.jpg) no-repeat center center/cover;
}

@media (max-width: 768px) {
  .copyright {
    padding-bottom: 12vw !important;
  }
}
.fixedfooter {
  position: fixed;
  bottom: 0;
  z-index: 5;
  width: 100%;
}
.fixedfooter ul {
  width: 100%;
}
.fixedfooter ul li {
  box-sizing: border-box;
}
.fixedfooter ul .fixedfooter02 {
  width: 20%;
}
.fixedfooter ul .fixedfooter01 {
  width: 80%;
}
.fixedfooter .fixedfooter01 a {
  background: #ef4000;
  line-height: 38px;
  color: #fff;
  display: block;
  text-align: center;
}
.fixedfooter .fixedfooter02 {
  background: #fff;
  width: 100%;
  height: 38px;
}
.fixedfooter .fixedfooter02 .arrow_imgBox {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 769px) {
  .fixedfooter {
    display: none;
  }
}
.fixedfooter ul {
  display: flex;
  justify-content: center;
}

@media (min-width: 769px) {
  .fixedfooter ul {
    display: block;
  }
}
.fixedfooter ul li img {
  width: 100%;
  height: auto;
}

.maxbtn.btn_wrap .wf_btn_part a {
  max-width: 100%;
  width: 100%;
}

.sec_text {
  letter-spacing: 0.08em;
  line-height: 2 !important;
}

.wf_blog_ul .wf_blog_li_date {
  font-weight: bold;
}

.wf_lic .wf_blog_li_date:before {
  text-align: center;
  min-width: 10em;
  display: inline-block;
  padding: 10px 15px;
  font-size: 12px;
  margin-right: 18px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  font-weight: bold;
  vertical-align: top;
  line-height: 1;
  transform: translateY(-4px);
  min-width: 106px;
  display: none;
}

@media (max-width: 768px) {
  .top .wf_lic .wf_blog_li_date:before {
    vertical-align: bottom;
  }
}
.wf_lic_ブログ .wf_blog_li_date:before {
  content: "ブログ";
  background: #dab88f;
  color: #fff;
  border: solid 2px #dab88f;
}

/*.wf_lic_各種大会 .wf_blog_li_date:before {
  content: "各種大会";
 background: #03479b;
  font-size: 14px;
  font-weight: bold;
   border-radius: 7px; 
  display: inline-block;
  padding: 0 13px;
  margin-left: 15px;
  color: white;
  vertical-align: top;
  min-width: 80px;
  text-align: center;
}*/

.wf_lic_各種大会 .wf_blog_li_date:after{
  content:"各種大会";
  ont-size: 14px;
  font-weight: bold;
   border-radius: 7px; 
  display: inline-block;
  padding: 0 13px;
  margin-left: 15px;
  color: #921111;
  vertical-align: top;
  min-width: 80px;
  text-align: center;
}

.wf_lic_要項 .wf_blog_li_date:after {
  content: "要項";
ont-size: 14px;
  font-weight: bold;
   border-radius: 7px; 
  display: inline-block;
  padding: 0 13px;
  margin-left: 15px;
  color: #715111;
  vertical-align: top;
  min-width: 80px;
  text-align: center;
}




.wf_lic_選手紹介 .wf_blog_li_date:after {
  content: "選手紹介";
ont-size: 14px;
  font-weight: bold;
   border-radius: 7px; 
  display: inline-block;
  padding: 0 13px;
  margin-left: 15px;
  color: #137015;
  vertical-align: top;
  min-width: 80px;
  text-align: center;
}

.wf_lic_審査会 .wf_blog_li_date:after {
  content: "審査会";
ont-size: 14px;
  font-weight: bold;
   border-radius: 7px; 
  display: inline-block;
  padding: 0 13px;
  margin-left: 15px;
  color: #133c70;
  vertical-align: top;
  min-width: 80px;
  text-align: center;
}

.wf_lic_講習会.wf_blog_li_date:after {
  content: "講習会";
ont-size: 14px;
  font-weight: bold;
   border-radius: 7px; 
  display: inline-block;
  padding: 0 13px;
  margin-left: 15px;
  color: #701354;
  vertical-align: top;
  min-width: 80px;
  text-align: center;
}


.wf_lic_通知.wf_blog_li_date:after {
  content: "通知";
ont-size: 14px;
  font-weight: bold;
   border-radius: 7px; 
  display: inline-block;
  padding: 0 13px;
  margin-left: 15px;
  color: #873694;
  vertical-align: top;
  min-width: 80px;
  text-align: center;
}

.wf_lic_事業計画.wf_blog_li_date:after {
  content: "事業計画";
ont-size: 14px;
  font-weight: bold;
   border-radius: 7px; 
  display: inline-block;
  padding: 0 13px;
  margin-left: 15px;
  color: #1a5f6d;
  vertical-align: top;
  min-width: 80px;
  text-align: center;
}

.wf_lic_稽古会.wf_blog_li_date:after {
  content: "稽古会";
ont-size: 14px;
  font-weight: bold;
   border-radius: 7px; 
  display: inline-block;
  padding: 0 13px;
  margin-left: 15px;
  color: #52956c;
  vertical-align: top;
  min-width: 80px;
  text-align: center;
}


.wf_lic_結果.wf_blog_li_date:after {
  content: "結果";
ont-size: 14px;
  font-weight: bold;
   border-radius: 7px; 
  display: inline-block;
  padding: 0 13px;
  margin-left: 15px;
  color: #877216;
  vertical-align: top;
  min-width: 80px;
  text-align: center;
}

.wf_lic_登録・申請.wf_blog_li_date:after {
  content: "登録・申請";
ont-size: 14px;
  font-weight: bold;
   border-radius: 7px; 
  display: inline-block;
  padding: 0 13px;
  margin-left: 15px;
  color: #874e16;
  vertical-align: top;
  min-width: 80px;
  text-align: center;
}

.blog_body .h3_title_wrap {
  margin-bottom: 40px;
}

.borderbox {
  padding: 30px 50px 30px !important;
  box-sizing: border-box;
  background: #fffdef;
  border: none;
  border-radius: 10px;
  margin-bottom: 20px !important;
  margin-top: 20px !important;
}

@media (max-width: 768px) {
  .borderbox {
    padding: 25px 20px 25px !important;
  }
}
.t01_wrap tbody th {
  background-color: #e9e9e9;
  text-align: center;
  font-weight: bold;
  width: 33%;
}
.t02_wrap tbody th {
  background-color: #fffdef;
  text-align: center;
  font-weight: bold;
  width: 17%;
}
.t01_wrap th,
.t01_wrap td {
  padding: 0.8em 1em;
}
.t02_wrap th,
.t02_wrap td {
  padding: 0.8em 1em;
}

#header .tel_link a {
  position: relative;
  padding-left: 37px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.03em;
}

#header .tel_link a::before {
  content: "";
  width: 28px;
  height: 28px;
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 0;
  right: auto;
  margin: auto;
  background: url(/images/tel.png) no-repeat center/contain;
}

.hdr_info_list.pc2 .address {
  letter-spacing: 0;
  line-height: 1;
}

.anker + .h3_title_wrap {
  margin-top: 0;
}

.t01_wrap thead th,
.t01_wrap thead td {
  background-color: #f7eada;
  color: #454545;
  font-weight: bold;
  text-align: center;
}
.t02_wrap thead th,
.t02_wrap thead td {
  background-color: #f7eada;
  color: #454545;
  font-weight: bold;
  text-align: center;
}

.t01_wrap tbody th.foot,
.t01_wrap tbody td.foot {
  font-weight: bold;
  background-color: #fffbd9;
}
.t02_wrap tbody th.foot,
.t02_wrap tbody td.foot {
  font-weight: bold;
  background-color: #fffbd9;
}

@media (max-width: 768px) {
  .table_scroll {
    overflow-x: scroll;
  }
  .table_scroll table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
  }
}
.under ul.btn_wrap .wf_btn_part a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: unset;
  height: 100%;
}

table.part thead tr th,
table.part thead tr td,
table.part tbody tr th,
table.part tbody tr td {
  font-size: 12px !important;
}

table.part thead tr th > *,
table.part thead tr td > *,
table.part tbody tr th > *,
table.part tbody tr td > * {
  font-size: 12px !important;
}

@media (min-width: 769px) {
  table.part thead tr th > *,
  table.part thead tr td > *,
  table.part tbody tr th > *,
  table.part tbody tr td > * {
    font-size: 16px !important;
  }
}
@media (min-width: 769px) {
  table.part thead tr th,
  table.part thead tr td,
  table.part tbody tr th,
  table.part tbody tr td {
    font-size: 16px !important;
  }
}
@media (min-width: 769px) {
  .mainimage img {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .fixedfooter ul {
    max-width: 80px;
  }
}
@media (max-width: 768px) {
  #upper_footer .logospace {
    max-width: 270px;
    margin: 0 auto 20px;
  }
  body.top #content h2 .bold {
    font-size: 24px;
  }
  .sec_parent .sec_text {
    text-align: center;
  }
}
.sec_contact .tel_link a::before {
  top: 7px;
}

@media (max-width: 960px) {
  #header .header_inner_box .inner .hdr_top .hdr_info_wrap .hdr_info_list li:first-child {
    margin-bottom: 0;
  }
}
.nowrap_table table th,
.nowrap_table table td {
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  text-align: center;
}

.under .olbox ol li {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  margin-left: 2em;
  padding-left: 3px;
}

.blog_body h3:before {
  display: none;
}

.hiddenlast {
  margin-bottom: 100px !important;
}

@media (max-width: 769px) {
  .hiddenlast {
    margin-bottom: 50px !important;
  }
}
.wide_btn.btn_wrap .wf_btn_part a {
  max-width: 350px;
}

.wf_lic_保護者専用ページ .wf_blog_li_date {
  display: none;
}

.mainImg a:hover {
  opacity: 1 !important;
}

.mainImg a img:hover {
  opacity: 1 !important;
}

.mainImg {
  position: relative;
}

.mainImg img {
  width: 100%;
}

.mainImg .slick-slider img {
  width: 100%;
}

.mainImg .copy {
  max-width: 238px;
  width: 12.3958333333vw;
  position: absolute;
  top: 2.0833333333vw;
  bottom: auto;
  left: 0;
  right: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .mainImg .copy {
    width: 33.0555555556vw;
    top: 20.9333333333vw;
  }
}
@media (max-width: 1100px) {
  #menu-list > li.pc_last-child > ul.menu-children {
    right: 0;
  }
}
.red_txt {
  color: #e74c3c;
}

.red_txt:visited {
  color: #e8695c;
}

@media (max-width: 768px) {
  .scroll {
    overflow-x: scroll;
  }
  .scroll table {
    width: 100%;
    white-space: nowrap;
  }
}
.childcare_hours_table table {
  white-space: nowrap;
}

.bg01 {
  background: #ffffe6;
}

.bg02 {
  background: #f0f9ff;
}

.bg03 {
  background: #ffe8e8;
}

.nowrap {
  white-space: nowrap;
}

.class_table th {
  width: auto !important;
}

.class_table tr td,
.class_table02 tr td {
  text-align: center !important;
}

.large_txt {
  font-size: 20px;
}

@media (max-width: 768px) {
  .large_txt {
    font-size: 17px;
  }
}
.t01_wrap .class_table {
  table-layout: fixed;
  border: 2px solid #9f9f9f;
}

.t01_wrap .class_table th,
.t01_wrap .class_table td {
  border-right: 2px solid #9f9f9f;
}

.t01_wrap .class_table tbody > tr:nth-child(2),
.t01_wrap .class_table thead tr {
  border-bottom: 2px solid #9f9f9f;
}

.t01_wrap .class_table thead tr th:first-child {
  width: 20% !important;
}
.t02_wrap .class_table {
  table-layout: fixed;
  border: 2px solid #9f9f9f;
}

.t02_wrap .class_table th,
.t02_wrap .class_table td {
  border-right: 2px solid #9f9f9f;
}

.t02_wrap .class_table tbody > tr:nth-child(2),
.t02_wrap .class_table thead tr {
  border-bottom: 2px solid #9f9f9f;
}

.t02_wrap .class_table thead tr th:first-child {
  width: 20% !important;
}
.empty {
  background-image: linear-gradient(to right top, transparent calc(50% - 0.5px), #999 50%, #999 calc(50% + 0.5px), transparent calc(50% + 1px)) !important;
}

.facility img {
  aspect-ratio: 1000/666;
  -o-object-fit: cover;
  object-fit: cover;
}

.guide_buttn .wf_btn_part a {
  max-width: 235px;
  letter-spacing: 0.1em;
}

.t01_wrap .guide_q4_table th {
  width: 20% !important;
}

.t01_wrap .fee_table th {
  width: 20% !important;
  white-space: nowrap;
}

.t01_wrap .life_table th {
  width: 25% !important;
  white-space: nowrap;
} 
.t02_wrap .guide_q4_table th {
  width: 20% !important;
}

.t02_wrap .fee_table th {
  width: 20% !important;
  white-space: nowrap;
}

.t02_wrap .life_table th {
  width: 25% !important;
  white-space: nowrap;
} 
.top_sec {
  padding: 70px 0;
}
@media (max-width: 768px) {
  .top_sec {
    padding: 40px 0;
  }
}

.sec01 {
  background: rgb(132, 128, 119);
  color: #fff;
  font-family: "EB Garamond", serif;
}
.sec01 .columns {
  align-items: center;
}
.sec01 h2 {
  font-size: 32px;
  text-align: center;
}
@media (min-width: 769px) {
  .sec01 .columns div.column {
    padding-left: 30px;
  }
}
.sec01 .columns div.column > div {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .sec01 {
    padding: 40px 0;
  }
}
.sec01.en_top_sec h2 {
  font-size: 20px;
}

.sec02 h2.top_title {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  text-align: left;
}
.sec02 .shadow_Box {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
}
.sec02 iframe {
  min-height: 480px;
}
@media (max-width: 768px) {
  .sec02 .shadow_Box {
    padding: 20px 20px 50px;
  }
  .sec02 .columns {
    flex-direction: column-reverse !important;
  }
  .sec02 iframe {
    width: 100%;
    min-height: 340px;
  }
  .sec02 .column div.sp {
    padding: 15px;
  }
}

.sec03 h2 {
  margin-bottom: 20px;
}
.sec03 .wf_blog_li_inner {
  display: flex;
  flex-direction: column;
}
.sec03 .wf_blog_li_date {
  padding-bottom: 0;
}
.sec03 .wf_blog_li_title {
  padding-left: 0;
  padding-top: 0;
}
.sec03 .btn_wrap .wf_btn_part a {
  margin-top: 20px;
}
.sec03 .btn_wrap .wf_btn_part a:hover {
  opacity: 1 !important;
  border: 1px solid #b2b2b2;
}

.sec_news {
  background: url(/images/bg_img001.jpg) no-repeat center center/cover;
  padding: clamp(50px, 9vw, 80px) 0 clamp(50px, 9vw, 40px);
  position: relative;
}

@media (min-width: 769px) {
  .sec_news .columns {
    justify-content: space-between;
  }
  .sec_news .column.is-3 {
    width: 21.2%;
  }
  .sec_news .column.is-9 {
    width: 72%;
  }
}
.sec_news:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  aspect-ratio: 1920/50;
  top: auto;
  bottom: -2px;
  left: 0;
  right: auto;
  margin: 0 auto;
  background: url(/images/wave001.png) no-repeat center center/cover;
}

.sec_news h2.top_title .h2_jp {
  font-size: clamp(25px, 2.5vw, 40px);
}

.sec_news h2.top_title:before {
  margin: 0 auto 8px;
}

.sec_news .columns {
  align-items: center;
}

@media (min-width: 769px) {
  .sec_news .inner.columns {
    -moz-column-gap: max(3.6458333333vw, 20px);
    column-gap: max(3.6458333333vw, 20px);
  }
  .sec_news .inner.columns .column {
    padding: unset;
  }
  .sec_news .inner.columns .column:first-child {
    flex: 0;
    flex-basis: 23%;
  }
  .sec_news .inner.columns .column:first-child .btn_wrap a {
    margin: unset;
  }
}
.sec_news .flex_cont {
  display: flex;
  gap: 5px;
  align-items: stretch;
  justify-content: center;
  width: 81%;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .sec_news .flex_cont {
    width: 100%;
  }
}
.sec_news .flex_cont li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  width: 100%;
  padding: 5px 0;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0;
  font-weight: bold;
  color: white;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}

.sec_news .flex_cont li.color001 {
  background: #dab88f;
}

.sec_news .flex_cont li.color002 {
  background: #ff9e9e;
}

.sec_news .flex_cont li.color003 {
  background: #a6cd12;
}

.sec_news .flex_cont li.color004 {
  background: #a47a4d;
}

.sec_news .news_content {
  padding: 15px 7%;
  background: #fff;
  border-radius: 20px;
  border: 3px solid #dab88f;
  box-sizing: border-box;
}

.sec_news .news_content .wf_lic:last-child {
  border-bottom: unset;
}

@media (max-width: 768px) {
  .sec_news .news_content {
    padding-inline: 20px;
    border-radius: 0 0 20px 20px;
  }
}
.sec_news .news_content .wf_lic:hover {
  background-color: #f8f8f8;
}

@media (min-width: 769px) {
  .sec_news .wf_blog_ul .wf_blog_li_date {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .sec_news .news_content .wf_blog_li_date {
    width: 100%;
    padding-inline: 0;
    padding-bottom: 2px;
  }
}
@media (max-width: 768px) {
  .sec_news .news_content .wf_blog_li_title {
    width: 100%;
    padding-inline: 0;
    padding-top: 2px;
  }
}
@media (max-width: 768px) {
  .sec_news .btn_wrap {
    margin-top: 30px;
  }
}
.sec04 {
  background: #848077;
}
.sec04 .wrapper01 {
  color: #fff;
  text-align: center;
}
.sec04 .wrapper01 h2 {
  font-size: 32px;
  color: #fff;
  display: flex;
  align-items: center;
}
.sec04 .wrapper01 h2:before, .sec04 .wrapper01 h2:after {
  flex: 1;
  content: "";
  display: block;
  height: 1px;
  background: #e5e5e5;
  margin: 0 10px;
}
.sec04 .wrapper01 h3 {
  font-size: 27px;
  font-family: "EB Garamond", serif;
  font-weight: bold;
  text-align: center;
  margin: 40px 20px;
}

.shadow_wrapper {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: relative;
}

.sec05,
.sec06 {
  padding: 20px;
  background: #848077;
}
.sec05 h3,
.sec06 h3 {
  font-size: 27px;
  font-family: "EB Garamond", serif;
  text-align: center;
  margin: 20px 0;
  color: #fff;
}
.sec05 .wh_txt,
.sec06 .wh_txt {
  color: #fff;
  text-align: center;
}
.sec05 .columns,
.sec06 .columns {
  margin-top: 20px;
}
.sec05 .bgBox,
.sec06 .bgBox {
  background: #666;
  color: #fff;
  text-align: center;
  padding-bottom: 3px;
}
.sec05 .wh_Box,
.sec06 .wh_Box {
  color: #666;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5px auto 0;
  padding: 0 10px;
  display: inline-block;
  font-family: "EB Garamond", serif;
}
.sec05 .text_wrapper,
.sec06 .text_wrapper {
  padding: 20px 20px 0;
}
.sec05 h4,
.sec06 h4 {
  font-size: 22.4px;
  font-family: "EB Garamond", serif;
}
.sec05 h4 .small_txt,
.sec06 h4 .small_txt {
  font-size: 20px;
}
@media (min-width: 769px) {
  .sec05 .column,
  .sec06 .column {
    padding: 0;
  }
  .sec05 .columns,
  .sec06 .columns {
    margin-left: 0;
    margin-right: 0;
    gap: 40px;
  }
}

.sec05 .hidden_Box_wrapper > div:first-child {
  color: #444;
  font-size: 19px;
  text-align: center;
  margin: 20px 0;
  font-family: "EB Garamond", serif;
}
.sec05 .hidden_Box_wrapper .imgBox {
  margin-top: 20px;
  display: block;
}
.sec05 .hidden_Box_wrapper h5 {
  font-size: 22.4px;
  margin-bottom: 20px;
  font-family: "EB Garamond", serif;
}
.sec05 .hidden_Box_wrapper .hidden_Box02 {
  margin-top: 40px;
}
.sec05 .hidden_Box_wrapper {
  padding-bottom: 20px;
  position: relative;
  cursor: pointer;
}
.sec05 .hidden_Box_wrapper::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-bottom: 14px solid #aaa;
  border-right: 14px solid #aaa;
  transform: rotate(45deg);
  top: auto;
  bottom: 9px;
  left: 0;
  right: 0;
  margin: auto;
}
.sec05 .hidden_Box_wrapper.open {
  padding-bottom: 40px;
}
.sec05 .hidden_Box_wrapper.open:after {
  transform: rotate(225deg);
  bottom: 1px;
}
.sec05 .text_wrapper {
  background: #fff;
}
.sec05 .text_wrapper:hover {
  background: rgba(255, 255, 255, 0.8);
}

body:not(.page_edit) .sec05 .hidden_Box_wrapper .hidden_Box {
  display: none;
}

.sec06 .bgBox {
  margin-bottom: 20px;
}
.sec06 .text_wrapper {
  padding-bottom: 20px;
}
.sec06 .wh_Box {
  font-size: 14px;
}
.sec06 .column {
  background: #fff;
}
.sec06 .column:hover {
  background: rgba(255, 255, 255, 0.8);
}
.sec06 .btn_wrap .wf_btn_part a {
  background: #ef4000;
  line-height: 53px;
  padding: 0 40px;
  border: none;
  color: #fff;
}
.sec06 .btn_wrap .wf_btn_part a:hover {
  opacity: 1 !important;
  background: #ff723f;
}
.sec06 .btn_wrap .wf_btn_part.btn01 a {
  max-width: 194px;
  margin-top: 20px;
}
.sec06 .btn_wrap .wf_btn_part.btn02 a {
  max-width: 236px;
  margin-top: 70px;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .sec06 .btn_wrap .wf_btn_part.btn02 a {
    margin-top: 40px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .sec06 .columns {
    gap: 30px;
    flex-wrap: wrap;
  }
  .sec06 .column {
    width: calc((100% - 30px) / 2);
    flex: initial;
  }
  .sec06 .btn_wrap .wf_btn_part.btn02 a {
    margin-top: 40px;
  }
}

.sec06.en_top_sec h4 .small_txt {
  font-size: 15px;
}
.sec06.en_top_sec h4 {
  font-size: 20px;
}

.sec07 {
  background: #848077;
}
.sec07 h2 {
  color: #fff;
}
.sec07 .bg_wrapper {
  background: #222;
  color: #fff;
  padding: 40px;
}
@media (max-width: 768px) {
  .sec07 .bg_wrapper {
    padding: 30px;
  }
}
.sec07 .bg_wrapper > div:not(:nth-of-type(3)) {
  text-align: center;
  margin-top: 20px;
}
.sec07 .columns {
  margin-top: 30px;
}
.sec07 .columns:last-child {
  margin-bottom: 0;
}
.sec07 .columns > div:last-child {
  background: #ddd;
  color: #444;
}
.sec07 .text_column {
  padding: 20px 20px 0 !important;
}
.sec07 .hidden_Box_wrapper {
  margin-top: 20px;
  padding-bottom: 20px;
  cursor: pointer;
}
@media (min-width: 769px) {
  .sec07 .column {
    padding: 0;
    flex: initial;
  }
  .sec07 .columns {
    margin-left: 0;
    margin-right: 0;
  }
  .sec07 .wf_img_cont {
    width: 25%;
  }
  .sec07 .text_column {
    width: 75%;
  }
}
.sec07 .hidden_Box_wrapper.open {
  padding-bottom: 40px;
}
.sec07 .hidden_Box_wrapper.open:after {
  transform: rotate(225deg);
  bottom: 1px;
}
.sec07 .hidden_Box_wrapper {
  position: relative;
}
.sec07 .hidden_Box_wrapper::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-bottom: 14px solid #aaa;
  border-right: 14px solid #aaa;
  transform: rotate(45deg);
  top: auto;
  bottom: 9px;
  left: 0;
  right: 0;
  margin: auto;
}
.sec07 .hidden_Box_wrapper div.center {
  margin: 20px 0;
}
.sec07 .hidden_Box_wrapper h4 {
  font-family: "EB Garamond", serif;
  font-size: 22.4px;
}
.sec07 .hidden_Box_wrapper .list_dot {
  margin: 20px 0;
  font-weight: bold;
}
.sec07 .hidden_Box_wrapper .list_dot li:before {
  background: #444;
}
.sec07 .hidden_Box_wrapper .btn_wrap .wf_btn_part a {
  background: #ef4000;
  line-height: 53px;
  padding: 0;
  max-width: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 40px;
  border: none;
  color: #fff;
}
.sec07 .hidden_Box_wrapper .btn_wrap .wf_btn_part a:hover {
  opacity: 1 !important;
  background: #ff723f;
}
@media (max-width: 768px) {
  .sec07 .column + .column {
    margin-top: 0;
  }
}

body:not(.page_edit) .sec07 .hidden_Box_wrapper .hidden_Box {
  display: none;
}

.sec07.en_top_sec .large_txt {
  font-size: 19.2px;
  font-family: "EB Garamond", serif;
  margin-top: 20px;
}
.sec07.en_top_sec .hidden_Box_wrapper .list_dot {
  font-weight: normal;
}

.sec08,
.sec11 {
  text-align: center;
}
.sec08 .inner,
.sec11 .inner {
  max-width: 980px !important;
}
.sec08 h2,
.sec11 h2 {
  margin-bottom: 20px;
}
.sec08 .btn_wrap .wf_btn_part a,
.sec11 .btn_wrap .wf_btn_part a {
  margin-top: 20px;
}
.sec08 .btn_wrap .wf_btn_part a:hover,
.sec11 .btn_wrap .wf_btn_part a:hover {
  opacity: 1 !important;
  border: 1px solid #b2b2b2;
}

.sec09 {
  background: #504d45;
  color: #fff;
  font-family: "EB Garamond", serif;
}
.sec09 .inner {
  max-width: 830px !important;
}
.sec09 h2 {
  margin-bottom: 20px;
  color: #fff;
}
@media (min-width: 769px) {
  .sec09 .h2_inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.sec09 .imgBox {
  display: block;
}
@media (min-width: 769px) {
  .sec09 .imgBox {
    margin-right: 10px;
  }
}
.sec09 .detail_txt_wrapper div + div {
  margin-top: 20px;
}
.sec09 .btn_wrap .wf_btn_part a {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  line-height: 38px;
}
.sec09 .btn_wrap .wf_btn_part a:hover {
  opacity: 1 !important;
  border: 1px solid #fff;
}

.sec09.en_top_sec .h2_inner {
  flex-direction: column;
}
.sec09.en_top_sec h2.top_title {
  font-size: 32px;
}

.sec10 {
  background: #848077;
  color: #fff;
  font-family: "EB Garamond", serif;
}
@media (min-width: 769px) {
  .sec10 .column {
    padding: 0;
  }
  .sec10 .columns {
    margin-left: 0;
    margin-right: 0;
    gap: 40px;
  }
}
.sec10 .inner {
  max-width: 900px !important;
}
.sec10 h3 {
  font-size: 27.2px;
  text-align: center;
  margin-bottom: 20px;
}
.sec10 h4 {
  text-align: center;
  font-size: 19.2px;
  margin-bottom: 20px;
}
.sec10 .column > div + div {
  margin-top: 20px;
}
.sec10 .cont.btn {
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  text-align: center;
  position: relative;
  margin: 20px auto 0;
}
.sec10 .cont.btn img {
  max-width: 70px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.sec10 .wf_img_cont > span img {
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}
@media (max-width: 768px) {
  .sec10 .wf_img_cont > span {
    display: block;
    margin-left: -15px;
    margin-right: -15px;
  }
}

body:not(.page_edit) .sec10 .cont.btn a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
body:not(.page_edit) .sec10 .cont.btn a:hover {
  border: 1px solid #fff;
}

.sec12 {
  background: #f8f8f8;
}
.sec12 .inner {
  max-width: 900px !important;
}
.sec12 h2 {
  margin-bottom: 20px;
}
.sec12 h3 {
  font-weight: bold;
  margin: 20px 0;
}
.sec12 .slider_wrap {
  margin-bottom: 40px;
  margin-top: 20px;
}
.sec12 .slider_column {
  background: #fff;
  padding: 40px;
}
.sec12 .slider_column .columns {
  display: flex;
}
.sec12 .imgBox {
  flex: none;
  flex-basis: 15.9756097561%;
  padding-right: 20px;
}
.sec12 .textBox {
  flex: initial;
  padding-left: 20px;
}
.sec12 .btn_wrap .wf_btn_part a:hover {
  opacity: 1 !important;
  border: 1px solid #b2b2b2;
}
.sec12 .slick-prev.slick-arrow {
  left: 10px;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid #888;
  border-right: 1px solid #888;
  z-index: 1;
  transform: rotate(-225deg);
  display: none !important;
  transition: 0.3s;
}
.sec12 .slick-next.slick-arrow {
  right: 10px;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid #888;
  border-right: 1px solid #888;
  transform: rotate(-45deg);
  display: none !important;
  transition: 0.3s;
margin-top: -12px;
}
.sec12 .slick-slider:hover .slick-next.slick-arrow {
  display: block !important;
}
.sec12 .slick-slider:hover .slick-prev.slick-arrow {
  display: block !important;
}
@media (max-width: 768px) {
  .sec12 .slider_column {
    padding: 30px;
  }
  .sec12 .imgBox {
    flex-basis: 24.3713733075%;
  }
  .sec12 .slider_column .columns .column + .column {
    margin-top: 0;
  }
}

.sec12.en_top_sec .textBox > div + div {
  margin-top: 20px;
}
.sec12.en_top_sec h3 {
  font-size: 24px;
  font-weight: normal;
  color: #333;
}

.sec13 {
  background: #848077;
  color: #fff;
}
.sec13 h2 {
  color: #fff;
}
.sec13 .inner {
  max-width: 980px !important;
}
.sec13 .accordion-area .title::before,
.sec13 .accordion-area .title::after {
  right: 15px;
  left: auto;
  background-color: #fff;
  top: 14px;
}
.sec13 .accordion-area .title {
  padding: 0 32px 0 24px;
  font-size: 20px;
}
.sec13 .listBox {
  list-style-type: circle;
  list-style-position: outside;
  padding-left: 20px;
}
.sec13 .listBox.listBox2 {
margin-top: 20px;
}
.sec13 .accordion-area .box {
  border: none;
  margin: 0;
}
.sec13 .accordion-area li {
  position: relative;
  margin: 20px 0;
}
.sec13 .accordion-area > li::before {
  content: "\f2c4";
  font-family: "Font Awesome 6 Brands";
  font-size: 20px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.sec13 .accordion-area > li:hover::before {
  color: rgba(255, 255, 255, 0.7);
}
.sec13 .accordion-area .title:hover {
  opacity: 0.7;
}
.sec13 .accordion-area .title.close::after {
  display: none;
}
.sec13 .accordion-area .title.close::before {
  transform: none;
}

.sec14 {
  background: #222;
  color: #fff;
}
.sec14 .inner {
  max-width: 980px !important;
}
.sec14 h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}
.sec14 .googleform_Box {
  background: rgba(255, 255, 255, 0.5);
  width: -moz-fit-content;
  width: fit-content;
  padding: 40px;
  margin: 20px auto;
}
@media (max-width: 768px) {
  .sec14 .googleform_Box {
    padding: 30px;
  }
}
.sec14 .googleform_Box iframe {
  max-width: 100%;
}
.sec14 .under_Box {
  padding-top: 70px;
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.sec14 .btn_wrap .wf_btn_part a {
  background: #ef4000;
  line-height: 38px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 30px;
  margin-bottom: 20px;
  border: none;
  color: #fff;
}
.sec14 .btn_wrap .wf_btn_part a:hover {
  opacity: 1 !important;
  background: #ff723f;
}

#upper_footer .under_columns {
  /*margin-top: 40px;*/
  display: flex;
 width:100%;
  flex-direction: column;
  align-items: flex-start;
}
#upper_footer .under_columns .btn_wrap .wf_btn_part a {
  color: #333;
  border: 1px solid #333;
  background: transparent;
  line-height: 38px;
  padding: 0 30px;
  width: -moz-fit-content;
  width: fit-content;
}
#upper_footer .under_columns .btn_wrap .wf_btn_part.btn02 a {
  margin-top: 20px;
}
#upper_footer .under_columns .link_menu {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: #999;
}
#upper_footer .under_columns .link_menu li a:hover {
  color: #666;
  opacity: 1 !important;
  text-decoration: none;
}
#upper_footer .under_columns .link_menu li a:hover:before {
  color: #666;
}
#upper_footer .under_columns .link_menu .insta_link a {
  position: relative;
}
#upper_footer .under_columns .link_menu .insta_link a:before {
  content: "\f16d";
  font-family: "Font Awesome 6 Brands";
  margin-right: 5px;
  color: #999;
  font-size: 28px;
  vertical-align: -4px;
}
#upper_footer .under_columns .link_menu .facebook_link a {
  position: relative;
}
#upper_footer .under_columns .link_menu .facebook_link a:before {
  content: "\f09a";
  font-family: "Font Awesome 6 Brands";
  margin-right: 5px;
  color: #999;
  font-size: 28px;
  vertical-align: -4px;
}
#upper_footer .under_columns .link_menu .youtube_link a {
  position: relative;
}
#upper_footer .under_columns .link_menu .youtube_link a:before {
  content: "\f167";
  font-family: "Font Awesome 6 Brands";
  margin-right: 5px;
  color: #999;
  font-size: 28px;
  vertical-align: -4px;
}

.top .wf_bread_ul {
  display: none;
}
.wf_bread_ul {
    width: 100%;
    max-width: 1000px;
    display: block;
    margin: 0px auto;
    padding: 5px;
    display: none;
}
.under .h3_title_wrap{
    margin-bottom: 0 !important;
  }
.sec_news .wf_lic{
    border-bottom: none;
  }
.sec_news .wf_lic:hover .wf_blog_li_title {
    color: #0f6ecd;
    text-decoration: underline;
  }
.sec13 .listBox li{
    margin: 2px 0;
  }

body:not(.page_edit) .gl-start::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: auto;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-image: url(/images/0_kabegami1.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
}

.gl-font-family-mincho {
  font-family: "EB Garamond", serif;
}

.gl-modal-close-arrow {
  background-image: url(/images/1_skip-arrow2.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 230px;
  padding: 14px 5px 7px 6px;
  background-color: transparent;
  color: #333;
  border: none;
}

h2.uk-modal-title {
  font-family: "EB Garamond", serif;
}

.sec01 h2 {
  color: #fff;
  font-family: "EB Garamond", serif;
}

.sec02 h2.top_title {
  margin-top: 3px;
}

.sec04 .wrapper01 h3 {
  margin: 40px auto 20px;
  color: #fff;
}

.sec05 h4,
.sec06 h4 {
  color: #fff;
  margin-bottom: 0;
}

.sec10 h3 {
  color: #fff;
  font-family: "EB Garamond", serif;
}

.sec10 h4 {
  color: #fff;
  font-family: "EB Garamond", serif;
}
/*# sourceMappingURL=local.css.map */

.uk-card-secondary .uk-table thead th {background: #666; color: white!important}
.uk-card-primary,.uk-section .uk-section-primary {
    background-color: #848077!important;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sns_wrap{display:none;}
.blog_entry .sns_wrap{display:block;}
/****************************************
 sns
*****************************************/

.share{
  width:100%;
  padding:10px 5px;
}
.share.short{
  padding:1.2em;
}

.sns{
  margin:0 auto;
  width:100%;
  text-align: center;
}
.sns ul {
  list-style:none;
  display: table;
  width:100%;
  letter-spacing: -0.4em;
  word-spacing: 0.1em;
}
.sns li {
  display: inline-block;
  width: 12%;
  min-width:100px;
  vertical-align: middle;
  padding:3px;
  letter-spacing: 0.1em;
}

.sns.c1 li {
  width: 100%;
}
.sns.c2 li {
  width: 50%;
}
.sns.c3 li,.sns.c6 li {
  width: 33.3333%;
}
.sns.c4 li,.sns.c7 li {
  width: 25%;
}
.sns.c5 li {
}

.sns.mini li{
  width: auto;
}

.sns a {
  font-size:.7em;
  font-weight: bold;
  line-height: 1.8;
  position:relative;
  display:block;
  padding:.6em 0;
  color:#fff;
  text-align:center;
  text-decoration: none;
  border-radius: 2px;
}

.sns a:before,
.sns a i{
  margin-right:0.2em;
  margin-left:0.2em;
  vertical-align: middle;
  font-size: 1.4em;
}

.sns a .count{
  font-size:10px;
  margin-left: 2px;
}

/* ツイッター */
.sns a.twitter {
  background:#00acee;
    border:2px solid #00acee;

}
.sns a.twitter:hover {
  background:#fff;
  border:2px solid #0092ca;
  color:#0092ca;
}

/* Facebook */
.sns a.facebook{
  background:#3b5998;
  border:2px solid #3b5998;
}
.sns a.facebook:hover {
    background:#fff;
    border:2px solid #2c4373;
    color:#2c4373;
}

/* はてぶ */
.sns  a.hatebu{
  background:#5d8ac1;
  border:2px solid #5d8ac1;
}
.sns a.hatebu:hover {
    background:#fff;
    border:2px solid #5d8ac1;
    color:#5d8ac1;
}
.sns  a.hatebu:before{
  content:'B!';
  font-weight:bold;
  line-height: 1;
}

/* LINE */
.sns  a.line{
  background:#25af00;
    border:2px solid #25af00;

}
.sns a.line:hover {
    background:#fff;
    border:2px solid #25af00;
    color:#25af00;
}

/* Pocket */
.sns  a.pocket{
  background:#f03e51;
      border:2px solid #f03e51;

}
.sns  a.pocket:hover {
    background:#fff;
    border:2px solid #f03e51;
    color:#f03e51;
}

/* RSS */
.sns  a.rss{
    background:#ffb53c;
    border:2px solid #ffb53c;

}
.sns  a.rss:hover {
    background:#fff;
    border:2px solid #ffb53c;
    color:#ffb53c;
}

/* Feedly */
.sns  a.feedly{
  background:#87c040;
  border:2px solid #87c040;
}
.sns  a.feedly:hover {
    background:#fff;
    border:2px solid #87c040;
    color:#87c040;
}

span.sns_name {
    margin-left: 5px;
    vertical-align: middle;
}

.sns span.sns_count{
    font-weight: bold;
    display: inline-block;
    line-height: 1.5em;
    padding: 0 3px;
    margin: 0 .2em;
    border-radius: 3px;
}

#share_plz div.sns_count {
    background: #fff;
    border-radius: 2px;
    color: #333;
}

.sns.small a {
    display: inline-block;
    padding: 1.5px 5px;
    color: #fff;
    font-size: .7em;
    vertical-align: top;
    margin-bottom: 5px;
}

.sns.small {
    text-align: center;
}
.uk-margin-large.uk-text-right .uk-button.uk-button-default{display:none;}
    .uk-width-3-4\@m {width:100%!important; }
.uk-label {
    display: inline-block;
    padding: 0 10px;
    background: #fff!important;
    line-height: 1.5;
    font-size: .875rem;
    color: #fff;
    vertical-align: middle;
    white-space: nowrap;
    border-radius: 2px;
    text-transform: uppercase;
}
.uk-text-right.uk-margin-right>a{display:none;}

#upper_footer .footer_nav{
  padding-left: 30px;
}

#upper_footer .footer_nav .footer_title{
  font-size: 19px;
 color: #000000;
}

#upper_footer .footer_nav .footer_com{
  font-size: 16px;
 color: #000000;
}


#upper_footer .footer_nav .footer_con{
  border: 1px solid #000;
text-align: center;
margin-top: 21px;
}
.mainimage .maincopy{
  font-size: 3vw;
  color: white;
  text-shadow: 4px 4px 12px black;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
display: table;
font-family: Georgia, serif;
}
/* スライダー全体 */
.carousel {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

/* 画像を親要素にフィット */
.slick-img img {
  width: 100%;
  display: block;
}

@keyframes fdzmzoom {
  0% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.carousel .img_span img {
  transform: scale(1); /* デフォルトサイズを1に */
}

.carousel .img_span.animation img {
  animation: fdzmzoom 6s linear;
}
.carousel-wrapper {
  position: relative;
}

spinnner (max-width: 768px){
 display:flex;
}




