@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スタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** function
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

body {
  min-height: 100vh;
}

.w_base {
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
  padding-right: 10px !important;
  padding-left: 10px !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  width: 100%;
  transition: all 0.3s ease;
}
.hd_bg .hd {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.hd_bg .hd_logo {
  position: relative;
  display: flex;
  align-items: center;
  width: 100vw;
  height: 100%;
  min-height: 500px;
  margin: 0 calc(50% - 50vw);
  padding: 0 20px;
  background: url(../images/ttl_bg.jpg) no-repeat center center;
  background-size: cover;
  text-decoration: none;
}
.hd_bg .hd_logo::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}
.hd_bg .hd_logo > span {
  position: relative;
  top: 40px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  color: #184a0c;
  font-family: "Kosugi Maru", serif;
  font-size: clamp(32px, 13.6759776536px + 1.7877094972vw, 48px);
  font-weight: 400;
}
.hd_bg .hd_eugate {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.78);
}
.hd_bg .hd_eugate img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
}
.con_bg .con .main {
  width: 100%;
  height: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  background: #6cbb5a;
}
.ft_bg .ft {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 !important;
  color: #fff;
}
.ft_bg .ft a {
  color: #fff;
}
.ft_bg .ft .ft_copy {
  text-align: center;
}

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

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

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  width: 100%;
}
.index_main .index_about > p {
  margin: 1em auto;
  font-family: "Kosugi Maru", serif;
  font-size: 18px;
  border: none;
}
.index_main .index_about > p:first-of-type {
  margin-top: 4em;
}
.index_main .index_about > p:last-of-type {
  margin-bottom: 3em;
}
.index_main .index_about_list {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
  margin: 0 !important;
}
.index_main .index_about_list_item {
  overflow: hidden;
  width: calc((100% - 55px) / 2);
  margin: 0 !important;
  list-style: none !important;
  border-radius: 30px;
}
.index_main .index_about_list_item a {
  position: relative;
  display: block;
  color: #fff;
  font-family: "Kosugi Maru", serif;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.5s ease;
}
.index_main .index_about_list_item a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  transition: transform 0.6s ease;
}
.index_main .index_about_list_item a span {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 1em;
  background: rgba(108, 187, 90, 0.8);
}
.index_main .index_about_list_item a:hover img {
  transform: scale(1.2);
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.movie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 55px;
  grid-row-gap: 0px;
}
.movie_list {
  grid-area: 1/1/2/3;
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
  margin: 0 !important;
}
.movie_list_item {
  width: 100%;
  margin: 0 !important;
  list-style: none !important;
}
.movie_list_item h3 {
  margin: 0 0 30px !important;
}
.movie_list_item a {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  font-family: "Kosugi Maru", serif;
  font-size: 18px;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.5s ease;
}
.movie_list_item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  transition: transform 0.6s ease;
}
.movie_list_item a span {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 1em;
  background: rgba(108, 187, 90, 0.8);
}
.movie_list_item a:hover img {
  transform: scale(1.2);
}
.movie_list_item > div {
  overflow: hidden;
  border-radius: 30px;
}
.movie_list_item > div iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.movie_link {
  position: sticky;
  top: 10px;
  grid-area: 1/3/2/4;
  height: -moz-max-content;
  height: max-content;
}
.movie_link_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 !important;
  padding: 0 !important;
  border: none;
}
.movie_link_list li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.movie_link_list li a {
  display: flex;
  align-items: center;
  gap: 0 0.5em;
  position: relative;
  padding: 1em 0.7em;
  color: #111;
  border: 1px solid #6cbb5a;
  border-radius: 3px;
  background-color: rgba(108, 187, 90, 0.1490196078);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.movie_link_list li a:hover {
  background-color: #6cbb5a;
  color: #fff;
}
.movie_link_list li a.dark_green {
  color: #111;
  border: 1px solid #217a0d;
  background-color: rgba(67, 173, 43, 0.25);
}
.movie_link_list li a.dark_green:hover {
  background-color: #217a0d;
  color: #fff;
}
.movie_link_list li a.orange {
  color: #111;
  border: 1px solid #fa8500;
  background-color: rgba(255, 103, 0, 0.15);
}
.movie_link_list li a.orange:hover {
  background-color: #fa8500;
  color: #fff;
}

.back {
  width: 100%;
  max-width: 250px;
  margin: 60px auto 20px;
}
.back a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1em;
  background: rgba(108, 187, 90, 0.1490196078);
  color: #111;
  border: 1px solid #6cbb5a;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.back a:hover {
  background: #6cbb5a;
  color: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon > section {
  padding-top: 30px;
  padding-bottom: 60px;
}
.mcon h2 {
  margin: 20px 0 40px;
  padding-bottom: 10px;
  color: #1f2630;
  font-size: 32px;
  font-weight: 500;
  border-bottom: 4px solid #6cbb5a;
}
.mcon h3 {
  position: relative;
  margin: 20px 0 10px;
  padding-left: 25px;
  font-size: 24px;
  font-weight: 500;
}
.mcon h3::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background: #6cbb5a;
}
.mcon h4 {
  position: relative;
  margin: 20px 0 10px;
  padding-left: 25px;
  font-size: 20px;
  font-weight: 500;
}
.mcon h4::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #9bda8d;
  border-radius: 3px;
}
.mcon h5, .mcon h6 {
  margin: 20px 0 10px;
  font-size: 18px;
  font-weight: 500;
}
.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;
}
.mcon .alignright {
  display: block;
  margin: 0 0 0 auto !important;
}
.mcon .alignleft {
  display: block;
  margin: 0 auto 0 0 !important;
}
.mcon .aligncenter {
  display: block;
  margin: 0 auto !important;
}/*# sourceMappingURL=style.css.map */