@charset "utf-8";

/*==========================================
 font
===========================================*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
/* カラー指定 */
:root {
  --main-color: #DF051D;
  --sub-color: #666666;
  --text-color: #000000;
  --background-color: #F2F2F2;
  --background-color-sub: #666666;
}

html {
  font-family: 'Noto Sans', sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  color: var(--text-color);
}

/*
font-family: "Noto Sans", sans-serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: "Noto Serif JP", serif;
*/

/* iOS Safari / Android Chrome */
a, button {
  -webkit-tap-highlight-color: transparent;
} 

a { outline: none; text-decoration: none; }
a:link    { color: var(--text-color); text-decoration: none; }
a:visited { color: var(--text-color); text-decoration: underline; }
a:hover   { color: var(--text-color); text-decoration: underline; }
a:active  { color: var(--text-color); text-decoration: underline; }

::selection {
  background-color: var(--main-color); /* 選択時の背景色 */
  color: #fff; /* 選択時の文字色 */
}


/*==========================================
 body
===========================================*/

html {
  position: relative;
  background: #FFF;
  overflow: auto;
}
body {
  overflow: hidden;
	min-width: 1200px;
  -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;
  }
}

/*==========================================
 ヘッダーのスタイル
===========================================*/
header {
  z-index: 1000;
  position: fixed;
  width: 240px;
  height: 100vh;
  background-color: #FFF;
  box-shadow: 0px 6px 8px 4px rgba(0, 0, 0, 0.2);
  overflow-y: scroll;
  /* overflow-x: hidden; */

  /* Firefox用(細く＆色) */
  scrollbar-width: thin;
  scrollbar-color: #dadada #FFF;
}
@media only screen and (min-height: 1090px) {
  header {
    overflow-y: auto;
  }
}

/* WebKit系(Chrome/Edge/Safari) */
header::-webkit-scrollbar {
  width: 3px;
}
header::-webkit-scrollbar-track {
  background: #FFF;
}
header::-webkit-scrollbar-thumb {
  background-color: #dadada;
  border-radius: 3px;
}


/* スクロールバーがない場合の記述 */
/* header {
  z-index: 1000;
  position: fixed;
  width: 240px;
  height: 100vh;
  background-color: #FFF;
  box-shadow: 0px 6px 8px 4px rgba(0, 0, 0, 0.2);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
header::-webkit-scrollbar {
  display: none; 
} */
/* スクロールバーがない場合の記述 */

header::before {
  position: fixed;
  z-index: 1000;
  left: 0;
  bottom: 0;
  width: 231px;
  height: 90px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0px,
    rgba(255, 255, 255, 1) 30px,
    rgba(255, 255, 255, 1) 90px
  );
  content: "";
}
header #header {
  width: 100%;
  height: 1000px;
  padding: 40px 0 0 0;
  box-sizing: border-box;
}
header #header_LogoArea {
  width: 183px;
  padding: 0 0 0 25px;
}
header #header_LogoArea h1 img {
  width: 100%;
  height: auto;
}

header #header_SearchArea {
  position: relative;
  width: 100%;
  margin: 17px 0 0 25px;
}
header #header_SearchArea::before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 22px;
  background-image: url("../img/icon_search.svg");
  background-size: cover;
  content: "";
}
header #header_SearchArea input[type="text"] {
  width: 155px;
  height: 24px;
  margin: 0 0 0 30px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #4D4D4D;
  font-size: 1.5rem;
  color: var(--sub-color);
  -webkit-appearance: none;
}
header #header_SearchArea input:focus {
  outline: none;
}
header #header_SearchArea input[type="submit"] {
  display: none;
}

header #header_Search_Bot {
  display: none;
}

header #header_SpIcon {
  display: none;
}
@media only screen and (max-width: 767px) {
  header {
    width: 100%;
    height: auto;
    background-color: transparent;
    box-shadow: none;
    overflow-y: visible;
  
    /* Firefox用(細く＆色) */
    scrollbar-color: auto;

    /* pointer-events: none; */
  }
  header::before {
    display: none;
  }
  header #header {
    position: relative;
    z-index: 700;
    width: 100%;
    height: 58px;
    padding: 0;
    border-bottom: 3px solid #F2F2F2;
    box-sizing: border-box;
    background-color: #FFF;
  }
  header #header_LogoArea {
    width: 117px;
    padding: 16px 0 0 20px;
  }
  header #header_LogoArea h1 img {
    width: 100%;
    height: auto;
  }

  header #header_SearchArea {
    position: absolute;
    z-index: 500;
    right: -100vw;
    top: 58px;
    width: 100%;
    height: 49px;
    margin: 0;
    background-color: #E6E6E6;
    opacity: 0;
  }
  header #header_SearchArea .header_Search_Box {
    position: relative;
    width: 270px;
    height: 30px;
    margin: 0 auto;
    padding: 10px 0 0;
    box-sizing: border-box;
  }
  header #header_SearchArea::before {
    display: none;
  }
  header #header_SearchArea input[type="text"] {
    width: 206px;
    height: 28px;
    margin: 0;
    padding: 0 10px;
    border: 1px solid #666666;
    border-radius: 4px 0 0 4px;
    box-sizing: border-box;
    font-size: 1.6rem;
  }
  header #header_SearchArea input[type="submit"] {
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
    width: 64px;
    height: 28px;
    border: none;
    border-radius: 0 4px 4px 0;
    background-color: var(--sub-color);
    font-size: 1.3rem;
    font-weight: 500;
    color: #FFF;
  }

  header #header_Search_Bot {
    display: block;
    position: absolute;
    right: 121px;
    top: 18px;
    width: 18px;
    height: 20px;
  }
  header #header_Search_Bot a {
    display: block;
    width: 18px;
    height: 20px;
    background-image: url("../img/icon_search.svg");
    background-size: cover;
    -webkit-tap-highlight-color: transparent; /* iOS Safari / Android Chrome */
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* 透明 */
  }
  header #header_Search_Bot a.open {
    display: block;
    width: 16px;
    height: 16px;
    margin: 2px 0 0 0;
    background-image: url("../img/icon_search_close.svg");
  }

  header #header_SpIcon {
    display: block;
    z-index: 700;
    position: absolute;
    right: 20px;
    top: 22px;
    width: 20px;
    height: 12px;
  }
  header #header_SpIcon .menu-trigger,
  header #header_SpIcon .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* iOS Safari / Android Chrome */
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* 透明 */
  }
  header #header_SpIcon .menu-trigger {
    position: relative;
    width: 20px;
    height: 12px;
  }
  header #header_SpIcon .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--sub-color);
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(2) {
    top: 5px;
  }
  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(5px) 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(-5px) rotate(45deg);
  }

}


/*ナビゲーション ////////////////////////////////// */

header #header_MenuArea {
  display: block;
  width: 100%;
  margin: 15px 0 0;
  padding: 0 0 100px;
}

/* 2階層目 */
header #header_MenuArea .header_Menu_Box {
  padding: 5px 0 0;
}
header #header_MenuArea .header_Menu_Box:nth-child(11) {
  position: relative;
  margin: 40px 0 0;
  padding: 0;
}
header #header_MenuArea .header_Menu_Box:nth-child(11)::before {
  position: absolute;
  left: 50%;
  top: -18px;
  width: 190px;
  height: 1px;
  margin: 0 0 0 -95px;
  background-color: #707070;
  content: "";
}
header #header_MenuArea .header_Menu_Box .header_Menu {
  position: relative;
  width: 100%;
  padding: 4px 25px 5px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
header #header_MenuArea .header_Menu_Box .header_Menu a {
  display: block;
  color: var(--sub-color);
}
header #header_MenuArea .header_Menu_Box .header_Menu:hover {
  background-color: #F2F2F2;
}
header #header_MenuArea .header_Menu_Box .header_Menu.active {
  background-color: #F2F2F2;
}
header #header_MenuArea .header_Menu_Box .header_Menu::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  content: "";
}

/* アクテイブ設定 /////////////////////// */

header #header_MenuArea .header_Menu_Box .header_Menu.active::after {
  background-color: var(--main-color);
}

/* イントロダクション */
body.introduction header #header_MenuArea .header_Menu_Box.menu_introduction .header_Menu { background-color: #F2F2F2; }
body.introduction header #header_MenuArea .header_Menu_Box.menu_introduction .header_Menu::after { background-color: var(--main-color); }

/* アクテイブ設定 /////////////////////// */


header #header_MenuArea .header_Menu_Box .header_Menu a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
header #header_MenuArea .header_Menu_Box:nth-child(2) .header_Menu a {
  color: var(--main-color);
}

header #header_MenuArea .header_Menu_Box .header_Menu a span.main {
  position: relative;
  font-family: "Noto Sans", sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--sub-color);
  line-height: 27px;
  letter-spacing: 0.03em;
}
header #header_MenuArea .header_Menu_Box:nth-child(2) .header_Menu a span.main  {
  color: var(--main-color);
}
header #header_MenuArea .header_Menu_Box .header_Menu a span.sub {
  position: relative;
  display: block;
  padding: 3px 0 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--sub-color);
  line-height: 20px;
  letter-spacing: 0em;
}
header #header_MenuArea .header_Menu_Box:nth-child(2) .header_Menu a span.sub  {
  color: var(--main-color);
}
header #header_MenuArea .header_Menu_Box .header_Menu a.expansion_Bot {
  position: absolute;
  z-index: 100;
  bottom: 9px;
  right: 12px;
  top: 6px;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon_menu.svg");
  background-size: cover;
  content: "";
  /* transition: all 0.3s ease; */
}
header #header_MenuArea .header_Menu_Box .header_Menu a.expansion_Bot:hover {
  background-image: url("../img/icon_menu_ov.svg");
}
header #header_MenuArea .header_Menu_Box .header_Menu a.expansion_Bot.active {
  transform: rotate(180deg);
}

/* 3階層目 */
header #header_MenuArea .header_Menu_Box .header_Menu_Sub {
  display: none;
  width: 100%;
  margin: 5px 0 0;
}

header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Link {
  position: relative;
  width: 100%;
  /* margin: 7px 0 0; */
  padding: 6px 25px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Link.active::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: var(--main-color);
  content: "";
}
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Link:hover {
  background-color: #F2F2F2;
}
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Link.active {
  background-color: #F2F2F2;
}
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Link a {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--sub-color);
}
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Link a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Link a.menu_Group:hover {
  text-decoration: none;
}
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Link a.expansion_Bot  {
  position: absolute;
  z-index: 100;
  bottom: 4px;
  right: 12px;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon_menu_sub.svg");
  background-size: cover;
  content: "";
  /* transition: all 0.3s ease; */
}
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Link a.expansion_Bot:hover {
  background-image: url("../img/icon_menu_ov.svg");
}
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Link.active a.expansion_Bot  {
  transform: rotate(180deg);
}

/* 4階層目 */
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Sub_Link {
  display: none;
  width: 100%;
  background-color: #F2F2F2;
}
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Sub_Link ul {
  list-style-type: none;
}
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Sub_Link ul li {
  position: relative;
  width: 100%;
  padding: 6px 25px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Sub_Link ul li:hover,
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Sub_Link ul li.active {
  background-color: #E6E6E6;
}
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Sub_Link ul li.active::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: var(--main-color);
  content: "";
}
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Sub_Link ul li a {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--sub-color);
}
header #header_MenuArea .header_Menu_Box .header_Menu_Sub .header_Menu_Sub_Sub_Link ul li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
header #header_MenuArea_Sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  header #header_MenuArea {
    display: none;
  }

  header #header_MenuArea_Sp {
    display: block;
    position: absolute;
    z-index: 1000;
    right: -100vw;
    top: 58px;
    width: 100%;
    height: 100vh;
    background-color: #313131;
    overflow-y: scroll;
  }
  header #header_MenuArea_Sp #header_Menu_Sp_Scroll {
    width: 100%;
    height: auto;
    padding: 0 0 150px;
  }

  /* 2階層目 */
  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sp {
    position: relative;
    border-bottom: 1px solid #FFF;
  }
  header #header_MenuArea_Sp .header_Menu_Box_Sp:first-child .header_Menu_Sp:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: var(--main-color);
    content: "";
  }
  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sp a:nth-child(1) {
    display: block;
    margin: 0 60px 0 0;
    padding: 17px 0 17px 17px;
    font-size: 1.6rem;
    font-weight: 400;
    color: #FFF;
    line-height: 1.4;
  }
  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sp a:hover {
    text-decoration: none;
  }

  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sp a.expansion_Bot {
    display: block;
    position: absolute;
    z-index: 100;
    top: 50%;
    right: 22px;
    width: 14px;
    height: 10px;
    margin: -4px 0 0;
    background-image: url("../img/icon_menu_sp.svg");
    background-size: cover;
    content: "";
    transition: all 0.3s ease;
  }
  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sp.active a.expansion_Bot {
    transform: rotate(180deg);
  }

  /* 3階層目 */
  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sub_Sp {
    display: none;
  }
  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sub_Sp .header_Menu_Sub_Link_Sp {
    position: relative;
    background-color: #4F4F4F;
    border-bottom: 1px solid #FFF;
  }
  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sub_Sp .header_Menu_Sub_Link_Sp a:nth-child(1) {
    display: block;
    margin: 0 60px 0 0;
    padding: 17px 0 17px 25px;
    font-size: 1.6rem;
    font-weight: 400;
    color: #FFF;
    line-height: 1.4;
  }
  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sub_Sp .header_Menu_Sub_Link_Sp a:hover {
    text-decoration: none;
  }

  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sub_Sp .header_Menu_Sub_Link_Sp a.expansion_Bot {
    display: block;
    position: absolute;
    z-index: 100;
    top: 50%;
    right: 22px;
    width: 14px;
    height: 10px;
    margin: -4px 0 0;
    background-image: url("../img/icon_menu_sp.svg");
    background-size: cover;
    content: "";
    transition: all 0.3s ease;
  }
  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sub_Sp .header_Menu_Sub_Link_Sp.active a.expansion_Bot {
    transform: rotate(180deg);
  }


  /* 4階層目 */
  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sub_Sub_Link_Sp {
    display: none;
  }
  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sub_Sub_Link_Sp ul {
    list-style-type: none;
  }
  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sub_Sub_Link_Sp ul li a {
    display: block;
    padding: 17px 17px 17px 25px;
    background-color: #7E7E7E;
    border-bottom: 1px solid #FFF;
    font-size: 1.6rem;
    font-weight: 400;
    color: #FFF;
    line-height: 1.4;
  }
  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sub_Sub_Link_Sp.layer3_Color ul li a {
    background-color: #4F4F4F;
  }
  header #header_MenuArea_Sp .header_Menu_Box_Sp .header_Menu_Sub_Sub_Link_Sp ul li a:hover {
    text-decoration: none;
  }
}

/*==========================================
 言語変更
===========================================*/
#language_Selection {
  display: block;
  position: absolute;
  z-index: 2500;
  right: 40px;
  top: 35px;
  width: 105px;
}
#language_Selection ul {
  width: 100%;
  list-style-type: none;
}
#language_Selection ul li {
  display: none;
  width: 100%;
  height: 30px;
}
#language_Selection ul li:first-child {
  display: block;
}
#language_Selection ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 6px 0 0 25px;
  background-color: #E6E6E6;
  border: 1px solid #B4B4B4;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--sub-color);
  transition: all 0.3s ease;
}
#language_Selection ul li a:hover {
  text-decoration: none;
  background-color: #FFF;
}
#language_Selection ul li a::before {
  position: absolute;
  left: 10px;
  top: 50%;
  width: 8px;
  height: 10px;
  margin: -4px 0 0;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  content: "";
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
#language_Selection ul li.active a::before {
  transform: rotate(-90deg);
}
#language_Selection ul li:nth-child(2) a,
#language_Selection ul li:nth-child(3) a {
  padding: 7px 0 0 25px;
  background-color: #666666;
  border-top: none;
  color: #FFF;
}
#language_Selection ul li:nth-child(2) a:hover ,
#language_Selection ul li:nth-child(3) a:hover {
  text-decoration: none;
  background-color: #FFF;
  color: var(--sub-color);
}
#language_Selection ul li:nth-child(2) a::before,
#language_Selection ul li:nth-child(3) a::before {
  display: none;
}
#language_Selection_Sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  #language_Selection {
    display: none;
  }
  #language_Selection_Sp {
    display: block;
    position: fixed;
    z-index: 2500;
  right: 62px;
  top: 15px;
    width: 42px;
  }
  #language_Selection_Sp ul {
    width: 100%;
    list-style-type: none;
  }
  #language_Selection_Sp ul li {
    display: none;
    width: 100%;
    height: 25px;
  }
  #language_Selection_Sp ul li:first-child {
    display: block;
  }
  #language_Selection_Sp ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 3px 0 0 20px;
    background-color: #E6E6E6;
    border: 1px solid #B4B4B4;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--sub-color);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent; /* iOS Safari / Android Chrome */
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* 透明 */
  }
  #language_Selection_Sp ul li a:hover {
    text-decoration: none;
  }
  #language_Selection_Sp ul li a::before {
    position: absolute;
    left: 6px;
    top: 50%;
    width: 8px;
    height: 10px;
    margin: -5px 0 0;
    background-image: url("../img/icon02.svg");
    background-size: cover;
    content: "";
    transform: rotate(90deg);
    transition: all 0.3s ease;
  }
  #language_Selection_Sp ul li.active a {
    background-color: #FFF;
  }
  #language_Selection_Sp ul li.active a::before {
    transform: rotate(-90deg);
  }
  #language_Selection_Sp ul li:nth-child(2) a,
  #language_Selection_Sp ul li:nth-child(3) a {
    padding: 5px 0 0 10px;
    background-color: #666666;
    border-top: none;
    color: #FFF;
  }
  #language_Selection_Sp ul li:nth-child(2) a:hover ,
  #language_Selection_Sp ul li:nth-child(3) a:hover {
    text-decoration: none;
  }
  #language_Selection_Sp ul li:nth-child(2) a::before,
  #language_Selection_Sp ul li:nth-child(3) a::before {
    display: none;
  }
}


/*==========================================
 ボトムリンクのスタイル
===========================================*/
#mainContents .bottom_Link {
  position: relative;
  width: 100%;
  height: 80px;
  margin: 240px 0 0;
  background-color: #4D4D4D;
}
#mainContents .bottom_Link.typ01 {
  margin: 0;
}
#mainContents .bottom_Link .bottom_Back_Next {
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

#mainContents .bottom_Link .bottom_Back_Next .bottom_Back {
  width: 243px;
  height: 80px;
}
#mainContents .bottom_Link.top .bottom_Back_Next .bottom_Back {
  width: 348px;
}
#mainContents .bottom_Link .bottom_Back_Next .bottom_Back a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 25px 0 0 140px;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
  font-weight: 350;
  font-size: 3.0rem;
  letter-spacing: 0.08em;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents .bottom_Link .bottom_Back_Next .bottom_Back a::before {
  position: absolute;
  left: 68px;
  top: 50%;
  width: 50px;
  height: 36px;
  margin: -18px 0 0;
  background-image: url("../img/icon_yaji04.svg");
  background-size: cover;
  content: "";
}
#mainContents .bottom_Link .bottom_Back_Next .bottom_Back a:hover {
  text-decoration: none;
  background-color: #A8A8A8;
}

#mainContents .bottom_Link .bottom_Back_Next .bottom_Next {
  width: calc(100% - 243px);
  height: 80px;
}
#mainContents .bottom_Link.top .bottom_Back_Next .bottom_Next {
  width: calc(100% - 317px);
}
@media screen and (min-width: 1220px) {
  #mainContents .bottom_Link .bottom_Back_Next .bottom_Next {
    width: 766px;
  }
  #mainContents .bottom_Link.top .bottom_Back_Next .bottom_Next {
    width: 647px;
  }
}

#mainContents .bottom_Link .bottom_Back_Next .bottom_Next a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 25px 0 0 30px;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
  font-weight: 350;
  font-size: 3.0rem;
  color: #FFF;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}
#mainContents .bottom_Link .bottom_Back_Next .bottom_Next a::before {
  position: absolute;
  left: 111px;
  top: 50%;
  width: 80px;
  height: 36px;
  margin: -18px 0 0;
  background-image: url("../img/icon_yaji05.svg");
  background-size: cover;
  content: "";
}
#mainContents .bottom_Link.top .bottom_Back_Next .bottom_Next a::before {
  width: 149px;
  background-image: url("../img/icon_yaji11.svg");
}
#mainContents .bottom_Link .bottom_Back_Next .bottom_Next a:hover {
  text-decoration: none;
  background-color: #A8A8A8;
}
#mainContents .bottom_Link .bottom_Back_Next .bottom_Next a span {
  position: absolute;
  left: 215px;
  top: 26px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 450;
  font-size: 2.6rem;
}
#mainContents .bottom_Link .bottom_Back_Next .bottom_Next a span.typ01 {
  top: 8px;
  font-size: 2.3rem;
  line-height: 1.4;
}
#mainContents .bottom_Link .bottom_Back_Next .bottom_Next a span.typ02 {
  letter-spacing: -0.02em;
}
#mainContents .bottom_Link.top .bottom_Back_Next .bottom_Next a span {
  left: 282px;
}

#mainContents .bottom_Link .bottom_Pagetop a {
  position: absolute;
  /* right: 37px; */
  left: 896px;
  top: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0;
  background-image: url("../img/bottom_pageup.svg");
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
}
#mainContents .bottom_Link .bottom_Pagetop a:hover {
  background-image: url("../img/bottom_pageup_ov.svg");
}
@media screen and (min-width: 1220px) {
  #mainContents .bottom_Link .bottom_Pagetop a {
    left: calc(100% - 70px);
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .bottom_Link {
    height: 50px;
    margin: 120px 0 0;
  }
  #mainContents .bottom_Link .bottom_Back_Next {
    width: 100%;
    height: 50px;
    justify-content: space-between;
  }
  #mainContents .bottom_Link .bottom_Back_Next .bottom_Back {
    width: 160px;
    height: 50px;
  }
  #mainContents .bottom_Link.top .bottom_Back_Next .bottom_Back {
    width: 160px;
  }
  #mainContents .bottom_Link .bottom_Back_Next .bottom_Back a {
    display: none;
  }
  #mainContents .bottom_Link .bottom_Back_Next .bottom_Next {
    width: 160px;
    height: 50px;
  }
  #mainContents .bottom_Link.top .bottom_Back_Next .bottom_Next {
    width: 160px;
  }
  #mainContents .bottom_Link .bottom_Back_Next .bottom_Next a {
    padding: 11px 0 0 0;
    font-size: 2.5rem;
  }
  #mainContents .bottom_Link .bottom_Back_Next .bottom_Next a::before {
    left: 75px;
    width: 55px;
    height: 24px;
    margin: -12px 0 0;
  }
  #mainContents .bottom_Link.top .bottom_Back_Next .bottom_Next a::before {
    width: 55px;
    background-image: url("../img/icon_yaji05.svg");
  }
  #mainContents .bottom_Link .bottom_Back_Next .bottom_Next a:hover {
    background-color: #4D4D4D;
  }
  #mainContents .bottom_Link .bottom_Back_Next .bottom_Next a span {
    display: none;
  }
  #mainContents .bottom_Link.top .bottom_Back_Next .bottom_Next a span {
    display: none;
  }
  #mainContents .bottom_Link .bottom_Pagetop a {
    display: none;
  }
}


/*==========================================
 フッターのスタイル
===========================================*/
footer {
  position: relative;
  z-index: 2000;
  width: 100%;
  /* min-height: 1560px; */
  background-color: #E6E6E6;
}
footer::before {
  display: block;
  position: absolute;
  left: 0;
  top: -90px;
  width: 240px;
  height: 90px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0px,
    rgba(255, 255, 255, 1) 30px,
    rgba(255, 255, 255, 1) 90px
  );
  content: "";
}
footer #footer_Body {
  width: 1030px;
  margin: 0 auto;
  padding: 95px 0 0;
}
footer #footer_Body h2 {
  position: relative;
  padding: 0 0 0 40px;
  font-family: "Noto Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.02em;
}
footer #footer_Body h2::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 33px;
  margin: -15px 0 0;
  background-color: var(--main-color);
  content: "";
}
footer #footer_Body p {
  padding: 20px 0 0 40px;
  font-size: 2.3rem;
  font-weight: 500;
  color: #4D4D4D;
  letter-spacing: 0.05em;
}

footer #footer_Body .footer_Top_Link {
  width: 100%;
  height: 65px;
  margin: 40px 0 0;
}
footer #footer_Body .footer_Top_Link a {
  position: relative;
  display: block;
  width: 100%;
  height: 65px;
  padding: 21px 0 0 48px;
  background-color: #F2F2F2;
  border-radius: 6px;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--main-color);
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}
footer #footer_Body .footer_Top_Link a::before {
  position: absolute;
  left: 25px;
  top: 50%;
  width: 14px;
  height: 17px;
  margin: -8px 0 0;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  content: "";
}
footer #footer_Body .footer_Top_Link a:hover {
  /* text-decoration: none; */
  background-color: #FFF;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
footer #footer_Body .footer_Top_Link a span {
  position: absolute;
  left: 215px;
  top: 28px;
  width: 210px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #282828;
  letter-spacing: 0.05em;
}

footer #footer_Body .footer_Sitemap {
  width: 1022px;
  padding: 50px 0 150px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer #footer_Body .footer_Sitemap .footer_Sitemap_column {
  position: relative;
  width: 490px;
  min-height: 190px;
  padding: 0 0 75px;
}
footer #footer_Body .footer_Sitemap .footer_Sitemap_column:nth-child(3),
footer #footer_Body .footer_Sitemap .footer_Sitemap_column:nth-child(4) {
  padding: 0 0 50px;
}
footer #footer_Body .footer_Sitemap .footer_Sitemap_column:nth-child(5),
footer #footer_Body .footer_Sitemap .footer_Sitemap_column:nth-child(6) {
  padding: 0 0 40px;
}
footer #footer_Body .footer_Sitemap .footer_Sitemap_column img {
  position: absolute;
  left: 0;
  top: 0;
  width: 190px;
  height: auto;
}
footer #footer_Body .footer_Sitemap .footer_Sitemap_column h3 {
  width: calc(100% - 40px);
  height: 50px;
  margin: 40px 0 0 40px;
  padding: 18px 0 0 158px;
  box-sizing: border-box;
  background-color: #F2F2F2;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
footer #footer_Body .footer_Sitemap .footer_Sitemap_column h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
footer #footer_Body .footer_Sitemap .footer_Sitemap_column ul {
  width: 100%;
  padding: 10px 0 0 198px;
  box-sizing: border-box;
  list-style-type: none;
}
footer #footer_Body .footer_Sitemap .footer_Sitemap_column ul li {
  padding: 0 0 8px;
}
footer #footer_Body .footer_Sitemap .footer_Sitemap_column ul li a {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
footer #footer_Body .footer_Sitemap .footer_Sitemap_column ul li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

footer #footer_Bottom {
  position: relative;
  width: 100%;
  height: 60px;
  background-color: #FFF;
}
footer #footer_Bottom ul {
  position: absolute;
  left: 40px;
  top: 27px;
  list-style-type: none;
  display: flex;
}
footer #footer_Bottom ul li {
  position: relative;
  padding: 0 50px 0 0;
}
footer #footer_Bottom ul li::before {
  position: absolute;
  left: -25px;
  top: 50%;
  width: 1px;
  height: 14px;
  margin: -6px 0 0;
  background-color: #4D4D4D;
  content: "";
}
footer #footer_Bottom ul li:first-child:before {
  display: none;
}
footer #footer_Bottom ul li a {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--sub-color);
}
footer #footer_Bottom ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
footer #footer_Bottom small {
  position: absolute;
  right: 90px;
  top: 27px;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--sub-color);
}
@media only screen and (max-width: 767px) {
  footer {
    z-index: 600;
    min-height: auto;
  }
  footer::before {
    display: none;
  }
  footer #footer_Body {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 70px 0 0 0;
  }
  footer #footer_Body h2 {
    padding: 0 0 0 35px;
    font-size: 2.3rem;
    line-height: 1.4;
  }
  footer #footer_Body h2::before {
    left: 8px;
    width: 11px;
    height: 54px;
    margin: -27px 0 0;
  }
  footer #footer_Body p {
    padding: 20px 0 0 35px;
    font-size: 1.6rem;
    line-height: 1.6;
  }

  footer #footer_Body .footer_Top_Link {
    width: 100%;
    height: 49px;
    margin: 25px 0 0;
  }
  footer #footer_Body .footer_Top_Link a {
    display: block;
    width: 100%;
    height: 49px;
    padding: 15px 0 0 23px;
    font-size: 2.0rem;
  }
  footer #footer_Body .footer_Top_Link a:hover {
    text-decoration: none;
  }
  footer #footer_Body .footer_Top_Link a::before {
    left: auto;
    right: 23px;
  }
  footer #footer_Body .footer_Top_Link a span {
    display: none;
  }

  footer #footer_Body .footer_Sitemap {
    width: 100%;
    margin: 15px 0 0;
    padding: 0 0 45px;
    border-top: 1px solid #FFF;
  }
  footer #footer_Body .footer_Sitemap .footer_Sitemap_column {
    width: 100%;
    min-height: auto;
    padding: 0;
    border-bottom: 1px solid #FFF;
  }
  footer #footer_Body .footer_Sitemap .footer_Sitemap_column:nth-child(3),
  footer #footer_Body .footer_Sitemap .footer_Sitemap_column:nth-child(4),
  footer #footer_Body .footer_Sitemap .footer_Sitemap_column:nth-child(5),
  footer #footer_Body .footer_Sitemap .footer_Sitemap_column:nth-child(6) {
    padding: 0;
  }
  footer #footer_Body .footer_Sitemap .footer_Sitemap_column img {
    display: none;
  }
  footer #footer_Body .footer_Sitemap .footer_Sitemap_column h3 {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 18px 6px;
    background-color: transparent;
    font-size: 1.4rem;
  }
  footer #footer_Body .footer_Sitemap .footer_Sitemap_column h3 a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  footer #footer_Body .footer_Sitemap .footer_Sitemap_column ul {
    display: none;
  }

  footer #footer_Bottom {
    height: auto;
  }
  footer #footer_Bottom ul {
    position: static;
    width: 250px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
  }
  footer #footer_Bottom ul li {
    position: relative;
    width: 50%;
    margin: 20px 0 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
  }
  footer #footer_Bottom ul li:nth-child(3) {
    width: 100%;
  }
  footer #footer_Bottom ul li::before {
    left: 0;
  }
  footer #footer_Bottom ul li:first-child:before {
    display: block;
  }
  footer #footer_Bottom ul li::after {
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 14px;
    margin: -6px 0 0;
    background-color: #4D4D4D;
    content: "";
  }
  footer #footer_Bottom ul li:first-child:after {
    display: none;
  }
  footer #footer_Bottom small {
    display: block;
    position: static;
    padding: 15px 0;
    border-top: 1px solid var(--sub-color);
    text-align: center;
  }
}


/*==========================================
 コンテンツのスタイル 共通
===========================================*/
#mainContents {
  /* min-height: 1500px; */
  padding: 0 0 0 240px;
}
@media only screen and (max-width: 767px) {
  #mainContents {
    /* min-height: 1500px; */
    padding: 58px 0 0 0;
  }
}


/*==========================================
 パンくず
===========================================*/
#mainContents #pankuzu {
  width: 100%;
  padding: 30px 0 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #666666;
}
#mainContents #pankuzu a {
  position: relative;
  margin: 0 20px 0 0;
  color: #666666;
}
#mainContents #pankuzu a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
/* #mainContents #pankuzu a:hover {
  text-decoration: none;
  opacity: 0.7;
} */
#mainContents #pankuzu a:after {
  position: absolute;
  right: -12px;
  top: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  content: "";
}
@media only screen and (max-width: 767px) {
  #mainContents #pankuzu {
    padding: 20px 0 0;
    font-size: 1.2rem;
  }
}


/*==========================================
 トップ＆イントロダクション
===========================================*/
#mainContents #topArea .top_Header {
  /* min-height: 1500px; */
  padding: 300px 0 0 0;
}
#mainContents #topArea .top_Header h2 {
  position: relative;
  margin: 0 0 0 90px;
  padding: 0 0 0 80px;
  font-family: "Noto Sans", sans-serif;
  font-size: 4.6rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-color);
  letter-spacing: 0.01em;
}
#mainContents #topArea .top_Header h2::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 113px;
  margin: -56.5px 0 0;
  background-image: url("../img/red_bar01.png");
  background-size: cover;
  content: "";
}
/* スクロールフェード */
#mainContents #topArea .top_Header h2.fade_off {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 3.0s ease;
}
#mainContents #topArea .top_Header h2.fade_on {
  opacity: 1;
  transform: translateY(0px);
}
@media only screen and (max-width: 767px) {
  #mainContents #topArea .top_Header {
    /* min-height: 1000px; */
    padding: 196px 0 0 0;
  }
  #mainContents #topArea .top_Header h2 {
    margin: 0 0 0 30px;
    padding: 0 0 0 30px;
    font-size: 2.3rem;
    line-height: 1.3;
  }
  #mainContents #topArea .top_Header h2::before {
    width: 12px;
    height: 50px;
    margin: -25px 0 0;
  }
}

#mainContents #topArea .top_Header .top_Header_Pagenavi {
  position: relative;
  width: 100%;
  height: 111px;
  margin: 160px 0 0;
  background-color: var(--background-color);
}
#mainContents #topArea .top_Header .top_Header_Pagenavi a.menu_Bot  {
  position: absolute;
  right: 40px;
  top: 30px;
  width: 38px;
  height: 38px;
  background-image: url("../img/page_menu_icon01.svg");
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
}
#mainContents #topArea .top_Header .top_Header_Pagenavi a.menu_Bot:hover  {
  background-image: url("../img/page_menu_icon02.svg");
}
#mainContents #topArea .top_Header .top_Header_Pagenavi ul {
  display: none;
  position: absolute;
  z-index: 100;
  right: 40px;
  top: 68px;
  list-style-type: none;
}
#mainContents #topArea .top_Header .top_Header_Pagenavi ul li a {
  display: block;
  padding: 10px 12px;
  border-bottom: 1px solid #FFF;
  background-color: var(--background-color-sub);
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents #topArea .top_Header .top_Header_Pagenavi ul li.sub a {
  /* background-color: #A8A8A8; */
}
#mainContents #topArea .top_Header .top_Header_Pagenavi ul li a:hover {
  text-decoration: none;
  background-color: #FFF;
  color: var(--text-color);
}
@media only screen and (max-width: 767px) {
  #mainContents #topArea .top_Header .top_Header_Pagenavi {
    height: 60px;
    margin: 148px 0 0;
  }
  #mainContents #topArea .top_Header .top_Header_Pagenavi a.menu_Bot  {
    position: absolute;
    right: 15px;
    top: 15px;
  }
  #mainContents #topArea .top_Header .top_Header_Pagenavi ul {
    right: 15px;
    top: 53px;
  }
}

#mainContents #topArea .top_Header .top_Header_Next {
  position: relative;
  width: 100%;
  height: 76px;
}
#mainContents #topArea .top_Header .top_Header_Next h3 a {
  position: relative;
  display: block;
  width: 100%;
  height: 76px;
  padding: 20px 0 0 90px;
  box-sizing: border-box;
  background-color: #282828;
  font-family: "Noto Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #FFF;
}
#mainContents #topArea .top_Header .top_Header_Next h3 a:hover {
  text-decoration: none;
  background-color: #666666;
}
#mainContents #topArea .top_Header .top_Header_Next h3 a span {
  position: absolute;
  left: 344px;
  top: 0;
  display: block;
  width: 510px;
  height: 100%;
  padding: 29px 0 0 0;
  box-sizing: border-box;
  font-size: 2.0rem;
  font-weight: 500;
  color: #FFF;
  text-align: right;
  transition: all 0.3s ease;
}
#mainContents #topArea .top_Header .top_Header_Next h3 a span::after {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 50%;
  width: 0;
  height: 26px;
  margin: -12px 0 0;
  background-image: url("../img/icon_yaji10.svg");
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
}
#mainContents #topArea .top_Header .top_Header_Next h3 a:hover span::after {
  opacity: 1;
  width: 402px;
}
@media screen and (min-width: 1220px) {
  #mainContents #topArea .top_Header .top_Header_Next h3 a span {
    left: auto;
    right: 110px;
  }
}


@media only screen and (max-width: 767px) {
  #mainContents #topArea .top_Header .top_Header_Next {
    height: 68px;
  }
  #mainContents #topArea .top_Header .top_Header_Next h3 a {
    height: 68px;
    padding: 24px 0 0 25px;
    font-size: 2.1rem;
  }
  #mainContents #topArea .top_Header .top_Header_Next h3 a:hover {
    background-color: #282828;
  }
  #mainContents #topArea .top_Header .top_Header_Next h3 a span {
    left: auto;
    right: 66px;
    padding: 27px 0 0 0;
    box-sizing: border-box;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
  }
  #mainContents #topArea .top_Header .top_Header_Next h3 a span::after {
    opacity: 1;
    left: auto;
    right: -50px;
    width: 40px;
    height: 24px;
    margin: -12px 0 0;
    background-image: url("../img/icon_yaji02.svg");
  }
  #mainContents #topArea .top_Header .top_Header_Next h3 a:hover span::after {
    opacity: 1;
    width: 40px;
  }
}

#mainContents #topArea .top_Layout01 {
  width: 100%;
  min-height: 1000px;
  padding: 200px 0 0 0;
}
#mainContents #topArea .top_Layout01 .top_Layout01_Center {
  width: 760px;
  margin: 0 auto;
}
#mainContents #topArea .top_Layout01 h3 {
  position: relative;
  margin: 0 0 0 90px;
  padding: 70px 0 30px;
  font-family: "Noto Sans", sans-serif;
  font-size: 4.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
#mainContents #topArea .top_Layout01 h3 span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 40px;
  background-image: url("../img/red_bar02.png");
  background-size: cover;
  background-position: center;
  content: "";
  overflow: hidden;
}
#mainContents #topArea .top_Layout01 h3 span::before {
  position: absolute;
  left: -1000px;
  top: -840px;
  width: 1135px;
  height: 1007px;
  background-image: url("../img/red_bar_light.svg");
  background-size: cover;
  background-position: center;
  content: "";
  animation: moveBar01 5.0s ease-in-out infinite alternate;
}
#mainContents #topArea .top_Layout01 h3 span.fade_on::before {
  left: 110%;
}
/* アニメーション定義 */
@keyframes moveBar01 {
  from {
    left: -1000px; /* 左 */
  }
  to {
    left: 110%; /* 右 */
  }
}

#mainContents #topArea .top_Layout01 h4 {
  position: relative;
  padding: 0 0 20px;
  font-family: "Noto Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
}
#mainContents #topArea .top_Layout01 h4.typ01 {
  margin: 190px 0 0;
}
#mainContents #topArea .top_Layout01 p.typ01 {
  width: 672px;
  padding: 0 0 10px 90px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
#mainContents #topArea .top_Layout01 p.typ02 {
  width: 760px;
  padding: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents #topArea .top_Layout01 .top_Layout01_img {
  position: relative;
  width: 760px;
  padding: 120px 0 265px;
  text-align: center;
}
#mainContents #topArea .top_Layout01 .top_Layout01_img::before {
  position: absolute;
  left: 164px;
  top: 316px;
  width: 1px;
  height: 0;
  background-color: #666;
  content: "";
  transition: all 1.5s ease;
}
/* スクロールフェード */
#mainContents #topArea .top_Layout01 .top_Layout01_img.fade_on::before {
  height: 306px;
}

#mainContents #topArea .top_Layout01 .top_Layout01_img img {
  width: 592px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents #topArea .top_Layout01 {
    padding: 90px 0 0 0;
    box-sizing: border-box;
  }
  #mainContents #topArea .top_Layout01 .top_Layout01_Center {
    width: calc(100% - 30px);
  }
  #mainContents #topArea .top_Layout01 h3 {
    margin: 0;
    padding: 35px 0 15px 50px;
    font-size: 2.3rem;
  }
  #mainContents #topArea .top_Layout01 h3 span {
    left: 50px;
    height: 20px;
  }
  #mainContents #topArea .top_Layout01 h4 {
    padding: 0 0 10px;
    font-size: 2.3rem;
  }
  #mainContents #topArea .top_Layout01 h4.typ01 {
    margin: 60px 0 0;
  }
  #mainContents #topArea .top_Layout01 p.typ01 {
    width: 100%;
    padding: 0 15px 5px 50px;
    box-sizing: border-box;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  #mainContents #topArea .top_Layout01 p.typ02 {
    width: 100%;
    padding: 0 0 5px;
    box-sizing: border-box;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  #mainContents #topArea .top_Layout01 p.typ01 br,
  #mainContents #topArea .top_Layout01 p.typ02 br {
    display: none;
  }
  #mainContents #topArea .top_Layout01 .top_Layout01_img {
    width: 250px;
    margin: 0 auto;
    /* padding: 60px 0 130px 15px; */
    padding: 60px 0 130px;
  }
  #mainContents #topArea .top_Layout01 .top_Layout01_img::before {
    left: 73px;
    top: 156px;
  }
  /* スクロールフェード */
  #mainContents #topArea .top_Layout01 .top_Layout01_img.fade_on::before {
    height: 153px;
  }

  #mainContents #topArea .top_Layout01 .top_Layout01_img img {
    width: 100%;
  }
}

#mainContents #topArea .top_Layout01 .top_Layout01_Color {
  width: 760px;
  padding: 115px 0 0;
}
#mainContents #topArea .top_Layout01 .top_Layout01_Color ul {
  position: relative;
  width: 100%;
  padding: 0 0 17px;
  border-bottom: 1px solid #B4B4B4;
  display: flex;
  justify-content: space-between;
  list-style-type: none
}

#mainContents #topArea .top_Layout01 .top_Layout01_Color ul::before {
  position: absolute;
  bottom: -2px;
  width: 33.33%;
  height: 3px;
  margin: 0;
  background-color: var(--main-color);
  content: "";
  transition: all 0.8s ease;
}
#mainContents #topArea .top_Layout01 .top_Layout01_Color ul.white::before {
  left: 0;
}
#mainContents #topArea .top_Layout01 .top_Layout01_Color ul.red::before {
  left: 33.33%;
}
#mainContents #topArea .top_Layout01 .top_Layout01_Color ul.black::before {
  left: 66.66%;
}

#mainContents #topArea .top_Layout01 .top_Layout01_Color ul li {
  position: relative;
  width: 33.333%;
  text-align: center;
}
#mainContents #topArea .top_Layout01 .top_Layout01_Color ul li a {
  font-family: "Noto Sans", sans-serif;
  font-size: 2.0rem;
  font-weight: 600;
  color: #B4B4B4;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

#mainContents #topArea .top_Layout01 .top_Layout01_Color ul li.active a {
  color: var(--text-color);
}
#mainContents #topArea .top_Layout01 .top_Layout01_Color ul li a:hover {
  text-decoration: none;
  color: var(--text-color);
}
@media only screen and (max-width: 767px) {
  #mainContents #topArea .top_Layout01 .top_Layout01_Color {
    width: 100%;
    padding: 70px 0 0;
  }
  #mainContents #topArea .top_Layout01 .top_Layout01_Color ul {
    padding: 0 0 10px;
  }
  #mainContents #topArea .top_Layout01 .top_Layout01_Color ul li {
    position: relative;
    width: 33.333%;
    text-align: center;
  }
  #mainContents #topArea .top_Layout01 .top_Layout01_Color ul li a {
    font-size: 1.2rem;
  }
  #mainContents #topArea .top_Layout01 .top_Layout01_Color ul li.active::before {
    bottom: -12px;
  }
}

#mainContents #topArea .top_Layout01 .top_Layout01_ColorSet {
  display: none;
  width: 100%;
  padding: 120px 0 0;
}
#mainContents #topArea .top_Layout01 #top_Layout01_Color_Red {
  display: block;
}
#mainContents #topArea .top_Layout01 .top_Layout01_ColorSet h5 {
  padding: 0 0 20px;
  width: 414px;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: 500;
  color: #282828;
  letter-spacing: 0.02em;
}
#mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_White,
#mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_Red,
#mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_Black {
  width: 414px;
  height: 180px;
  margin: 0 auto;
}
#mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_White {
  background-color: #FFF;
  box-shadow: 0px 3px 6px 2px rgba(0, 0, 0, 0.1);
}
#mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_Red {
  background-color: var(--main-color)
}
#mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_Black {
  background-color: #000000;
}
#mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_Text {
  padding: 25px 0 0;
  width: 414px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_Text p:nth-child(1) {
  width: 60%;
  padding: 0;
  font-family: "Noto Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
#mainContents #topArea .top_Layout01 #top_Layout01_Color_Black.top_Layout01_ColorSet .color_Text p:nth-child(1) {
  letter-spacing: 0.015em;
}
#mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_Text p:nth-child(2) {
  width: 40%;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: right;
  letter-spacing: 0.02em;
}
#mainContents #topArea .top_Layout01 #top_Layout01_Color_Red.top_Layout01_ColorSet .color_Text p:nth-child(2) {
  color: var(--main-color);
}
#mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_Text + p {
  width: 565px;
  min-height: 101px;
  margin: 0 auto;
  padding: 20px 0 0;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: #666666;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  #mainContents #topArea .top_Layout01 .top_Layout01_ColorSet {
    padding: 60px 0 0;
  }
  #mainContents #topArea .top_Layout01 .top_Layout01_ColorSet h5 {
    padding: 0 0 10px;
    width: 250px;
    font-size: 1.3rem;
  }
  #mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_White,
  #mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_Red,
  #mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_Black {
    width: 250px;
    height: 112px;
  }
  #mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_Text {
    width: 250px;
    padding: 8px 0 0;
  }
  #mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_Text p:nth-child(1) {
    width: 65%;
    font-size: 1.5rem;
  }
  #mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_Text p:nth-child(2) {
    width: 35%;
    font-size: 1.5rem;
    letter-spacing: 0em;
  }
  #mainContents #topArea .top_Layout01 .top_Layout01_ColorSet .color_Text + p {
    width: calc(100% - 30px);
    min-height: 120px;
    padding: 60px 0 0;
    font-size: 1.3rem;
    text-align: left;
    line-height: 1.5;
  }
}

#mainContents #topArea .top_Layout01 .top_Layout01_Color .link_Set {
  width: 500px;
  height: 55px;
  margin: 0 auto;
  padding: 90px 0 200px;
}
#mainContents #topArea .top_Layout01 .top_Layout01_Color .link_Set a {
  display: block;
  position: relative;
  width: 500px;
  height: 55px;
  padding: 18px 0 0 258px;
  box-sizing: border-box;
  background-color: #4D4D4D;
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 530;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents #topArea .top_Layout01 .top_Layout01_Color .link_Set a span {
  position: absolute;
  left: 30px;
  top: 15px;
  font-family: "Noto Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 450;
  color: #FFF;
}
#mainContents #topArea .top_Layout01 .top_Layout01_Color .link_Set a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 80px;
  height: 23px;
  margin: -12px 0 0;
  background-image: url("../img/icon_yaji03.svg");
  background-size: cover;
  content: "";
}
#mainContents #topArea .top_Layout01 .top_Layout01_Color .link_Set a:hover{
  text-decoration: none;
  background-color: #A8A8A8;
}
@media only screen and (max-width: 767px) {
  #mainContents #topArea .top_Layout01 .top_Layout01_Color .link_Set {
    width: 280px;
    height: 41px;
    margin: 0 auto;
    padding: 30px 0 120px;
  }
  #mainContents #topArea .top_Layout01 .top_Layout01_Color .link_Set a {
    width: 280px;
    height: 41px;
    padding: 13px 0 0 15px;
    font-size: 1.5rem;
  }
  #mainContents #topArea .top_Layout01 .top_Layout01_Color .link_Set a span {
    display: none;
  }
}

#mainContents #topArea .top_Layout02 {
  width: 100%;
  min-height: 1000px;
  padding: 0 0 0 90px;
  box-sizing: border-box;
}
#mainContents #topArea .top_Layout02 h3 {
  position: relative;
  padding: 70px 0 30px;
  font-family: "Noto Sans", sans-serif;
  font-size: 4.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
#mainContents #topArea .top_Layout02 h3 span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 40px;
  background-image: url("../img/red_bar02.png");
  background-size: cover;
  background-position: center;
  content: "";
  overflow: hidden;
}
#mainContents #topArea .top_Layout02 h3 span::before {
  position: absolute;
  left: -1000px;
  top: -878px;
  width: 1135px;
  height: 1007px;
  background-image: url("../img/red_bar_light.svg");
  background-size: cover;
  background-position: center;
  content: "";
  animation: moveBar02 5.0s ease-in-out infinite alternate;
}
#mainContents #topArea .top_Layout02 h3 span.fade_on::before {
  left: 110%;
}
/* アニメーション定義 */
@keyframes moveBar02 {
  from {
    left: -1000px; /* 左 */
  }
  to {
    left: 110%; /* 右 */
  }
}

#mainContents #topArea .top_Layout02 p {
  width: 760px;
  padding: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.015em;
}
#mainContents #topArea .top_Layout02 .top_Layout02_img01 {
  width: 100%;
  padding: 140px 0 0 0;
  box-sizing: border-box;
}
#mainContents #topArea .top_Layout02 .top_Layout02_img01 img {
  width: 100%;
  height: auto;
}
#mainContents #topArea .top_Layout02 .top_Layout02_img02 {
  width: 100%;
  margin: 0 0 0 -90px;
  padding: 120px 0 0 0;
}
#mainContents #topArea .top_Layout02 .top_Layout02_img02 img {
  width: calc(100% + 90px);
  height: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents #topArea .top_Layout02 {
    padding: 0 0 0 50px;
    box-sizing: border-box;
  }
  #mainContents #topArea .top_Layout02 h3 {
    padding: 35px 0 15px;
    font-size: 2.3rem;
  }
  #mainContents #topArea .top_Layout02 h3 span {
    height: 20px;
  }
  #mainContents #topArea .top_Layout02 p {
    width: 100%;
    padding: 0 15px 5px 0;
    box-sizing: border-box;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  #mainContents #topArea .top_Layout02 .top_Layout02_img01 {
    margin: 0 0 0 -35px;
    padding: 20px 15px 0 0;
  }
  #mainContents #topArea .top_Layout02 .top_Layout02_img01 img {
    width: calc(100% + 35px);
  }
  #mainContents #topArea .top_Layout02 .top_Layout02_img02 {
    width: calc(100% + 50px);
    margin: 0 0 0 -50px;
    padding: 50px 15px 0;
    box-sizing: border-box;
  }
  #mainContents #topArea .top_Layout02 .top_Layout02_img02 img {
    width: 100%;
  }
}





#mainContents #introductionArea .intro_Header {
  position: relative;
  width: 100%;
  padding: 80px 0 120px;
  box-sizing: border-box;
  background-color: var(--background-color);
}
#mainContents #introductionArea .intro_Header h2 {
  padding: 0 0 0 90px;
  font-family: "Noto Sans", sans-serif;
  font-size: 6.5rem;
  font-weight: 600;
  color: #4D4D4D;
  letter-spacing: 0.025em;
}
#mainContents #introductionArea .intro_Header h3 {
  padding: 20px 0 0 90px;
  font-family: "Noto Sans", sans-serif;
  font-size: 4.0rem;
  font-weight: 600;
  color: #727272;
  line-height: 1.4;
  letter-spacing: 0.017em;
}
#mainContents #introductionArea .intro_Header .intro_Header_Text {
  width: 760px;
  min-height: 480px;
  margin: 20px auto 0;
  padding: 46px 70px 80px;
  box-sizing: border-box;
  background-color: #FFF;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
}
#mainContents #introductionArea .intro_Header .intro_Header_Text h4 {
  padding: 0 0 20px;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--sub-color);
  letter-spacing: 0.03em;
}
#mainContents #introductionArea .intro_Header .intro_Header_Text p {
  padding: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #282828;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
#mainContents #introductionArea .intro_Header .intro_Header_Text p.typ01 {
  letter-spacing: -0.03em;
}
@media only screen and (max-width: 1216px) {
  #mainContents #introductionArea .intro_Header .intro_Header_Text {
    width: calc(71vw - 90px);
    min-height: auto;
    margin: 20px 0 0 90px;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents #introductionArea .intro_Header {
    padding: 60px 15px 90px;
  }
  #mainContents #introductionArea .intro_Header h2 {
    padding: 0;
    font-size: 2.3rem;
  }
  #mainContents #introductionArea .intro_Header h3 {
    padding: 10px 0 0;
    font-size: 1.8rem;
  }
  #mainContents #introductionArea .intro_Header .intro_Header_Text {
    width: 100%;
    min-height: auto;
    margin: 20px 0 0;
    padding: 35px 30px;
  }
  #mainContents #introductionArea .intro_Header .intro_Header_Text h4 {
    padding: 0 0 20px;
    font-size: 1.6rem;
  }
  #mainContents #introductionArea .intro_Header .intro_Header_Text p {
    padding: 0 0 10px;
    font-size: 1.3rem;
  }
}


#mainContents #introductionArea .intro_Header .intro_Header_Pagenavi {
  position: absolute;
  right: 0;
  bottom: 130px;
  width: 200px;
}
#mainContents #introductionArea .intro_Header .intro_Header_Pagenavi a.menu_Bot  {
  position: absolute;
  right: 40px;
  top: 30px;
  width: 38px;
  height: 38px;
  background-image: url("../img/page_menu_icon01.svg");
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
}
#mainContents #introductionArea .intro_Header .intro_Header_Pagenavi a.menu_Bot:hover  {
  background-image: url("../img/page_menu_icon02.svg");
}
#mainContents #introductionArea .intro_Header .intro_Header_Pagenavi ul {
  display: none;
  position: absolute;
  z-index: 100;
  right: 40px;
  top: 68px;
  list-style-type: none;
}
#mainContents #introductionArea .intro_Header .intro_Header_Pagenavi ul li a {
  display: block;
  padding: 10px 12px;
  border-bottom: 1px solid #FFF;
  background-color: var(--background-color-sub);
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents #introductionArea .intro_Header .intro_Header_Pagenavi ul li a:hover {
  text-decoration: none;
  background-color: #FFF;
  color: var(--text-color);
}
@media only screen and (max-width: 767px) {
  #mainContents #introductionArea .intro_Header .intro_Header_Pagenavi {
    right: 0;
    bottom: 85px;
    width: 200px;
  }
  #mainContents #introductionArea .intro_Header .intro_Header_Pagenavi a.menu_Bot  {
    position: absolute;
    right: 15px;
    top: 15px;
  }
  #mainContents #introductionArea .intro_Header .intro_Header_Pagenavi ul {
    right: 15px;
    top: 53px;
  }
}


#mainContents #introductionArea .intro_Content {
  position: relative;
  width: 100%;
  padding: 0 0 0 90px;
  box-sizing: border-box;
}
#mainContents #introductionArea .intro_Content::before {
  position: absolute;
  left: 0;
  top: -30px;
  width: 100%;
  height: 30px;
  background-image: url("../img/red_bar02.png");
  background-size: cover;
  background-position: center;
  content: "";
}
#mainContents #introductionArea .intro_Content .intro_Content_Title {
  padding: 60px 0 30px;
}
#mainContents #introductionArea .intro_Content .intro_Content_Title h3 {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}
#mainContents #introductionArea .intro_Content .intro_Content_Title p {
  padding: 20px 0 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.015em;
}
@media only screen and (max-width: 767px) {
  #mainContents #introductionArea .intro_Content {
    padding: 0 0 0 50px;
  }
  #mainContents #introductionArea .intro_Content::before {
    top: -17px;
    height: 17px;
  }
  #mainContents #introductionArea .intro_Content .intro_Content_Title {
    padding: 40px 0 40px;
  }
  #mainContents #introductionArea .intro_Content .intro_Content_Title h3 {
    font-size: 1.6rem;
  }
  #mainContents #introductionArea .intro_Content .intro_Content_Title p {
    padding: 20px 15px 0 0;
    font-size: 1.3rem;
  }
}

#mainContents #introductionArea .intro_Content .intro_Content_Block {
  position: relative;
  width: 100%;
  padding: 110px 0 90px;
  border-top: 1px solid #666666;
}
#mainContents #introductionArea .intro_Content .intro_Content_Block h4 {
  position: relative;
  padding: 0 0 30px;
  font-family: "Noto Sans", sans-serif;
  font-size: 6.0rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
#mainContents #introductionArea .intro_Content .intro_Content_Block p {
  /* width: 760px; */
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
#mainContents #introductionArea .intro_Content .intro_Content_Img {
  position: relative;
  z-index: 100;
  /* width: 760px; */
  width: 870px;
  margin: 0 auto;
  padding: 65px 0 0 196px;
  box-sizing: border-box;
  pointer-events: none;
  text-align: right;
}
#mainContents #introductionArea .intro_Content .intro_Content_Img img {
  width: 674px;
  height: auto;
}
#mainContents #introductionArea .intro_Content .intro_Content_Btn {
  /* width: 760px; */
  width: 870px;
  margin: -70px auto 0;
}
#mainContents #introductionArea .intro_Content .intro_Content_Btn a {
  position: relative;
  display: block;
  width: 760px;
  min-height: 240px;
  padding: 152px 0 0 70px;
  box-sizing: border-box;
  background-color: var(--background-color);
  font-size: 2.3rem;
  font-weight: 500;
  color: #4D4D4D;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
#mainContents #introductionArea .intro_Content .intro_Content_Btn a:hover {
  text-decoration: none;
  background-color: #A8A8A8;
  color: #FFF;
}
#mainContents #introductionArea .intro_Content .intro_Content_Btn a span {
  position: absolute;
  left: 70px;
  top: 120px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #999999;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
#mainContents #introductionArea .intro_Content .intro_Content_Btn a:hover span {
  color: #FFF;
}
#mainContents #introductionArea .intro_Content .intro_Content_Btn a::before {
  position: absolute;
  left: 40px;
  top: 122px;
  width: 8px;
  height: 55px;
  background-image: url("../img/red_bar03.png");
  background-size: cover;
  content: "";
}
#mainContents #introductionArea .intro_Content .intro_Content_Btn a::after {
  position: absolute;
  right: 40px;
  top: 137px;
  width: 94px;
  height: 36px;
  background-image: url("../img/icon_yaji06.svg");
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
}
#mainContents #introductionArea .intro_Content .intro_Content_Btn a:hover::after {
  background-image: url("../img/icon_yaji07.svg");
}
@media only screen and (max-width: 767px) {
  #mainContents #introductionArea .intro_Content .intro_Content_Block {
    padding: 45px 0 70px;
  }
  #mainContents #introductionArea .intro_Content .intro_Content_Block h4 {
    padding: 0 0 15px;
    font-size: 2.2rem;
  }
  #mainContents #introductionArea .intro_Content .intro_Content_Block p {
    width: calc(100% - 15px);
    font-size: 1.3rem;
  }
  #mainContents #introductionArea .intro_Content .intro_Content_Img {
    width: 100%;
    padding: 35px 0 0 20px;
  }
  #mainContents #introductionArea .intro_Content .intro_Content_Img img {
    width: 100%;
  }
  #mainContents #introductionArea .intro_Content .intro_Content_Btn {
    width: 100%;
    margin: -70px 0 0;
  }
  #mainContents #introductionArea .intro_Content .intro_Content_Btn a {
    width: calc(100% - 30px);
    min-height: 173px;
    padding: 106px 0 0 40px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  #mainContents #introductionArea .intro_Content .intro_Content_Btn a:hover {
    background-color: var(--background-color);
  }
  #mainContents #introductionArea .intro_Content .intro_Content_Btn a span {
    left: 20px;
    top: 82px;
    font-size: 1.3rem;
  }
  #mainContents #introductionArea .intro_Content .intro_Content_Btn a::before {
    left: 20px;
    top: 110px;
    width: 4px;
    height: 42px;
  }
  #mainContents #introductionArea .intro_Content .intro_Content_Btn a::after {
    right: auto;
    left: 190px;
    top: 135px;
    width: 40px;
    height: 16px;
    background-image: url("../img/icon_yaji08.svg");
  }
  #mainContents #introductionArea .intro_Content .intro_Content_Btn a:hover::after {
    background-image: url("../img/icon_yaji09.svg");
  }
}