@charset "UTF-8";
@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 400;
  src: url("./font/NotoSansJP-Regular.woff") format("woff"), url("./font/NotoSansJP-Regular.eot") format("eot");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 700;
  src: url("./font/NotoSansJP-Bold.woff") format("woff"), url("./font/NotoSansJP-Bold.eot") format("eot");
  font-display: swap;
}
@font-face {
  font-family: "Gloucester Pro Bold Extra Condensed";
  font-style: normal;
  font-weight: 600;
  src: url("./font/font.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Gloucester Pro Bold Extra Condensed";
  font-style: normal;
  font-weight: 800;
  src: url("./font/font.woff") format("woff2");
  font-display: swap;
}
/*
Theme Name:福岡市のギター工房「ギターライフ」 | ギター・ベース・アンプ・エフェクター
Description:ギターライフ
Version: 1.0
License:ギターライフ
License URI:https://www.guitar-life.jp/
*/
/****************************************

リセットCSSここから

*****************************************/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /*1em=10px */
  overflow-y: scroll;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  background: url(images/) no-repeat center top;
  background-size: cover;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
picture,
menu,
nav,
section,
main {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: top;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/****************************************

メディアクエリ/レスポンシブ用mixin

*****************************************/
/****************************************

body設定(主に書式)

*****************************************/
body {
  color: #333;
  background: #F4F4ED;
  font-weight: normal;
  min-width: 1240px;
  font-family: "NotoSansJP", "メイリオ", "Meiryo", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
/****************************************

ページ共通

*****************************************/
#wrapper {
  width: 100%;
  min-height: 100%;
  float: none;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #wrapper {
    width: 100%;
    min-height: 100%;
    float: none;
    margin: 0 auto;
    overflow: hidden;
  }
}
/****************************************

フォント指定

*****************************************/
li,
tt,
tr,
dt,
dd,
p {
  font-size: 1.6rem;
  line-height: 2;
}

h1,
h2,
h3 {
  line-height: 1.5 !important;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  li,
  tt,
  tr,
  dt,
  dd,
  p {
    font-size: 1.4rem;
  }
}
/****************************************

リンク指定&オンマウス時のアクション

*****************************************/
a:link,
a:visited {
  color: #3E785E;
  text-decoration: underline;
  transition: 0.3s linear;
  position: relative;
}
a:link.a_txt,
a:visited.a_txt {
  display: inline-block;
}
a:link.a_txt::after,
a:visited.a_txt::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #3E785E;
  bottom: -1px;
  transform: scale(1, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
a:link.a_txt:hover::after,
a:visited.a_txt:hover::after {
  transform: scale(0, 1);
  transform-origin: left top;
}

a:hover,
a:active {
  transition: 0.3s linear;
  color: #777;
  text-decoration: underline;
}

a:hover img.img_opacity {
  opacity: 0.75;
  transition: 0.2s linear;
}

a img.img_opacity {
  transition: 0.2s linear;
}

.img_opacity a:hover img {
  opacity: 0.75;
  filter: alpha(opacity=75);
  transition: 0.2s linear;
}

.img_opacity a img {
  transition: 0.2s linear;
}

a:hover img.img_up {
  transform: translateY(-5px);
  transition: 0.3s linear;
}

a img.img_up {
  transition: 0.3s linear;
}

.btn01 a {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #3E785E;
  border: 1px solid #3E785E;
  box-sizing: border-box;
  text-align: center;
  color: #3E785E;
}
@media screen and (max-width: 767px) {
  .btn01 a {
    font-size: 1.4rem;
    padding: 17px;
    color: #fff;
    border: 1px solid #fff;
    background: none;
  }
}
.btn01 a::before {
  content: "";
  position: relative;
  display: inline-block;
  margin-right: 10px;
  width: 13px;
  height: 12px;
  background: url(images/arr-green.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .btn01 a::before {
    background: url(images/arr.svg) no-repeat center/contain;
  }
}
@media screen and (min-width: 768px) {
  .btn01 a:hover {
    color: #fff;
    background: #3E785E;
  }
  .btn01 a:hover::before {
    background: url(images/arr.svg) no-repeat center/contain;
  }
}

.btn02 a {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #3E785E;
  border: 1px solid #fff;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .btn02 a {
    font-size: 1.4rem;
    padding: 17px;
  }
}
.btn02 a::before {
  content: "";
  position: relative;
  display: inline-block;
  margin-right: 10px;
  width: 13px;
  height: 12px;
  background: url(images/arr.svg) no-repeat center/contain;
}
.btn02 a:hover {
  color: #fff;
  background: #3E785E;
  border: 1px solid #3E785E;
}

a.deconone:link,
a.deconone:visited,
a.deconone:hover,
a.deconone:active {
  text-decoration: none;
}

/****************************************

ヘッダー　共通

*****************************************/
header {
  width: 100%;
  position: relative;
  z-index: 100;
}
header .header_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 30px 20px 0 60px;
}
@media screen and (max-width: 767px) {
  header .header_box {
    padding: 15px 20px;
    height: auto;
    justify-content: flex-start;
  }
}
header .header_box p {
  color: #ccc;
  font-size: 1.2rem;
}
header .header_box .h_logo {
  width: 320px;
  line-height: 1;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 767px) {
  header .header_box .h_logo {
    width: 120px;
  }
}
header .header_box .h_logo img {
  width: 100%;
  height: auto;
}
header .header_box .header_box-right .header_box-right_inner {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

/****************************************

PCヘッダー

*****************************************/
@media print, screen and (min-width: 768px) {
  #sp_header,
  #sp_navi,
  #toggle {
    display: none;
  }
  .h_mail {
    width: 230px;
  }
  .h_mail a {
    width: 100%;
    height: 100%;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    padding: 20px;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    transition: all 0.3s;
    text-decoration: none;
    color: #fff;
    background: #3E785E;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
    font-weight: 800;
  }
  .h_mail a span {
    display: block;
    font-family: "NotoSansJP", "メイリオ", "Meiryo", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-top: 10px;
    letter-spacing: 0;
  }
  .h_mail a:hover {
    background: #777;
  }
  .h_btn {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
  }
  .h_tel {
    width: 330px;
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 100;
    background: #F4F4ED;
    padding: 10px 45px;
    text-align: center;
  }
  .h_tel .add {
    font-size: 1.3rem;
  }
  .h_tel .tel {
    margin: 4px 0;
  }
  .h_tel .hours {
    display: flex;
    align-items: center;
  }
  .h_tel .hours dt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #F4F4ED;
    background: #3E785E;
    border-radius: 3px;
    width: 40px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0;
    margin-right: 5px;
  }
  .h_tel .hours dd {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .scroll {
    position: absolute;
    right: 30px;
    bottom: 180px;
    z-index: 10;
    display: flex;
    align-items: center;
    writing-mode: vertical-lr;
    height: 160px;
  }
  .scroll a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
    font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    padding: 25px 10px;
    border: 1px solid #fff;
    box-sizing: border-box;
  }
  .scroll a::before {
    background-color: #fff;
    bottom: 25px;
    content: "";
    height: 45px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
  }
  .scroll a::after {
    background-color: #fff;
    bottom: 23px;
    content: "";
    height: 10px;
    left: 7px;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
    transform: rotate(45deg);
  }
  .scroll a:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}
/****************************************

SPヘッダー

*****************************************/
@media screen and (max-width: 767px) {
  img {
    width: 100%;
    height: auto;
  }
  .header_box-right,
  .h_btn,
  .h_tel,
  .scroll {
    display: none;
  }
  #toggle {
    position: absolute;
    right: 10px;
    top: 12px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 9999;
    padding: 8px;
  }
  #toggle div {
    position: relative;
  }
  #toggle span {
    display: block;
    position: absolute;
    /*#navToggledivに対して*/
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.35s ease-in-out;
  }
  #toggle span:nth-child(1) {
    top: 0;
  }
  #toggle span:nth-child(2) {
    top: 11px;
  }
  #toggle span:nth-child(3) {
    top: 22px;
  }
  .open_navi #toggle span {
    background: #fff;
  }
  /*spanの絶対位置指定の親にします*/
  .open_navi #toggle {
    position: fixed;
  }
  .open_navi #toggle span:nth-of-type(1) {
    transform: translateY(11px) rotate(-315deg);
  }
  .open_navi #toggle span:nth-of-type(2) {
    opacity: 0;
  }
  .open_navi #toggle span:nth-of-type(3) {
    transform: translateY(-11px) rotate(315deg);
  }
  #sp_navi {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    overflow-y: scroll;
    text-align: left;
    background: url(images/sp_navi-bg.png) no-repeat center bottom/cover;
    z-index: 999;
    transform: translateX(100%);
    transition: 0.7s ease-in-out;
    padding: 30px;
  }
  .open_navi #sp_navi {
    transform: translateY(0);
    transition: 0.7s ease-in-out;
  }
  .open_navi #wrapper {
    transform-origin: left center;
    filter: blur(3px);
    transition: 0.7s ease-in-out;
  }
  #sp_navi .menu {
    padding: 40px 0;
  }
  #sp_navi .menu .menu-item {
    width: 100%;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    color: #FFF;
    margin: 0 auto;
    box-sizing: border-box;
    letter-spacing: 0.1em;
    font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
  }
  #sp_navi .menu .menu-item a {
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    position: relative;
  }
  #sp_navi .menu .menu-item a::before {
    content: "";
    width: 10px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 30px;
    left: 0;
  }
  #sp_navi .menu .menu-item-home {
    /* border-top: #666 1px solid; */
  }
  #sp_navi .menu-item a,
  #sp_navi .menu-item span {
    display: block;
    padding: 14px 0 14px 20px;
  }
  #sp_navi .menu-item a:active,
  #sp_navi .menu-item a:hover,
  #sp_navi .menu-item a:link,
  #sp_navi .menu-item a:visited {
    color: #FFF;
    text-decoration: none;
  }
  #sp_navi .sub-menu {
    width: 100%;
    display: none;
    margin-bottom: 20px;
  }
  #sp_navi .sub-menu li {
    width: 100%;
    border: none !important;
    margin-bottom: 5px !important;
  }
  #sp_navi .sub-menu li a {
    display: block;
    padding: 16px 20px 14px;
    color: #FFF;
    background: #3E785E;
    font-weight: 400 !important;
    font-size: 1.4rem !important;
    line-height: 1;
  }
  #sp_navi .sub-menu li a::before {
    content: none !important;
  }
  #sp_navi .sub-menu li a:active,
  #sp_navi .sub-menu li a:hover,
  #sp_navi .sub-menu li a:link,
  #sp_navi .sub-menu li a:visited {
    color: #FFF;
    text-decoration: none;
  }
  #sp_navi .sub-menu li a:hover {
    color: #FFF;
    background: none;
  }
  #sp_navi .menu-item-has-children {
    position: relative;
  }
  /* #sp_navi .menu-item-has-children:before {
        content: '';
        width: 14px;
        height: 14px;
        border: 0;
        border-top: solid 3px #BBB;
        border-right: solid 3px #ddd;
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg);
        -webkit-transition: 0.2s ease-in-out;
        -o-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
        position: absolute;
        top: 14px;
        right: 20px;
    } */
  /* #sp_navi .menu-item-has-children.menu_open:before {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition: 0.2s ease-in-out;
        -o-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
        top: 22px;
    } */
  /* +- */
  #sp_navi .menu-item-has-children:before,
  #sp_navi .menu-item-has-children:after {
    position: absolute;
    content: "";
    background: #fff;
    transition: 0.2s ease-in-out;
  }
  #sp_navi .menu-item-has-children:before {
    top: 20px;
    right: 14px;
    width: 1px;
    height: 18px;
  }
  #sp_navi .menu-item-has-children:after {
    top: 29px;
    right: 5px;
    width: 18px;
    height: 1px;
  }
  #sp_navi .menu-item-has-children.menu_open:before {
    transform: rotate(-90deg);
    transition: 0.2s ease-in-out;
  }
  /* ---- */
  #g_navi,
  .pc_header_description {
    display: none;
  }
  #sp_navi .nav_logo {
    width: 120px;
  }
  #sp_navi .sp_navi_info {
    text-align: center;
    color: #fff;
  }
  #sp_navi .sp_navi_info .f_sns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0 80px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #sp_navi .sp_navi_info .f_sns {
    gap: 15px;
    margin: 20px 0 0;
  }
  #sp_navi .sp_navi_info .f_sns a {
    width: 45px;
  }
}
/****************************************

sp用 フッターサイトマップ

*****************************************/
#sp_footer_navi {
  text-align: left;
  background: url(images/sp_navi-bg.png) no-repeat center/cover;
  z-index: 999;
  padding: 15px 30px 30px;
}
@media screen and (min-width: 768px) {
  #sp_footer_navi {
    display: none;
  }
}
#sp_footer_navi .menu .menu-item {
  width: 100%;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  color: #FFF;
  margin: 0 auto;
  box-sizing: border-box;
  letter-spacing: 0.1em;
  font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
}
#sp_footer_navi .menu .menu-item a {
  font-weight: 400;
  font-size: 1.8rem;
  position: relative;
}
#sp_footer_navi .menu .menu-item a::before {
  content: "";
  width: 10px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 30px;
  left: 0;
}
#sp_footer_navi .menu .menu-item-home {
  /* border-top: #666 1px solid; */
}
#sp_footer_navi .menu-item a,
#sp_footer_navi .menu-item span {
  display: block;
  padding: 14px 0 14px 20px;
}
#sp_footer_navi .menu-item a:active,
#sp_footer_navi .menu-item a:hover,
#sp_footer_navi .menu-item a:link,
#sp_footer_navi .menu-item a:visited {
  color: #FFF;
  text-decoration: none;
}
#sp_footer_navi .sub-menu {
  width: 100%;
  display: none;
  margin-bottom: 20px;
}
#sp_footer_navi .sub-menu li {
  width: 100%;
  border: none !important;
  margin-bottom: 5px !important;
}
#sp_footer_navi .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #FFF;
  background: #3E785E;
  font-weight: 400 !important;
  font-size: 1.4rem !important;
}
#sp_footer_navi .sub-menu li a::before {
  content: none !important;
}
#sp_footer_navi .sub-menu li a:active,
#sp_footer_navi .sub-menu li a:hover,
#sp_footer_navi .sub-menu li a:link,
#sp_footer_navi .sub-menu li a:visited {
  color: #FFF;
  text-decoration: none;
}
#sp_footer_navi .sub-menu li a:hover {
  color: #FFF;
  background: none;
}
#sp_footer_navi .menu-item-has-children {
  position: relative;
}
#sp_footer_navi {
  /* +- */
}
#sp_footer_navi .menu-item-has-children:before,
#sp_footer_navi .menu-item-has-children:after {
  position: absolute;
  content: "";
  background: #fff;
  transition: 0.2s ease-in-out;
}
#sp_footer_navi .menu-item-has-children:before {
  top: 20px;
  right: 14px;
  width: 1px;
  height: 18px;
}
#sp_footer_navi .menu-item-has-children:after {
  top: 29px;
  right: 5px;
  width: 18px;
  height: 1px;
}
#sp_footer_navi .menu-item-has-children.menu_open:before {
  transform: rotate(-90deg);
  transition: 0.2s ease-in-out;
}

/****************************************

pc用 ナビ

*****************************************/
@media screen and (max-width: 767px) {
  #g_navi {
    display: none;
  }
}
#g_navi .menu {
  width: auto;
  margin: auto;
  *zoom: 1;
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
}
#g_navi .menu:before {
  content: "";
  display: table;
}
#g_navi .menu:after {
  content: "";
  display: table;
  clear: both;
}
#g_navi .menu > li {
  position: relative;
  cursor: pointer;
}
#g_navi .menu > li:not(:last-child) {
  margin-right: 50px;
}
#g_navi .menu > li:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 12px;
  right: -25px;
}
#g_navi .menu li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
  font-weight: 800;
}
#g_navi .menu li ul {
  min-width: 140px;
  width: 100%;
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
#g_navi .menu li ul li {
  width: 100%;
  border-right: none;
  padding: 0;
}
#g_navi .menu li ul li a {
  width: 100%;
  padding: 15px 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  background: #3E785E;
}
#g_navi .menu li ul li a:hover {
  background: #777;
  color: #fff;
  opacity: 0.8;
  transition: 0.2s linear;
}
#g_navi .menu li:hover ul {
  visibility: visible;
  opacity: 0.9;
}
#g_navi .menu li:hover ul li a {
  visibility: visible;
  opacity: 1;
}

@media print, screen and (min-width: 768px) {
  #g_navi .menu > li > a {
    position: relative;
    display: inline-block;
    transition: 0.6s;
  }
  #g_navi .menu > li > a:after {
    position: absolute;
    left: 0;
    content: "";
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: 0.6s;
    transform: translateX(0%);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  #g_navi .menu > li > a:after {
    bottom: 0;
  }
  #g_navi .menu > li > a:hover:after {
    width: 100%;
    opacity: 1;
    filter: alpha(opacity=90);
  }
}
/****************************************

メインビジュアル

*****************************************/
#mv_top {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin: auto;
}
#mv_top .mv_img {
  width: 100%;
  margin-left: auto;
}
#mv_top .mv_img img {
  width: 100% !important;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
#mv_top .mv_txt {
  width: 100%;
  text-align: center;
  position: absolute;
  z-index: 100;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: url(images/top_fv_bg02.png) no-repeat left 90px bottom;
}
@media screen and (max-width: 767px) {
  #mv_top .mv_txt {
    background: none;
    padding: 0 20%;
  }
}

#mv_page {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin: auto;
}
#mv_page .mv_img {
  width: 100%;
  margin-left: auto;
}
#mv_page .mv_img img {
  width: 100% !important;
  height: 460px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
@media screen and (max-width: 767px) {
  #mv_page .mv_img img {
    width: 100%;
    height: 64vw;
  }
}
#mv_page .mv_txt {
  position: absolute;
  z-index: 100;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  text-align: center;
}
#mv_page .mv_txt p {
  font-size: 5rem;
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.85);
}
@media screen and (max-width: 767px) {
  #mv_page .mv_txt p {
    font-size: 3.2rem;
  }
}
#mv_page .mv_txt p span {
  display: block;
  font-size: 1.3rem;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #mv_page .mv_txt p span {
    font-size: 1.1rem;
  }
}

.metaslider .flex-control-nav {
  bottom: 0 !important;
  z-index: 10;
}

.metaslider .flexslider {
  margin: 0 !important;
}

/****************************************

content 共通設定

*****************************************/
.img_round img {
  border-radius: 10px;
}

.img_shadow {
  filter: drop-shadow(0px 6px 0px rgba(0, 0, 0, 0.1));
}

.youtube-ratio {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube-ratio iframe {
  width: 100%;
  height: 100%;
}

.breadcrumb {
  width: 100%;
  padding: 15px 30px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 10px;
  }
}
.breadcrumb p {
  font-size: 1.1rem;
  color: #777;
}
@media screen and (max-width: 767px) {
  .breadcrumb p {
    font-size: 1rem;
  }
}
.breadcrumb a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #666;
}
.breadcrumb a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #3E785E;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.breadcrumb a:hover {
  color: #3E785E;
}
.breadcrumb a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

main#top_main {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main#top_main {
    display: flex;
    flex-direction: column;
  }
}

main#page_main {
  width: 100%;
  margin: 40px 0 120px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  main#page_main {
    width: 100%;
    margin: 30px 0 60px;
  }
}

@media print, screen and (min-width: 768px) {
  .pc_none {
    display: none !important;
  }
  .pc_mb40 {
    margin-bottom: 40px;
  }
  .flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .flex_str {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  .flex_r {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
  .flex_r_str {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .sp_img {
    text-align: center;
  }
  .sp_img img {
    width: auto;
  }
  .sp_none {
    display: none !important;
  }
  .sp_mb10 {
    margin-bottom: 10px;
  }
  .sp_mb20 {
    margin-bottom: 20px;
  }
  .sp_mb25 {
    margin-bottom: 25px;
  }
  .sp_mb30 {
    margin-bottom: 30px;
  }
  a[href^="tel:"] {
    text-decoration: none;
  }
  .tel_none {
    pointer-events: none;
    text-decoration: none;
  }
}
/****************************************

contentトップ用

*****************************************/
.top_box01_wrap {
  width: 100%;
  background: url(images/top_bg01.png) no-repeat center/cover;
  padding: 170px 20px 60px;
}
@media screen and (max-width: 767px) {
  .top_box01_wrap {
    background: #153d25;
    padding: 45px 30px;
    order: 2;
  }
}
.top_box01_wrap .top_box01 {
  max-width: 1520px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .top_box01_wrap .top_box01 {
    flex-direction: column;
  }
}
.top_box01_wrap .top_box01 p {
  color: #fff;
}
.top_box01_wrap .top_box01 a {
  transition: all 0.3s;
  text-decoration: none;
  filter: grayscale(100%);
}
.top_box01_wrap .top_box01 a:hover {
  filter: grayscale(0);
}
.top_box01_wrap .top_box01 figure {
  position: relative;
  z-index: 0;
}
.top_box01_wrap .top_box01 figure figcaption {
  width: 100%;
  display: block;
  text-align: center;
  font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
  letter-spacing: 0.14em;
  font-size: 2.4rem;
  color: #3E785E;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .top_box01_wrap .top_box01 figure figcaption {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    color: #fff;
  }
}
.top_box01_wrap .top_box01 figure figcaption span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.top_box01_wrap .top_box01 img {
  width: 100%;
  height: auto;
}

.top_box02 {
  width: 100%;
  margin: auto;
  padding: 100px 90px 100px 90px;
  background: url(images/top_se03_img01.jpeg) no-repeat center left/cover;
}
@media screen and (max-width: 767px) {
  .top_box02 {
    padding: 50px 30px 60px;
    background: url(images/bg-sp01.jpg) no-repeat center/cover;
    order: 1;
  }
}
.top_box02 .top_box02_inner {
  width: 950px;
  margin-left: auto;
  background: rgba(0, 0, 0, 0.6705882353);
  border-top: 5px solid #3E785E;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .top_box02 .top_box02_inner {
    width: 100%;
    background: none;
    padding: 0;
    border: none;
  }
}
.top_box02 .top_box02_inner h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_box02 .top_box02_inner h2 {
    max-width: 340px;
    width: 100%;
    padding-bottom: 0;
    margin: 0 auto 40px;
  }
}
.top_box02 .top_box02_inner h2::before {
  content: "";
  width: 80px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top_box02 .top_box02_inner h2::before {
    content: none;
  }
}
.top_box02 .top_box02_inner p {
  color: #bababa;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top_box02 .top_box02_inner p {
    color: #fff;
    font-size: 1.4rem;
  }
}
.top_box02 .top_box02_btn {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .top_box02 .top_box02_btn {
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }
}
.top_box02 .top_box02_btn .btn02 {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .top_box02 .top_box02_btn .btn02 {
    width: 70%;
  }
}

.top_box03_wrap {
  width: 100%;
  background: url(images/top_bg01.png) no-repeat center/cover;
  padding: 50px 20px;
  order: 3;
}
@media screen and (max-width: 767px) {
  .top_box03_wrap {
    background: url(images/bg-sp02.png) no-repeat center/cover;
    padding: 50px 30px 60px;
  }
}
.top_box03_wrap .top_box03 {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top_box03_wrap .top_box03 {
    flex-direction: column;
  }
}

.blog-top_post_wrap {
  width: calc(100% - 420px);
  padding-right: 7%;
}
@media screen and (max-width: 767px) {
  .blog-top_post_wrap {
    width: 100%;
    padding-left: 0;
  }
}
.blog-top_post_wrap .btn01 {
  width: 260px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .blog-top_post_wrap .btn01 {
    width: 70%;
  }
}

.top_facebook {
  max-width: 420px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top_facebook {
    display: none;
  }
}
.top_facebook iframe {
  width: 100%;
}

/****************************************

news トップ用

*****************************************/
.news_post a:link,
.news_post a:visited,
.news_post a:hover,
.news_post a:active {
  text-decoration: none;
}

.news_post_wrap {
  background: #333;
  padding: 20px;
  display: flex;
  align-items: center;
  z-index: 100;
  width: 46.8%;
  position: absolute;
  bottom: -60px;
  left: 30px;
  min-width: 800px;
}
@media screen and (max-width: 767px) {
  .news_post_wrap {
    display: none;
  }
}
.news_post_wrap h2 {
  color: #aaa;
  font-weight: 800;
  font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
  letter-spacing: 0.1em;
  padding: 0 6%;
  font-size: 2.4rem;
}
.news_post_wrap .news_post article {
  border-left: 1px solid #aaa;
  padding-left: 30px;
}
.news_post_wrap .news_post article a {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 3px 0;
}
@media screen and (max-width: 767px) {
  .news_post_wrap .news_post article a {
    flex-wrap: wrap;
  }
}
.news_post_wrap .news_post article a .date {
  width: 100px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #aaa;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .news_post_wrap .news_post article a .date {
    width: 100%;
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 768px) {
  .news_post_wrap .news_post article a .inner {
    width: calc(100% - 100px);
  }
}
.news_post_wrap .news_post article a h3 {
  font-size: 1.3rem;
  color: #aaa;
  line-height: 1.6;
  font-weight: 400;
  font-family: "NotoSansJP", "メイリオ", "Meiryo", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .news_post_wrap .news_post article a h3 {
    width: 100%;
  }
}
.news_post_wrap .news_post article a:hover h3 {
  color: #fff;
}

/****************************************

blog トップ用

*****************************************/
.blog-top_post a:link,
.blog-top_post a:visited,
.blog-top_post a:hover,
.blog-top_post a:active {
  text-decoration: none;
}

.blog-top_post {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2.3%;
}
@media screen and (max-width: 767px) {
  .blog-top_post {
    gap: 20px;
  }
}
.blog-top_post article {
  width: 31.8%;
}
@media screen and (max-width: 767px) {
  .blog-top_post article {
    width: 100%;
  }
}
.blog-top_post article:hover .mask {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .blog-top_post article a {
    display: flex;
    flex-direction: column-reverse;
  }
}
.blog-top_post article a figure {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.blog-top_post article a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.blog-top_post article a figure .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-top_post article a figure .mask .caption {
  color: #fff;
  font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .blog-top_post article a figure .mask .caption {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .blog-top_post article a figure {
    display: none;
  }
}
.blog-top_post article a .date {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  line-height: 1.6;
  color: #868686;
  display: inline-block;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .blog-top_post article a .date {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 0;
    color: #fff;
    position: relative;
    padding-left: 20px;
  }
  .blog-top_post article a .date::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    box-sizing: border-box;
    outline: 1px solid #fff;
    outline-offset: -4px;
    position: absolute;
    top: 5px;
    left: 0;
  }
}
.blog-top_post article a h3 {
  font-size: 1.4rem;
  color: #000;
  line-height: 1.6;
  font-weight: 400;
  font-family: "NotoSansJP", "メイリオ", "Meiryo", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
}
@media screen and (max-width: 767px) {
  .blog-top_post article a h3 {
    width: 100%;
    font-size: 1.2rem;
    color: #fff;
  }
}

/****************************************

content下層用

*****************************************/
.name {
  text-align: right;
  font-weight: 600;
}
.name span {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .name span {
    font-size: 2rem;
  }
}

.content_tel {
  display: block;
  width: 480px;
  background: #fff;
  padding: 20px 120px;
  text-align: center;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .content_tel {
    width: 100%;
    padding: 20px;
  }
}
.content_tel a {
  text-decoration: none;
  color: #333;
}
.content_tel .txt {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .content_tel .txt {
    font-weight: 400;
    font-size: 1.4rem;
  }
}
.content_tel .tel {
  width: 240px;
  margin: 4px 0;
}
@media screen and (max-width: 767px) {
  .content_tel .hours_wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
}
.content_tel .hours {
  display: flex;
  align-items: center;
}
.content_tel .hours dt {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #F4F4ED;
  background: #3E785E;
  border-radius: 3px;
  width: 40px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .content_tel .hours dt {
    color: #333;
    font-size: 1rem;
    background: none;
    width: auto;
  }
}
.content_tel .hours dd {
  font-size: 1.3rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .content_tel .hours dd {
    color: #333;
    font-size: 1rem;
  }
}

.blog_post {
  width: 1180px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 15px;
}
@media screen and (max-width: 767px) {
  .blog_post {
    width: 100%;
    gap: 20px 2%;
  }
}
.blog_post article {
  width: 280px;
}
@media screen and (max-width: 767px) {
  .blog_post article {
    width: 49%;
  }
}
.blog_post article:hover .mask {
  opacity: 1;
}
.blog_post article a {
  text-decoration: none;
}
.blog_post article a figure {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px !important;
}
.blog_post article a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.blog_post article a figure .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog_post article a figure .mask .caption {
  color: #fff;
  font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .blog_post article a figure .mask .caption {
    font-size: 1.3rem;
  }
}
.blog_post article a .date {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  line-height: 1.6;
  color: #868686;
  display: inline-block;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .blog_post article a .date {
    font-size: 1rem;
  }
}
.blog_post article a h3 {
  font-size: 1.4rem;
  color: #000;
  line-height: 1.6;
  font-weight: 400;
  font-family: "NotoSansJP", "メイリオ", "Meiryo", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
}
@media screen and (max-width: 767px) {
  .blog_post article a h3 {
    font-size: 1.3rem;
  }
}

.policy {
  background: #f2f2f2;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .policy {
    padding: 25px;
  }
}
.policy span {
  display: block;
  margin-bottom: 10px;
  font-size: 2.2rem;
  font-family: "Zen Old Mincho", "游明朝", YuMincho, "Times New Roman", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .policy span {
    font-size: 1.5rem;
  }
}
.policy p {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .policy p {
    font-size: 1.2rem;
  }
}

.table_scroll {
  overflow: auto;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .table_scroll::before {
    content: "下記料金表は左右に動かせます";
    font-size: 1.4rem;
    margin-bottom: 5px;
    display: inline-block;
    position: sticky;
    top: 0;
    left: 0;
    color: #3E785E;
  }
}

.table01 {
  width: 100%;
}
.table01 th,
.table01 td {
  text-align: left;
  border: 1px solid #ccc;
  padding: 10px 15px;
  font-size: 1.4rem;
  vertical-align: middle;
  color: #000;
}
@media screen and (max-width: 767px) {
  .table01 th,
  .table01 td {
    font-size: 1.3rem;
  }
}
.table01 th.w10,
.table01 td.w10 {
  width: 10%;
}
.table01 th.w15,
.table01 td.w15 {
  width: 15%;
}
.table01 th.w20,
.table01 td.w20 {
  width: 20%;
}
.table01 th.w40,
.table01 td.w40 {
  width: 40%;
}
.table01 th.w45,
.table01 td.w45 {
  width: 45%;
}
.table01 th.w100,
.table01 td.w100 {
  width: 100%;
}
.table01 th {
  background: #eee;
}
.table01 td {
  background: #fff;
}

.table02 {
  width: 100%;
}
.table02 th,
.table02 td {
  border-bottom: 1px solid #ccc;
  padding: 16px 8px;
  text-align: left;
}
.table02 th {
  width: 15%;
}
@media screen and (max-width: 767px) {
  .table02 th {
    width: 80px;
  }
}
.table02 td {
  width: 85%;
}
@media screen and (max-width: 767px) {
  .table02 td {
    width: calc(100% - 80px);
  }
}
.table02 tr:first-child th {
  border-top: 2px solid #3E785E;
}
.table02 tr:first-child td {
  border-top: 2px solid #ccc;
}
.table02 tr:last-child th {
  border-bottom: 2px solid #3E785E;
}
.table02 tr:last-child td {
  border-bottom: 2px solid #ccc;
}

/****************************************

ELウィジェット

*****************************************/
.elementor-widget:not(:last-child) {
  margin-bottom: 0;
}

.container_box-wrap .elementor-container {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .container_box-wrap .elementor-container {
    gap: 10px;
  }
}

.container_box01 .elementor-container {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.52%;
}
@media screen and (max-width: 767px) {
  .container_box01 .elementor-container {
    gap: 10px 2%;
  }
}
.container_box01 .elementor-container .elementor-column {
  width: 15.4%;
}
@media screen and (max-width: 767px) {
  .container_box01 .elementor-container .elementor-column {
    width: 32%;
  }
}

.container_box02 .elementor-container {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.06%;
}
@media screen and (max-width: 767px) {
  .container_box02 .elementor-container {
    gap: 10px 2%;
  }
}
.container_box02 .elementor-container .elementor-column {
  width: 24.2%;
}
@media screen and (max-width: 767px) {
  .container_box02 .elementor-container .elementor-column {
    width: 49%;
  }
}

.container_box03 .elementor-container {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .container_box03 .elementor-container {
    gap: 10px;
  }
}
.container_box03 .elementor-container .elementor-column {
  width: 380px;
}
@media screen and (max-width: 767px) {
  .container_box03 .elementor-container .elementor-column {
    width: 80%;
    margin: auto;
  }
}

.container_box04 .elementor-container {
  flex-wrap: wrap;
  justify-content: flex-start;
}
.container_box04 .elementor-container .elementor-column {
  width: 680px;
}
@media screen and (max-width: 767px) {
  .container_box04 .elementor-container .elementor-column {
    width: 100%;
  }
}

.container_box05 .elementor-container {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .container_box05 .elementor-container {
    gap: 20px;
  }
}
.container_box05 .elementor-container .elementor-column {
  width: 550px;
}
@media screen and (max-width: 767px) {
  .container_box05 .elementor-container .elementor-column {
    width: 100%;
  }
}

.container_box06 .elementor-container {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .container_box06 .elementor-container {
    gap: 20px 2%;
  }
}
.container_box06 .elementor-container .elementor-column {
  width: 380px;
}
@media screen and (max-width: 767px) {
  .container_box06 .elementor-container .elementor-column {
    width: 49%;
  }
}

.elementor-52 .elementor-element.elementor-element-786980f:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap,
.elementor-52 .elementor-element.elementor-element-786980f > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer {
  background: none !important;
}

.elementor-52 .elementor-element.elementor-element-1a3defb:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap,
.elementor-52 .elementor-element.elementor-element-1a3defb > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer {
  background: none !important;
}

.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 0;
}

.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: none;
}

.elementor-container {
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .elementor-container .w400 {
    width: 400px;
  }
  .elementor-container .w420 {
    width: 420px;
  }
  .elementor-container .w490 {
    width: 490px;
  }
  .elementor-container .w540 {
    width: 540px;
  }
  .elementor-container .w600 {
    width: 600px;
  }
  .elementor-container .w735 {
    width: 735px;
  }
  .elementor-container .w1000 {
    width: 1000px;
  }
  .elementor-container .w1200 {
    width: 1200px;
  }
  .elementor-container .w1500 {
    max-width: 1500px;
    width: 100%;
  }
  .elementor-container .box_center {
    margin: auto;
  }
}

.box_1000 {
  width: 100%;
  padding: 0 calc((100% - 1000px) / 2);
}
@media screen and (max-width: 767px) {
  .box_1000 {
    padding: 0 10px;
  }
}

.box_1200 {
  width: 100%;
  padding: 0 calc((100% - 1200px) / 2);
}
@media screen and (max-width: 767px) {
  .box_1200 {
    padding: 0 10px;
  }
}

.box_1500 {
  width: 100%;
  padding: 0 calc((100% - 1500px) / 2);
}

.table_list01 {
  width: 100%;
}
.table_list01 .elementor-price-list {
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .table_list01 .elementor-price-list {
    -o-border-image: none;
       border-image: none;
  }
}
.table_list01 .elementor-price-list .elementor-price-list-item {
  margin-bottom: 0 !important;
}
.table_list01 .elementor-price-list .elementor-price-list-item .elementor-price-list-text {
  flex-wrap: revert !important;
  align-items: revert !important;
}
@media screen and (max-width: 767px) {
  .table_list01 .elementor-price-list .elementor-price-list-item .elementor-price-list-text {
    flex-direction: column;
  }
}
.table_list01 .elementor-price-list .elementor-price-list-item .elementor-price-list-text .elementor-price-list-header {
  margin-bottom: 0 !important;
  width: 25%;
  max-width: 100% !important;
  flex-basis: revert !important;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .table_list01 .elementor-price-list .elementor-price-list-item .elementor-price-list-text .elementor-price-list-header {
    width: 100%;
  }
}
.table_list01 .elementor-price-list .elementor-price-list-item .elementor-price-list-text .elementor-price-list-header .elementor-price-list-title {
  width: 100%;
  max-width: 100%;
  padding: 16px 20px;
  background: #876A4B;
  color: #fff;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .table_list01 .elementor-price-list .elementor-price-list-item .elementor-price-list-text .elementor-price-list-header .elementor-price-list-title {
    border-bottom: none;
    padding: 10px;
  }
}
.table_list01 .elementor-price-list .elementor-price-list-item .elementor-price-list-text .elementor-price-list-description {
  width: 75%;
  max-width: 100% !important;
  padding: 16px 20px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .table_list01 .elementor-price-list .elementor-price-list-item .elementor-price-list-text .elementor-price-list-description {
    width: 100%;
    border-left: 1px solid #ccc;
    padding: 10px;
  }
}

.icon_list01 .elementor-icon-list-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.icon_list01 .elementor-icon-list-items .elementor-icon-list-item {
  align-items: flex-start;
  width: 100%;
  margin: 0 !important;
}
.icon_list01 .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-icon {
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .icon_list01 .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-icon {
    margin-top: 9px;
  }
}

.icon_list02 .elementor-icon-list-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.icon_list02 .elementor-icon-list-items .elementor-icon-list-item {
  align-items: flex-start;
  width: 49%;
  margin: 0 !important;
  border-bottom: 1px dotted #999;
  padding: 8px 0;
}
@media screen and (max-width: 767px) {
  .icon_list02 .elementor-icon-list-items .elementor-icon-list-item {
    width: 100%;
  }
}
.icon_list02 .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-icon {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .icon_list02 .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-icon {
    margin-top: 7px;
  }
}

.icon_list03 .elementor-icon-list-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.icon_list03 .elementor-icon-list-items .elementor-icon-list-item {
  align-items: flex-start;
  width: 100%;
  margin: 0 !important;
  border-bottom: 1px dotted #999;
  padding: 8px 0;
}
.icon_list03 .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-icon {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .icon_list03 .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-icon {
    margin-top: 7px;
  }
}
.icon_list03 .elementor-icon-list-items .elementor-icon-list-item p {
  display: block;
  font-weight: 400;
  font-size: 1.5rem !important;
}

.elementor-button {
  border-radius: 0;
  line-height: 1.5;
  text-decoration: none !important;
  text-align: center;
  display: block;
}
.elementor-button .elementor-button-content-wrapper .elementor-button-icon svg {
  width: auto;
}

.elementor-button-text {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .top_btn01 .elementor-button {
    width: 240px;
    padding: 19px 0 19px 25px;
  }
}
@media screen and (max-width: 767px) {
  .top_btn01 .elementor-button {
    width: 100%;
    padding: 14px 0 14px 25px;
  }
}

.faq .elementor-widget-container .elementor-accordion .elementor-accordion-item {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border: none;
  border-bottom: 1px dotted #999;
}
@media screen and (max-width: 767px) {
  .faq .elementor-widget-container .elementor-accordion .elementor-accordion-item {
    margin-bottom: 20px;
  }
}
.faq .elementor-widget-container .elementor-accordion .elementor-accordion-item .elementor-tab-title {
  position: relative;
  padding: 10px 0 10px 50px;
}
@media screen and (max-width: 767px) {
  .faq .elementor-widget-container .elementor-accordion .elementor-accordion-item .elementor-tab-title {
    padding: 4px 0 4px 40px;
  }
}
.faq .elementor-widget-container .elementor-accordion .elementor-accordion-item .elementor-tab-title::before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  font-weight: 400;
  margin-right: 10px;
  color: #fff;
  background: #3E785E;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100vw;
  text-align: center;
  font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
}
@media screen and (max-width: 767px) {
  .faq .elementor-widget-container .elementor-accordion .elementor-accordion-item .elementor-tab-title::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 1.8rem;
  }
}
.faq .elementor-widget-container .elementor-accordion .elementor-accordion-item .elementor-tab-title a {
  text-decoration: none !important;
}
.faq .elementor-widget-container .elementor-accordion .elementor-accordion-item .elementor-tab-content {
  border: none;
  position: relative;
  padding: 6px 0 6px 50px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .faq .elementor-widget-container .elementor-accordion .elementor-accordion-item .elementor-tab-content {
    padding: 4px 0 4px 40px;
  }
}
.faq .elementor-widget-container .elementor-accordion .elementor-accordion-item .elementor-tab-content::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  font-weight: 400;
  margin-right: 10px;
  color: #fff;
  background: #777;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100vw;
  text-align: center;
  font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
}
@media screen and (max-width: 767px) {
  .faq .elementor-widget-container .elementor-accordion .elementor-accordion-item .elementor-tab-content::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 1.8rem;
  }
}
.faq .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-right {
  margin-top: 8px;
}

/****************************************

aside

*****************************************/
#bottom_area {
  width: 100%;
  background: url(images/top_se05_bg01.png) no-repeat center/cover;
  padding: 90px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #bottom_area {
    background: url(images/bg-sp03.jpg) no-repeat center/cover;
    padding: 50px 30px;
  }
}
#bottom_area p {
  color: #fff;
}
#bottom_area .bottom_area_info {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #bottom_area .bottom_area_info {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
}
#bottom_area .bottom_area_info a {
  text-decoration: none;
}
#bottom_area .b_tel {
  width: 480px;
  background: #F4F4ED;
  padding: 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #bottom_area .b_tel {
    width: 100%;
  }
}
#bottom_area .b_tel .txt {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 767px) {
  #bottom_area .b_tel .txt {
    font-size: 1.4rem;
    font-weight: 400;
  }
}
#bottom_area .b_tel .tel {
  margin: 4px 0;
}
@media screen and (max-width: 767px) {
  #bottom_area .b_tel .tel {
    width: 240px;
  }
}
#bottom_area .b_tel .hours_wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
#bottom_area .b_tel .hours {
  display: flex;
  align-items: center;
}
#bottom_area .b_tel .hours dt {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #F4F4ED;
  background: #3E785E;
  border-radius: 3px;
  width: 40px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  #bottom_area .b_tel .hours dt {
    font-size: 1rem;
    width: auto;
    background: none;
    color: #333;
  }
}
#bottom_area .b_tel .hours dd {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 767px) {
  #bottom_area .b_tel .hours dd {
    font-size: 1rem;
  }
}
#bottom_area .b_btn {
  width: 480px;
}
@media screen and (max-width: 767px) {
  #bottom_area .b_btn {
    width: 100%;
  }
}
#bottom_area .b_btn a {
  width: 100%;
  height: 100%;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #fff;
  text-align: center;
  background: #D36575;
  font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
}
@media screen and (max-width: 767px) {
  #bottom_area .b_btn a {
    font-size: 2.4rem;
    padding: 20px;
  }
}
#bottom_area .b_btn a span {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0;
  margin-bottom: 10px;
}
#bottom_area .b_btn a:hover {
  background: #3E785E;
}

#bottom_bana {
  background: #D9E3D8;
  padding: 50px 20px;
}
#bottom_bana .bottom_bana_inner {
  max-width: 1520px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #bottom_bana .bottom_bana_inner {
    flex-direction: column;
  }
}
#bottom_bana .bottom_bana_inner a {
  transition: all 0.3s;
  text-decoration: none;
  filter: grayscale(100%);
}
#bottom_bana .bottom_bana_inner a:hover {
  filter: grayscale(0);
}
#bottom_bana .bottom_bana_inner figure {
  position: relative;
  z-index: 0;
}
#bottom_bana .bottom_bana_inner figure figcaption {
  width: 100%;
  display: block;
  text-align: center;
  font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
  letter-spacing: 0.14em;
  font-size: 2.4rem;
  color: #3E785E;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #bottom_bana .bottom_bana_inner figure figcaption {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    color: #fff;
  }
}
#bottom_bana .bottom_bana_inner figure figcaption span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
#bottom_bana .bottom_bana_inner img {
  width: 100%;
  height: auto;
}

/****************************************

single.php

*****************************************/
#single_box {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #single_box {
    padding: 0 10px;
  }
}
#single_box .date {
  width: 84px;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #fff;
  display: inline-block;
  background: #3E785E;
  padding: 2px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #single_box .date {
    margin-bottom: 10px;
  }
}

#single_box h1 {
  font-size: 2.6rem;
}

#single_box .single_text {
  width: 100%;
}

#single_box .single_text img {
  margin: 15px auto;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
}

.pager {
  clear: both;
  text-align: center;
  margin: 40px auto 0px;
}

a.page-numbers {
  border: solid 1px #666;
  border-radius: 3px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
  color: #666;
  background: #fff;
}
a.page-numbers:hover {
  background: rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.pager .current {
  border-radius: 3px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
  background: #666;
  border: solid 1px #666;
  color: white;
}

.nav-below {
  width: 100%;
  margin: 60px 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
  border-top: 1px solid #3E785E;
  border-bottom: 1px solid #3E785E;
  text-decoration: none;
  color: #3E785E;
}
@media screen and (max-width: 767px) {
  .nav-below {
    margin: 40px 0 0;
  }
}
.nav-below a {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  width: 100%;
  height: 100%;
  padding: 30px;
  transition: all 0.3s;
  color: #3E785E;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .nav-below a {
    padding: 20px 10px;
    font-size: 1.4rem;
  }
}
.nav-below a:hover {
  background: #3E785E;
  color: #fff;
}
.nav-below .next {
  width: 25%;
  border-right: 1px solid #3E785E;
}
.nav-below .back {
  width: 50%;
}
.nav-below .prev {
  width: 25%;
  border-left: 1px solid #3E785E;
}

@media screen and (max-width: 767px) {
  #single_box {
    width: 100%;
    margin-top: 40px;
  }
  #single_box h1 {
    font-size: 1.8rem;
  }
  a.page-numbers,
  .pager .current {
    font-size: 1.3rem;
  }
}
/****************************************

P

*****************************************/
.bg_beige {
  background: #F2EADC;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .bg_beige {
    padding: 25px;
  }
}

/* 改行 */
.line_break {
  padding-top: 25px;
}

/* 文字 */
.sans {
  font-family: "NotoSansJP", "メイリオ", "Meiryo", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
}

.serif {
  font-family: "Zen Old Mincho", "游明朝", YuMincho, "Times New Roman", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
}

.black {
  color: #000;
}

.red {
  color: #b20000 !important;
}

.green {
  color: #777;
}

.yellow {
  color: #e3c600;
}

.light-green {
  color: #5dc834;
}

.orange {
  color: #f48e26;
}

.pink {
  color: #f15585;
}

.size14 {
  font-size: 1.4rem;
}

.size15 {
  font-size: 1.5rem;
}

.size18 {
  font-size: 1.8rem;
}

.size20 {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .size20 {
    font-size: 1.6rem;
  }
}

.size22 {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .size22 {
    font-size: 1.8rem;
  }
}

/* 強調 */
.marker {
  background: linear-gradient(transparent 70%, #FFDD53 30%);
  font-weight: 700;
}

.bold {
  font-weight: 700;
}

.tr {
  text-align: right;
}

.db {
  display: block;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb120 {
  margin-bottom: 120px;
}

.mt10 {
  margin-top: 10px;
}

@media print, screen and (min-width: 768px) {
  .tc {
    text-align: center;
  }
  .w650 {
    width: 650px;
  }
  .w720 {
    width: 720px;
  }
}
@media screen and (max-width: 767px) {
  .mb50,
  .mb60 {
    margin-bottom: 40px;
  }
  .mb80 {
    margin-bottom: 40px;
  }
  .mb90,
  .mb100 {
    margin-bottom: 60px;
  }
  .mb120 {
    margin-bottom: 60px;
  }
}
/****************************************

タイトル

*****************************************/
.block {
  display: block;
}

.top_tit01 {
  text-align: center;
  font-size: 4rem;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  padding-bottom: 15px;
  font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
  font-weight: 800;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_tit01 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #fff;
  }
}
.top_tit01::before {
  content: "";
  width: 70px;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .top_tit01::before {
    background: #fff !important;
  }
}
.top_tit01.top_tit01_white {
  color: #fff;
}
.top_tit01.top_tit01_white::before {
  background: #fff;
}

.top_tit01 {
  text-align: center;
  font-size: 4rem;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  padding-bottom: 15px;
  font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
  font-weight: 800;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_tit01 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
.top_tit01::before {
  content: "";
  width: 70px;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.headline {
  text-align: center;
  font-size: 4rem;
  letter-spacing: 0.1em;
  margin-bottom: 50px !important;
  font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .headline {
    font-size: 3rem;
    margin-bottom: 30px !important;
  }
}
.headline span {
  display: block;
  color: #777;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-top: 10px;
  font-weight: 600;
  position: relative;
  padding-top: 20px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .headline span {
    font-size: 1.2rem;
  }
}
.headline span::before {
  content: "";
  width: 70px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.subhead01 {
  width: 100%;
  border: 1px solid #000;
  padding: 15px 15px 15px 50px;
  margin-bottom: 20px !important;
  position: relative;
  z-index: 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .subhead01 {
    font-size: 1.7rem;
  }
}
.subhead01::before {
  content: "";
  width: 18px;
  height: 16px;
  background: url(images/mark01.svg) no-repeat center/contain;
  position: absolute;
  top: 20px;
  left: 20px;
}

.subhead02 {
  width: 100%;
  padding-bottom: 15px;
  margin-bottom: 20px !important;
  font-size: 1.8rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .subhead02 {
    font-size: 1.7rem;
  }
}

.subhead03 {
  width: 100%;
  padding: 15px 15px 15px 50px;
  margin-bottom: 20px !important;
  font-size: 2.1rem;
  background: #3E785E;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .subhead03 {
    font-size: 1.7rem;
  }
}
.subhead03::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.subhead03 span {
  display: block;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .subhead03 span {
    font-size: 1.4rem;
  }
}

.subhead04 {
  width: 100%;
  padding: 15px;
  margin-bottom: 0 !important;
  font-size: 1.8rem;
  background: #ccc;
}
@media screen and (max-width: 767px) {
  .subhead04 {
    font-size: 1.7rem;
  }
}

.subhead05 h3 {
  width: 100%;
  padding: 15px 0;
  margin-bottom: 20px !important;
  font-size: 1.8rem;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .subhead05 h3 {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .subhead05 h3 {
    font-size: 1.6rem;
  }
}
.subhead05 h3 span {
  display: block;
}

/****************************************

footer-PC

*****************************************/
footer {
  background: #3E785E;
}
@media screen and (max-width: 767px) {
  footer {
    width: 100%;
    margin-bottom: 60px;
    background: #153d25;
  }
}
footer p,
footer a {
  color: #fff;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  footer p,
  footer a {
    font-size: 1.3rem;
  }
}
footer #pc_footer {
  width: 100%;
}
footer .copyright {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  padding: 0 0 40px;
}
@media screen and (max-width: 767px) {
  footer .copyright {
    padding: 15px 30px;
    background: #0e2818;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
  }
}
footer .f_btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  text-align: right;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  footer .f_btn {
    display: none;
  }
}
footer .f_btn a {
  display: block;
}
footer .footer_map {
  position: relative;
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 767px) {
  footer .footer_map {
    height: auto;
    aspect-ratio: 4/3;
  }
}
footer .footer_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}
footer .footer_box {
  width: 100%;
  padding: 45px 4.68% 15px;
}
@media screen and (min-width: 768px) {
  footer .footer_box {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_box {
    width: 100%;
    padding: 50px 30px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_box .f_inner {
    width: 100%;
  }
}
footer .footer_box .f_logo {
  width: 280px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  footer .footer_box .f_logo {
    width: 160px;
    margin: 0 auto 20px;
  }
}
footer .footer_box .f_logo a {
  display: inline-block;
}
footer .footer_box .f_logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  footer .footer_box .footer_box-left {
    display: flex;
  }
}
footer .footer_box .f_calendar {
  height: 100%;
  text-align: center;
  padding: 15px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  padding-left: 60px;
  margin-left: 60px;
}
@media screen and (max-width: 1420px) {
  footer .footer_box .f_calendar {
    padding-left: 30px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_box .f_calendar {
    border-left: none;
    padding: 20px 0 0 0;
    margin: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}
footer .footer_box .f_calendar p {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .footer_box .f_calendar .wpsbc-container {
  width: 200px;
}
@media screen and (max-width: 767px) {
  footer .footer_box .f_calendar .wpsbc-container {
    width: 100%;
    margin: auto;
  }
}
footer .footer_box .f_calendar .wpsbc-container[data-columns] .wpsbc-calendars .wpsbc-calendar {
  max-width: 100% !important;
}
footer .footer_box .f_calendar .wpsbc-container .wpsbc-calendars .wpsbc-calendar table tr td .wpsbc-date-inner {
  height: 32px !important;
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  footer .footer_box .f_info {
    text-align: center;
  }
}
footer .footer_box .f_info .add {
  font-size: 1.3rem;
}
footer .footer_box .f_info .tel {
  width: 190px;
  margin: 4px 0;
}
@media screen and (max-width: 767px) {
  footer .footer_box .f_info .tel {
    margin: 15px 0;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_box .f_info .hours_wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
}
footer .footer_box .f_info .hours_wrap .hours {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
footer .footer_box .f_info .hours_wrap .hours dt {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #3E785E;
  background: #fff;
  border-radius: 3px;
  width: 40px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  footer .footer_box .f_info .hours_wrap .hours dt {
    background: none;
    color: #fff;
    width: auto;
    font-size: 1rem;
    margin-right: 5px;
  }
}
footer .footer_box .f_info .hours_wrap .hours dd {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer .footer_box .f_info .hours_wrap .hours dd {
    font-size: 1rem;
  }
}
footer .footer_box .f_sns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
footer .footer_box .f_sns a {
  width: 45px;
}
footer .pagetop {
  display: block;
  margin-left: 50px;
}
footer .sitemap {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
@media screen and (max-width: 1420px) {
  footer .sitemap {
    gap: 20px;
  }
}
footer .sitemap li > ul > li {
  position: relative;
  padding-left: 20px;
}
footer .sitemap li > ul > li::before {
  content: "";
  width: 10px;
  aspect-ratio: 13/12;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(images/arr.svg) no-repeat center/contain;
}
footer .sitemap li > ul > li a {
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
  font-weight: 400;
  display: inline-block;
  position: relative;
}
footer .sitemap li > ul > li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
footer .sitemap li > ul > li a:hover {
  color: rgba(255, 255, 255, 0.7);
}
footer .sitemap li > ul > li a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
footer .sitemap li dl dt {
  position: relative;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Gloucester Pro Bold Extra Condensed", Sans-serif;
}
footer .sitemap li dl dd {
  position: relative;
  line-height: 1.5;
  padding-left: 20px;
}
footer .sitemap li dl dd::before {
  content: "";
  width: 10px;
  aspect-ratio: 13/12;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(images/arr.svg) no-repeat center/contain;
}
footer .sitemap li dl dd a {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  line-height: 2;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
footer .sitemap li dl dd a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
footer .sitemap li dl dd a:hover {
  color: rgba(255, 255, 255, 0.7);
}
footer .sitemap li dl dd a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

@media screen and (min-width: 768px) {
  #sp_footer,
  .sp_bana {
    display: none;
  }
}
/****************************************

footer-SP

*****************************************/
@media screen and (max-width: 767px) {
  footer #pc_footer,
  footer .sitemap,
  footer .sp_floating {
    display: none;
  }
  footer #sp_footer {
    width: 100%;
  }
  footer {
    /* ----sp追従---- */
  }
  footer .sp_bana {
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    height: 60px;
    bottom: 0;
    left: 0;
    z-index: 999;
  }
  footer .sp_bana .sp_bana_parts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 20%;
    background: #0e2818;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  footer .sp_bana .sp_bana_parts a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  footer .sp_bana .sp_bana_parts span {
    position: relative;
    display: block;
    height: auto;
    padding-top: 30px;
    line-height: 1.4;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: #fff;
  }
  footer .sp_bana .sp_bana_parts span::after {
    content: "";
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    width: 100%;
    height: 30px;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
  }
  footer .sp-tel::after {
    background-image: url(images/sp-tel.svg);
    background-size: 18px;
  }
  footer .sp-calendar::after {
    background-image: url(images/sp-calendar.svg);
    background-size: 22px;
  }
  footer .sp-map::after {
    background-image: url(images/sp-map.svg);
    background-size: 20px;
  }
  footer .sp-contact::after {
    background-image: url(images/sp-contact.svg);
    background-size: 20px;
  }
  footer .sp-pagetop::after {
    background-image: url(images/sp-pagetop.svg);
    background-size: 20px;
  }
}
/****************************************

Contact Form7

*****************************************/
.wpcf7 {
  width: 100%;
}

.form_row {
  display: flex;
  margin-bottom: 30px;
  padding: 0 20px 30px 20px;
  border-bottom: 1px dotted #AAA;
}

.last_row {
  margin-bottom: 30px;
  padding: 0 20px;
  border-bottom: none;
}

.form_row .form_label {
  width: 330px;
}

.form_row .form_label .required {
  display: inline-block;
  color: #FFF;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0 4px;
  background: #CC0000;
  margin-right: 10px;
  border-radius: 3px;
}

.form_row .form_label .any {
  display: inline-block;
  color: #797979;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0 4px;
  background: #D7D7D7;
  margin-right: 10px;
  border-radius: 3px;
}

.form_row .form_input {
  width: calc(100% - 330px);
}

.wpcf7-form-control {
  width: 100%;
}

select.wpcf7-form-control {
  width: auto;
}

.wpcf7-form input {
  padding: 10px;
  border: 1px solid #CCC;
  border-radius: 3px;
}

.wpcf7-form textarea {
  padding: 10px;
  border: 1px solid #CCC;
  border-radius: 3px;
}

.form_row .form_input_post {
  width: 180px;
}

.form_row .form_input_post_txt {
  color: #B20000;
  font-weight: normal;
  font-size: 1.3rem;
}

.tc input[type=submit] {
  cursor: pointer;
  width: 360px;
  max-width: 100%;
  padding: 18px;
  border: 1px solid #3E785E;
  background-color: #3E785E;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  margin: 10px auto 0;
  font-family: "NotoSansJP", "メイリオ", "Meiryo", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
}

.wpcf7 .tc input[type=submit]:hover {
  background-color: #fff;
  color: #3E785E;
  transition: all 0.25s;
}

.wpcf7-response-output {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .form_row {
    flex-direction: column;
    padding: 0 0 20px 0;
  }
  .last_row {
    margin-bottom: 0;
  }
  .form_row .form_label {
    width: 100%;
    margin-bottom: 5px;
  }
  .form_row .form_input {
    width: 100%;
  }
  .ajax-loader {
    width: auto;
  }
  span.wpcf7-list-item {
    display: block;
  }
  .tc input[type=submit] {
    font-size: 1.4rem;
    padding: 10px;
    display: inherit;
    height: 50px;
  }
}
/****************************************

clearfix

*****************************************/
.clearfix {
  display: inline-block;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

/* Hides from IE Mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End Hack */