@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

/*--------color code -------*/
html,
body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  font-size: 15px;
}

body {
  min-height: 100vh;
}

.w_base {
  width: 90vw;
  max-width: 1000px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: serif, "Noto Serif JP";
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.hd_bg {
  position: relative;
}
.hd_bg .hd {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.hd_bg .hd_logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 383px;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif !important;
}
.hd_bg .hd_logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.hd_bg .hd_logo a img {
  width: 100%;
  height: auto;
}
.hd_bg .hd_logo a .site_title {
  display: block;
  width: 250px;
  text-decoration: none;
  color: #000;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg .nav {
  width: 100%;
  height: 100%;
}
.nav_bg .nav .nav_list {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
}
.nav_bg .nav .nav_list > li {
  display: inline-block;
  width: 100%;
  height: inherit;
}
.nav_bg .nav .nav_list > li > a {
  display: inline-grid;
  width: 100%;
  height: inherit;
  font-size: 13px;
  padding: 20px 10px;
  color: #000;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
}
.nav_bg .nav .nav_list > li > a:hover {
  color: #FF7700;
}
.nav_bg .nav .nav_list > li.current a {
  color: #FF7700;
}
.nav_bg .nav .nav_list > li.contact_nav a {
  background-color: #FF7700;
  color: #fff;
}

ul.nav_list li:hover ul.sub-menu {
  display: flex;
  -webkit-animation: Appear 0.3s forwards;
  animation: Appear 0.3s forwards;
}

.sub-menu {
  position: absolute;
  left: 0;
  z-index: 9999;
  display: none;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100vw;
  padding-left: 33vw;
  background-color: #757575;
}
.sub-menu span {
  position: absolute;
  left: 10vw;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
.sub-menu > li {
  width: 33vw;
}
.sub-menu > li > a {
  color: #fff;
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  width: 100%;
  transition: 0.3s;
  padding-left: 1rem;
}
.sub-menu > li > a:hover {
  color: #fff;
  background-color: #959595;
}

.sub-menu li:hover .nav_glist {
  display: block;
  -webkit-animation: Appear 0.3s forwards;
  animation: Appear 0.3s forwards;
}

@-webkit-keyframes Appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes Appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_glist {
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s;
  display: none;
  width: 34vw;
  height: 100%;
  background-color: #959595;
}
.nav_glist li {
  width: 34vw;
}
.nav_glist li a {
  color: #fff !important;
  text-decoration: none;
  padding: 1rem 0 1rem 1rem;
  display: block;
  width: 100%;
}
.nav_glist li a:hover {
  background-color: #acacac;
}

/**
.nav_glist::-webkit-scrollbar{

}
**/
.li_has_child > a,
.active > a {
  position: relative;
}

.active > a {
  color: #FF7700 !important;
}

.li_has_child > a:hover:before,
.active > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #757575;
  border-left: 10px solid transparent;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
}

.main {
  order: 1;
  width: 700px;
}

.side {
  order: 2;
  width: 230px;
}
.side h3 {
  background-color: #EEE;
  color: #111;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 8px;
  text-align: center;
}

.side_nav_list li a {
  background: url(../images/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #CCC;
  color: #111;
  display: block;
  padding: 12px 10px;
  text-decoration: none;
}
.side_nav_list li a:hover, .side_nav_list li a.current {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.ft_wrapper {
  margin-top: auto;
}
.ft_wrapper .ft_innr_con {
  background-color: #FEE7E0;
}
.ft_wrapper .ft_innr_con p.ft_subtitle {
  font-size: 1.2em;
  font-weight: bold;
}
.ft_wrapper .ft_innr_con p.ft_address {
  font-size: 0.9em;
}
.ft_wrapper .ft_innr_box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ft_wrapper .ft_innr_box_cont p.ft_title {
  font-size: 1.8em;
  font-weight: bold;
  margin-left: 1em;
}
.ft_wrapper .ft_innr_box .ft_link {
  border-left: 1px solid #ccc;
  font-size: 1.2em;
  border-right: 1px solid #ccc;
  padding-left: 30px;
  width: 300px;
}
.ft_wrapper .ft_innr_box .ft_link ul > li a {
  text-decoration: none;
  color: #666;
}
.ft_wrapper .ft_innr_box .ft_link ul > li a:hover {
  color: #333;
}
.ft_wrapper .sns_links {
  position: absolute;
  right: 0;
}
.ft_wrapper .sns_links a {
  text-decoration: none;
}
.ft_wrapper .sns_links a img {
  margin-right: 20px;
}
.ft_wrapper .ft_bg_cp {
  background: #FF7700;
  color: #fff;
}
.ft_wrapper .ft {
  padding: 30px 0;
}
.ft_wrapper .ft_copy {
  font-size: 10px;
  text-align: center;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** pagetop
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.pt {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #333;
  border-radius: 50%;
}
.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  position: relative;
  transform: rotate(45deg);
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
}
.pt_btn::before, .pt_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background-color: #FFF;
}
.pt_btn::before {
  bottom: 0;
  width: 7px;
}
.pt_btn::after {
  right: 0;
  height: 7px;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.index_main {
  width: 100%;
}

.index_content {
  padding: 50px 0;
}

.index_slider_bg {
  position: relative;
}
.index_slider_bg .index_title {
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.index_slider_bg .index_title h1 {
  font-size: max(40px, 3vw);
  text-align: left;
  width: 100%;
  font-family: serif;
}
.index_slider_bg .index_title h1 span {
  color: #FF7700;
}
.index_slider_bg .index_title p {
  font-size: 18px;
}

/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */
.index_slider {
  -webkit-filter: opacity(0.7);
  filter: opacity(0.7);
}
.index_slider img {
  width: 100%;
  height: 70vh !important;
  max-height: 650px !important;
  -o-object-fit: cover !important;
  object-fit: cover;
  font-family: "object-fit: cover!important;";
}

.index_h1 {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  text-align: center;
  font-size: 4em;
  color: #FF7700;
}

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

.row_rev > .index_text a {
  text-align: right;
}

.a_i_center {
  align-items: center;
}

.index_btn {
  display: block;
  margin: auto;
  position: relative;
  color: #FF7700;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 20px 0;
  width: 300px;
  border: solid 1px #FF7700;
  cursor: pointer;
}
.index_btn:before {
  content: "→";
  font-size: 2em;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.index_btn:hover:before {
  right: 10px;
}

.index_con1_bgimg {
  background-image: url(../images/bg-img-1.jpg);
  background-size: cover;
}

.index_con1 {
  color: #fff;
  text-align: center;
}
.index_con1 > h3 {
  font-weight: bold;
  font-size: 1.5em;
  font-family: "Noto Sans JP";
}
.index_con1 > h2 {
  font-weight: bold;
  font-size: 2em;
  margin: 20px auto;
  font-size: min(40px, 2.5vw);
}

.index_con2 {
  position: relative;
}
.index_con2 span {
  position: absolute;
  right: 0;
  font-weight: bold;
  font-size: max(7vw, 80px);
  color: #FEE7E0;
  top: 80px;
}

.index_text h1 {
  position: relative;
  color: #FF7700;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 30px;
}
.index_text h1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #FF7700;
  bottom: -10px;
}
.index_text h2 {
  font-weight: bold;
  font-size: 2em;
}
.index_text a {
  display: block;
  color: #FF7700;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  margin-top: 40px;
  transition: 0.3s;
  cursor: pointer;
}
.index_text a:hover {
  transform: translateX(10px);
}

.index_con3_bg {
  background-color: #FEE7E0;
}

.index_con3 {
  position: relative;
  padding: 15em 0 7em;
}
.index_con3 span {
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: max(7vw, 80px);
  color: #fff;
  top: 40px;
  z-index: 0;
}
.index_con3 .con3_fig {
  position: relative;
  z-index: 1;
  padding: 50px 30px 30px;
}

h2[class^=h2_num] {
  position: relative;
}
h2[class^=h2_num] > span {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 3em;
  color: #FEE7E0;
  position: absolute;
  top: -100px;
  z-index: 0;
  left: 0;
}

.news_list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 5%;
  margin-bottom: 2rem;
}
.news_list .news_list_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30%;
}
.news_list .news_list_item .news_thumb {
  display: block;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.news_list .news_list_item .news_thumb img {
  position: relative;
  min-width: 100%;
  min-height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  -o-object-fit: cover;
  object-fit: cover;
}
.news_list .news_list_item .news_title time {
  font-size: 0.9rem;
  color: #FF7700;
  font-weight: bold;
  display: block;
  margin: 0.9em 0;
}
.news_list .news_list_item .news_title .title {
  font-size: 1.2rem;
  text-decoration: none;
  color: #000;
}
.news_list .news_list_item a {
  text-decoration: none;
}
.news_list .news_list_item a:hover .news_thumb img {
  transform: translate(-50%, -50%) scale(1.2);
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.page_main,
.archive_main,
.single_main {
  min-height: 200px;
  background: url(../images/bg-img-1.jpg);
  display: flex;
  align-items: center;
}
.page_main h1,
.archive_main h1,
.single_main h1 {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: max(4vw, 50px);
  color: rgba(255, 255, 255, 0.35);
}

.page,
.single,
#news {
  margin: 100px auto;
}
.page h1,
.single h1,
#news h1 {
  display: inline-block;
  position: relative;
  color: #FF7700;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 30px;
}
.page h1::before,
.single h1::before,
#news h1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #FF7700;
  bottom: -10px;
}
.page h2,
.single h2,
#news h2 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1em;
}
.page h3,
.single h3,
#news h3 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 1em;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.page h4,
.single h4,
#news h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.page h5,
.single h5,
#news h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.page h6,
.single h6,
#news h6 {
  font-weight: bold;
  margin-bottom: 1em;
}
.page p,
.single p,
#news p {
  line-height: 2.5rem;
  margin: 1em 0;
}
.page figure img,
.single figure img,
#news figure img {
  width: 100%;
}
.page figure.wp-block-table table,
.page figure.wp-block-flexible-table-block-table table,
.single figure.wp-block-table table,
.single figure.wp-block-flexible-table-block-table table,
#news figure.wp-block-table table,
#news figure.wp-block-flexible-table-block-table table {
  border: 1px solid #e8e0d9;
  width: 100%;
  border-radius: 3px;
}
.page figure.wp-block-table table th,
.page figure.wp-block-flexible-table-block-table table th,
.single figure.wp-block-table table th,
.single figure.wp-block-flexible-table-block-table table th,
#news figure.wp-block-table table th,
#news figure.wp-block-flexible-table-block-table table th {
  border: none;
  border-bottom: 1px dashed #8d6345;
  padding: 15px;
  text-align: left;
  vertical-align: top;
  width: 25%;
  font-weight: normal;
  color: #8d6345;
  background: -webkit-repeating-linear-gradient(-45deg, #fff, #fff 1px, #f3eae3 1px, #f3eae3 3px);
  background: repeating-linear-gradient(-45deg, #fff, #fff 1px, #f3eae3 1px, #f3eae3 3px);
}
.page figure.wp-block-table table td,
.page figure.wp-block-flexible-table-block-table table td,
.single figure.wp-block-table table td,
.single figure.wp-block-flexible-table-block-table table td,
#news figure.wp-block-table table td,
#news figure.wp-block-flexible-table-block-table table td {
  border: none;
  border-bottom: 1px dashed #b8a79a;
  padding: 15px 30px;
  vertical-align: top;
}
.page figure.wp-block-table table tr:last-child th,
.page figure.wp-block-flexible-table-block-table table tr:last-child th,
.single figure.wp-block-table table tr:last-child th,
.single figure.wp-block-flexible-table-block-table table tr:last-child th,
#news figure.wp-block-table table tr:last-child th,
#news figure.wp-block-flexible-table-block-table table tr:last-child th {
  border-bottom: none;
}
.page figure.wp-block-table table tr:last-child td,
.page figure.wp-block-flexible-table-block-table table tr:last-child td,
.single figure.wp-block-table table tr:last-child td,
.single figure.wp-block-flexible-table-block-table table tr:last-child td,
#news figure.wp-block-table table tr:last-child td,
#news figure.wp-block-flexible-table-block-table table tr:last-child td {
  border-bottom: none;
}
.page form:not(.post_password) input,
.single form:not(.post_password) input,
#news form:not(.post_password) input {
  width: 100%;
  padding: 5px 10px;
  border: 1px solid #ccc;
}
.page form:not(.post_password) input:focus,
.single form:not(.post_password) input:focus,
#news form:not(.post_password) input:focus {
  background: #efefef;
}
.page form:not(.post_password) input:invalid, .page form:not(.post_password) input:required,
.single form:not(.post_password) input:invalid,
.single form:not(.post_password) input:required,
#news form:not(.post_password) input:invalid,
#news form:not(.post_password) input:required {
  background: #ffd9e1;
}
.page form:not(.post_password) input[type=checkbox],
.page form:not(.post_password) input[type=radio],
.single form:not(.post_password) input[type=checkbox],
.single form:not(.post_password) input[type=radio],
#news form:not(.post_password) input[type=checkbox],
#news form:not(.post_password) input[type=radio] {
  width: auto;
  vertical-align: middle;
}
.page form:not(.post_password) input.p-postal-code,
.single form:not(.post_password) input.p-postal-code,
#news form:not(.post_password) input.p-postal-code {
  width: auto;
}
.page form:not(.post_password) input[type=number]::-webkit-inner-spin-button,
.page form:not(.post_password) input[type=number]::-webkit-outer-spin-button,
.single form:not(.post_password) input[type=number]::-webkit-inner-spin-button,
.single form:not(.post_password) input[type=number]::-webkit-outer-spin-button,
#news form:not(.post_password) input[type=number]::-webkit-inner-spin-button,
#news form:not(.post_password) input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  /* Chrome, Safari */
  margin: 0;
  /* IE */
  display: none;
}
.page form:not(.post_password) select,
.single form:not(.post_password) select,
#news form:not(.post_password) select {
  border: 1px solid #ccc;
}
.page form:not(.post_password) textarea,
.single form:not(.post_password) textarea,
#news form:not(.post_password) textarea {
  border: 1px solid #ccc;
  padding: 5px 10px;
  width: 100%;
}
.page form:not(.post_password) textarea:focus,
.single form:not(.post_password) textarea:focus,
#news form:not(.post_password) textarea:focus {
  background: #efefef;
}
.page form:not(.post_password) textarea:invalid, .page form:not(.post_password) textarea:required,
.single form:not(.post_password) textarea:invalid,
.single form:not(.post_password) textarea:required,
#news form:not(.post_password) textarea:invalid,
#news form:not(.post_password) textarea:required {
  background: #ffd9e1;
}
.page form:not(.post_password) .contact_form_btn input[type=button],
.page form:not(.post_password) .contact_form_btn input[type=submit],
.single form:not(.post_password) .contact_form_btn input[type=button],
.single form:not(.post_password) .contact_form_btn input[type=submit],
#news form:not(.post_password) .contact_form_btn input[type=button],
#news form:not(.post_password) .contact_form_btn input[type=submit] {
  height: 40px;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.mcon h2 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.mcon h3 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 16px;
}
.mcon h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.mcon h5,
.mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}/*# sourceMappingURL=style.css.map */