@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap");
/*
Theme Name:ヘルパーステーション Aｒｉの実 | 株式会社リーエンデ 大分市 訪問介護
Description:クローバー技建株式会社
Version: 1.0
License:株式会社リーエンデ
License URI:https://www.le-ende.co.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: #fff;
  font-weight: normal;
  min-width: 1240px;
  font-family: "M PLUS 1", "メイリオ", "Meiryo", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  position: relative;
  z-index: 0;
}

@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;
  letter-spacing: 0.2em;
}

h1 {
  line-height: 1.4;
  font-size: 3rem;
  letter-spacing: 0.2em;
  font-weight: 500;
}

h2 {
  line-height: 1.4;
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  font-weight: 500;
}

h3 {
  line-height: 1.4;
  letter-spacing: 0.2em;
  font-weight: 500;
}

h4 {
  line-height: 1.4;
  letter-spacing: 0.2em;
  font-weight: 500;
}

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

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

*****************************************/
a:link,
a:visited {
  color: #60c077;
  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: #60c077;
  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: #ffc73c;
  text-decoration: underline;
}

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

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

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

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

.btn a {
  width: 100%;
  height: 100%;
  font-size: 1.7rem;
  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: #fff;
  box-sizing: border-box;
  background: none;
  border: 1px solid #60c077;
  box-sizing: border-box;
  background: #60c077;
  border-radius: 100vmax;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn a {
    font-size: 1.5rem;
    padding: 17px;
  }
}
.btn a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.btn a:hover {
  background: #fff;
  color: #60c077;
}
.btn a:hover::before {
  border-top: 1px solid #60c077;
  border-right: 1px solid #60c077;
}

.btn02 a {
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  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: #fff;
  box-sizing: border-box;
  background: none;
  background: #60c077;
  border-radius: 100vmax;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn02 a {
    font-size: 1.5rem;
    padding: 17px;
  }
}
.btn02 a:hover {
  background: #ffc73c;
}
.btn02 a img {
  width: auto;
  margin-right: 10px;
}

.btn03 a {
  width: 100%;
  height: 100%;
  font-size: 2rem;
  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: #333;
  background: none;
  background: #ffc73c;
  border-radius: 100vmax;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn03 a {
    font-size: 1.6rem;
    padding: 17px;
  }
}
.btn03 a:hover {
  background: #60c077;
}
.btn03 a img {
  width: auto;
  margin-right: 10px;
}

.btn04 a {
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #333;
  background: none;
  border: 1px solid #60c077;
  box-sizing: border-box;
  border-radius: 100vmax;
  text-align: center;
  color: #60c077;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .btn04 a {
    font-size: 1.6rem;
    padding: 6px 17px;
  }
}
.btn04 a .jp {
  font-size: 1.6rem;
  color: #333;
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .btn04 a .jp {
    font-size: 1.3rem;
  }
}
.btn04 a .number {
  font-size: 2.6rem;
}

.btn05 {
  margin-bottom: 30px;
}
.btn05 a {
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding: 4px 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #333;
  background: none;
  border: 1px solid #12b0e5;
  box-sizing: border-box;
  border-radius: 100vmax;
  text-align: center;
  color: #0d3482;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .btn05 a {
    font-size: 1.6rem;
    padding: 0px 17px;
  }
}
.btn05 a:hover {
  background: #d0effa;
}
.btn05 a img {
  width: auto;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .btn05 a img {
    width: 45px;
  }
}
.btn05 .supplement {
  text-align: center;
  font-size: 1.4rem;
  display: block;
  margin-top: 10px;
}

.btn06 a {
  width: 100%;
  height: 100%;
  font-size: 1.7rem;
  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: #fff;
  box-sizing: border-box;
  background: none;
  background: #60c077;
  border-radius: 100vmax;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn06 a {
    font-size: 1.5rem;
    padding: 17px;
  }
}
.btn06 a:hover {
  background: #ffc73c;
}
.btn06 a img {
  width: auto;
  margin-left: 10px;
}

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

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

ヘッダー　共通

*****************************************/
header {
  width: 100%;
  position: relative;
  z-index: 0;
}
header.top_header_box {
  width: 100%;
  background: url(images/bg01.png) no-repeat center bottom;
  padding-bottom: 30px;
}
header.page_header_box {
  width: 100%;
  background: url(images/bg04.png) no-repeat center bottom;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  header.page_header_box {
    padding-bottom: 40px;
  }
}
header .header_box {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 30px 200px 0 60px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  header .header_box {
    padding: 15px 15px 0;
    margin-bottom: 10px;
    justify-content: flex-start;
  }
}
header .header_box .h_logo {
  line-height: 1;
}
@media screen and (min-width: 768px) {
  header .header_box .h_logo {
    position: absolute;
    top: 40px;
    left: 60px;
    z-index: 100;
  }
}
@media screen and (max-width: 767px) {
  header .header_box .h_logo {
    width: 110px;
  }
}
header .header_box .h_logo img {
  width: 100%;
  height: auto;
}
header .header_box .header_tel {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
}
header .header_box .header_tel img {
  margin-right: 10px;
}
header .scroll {
  position: absolute;
  left: 60px;
  bottom: 20%;
  z-index: 10;
  display: flex;
  align-items: center;
  writing-mode: vertical-lr;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  header .scroll {
    display: none;
  }
}
header .scroll::before {
  animation: scroll 3.2s infinite;
  background-color: #999;
  bottom: 0;
  content: "";
  height: 80px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@media screen and (max-width: 767px) {
  header .scroll {
    display: none;
  }
}
header .scroll a {
  text-decoration: none;
  color: #999;
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1360px) {
  header .scroll a {
    font-size: 1rem;
  }
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/****************************************

PCヘッダー

*****************************************/
@media print, screen and (min-width: 768px) {
  #sp_header,
  #sp_navi,
  #toggle {
    display: none;
  }
  .header_box-right .header_box-right_link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1360px) {
  .header_box-right {
    gap: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .h_btn {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    width: 140px;
    aspect-ratio: 1/1;
  }
  .h_btn a {
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 11px;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
    background: #ffc73c;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 100vmax;
  }
  .h_btn a:hover {
    background: #fcdf3d;
  }
  .h_btn span {
    display: block;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    margin-top: 5px;
  }
  .h_btn img {
    margin-bottom: 10px;
  }
}
/****************************************

SPヘッダー

*****************************************/
@media screen and (max-width: 767px) {
  img {
    width: 100%;
    height: auto;
  }
  .header_box-right,
  .h_btn,
  .h_tel {
    display: none;
  }
  #toggle {
    background: #60c077;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #toggle {
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 9999;
    padding: 14px;
  }
}
@media screen and (max-width: 767px) {
  #toggle div {
    position: relative;
  }
  #toggle span {
    display: block;
    position: absolute;
    /*#navToggledivに対して*/
    width: 100%;
    height: 1px;
    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;
  }
  #toggle p {
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    line-height: 1;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 30px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #toggle p {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .open_navi #toggle span {
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  /*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;
    right: 0;
    bottom: 0;
    width: 100vw;
    overflow-y: scroll;
    text-align: left;
    background: rgba(255, 255, 255, 0.8);
    z-index: 999;
    transform: translateX(100%);
    transition: 0.7s ease-in-out;
  }
  .open_navi #sp_navi {
    transform: translateX(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: 140px 20px 40px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #sp_navi .menu {
    padding: 80px 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  #sp_navi .menu .menu-item {
    width: 100%;
    text-align: center;
    border-bottom: #ccc 1px solid;
    cursor: pointer;
    color: #60c077;
    margin: 0 auto;
    font-size: 1.4rem;
    box-sizing: border-box;
  }
  #sp_navi .menu-item a,
  #sp_navi .menu-item span {
    display: block;
    padding: 15px 0 14px;
  }
  #sp_navi .menu-item a:link,
  #sp_navi .menu-item a:visited,
  #sp_navi .menu-item a:hover,
  #sp_navi .menu-item a:active {
    text-decoration: none;
    color: #60c077;
  }
  #sp_navi .sub-menu {
    width: 100%;
    text-align: center;
    display: none;
  }
  #sp_navi .sub-menu li {
    width: 100%;
    text-align: center;
  }
  #sp_navi .sub-menu li a {
    display: block;
    padding: 11px 0 10px;
    background: rgba(255, 255, 255, 0.85);
    background: #60c077;
    color: #fff !important;
  }
  #sp_navi .sub-menu li a:link,
  #sp_navi .sub-menu li a:visited,
  #sp_navi .sub-menu li a:hover,
  #sp_navi .sub-menu li a:active {
    color: #fff;
    text-decoration: none;
  }
  #sp_navi .sub-menu li a:hover {
    color: #ccc;
    background: #8cb157;
  }
  #sp_navi .menu-item-has-children {
    position: relative;
  }
  #sp_navi .menu-item-has-children::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 0px;
    border-top: solid 1px #60c077;
    border-right: solid 1px #60c077;
    transform: rotate(135deg);
    transition: 0.2s ease-in-out;
    position: absolute;
    top: 14px;
    right: 20px;
  }
  #sp_navi .menu-item-has-children.menu_open::before {
    transform: rotate(-45deg);
    transition: 0.2s ease-in-out;
    top: 22px;
  }
}
/****************************************

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: center;
}
#g_navi .menu:before {
  content: "";
  display: table;
}
#g_navi .menu:after {
  content: "";
  display: table;
  clear: both;
}
#g_navi .menu > li {
  position: relative;
  cursor: pointer;
  margin-left: 50px;
}
@media screen and (max-width: 1360px) {
  #g_navi .menu > li {
    margin-left: 35px;
  }
}
#g_navi .menu li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #6e4721;
  padding: 15px 0;
  text-align: center;
}
#g_navi .menu li ul {
  min-width: 180px;
  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: #60c077;
}
#g_navi .menu li ul li a:hover {
  background: #fff;
  color: #60c077;
  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: #60c077;
    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%;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  #mv_top {
    padding-bottom: 20px;
  }
}
#mv_top::before {
  content: "";
  background: url(images/catch_sub.svg) no-repeat center/contain;
  width: 412px;
  aspect-ratio: 412/34;
  position: absolute;
  left: 12%;
  bottom: 70px;
}
@media screen and (max-width: 767px) {
  #mv_top::before {
    width: 50%;
    left: 30px;
    bottom: 0;
  }
}
#mv_top .mv_img {
  max-width: 1252px;
  width: 65.2%;
  margin: 0 100px 0 auto;
}
@media screen and (max-width: 767px) {
  #mv_top .mv_img {
    width: 100%;
    margin-left: 30%;
  }
}
#mv_top .mv_img img {
  width: 100% !important;
  height: auto;
}
#mv_top .mv_txt {
  position: absolute;
  z-index: 100;
  left: 15.6%;
  top: 46%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #mv_top .mv_txt {
    left: 10%;
  }
}
#mv_top .mv_txt p {
  font-size: 3rem;
  font-size: clamp(2.2rem, 1.8vw, 3rem);
  letter-spacing: 0.2em;
  color: #7f4f21;
  writing-mode: vertical-rl;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #mv_top .mv_txt p {
    font-size: 1.4rem;
    font-size: clamp(1.4rem, 3.2vw, 3rem);
    writing-mode: vertical-rl;
  }
}

#mv_page {
  width: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-left: auto;
}
#mv_page .mv_img {
  max-width: 1252px;
  width: 64.2%;
  margin: 0 100px 0 auto;
}
@media screen and (max-width: 767px) {
  #mv_page .mv_img {
    width: 100%;
    margin-left: 24%;
  }
}
#mv_page .mv_img img {
  width: 100% !important;
  height: auto;
}
#mv_page .mv_txt {
  position: absolute;
  z-index: 100;
  left: calc((100% - 1200px) / 2);
  left: 20%;
  top: 46%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #mv_page .mv_txt {
    left: 10%;
  }
}
#mv_page .mv_txt p {
  font-size: clamp(3.2rem, 2.6vw, 4rem);
  letter-spacing: 0.2em;
  color: #7f4f21;
  writing-mode: vertical-rl;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #mv_page .mv_txt p {
    font-size: 1.8rem;
  }
}

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

.metaslider .flexslider {
  margin: 0 !important;
  padding-bottom: 40px;
}

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

content 共通設定

*****************************************/
.img_round img {
  border-radius: 14px;
}
@media screen and (max-width: 767px) {
  .img_round img {
    border-radius: 8px;
  }
}

.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 {
  padding: 0 6.25%;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 0 10px;
  }
}
.breadcrumb p {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #999;
}
@media screen and (max-width: 767px) {
  .breadcrumb p {
    font-size: 1rem;
  }
}
.breadcrumb a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #999;
}
.breadcrumb a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #60c077;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.breadcrumb a:hover {
  color: #60c077;
}
.breadcrumb a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

main#top_main {
  width: 100%;
  margin: 80px auto 120px;
}
@media screen and (max-width: 767px) {
  main#top_main {
    margin: 0 auto 60px;
  }
}

main#page_main {
  width: 100%;
}

@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_c {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .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;
  }
  .flex_r_c {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  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_mb40 {
    margin-bottom: 40px;
  }
  a[href^="tel:"] {
    text-decoration: none;
  }
  .tel_none {
    pointer-events: none;
    text-decoration: none;
  }
}
/****************************************

contentトップ用

*****************************************/
.top_box01 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .top_box01 {
    margin-bottom: 60px;
    padding: 0 10px;
  }
}
.top_box01 .btn {
  width: 240px;
  margin: 40px 0 0 auto;
}
@media screen and (max-width: 767px) {
  .top_box01 .btn {
    margin: 30px auto 0;
  }
}

.top_box02 {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto 70px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .top_box02 {
    margin-bottom: 60px;
    padding: 0 10px;
  }
}
@media screen and (min-width: 768px) {
  .top_box02 figure {
    width: calc(43.6% + 40px);
    padding-right: 40px;
  }
}
.top_box02 figure img {
  width: 100%;
  height: auto;
}
.top_box02 .top_box02_inner {
  width: 690px;
}
@media screen and (max-width: 767px) {
  .top_box02 .top_box02_inner {
    width: 100%;
    margin-top: 20px;
  }
}
.top_box02 .top_box02_inner ul li {
  width: 100%;
}
.top_box02 .top_box02_inner ul li h3 {
  color: #60c077;
  font-size: 2.6rem;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .top_box02 .top_box02_inner ul li h3 {
    font-size: 2rem;
  }
}
.top_box02 .top_box02_inner ul li h3 span {
  display: inline-block;
  color: #fff;
  background: #60c077;
  width: 42px;
  height: 42px;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  font-size: 1.8rem;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .top_box02 .top_box02_inner ul li h3 span {
    margin-right: 10px;
  }
}
.top_box02 .top_box02_inner ul li:not(:last-child) {
  margin-bottom: 30px;
}
.top_box02 .top_box02_inner ul li:nth-child(2) h3 {
  color: #53b1e2;
}
.top_box02 .top_box02_inner ul li:nth-child(2) h3 span {
  background: #53b1e2;
}
.top_box02 .top_box02_inner ul li:nth-child(3) h3 {
  color: #ffc73c;
}
.top_box02 .top_box02_inner ul li:nth-child(3) h3 span {
  background: #ffc73c;
}

.top_box03_wrap {
  width: 100%;
  background: url(images/bg02.png) no-repeat center;
  padding: 110px 0 0;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .top_box03_wrap {
    height: 1195px;
  }
}
@media screen and (max-width: 767px) {
  .top_box03_wrap {
    background: url(images/bg02.png) no-repeat center/cover;
    padding: 60px 0;
    margin-bottom: 60px;
  }
}
.top_box03_wrap .top_box03 {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .top_box03_wrap .top_box03 {
    padding: 0 10px;
  }
}
.top_box03_wrap .top_box03 h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_box03_wrap .top_box03 h2 {
    margin-bottom: 20px;
  }
}
.top_box03_wrap .top_box03 .top_box03_bana {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px 5%;
}
@media screen and (max-width: 767px) {
  .top_box03_wrap .top_box03 .top_box03_bana {
    gap: 20px 2%;
  }
}
.top_box03_wrap .top_box03 .top_box03_bana a:nth-child(n+2) {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .top_box03_wrap .top_box03 .top_box03_bana a:nth-child(n+2) {
    width: 32%;
  }
}
.top_box03_wrap .top_box03 .top_box03_bana figure {
  width: 100%;
}
.top_box03_wrap .top_box03 .top_box03_bana figure img {
  width: 100%;
  height: auto;
}

.top_box04 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 120px;
}
@media screen and (max-width: 767px) {
  .top_box04 {
    margin-bottom: 60px;
    padding: 0 10px;
  }
}
.top_box04 h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_box04 h2 {
    margin-bottom: 20px;
  }
}

.faq_box {
  width: 100%;
  border: 1px solid #60c077;
  box-sizing: border-box;
  border-radius: 12px;
  overflow: hidden;
}
.faq_box:not(:last-child) {
  margin-bottom: 30px;
}
.faq_box dt {
  background: #dbf0e0;
  padding: 11px 20px 11px 70px;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  line-height: 1.4;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .faq_box dt {
    font-size: 1.7rem;
    padding: 11px 20px 11px 60px;
  }
}
.faq_box dt::before {
  content: "Q";
  color: #fff;
  background: #60c077;
  font-size: 3rem;
  width: 55px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .faq_box dt::before {
    font-size: 2.4rem;
    width: 45px;
  }
}
.faq_box dd {
  padding: 20px 20px 20px 70px;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  line-height: 1.4;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .faq_box dd {
    font-size: 1.4rem;
    padding: 12px 20px 12px 60px;
  }
}
.faq_box dd::before {
  content: "A";
  color: #60c077;
  font-size: 3rem;
  width: 55px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .faq_box dd::before {
    font-size: 2.4rem;
    width: 45px;
  }
}

.top_box05 {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto 140px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .top_box05 {
    padding: 0 10px;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  .top_box05 figure {
    max-width: 647px;
    width: calc(41% + 40px);
  }
}
.top_box05 figure img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .top_box05 figure img {
    padding-right: 40px;
  }
}
.top_box05 .top_box05_inner {
  width: 750px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .top_box05 .top_box05_inner {
    width: 100%;
    margin-top: 20px;
  }
}
.top_box05 .top_box05_inner .btn_wrap {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top_box05 .top_box05_inner .btn_wrap {
    margin-top: 30px;
    gap: 10px 2%;
  }
}
.top_box05 .top_box05_inner .btn_wrap .btn {
  max-width: 240px;
  width: 32%;
}
@media screen and (max-width: 767px) {
  .top_box05 .top_box05_inner .btn_wrap .btn {
    width: 49%;
  }
}
@media screen and (max-width: 767px) {
  .top_box05 .top_box05_inner .btn_wrap .btn:last-child {
    width: 100%;
  }
}

.top_box06 {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto 180px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .top_box06 {
    margin: 0 auto 100px;
    padding: 0 10px;
  }
}
.top_box06 .top_instagram_box {
  max-width: 740px;
  width: 49%;
}
@media screen and (max-width: 767px) {
  .top_box06 .top_instagram_box {
    width: 100%;
  }
}
.top_box06 .top_instagram_box h2 {
  text-align: center;
  margin-bottom: 20px;
}
.top_box06 .top_instagram_box h2 img {
  width: auto;
}
.top_box06 .top_instagram_box figure img {
  width: 100%;
  height: auto;
}
.top_box06 .top_instagram_box .btn02 {
  width: 260px;
  margin: 30px auto 0;
}
.top_box06 .top_movie {
  max-width: 660px;
  width: 44%;
  aspect-ratio: 16/9;
  margin: 62px auto 0;
}
@media screen and (max-width: 767px) {
  .top_box06 .top_movie {
    width: 100%;
  }
}
.top_box06 .top_movie picture {
  width: 100%;
  height: 100%;
}
.top_box06 .top_movie picture img {
  width: 100%;
  height: auto;
}

.top_box07 {
  max-width: 1660px;
  width: 100%;
  margin: 120px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top_box07 {
    padding: 0 10px;
    margin-top: 60px;
  }
}
.top_box07 .btn {
  width: 260px;
}
@media screen and (min-width: 768px) {
  .top_box07 .btn {
    position: absolute;
    left: 20px;
    top: 160px;
  }
}
@media screen and (max-width: 767px) {
  .top_box07 .btn {
    margin: 30px auto 0;
  }
}

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

news トップ用

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

.news_post {
  width: 76%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6%;
}
@media screen and (max-width: 767px) {
  .news_post {
    width: 100%;
    gap: 30px 2%;
  }
}
.news_post article {
  width: 23.8%;
}
@media screen and (max-width: 767px) {
  .news_post article {
    width: 49%;
  }
}
.news_post article a {
  text-decoration: none;
}
.news_post article a figure {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 20px;
}
.news_post article a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s;
}
.news_post article a figure .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(255, 196, 67, 0.5);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.news_post article a figure .mask .caption {
  color: #fff;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .news_post article a figure .mask .caption {
    font-size: 1.2rem;
  }
}
.news_post article a .date {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #aaa;
  display: inline-block;
  margin-bottom: 5px;
}
.news_post article a h3 {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .news_post article a h3 {
    width: 100%;
    font-size: 1.4rem;
  }
}
.news_post article a:hover img {
  filter: blur(4px);
}
.news_post article a:hover .mask {
  opacity: 1;
}

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

content下層用

*****************************************/
.about_box01 {
  max-width: 1370px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .about_box01 {
    padding: 0 10px;
    margin-bottom: 60px;
  }
}
.about_box01 figure {
  max-width: 619px;
  width: 46.5%;
}
@media screen and (max-width: 767px) {
  .about_box01 figure {
    width: 100%;
    margin: 0 auto;
  }
}
.about_box01 figure img {
  width: 100%;
  height: auto;
}
.about_box01 .txt {
  width: 45.85%;
}
@media screen and (max-width: 767px) {
  .about_box01 .txt {
    width: 100%;
    margin-bottom: 40px;
  }
}

.services_box01 {
  text-align: center;
}
.services_box01 .services_logo {
  margin: 0 auto 20px;
  max-width: 507px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .services_box01 .services_logo {
    width: 80%;
  }
}

.list01 li h4 {
  color: #7f4f21;
  font-size: 2rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .list01 li h4 {
    font-size: 1.7rem;
  }
}
.list01 li:not(:last-child) {
  margin-bottom: 30px;
}

.list02 li {
  color: #7f4f21;
  font-size: 1.8rem;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .list02 li {
    font-size: 1.5rem;
  }
}

.services_box02_img {
  position: relative;
  z-index: 0;
  padding-top: 25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .services_box02_img {
    padding-top: 20px;
    margin-bottom: 20px;
  }
}
.services_box02_img figcaption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  color: #fff;
  background: #60c077;
  font-weight: 500;
  font-size: 2.4rem;
  width: 290px;
  padding: 7px;
  border-radius: 100vmax;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .services_box02_img figcaption {
    font-size: 1.7rem;
    width: 60%;
  }
}

.beauty_box01 {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .beauty_box01 {
    padding: 0 10px;
  }
}
.beauty_box01 .beauty_box01_inner_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 80px 4%;
}
@media screen and (max-width: 767px) {
  .beauty_box01 .beauty_box01_inner_wrap {
    gap: 40px 0;
  }
}
.beauty_box01 .beauty_box01_inner_wrap .beauty_box01_inner {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .beauty_box01 .beauty_box01_inner_wrap .beauty_box01_inner {
    width: 100%;
  }
}
.beauty_box01 .beauty_box01_inner_wrap .beauty_box01_inner h3 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .beauty_box01 .beauty_box01_inner_wrap .beauty_box01_inner h3 {
    margin-top: 20px;
  }
}
.beauty_box01 .beauty_box01_inner_wrap .beauty_box01_inner img {
  width: 100%;
  height: auto;
}

.recruit_table {
  width: 100%;
}
.recruit_table th,
.recruit_table td {
  text-align: left;
  font-weight: 400;
  border: 1px solid #60c077;
  box-sizing: border-box;
  margin-top: -1px;
  padding: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .recruit_table th,
  .recruit_table td {
    padding: 15px;
  }
}
.recruit_table th {
  width: 20%;
  background: #dbf0e0;
}
@media screen and (max-width: 767px) {
  .recruit_table th {
    width: 100%;
    display: block;
  }
}
.recruit_table td {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .recruit_table td {
    width: 100%;
    display: block;
  }
}

.recruit_box02 {
  text-align: center;
}
.recruit_box02 h2 {
  color: #60c077;
  font-size: 2rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .recruit_box02 h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
}
.recruit_box02 .btn_wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .recruit_box02 .btn_wrap {
    gap: 10px;
  }
}
.recruit_box02 .btn_wrap .btn03,
.recruit_box02 .btn_wrap .btn04 {
  width: 420px;
}
@media screen and (max-width: 767px) {
  .recruit_box02 .btn_wrap .btn03,
  .recruit_box02 .btn_wrap .btn04 {
    width: 100%;
  }
}
.recruit_box02 .btn_wrap .btn05 {
  width: 460px;
}
@media screen and (max-width: 767px) {
  .recruit_box02 .btn_wrap .btn05 {
    width: 100%;
  }
}

.recruit_bana {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .recruit_bana {
    gap: 2%;
  }
}
@media screen and (max-width: 767px) {
  .recruit_bana a {
    width: 49%;
  }
}

.benefits_box01 {
  max-width: 1460px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
  .benefits_box01 {
    padding: 0 10px;
  }
}
@media screen and (min-width: 768px) {
  .benefits_box01 figure {
    max-width: 580px;
    width: calc(40% + 40px);
  }
  .benefits_box01 figure img {
    width: 100%;
    height: auto;
    padding-right: 40px;
  }
}

.benefits_box02_wrap {
  width: 100%;
  background: url(images/bg02.png) no-repeat center;
  padding: 110px 0 0;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .benefits_box02_wrap {
    height: 1195px;
  }
}
@media screen and (max-width: 767px) {
  .benefits_box02_wrap {
    background: #dbf0e0;
    padding: 60px 0;
    margin-bottom: 60px;
  }
}

.benefits_box03 .btn06 {
  max-width: 380px;
  width: 100%;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .benefits_box03 .btn06 {
    margin: 30px auto 0;
  }
}

.voice_box_wrap {
  background: #e0f5e5;
  border-radius: 30px;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .voice_box_wrap {
    border-radius: 20px;
    padding: 40px 20px;
  }
}
.voice_box_wrap .voice_box:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .voice_box_wrap .voice_box:not(:last-child) {
    margin-bottom: 40px;
  }
}
.voice_box_wrap .voice_box dt {
  margin-left: 80px;
  position: relative;
  z-index: 0;
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .voice_box_wrap .voice_box dt {
    margin-left: 50px;
  }
}
.voice_box_wrap .voice_box dt span {
  padding: 5px 25px;
  background: #60c077;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.1em;
  border-radius: 12px;
  display: block;
}
@media screen and (min-width: 768px) {
  .voice_box_wrap .voice_box dt span {
    min-width: 380px;
  }
}
@media screen and (max-width: 767px) {
  .voice_box_wrap .voice_box dt span {
    font-size: 1.4rem;
    border-radius: 8px;
    padding: 5px 15px;
  }
}
.voice_box_wrap .voice_box dt::before {
  content: "";
  font-size: 3.6rem;
  width: 60px;
  aspect-ratio: 1/1;
  background: url(images/voice_box-q01.png) no-repeat center/contain;
  position: absolute;
  top: -5px;
  left: -80px;
}
@media screen and (max-width: 767px) {
  .voice_box_wrap .voice_box dt::before {
    width: 40px;
    left: -50px;
  }
}
.voice_box_wrap .voice_box dt::after {
  content: "";
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: #60c077;
  position: absolute;
  top: 20px;
  left: -4px;
}
@media screen and (max-width: 767px) {
  .voice_box_wrap .voice_box dt::after {
    top: 14px;
  }
}
.voice_box_wrap .voice_box dd {
  margin-left: auto;
  margin-right: 120px;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .voice_box_wrap .voice_box dd {
    margin-right: 60px;
  }
}
.voice_box_wrap .voice_box dd span {
  padding: 6px 25px;
  background: #fff;
  border: 1px solid #60c077;
  box-sizing: border-box;
  color: #333;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .voice_box_wrap .voice_box dd span {
    min-width: 340px;
    max-width: 800px;
  }
}
@media screen and (max-width: 767px) {
  .voice_box_wrap .voice_box dd span {
    font-size: 1.4rem;
    border-radius: 8px;
    padding: 5px 15px;
  }
}
.voice_box_wrap .voice_box dd::before {
  content: "";
  font-size: 3.6rem;
  width: 92px;
  aspect-ratio: 1/1;
  background: url(images/staff_icon01-2.png) no-repeat center/contain;
  position: absolute;
  top: -20px;
  right: -120px;
}
@media screen and (max-width: 767px) {
  .voice_box_wrap .voice_box dd::before {
    width: 50px;
    right: -60px;
    top: -5px;
  }
}
.voice_box_wrap .voice_box dd::after {
  content: "";
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: #fff;
  position: absolute;
  top: 20px;
  right: -4px;
  border-top: 1px solid #60c077;
  border-right: 1px solid #60c077;
}
@media screen and (max-width: 767px) {
  .voice_box_wrap .voice_box dd::after {
    top: 16px;
  }
}
.voice_box_wrap.orange {
  background: #fef8e3;
}
.voice_box_wrap.orange .voice_box dt span {
  background: #ffc73c;
}
.voice_box_wrap.orange .voice_box dt::before {
  background: url(images/voice_box-q02.png) no-repeat center/contain;
}
.voice_box_wrap.orange .voice_box dt::after {
  background: #ffc73c;
}
.voice_box_wrap.orange .voice_box dd span {
  border: 1px solid #ffc73c;
}
.voice_box_wrap.orange .voice_box dd::before {
  background: url(images/staff_icon02-2.png) no-repeat center/contain;
}
.voice_box_wrap.orange .voice_box dd::after {
  border-top: 1px solid #ffc73c;
  border-right: 1px solid #ffc73c;
}
.voice_box_wrap.green02 .voice_box dd::before {
  background: url(images/staff_icon03-2.png) no-repeat center/contain;
}

.blog_post {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 1.86666%;
}
@media screen and (max-width: 767px) {
  .blog_post {
    width: 100%;
    gap: 30px 2%;
    padding: 0 10px;
  }
}
.blog_post article {
  width: 23.38%;
}
@media screen and (max-width: 767px) {
  .blog_post article {
    width: 49%;
  }
}
.blog_post article a {
  text-decoration: none;
}
.blog_post article a figure {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .blog_post article a figure {
    margin-bottom: 10px;
  }
}
.blog_post article a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s;
}
.blog_post article a figure .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(255, 196, 67, 0.5);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.blog_post article a figure .mask .caption {
  color: #fff;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .blog_post article a figure .mask .caption {
    font-size: 1.2rem;
  }
}
.blog_post article a .date {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #aaa;
  display: inline-block;
  margin-bottom: 5px;
}
.blog_post article a h3 {
  font-size: 1.7rem;
  color: #333;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .blog_post article a h3 {
    width: 100%;
    font-size: 1.4rem;
  }
}
.blog_post article a:hover img {
  filter: blur(4px);
}
.blog_post article a:hover .mask {
  opacity: 1;
}

.table01 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.table01 tr:nth-child(odd) th,
.table01 tr:nth-child(odd) td {
  background: #e0f3e4;
}
.table01 th,
.table01 td {
  text-align: left;
  padding: 16px 25px;
}
.table01 th {
  width: 22%;
  color: #714d2a;
  font-weight: 500;
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  .table01 th {
    border-radius: 10px 0 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .table01 th {
    width: 100%;
    display: block;
    font-size: 1.5rem;
    padding: 10px 20px 0;
    border-radius: 10px 10px 0 0;
  }
}
.table01 td {
  width: 78%;
}
@media screen and (min-width: 768px) {
  .table01 td {
    border-radius: 0 10px 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .table01 td {
    width: 100%;
    display: block;
    padding: 0 20px 10px;
    border-radius: 0 0 10px 10px;
  }
}

.contact_tel {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .contact_tel {
    margin-top: 20px;
  }
}
.contact_tel a {
  width: 100%;
  text-decoration: none;
  color: #60c077;
  text-align: center;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.contact_tel a .tel {
  font-size: 2.4rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .table_scroll {
    overflow: auto;
    white-space: nowrap;
  }
  .table_scroll::before {
    content: "※横にスクロールしてご覧ください";
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: inline-block;
    position: sticky;
    top: 0;
    left: 0;
  }
}

.policy {
  padding: 40px;
  border: 1px solid #60c077;
  box-sizing: border-box;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .policy {
    padding: 25px;
  }
}
.policy span {
  display: block;
  margin-bottom: 15px;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.2em;
  color: #714d2a;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .policy span {
    font-size: 1.6rem;
    text-align: center;
  }
}
.policy p {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .policy p {
    font-size: 1.2rem;
  }
}

.map {
  position: relative;
  width: 100%;
  height: 360px;
  filter: saturate(70%);
}
@media screen and (max-width: 767px) {
  .map {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

aside

*****************************************/
#bottom_area {
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 0;
  background: #f9f6d2;
  border-radius: 20px;
  text-align: center;
  padding: 30px 20px 40px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  #bottom_area {
    width: calc(100% - 20px);
    margin: 0 auto 40px;
  }
}
#bottom_area::before {
  content: "";
  width: 251px;
  aspect-ratio: 251/127;
  background: url(images/Contact.png) no-repeat center/contain;
  position: absolute;
  top: -50px;
  left: 40px;
}
@media screen and (max-width: 767px) {
  #bottom_area::before {
    width: 120px;
    top: -20px;
    left: 20px;
  }
}
#bottom_area::after {
  content: "";
  width: 160px;
  aspect-ratio: 1/1;
  background: url(images/contact_icon.png) no-repeat center/contain;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
#bottom_area h2 {
  color: #714d2a;
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #bottom_area h2 {
    font-size: 2.4rem;
  }
}
#bottom_area .btn03 {
  max-width: 420px;
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  #bottom_area .btn03 {
    margin-top: 20px;
  }
}

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

single.php

*****************************************/
#single_box {
  width: 900px;
  margin: 80px auto 140px;
}
@media screen and (max-width: 767px) {
  #single_box {
    width: 100%;
    margin: 40px auto 60px;
    padding: 0 10px;
  }
}
#single_box h1 {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #single_box h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
#single_box .single_text {
  width: 100%;
}
#single_box .single_text img {
  margin: 15px auto;
  max-width: 100%;
  height: auto;
}
#single_box .single_img {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}
#single_box .single_img img {
  max-width: 900px;
}
#single_box .date {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #999;
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #single_box .date {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
}
#single_box.single_box_works {
  position: relative;
  z-index: 0;
  margin: 140px auto;
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works {
    margin: 60px auto;
  }
}
#single_box.single_box_works .single_img-before {
  width: 320px;
  aspect-ratio: 3/2;
  position: relative;
}
@media screen and (min-width: 768px) {
  #single_box.single_box_works .single_img-before {
    border: 10px solid #fff;
    box-sizing: border-box;
    position: absolute;
    top: -60px;
    left: -90px;
    z-index: 10;
  }
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works .single_img-before {
    width: 100%;
    aspect-ratio: 900/540;
    margin-bottom: 20px;
  }
}
#single_box.single_box_works .single_img-before::before {
  content: "";
  width: 74px;
  height: 70px;
  background: url(images/arr.png) no-repeat center/contain;
  position: absolute;
  left: 50px;
  bottom: -75px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works .single_img-before::before {
    left: 10px;
    bottom: -55px;
  }
}
#single_box.single_box_works .single_img-before img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#single_box.single_box_works .single_img-before .img_cate {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #222;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.7rem;
  line-height: 1;
  text-align: center;
  padding: 5px 20px;
  z-index: 10;
  background: #fff;
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works .single_img-before .img_cate {
    font-size: 1.3rem;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works .single_img-before .img_cate {
    width: 80px;
    padding: 8px 0;
    left: auto;
    right: 15px;
  }
}
#single_box.single_box_works .single_img-after {
  width: 100%;
  aspect-ratio: 900/540;
  position: relative;
  margin-bottom: 40px;
}
#single_box.single_box_works .single_img-after img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#single_box.single_box_works .single_img-after .img_cate {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.1em;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  padding: 5px 25px;
  z-index: 10;
  background: #a71f24;
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works .single_img-after .img_cate {
    font-size: 1.3rem;
    padding: 5px 10px;
    top: 15px;
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works .single_img-after .img_cate {
    width: 80px;
    padding: 8px 0;
  }
}
#single_box.single_box_works .cate {
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  padding: 5px 15px;
  margin-bottom: 5px;
  display: inline-block;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works .cate {
    padding: 5px 10px;
    font-size: 1.2rem;
  }
}
#single_box.single_box_works .cate.new {
  background: #b20000;
}
#single_box.single_box_works .cate.reform {
  background: #60c077;
}
#single_box.single_box_works h1 {
  font-size: 3.4rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works h1 {
    font-size: 1.8rem;
  }
}

.aligncenter {
  display: block;
}

.pager {
  clear: both;
  text-align: center;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .pager {
    padding: 40px 0;
  }
}

a.page-numbers {
  border: solid 1px #666;
  border-radius: 3px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
  color: #666;
  background: #fff;
}
@media screen and (max-width: 767px) {
  a.page-numbers {
    font-size: 1.3rem;
  }
}
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;
}
@media screen and (max-width: 767px) {
  .pager .current {
    font-size: 1.3rem;
  }
}

.nav-below {
  width: 100%;
  margin: 60px 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
  border-top: 1px solid #60c077;
  border-bottom: 1px solid #60c077;
  text-decoration: none;
  color: #60c077;
}
@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: #60c077;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .nav-below a {
    padding: 20px 10px;
    font-size: 1.4rem;
  }
}
.nav-below a:hover {
  background: #60c077;
  color: #fff;
}
.nav-below .next {
  width: 25%;
  border-right: 1px solid #60c077;
}
.nav-below .back {
  width: 50%;
}
.nav-below .prev {
  width: 25%;
  border-left: 1px solid #60c077;
}

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

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: "NotoSerifJP", "EB Garamond", "游明朝", YuMincho, "Times New Roman", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
}

.red {
  color: #b20000;
}

.green {
  color: #60c077;
}

.orange {
  color: #efa11b;
}

.blown {
  color: #7f4f21;
}

.size14 {
  font-size: 1.4rem;
}

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

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

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

.bold {
  font-weight: 500;
}

.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;
}

.mb140 {
  margin-bottom: 140px;
}

.pt140 {
  padding-top: 140px;
}

@media print, screen and (min-width: 768px) {
  .tc {
    text-align: center;
  }
  .w540 {
    width: 540px;
  }
  .w750 {
    width: 750px;
  }
  .w800 {
    width: 800px;
  }
  .page_w1200 {
    width: 100%;
    padding: 0 calc((100% - 1200px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .mb50,
  .mb60 {
    margin-bottom: 40px;
  }
  .mb80 {
    margin-bottom: 40px;
  }
  .mb90,
  .mb100 {
    margin-bottom: 60px;
  }
  .mb120,
  .mb140 {
    margin-bottom: 60px;
  }
  .pt140 {
    padding-top: 60px;
  }
  .page_w1200 {
    padding: 0 10px;
  }
}
/****************************************

タイトル

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

.top_tit01 {
  color: #714d2a;
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 35px;
  background: url(images/tit01.png) no-repeat top left/contain;
  background-size: 32px;
  padding: 3px 0 3px 50px;
}
@media screen and (max-width: 767px) {
  .top_tit01 {
    font-size: 2.2rem;
    background-size: 26px;
    padding: 3px 0 3px 40px;
    margin-bottom: 25px;
  }
}

.top_tit02 {
  text-align: center;
  color: #714d2a;
  font-size: 3em;
  letter-spacing: 0.2em;
  background: url(images/tit01.png) no-repeat top center/contain;
  background-size: 32px;
  padding: 50px 0 0 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_tit02 {
    margin-bottom: 20px;
    font-size: 2.4rem;
    background-size: 26px;
  }
}
.top_tit02 img {
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .top_tit02 img {
    width: auto;
  }
}

.top_tit03 {
  color: #714d2a;
  font-size: 3em;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top_tit03 {
    font-size: 2.4rem;
    padding-left: 20px;
  }
}
.top_tit03 img {
  width: auto;
  display: block;
  margin-left: -20px;
}

.headline {
  text-align: center;
  color: #714d2a;
  font-size: 3em;
  letter-spacing: 0.2em;
  background: url(images/tit01.png) no-repeat top center/contain;
  background-size: 32px;
  padding: 50px 10px 0 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .headline {
    margin-bottom: 30px;
    font-size: 2.4rem;
    background-size: 26px;
  }
}
.headline img {
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .headline img {
    width: auto;
  }
}

.subhead01 {
  color: #60c077;
  margin-bottom: 60px;
  padding: 40px 0;
  background: url(images/tit02.png) no-repeat top center, url(images/tit03.png) no-repeat bottom center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .subhead01 {
    margin-bottom: 30px;
  }
}

.subhead02 {
  color: #7f4f21;
  margin-bottom: 40px;
  padding-bottom: 15px;
  background: url(images/tit04.png) no-repeat bottom center;
  text-align: center;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .subhead02 {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
}

.subhead03 {
  color: #60c077;
  font-size: 2.8em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .subhead03 {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }
}
.subhead03 span {
  display: block;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .subhead03 span {
    font-size: 1.6rem;
  }
}

.subhead04 {
  color: #7f4f21;
  margin-bottom: 15px;
  padding-bottom: 15px;
  background: url(images/tit04.png) no-repeat bottom left;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .subhead04 {
    margin-bottom: 10px;
    font-size: 2.4rem;
    background-size: 200px;
  }
}

.subhead05 {
  padding-left: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .subhead05 {
    padding-left: 20px;
  }
}
.subhead05 span {
  display: block;
  margin: 0 0 20px 30px;
}
@media screen and (max-width: 767px) {
  .subhead05 span {
    margin: 0 0 15px 10px;
  }
}
@media screen and (max-width: 767px) {
  .subhead05 img {
    width: 80px;
  }
}

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

footer-PC

*****************************************/
footer {
  background: url(images/bg03.png) no-repeat top center/cover;
}

@media print, screen and (min-width: 768px) {
  footer #sp_footer {
    display: none;
  }
  footer #pc_footer {
    width: 100%;
  }
  footer #pc_footer .copyright {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-align: center;
    padding: 20px;
  }
  footer #pc_footer .footer_box {
    width: 100%;
    margin: auto;
    padding: 100px 4.5% 0 7.2%;
  }
  footer #pc_footer .footer_box .f_logo {
    margin-bottom: 20px;
  }
  footer #pc_footer .footer_box .f_logo a {
    display: inline-block;
  }
  footer #pc_footer .footer_box .footer_sns {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    margin: 70px 70px 0 0;
  }
  footer #pc_footer .footer_box .sitemap {
    display: flex;
    justify-content: flex-end;
    gap: 60px;
    margin-top: 50px;
  }
  footer #pc_footer .footer_box .sitemap li > ul > li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  footer #pc_footer .footer_box .sitemap li > ul > li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 6px;
    width: 5px;
    height: 5px;
    transition: all 0.3s;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
  }
  footer #pc_footer .footer_box .sitemap li > ul > li::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    aspect-ratio: 1/1;
    border-radius: 100vmax;
    border: 1px solid #333;
    box-sizing: border-box;
  }
  footer #pc_footer .footer_box .sitemap li > ul > li a {
    text-decoration: none;
    color: #333;
    letter-spacing: 0.2em;
    font-size: 1.6rem;
    line-height: 1.5;
    display: inline-block;
    position: relative;
  }
  footer #pc_footer .footer_box .sitemap li > ul > li a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #60c077;
    bottom: 0;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  footer #pc_footer .footer_box .sitemap li > ul > li a:hover {
    color: #60c077;
  }
  footer #pc_footer .footer_box .sitemap li > ul > li a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  footer #pc_footer .footer_box .sitemap li dl dt {
    position: relative;
    color: #60c077;
    letter-spacing: 0.1em;
    font-size: 1.8rem;
    margin-bottom: 5px;
    position: relative;
    font-weight: 500;
  }
  footer #pc_footer .footer_box .sitemap li dl dd {
    position: relative;
    line-height: 1.5;
    padding-left: 30px;
    margin-bottom: 12px;
  }
  footer #pc_footer .footer_box .sitemap li dl dd::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 6px;
    width: 5px;
    height: 5px;
    transition: all 0.3s;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
  }
  footer #pc_footer .footer_box .sitemap li dl dd::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    aspect-ratio: 1/1;
    border-radius: 100vmax;
    border: 1px solid #333;
    box-sizing: border-box;
  }
  footer #pc_footer .footer_box .sitemap li dl dd a {
    color: #333;
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    line-height: 1.5;
    text-decoration: none;
    display: inline-block;
    position: relative;
  }
  footer #pc_footer .footer_box .sitemap li dl dd a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #60c077;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  footer #pc_footer .footer_box .sitemap li dl dd a:hover {
    color: #60c077;
  }
  footer #pc_footer .footer_box .sitemap li dl dd a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  footer .pagetop {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 9999;
  }
}
/****************************************

footer-SP

*****************************************/
@media screen and (max-width: 767px) {
  footer {
    width: 100%;
    padding: 80px 10px 20px;
  }
  footer p,
  footer a {
    font-size: 1.3rem;
    text-align: center;
    color: #333 !important;
    text-decoration: none !important;
    display: block;
  }
  footer .pagetop {
    width: 30px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
  }
  footer #pc_footer,
  footer .sitemap {
    display: none;
  }
  footer #sp_footer {
    width: 100%;
  }
  footer .footer_sns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
  }
  footer .copyright {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-align: center;
  }
}
/****************************************

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 #60c077;
  background-color: #60c077;
  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: #60c077;
  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 */