@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap');

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

/*
Theme Name: タイトルキーワード
Description:
Version: 1.0
License: 案件名
License URI:https://www.
*/
/****************************************

リセット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: #fef8e4;
  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: 1.8;
  letter-spacing: 0.04em;
}

h1 {
  line-height: 1.5;
  font-size: 3.8rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

h2 {
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  font-size: 4.0rem;
  letter-spacing: 0em;
  font-weight: 700;
  color: #754e34;
}

h2 span {
  font-size: 1.8rem;
  color: #7fc563;
}

h3 {
  line-height: 1.5;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {

  li,
  tt,
  tr,
  dt,
  dd,
  p {
    font-size: 1.4rem;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.8rem;
  }
}

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

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

*****************************************/
a:link,
a:visited {
  color: #754e34;
  text-decoration: none;
  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: #754e34;
  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: #754e34;
  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: 200px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  position: relative;
  display: inline-block;
  padding: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #fff;
  background: #7fc563;
  text-align: center;
  border-radius: 10px;
}

@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;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .btn a::before {
    width: 6px;
    height: 6px;
  }
}

.btn a:hover {
  background: #754e34;
}

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

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

ヘッダー　共通

*****************************************/
header {
  width: 100%;
}

@media print,
screen and (min-width: 768px) {
  header .header_box {
    width: 100%;
    background: url(images/top_deco10.png)no-repeat top left,
      url(images/top_deco11.png)no-repeat top right;
  }
}

header .header_box-top {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: auto;
}

@media print,
screen and (min-width: 768px) {
  header .header_box-top {
    padding: 30px 0;
  }
}

header .header_box-top .h_logo {
  filter: drop-shadow(4px 4px 10px #fef8e4);
}

header .header_box-top .h_info {
  display: flex;
  gap: 30px;
}


@media print,
screen and (min-width: 768px) {
  header .header_box-top .h_info .info-item p {
    background-color: #5bbbe8;
    display: flex;
    justify-content: center;
    color: #FFF;
    font-size: 1.5rem;
    border-radius: 14px;
  }

  header .header_box-top .h_info .info-item.info-item_center p {
    background-color: #dc89a1;
  }

  header .header_box-top .h_info .info-item.info-item_right p {
    background-color: #eabe24;
  }
}

header .header_box-top .h_info .info-item img {
  margin-top: 15px;
}

header .header_box-top .h_info .info-item a {
  margin-left: 10px;
}

header .header_box-center {
  width: 1200px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  header .header_box {
    padding: 15px;
  }
}

@media screen and (max-width: 767px) {
  header .header_box .h_logo {
    width: 120px;
  }
}

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

PCヘッダー

*****************************************/
@media print,
screen and (min-width: 768px) {

  #sp_header,
  #sp_navi,
  #toggle {
    display: none;
  }

}

@media screen and (min-width: 768px) and (max-width: 1570px) {
  .header_box-right .h_tel .txt {
    margin: 8px 10px 12px 0;
  }
}

@media print,
screen and (min-width: 768px) {
  .header_box-right .h_tel .number {
    color: #fff;
    font-family: "Lato", sans-serif;
    background: url(images/tel_white.svg) no-repeat left center;
    padding-left: 30px;
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .header_box-right .h_btn {
    margin: 0 30px;
  }
}

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

SPヘッダー

*****************************************/
@media screen and (max-width: 767px) {
  img {
    width: 100%;
    height: auto;
  }

  .h_btn,
  .h_tel,
  .header_box .header_box-top .h_info,
  .header_box .header_box-center {
    display: none;
  }

  #toggle {
    position: fixed;
    right: 10px;
    top: 12px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 9999;
    padding: 8px;
    background: #7fc563;
    border-radius: 3px;
  }

  #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-color: #754e34;
    z-index: 999;
    transform: translateY(-100%);
    transition: 0.7s ease-in-out;
  }

  .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-top: 80px;
    text-align: center;
    border-bottom: rgba(255, 255, 255, 0.3) 1px solid;
  }

  #sp_navi .menu .menu-item {
    width: 100%;
    text-align: center;
    border-top: rgba(255, 255, 255, 0.3) 1px solid;
    cursor: pointer;
    color: #fff;
    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: #fff;
  }

  #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);
    color: #754e34 !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: none;
  }

  #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 #fff;
    border-right: solid 1px #fff;
    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;
  align-items: 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;
  width: calc(100% / 7);
  text-align: center;

}

#g_navi .menu li a {
  width: 100%;
  height: 100%;
  padding-bottom: 10px;
  display: block;
}

@media screen and (max-width: 1570px) {
  #g_navi .menu li a {
    font-size: 1.6rem;
  }
}

#g_navi .menu li a span {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #69BCD8;
  margin-top: 10px;
  letter-spacing: 0.04em;
  font-family: "Lato", sans-serif;
}

#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.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  background: #754e34;
}

#g_navi .menu li ul li a:hover {
  background: #fff;
  color: #754e34;
  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;
}

#g_navi .sub-menu li a:hover {
  color: #fff;
  text-decoration: none;
}

@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: 2px;
    background-color: #754e34;
    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: 730px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin: auto;
}

@media screen and (max-width: 767px) {
  #mv_top {
    width: 100%;
    height: 50vw;
  }
}

#mv_top .mv_img img {
  width: 100%;
  height: 730px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

@media screen and (max-width: 767px) {
  #mv_top .mv_img img {
    height: 50vw;
  }
}

#mv_top .mv_txt {
  position: absolute;
  z-index: 100;
  left: calc((100% - 1200px) / 2 - 27px);
  bottom: 180px;
}

@media screen and (max-width: 767px) {
  #mv_top .mv_txt {
    width: 70%;
    left: 20px;
    bottom: 20px;
  }
}

#mv_page {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin: auto;
}

@media screen and (max-width: 767px) {
  #mv_page {
    width: 100%;
  }
}

#mv_page .mv_img img {
  width: 100%;
  height: 360px;
  -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 {
    height: 32vw;
    -o-object-position: center right;
    object-position: center;
  }
}

#mv_page .mv_txt {
  position: absolute;
  z-index: 100;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  #mv_page .mv_img {
    padding-bottom: 40px;
  }

  #mv_page .mv_txt p {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
  }
}

#mv_page .mv_txt p {
  font-size: 4.0rem;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1;
  color: #754e34;
  text-align: center;
  font-family: "M PLUS Rounded 1c",
    sans-serif;
}

#mv_page .mv_txt p span {
  font-size: 1.8rem;
  color: #7fc563;
  text-align: center;
  display: block;
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  #mv_page .mv_txt p {
    font-size: 2.6rem;
  }
}

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

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

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

content 共通設定

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

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

.youtube-ratio {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #ccc;
}

.youtube-ratio02 {
  width: 1000px;
  aspect-ratio: 5/2;
  text-align: center;
  margin: 50px auto;
  background-color: #ccc;
}

@media screen and (max-width: 767px) {
  .youtube-ratio02 {
    width: 100%;
  }
}

.youtube-ratio iframe {
  width: 100%;
  height: 100%;
}

.youtube-ratio02 iframe {
  width: 100%;
  height: 100%;
}

.breadcrumb {
  padding: 0 calc((100% - 1200px) / 2);
  text-align: right;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 0 10px;
  }
}

.breadcrumb p {
  font-size: 1.3rem;
  color: #999;
}

@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: #754e34;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

.breadcrumb a:hover {
  color: #754e34;
}

.breadcrumb a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

main#top_main {
  width: 100%;
  margin: 0 auto 100px;
}

@media screen and (max-width: 767px) {
  main#top_main {
    margin: 0 0 50px;
  }
}

main#page_main {
  width: 1200px;
  margin: 20px auto 80px;
}

@media screen and (max-width: 767px) {
  main#page_main {
    width: 100%;
    padding: 0px 10px;
    background-size: 34%;
  }
}

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

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

contentトップ用

*****************************************/
.top_box01 {
  width: 100%;
  padding: 100px calc((100% - 1200px) / 2) 50px;
  background-image: url(images/top_bg01.jpg);
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .top_box01 {
    padding: 30px 10px;
  }
}

.top_box01 h2 {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .top_box01 h2 {
    margin-bottom: 20px;
  }
}

.top_box02 {
  width: 100%;
  height: 100%;
  padding: 60px calc((100% - 1200px) / 2) 90px;
  margin: 60px 0 100px 0;
  background-image: url(images/top_bg02.png);
  background-repeat: no-repeat;
  background-position: top center;
}

@media screen and (max-width: 767px) {
  .top_box02 {
    padding: 30px 10px 50px 10px;
    margin: 50px 0;
    background-size: cover;
  }
}

.top_box02 h2 {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .top_box02 h2 {
    font-size: 3.0rem;
    margin-bottom: 20px;
  }
}

.top_box02 h2 span {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0em;
  margin-bottom: 10px;
}

.top_box02 .top_shiori02 {
  width: 500px;
  padding: 10px 0px 10px 70px;
  font-size: 3.4rem;
  text-align: left;
  color: #FFF;
  background-image: url(images/top_bg04.png);
  background-repeat: no-repeat;
}

.top_box02 .top_shiori03 {
  width: 500px;
  padding: 10px 0px 10px 70px;
  font-size: 3.4rem;
  text-align: left;
  color: #FFF;
  background-image: url(images/top_bg05.png);
  background-repeat: no-repeat;
}

.top_box02 .top_shiori01 {
  width: 500px;
  padding: 10px 0px 10px 70px;
  font-size: 3.4rem;
  text-align: left;
  color: #FFF;
  background-image: url(images/top_bg03.png);
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {

  .top_box02 .top_shiori01,
  .top_box02 .top_shiori02,
  .top_box02 .top_shiori03 {
    width: 100%;
    background-size: contain;
    font-size: 2.5rem;
    padding: 5px 0px 5px 40px;
  }
}



.top_box02 figure {
  position: relative;
  z-index: 0;
}

.top_box02 figure::after {
  right: -20px;
  bottom: -20px;
  content: "";
  position: absolute;
  z-index: -1;
  background: #d8edce;
  border-radius: 30px;
  height: 100%;
  width: 100%;
}

.top_intro_text01 {
  padding: 30px 0px;
}

@media print,
screen and (min-width: 768px) {
  .top_intro_text01 {
    background-image: url(images/top_deco03.png);
    background-repeat: no-repeat;
    background-position: right 30px;
  }
}

@media screen and (max-width: 767px) {
  .top_intro_text01 {
    padding: 20px 0px;
  }
}

.top_intro_text02 {
  padding: 30px 0px;
}

@media print,
screen and (min-width: 768px) {
  .top_intro_text02 {
    background-image: url(images/top_deco04.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 23%;
  }
}

.top_intro_text03 {
  padding: 30px 0px;
}

@media print,
screen and (min-width: 768px) {
  .top_intro_text03 {
    background-image: url(images/top_deco05.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 20%;
  }
}

.top_ttl01 {
  font-size: 4.0rem;
}

@media screen and (max-width: 767px) {
  .top_ttl01 {
    font-size: 2.6rem;
  }
}

.top_ttl02 {
  font-size: 3.5rem;
  font-weight: 500;
  color: #754e34;
}

@media screen and (max-width: 767px) {
  .top_ttl02 {
    font-size: 2.4rem;
  }
}

.top_ttl03 {
  font-size: 4.0rem;
  color: #ffb955;
}

@media screen and (max-width: 767px) {
  .top_ttl03 {
    font-size: 2.6rem;
  }
}

.headline_dot {
  background-image: url(images/tit01.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  padding-bottom: 50px;
}



@media screen and (max-width: 767px) {
  .top_box02 h2 span {
    font-size: 1.3rem;
  }
}

.top_box02 .top_box02_list {
  display: flex;
  justify-content: center;
  gap: 45px;
}

@media screen and (max-width: 767px) {
  .top_box02 .top_box02_list {
    gap: 30px;
    flex-direction: column;
  }
}

.top_box02 .top_box02_list li {
  width: 370px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .top_box02 .top_box02_list li {
    width: 100%;
  }
}

.top_box02 .top_box02_list li figure {
  position: relative;
}

.top_box02 .top_box02_list li figure img {
  border-radius: 10px;
}

.top_box02 .top_box02_list li .inner {
  padding: 30px;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .top_box02 .top_box02_list li .inner {
    padding: 25px;
  }
}

.top_box02 .top_box02_list li .inner h3 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.6rem;
}

@media screen and (max-width: 767px) {
  .top_box02 .top_box02_list li .inner h3 {
    font-size: 2.4rem;
  }
}

.top_box02 .top_box02_list li .inner h3::first-letter {
  color: #4CAED0;
}

.top_box02 .top_box02_list li .inner .btn {
  width: 220px;
  margin: 20px auto 0;
}

.top_box02 .top_box02_list li .inner .btn a {
  padding: 17px;
  font-size: 1.5rem;
}

.top_box03 {
  width: 100%;
  padding: 0 calc((100% - 1080px) / 2) 100px;
  background: url(images/bg03.png) repeat-x bottom, #F5F5F2;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .top_box03 {
    padding: 0 10px 50px;
  }
}

.top_box03::before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: calc((100% - 1080px) / 2 - 100px);
  width: 200px;
  aspect-ratio: 200/203;
  background: url(images/top_deco06.png) no-repeat;
  z-index: 100;
}

.top_box03 h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 3.4rem;
  background: url(images/tit04.svg) no-repeat center/contain;
  padding: 9px 0;
}

@media screen and (max-width: 767px) {
  .top_box03 h2 {
    font-size: 2.6rem;
  }
}

.top_box03 h2 span {
  display: block;
  font-size: 1.7rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: #4DAFD0;
}

@media screen and (max-width: 767px) {
  .top_box03 h2 span {
    font-size: 1.3rem;
  }
}

.top_box03 .top_box03_list {
  display: flex;
}

@media screen and (max-width: 767px) {
  .top_box03 .top_box03_list {
    flex-wrap: wrap;
  }
}

.top_box03 .top_box03_list li {
  width: 270px;
  text-align: center;
  padding: 20px 0;
}

@media screen and (min-width: 768px) {
  .top_box03 .top_box03_list li:not(:first-child) {
    border-left: 1px dotted #999;
  }
}

@media screen and (max-width: 767px) {
  .top_box03 .top_box03_list li {
    width: 50%;
    padding: 20px;
  }

  .top_box03 .top_box03_list li:nth-child(even) {
    border-left: 1px dotted #999;
  }

  .top_box03 .top_box03_list li:nth-child(3) {
    border-top: 1px dotted #999;
  }

  .top_box03 .top_box03_list li:nth-child(4) {
    border-top: 1px dotted #999;
  }
}

.top_box03 .top_box03_list li figure figcaption {
  font-weight: 700;
  line-height: 1.6;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .top_box03 .top_box03_list li figure figcaption {
    font-size: 1.4rem;
  }
}

.brn_wrap {
  display: flex;
  margin: 40px auto 0;
  gap: 15px;
}

@media screen and (max-width: 767px) {
  .brn_wrap {
    flex-direction: column;
    gap: 10px;
    margin: 20px auto 0;
  }
}

.brn_wrap .btn {
  width: 280px;
}

@media screen and (max-width: 767px) {
  .brn_wrap .btn {
    margin: auto;
    width: 100%;
    text-align: center;
  }
}

.top_box04 {
  width: 100%;
  padding: 0 calc((100% - 1200px) / 2);
  margin: 100px 0px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

@media print,
screen and (min-width: 768px) {
  .top_box04 .btn {
    position: absolute;
    left: calc((100% - 1200px) / 2);
    top: 110px;
  }
}

@media screen and (max-width: 767px) {
  .top_box04 {
    padding: 0 10px;
    margin: 0 0 50px 0;
    flex-direction: column;
  }
}

.top_box04 .top_box04_text {
  background-image: url(images/top_deco06.png);
  background-repeat: no-repeat;
  background-position: left 70px;
}

.top_box04 h2 {
  font-size: 4rem;
  letter-spacing: 0em;
  color: #7fc563;
  text-align: center;
  margin: 50px 0px 0px 80px;
}

@media screen and (max-width: 767px) {
  .top_box04 h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .top_box04 .top_box04_text {
    background-position: 40% 100%;
  }
}

.top_box04 h2::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  border-top: 2px dashed #ccc;
  margin-left: 40px;
}

.top_box04 .btn a {
  background: #754e34;
}

.top_box04 .btn a:hover {
  background: #7fc563;
}

@media screen and (max-width: 767px) {
  .top_box04 h2::after {
    margin-left: 20px;
  }
}

.top_box05 {
  width: 100%;
  padding: 0 calc((100% - 1200px) / 2);
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

@media screen and (max-width: 767px) {
  .top_box05 {
    padding: 0 10px;
    flex-direction: column;
    gap: 30px;
  }
}

.top_box01_bana {
  width: 100%;
  padding: 0 calc((100% - 1200px) / 2);
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

@media screen and (max-width: 767px) {
  .top_box01_bana {
    padding: 0 20%;
    flex-direction: column;
    gap: 30px;
  }
}

.youtube-ratio {
  width: 560px;
  aspect-ratio: 14 / 10;
}

@media screen and (max-width: 767px) {
  .youtube-ratio {
    width: 100%;
  }
}

.youtube-ratio iframe {
  width: 100%;
  height: 100%;
}

.contact_box {
  width: 100%;
  height: 100%;
  padding: 60px calc((100% - 1200px) / 2) 90px;
  margin: 80px 0px;
  background-image: url(images/top_bg06.png);
  background-repeat: no-repeat;
  background-position: top center;
}

@media screen and (max-width: 767px) {
  .contact_box {
    padding: 30px 10px 50px 10px;
    margin: 50px 0 0 0;
    background-size: cover;
  }
}

.contact_box h2 {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .contact_box h2 {
    font-size: 3rem;
  }
}

.contact_box h2 span {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0em;
  margin-bottom: 10px;
}

.f_info {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .f_info {
    width: 100%;
    flex-direction: column;
  }
}

.f_info .info-item p {
  background-color: #5bbbe8;
  display: flex;
  justify-content: center;
  color: #FFF;
  font-size: 1.5rem;
  border-radius: 14px;
}

.f_info .info-item.info-item_center p {
  background-color: #dc89a1;
}

.f_info .info-item.info-item_right p {
  background-color: #eabe24;
}

@media screen and (max-width: 767px) {

  .f_info .info-item.info-item_left,
  .f_info .info-item.info-item_center,
  .f_info .info-item.info-item_right {
    margin-bottom: 30px;
  }
}

.f_info .info-item img {
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .f_info .info-item img {
    width: auto;
  }
}

.f_info .info-item a {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .info-item_inner {
    text-align: center;
  }
}

.f_logo {
  text-align: center;
  margin-bottom: 40px;
}

.f_info_b {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: auto;
}

.info-item_f {
  background-color: #fff;
  border-radius: 30px;
  width: 385px;
  text-align: center;
  padding-bottom: 25px;
}

.f_info_b p.f_info_h2 {
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0em;
  font-weight: 700;
  color: #fff;
  background-color: #5bbbe8;
  padding: 9px;
  border-radius: 30px 30px 0px 0px;
  margin-bottom: 25px;
}

.f_info_b .info-item_center_f p.f_info_h2 {
  background-color: #dc89a1;
}

.f_info_b .info-item_right_f p.f_info_h2 {
  background-color: #eabe24;
}


.f_info_b img {
  margin: 20px 0px 15px 0px;
}

.f_info_b p {
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0em;
  font-weight: 400;
  color: #754e34;
}

@media screen and (max-width: 767px) {
  .f_mail {
    width: 215px;
    margin: auto;
  }
}


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

news トップ用

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

.news_post {
  width: 850px;
  max-height: 260px;
  height: 100%;
  overflow-y: scroll;
}

@media screen and (min-width: 768px) {
  .news_post {
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .news_post {
    width: 100%;
  }
}

.news_post article a {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 27px 40px 27px 0;
  background-image: url(images/top_deco07.png);
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
}

@media screen and (max-width: 767px) {
  .news_post article a {
    flex-wrap: wrap;
    padding: 20px 20px 20px 0;
  }
}

.news_post article a .date {
  width: 120px;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #7fc563;
  display: inline-block;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .news_post article a .date {
    width: 100%;
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
}

.news_post article a h3 {
  font-size: 1.6rem;
  color: #333;
  font-weight: 400;
  font-family: "NotoSansJP", "メイリオ", "Meiryo", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  width: calc(100% - 120px);
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  .news_post article a h3 {
    width: 100%;
    font-size: 1.4rem;
  }
}

.news_post article a:hover h3 {
  color: #754e34;
}

.news_post article a:hover::before {
  width: 100%;
}

.news_post article a:hover::after {
  right: 0;
}

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

content下層用

*****************************************/
.greeting_box01 {
  background-color: #fff;
  border-radius: 30px;
  padding: 20px 70px;
}

@media screen and (max-width: 767px) {
  .greeting_box01 {
    padding: 20px 20px;
  }
}

.greeting_box03 h3 {
  margin-bottom: 20px;
}

.list01 li {
  padding: 8px 0 8px 35px;
  position: relative;
}

.list01 li::before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 100vmax;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #7fc563;
}

@media screen and (max-width: 767px) {
  .list01 li::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100vmax;
    position: absolute;
    top: 10px;
    bottom: 0;
    left: 0;
    margin: 0;
  }
}

.greeting_box01 li {
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1;
  color: #754e34;
  z-index: 0;
}

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

.greeting_box03_inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 30px;
}

@media screen and (max-width: 767px) {
  .results_post {
    flex-wrap: wrap;
    gap: 40px;
  }

  .greeting_box03_inner {
    gap: 20px;
  }
}

.food_box02_inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.food_box02_content {
  width: 580px;
  background-color: #fff;
  border-radius: 30px;
  padding: 40px 30px;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .food_box02_content img {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .food_box02_content figure {
    display: flex;
    justify-content: center;
  }
}

.food_h3 {
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1;
  color: #7fc563;
  border-bottom: 3px dotted #754e34;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.right_box {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.schedule_table {
  width: 100%;
}

.sky {
  background-color: #5bbbe8;
  color: #fff;
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0em;
  text-align: center;
}

.brown {
  background-color: #754e34;
  color: #fff;
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0em;
  text-align: center;
}

.yellow {
  background-color: #eabe24;
  color: #fff;
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0em;
  text-align: center;
}

.sky02 {
  background-color: #cde6e5;
  width: 470px;
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0em;
  padding: 20px 0 20px 40px;
}

.brown02 {
  background-color: #d5c5af;
  color: #754e34;
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0em;
  text-align: center;
  padding: 20px 0;
}

.yellow02 {
  background-color: #f8e6aa;
  width: 470px;
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0em;
  padding: 20px 0 20px 40px;
}

@media screen and (max-width: 767px) {
  .sky02,
  .brown02,
  .yellow02 {
    padding: 10px;
    font-size: 2rem;
  }
    .sky,
    .brown,
    .yellow {
      font-size: 2rem;
    }
}

.schedule_box01 table {
  border-collapse: separate;
  border-spacing: 10px 5px;
}

.schedule_box01 img {
  width: 44px;
  height: 36px;
}

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

.schedule_table td div {
  display: flex;
  justify-content: center;
}

.age0_box01_inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 30px;
}

@media screen and (max-width: 767px) {
  .results_post {
    flex-wrap: wrap;
    gap: 40px;
  }
}

.age0_box01 h3 {
  margin-bottom: 20px;
}

.age1-2_box02 h3 {
  margin-bottom: 15px;
}

.age1-2_box02_inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .age1-2_box02_inner .w270 {
    width: 100%;
  }
}

.chikugo_box01 p {
  color: #754e34;
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  transform: rotate(0.05deg);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .chikugo_box01 p {
    font-size: 1.8rem;
    text-align: left;
  }
}

.chikugo_th {
  width: 250px;
  padding: 10px 5px;
  background-color: #5bbbe8;
  color: #fff;
  font-family: "NotoSansJP",
    "メイリオ",
    "Meiryo",
    "游ゴシック Medium",
    YuGothic,
    "游ゴシック体",
    "ヒラギノ角ゴ Pro W3",
    sans-serif;
  font-weight: normal;
  letter-spacing: 0em;
}

.chikugo_td {
  width: 940px;
  padding: 10px;
  background-color: #cde6e5;
  font-family: "NotoSansJP",
    "メイリオ",
    "Meiryo",
    "游ゴシック Medium",
    YuGothic,
    "游ゴシック体",
    "ヒラギノ角ゴ Pro W3",
    sans-serif;
  font-weight: normal;
  letter-spacing: 0em;
}

.chikugo_box02 table {
  border-collapse: separate;
  border-spacing: 5px 10px;
}

@media screen and (max-width: 767px) {
  .chikugo_box02 iframe {
    width: 100%;
    padding: 0 10px;
  }
}

.btn_long a {
  width: 430px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  position: relative;
  display: inline-block;
  padding: 22px;
  /* -webkit-user-select: none; */
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #fff;
  background: #7fc563;
  text-align: center;
  border-radius: 10px;
}

.btn_long a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .btn_long a {
    width: 100%;
    font-size: 1.4rem;
    padding: 20px 40px;
  }
}

.guide_box04 .btn_long a {
  background-color: #754e34;
  width: 400px;
}

.guide_box04 .btn_long a:hover {
  background: #7fc563;
}

.chikugo_box01 .btn a {
  width: 430px;
}

.yame_th {
  width: 250px;
  padding: 10px 5px;
  background-color: #dc89a1;
  color: #fff;
  font-family: "NotoSansJP",
    "メイリオ",
    "Meiryo",
    "游ゴシック Medium",
    YuGothic,
    "游ゴシック体",
    "ヒラギノ角ゴ Pro W3",
    sans-serif;
  font-weight: normal;
  letter-spacing: 0em;
  text-align: center;
}

.yame_td {
  width: 940px;
  padding: 10px;
  background-color: #f4d6d0;
  font-family: "NotoSansJP",
    "メイリオ",
    "Meiryo",
    "游ゴシック Medium",
    YuGothic,
    "游ゴシック体",
    "ヒラギノ角ゴ Pro W3",
    sans-serif;
  font-weight: normal;
  letter-spacing: 0em;
}

.yame_box02 table {
  border-collapse: separate;
  border-spacing: 5px 10px;
}

.syoshin_th {
  width: 250px;
  padding: 10px 5px;
  background-color: #eabe24;
  color: #fff;
  font-family: "NotoSansJP",
    "メイリオ",
    "Meiryo",
    "游ゴシック Medium",
    YuGothic,
    "游ゴシック体",
    "ヒラギノ角ゴ Pro W3",
    sans-serif;
  font-weight: normal;
  letter-spacing: 0em;
  text-align: center;
}

.syoshin_td {
  width: 940px;
  padding: 10px;
  background-color: #f8e6aa;
  font-family: "NotoSansJP",
    "メイリオ",
    "Meiryo",
    "游ゴシック Medium",
    YuGothic,
    "游ゴシック体",
    "ヒラギノ角ゴ Pro W3",
    sans-serif;
  font-weight: normal;
  letter-spacing: 0em;
}

.syoshin_box02 table {
  border-collapse: separate;
  border-spacing: 5px 10px;
}

.guide_box02 table {
  border-collapse: separate;
  border-spacing: 5px 10px;
}

.guide_box02 h3 {
  margin-bottom: 20px;
}

.guide_box03_flow01 {
  align-items: center;
  width: 100%;
}

.guide_box03_flow02 {
  align-items: center;
  width: 78%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {

  .guide_box03_flow01,
  .guide_box03_flow02 {
    text-align: center;
    width: 250px;
    margin: auto;
  }

  .guide_box03_flow01 .img_arrow,
  .guide_box03_flow02 .img_arrow {
    width: 30px;
    height: 50px;
    transform: rotate(90deg);
  }
}

.btn_long_brown a {
  width: 430px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  position: relative;
  display: inline-block;
  padding: 22px;
  /* -webkit-user-select: none; */
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #fff;
  background: #7fc563;
  text-align: center;
  border-radius: 10px;
}

.btn_long a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.guide_box04 .h_info {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.guide_box04 .h_info .info-item p {
  background-color: #5bbbe8;
  display: flex;
  justify-content: center;
  color: #FFF;
  font-size: 1.5rem;
  border-radius: 14px;
}

.guide_box04 .h_info .info-item.info-item_center p {
  background-color: #dc89a1;
}

.guide_box04 .h_info .info-item.info-item_right p {
  background-color: #eabe24;
}

.guide_box04 .h_info .info-item img {
  margin-top: 15px;
}

.guide_box04 .h_info .info-item a {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .guide_box04 .h_info {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .guide_box04 .h_info .info-item {
    text-align: center;
  }

  .guide_box04 .h_info .info-item img {
    width: 251px;
    height: 28px;
  }
}

.subhead03 {
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1;
  color: #7fc563;
  border-bottom: 3px dotted #754e34;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.guide_box06 table {
  border-collapse: separate;
  border-spacing: 5px 10px;
}

.guide_box06 th {
  background-color: #dc89a1;
}

.guide_box06 td {
  background-color: #f4d6d0;
}

.guide_box07 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 30px;
}

.guide_box07 h3 {
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .guide_box07 .w380 {
    width: 100%;
  }
}

.guide_box08 h3 {
  margin-bottom: 15px;
}

.guide_box08 table {
  border-collapse: separate;
  border-spacing: 5px 10px;
}

.guide_box08 th {
  background-color: #eabe24;
}

.guide_box08 td {
  background-color: #f8e6aa;
}

.blog_post_inner h2 {
  font-size: 3.0rem;
}

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

.blog_post_inner a {
  width: 220px;
}

.policy .btn a {
  width: 520px;
}

.contact_box01 .h_info {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.contact_box01 .h_info .info-item p {
  background-color: #5bbbe8;
  display: flex;
  justify-content: center;
  color: #FFF;
  font-size: 1.5rem;
  border-radius: 14px;
}

.contact_box01 .h_info .info-item.info-item_center p {
  background-color: #dc89a1;
}

.contact_box01 .h_info .info-item.info-item_right p {
  background-color: #eabe24;
}

.contact_box01 .h_info .info-item img {
  margin-top: 15px;
}

.contact_box01 .h_info .info-item a {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .contact_box01 .h_info {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .contact_box01 .h_info .info-item img {
    width: 251px;
    height: 28px;
  }

  .contact_box01 .h_info .info-item {
    text-align: center;
  }

  .contact_box01 .flex .btn_long01 {
    margin-bottom: 15px;
  }
}




.greeting_box02 .flex {
  gap: 50px;
}

.greeting_box02 .flex_r {
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .greeting_box02 h2 {
    font-size: 2.5rem;
  }

  .greeting_box02 .tc {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
























.price_table {
  width: 100%;
}

.price_table th,
.price_table td {
  width: 25%;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
}

@media screen and (max-width: 767px) {

  .price_table th,
  .price_table td {
    padding: 10px;
  }
}

.price_table th {
  background: #E1F2F7;
  color: #4DAFD0;
}

.results_post {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 30px;
}

@media screen and (max-width: 767px) {
  .results_post {
    flex-wrap: wrap;
    gap: 40px;
  }
}

.results_post article {
  width: 380px;
}

@media screen and (max-width: 767px) {
  .results_post article {
    width: 100%;
  }
}

.results_post article a {
  text-decoration: none;
}

.results_post article figure {
  width: 100%;
  height: auto;
  aspect-ratio: 380/260;
  overflow: hidden;
  position: relative;
}

.results_post article figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.results_post article h2 {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #142E50;
  font-size: 1.8rem;
  font-family: "NotoSansJP", "メイリオ", "Meiryo", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  padding: 15px 0;
  margin-bottom: 10px;
  color: #69BCD8;
}

.results_post article .btn {
  max-width: 260px;
  width: 100%;
  margin: 30px auto 0;
}

.results_post article .btn a {
  padding: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .results_post article .btn a {
    font-size: 1.4rem;
  }
}

.faq_post {
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #999;
}

.faq_post:last-child {
  margin-bottom: 0;
}

.faq_post dl dt {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  padding: 7px 0 7px 70px;
  margin-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .faq_post dl dt {
    padding: 5px 0 5px 50px;
    font-size: 1.7rem;
  }
}

.faq_post dl dt::before {
  content: "Q";
  font-family: "Lato", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  font-size: 2.4rem;
  width: 50px;
  height: 50px;
  border-radius: 100vmax;
  background: #69BCD8;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .faq_post dl dt::before {
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
  }
}

.faq_post dl dd {
  padding: 11px 0 11px 70px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .faq_post dl dd {
    padding: 7px 0 7px 50px;
  }
}

.faq_post dl dd::before {
  content: "A";
  font-family: "Lato", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  font-size: 2.4rem;
  width: 50px;
  height: 50px;
  border-radius: 100vmax;
  background: #E4D970;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .faq_post dl dd::before {
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
  }
}

.blog_post {
  width: 100%;
  margin: auto;
}

.blog_post article {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .blog_post article {
    flex-direction: column;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.blog_post article figure {
  width: 440px;
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .blog_post article figure {
    width: 100%;
    margin: 0 auto 20px !important;
  }
}

.blog_post article 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 .blog_post_inner {
  width: 720px;
}

@media screen and (max-width: 767px) {
  .blog_post article .blog_post_inner {
    width: 100%;
  }
}

.blog_post article .blog_post_inner .date {
  display: inline-block;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: #666;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .blog_post article .blog_post_inner .date {
    font-size: 1.3rem;
  }
}

.blog_post article .blog_post_inner .btn {
  width: 220px;
  margin: 20px 0 0 auto;
}

@media screen and (max-width: 767px) {
  .blog_post article .blog_post_inner .btn {
    margin: 20px auto 0;
  }
}

.contact_tel {
  font-family: "Lato", sans-serif;
  background: url(images/tel_yellow.svg) no-repeat left center;
  padding-left: 30px;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-block;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .contact_tel {
    font-size: 2.6rem;
    background-size: 20px;
  }
}

.contact_tel-txt {
  font-size: 1.4rem;
  color: #666;
  margin-top: 5px;
}

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

.table {
  width: 100%;
}

.table th,
.table td {
  text-align: left;
  padding: 20px;
  border: 1px solid #ccc;
}

@media screen and (max-width: 767px) {

  .table th,
  .table td {
    margin-top: -1px;
    padding: 10px 15px;
  }
}

.table th {
  width: 20%;
  background: #E1F2F7;
}

@media screen and (max-width: 767px) {
  .table th {
    display: block;
    width: 100%;
  }
}

.table td {
  width: 80%;
}

@media screen and (max-width: 767px) {
  .table td {
    display: block;
    width: 100%;
  }
}

.policy {
  background: #fff;
  border-radius: 30px;
  padding: 40px 60px;
}

@media screen and (max-width: 767px) {
  .policy {
    padding: 20px;
  }
}

.policy span {
  display: block;
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 2.5rem;
  text-align: center;
  color: #754e34;
}

@media screen and (max-width: 767px) {
  .policy span {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

.policy p {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .policy p {
    font-size: 1.2rem;
  }
}

.map {
  position: relative;
  width: 100%;
  height: 350px;
}

@media screen and (max-width: 767px) {
  .map {
    height: auto;
    aspect-ratio: 4/3;
  }
}

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

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

aside

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

single.php

*****************************************/
#single_box {
  width: 100%;
  margin-top: 80px;
}

#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 #754e34;
  border-radius: 3px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
  color: #754e34;
  background: #fff;
}

a.page-numbers:hover {
  background: #897b71;
  text-decoration: none;
}

.pager .current {
  background: #897b71;
  border: solid 1px #897b71;
  border-radius: 3px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
  background: #754e34;
  border: solid 1px #754e34;
  color: #fff;
}

.nav-below {
  width: 100%;
  margin: 60px 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
  border-top: 1px solid #7fc563;
  border-bottom: 1px solid #7fc563;
  text-decoration: none;
  color: #7fc563;
}

@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: #7fc563;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .nav-below a {
    padding: 20px 10px;
    font-size: 1.4rem;
  }
}

.nav-below a:hover {
  background: #7fc563;
  color: #fff;
}

.nav-below .next {
  width: 25%;
  border-right: 1px solid #7fc563;
}

.nav-below .back {
  width: 50%;
}

.nav-below .prev {
  width: 25%;
  border-left: 1px solid #7fc563;
}

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

.red {
  color: #BF2626;
}

.blue {
  color: #69BCD8;
}

.size14 {
  font-size: 1.4rem;
}

.size18 {
  font-size: 1.8rem;
}

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

/* 強調 */
.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;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb120 {
  margin-bottom: 120px;
}

@media print,
screen and (min-width: 768px) {
  .tc {
    text-align: center;
  }

  .w270 {
    width: 270px;
  }

  .w380 {
    width: 380px;
  }

  .w350 {
    width: 350px;
  }

  .w580 {
    width: 580px;
  }

  .w640 {
    width: 640px;
  }

  .w650 {
    width: 650px;
  }

  .w750 {
    width: 750px;
  }
}

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

.headline {
  text-align: center;
  margin: 40px 0 50px;
  padding: 0 0 50px 0;
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  font-size: 4.5rem;
  letter-spacing: 0em;
  color: #754e34;
  background-image: url(images/tit01.png);
  background-repeat: no-repeat;
  background-position: center bottom;
}


@media screen and (max-width: 767px) {
  .headline {
    margin: 30px 0 40px;
    font-size: 3rem;
  }
}

.subhead01 {
  font-size: 3.5rem;
  width: 100%;
  padding: 0px 0px 10px 60px;
  position: relative;
  border-bottom: 1px solid #754e34;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .subhead01 {
    font-size: 2.5rem;
  }
}

.subhead01::before {
  content: "";
  width: 37px;
  aspect-ratio: 37 / 46;
  background-image: url(images/top_deco03.png);
  background-size: 100%;
  position: absolute;
  top: 1px;
  left: 0px;
}

@media screen and (max-width: 767px) {
  .subhead01 {
    padding: 0 0 10px 30px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .subhead01::before {
    width: 22px;
    top: 5px;
  }
}

.subhead02 {
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0em;
  background: #7fc563;
  border-radius: 10px;
  color: #fff;
  margin-bottom: 30px;
  padding: 10px 35px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .subhead02 {
    padding: 8px 10px 8px 30px;
    margin-bottom: 15px;
    font-size: 2rem;
  }
}

.subhead02::before {
  content: "";
  width: 5px;
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 15px;
  background: #5a8f36;
  border-radius: 100vmax;
}



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

footer-PC

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

@media print,
screen and (min-width: 768px) {
  footer #sp_footer {
    display: none;
  }

  footer #pc_footer {
    width: 100%;
  }


  footer #pc_footer .footer_box {
    justify-content: space-between;
    padding: 0px calc((100% - 1200px) / 2) 100px;
  }

  footer #pc_footer .footer_box .footer_box-left {
    width: 540px;
  }

  footer #pc_footer .footer_box .footer_box-left .f_logo {
    margin-bottom: 40px;
  }

  footer #pc_footer .footer_box .footer_box-left .f_logo a {
    display: inline-block;
  }

  footer #pc_footer .footer_box .footer_box-left .f_tel {
    margin: 30px 0 15px;
  }

  footer #pc_footer .footer_box .footer_box-left .f_tel .txt {
    letter-spacing: 0.1em;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1570px) {
  footer #pc_footer .footer_box .footer_box-left .f_tel .txt {
    margin: 8px 10px 12px 0;
  }
}

@media print,
screen and (min-width: 768px) {
  footer #pc_footer .footer_box .footer_box-left .f_tel .number {
    font-family: "Lato", sans-serif;
    background: url(images/tel_yellow.svg) no-repeat left center;
    padding-left: 30px;
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  footer #pc_footer .footer_box .footer_box-left .sitemap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    border-top: 1px solid #D7D7CC;
    margin-top: 50px;
    padding-top: 50px;
  }

  footer #pc_footer .footer_box .footer_box-left .sitemap a {
    color: #333;
    font-size: 1.6rem;
    display: inline-block;
    position: relative;
    text-decoration: none;
  }

  footer #pc_footer .footer_box .footer_box-left .sitemap a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #5CB87C;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }

  footer #pc_footer .footer_box .footer_box-left .sitemap a:hover {
    color: #5CB87C;
  }

  footer #pc_footer .footer_box .footer_box-left .sitemap a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }

  footer #pc_footer .footer_box .footer_box-right {
    width: 600px;
    box-sizing: border-box;
    position: relative;
    background: #69BCD8;
    border-radius: 12px;
  }

  footer #pc_footer .footer_box .footer_box-right iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 4px;
    border-radius: 12px;
  }

  footer .pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
  }
}

.copyright {
  font-family: "M PLUS Rounded 1c",
    sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #754e34;
  text-align: center;
  margin-top: 50px;
}

.footer_box {
  background-image: url(images/footer_img.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 100%;
  height: 100%;
}

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

footer-SP

*****************************************/
@media screen and (max-width: 767px) {
  footer {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 60px;
  }

  footer p {
    font-size: 1.4rem;
    text-align: center;
  }

  footer #pc_footer,
  footer .sitemap {
    display: none;
  }

  footer #sp_footer {
    width: 100%;
  }

  footer #sp_footer .copyright {
    display: block;
    font-size: 1.3rem;
    color: #333;
    text-align: center;
    border-top: 1px solid #D7D7CC;
    padding: 20px;
    margin: 0 0 0 0;
  }

  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: calc(100%/3);
    background: #7fc563;
    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-mail::after {
    background-image: url(images/sp-contact.svg);
    background-size: 22px;
  }

  footer .sp-access::after {
    background-image: url(images/sp-map.svg);
    background-size: 22px;
  }

  footer .sp-pagetop::after {
    background-image: url(images/sp-pagetop.svg);
    background-size: 22px;
  }
}

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

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 #fff;
  background-color: #7fc563;
  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: #754e34;
  color: #fff;
  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 */