@charset "utf-8";

/*==========================================
 font
===========================================*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
html {
  font-family: "Noto Serif JP", serif;
  font-size: 62.5%;
  font-weight: 400;
  color: #333333;
}

/* link */
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
a { outline: none; text-decoration: none; }
a:link    { color: #333333; text-decoration: none; }
a:visited { color: #333333; text-decoration: underline; }
a:hover   { color: #333333; text-decoration: underline; }
a:active  { color: #333333; text-decoration: underline; }



/*==========================================
 body
===========================================*/

/* html {
  background: #333;
  overflow: auto;
}
body {
	min-width: 1100px;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 767px) {
  body {
  	min-width: auto;
  }
} */

html, body {
  background: #333;
  margin: 0;
  padding: 0;
}

body {
  min-width: 1100px;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 767px) {
  body { min-width: auto; }
}

/*==========================================
 画像切替
===========================================*/
/* PC、スマートフォン表示分岐 */
.pcView {
  display: block;
}
.spView {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pcView {
    display: none;
  }
  .spView {
    display: block;
  }
}

/*==========================================
 フェードイン
===========================================*/
/* 上下フェード */
.fade_off {
  opacity: 0;
  transform: translateY(50px);
  transition: all 2.0s ease;
}
.delay_1 { transition-delay: 0.5s; }
.delay_2 { transition-delay: 1.0s; }
.delay_3 { transition-delay: 1.5s; }

.fade_on {
  opacity: 1;
  transform: translateY(0px);
}


/*==========================================
 ヘッダーのスタイル
===========================================*/
header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100px;
}
header #header {
  position: relative;
  width: calc(100% - 80px);
  margin: 0 auto;
}
header #headerLogoArea {
  position: absolute;
  left: 0;
  top: 33px;
}
header #headerLogoArea h1 img {
  width: 180px;
  height: auto;
}
header #headerLogoArea h1 a:hover {
  text-decoration: none;
  opacity: 0.7;
}

header #headerLogoArea h1 .l_Color01 {
  display: block;
}
header #headerLogoArea h1 .l_Color02 {
  display: none;
}

/* ロゴ白 背景ぼかしなし */
header.h_Color_01 {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0); 
}
header.h_Color_01 #headerLogoArea h1 .l_Color01 { display: block; }
header.h_Color_01 #headerLogoArea h1 .l_Color02 { display: none; }

/* ロゴ白 背景ぼかしあり */
header.h_Color_02 {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px); 
}
header.h_Color_02 #headerLogoArea h1 .l_Color01 { display: block; }
header.h_Color_02 #headerLogoArea h1 .l_Color02 { display: none; }

/* ロゴ色あり 背景ぼかしあり */
header.h_Color_03 {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px); 
}
header.h_Color_03 #headerLogoArea h1 .l_Color01 { display: none; }
header.h_Color_03 #headerLogoArea h1 .l_Color02 { display: block; }

/* 初回から変更 */
body.header_03 header {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px); 
}
body.header_03 header #headerLogoArea h1 .l_Color01 { display: none; }
body.header_03 header #headerLogoArea h1 .l_Color02 { display: block; }



header #header_SpIcon {
  display: none;
}
@media only screen and (max-width: 767px) {
  header {
    height: 60px;
    /* background-color: #666; */
  }
  header #header {
    width: calc(100% - 40px);
  }
  header #headerLogoArea {
    top: 20px;
  }
  header #headerLogoArea h1 img {
    width: 107px;
  }

  header #header_SpIcon {
    display: block;
    z-index: 500;
    position: absolute;
    right: 0;
    top: 22px;
    width: 20px;
    height: 17px;
    box-sizing: border-box;
  }
  header #header_SpIcon .menu-trigger,
  header #header_SpIcon .menu-trigger span {
    display: inline-block;
    transition: all 0.4s ease;
    box-sizing: border-box;
  }
  header #header_SpIcon .menu-trigger {
    position: relative;
    width: 20px;
    height: 17px;
  }
  header #header_SpIcon .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #FFF;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(2) {
    top: 8px;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  header #header_SpIcon .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  header #header_SpIcon .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  header #header_SpIcon .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }

  /* ロゴ白 背景ぼかしなし */
  header.h_Color_01 #header_SpIcon .menu-trigger span {
    background-color: #FFF;
  }

  /* ロゴ白 背景ぼかしあり */
  header.h_Color_02 #header_SpIcon .menu-trigger span {
    background-color: #FFF;
  }

  /* ロゴ色あり 背景ぼかしあり */
  header.h_Color_03 #header_SpIcon .menu-trigger span {
    background-color: #848675;
  }
  header.h_Color_03 #header_SpIcon .menu-trigger.active span {
    background-color: #FFF;
  }

  /* 初回から変更 */
  body.header_03 #header_SpIcon .menu-trigger span {
    background-color: #848675;
  }
  body.header_03 #header_SpIcon .menu-trigger.active span {
    background-color: #FFF;
  }
}


/*グローバルナビゲーション ////////////////////////////////// */
header #headerGlobalArea {
  position: absolute;
  right: 0;
  /* top: 54px; */
  top: 40px;
}
header #headerGlobalArea ul {
  /* width: 387px; */
  width: 260px;
  display: flex;
  justify-content: space-between;
}
header #headerGlobalArea li a {
  position: relative;
  display: block;
  height: 31px;
  padding: 6px 15px 0;
  border: 1px solid #DCE1C8;
  background-color: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 400;
  color: #DCE1C8;
  transition: all 0.3s ease;
}
header #headerGlobalArea li:nth-child(3) a {
  padding: 6px 35px 0 15px;
}
header #headerGlobalArea li:nth-child(3) a::before {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0;
  background-image: url("../img/icon01.svg");
  background-size: cover;
  content: "";
}
header #headerGlobalArea li a:hover {
  opacity: 0.7;
  text-decoration: none;
}

header #headerGlobalArea_Lang {
  position: absolute;
  right: 0;
  top: 20px;
}
header #headerGlobalArea_Lang::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 16px;
  margin: -8px 0 0 -1px;
  background-color: #A0A0A0;
  content: "";
}
header #headerGlobalArea_Lang ul {
  width: 60px;
  display: flex;
  justify-content: space-between;
}
header #headerGlobalArea_Lang ul li a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #A0A0A0;
  transition: all 0.3s ease;
}
header #headerGlobalArea_Lang ul li.active a {
  color: #FFF;
}
header #headerGlobalArea_Lang ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}


header.h_Color_01 #headerGlobalArea_Lang ul li.active a {
  color: #FFF; 
}
header.h_Color_02 #headerGlobalArea_Lang ul li.active a {
  color: #FFF; 
}
header.h_Color_03 #headerGlobalArea_Lang ul li.active a {
  color: #848675; 
}

body.header_02 header #headerGlobalArea_Lang ul li.active a{
  color: #1E2823;
}

header #headerNavi_Sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  header #headerGlobalArea,
  header #headerGlobalArea_Lang  {
    display: none;
  }

  header #headerNavi_Sp {
    position: absolute;
    right: -100vw;
    top: 0;
    display: block;
    width: 100%;
    height: 100vh;
    background-color: #1E2823;
  }

  header #headerNavi_Sp .headerNavi_Sp_Title {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 28px 0 0;
    box-sizing: border-box;
  }
  header #headerNavi_Sp .headerNavi_Sp_Title h2 img {
    width: 123px;
    height: auto;
  }

  header #headerNavi_Sp .headerNavi_Sp_Navi {
    width: calc(100% - 80px);
    margin: 0 auto;
    padding: 100px 0 0;
    box-sizing: border-box;
  }
  header #headerNavi_Sp .headerNavi_Sp_Navi ul {
    list-style-type: none;
  }
  header #headerNavi_Sp .headerNavi_Sp_Navi ul li {
    padding: 0 0 50px;
  }
  header #headerNavi_Sp .headerNavi_Sp_Navi ul li a {
    position: relative;
    font-size: 1.8rem;
    font-weight: 600;
    color: #DCE1C8;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 10px;
  }
  header #headerNavi_Sp .headerNavi_Sp_Navi ul li:nth-child(3) a::before {
    position: absolute;
    right: -22px;
    top: 50%;
    width: 12px;
    height: 12px;
    margin: -4px 0 0;
    background-image: url("../img/icon01.svg");
    background-size: cover;
    content: "";
  }

  header #headerNavi_Sp .headerNavi_Sp_Foundation {
    position: absolute;
    right: 22px;
    top: 255px;
    width: 18px;
    text-align: right;
  }
  header #headerNavi_Sp .headerNavi_Sp_Foundation a {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 1.2rem;
    font-weight: 600;
    color: #DCE1C8;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
  }

  header #headerNavi_Sp .headerNavi_Sp_Lang {
    position: absolute;
    right: 20px;
    top: 176px;
    width: 18px;
  }
  header #headerNavi_Sp .headerNavi_Sp_Lang::before {
    position: absolute;
    left: 50%;
    top: 25px;
    width: 16px;
    height: 1px;
    margin: 0 0 0 -8px;
    background-color: #A0A0A0;
    content: "";
  }
  header #headerNavi_Sp .headerNavi_Sp_Lang ul {
    width: 100%;
  }
  header #headerNavi_Sp .headerNavi_Sp_Lang ul li {
    padding: 0 0 23px;
    text-align: right;
  }
  header #headerNavi_Sp .headerNavi_Sp_Lang ul li a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #A0A0A0;
    transition: all 0.3s ease;
  }
  header #headerNavi_Sp .headerNavi_Sp_Lang ul li.active a {
    color: #DCE1C8;
  }

  header #headerNavi_Sp .headerNavi_Sp_Add {
    position: absolute;
    left: 40px;
    bottom: 158px;
    display: flex;
    justify-content: start;
  }
  header #headerNavi_Sp .headerNavi_Sp_Add .column_L {
    width: 70px;
  }
  header #headerNavi_Sp .headerNavi_Sp_Add .column_L h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #DCE1C8;
    line-height: 1.6;
  }
  header #headerNavi_Sp .headerNavi_Sp_Add .column_R {
    width: calc(100% - 70px);
  }
  header #headerNavi_Sp .headerNavi_Sp_Add .column_R p {
    font-size: 1.4rem;
    font-weight: 600;
    color: #DCE1C8;
    line-height: 1.6;
  }

  header #headerNavi_Sp .headerNavi_Sp_Contact {
    position: absolute;
    left: 40px;
    bottom: 75px;
    display: flex;
    justify-content: start;
  }
  header #headerNavi_Sp .headerNavi_Sp_Contact .column_L {
    width: 70px;
  }
  header #headerNavi_Sp .headerNavi_Sp_Contact .column_L h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #DCE1C8;
    line-height: 1.6;
  }
  header #headerNavi_Sp .headerNavi_Sp_Contact .column_R {
    width: calc(100% - 70px);
  }
  header #headerNavi_Sp .headerNavi_Sp_Contact .column_R p {
    font-size: 1.4rem;
    font-weight: 600;
    color: #DCE1C8;
    line-height: 1.6;
  }
  header #headerNavi_Sp .headerNavi_Sp_Contact .column_R p a {
    color: #DCE1C8;
  }
  header #headerNavi_Sp .headerNavi_Sp_Contact .column_R p a:hover {
    text-decoration: none;
  }
}

/*==========================================
 フッターのスタイル
===========================================*/
footer {
  width: 100%;
  min-height: 400px;
  padding: 165px 0 0;
  box-sizing: border-box;
  background-color: #1E2823;
}
footer #footerBody {
  position: relative;
  width: calc(100% - 160px);
  height: 235px;
  margin: 0 auto;
  box-sizing: border-box;
}
footer #footerBody .footer_Title {
  width: 193px;
}
footer #footerBody .footer_Title h2 img {
  width: 193px;
  height: auto;
}

footer #footerBody .footer_Add {
  position: absolute;
  right: 380px;
  top: 0;
}
footer #footerBody .footer_Add h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #DCE1C8;
}
footer #footerBody .footer_Add p {
  padding: 10px 0 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #DCE1C8;
  line-height: 1.6;
}

footer #footerBody .footer_Contact {
  position: absolute;
  right: 0;
  top: 0;
}
footer #footerBody .footer_Contact h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #DCE1C8;
}
footer #footerBody .footer_Contact p {
  padding: 10px 0 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #DCE1C8;
  line-height: 1.6;
}
footer #footerBody .footer_Contact p a {
  color: #DCE1C8;
  transition: all 0.3s ease;
}
footer #footerBody .footer_Contact p a:hover {
  text-decoration: none;
  opacity: 0.7;
}
footer #footerBody .footer_Contact p span {
  display: block;
  padding: 5px 0 0;
  font-size: 1.2rem;
  line-height: 1.6;
}

footer #footerBody .footer_Foundation {
  position: absolute;
  right: 0;
  bottom: 50px;
}
footer #footerBody .footer_Foundation a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #DCE1C8;
}

footer #footerBody small {
  position: absolute;
  left: 0;
  bottom: 50px;
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #848675;
}
@media only screen and (max-width: 767px) {
  footer {
    min-height: 667px;
    padding: 125px 0 0;
  }
  footer #footerBody {
    width: calc(100% - 40px);
    height: 542px;
  }
  footer #footerBody .footer_Title {
    padding: 0 0 0 20px;
  }
  footer #footerBody .footer_Title {
    width: 164px;
    padding: 0 0 0 20px;
  }
  footer #footerBody .footer_Title h2 img {
    width: 164px;
    height: auto;
  }

  footer #footerBody .footer_Add {
    position: absolute;
    left: 20px;
    top: 258px;
    width: 100%;
    display: flex;
    justify-content: start;
  }
  footer #footerBody .footer_Add .column_L {
    width: 85px;
  }
  footer #footerBody .footer_Add .column_L h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #DCE1C8;
    line-height: 1.6;
  }
  footer #footerBody .footer_Add .column_R p {
    padding: 0;
    font-size: 1.6rem;
    font-weight: 600;
    color: #DCE1C8;
    line-height: 1.6;
  }

  footer #footerBody .footer_Contact {
    position: absolute;
    left: 20px;
    top: 333px;
    width: 100%;
    display: flex;
    justify-content: start;
  }
  footer #footerBody .footer_Contact .column_L {
    width: 85px;
  }
  footer #footerBody .footer_Contact .column_L h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #DCE1C8;
    line-height: 1.6;
  }
  footer #footerBody .footer_Contact .column_R p {
    padding: 0;
    font-size: 1.6rem;
    font-weight: 600;
    color: #DCE1C8;
    line-height: 1.6;
  }
  footer #footerBody .footer_Contact .column_R p a {
    color: #DCE1C8;
  }
  footer #footerBody .footer_Contact .column_R p a:hover {
    text-transform: none;
  }
  footer #footerBody .footer_Contact .column_R p span {
    display: block;
    left: 0;
    padding: 5px 0 0;
    font-size: 1.2rem;
    line-height: 1.6;
  }

  footer #footerBody .footer_Foundation {
    left: 20px;
    right: auto;
    bottom: 65px;
  }

  footer #footerBody small {
    left: 20px;
    bottom: 30px;
    font-size: 1.0rem;
  }
}


/*==========================================
 コンテンツのスタイル 共通
===========================================*/
#mainContents {
  min-height: 1000px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #mainContents {
    min-height: 1000px;
  }
}


/*==========================================
 Top
===========================================*/
#mainContents .topMv_Area {
  width: 100%;
  height: 100vh;
  animation: fadeIn 2.0s ease-out forwards; 
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#mainContents .topMv_Area img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}


#mainContents .topMv_Area .topMv_Link {
  position: absolute;
  right: 40px;
  bottom: 30px;
}
#mainContents .topMv_Area .topMv_Link::before {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 135%;
  height: 1px;
  background-color: #DCE1C8;
  content: "";
}
#mainContents .topMv_Area .topMv_Link a {
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
  color: #DCE1C8;
  line-height: 1.8;
}
#mainContents .topMv_Area .topMv_Link a::before,
#mainContents .topMv_Area .topMv_Link a::after {
  position: absolute;
  bottom: 7px;
  left: 79px;
  width: 1px;
  height: 8px;
  border-radius: 9999px;
  background-color: #dce1c8;
  transform-origin: 50% calc(100% - 0.5px);
  content: "";
}
#mainContents .topMv_Area .topMv_Link a::before {
  transform: rotate(45deg);
}
#mainContents .topMv_Area .topMv_Link a::after {
  transform: rotate(-45deg);
}
#mainContents .topMv_Area .topMv_Link a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .topMv_Area .topMv_Link {
    right: auto;
    left: 20px;
    bottom: 30px;
  }
  #mainContents .topMv_Area .topMv_Link::before {
    width: 135%;
  }
  #mainContents .topMv_Area .topMv_Link a {
    font-size: 1.4rem;
  }
  #mainContents .topMv_Area .topMv_Link a::before,
  #mainContents .topMv_Area .topMv_Link a::after {
    bottom: 6px;
    left: 70px;
  }
}



#mainContents .top_Pr {
  position: relative;
  width: 100%;
}
#mainContents .top_Pr img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#mainContents .top_Pr .top_Pr_text {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 973px;
  height: 546px;
  transform: translate(-50%, -50%); 
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse; 
}
#mainContents .top_Pr .top_Pr_text .column_L,
#mainContents .top_Pr .top_Pr_text .column_R {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
#mainContents .top_Pr .top_Pr_text .column_L {
  width: 84px;
}
#mainContents .top_Pr .top_Pr_text .column_R {
  width: 400px;
}
#mainContents .top_Pr .top_Pr_text p {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFF;
  letter-spacing: 0.5em;
  line-height: 2.0;
  /* margin-left: 2.0em;  */
}
@media only screen and (max-width: 767px) {
  #mainContents .top_Pr {
    height: 767px;
  }
  #mainContents .top_Pr img {
    width: 100%;
    height: 767px;
  }
  #mainContents .top_Pr .top_Pr_text {
    position: absolute;
    left: 0;
    top: 240px;
    width: 100%;
    height: auto;
    transform: none;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse; 
  }
  #mainContents .top_Pr .top_Pr_text .column_L,
  #mainContents .top_Pr .top_Pr_text .column_R {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    display: block;
  }
  #mainContents .top_Pr .top_Pr_text .column_L {
    width: 100%;
  }
  #mainContents .top_Pr .top_Pr_text .column_R {
    width: 100%;
  }
  #mainContents .top_Pr .top_Pr_text p {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 2.2;
    margin: 0 0 20px;
    text-align: center;
  }
}


#mainContents .top_About {
  width: 100%;
  padding: 120px 0 150px;
  background-color: #1E2823;
}
#mainContents .top_About.typ01 {
  padding: 60px 0 150px;
}

#mainContents .top_About .top_About_header {
  width: 1150px;
  margin: 0 auto;
  padding: 0 0 50px 0;
  box-sizing: border-box;
}
#mainContents .top_About .top_About_header p {
  font-size: 1.6rem;
  font-weight: 600;
  color: #DCE1C8;
  line-height: 1.8;
}

#mainContents .top_About .top_About_inner {
  position: relative;
  width: 1150px;
  min-height: 350px;
  margin: 0 auto;
  padding: 30px 0 0 165px;
  box-sizing: border-box;
  border-top: 1px solid #707070;
}
#mainContents .top_About .top_About_inner h2 {
  position: absolute;
  left: 50px;
  top: 67px;
  width: 25px;
  height: 280px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2.4rem;
  font-weight: 600;
  color: #DCE1C8;
  letter-spacing: 0.15em;
}
#mainContents .top_About .top_About_inner h2::before {
  position: absolute;
  left: 11px;
  top: -19px;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #DCE1C8;
  content: "";
}
#mainContents .top_About .top_About_inner .textBox {
  width: 100%;
  padding: 20px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .top_About .top_About_inner .textBox .column {
  width: 450px;
}
#mainContents .top_About .top_About_inner .textBox .column table {
  width: 100%;
}
#mainContents .top_About .top_About_inner .textBox .column table tr {
  border-bottom: 1px solid #707070;
}
#mainContents .top_About .top_About_inner .textBox .column table tr td {
  padding: 18px 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #DCE1C8;
  line-height: 1.0;
}
@media only screen and (max-width: 767px) {
  #mainContents .top_About {
    margin: -1px 0 0;
    padding: 100px 0 50px;
  }

  #mainContents .top_About.typ01 {
    padding: 40px 0 50px;
  }
  #mainContents .top_About .top_About_header {
    width: calc(100% - 40px);
    padding: 0 0 40px 0;
  }
  #mainContents .top_About .top_About_header p {
    font-size: 1.6rem;
  }

  #mainContents .top_About .top_About_inner {
    width: calc(100% - 40px);
    padding: 30px 0 0 55px;
    border-top: 1px solid #707070;
  }
    #mainContents .top_About .top_About_inner h2 {
    left: 0;
    top: 60px;
    width: 20px;
    height: 280px;
    font-size: 2.0rem;
  }
  #mainContents .top_About .top_About_inner h2::before {
    left: 8px;
    top: -15px;
  }
  #mainContents .top_About .top_About_inner .textBox {
    width: 100%;
    padding: 20px 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #mainContents .top_About .top_About_inner .textBox .column {
    width: 100%;
    padding: 0 0 50px;
  }
  #mainContents .top_About .top_About_inner .textBox .column table tr td {
    padding: 15px 0;
    font-size: 1.2rem;
  }
}


#mainContents .top_AboutMuroto {
  width: 100%;
  height: 776px;
  background-color: #1E2823;
}
#mainContents .top_AboutMuroto .top_AboutMuroto_inner {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .top_AboutMuroto .top_AboutMuroto_inner .column_L {
  position: relative;
  width: 500px;
}
#mainContents .top_AboutMuroto .top_AboutMuroto_inner .column_L img {
  position: absolute;
  z-index: 100;
  right: 50px;
  top: 0;
  width: 635px;
  height: 776px;
}
#mainContents .top_AboutMuroto .top_AboutMuroto_inner .column_R {
  width: 500px;
  padding: 150px 0 0 105px;
  box-sizing: border-box;
}
#mainContents .top_AboutMuroto .top_AboutMuroto_inner .column_R h3 {
  padding: 0 0 40px;
  font-size: 2.6rem;
  font-weight: 600;
  color: #DCE1C8;
}
#mainContents .top_AboutMuroto .top_AboutMuroto_inner .column_R p {
  padding: 0 0 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #DCE1C8;
  line-height: 2.0;
}
@media only screen and (max-width: 767px) {
  #mainContents .top_AboutMuroto {
    height: auto;
  }
  #mainContents .top_AboutMuroto .top_AboutMuroto_inner {
    width: calc(100% - 40px);
  }
  #mainContents .top_AboutMuroto .top_AboutMuroto_inner .column_L {
    width: 100%;
  }
  #mainContents .top_AboutMuroto .top_AboutMuroto_inner .column_L img {
    position: static;
    width: 100%;
    height: auto;
  }
  #mainContents .top_AboutMuroto .top_AboutMuroto_inner .column_R {
    width: 100%;
    padding: 65px 20px 0;
  }
  #mainContents .top_AboutMuroto .top_AboutMuroto_inner .column_R h3 {
    padding: 0 0 40px;
    font-size: 2.0rem;
  }
}


#mainContents .top_History {
  width: 100%;
  padding: 120px 0;
  background-color: #1E2823;
}
#mainContents .top_History .top_History_inner {
  width: 1200px;
  margin: 0 auto;
}
#mainContents .top_History .top_History_inner h3 {
  position: relative;
  padding: 0 0 0 15px;
  font-size: 2.4rem;
  font-weight: 600;
  color: #DCE1C8;
}
#mainContents .top_History .top_History_inner h3::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  margin: -3px 0 0;
  background-color: #DCE1C8;
  content: "";
}
#mainContents .top_History .top_History_inner .columnBox {
  width: 100%;
  padding: 40px 0 0 85px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
#mainContents .top_History .top_History_inner .columnBox .column_L {
  position: relative;
  width: 455px;
}
#mainContents .top_History .top_History_inner .columnBox .column_L::before {
  position: absolute;
  left: 87px;
  top: 12px;
  width: 330px;
  height: 1px;
  background-color: #9F9F9F;
  content: "";
}
#mainContents .top_History .top_History_inner .columnBox .column_L h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #DCE1C8;
  line-height: 1.8;
}
#mainContents .top_History .top_History_inner .columnBox .column_R {
  width: 660px;
}
#mainContents .top_History .top_History_inner .columnBox .column_R p {
  font-size: 1.4rem;
  font-weight: 600;
  color: #DCE1C8;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .top_History {
    padding: 70px 0 60px;
  }
  #mainContents .top_History .top_History_inner {
    width: calc(100% - 80px);
  }
  #mainContents .top_History .top_History_inner h3 {
    margin: 0 0 30px;
    padding: 0 0 0 15px;
    font-size: 2.0rem;
  }
  #mainContents .top_History .top_History_inner .columnBox {
    width: 100%;
    padding: 30px 0 0;
  }
  #mainContents .top_History .top_History_inner .columnBox .column_L {
    width: 25%;
  }
  #mainContents .top_History .top_History_inner .columnBox .column_L::before {
    left: 84%;
    top: 11px;
    width: 53%;
  }
  #mainContents .top_History .top_History_inner .columnBox .column_L h4 {
    font-size: 1.2rem;
  }
  #mainContents .top_History .top_History_inner .columnBox .column_R {
    width: 60%;
  }
  #mainContents .top_History .top_History_inner .columnBox .column_R p {
    font-size: 1.2rem;
  }
}


#mainContents .top_Garden {
  width: 100%;
  padding: 170px 0 0;
  background-color: #DCE1C8;
}
#mainContents .top_Garden .top_Garden_inner {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
#mainContents .top_Garden .top_Garden_inner .column_L {
  width: 550px;
  /* padding: 80vh 0 0; */
  padding: 0;
}
#mainContents .top_Garden .top_Garden_inner .column_L img {
  width: 100%;
  height: auto;
  padding: 0 0 200px;
}
#mainContents .top_Garden .top_Garden_inner .column_L .link01 {
  display: none;
}
#mainContents .top_Garden .top_Garden_inner .column_R {
  width: 340px;
  padding: 0 0 200px;
  position: -webkit-sticky; /* Safari用 */
  position: sticky;
  top: 100px; /* 画面上部からどの位置で止めるか（調整してください） */
  height: fit-content; /* 中身の高さに合わせる */
}
#mainContents .top_Garden .top_Garden_inner .column_R h3 {
  position: relative;
  margin: 0 0 55px;
  padding: 0 0 0 15px;
  font-size: 2.4rem;
  font-weight: 600;
}
#mainContents .top_Garden .top_Garden_inner .column_R h3::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  margin: -3px 0 0;
  background-color: #333;
  content: "";
}
#mainContents .top_Garden .top_Garden_inner .column_R p {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8;
}
#mainContents .top_Garden .top_Garden_inner .column_R .link01 {
  display: block;
}
#mainContents .top_Garden .top_Garden_inner .link01 {
  width: 100%;
  height: 80px;
  margin: 30px 0 0;
}
#mainContents .top_Garden .top_Garden_inner .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 32px 15px 0 0;
  border: 1px solid #2A2C24;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .top_Garden .top_Garden_inner .link01 a::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 14px;
  margin: -7px 0 0 45px;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  content: "";
}
#mainContents .top_Garden .top_Garden_inner .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .top_Garden {
    padding: 160px 0;
  }
  #mainContents .top_Garden .top_Garden_inner {
    width: calc(100% - 80px);
    margin: 0 auto;
  }
  #mainContents .top_Garden .top_Garden_inner .column_L {
    width: 100%;
    padding: 0;
    order: 2;
  }
  #mainContents .top_Garden .top_Garden_inner .column_L img {
    /* display: none; */
    padding: 0;
  }
  /* #mainContents .top_Garden .top_Garden_inner .column_L img:first-child {
    display: block;
  } */
  #mainContents .top_Garden .top_Garden_inner .column_L .link01 {
    display: block;
  }
  #mainContents .top_Garden .top_Garden_inner .column_R {
    width: 100%;
    padding: 0 0 30px;
    position: static;
    order: 1;
  }
  #mainContents .top_Garden .top_Garden_inner .column_R h3 {
    margin: 0 0 40px;
    font-size: 2.0rem;
  }
  #mainContents .top_Garden .top_Garden_inner .column_R .link01 {
    display: none;
  }
}


#mainContents .top_Excursion {
  width: 100%;
  padding: 150px 0 160px;
  background-color: #FAF8F2;
}
#mainContents .top_Excursion .top_Excursion_inner {
  width: 1100px;
  margin: 0 auto;
}
#mainContents .top_Excursion .top_Excursion_inner h3 {
  position: relative;
  padding: 0 0 0 15px;
  font-size: 2.4rem;
  font-weight: 600;
}
#mainContents .top_Excursion .top_Excursion_inner h3::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  margin: -3px 0 0;
  background-color: #333;
  content: "";
}
#mainContents .top_Excursion .top_Excursion_inner .textBox {
  width: calc(100% - 200px);
  margin: 0 auto;
  padding: 30px 0 0;
}
#mainContents .top_Excursion .top_Excursion_inner .textBox p {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8;
}
#mainContents .top_Excursion .top_Excursion_inner .columnBox {
  width: calc(100% - 60px);
  margin: 0 auto;
  padding: 70px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .top_Excursion .top_Excursion_inner .columnBox .column {
  width: 480px;
  padding: 50px 0 0;
  border-top: 1px solid #707070
}
#mainContents .top_Excursion .top_Excursion_inner .columnBox .column h4 {
  padding: 0 0 35px;
  font-size: 2.0rem;
  font-weight: 600;
}
#mainContents .top_Excursion .top_Excursion_inner .columnBox .column p {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8;
}
#mainContents .top_Excursion .top_Excursion_inner .link01 {
  width: 378px;
  margin: 0 auto;
  padding: 40px 0 0;
}
#mainContents .top_Excursion .top_Excursion_inner .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  padding: 32px 20px 0 0;
  border: 1px solid #2A2C24;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .top_Excursion .top_Excursion_inner .link01 a::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -6px 0 0 59px;
  background-image: url("../img/icon03.svg");
  background-size: cover;
  content: "";
}
#mainContents .top_Excursion .top_Excursion_inner .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .top_Excursion {
    padding: 120px 0 200px;
  }
  #mainContents .top_Excursion .top_Excursion_inner {
    width: calc(100% - 80px);
  }
  #mainContents .top_Excursion .top_Excursion_inner h3 {
    font-size: 2.0rem;
  }
  #mainContents .top_Excursion .top_Excursion_inner .textBox {
    width: 100%;
    padding: 20px 0 0;
  }
  #mainContents .top_Excursion .top_Excursion_inner .columnBox {
    width: 100%;
    padding: 90px 0 0;
  }
  #mainContents .top_Excursion .top_Excursion_inner .columnBox .column {
    width: 100%;
    padding: 50px 0;
  }
  #mainContents .top_Excursion .top_Excursion_inner .columnBox .column h4 {
    font-size: 1.8rem;
  }
  #mainContents .top_Excursion .top_Excursion_inner .link01 {
    width: 100%;
    padding: 0;
  }
  #mainContents .top_Excursion .top_Excursion_inner .link01 a {
    height: 60px;
    padding: 21px 20px 0 0;
  }
  #mainContents .top_Excursion .top_Excursion_inner .link01 a::after {
    margin: -7px 0 0 59px;
  }
}


#mainContents .top_News {
  width: 100%;
  padding: 0 0 140px;
  background-color: #FAF8F2;
}
#mainContents .top_News .top_News_inner {
  position: relative;
  width: 1100px;
  margin: 0 auto;
  padding: 80px 0 0;
  /* border-top: 1px solid #707070; */
}
#mainContents .top_News .top_News_inner h3 {
  position: absolute;
  left: 0;
  top: 70px;
  width: 16px;
  height: 280px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}
#mainContents .top_News .top_News_inner h3::before {
  position: absolute;
  left: 6px;
  top: -12px;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #333;
  content: "";
}
#mainContents .top_News .top_News_inner .newsIndex {
  width: 984px;
  padding: 0 0 0 116px;
}
#mainContents .top_News .top_News_inner .newsIndex ul {
  border-top: 1px solid #707070;
  list-style-type: none;
}
#mainContents .top_News .top_News_inner .newsIndex ul li {
  padding: 20px 30px 20px 40px;
  border-bottom: 1px solid #707070;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8;
}
#mainContents .top_News .top_News_inner .newsIndex ul li span {
  padding: 0 80px 0 0;
}
#mainContents .top_News .top_News_inner .link01 {
  position: relative;
  width: 100%;
  height: 80px;
  margin: 50px 0 0;
}
#mainContents .top_News .top_News_inner .link01 a {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 447px;
  height: 80px;
  padding: 32px 25px 0 0;
  border: 1px solid #2A2C24;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .top_News .top_News_inner .link01 a::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 92px;
  background-image: url("../img/icon03.svg");
  background-size: cover;
  content: "";
}
#mainContents .top_News .top_News_inner .link01 a::before {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -7px 0 0 -555px;
  content: "最新情報はX(旧twitter)でも公開しております。";
}
#mainContents .top_News .top_News_inner .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .top_News {
    padding: 0 0 200px;
  }
  #mainContents .top_News .top_News_inner {
    width: calc(100% - 40px);
    padding: 60px 0 0;
  }
  #mainContents .top_News .top_News_inner h3 {
    top: 70px;
    width: 20px;
  }
  #mainContents .top_News .top_News_inner h3::before {
    left: 9px;
  }
  #mainContents .top_News .top_News_inner .newsIndex {
    width: 100%;
    padding: 0 0 0 60px;
    box-sizing: border-box;
  }
  #mainContents .top_News .top_News_inner .newsIndex ul li {
    position: relative;
    padding: 20px 0 20px 80px;
    box-sizing: border-box;
    font-size: 1.2rem;
  }
  #mainContents .top_News .top_News_inner .newsIndex ul li span {
    position: absolute;
    left: 0;
    top: 20px;
    padding: 0;
  }
  #mainContents .top_News .top_News_inner .link01 {
    height: auto;
    margin: 80px 0 0;
  }
  #mainContents .top_News .top_News_inner .link01 a {
    position: static;
    width: 100%;
    height: 60px;
    padding: 21px 25px 0 0;
    text-align: center;
  }
  #mainContents .top_News .top_News_inner .link01 a::before {
    left: 0;
    top: 50%;
    width: 100%;
    margin: -57px 0 0;
    font-size: 1.2rem;
    text-align: center;
  }

}


/*==========================================
 庭園のご紹介
===========================================*/
#mainContents .introduction_header {
  width: 100%;
  height: 100vh;
  animation: fadeIn 2.0s ease-out forwards; 
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#mainContents .introduction_header img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}


#mainContents .introduction_main {
  width: 100%;
  padding: 120px 0;
  background-color: #FAF8F2;
}
#mainContents .introduction_main .imgBox {
  width: 850px;
  margin: 0 auto;
}
#mainContents .introduction_main .imgBox img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents .introduction_main {
    padding: 160px 0;
  }
  #mainContents .introduction_main .imgBox {
    width: 100%;
  }
}

#mainContents .introduction_Change {
  width: 100%;
  height: 50px;
}


.scroll_wrapper {
  position: relative;
  width: 100%;
  height: 700vh;
}
#mainContents .introduction_scroll {
  position: absolute; /* 通常時は親に対して絶対配置 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden; /* 中のスクロールバーは見せない */
  z-index: 10;
}
#mainContents .introduction_scroll.is-fixed {
  position: fixed;
  top: 0;
}
#mainContents .introduction_scroll.is-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
}
#mainContents .introduction_scroll section.scroll_item {
  position: absolute; /* 全て重ねる */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0; /* 最初は透明 */
  transition: opacity 0.6s ease; /* フェードで切り替え */
}
#mainContents .introduction_scroll section.scroll_item.current {
  opacity: 1;
  z-index: 2;
}
#mainContents .introduction_scroll section.scroll_item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

#mainContents .introduction_scroll section.scroll_item .textBox {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 1100px;
  height: 160px;
  margin: 0 0 0 -550px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .introduction_scroll section.scroll_item .textBox .column_L {
  position: relative;
  width: 100px;
  margin: 0 40px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mainContents .introduction_scroll section.scroll_item .textBox .column_L h4 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #FFF;
  text-align: center;
  line-height: 1.4;
}
#mainContents .introduction_scroll section.scroll_item .textBox .column_L h4 span {
  display: block;
  font-size: 1.8rem;
}
#mainContents .introduction_scroll section.scroll_item .textBox .column_L h4 span.small {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
#mainContents .introduction_scroll section.scroll_item .textBox .column_C {
  position: relative;
  width: 284px;
  margin: 0 126px 0 0;
  display: flex;
  align-items: center;
}
#mainContents .introduction_scroll section.scroll_item .textBox .column_C p {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFF;
  line-height: 1.8;
  margin: 0;
}

#mainContents .introduction_scroll section.scroll_item .textBox .column_R {
  width: 550px;
  height: 160px;
}
#mainContents .introduction_scroll section.scroll_item .textBox .column_R p {
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFF;
  line-height: 2.0;
}

#mainContents .introduction_scroll section.scroll_item .textBox.typ01::before {
  position: absolute;
  left: 27px;
  top: 115px;
  width: 320px;
  height: 30px;
  padding: 5px 0 0;
  border: 2px solid #FFF;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFF;
  line-height: 1.0;
  text-align: center;
  content: "※非公開エリア";
}

#mainContents .introduction_scroll section.scroll_item .pager {
  position: absolute;
  right: 40px;
  top: 50%;
  width: 10px;
  height: 100px;
  margin: -50px 0 0;
}
#mainContents .introduction_scroll section.scroll_item .pager ul {
  width: 10px;
  height: 100px;
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#mainContents .introduction_scroll section.scroll_item .pager ul li {
  width: 8px;
  height: 8px;
  margin: 0 0 10px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}
#mainContents .introduction_scroll section.scroll_item:nth-child(1) .pager ul li:nth-child(1),
#mainContents .introduction_scroll section.scroll_item:nth-child(2) .pager ul li:nth-child(2),
#mainContents .introduction_scroll section.scroll_item:nth-child(3) .pager ul li:nth-child(3),
#mainContents .introduction_scroll section.scroll_item:nth-child(4) .pager ul li:nth-child(4),
#mainContents .introduction_scroll section.scroll_item:nth-child(5) .pager ul li:nth-child(5),
#mainContents .introduction_scroll section.scroll_item:nth-child(6) .pager ul li:nth-child(6) {
  width: 10px;
  height: 10px;
  background-color: #DCE1C8;
}
@media only screen and (max-width: 767px) {
  .scroll_wrapper {
    height: 700vh;
  }

  #mainContents .introduction_scroll section.scroll_item .textBox {
    left: 20px;
    bottom: 30px;
    width: calc(100% - 40px);
    height: auto;
    margin: 0;
  }
  #mainContents .introduction_scroll section.scroll_item .textBox .column_L {
    width: 80px;
    margin: 0 50px 0 0;
  }
  #mainContents .introduction_scroll section.scroll_item .textBox .column_L h4 {
    font-size: 1.8rem;
  }
  #mainContents .introduction_scroll section.scroll_item .textBox .column_L h4 span {
    font-size: 1.2rem;
  }
  #mainContents .introduction_scroll section.scroll_item .textBox .column_L h4 span.small {
    font-size: 1.0rem;
  }
  #mainContents .introduction_scroll section.scroll_item .textBox .column_C {
    width: calc(100% - 130px);
    margin: 0;
  }
  #mainContents .introduction_scroll section.scroll_item .textBox .column_C p {
    font-size: 1.2rem;
  }


  #mainContents .introduction_scroll section.scroll_item .textBox .column_R {
    width: 100%;
    height: 154px;
    padding: 10px 0 0;
  }
  #mainContents .introduction_scroll section.scroll_item .textBox .column_R p {
    font-size: 1.2rem;
  }

  #mainContents .introduction_scroll section.scroll_item .textBox.typ01::before {
    left: 0;
    top: -43px;
    width: 100%;
    height: 30px;
    padding: 6px 0 0;
    font-size: 1.2rem;
    content: "ツアー限定エリア";
  }

  #mainContents .introduction_scroll section.scroll_item .pager {
    right: 10px;
    width: 8px;
    height: 90px;
    margin: -45px 0 0;
  }
  #mainContents .introduction_scroll section.scroll_item .pager ul {
    width: 8px;
    height: 90px;
  }
  #mainContents .introduction_scroll section.scroll_item .pager ul li {
    width: 6px;
    height: 6px;
  }
  #mainContents .introduction_scroll section.scroll_item:nth-child(1) .pager ul li:nth-child(1),
  #mainContents .introduction_scroll section.scroll_item:nth-child(2) .pager ul li:nth-child(2),
  #mainContents .introduction_scroll section.scroll_item:nth-child(3) .pager ul li:nth-child(3),
  #mainContents .introduction_scroll section.scroll_item:nth-child(4) .pager ul li:nth-child(4),
  #mainContents .introduction_scroll section.scroll_item:nth-child(5) .pager ul li:nth-child(5),
  #mainContents .introduction_scroll section.scroll_item:nth-child(6) .pager ul li:nth-child(6) {
    width: 8px;
    height: 8px;
  }
}


#mainContents .introduction_photo {
  width: 100%;
  min-height: 1910px;
  padding: 160px 0 0;
  box-sizing: border-box;
  background-color: #FAF8F2;
}
#mainContents .introduction_photo_inner {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
#mainContents .introduction_photo .imgBox01 {
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
}
#mainContents .introduction_photo .imgBox02 {
  position: absolute;
  left: -83px;
  top: 200px;
  width: 720px;
}
#mainContents .introduction_photo .imgBox03 {
  position: absolute;
  right: -83px;
  top: 890px;
  width: 720px;
}
#mainContents .introduction_photo .imgBox04 {
  position: absolute;
  left: 50px;
  top: 1010px;
  width: 400px;
}
#mainContents .introduction_photo img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents .introduction_photo {
    min-height: 1645px;
    padding: 140px 0 0;
  }
  #mainContents .introduction_photo_inner {
    width: 100%;
  }
  #mainContents .introduction_photo .imgBox01 {
    right: 40px;
    top: 0;
    width: 179px;
  }
  #mainContents .introduction_photo .imgBox02 {
    left: 0;
    top: 300px;
    width: 310px;
  }
  #mainContents .introduction_photo .imgBox03 {
    right: 0;
    top: 680px;
    width: 337px;
  }
  #mainContents .introduction_photo .imgBox04 {
    left: 70px;
    top: 1017px;
    width: 240px;
  }
}



#mainContents .introduction_bottom {
  width: 100%;
  padding: 160px 0;
  box-sizing: border-box;
  background-color: #DCE1C8;
}
#mainContents .introduction_bottom_inner {
  position: relative;
  width: 855px;
  margin: 0 auto;
}
#mainContents .introduction_bottom h3 {
  position: relative;
  padding: 0 0 0 15px;
  font-size: 2.4rem;
  font-weight: 600;
}
#mainContents .introduction_bottom h3::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  margin: -3px 0 0;
  background-color: #333;
  content: "";
}
#mainContents .introduction_bottom .columnBox {
  width: 100%;
  padding: 85px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .introduction_bottom .columnBox .column_L {
  width: 312px;
  padding: 0 0 0 68px;
  box-sizing: border-box;
}
#mainContents .introduction_bottom .columnBox .column_L h4 {
  font-size: 2.0rem;
  font-weight: 600;
}

#mainContents .introduction_bottom .columnBox .column_R {
  width: 543px;
}
#mainContents .introduction_bottom .columnBox .column_R p {
  padding: 0 0 30px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8;
}
#mainContents .introduction_bottom .columnBox .column_R .link01 {
  width: 380px;
  height: 80px;
}
#mainContents .introduction_bottom .columnBox .column_R .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 32px 25px 0 0;
  border: 1px solid #2A2C24;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .introduction_bottom .columnBox .column_R .link01 a::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -6px 0 0 60px;
  background-image: url("../img/icon03.svg");
  background-size: cover;
  content: "";
}
#mainContents .introduction_bottom .columnBox .column_R .link01.typ01 a::after {
  margin: -6px 0 0 47px;
}
#mainContents .introduction_bottom .columnBox .column_R  .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .introduction_bottom {
    padding: 120px 0;
  }
  #mainContents .introduction_bottom_inner {
    width: calc(100% - 80px);
  }
  #mainContents .introduction_bottom h3 {
    padding: 0;
    font-size: 2.0rem;
  }
  #mainContents .introduction_bottom h3::before {
    left: -15px;
  }
  #mainContents .introduction_bottom .columnBox {
    padding: 40px 0 30px;
  }
  #mainContents .introduction_bottom .columnBox .column_L {
    width: 100%;
    padding: 0;
  }
  #mainContents .introduction_bottom .columnBox .column_L h4 {
    padding: 0 0 20px;
    font-size: 1.8rem;
  }

  #mainContents .introduction_bottom .columnBox .column_R {
    width: 100%;
  }
  #mainContents .introduction_bottom .columnBox .column_R p {
    padding: 0 0 30px;
  }
  #mainContents .introduction_bottom .columnBox .column_R .link01 {
    width: 100%;
  }
}



/*==========================================
 アクセス
===========================================*/
#mainContents .access_main {
  width: 100%;
  padding: 220px 0 170px;
  background-color: #FAF8F2;
}
#mainContents .access_main .access_main_inner {
  position: relative;
  width: 1150px;
  margin: 0 auto;
}
#mainContents .access_main .access_main_inner h2 {
  position: absolute;
  left: 0;
  top: 15px;
  width: 24px;
  height: 280px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}
#mainContents .access_main .access_main_inner h2::before {
  position: absolute;
  left: 9px;
  top: -12px;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #333;
  content: "";
}
#mainContents .access_main .access_main_Box {
  width: 100%;
  padding: 0 0 0 300px;
  box-sizing: border-box;
}
#mainContents .access_main .mapBox {
  width: 100%;
}
#mainContents .access_main .mapBox iframe {
  width: 100%;
  height: 380px;
}
#mainContents .access_main h3 {
  padding: 60px 0 0;
  font-size: 2.2rem;
  font-weight: 600;
}
#mainContents .access_main .columnBox {
  width: 100%;
  padding: 40px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .access_main .columnBox .column {
  width: 50%;
}
#mainContents .access_main .columnBox .column h4 {
  font-size: 1.4rem;
  font-weight: 600;
}
#mainContents .access_main .columnBox .column p {
  padding: 15px 0 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
}
#mainContents .access_main table {
  width: 100%;
  margin: 60px auto 0;
}
#mainContents .access_main table tr {
  border-bottom: 1px solid #707070;
}
#mainContents .access_main table tr th {
  width: 230px;
  padding: 20px 0 20px 30px;
  box-sizing: border-box;
  font-size: 2.0rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.8;
}
#mainContents .access_main table tr th span {
  position: relative;
}
#mainContents .access_main table tr th span::before {
  position: absolute;
  left: -20px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #333;
  content: "";
}
#mainContents .access_main table tr td {
  padding: 20px 0;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: right;
  vertical-align: middle;
  line-height: 1.6;
}
#mainContents .access_main table tr td span {
  display: block;
  padding: 5px 0 0;
  font-size: 1.2rem;
}
#mainContents .access_main .imgBox {
  width: 454px;
  padding-top: 40px;
  padding-left: calc(100% - 454px);
}
#mainContents .access_main .imgBox img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents .access_main {
    padding: 150px 0 100px;
  }
  #mainContents .access_main .access_main_inner {
    position: relative;
    width: calc(100% - 80px);
  }
  #mainContents .access_main .access_main_inner h2 {
    width: 16px;
    font-size: 1.6rem;
  }
  #mainContents .access_main .access_main_inner h2::before {
    left: 6px;
  }
  #mainContents .access_main .access_main_Box {
    padding: 130px 0 0;
  }
  #mainContents .access_main .mapBox iframe {
    width: 100%;
    height: 150px;
  }
  #mainContents .access_main h3 {
    padding: 30px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .access_main .columnBox {
    padding: 30px 0 0;
  }
  #mainContents .access_main .columnBox .column {
    width: 100%;
    padding: 0 0 30px;
  }

  #mainContents .access_main table {
    margin: 100px auto 0;
  }
  #mainContents .access_main table tr {
    border-bottom: none;
  }
  #mainContents .access_main table tr th {
    display: block;
    width: 100%;
    padding: 20px 0 20px 15px;
    font-size: 1.6rem;
  }
  #mainContents .access_main table tr th span::before {
    left: -16px;
    top: 9px;
  }
  #mainContents .access_main table tr td {
    display: block;
    width: 100%;
    padding: 0 0 20px;
    font-size: 1.4rem;
    text-align: left;
    border-bottom: 1px solid #707070;
  }
  #mainContents .access_main table tr td span {
    display: block;
    padding: 5px 0 0;
    font-size: 1.2rem;
  }
  #mainContents .access_main .imgBox {
    width: 100%;
    padding-top: 40px;
    padding-left: 0;
  }
}



/*==========================================
 諸戸財団概要
===========================================*/
#mainContents .foundation_info {
  width: 100%;
  padding: 200px 0 0;
  background-color: #FAF8F2;
}
#mainContents .foundation_info .foundation_info_inner {
  width: 900px;
  margin: 0 auto;
}
#mainContents .foundation_info h3 {
  font-size: 2.8rem;
  font-weight: 600;
}
#mainContents .foundation_info h3 span {
  padding: 0 0 0 30px;
  font-size: 2.2rem;
  font-weight: 600;
}
#mainContents .foundation_info table {
  width: 800px;
  margin: 60px auto 0;
  border-top: 1px solid #707070;
}
#mainContents .foundation_info table tr {
  border-bottom: 1px solid #707070;
}
#mainContents .foundation_info table tr th {
  width: 230px;
  padding: 20px 0 20px 30px;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: left;
  vertical-align: middle;
  line-height: 1.8;
}
#mainContents .foundation_info table tr td {
  padding: 20px 0;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.8;
}
#mainContents .foundation_info table tr td span {
  display: block;
  font-size: 1.2rem;
}
#mainContents .foundation_info p {
  padding: 50px 0 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.0;
}
#mainContents .foundation_info .link01 {
  width: 250px;
  margin: 0 auto;
  padding: 60px 0 0;
}
#mainContents .foundation_info .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  padding: 15px 0 0;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #DDDFC5;
  font-size: 1.6rem;
  font-weight: 600;
  color: #DDDFC5;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
#mainContents .foundation_info .link01 a::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 14px;
  margin: -7px 0 0 82px;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  content: "";
}
#mainContents .foundation_info .link01 a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .foundation_info {
    padding: 100px 0 0;
  }
  #mainContents .foundation_info .foundation_info_inner {
    width: calc(100% - 80px);
  }
  #mainContents .foundation_info h3 {
    font-size: 2.0rem;
    line-height: 1.8;
  }
  #mainContents .foundation_info h3 span {
    display: block;
    padding: 0;
    font-size: 1.8rem;
  }
  #mainContents .foundation_info table {
    width: 100%;
  }
  #mainContents .foundation_info table tr th {
    width: 110px;
    padding: 20px 0 20px 10px;
    font-size: 1.4rem;
  }
  #mainContents .foundation_info table tr td {
    padding: 20px 10px 20px 0;
    font-size: 1.4rem;
  }
} 

#mainContents .foundation_main {
  width: 100%;
  min-height: 700px;
  padding: 220px 0 170px;
  background-color: #FAF8F2;
}
#mainContents .foundation_main .foundation_main_inner {
  position: relative;
  width: 1150px;
  margin: 0 auto;
}
#mainContents .foundation_main .foundation_main_inner h2 {
  position: absolute;
  left: 0;
  top: 15px;
  width: 24px;
  height: 280px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}
#mainContents .foundation_main .foundation_main_inner h2::before {
  position: absolute;
  left: 9px;
  top: -12px;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #333;
  content: "";
}
#mainContents .foundation_main .foundation_main_Box {
  width: 100%;
  padding: 0 0 0 300px;
  box-sizing: border-box;
}
#mainContents .foundation_main .foundation_main_Box .link01 {
  width: 178px;
  height: 63px;
  margin: 30px 0 0;
}
#mainContents .foundation_main .foundation_main_Box .link01 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 23px 15px 0 0;
  border: 1px solid #2A2C24;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}
#mainContents .foundation_main .foundation_main_Box .link01 a::after {
  position: absolute;
  right: 62px;
  top: 50%;
  width: 10px;
  height: 14px;
  margin: -7px 0 0 0;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  content: "";
}
#mainContents .foundation_main .foundation_main_Box .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#mainContents .foundation_main .foundation_main_Box h3 {
  padding: 60px 0 0;
  font-size: 2.2rem;
  font-weight: 600;
}
#mainContents .foundation_main .foundation_main_Box .listBox {
  width: 100%;
  padding: 40px 0 0;
}
#mainContents .foundation_main .foundation_main_Box .listBox ul {
  list-style-type: none;
}
#mainContents .foundation_main .foundation_main_Box .listBox ul li {
  margin: 0 0 30px 0;
}
#mainContents .foundation_main .foundation_main_Box .listBox ul li a {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
}
#mainContents .foundation_main .foundation_main_Box .listBox ul li a::before {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background-color: #333;
  content: "";
  opacity: 0;
  transition: all 0.3s ease;
}
#mainContents .foundation_main .foundation_main_Box .listBox ul li a:hover::before {
  width: 100%;
  opacity: 1.0;
}
#mainContents .foundation_main .foundation_main_Box .listBox ul li a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .foundation_main {
    min-height: auto;
    padding: 80px 0;
  }
  #mainContents .foundation_main .foundation_main_inner {
    position: relative;
    width: calc(100% - 80px);
  }
  #mainContents .foundation_main .foundation_main_inner h2 {
    width: 16px;
    font-size: 1.6rem;
  }
  #mainContents .foundation_main .foundation_main_inner h2::before {
    left: 6px;
  }
  #mainContents .foundation_main .foundation_main_Box {
    padding: 0 0 0 60px;
  }
  #mainContents .foundation_main .foundation_main_Box .link01 {
    width: 152px;
    height: 40px;
    margin: 30px 0 0;
  }
  #mainContents .foundation_main .foundation_main_Box .link01 a {
    padding: 11px 15px 0 0;
    font-size: 1.4rem;
  }
  #mainContents .foundation_main .foundation_main_Box .link01 a::after {
    left: 90px;
    margin: -7px 0 0 0;
  }

  #mainContents .foundation_main .foundation_main_Box h3 {
    font-size: 1.6rem;
  }

  #mainContents .foundation_main .foundation_main_Box .listBox {
    padding: 30px 0 0;
  }
  #mainContents .foundation_main .foundation_main_Box .listBox ul li {
    margin: 0 0 20px 0;
  }
  #mainContents .foundation_main .foundation_main_Box .listBox ul li a {
    font-size: 1.4rem;
  }
  #mainContents .foundation_main .foundation_main_Box .listBox ul li a::before {
    display: none;
  }
}