@charset "UTF-8";
/*------------------------------------------------------------------------------
    config
------------------------------------------------------------------------------*/
/***  media ***/
/***  color ***/
/*** font ***/
/*------------------------------------------------------------------------------
    reset
------------------------------------------------------------------------------*/
#wpadminbar {
  z-index: 99999999999 !important;
}
html {
  color: #D20A14;
  font-family: 'Roboto', 'Noto Sans JP', Helvetica, Arial, sans-serif;
  margin-top: 0 !important;
}
body {
  margin: 0;
  color: #222;
  background: #ffffff;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  font-family: 'Roboto', 'Noto Sans JP', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 970px) {
  body {
    font-size: 14px;
  }
}
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 970px) {
  img {
    width: 100%;
  }
}
p {
  padding: 0;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  line-height: 180%;
  margin-block-start: 1em;
  margin-block-end: 1em;
  text-align: left;
  margin: 1.6em 0;
}
@media screen and (max-width: 970px) {
  p {
    line-height: 160%;
  }
}
a {
  text-decoration: none;
  color: #222;
}
a:link,
a:visited {
  color: #222;
  text-decoration: none;
}
input,
textarea,
select {
  font-family: 'Roboto', 'Noto Sans JP', Helvetica, Arial, sans-serif;
  border-radius: 0;
  outline: none;
}
table {
  border-collapse: collapse;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 16px;
  font-weight: normal;
  margin: 0;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
h2 {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  margin-top: 1.6em;
  unicode-bidi: isolate;
}
h3 {
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
#wrapper {
  position: relative;
  padding: 0;
  overflow: hidden;
}
dd,
dt {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
dl {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/*------------------------------------------------------------------------------
    CSS reset
------------------------------------------------------------------------------*/
@media screen and (max-width: 970px) {
  body {
    position: static;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    font-size: 14px;
  }
  #wrapper {
    min-width: 320px;
    position: relative;
  }
  img {
    max-width: 100%;
  }
  input[type="submit"] {
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@media screen and (min-width: 970px) {
  a {
    transition: 0.3s ease-in-out;
  }
  a:hover {
    opacity: 0.8;
  }
}
button {
  outline: none;
}
.inner {
  max-width: 1220px;
  width: 100%;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  text-align: center;
}
/*------------------------------------------------------------------------------
    フェードインのCSS
------------------------------------------------------------------------------*/
.scrollanime {
  opacity: 0;
}
/*一瞬表示されるのを防ぐ*/
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.scrollanime2 {
  opacity: 0;
}
/*一瞬表示されるのを防ぐ*/
.fadeInDown2 {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fadeInDown2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes fadeInDown2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
/*2.上下の動きを指定*/
.updown {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
}
.downup {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}
.leftin {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
}
.rightin {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}
/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
}
/*横スクロールバーを隠す*/
.slide-right {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
}
.slide-left {
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
}
/* -------------------------------フェードインのCSS */
a.link-btn,
a.custom-btn {
  text-decoration: none;
  color: #fff;
  background: #ff7131;
  border-radius: 16em;
  display: inline-block;
  box-shadow: 0 1px 0.1em rgba(0, 0, 0, 0.2);
  padding: 0.8em 2.4em;
  transition-property: background, box-shadow;
  margin: 0.4em;
  overflow: hidden;
  position: relative;
  display: flex;
}
a.link-btn .material-icons-round,
a.custom-btn .material-icons-round {
  font-size: 14px;
}

@media (max-width: 970px) {
  a.link-btn .material-icons-round,
  a.custom-btn .material-icons-round {
  font-size: 112%;
  vertical-align: -18%;    
  margin-left: 0;
  margin-right: 5px;
  }
  #footer .footer-contact .footer-contact__btn .material-icons-round {
    font-size: 16px;
    width: fit-content;
    margin: auto;
    margin-left: 0;
    margin-right: 5px;
}
#footer .footer-contact .footer-contact__btn .link-btn{
  justify-content: center;
}
a.link-btn, a.custom-btn{
  justify-content: center;

}
}
a.link-btn:hover,
a.custom-btn:hover {
  color: #fff;
  background: #FF580D;
  box-shadow: 0 2px 0.4em rgba(0, 0, 0, 0.4);
}
a.link-btn .click-point,
a.custom-btn .click-point {
  margin: -4px 0 0 -4px;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  animation: 0.8s ease-out both clicklEffect;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}
/*------------------------------------------------------------------------------
    header
------------------------------------------------------------------------------*/
.header__title {
  text-align: center;
  font-size: 0.813rem;
  font-size: 13px;
  color: #fff;
  background: #ff9800;
  margin: 0;
  padding: 0.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: bold;
}
.header_pop {
  text-align: center;
}
.header_pop img {
  max-width: 1030px;
  margin: auto;
}
@media screen and (max-width: 970px) {
  .header_pop img {
    width: 100%;
  }
}
.header_main {
  text-align: center;
}
.header_main img {
  max-width: 1030px;
  margin: auto;
}
@media screen and (max-width: 970px) {
  .header_main img {
    width: 100%;
  }
}
#header {
  width: 100%;
  align-items: center;
  margin-top: -3px;
  display: flex;
  z-index: 5;
  min-height: 72px;
  padding: 3px 0;
}
#header .header_item {
  display: flex;
  align-items: center;
  margin: auto;
  width: 100%;
  padding: 0 calc((100% - 1030px)*0.5);
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 970px) {
  #header .header_item {
    align-items: center;
    justify-content: center;
    width: auto;
    display: flex;
    width: 100%;
  }
}
#header .menu_item {
  min-height: 72px;
  align-items: center;
  justify-content: end;
  text-align: right;
  margin: auto;
  width: 100%;
}
@media screen and (max-width: 970px) {
  #header .menu_item {
    padding-left: 0;
    width: 100% !important;
    width: auto;
  }
}
#header .menu_item #menu_list {
  justify-content: end;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 970px) {
  #header .menu_item #menu_list {
    background: #F0F0F0;
    display: none;
    padding-top: 75px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 30px;
    height: 100vh;
    overflow-y: scroll;
  }
}
#header .menu_item #menu_list li {
  flex: 1 1 172px;
  font-weight: inherit;
  border-left: 1px solid #ddd;
  margin: 0;
  position: relative;
  transition: 0.7s ease-in-out;
}
#header .menu_item #menu_list li:last-child {
  border-right: 1px solid #ddd;
}
#header .menu_item #menu_list li:hover {
  transition: 0.7s ease-in-out;
  background: rgba(0, 0, 0, 0.03);
}

#header .menu_item #menu_list li .menu_sp {
  display: none;
}
@media screen and (max-width: 970px) {
  #header .menu_item #menu_list li .menu_sp {
    display: block;
    margin-top: 20px;
    margin: auto;
    width: calc(100% - 45px);
  }
  #header .menu_item #menu_list li .menu_sp a {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
  }
  #header .menu_item #menu_list li .menu_sp a + a {
    margin-top: 10px;
  }
}
#header .menu_item #menu_list li a {
  display: flex;
  height: 75px;
  align-items: center;
  justify-content: center;  
  color: #222;
  position: relative;
  transition: 0.3s ease-in-out;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  font-weight: bold !important;
  font-family: Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-weight: inherit;
  min-height: 72px;
  background: url(../img/common/header_menu_bg.png) no-repeat;
  background-size: 100% 100%;

}

#header .menu_item #menu_list li a .icon {
max-width: 30px;
margin-bottom: 2px;
margin: auto;
}
#header .menu_item #menu_list li a span {
  display: block;
  font-size: 7px;
  color: #999;
  margin-top: -0.2em;
}
@media screen and (max-width: 1080px) {
  #header .menu_item #menu_list li a {
    font-size: 12px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 970px) {
  #header .menu_item #menu_list li a {
    align-items: center;
    text-align: left;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
  }
}
#header .menu_item #menu_list li a:hover {
  opacity: 1 !important;
  background: url(../img/common/header_menu_bg_on.png) no-repeat;
  background-size: 100% 100%;
}
#header .menu_item #menu_list .page_on {
  background: url(../img/common/header_menu_bg_on.png) no-repeat;
  background-size: 100% 100%;
}

#header .menu_item #menu_list .page_on a {
  background: rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 970px) {
  #header #menuBtn {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: -5px;
    z-index: 9999999;
  }
  .is_show{
    #menuBtn {
    bottom: 5px !important;
    }
  }
  #header #menuBtn::after {
    position: absolute;
    content: "MENU";
    font-family: "Jost", serif;
    font-size: 11px;
    font-weight: 300;
    right: 0;
    width: 100%;
    text-align: center;
    bottom: 16px;
    font-family: Meiryo, sans-serif;
    z-index: 1;
    line-height: 1.5;
  }
  #header #menuBtn span {
    display: block;
    background: #222;
    width: 16px;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  }
  #header #menuBtn span:nth-child(1) {
    bottom: 50px;
  }
  #header #menuBtn span:nth-child(2) {
    bottom: 46px;
  }
  #header #menuBtn span:nth-child(3) {
    bottom: 42px;
  }
  .is_show{
    #menuBtn::after {
      bottom: 8px !important;
    }
  #menuBtn span:nth-child(1) {
    bottom: 40px !important;
  }
  #menuBtn span:nth-child(2) {
    bottom: 36px !important;
  }
  #menuBtn span:nth-child(3) {
    bottom: 32px !important;
  }
}
}
.is_show {
  position: fixed;
  left: 0;
  top: 0;
  min-height: 0 !important;
}
.is_show .header_item {
  width: 100%;
  background: #fff !important;
  color: #fff !important;
  filter: drop-shadow(0 1px 0.8em rgba(0, 0, 0, 0.5)) !important;
  transition: 0.3s ease-in-out;
}
.is_show .header_item::before {
  display: none !important;
}

.is_show .header_item .menu_item {
  min-height: 0 !important;
}
.is_show .header_item .menu_item #menu_list {
  min-height: 0 !important;
}
.is_show .header_item .menu_item #menu_list li {
  border-left: none !important;
}
.is_show .header_item .menu_item #menu_list li:last-child {
  border-right: none !important;
}
.is_show .header_item .menu_item #menu_list li a {
  line-height: 1.1 !important;
  min-height: 0 !important;
}
.is_show .header_item .menu_item #menu_list li a:hover {
  opacity: 1 !important;
}
.is_show .header_item .menu_item #menu_list li:hover {
  opacity: 1 !important;
}
.is_show .header_item .menu_item #menu_list li:hover::before {
  display: none !important;
}
.is_show .header_item .menu_item #menu_list_sp li {
  min-height: 0 !important;
  border-left: none !important;
}
.is_show .header_item .menu_item #menu_list_sp li:hover::before {
  display: none !important;
}
.is_show .header_item .menu_item #menu_list_sp #menuBtn span {
  background: #fff !important;
}
.is_show .header_item .menu_item #menu_list_sp #menuBtn::after {
  color: #fff !important;
}
.is_show .page_on {
  background: rgba(0, 0, 0, 0.03);
}
.is_show .page_on::before {
  display: none !important;
}
.is_show .page_on a {
  background: rgba(0, 0, 0, 0.03);
}
.is_show_32 {
  top: 32px !important;
}
@media screen and (max-width: 970px) {
  .is_show_32 {
    top: 0 !important;
  }
}
.pagination {
  margin-top: 100px;
}
@media screen and (max-width: 970px) {
  .pagination {
    margin-top: 50px;
  }
}
.pagination .wp-pagenavi {
  align-items: center;
  display: flex;
  justify-content: center;
}
.pagination .page {
  color: #222;
  font-size: 18px;
  font-weight: 300;
  font-family: "Jost", serif;
  letter-spacing: 0.1em;
  line-height: 100%;
  display: block;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 7px;
  margin-right: 7px;
  line-height: 26px;
}
@media screen and (max-width: 970px) {
  .pagination .page {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 13px;
  }
}
.material-icons-round {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: -18%;
  display: block;
  font-size: 168%;
  margin-bottom: 0.1em;
  margin: auto;
}
.hide {
  display: none !important;
  transition: 0.3s ease-in-out;
}
.show {
  display: block !important;
  transition: 0.3s ease-in-out;
}
.widget {
  position: relative;
  font-size: 0.813rem;
  font-size: 13px;
  margin: 24px auto;
  margin: min(24px, 6.575vw) auto;
  max-width: 240px;
}
.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget ul li {
  position: relative;
  overflow: hidden;
}
.widget ul li:not(:last-child) {
  border-bottom: 1px dashed #ddd;
}
.widget ul li a {
  padding: 1.28em 1.6em 1.28em 16px;
  padding-left: min(16px, 4.384vw);
  display: block;
  text-align: left;
}
.widget ul li a::before {
  position: absolute;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  left: 0;
  top: 0;
  transition-property: background;
}
.widget ul li a::after {
  position: absolute;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
  content: "";
  font-family: "Material Icons";
  color: rgba(0, 0, 0, 0.2);
  right: 0.64em;
  top: 50%;
  transform: translateY(-50%);
  transition-property: transform, color;
}
.widget ul li a:hover {
  color: inherit;
}
.widget ul li a:hover::before {
  background: rgba(0, 0, 0, 0.03);
}
.widget ul li a:hover::after {
  color: rgba(0, 0, 0, 0.4);
  transform: translate(0.2em, -50%);
}
.widget ul li a small {
  display: block;
  text-transform: lowercase;
  opacity: 0.56;
}
.widget dl {
  padding: 16px;
  padding: min(16px, 4.384vw);
  margin: 0;
  font-family: Meiryo, sans-serif;
}
.widget dt {
  font-weight: bold;
  position: relative;
  padding-left: 0.8em;
  text-align: left;
}
.widget dt::before {
  content: "";
  border: solid rgba(0, 0, 0, 0);
  border-width: 0.32em 0.229em;
  border-top-color: #ff9800;
  position: absolute;
  left: 0;
  top: 0.457em;
}
.widget dt ~ dt {
  margin-top: 0.8em;
}
.widget dd {
  margin: 0;
  text-align: left;
}
.widget dd + dd {
  margin-top: 0.4em;
}
.widget dd.widget_info__tel {
  font-size: 192%;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.3;
  letter-spacing: -0.05em;
}
.widget dd.widget_info__tel a {
  display: flex;
}
.widget dd.widget_info__tel a:hover {
  color: #ff9800;
}
.widget dd.widget_info__tel i {
  font-size: 28px;
  color: #ff9800;
}
.widget dd.widget_info__btn {
  font-weight: 500;
  margin: 0.8em -8px;
  margin: 0.8em max(-8px, -2.192vw);
}
.widget dd.widget_info__map {
  height: 200px;
  margin-top: 0.8em;
  border-radius: 0.32em;
  overflow: hidden;
}
.widget_banner {
  max-width: 240px;
  border: none !important;
}
.widget_banner_img {
  border: none !important;
  text-align: center;
}
.widgettitle {
  font-size: 112%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  margin: 0;
  position: relative;
  padding: 24px 16px;
  padding: min(24px, 6.575vw) min(16px, 4.384vw);
}
.widgettitle::before {
  content: "";
  width: 2px;
  height: calc(100% - 0.64em);
  background: #ff9800;
  position: absolute;
  left: 4px;
  top: 0;
}
.widgettitle,
.widgettitle a {
  display: flex;
  align-items: center;
}
.widget_news-list-wrap {
  max-height: 320px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.widget_news-list-wrap .widget_news-list {
  padding: 4px 16px;
  text-align: left;
  padding: min(0.548vw, 4px) min(16px, 4.384vw);
}
.widget_news-list-wrap .widget_news-list p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-block-start: 1em;
  margin-block-end: 1em;
  font-family: Meiryo, sans-serif;
}
.widget_news-list-wrap .widget_news-list:last-child::after {
  clear: both;
  content: "";
  display: block;
}
.widget_news-list-wrap .widget_news-list .material-icons-round {
  font-size: 15px;
  margin: 0;
}
.widget_news-list-wrap .widget_news-list:not(:first-child) {
  border-top: 1px dashed #ddd;
}
#main .inner {
  position: relative;
  max-width: 1070px;
  display: flex;
}
#main .side {
  width: 300px;
  padding-right: 60px;
}
#main .side .widget {
  border: 1px solid rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 970px) {
  #main .side {
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 272px;
    max-width: 90%;
    height: 100%;
    padding-bottom: 3.52em;
    transform: translateX(-100%);
    opacity: 0;
    transition: 0.4s ease-in-out;
  }
  #main .inner {
    padding: 0 max(min(4vw, 16px),(100% - 1030px)* .5);

  }
}
#main .side .page_on_side a {
  font-weight: bold;
}
#main .side .mobile-nav {
  list-style: none;
  margin: 0 0 min(40px, 10.959vw);
  padding: 0;
  font-size: 8px;
}
#main .side .mobile-nav li {
  position: relative;
}
#main .side .mobile-nav li:not(:last-child) {
  border-bottom: 1px dashed #ddd;
}
#main .side .mobile-nav li .current-menu-item > a {
  font-weight: bold;
}
#main .side .mobile-nav li a {
  text-decoration: none;
  overflow: hidden;
  position: relative;
  padding: 1.6em 1.6em 1.6em min(16px, 4.384vw);
  display: block;
  text-align: left;
  color: #222;
  font-size: 13px;
}
#main .side .mobile-nav li a::after {
  position: absolute;
  content: "";
  font-family: "Material Icons";
  color: rgba(0, 0, 0, 0.2);
  right: 0.64em;
  top: 50%;
  transform: translateY(-50%);
}
#main .side .mobile-nav li a:hover {
  color: #222;
}
#main .side .mobile-nav li a small {
  font-weight: normal;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  display: block;
  color: #999;
  margin-top: -0.2em;
  font-size: 10px;
}
@media screen and (max-width: 970px) {
  #main .m_show_side {
    transform: translateX(0) !important;
    opacity: 1 !important;
    background: #fff;
    box-shadow: 0.8em 0 1.6em rgba(0, 0, 0, 0.2) !important;
    width: 272px !important;
    padding-right: 0 !important;
    z-index: 20;
    overflow: auto;
  }
}
#main .side-close-bg {
  display: none !important;
}
@media screen and (max-width: 970px) {
  #main .side-close-bg {
    position: fixed;
    width: 100vw;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    left: 0;
    top: 0;
    z-index: 15;
    display: none;
  }
}
#main .m_show_bg {
  display: block !important;
  animation: 0.8s fadeIn ease-in-out !important;
}
#main #m_main {
  width: calc(100% - 300px);
  position: relative;
}
@media screen and (max-width: 970px) {
  #main #m_main {
    width: 100%;
  }
}
#footer {
  font-family: Meiryo, sans-serif;
}
#footer .footer-contact {
  text-align: center;
  background: #eee;
  padding: 32px 4vw;
  padding: min(32px, 6.575vw) 4vw;
  font-weight: 500;
}
#footer .footer-contact .footer-contact__title {
  font-size: 24px;
}
#footer .footer-contact p,
#footer .footer-contact h3 {
  margin: 0;
}
#footer .footer-contact .footer-contact__tel {
  line-height: 1.25;
  font-size: 34px;
}
#footer .footer-contact .footer-contact__tel a {
  column-gap: 10px;
  display: flex;
  width: fit-content;
  margin: auto;
  align-items: center;
  line-height: 100%;
  margin-top: 5px;
}
#footer .footer-contact .footer-contact__tel .tel_b_icon{
  max-width: 34px !important;
}
#footer .footer-contact .footer-contact__tel .material-icons-round {
  color: #ff9800;
  font-size: 38px;
}
#footer .footer-contact .footer-contact__btn {
  margin-bottom: 10px;
  margin-top: 10px;
}
#footer .footer-contact .footer-contact__btn .material-icons-round {
  font-size: 16px;
}
#footer .footer-contact .footer-contact__btn .link-btn {
  max-width: 264px;
  margin: auto;
}
#footer .footer-widget {
  padding: 40px calc((100% - 1030px)*0.5);
  margin: 0 -16px;
  padding: min(5.479vw, 40px) -465%;
  margin: 0 max(-2.192vw, -16px);
  display: flex;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.02);
}
@media screen and (max-width: 970px) {
  #footer .footer-widget {
    padding: 20px;
  }
}
#footer .footer-widget .widgettitle::before {
  height: calc(100% - 2.4em);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#footer .widget {
  position: relative;
  font-size: 13px;
}
#footer .widgettitle {
  border: none;
}
#footer .footer-widget > * {
  margin: 16px;
  margin: min(2.192vw, 16px);
  flex: 1 1 224px;
  min-width: 0;
  max-width: 100%;
}
#footer .bottom-btn-wrap {
  display: none;
}
@media screen and (max-width: 970px) {
  #footer .bottom-btn-wrap {
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 101%;
    z-index: 100;
  }
  #footer .bottom-btn-wrap .bottom-btn-01 {
    width: 100%;
    margin: auto;
  }
  #footer .bottom-btn-wrap .bottom-btn-01 img {
    object-fit: cover;
  }
  #footer .bottom-btn-wrap .bottom-btn-02 {
    width: 100%;
    margin: auto;
  }
}
#footer .page-scroll-01{
  border-radius: 100%;
  width: 40px;
  position: fixed;
  z-index: 10;
  right: max(min(16px, 4.384vw),(100% - 1280px)* .5);
  bottom: min(16px, 4.384vw);
  margin: 0;
}
#footer .page-scroll {
  margin: 0;
  position: fixed;
  z-index: 10;
  width: auto;
  right: max(min(16px, 4.384vw),(100% - 1280px)* .5);
  bottom: min(16px, 4.384vw);
  transition: 0.4s ease-in-out;
  background: #ff7131;
  box-shadow: 0 0.2em 0.4em rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  color: #fff;
}
#footer .page-scroll a:hover {
  opacity: 1 !important;
}
#footer .page-scroll a .material-icons-round {
  font-size: 18px;
}
#footer .page-scroll:hover {
  opacity: 1;
  transition: 0.4s ease-in-out;
  background: #ff580d;
  box-shadow: 0 0.4em 0.64em rgba(0, 0, 0, 0.4);
}
#footer .page-scroll a.link-btn,
#footer .page-scroll a.custom-btn {
  text-decoration: none;
  color: #fff;
  background: var(--btn-color);
  border-radius: 16em;
  display: inline-block;
  box-shadow: 0 1px 0.1em rgba(0, 0, 0, 0.2);
  padding: 0.8em 2.4em;
  transition-property: background, box-shadow;
  margin: 0.4em;
  overflow: hidden;
  position: relative;
}
#footer .page-scroll a.link-btn {
  padding: 0;
  margin: 0;
  width: 3.2em;
  height: 3.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0.2em 0.4em rgba(0, 0, 0, 0.3);
  .material-icons-round{
    margin: auto;
  }
}
#footer .page-scroll-action {
  bottom: 20px;
  transition: 0.4s ease-in-out;
}
@media screen and (max-width: 970px) {
  #footer .page-scroll-action {
    transform: translateY(-19vw);
    right: 15px;
  }
}
.footer > *:last-child {
  padding-bottom: calc(env(safe-area-inset-bottom) + 0.8em);
}
.footer-copyright {
  color: #fff;
  background: #e68900;
  margin: 0;
  padding: 0.8em;
  text-align: center;
  font-size: 12px;
}
.footer-copyright small {
  display: block;
}
.footer-copyright small a {
  color: #fff;
}
.footer-address {
  margin: 0;
  text-align: center;
  background: #ff9800;
  color: #fff;
  font-style: normal;
  font-size: 0.813rem;
  padding: 1.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-address .material-icons-round {
  font-size: 14px;
  color: #fff;
  margin: 0 5px;
}


/* footer contact */

.close {
  clear: both;
  max-width: 1030px;
}
.close-contact,
.close-info {
  margin: 64px auto;
  margin: min(8.767vw, 64px) auto;
}
.close-contact,.close-info {
    margin: 64px auto;
    margin: min(8.767vw, 64px) auto;
    margin-top: 0 !important;
}


.b_yy_bo{
  .ttl{
      margin: 0;
  }
}
.close-contact {
    border-radius: 12px;
    padding: 32px;
    border: max(2px,min(0.548vw, 4px)) solid #ff7131;
    border-radius: max(2px,min(1.644vw, 12px));
    padding: min(4.384vw, 32px);
    box-shadow: 0 0 .16em rgba(0,0,0,.24);
    background: rgba(0,0,0,.04);
    overflow: hidden;
    padding-top: 30px;
    border-radius: 0 0 12px 12px;
    border-top: none;
}
.close-contact .yy_tel{
    display: flex;
    width: fit-content;
    margin: auto;
    margin-top: 5px;
    align-items: center;
    span{
        line-height: 100%;
    }
}
.close-contact strong{
    color: #000 !important;
}
.close-contact .yy_i{
    width: 36px;
    height: 36px;
    border-radius: 100%;
    margin-right: 5px;
}
.close-contact__title {
  font-size: max(6px, min(4.932vw, 32px));
  color: #fff;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 10px, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 20px);
  margin: -34px -34px 0 -34px;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) min(1.37vw, 10px), rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) min(2.74vw, 20px));
  margin: max(-4.658vw, -34px);
  margin-bottom: 0;
  padding: 0.8em 0.4em;
  background-color: #ff9800;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  text-shadow: 0 0 0.16em rgba(0, 0, 0, 0.24);
}
.close-contact__title .material-icons-round {
  font-size: 36px;
  margin: 0;
}
.close-contact-message {
  margin: 32px auto;
  margin: min(4.384vw, 32px) auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0;
}
.content-style {
  font-size: 1.125rem;
  font-size: 18px;
  line-height: 1.8;
}
.content-style::after {
  clear: both;
  content: "";
  display: block;
}
.close-contact-message__img {
  margin-left: 24px;
  margin-left: min(3.288vw, 24px);
}
.close-contact-message__img img {
  width: 200px;
  height: 200px;
  width: min(54.795vw, 200px);
  height: min(54.795vw, 200px);
  object-fit: cover;
  border-radius: 50%;
}
.close-contact-message-fukidashi {
  padding: 0 32px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.04);
  font-size: max(6px, min(3.699vw, 18px));
  padding: 0 min(4.384vw, 32px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.16);
  width: calc(100% - 224px);
  flex: auto;
  min-width: 0;
  background: #fff;
  position: relative;
  border-radius: 0.4em;
}
.close-contact-message-fukidashi::before {
  font-size: 1.5rem;
  font-size: max(1px, min(3.288vw, 24px));
  content: "▼";
  line-height: 1.04;
  transform: rotate(-90deg) translate(50%, -16%) scaleX(1.68);
  position: absolute;
  left: 100%;
  top: 50%;
  color: #fff;
  text-shadow: 0 1px rgba(0, 0, 0, 0.16);
}
.close-contact-message-fukidashi strong {
  color: #222;
}
.close-contact-btn {
  font-size: 1.125rem;
  font-size: max(6px, min(2.74vw, 18px));
  font-weight: bold;
  line-height: 1.28;
  margin-bottom: 1.6em;
}
.close-contact-btn a:hover {
  opacity: 1;
}
.close-contact-btn .link-btn {
  display: block;
  text-align: center;
}
.close-contact-btn .close-contact-btn__tel {
  display: block;
  font-size: 40px;
  font-family: Meiryo, sans-serif;
  display: flex;
  margin: auto;
  width: fit-content;
  column-gap: 10px;
  font-weight: bold;
  line-height: 1.28;
  align-items: center;
}
.close-contact-btn .close-contact-btn__tel .material-icons-round {
  vertical-align: -18%;
  font-size: 36px;
  margin: 0;
}
.close-contact__info {
  font-size: 0.875rem;
  line-height: 1.44;
  font-size: max(6px, min(2.74vw, 14px));
  margin: 0.2em 0 0;
  padding-left: 1.28em;
  text-indent: -1.28em;
}
.close-contact__info strong {
  color: #222;
}
.close-contact,
.close-info {
  margin: 64px auto;
  margin: min(8.767vw, 64px) auto;
}
.close-info::before,
.close-info::after {
  content: "";
  display: block;
  height: 8px;
  height: min(2.192vw, 8px);
  background-image: linear-gradient(45deg, #fff 25%, rgba(0, 0, 0, 0.16) 25%, rgba(0, 0, 0, 0.16) 50%, #fff 50%, #fff 75%, rgba(0, 0, 0, 0.16) 75%, rgba(0, 0, 0, 0.16));
  background-size: 4px 4px;
}
.close-info__title {
  text-align: left;
  font-size: 40px;
  line-height: 1.28;
  padding-left: 1.28em;
  position: relative;
  margin: 0.8em auto;
}
.close-info__title i {
  color: #ff9800;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 128%;
}
.close-info__title::after {
  content: "のご案内";
  font-weight: normal;
  display: inline-block;
  font-size: 80%;
}
.close-info-content-wrap {
  display: flex;
  text-align: left;
  padding-bottom: 1.6em;
}
.close-info-content-wrap .close-info-content__btn a {
  font-size: 16px;
  font-weight: 400;
  justify-content: center;
  column-gap: 5px;
  align-items: flex-end;
}
.close-info-content-wrap .close-info-content__btn a:hover {
  opacity: 1;
}
.close-info-content-wrap .close-info-content__btn a .material-icons-round {
  font-size: 36px;
  vertical-align: -18%;
  margin: 0;
}
a.link-btn--block {
  padding: 0.8em;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.close-info-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
}
.close-info-content + div {
  flex: 1.6;
  padding-left: 24px;
}
.close-info-content > * {
  margin: 0.64em 0;
}
.close-info-content > *:first-child {
  margin-top: 0;
}
.close-info dl dt {
  font-weight: bold;
  position: relative;
  padding-left: 1em;
}
.close-info-content__map {
  min-height: 360px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0.32em;
  overflow: hidden;
}
.close-info-content__map > *,
.close-info-content__map iframe {
  width: 100%;
  height: 100%;
}
.close-info dl dl {
  margin: 1.6em 0;
}
.close-info dl dt {
  font-weight: bold;
  position: relative;
  padding-left: 1em;
}
.close-info dl dt::before {
  content: "▼";
  position: absolute;
  left: 0.1em;
  top: 0;
  transform-origin: left;
  transform: scale(0.48);
  color: #ff9800;
}
.close-info dl dt ~ dt {
  margin-top: 0.8em;
}
.close-info dl dd {
  border-left: 1px solid rgba(0, 0, 0, 0.16);
  font-size: 88%;
  margin-left: 0.4em;
  padding-left: 1.28em;
}
.close-info-content__tel {
  font-weight: 500;
  text-align: left;
  line-height: 1.2;
}
.close-info-content__tel i {
  margin: 0;
  color: #ff9800;
  font-size: 36px;
}
.close-info-content__tel a {
  text-decoration: none;
  font-size: 30px;
  column-gap: 10px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

@media screen and (max-width: 970px) {
  .close-info-content__map {
    min-height: 0;
    height: 240px;
  }
  .close-info-content-wrap {
    display: block;
  }
  .close-info__title {
    display: table;
    font-size: max(6px, min(6.575vw, 40px));
  }
  .close-info dl dd {
    font-size: 110%;
  }
  .close-info-content-wrap .close-info-content__btn a .material-icons-round{
      font-size: 112%;
    }
    
    .close-info-content__btn {
      padding: 0;
      margin: 0;
  }
  .close-info-content + div{
    padding-left: 0;
  }
  .close-contact-btn .close-contact-btn__tel{
    font-size: 224%;
  }
  .close-contact-message-fukidashi {
      width: auto;
  }
  .close-contact-message__img {
      margin: 1.6em auto 0;
  }
  .close-contact-message-fukidashi::before {
    left: 50%;
    top: 100%;
    transform: rotate(0deg) translate(-50%, -16%) scaleX(1.68);
}
.close-contact__title .material-icons-round{
  font-size: 112%;
  vertical-align: -18%;
  display: inline-block;
}
.close-contact__title{
  display: block;
}
}
#footer .footer-contact .footer-contact__btn{
  text-align: center;
}
#footer .footer-contact .footer-contact__btn .link-btn{
  display: flex;
}
.close-info-content-wrap .close-info-content__btn a{
  display: flex;
}
.widget_info__btn .link-btn{
  display: flex;
  justify-content: center;
  .material-icons-round{ 
    margin: 0;
    margin-top: 2px;
    margin-right: 5px;
  }
}
.select{
  font-weight: bold !important;
}
.page_img_list_l_m{
  margin-bottom: 60px !important;
}
@media screen and (max-width: 970px) {
  .page_img_list_l_m{
    margin-bottom: 20px !important;
  }
}
.case-list_hirai-shinkyuin_1{
  margin-block-start: 1.67em !important;
  h5{
    font-weight: bold !important;
  }
}
.content-style{
  h5{
    font-weight: bold !important;
  }
  
}
.youtube {
  position: relative;
  width: 100%;
}
.youtube iframe{
  width: 100%;
}

.bt_line{
  margin-bottom: 50px;
}
@media (max-width: 970px) {
  .bt_line{
    margin-bottom: 30px;
  }
}
.close-info-content__tel a{
  display: flex !important;
  align-items: center !important;
  line-height: 30px;
}
.tel_b_icon{
  max-width: 30px;
}
.footer-contact__tel{
  display: flex !important;
  align-items: center !important;
  line-height: 30px;
}
@media (max-width: 970px) {
  .popup {
      width: 95% !important;
      bottom: 0 !important;
      right: 2.5% !important;
      bottom: 5% !important;
  }
}
.sitemap{
  li{
    a{
      text-decoration: none !important;
    }
  }
}
.top_img_left{
  margin-bottom: 60px !important;
}
@media (max-width: 970px) {
  .top_img_left{
    margin-bottom: 36px !important;
  }
}

#header .menu_item #menu_list_sp {
  display: none;
}
@media screen and (max-width: 970px) {
  #header .menu_item #menu_list_sp {
    display: flex;
  }
}
#header .menu_item #menu_list_sp li {
  flex: 1 1 172px;
  min-height: 64px;
  min-height: min(18.63vw, 64px);
  border: 1px solid #E1E1E1;
  display: flex;
  align-items: center;
  position: relative;
  background: url(../img/common/sp_bg.jpg) no-repeat;
  background-size: 100% 100%;
}
#header .menu_item #menu_list_sp li:hover {
  transition: 0.3s ease-in-out;
  background: url(../img/common/sp_bg_on.jpg) no-repeat;
  background-size: 100% 100%;
}

#header .menu_item #menu_list_sp li a {
  padding: 0.8em;
  display: block;
  text-align: center;
  margin: auto;
  width: fit-content;
  font-weight: 500;
  font-size: 11px;
  width: 100%;
  font-family: Meiryo, sans-serif;
  span{
    max-width: 14px;
    margin: auto;
    .org_bg{
      max-width: 14px;
      margin: auto;
      display: none;
      margin-bottom: 3px;
    }
    .wr_bg{
      max-width: 14px;
      margin: auto;
      margin-bottom: 3px;
      display: block;
    }
  }
}
@media screen and (max-width: 970px) {
  .is_show_32 .menu_item #menu_list_sp , .is_show .menu_item #menu_list_sp {
    display: flex;
    background:  #ff9800 !important;
    color: #fff !important;
    min-height: 64px;
    .material-icons-round{
      margin-bottom: 5px;
    }
    li {
      background:  #ff9800 !important;
      color: #fff !important;
      border: none !important;
    }
    a{
      color: #fff !important;
      font-weight: bold;
      .org_bg{
        display: block !important;
      }
      .wr_bg{
        display: none !important;
      }
    }
  }
}
.popup{
  display: none;
}
.pop-show{
  /* display: block; */
  display: none;
}

.voice-img {
  margin-top: 20px;
  margin-bottom: 20px;
}