@charset "UTF-8";

/* noto-sans-jp-regular - latin_japanese */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans Japanese Regular"), local("NotoSansJapanese-Regular"),
    url("../fonts/NotoSansJP-Regular.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/NotoSansJP-Regular.woff")
      format("woff"); /* Modern Browsers */
}
/* noto-sans-jp-500 - latin_japanese */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: local("Noto Sans Japanese Medium"), local("NotoSansJapanese-Medium"),
    url("../fonts/NotoSansJP-Medium.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/NotoSansJP-Medium.woff")
      format("woff"); /* Modern Browsers */
}
/* noto-sans-jp-700 - latin_japanese */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans Japanese Bold"), local("NotoSansJapanese-Bold"),
    url("../fonts/NotoSansJP-Bold.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/NotoSansJP-Bold.woff")
      format("woff"); /* Modern Browsers */
}

/* oswald-300 - latin */
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 300;
  src: local("Oswald"),
    url("../fonts/oswald-v30-latin-300.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/oswald-v30-latin-300.woff")
      format("woff"); /* Modern Browsers */
}
/* oswald-regular - latin */
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  src: local("Oswald"),
    url("../fonts/oswald-v30-latin-regular.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/oswald-v30-latin-regular.woff")
      format("woff"); /* Modern Browsers */
}
/* oswald-500 - latin */
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  src: local("Oswald"),
    url("../fonts/oswald-v30-latin-500.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/oswald-v30-latin-500.woff")
      format("woff"); /* Modern Browsers */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-variant-ligatures: none;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 100%;
  font-weight: 400;
  color: #3c3c3c;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* FONT
***************************************************************/
.sans {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}
.oswald {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}

/* LINK
***************************************************************/
a {
  transition: 0.3s ease;
  text-decoration: none;
  color: #3c3c3c;
}
a:active,
a:focus {
  outline: none;
}
a img {
  transition: 0.3s ease;
}

/* NONE
***************************************************************/
.none {
  display: none;
}
.linkNone {
  pointer-events: none;
}
@media all and (min-width: 681px) {
  .nonePC {
    display: none !important;
  }
  .linkNonePC {
    pointer-events: none;
  }
}
@media all and (max-width: 680px) {
  .noneSP {
    display: none !important;
  }
  .linkNoneSP {
    pointer-events: none;
  }
}

/* clearfix
***************************************************************/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* Load Effect
***************************************************************/
@keyframes opacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  animation: opacity ease 1s forwards;
}

/* GoogleMap
***************************************************************/
.gm-style-pbt {
  text-align: center;
}
@media all and (max-width: 680px) {
  .gm-style-pbt {
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* lazyload
***************************************************************/

.lazyload {
  opacity: 0;
}
.lazyloaded {
  opacity: 1;
  transition: opacity ease 0.3s;
}

/* フェード
***************************************************************/

@media all and (min-width: 681px) {
  .action.up {
    opacity: 0;
    transform: translate(0, 100px);
    transition: opacity 1000ms ease 0.25s, transform 1000ms ease 0.25s;
  }
  .action.left {
    opacity: 0;
    transform: translate(-100px, 0);
    transition: opacity 1000ms ease 0.25s, transform 1000ms ease 0.25s;
  }
  .action.right {
    opacity: 0;
    transform: translate(100px, 0);
    transition: opacity 1000ms ease 0.25s, transform 1000ms ease 0.25s;
  }
  .action.up.scrollin,
  .action.left.scrollin,
  .action.right.scrollin {
    opacity: 1;
    transform: translate(0, 0);
  }
  .action.delay1 {
    transition: opacity 1000ms ease 0.5s, transform 1000ms ease 0.5s;
  }
  .action.delay2 {
    transition: opacity 1000ms ease 0.75s, transform 1000ms ease 0.75s;
  }
  .action.delay3 {
    transition: opacity 1000ms ease 1s, transform 1000ms ease 1s;
  }
}

@media all and (max-width: 680px) {
  .action.up_sp {
    opacity: 0;
    transform: translate(0, 50px);
    transition: opacity 750ms ease 0.25s, transform 750ms ease 0.25s;
  }
  .action.left_sp {
    opacity: 0;
    transform: translate(-50px, 0);
    transition: opacity 750ms ease 0.25s, transform 750ms ease 0.25s;
  }
  .action.right_sp {
    opacity: 0;
    transform: translate(50px, 0);
    transition: opacity 750ms ease 0.25s, transform 750ms ease 0.25s;
  }
  .action.up_sp.scrollin,
  .action.left_sp.scrollin,
  .action.right_sp.scrollin {
    opacity: 1;
    transform: translate(0, 0);
  }
  .action.delay1_sp {
    transition: opacity 750ms ease 0.5s, transform 750ms ease 0.5s;
  }
  .action.delay2_sp {
    transition: opacity 750ms ease 0.75s, transform 750ms ease 0.75s;
  }
  .action.delay3_sp {
    transition: opacity 750ms ease 1s, transform 750ms ease 1s;
  }
}

/*---------------------------- グローバルエリア ----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.main {
  padding-top: 100px;
}
@media all and (min-width: 681px) {
  body {
    min-width: 1200px;
  }
}
@media all and (max-width: 680px) {
  .main {
    padding-top: 50px;
  }
}

/* ヘッダー
***************************************************************/
.head {
  width: 100%;
  background-color: #fff;
  position: fixed;
  position: sticky;
  z-index: 9999;
  top: 0;
  left: 0;
}
_:-ms-lang(x)::-ms-backdrop,
.head {
  position: fixed;
}
.head .inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.head .sideID {
  width: 200px;
  height: 100px;
  padding: 0 15px;
}
.head .sideID a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.head .sideID a img {
  display: block;
  width: 100%;
}
.head .gNav {
  display: flex;
  align-items: center;
}
.head .gNav .ul1 {
  display: flex;
}
.head .gNav .ul1 .li1 {
  height: 100px;
}
.head .gNav .ul1 .li1 a {
  height: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: #aa9d54;
}
.head .gNav .ul1 .li1 a .s1 {
  position: relative;
}
.head .gNav .contactLink1 {
  width: 204px;
  height: 44px;
  margin-left: 40px;
}
.head .gNav .contactLink1 a {
  width: 100%;
  height: 100%;
  background-color: #6c6230;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  text-align: center;
}
@media all and (min-width: 681px) {
  .head {
    min-width: 1100px;
  }
  .head .sideID a:hover {
    opacity: 0.7;
  }
  .head .gNav .ul1 .li1 a .s1::after {
    content: "";
    background-color: #aa9d54;
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    transition: width 0.3s ease;
  }
  .head .gNav .ul1 .li1.current a .s1::after,
  .head .gNav .ul1 .li1 a:hover .s1::after {
    width: 100%;
  }
  .head .gNav .contactLink1 a:hover {
    background-color: #3c3c3c;
  }
}
@media all and (min-width: 681px) and (max-width: 1319px) {
  .head .gNav .ul1 .li1 a {
    padding: 0 12px;
    font-size: 13px;
  }
}
@media all and (max-width: 680px) {
  body.open {
    position: fixed;
    width: 100%;
    height: 100%;
  }
  .head {
    position: fixed;
  }
  .head .inner {
    display: block;
    padding: 0 20px;
  }
  .head .sideID {
    width: 100px;
    height: 50px;
    padding: 0;
  }
  .head .toujitu {
    position: absolute;
    top: 13px;
    left: 0;
    right: 0;
    width: 96px;
    margin: auto;
    font-size: 12px;
    text-align: center;
    font-weight: 500;
    border: 1px solid #aa9d54;
    color: #aa9d54;
    padding: 2px 8px;
  }
  .head .gNav {
    display: block;
    background-color: rgba(255, 255, 255, 0.92);
    width: 100%;
    height: calc(100vh - 50px);
    padding: 20px 0 40px;
    overflow: auto;
    position: fixed;
    z-index: 222;
    top: 50px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .open .head .gNav {
    opacity: 1;
    pointer-events: auto;
  }
  .head .gNav .ul1 {
    width: 280px;
    padding-bottom: 35px;
    margin: 0 auto;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
  }
  .head .gNav .ul1 .li1 {
    width: 47.5%;
    height: 60px;
  }
  .head .gNav .ul1 .li1:nth-of-type(1n + 3) {
    margin-top: 10px;
  }
  .head .gNav .ul1 .li1 a {
    padding: 0;
    font-size: 12px;
    line-height: 1.29;
    background-color: #fff;
    border: 2px solid #aa9d54;
    position: relative;
  }
  .head .gNav .ul1 .li1 a::after {
    content: "";
    width: 7px;
    height: 7px;
    background-image: url(../img/common/arrow1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 4px;
    bottom: 4px;
  }
  .head .gNav .ul1 .li1 a .strong {
    font-size: 15.5px;
    letter-spacing: -0.015em;
  }
  .head .gNav .contactLink1 {
    width: 220px;
    height: 46px;
    margin: 0 auto;
  }
  .head .gNav .contactLink1 + .contactLink1 {
    margin-top: 10px;
  }
  .head .gNav .contactLink1 a {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.12em;
    background-color: #aa9d54;
  }
  .head .gNav .contactLink1 a .s1 {
    position: relative;
    padding-left: 22px;
  }
  .head .gNav .contactLink1 a .s1::after {
    content: "";
    width: 16px;
    height: 13px;
    background-image: url(../img/common/ico_mail1_w.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .head .gNav .contactLink1.type2 a {
    font-size: 22px;
    letter-spacing: 0.09em;
    background-color: #8F0108;
  }
  .head .gNav .contactLink1.type2 a .s1 {
    padding-left: 20px;
  }
  .head .gNav .contactLink1.type2 a .s1::after {
    width: 13px;
    height: 19px;
    background-image: url(../img/common/ico_tel1_w.svg);
  }
  .head .gNav .contactLink1.type3 a {
    font-size: 22px;
    letter-spacing: 0.09em;
    background-color: #003B68;
  }
  .head .gNav .contactLink1.type3 a .s1 {
    padding-left: 20px;
  }
  .head .gNav .contactLink1.type3 a .s1::after {
    width: 13px;
    height: 19px;
    background-image: url(../img/common/ico_tel1_w.svg);
  }
  .head .toggleBtn {
    width: 24px;
    height: 100%;
    background-image: url(../img/common/menu1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 20px;
  }
  .head .toggleBtn.type2 {
    background-image: url(../img/common/menu2.svg);
  }
  .open .head .toggleBtn {
    background-image: url(../img/common/close1.svg);
    background-position: center bottom 7px;
  }
  .open .head .toggleBtn.type2 {
    background-image: url(../img/common/close2.svg);
    background-position: center bottom 7px;
  }
}
@media all and (max-width: 370px) {
  .head .toujitu {
    left: 135px;
    right: auto;
  }
}

/* フッター
***************************************************************/
.foot {
  padding: 100px 0 30px;
  position: relative;
}
.foot .inner {
  width: 960px;
  margin: 0 auto;
}
.foot .goTop {
  display: block;
  width: 13.304px;
  position: absolute;
  right: 60px;
  bottom: 30px;
}
.foot .goTop img {
  width: 100%;
  display: block;
}
/* f_contactLink */
.f_contactLink {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.f_contactLink.type__02{
  justify-content: center;
  flex-wrap: wrap;
}
.f_contactLink.type__02 .li1.type2{
  /* margin-top: 40px; */
  margin-left: 40px;
}
.f_contactLink .li1.type3{
  margin-left: 40px;
}
.f_contactLink .li1 {
  width: 460px;
  height: 120px;
}
.f_contactLink .li1 a {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color:#8F0108;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  position: relative;
}
.f_contactLink .li1 a::after {
  content: "";
  width: 34px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: width 0.3s ease;
}
.f_contactLink .li1 a .s1 {
  font-size: 14px;
  letter-spacing: 0.12em;
}
.f_contactLink .li1 a .s2 {
  font-size: 34px;
  letter-spacing: 0.09em;
  position: relative;
  padding-left: 24px;
}
.f_contactLink .li1 a .s3 {
  font-size: 14px;
  letter-spacing: 0.12em;
  position: relative;
  width: 240px;
  margin-top: 6px;
}
.f_contactLink .li1.type3 a .s3{
  width:124px;

}
.f_contactLink .li1 a .s2::after {
  content: "";
  width: 18px;
  height: 26px;
  background-image: url(../img/common/ico_tel1_w.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.f_contactLink .li1 a .s3::before,
.f_contactLink .li1 a .s3::after {
  content: "";
  width: 10px;
  height: 22px;
  border: 2px solid #fff;
  border-right: none;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.f_contactLink .li1 a .s3::after {
  border-right: 2px solid #fff;
  border-left: none;
  left: auto;
  right: 0;
}
.f_contactLink .li1.type2 a {
  background-color: #aa9d54;
}
.f_contactLink .li1.type2 a .s2 {
  padding-left: 32px;
  font-size: 34px;
}
.f_contactLink .li1.type2 a .s2::after {
  width: 25px;
  height: 18px;
  background-image: url(../img/common/ico_mail1_w.svg);
}
.f_contactLink .li1.type3 a{
background-color: #003B68;
}
/* fBox1 */
.fBox1 {
  width: 100%;
  padding: 90px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fBox1 .fLogo {
  width: 248px;
  display: block;
}
.fBox1 .fLogo img {
  width: 100%;
  display: block;
}
.fBox1 .sitemapList {
  width: 365px;
  height: 110px;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
}
.fBox1 .sitemapList .li1 {
  width: 130px;
}
.fBox1 .sitemapList .li1 + .li1 {
  margin-top: 15px;
}
.fBox1 .sitemapList .li1:nth-of-type(4) {
  margin-top: 0;
}
.fBox1 .sitemapList .li1:nth-of-type(1),
.fBox1 .sitemapList .li1:nth-of-type(2),
.fBox1 .sitemapList .li1:nth-of-type(3) {
  width: 170px;
  margin-right: 65px;
}
.fBox1 .sitemapList .li1 a {
  display: block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
.fBox1 .sitemapList .li1 a::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  width: 8px;
  height: 8px;
  border-right: 1px solid #3c3c3c;
  border-bottom: 1px solid #3c3c3c;
  transform: rotate(-45deg);
}
/* fBox2 */
.fBox2 {
  display: flex;
  align-items: center;
}
.fBox2 .cRight {
  font-size: 10px;
  flex-grow: 1;
}
.fBox2 .subList {
  display: flex;
  align-items: center;
}
.fBox2 .subList .li1 + .li1 {
  margin-left: 30px;
}
.fBox2 .subList .li1 a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.13em;
  color: #6e7175;
  position: relative;
  padding-right: 22px;
}
.fBox2 .subList .li1 a::after {
  content: "";
  width: 14px;
  height: 13px;
  background-image: url(../img/common/ico_blank1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.fBox2 .snsList {
  display: flex;
  align-items: center;
  margin-left: 40px;
}
.fBox2 .snsList .li1 + .li1 {
  margin-left: 15px;
}
.fBox2 .snsList .li1 a {
  display: block;
  width: 25px;
}
.fBox2 .snsList .li1 a img {
  width: 100%;
  display: block;
}
@media all and (min-width: 681px) {
  .f_contactLink .li1 a:hover {
    background-color: #3c3c3c;
  }
  .f_contactLink .li1 a:hover::after {
    width: 44px;
  }
  .foot .goTop:hover,
  .fBox1 .fLogo:hover,
  .fBox1 .sitemapList .li1 a:hover,
  .fBox2 .subList .li1 a:hover,
  .fBox2 .snsList .li1 a:hover {
    opacity: 0.7;
  }
}
@media all and (max-width: 680px) {
  .foot {
    padding: 28px 0 65px;
  }
  .foot .inner {
    width: 100%;
    padding: 0 5%;
  }
  .foot .goTop {
    width: 7px;
    right: 20px;
    top: 15px;
    bottom: auto;
  }
  /* fBox1 */
  .fBox1 {
    padding: 0 0 25px;
    display: block;
  }
  .fBox1 .fLogo {
    width: 170px;
    margin: 0 auto;
  }
  /* fBox2 */
  .fBox2 {
    display: flex;
    flex-flow: wrap;
  }
  .fBox2 .cRight {
    letter-spacing: 0;
    order: 3;
    width: 100%;
    text-align: center;
  }
  .fBox2 .subList {
    width: 100%;
    order: 1;
    margin-bottom: 15px;
    justify-content: center;
  }
  .fBox2 .subList .li1 + .li1 {
    margin-left: 25px;
  }
  .fBox2 .subList .li1 a {
    font-size: 11px;
    padding-right: 22px;
  }
  .fBox2 .snsList {
    order: 2;
    margin-left: 0;
    margin-bottom: 25px;
    width: 100%;
    justify-content: center;
  }
}
@media all and (max-width: 370px) {
  .fBox2 .snsList .li1 + .li1 {
    margin-left: 5px;
  }
}

/* SPコンバージョン
***************************************************************/
.spConversion {
  width: 100%;
  height: 50px;
  position: fixed;
  z-index: 5555;
  bottom: -100%;
  left: 0;
  transition: bottom 0.3s ease;
  display: flex;
}
.spConversion.type__02{
  height:99px;
}
.pageScroll .spConversion {
  bottom: 0;
}
.spConversion .contactLink1 {
  width: calc(100% - 60px);
  height: 100%;
}
.spConversion .contactLink1.type__02{
  width: calc(100% - 28.125%);
}
.spConversion .contactLink1 a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  background-color: #6c6230;
  color: #fff;
}
.spConversion .contactLink1.color1 a {
  background-color: #8f0108;
}
.spConversion .contactLink1.color1 .contactLink1_object_01 {
  background-color: #8f0108;
  /* height:50%; */
  background-image: url(../img/common/txt_convertionArea_01_sp.svg);
  background-size:auto 64px;
  background-position:center center;
  background-repeat:no-repeat;
}
.spConversion .contactLink1.color1 .contactLink1_object_02 {
  background-color: #003B68;
  height:50%;
  background-image: url(../img/common/txt_convertionArea_02_sp.svg);
  background-size:auto 32px;
  background-position:center center;
  background-repeat:no-repeat;
}
.spConversion .contactLink1 a .s1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  position: relative;
  padding-left: 24px;
}
.spConversion .contactLink1 a .s1::after {
  content: "";
  width: 18px;
  height: 23px;
  background-image: url(../img/common/ico_tel1_w.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 0;
  margin: auto;
}
.spConversion .contactLink1 a .s2 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1px;
}
.spConversion .contactLink2 {
  width: 60px;
  height: 100%;
}
.spConversion .contactLink2.type__02{
  width:28.125%;
  height:99px;
}
.spConversion .contactLink2 a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #aa9d54;
}
.spConversion .contactLink2 a img {
  display: block;
  width: 32px;
  margin-top: 2px;
}
.spConversion .contactLink2.type__02 a img{
  width:46px;
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
  .spConversion .contactLink1.color1 .contactLink1_object_01 {
    background-size:auto 50px;
  }
}

/* widget:w_link1
***************************************************************/
.w_link1 {
  width: 330px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #aa9d54;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 0 42px;
  transition: color 0.3s ease, background 0.3s ease;
}
.w_link1::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: background 0.3s ease, width 0.3s ease;
}
.w_link1.type2 {
  background-color: #84959e;
  color: #fff;
}
.w_link1.type2::after {
  background-color: #fff;
}
.w_link1.type3 {
  background-color: #bcaf54;
}

.w_link1.type4 {
  background-color: #aa9d54;
}

@media all and (min-width: 681px) {
  a:hover .w_link1,
  a.w_link1:hover {
    background-color: #3c3c3c;
    color: #fff;
  }
  a:hover .w_link1::after,
  a.w_link1:hover::after {
    background-color: #fff;
    width: 42px;
  }
}
@media all and (max-width: 680px) {
  .w_link1 {
    width: 280px;
    height: 50px;
    font-size: 14px;
    padding: 0 25px;
  }
  .w_link1::after {
    width: 25px;
  }
}
@media all and (max-width: 370px) {
}

/* widget:w_icatch
***************************************************************/
.w_icatch {
  width: calc(100% - 140px);
  max-width: 1300px;
  height: 355px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.w_icatch .titBox1 {
  padding-top: 115px;
  color: #aa9d54;
}
.w_icatch.type2 .titBox1 {
  padding-top: 85px;
}
.w_icatch .titBox1 .eng1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
}
.w_icatch .titBox1 .eng1 .s1 {
  display: inline-block;
  background-color: #fff;
  padding: 10px 25px 0 100px;
}
.w_icatch .titBox1 .h1 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1.3;
}
.w_icatch .titBox1 .h1 .s1 {
  display: inline-block;
  background-color: #fff;
  padding: 5px 35px 10px 100px;
}
.w_icatch .titBox1 .caption1 {
  color: #3c3c3c;
  font-size: 16px;
  line-height: 1.56;
  padding: 0 0 0 100px;
  display: inline-block;
  position: relative;
}
.w_icatch .titBox1 .caption1 .s1 {
  position: relative;
  z-index: 1;
}
.w_icatch .titBox1 .caption1::before {
  content: "";
  width: 420px;
  height: 34px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: -3px;
}
.w_icatch .titBox1 .caption1::after {
  content: "";
  width: 380px;
  height: 30px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 28px;
}
.w_icatch .titBox1 .caption1.type2::before {
  width: 440px;
  height: 37px;
  top: 19px;
}
.w_icatch .titBox1 .caption1.type2::after {
  width: 360px;
  top: -3px;
}
.w_icatch .titBox1 .caption1.type2 .s1::before {
  content: "";
  width: 340px;
  height: 34px;
  background-color: #fff;
  position: absolute;
  z-index: -1;
  left: -100px;
  top: 47px;
}

.pageNav .ul1.type2 a {
  background-color: #84959e;
}

.w_icatch .titBox1.type2 {
  color: #84959e;
}

.w_title1.type2 .eng1 {
  color: #84959e;
}

.w_title1.type2:after {
  background-color: #84959e;
}

/* w_icatch2 */
.w_icatch2 {
  width: calc(100% - 140px);
  max-width: 1300px;
  margin: 0 auto;
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
  .w_icatch {
    width: 100%;
    max-width: none;
    height: 150px;
  }
  .w_icatch .titBox1 {
    padding-top: 42px;
  }
  .w_icatch.type2 .titBox1 {
    padding-top: 25px;
  }
  .w_icatch .titBox1 .eng1 {
    font-size: 15px;
    line-height: 1.2;
  }
  .w_icatch .titBox1 .eng1 .s1 {
    padding: 5px 15px 0 35px;
  }
  .w_icatch .titBox1 .h1 {
    font-size: 18px;
    line-height: 1.3;
  }
  .w_icatch .titBox1 .h1 .s1 {
    padding: 5px 15px 5px 35px;
  }
  .w_icatch .titBox1 .caption1 {
    font-size: 11px;
    padding: 0 0 0 35px;
  }
  .w_icatch .titBox1 .caption1::before {
    width: 260px;
    height: 24px;
  }
  .w_icatch .titBox1 .caption1::after {
    width: 230px;
    height: 20px;
    top: 21px;
  }
  .w_icatch .titBox1 .caption1.type2::before {
    width: 276px;
    height: 28px;
    top: 13px;
  }
  .w_icatch .titBox1 .caption1.type2::after {
    width: 185px;
  }
  .w_icatch .titBox1 .caption1.type2 .s1::before {
    width: 195px;
    height: 20px;
    left: -35px;
    top: 38px;
  }
  /* w_icatch2 */
  .w_icatch2 {
    width: 100%;
  }
}
@media all and (max-width: 370px) {
}

/* widget:w_title1
***************************************************************/
.w_title1 {
  position: relative;
  padding-bottom: 25px;
  text-align: center;
}
.w_title1::after {
  content: "";
  width: 38px;
  height: 3px;
  background-color: #aa9d54;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.w_title1 .eng1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #aa9d54;
}
.w_title1 .tit1 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.w_title1 .tit2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.w_title1 .tit3 {
  font-size: 41px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #aa9d54;
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
  .w_title1 {
    padding-bottom: 14px;
  }
  .w_title1::after {
    content: "";
    width: 25px;
    height: 2px;
  }
  .w_title1 .eng1 {
    font-size: 15px;
  }
  .w_title1 .tit1 {
    font-size: 20px;
  }
  .w_title1 .tit2 {
    font-size: 17px;
  }
  .w_title1 .tit3 {
    font-size: 28px;
    letter-spacing: 0.2em;
  }
}
@media all and (max-width: 370px) {
}

/* widget:otherContents
***************************************************************/
.otherContents .inner {
  margin-top: 115px;
  background-color: #ebebe6;
}
.otherContents .ptherList1 {
  width: 980px;
  margin: 0 auto;
  position: relative;
  top: -70px;
  display: flex;
  justify-content: space-between;
}
.otherContents .ptherList1 > li {
  width: 300px;
}
.otherContents .ptherList1 > li a {
  display: block;
}
.otherContents .ptherList1 .thumb {
  width: 100%;
  height: 210px;
  position: relative;
  overflow: hidden;
}
.otherContents .ptherList1 .thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(60, 60, 60, 0);
  position: absolute;
  top: 0;
  left: 0;
  transition: background 0.3s ease;
}
.otherContents .ptherList1 .thumb .img1 {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.3s ease;
}
.otherContents .ptherList1 .li1 .thumb .img1 {
  background-image: url(../img/common/other_contents1.jpg);
}
.otherContents .ptherList1 .li2 .thumb .img1 {
  background-image: url(../img/common/other_contents2.jpg);
}
.otherContents .ptherList1 .li3 .thumb .img1 {
  background-image: url(../img/common/other_contents3.jpg);
}
.otherContents .ptherList1 .li4 .thumb .img1 {
  background-image: url(../img/common/other_contents4.jpg);
}
.otherContents .ptherList1 .textBox1 {
  width: 100%;
  height: 96px;
  position: relative;
  background-color: #fff;
  color: #aa9d54;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 0 42px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.otherContents .ptherList1 .textBox1::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: #aa9d54;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: background-color 0.3s ease, width 0.3s ease;
}
.otherContents .ptherList1 .textBox1 .t1 {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
.otherContents .ptherList1 .textBox1 .t2 {
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media all and (min-width: 681px) {
  .otherContents .ptherList1 > li a:hover .thumb::after {
    background-color: rgba(60, 60, 60, 0.5);
  }
  .otherContents .ptherList1 > li a:hover .thumb .img1 {
    transform: scale(1.1);
  }
  .otherContents .ptherList1 > li a:hover .textBox1 {
    background-color: #3c3c3c;
    color: #fff;
  }
  .otherContents .ptherList1 > li a:hover .textBox1::after {
    width: 42px;
    background-color: #fff;
  }
}
@media all and (max-width: 680px) {
  .otherContents {
    background-color: #ebebe6;
    padding: 40px 0 50px;
  }
  .otherContents .inner {
    margin-top: 0;
    background-color: transparent;
  }
  .otherContents .ptherList1 {
    width: 100%;
    position: static;
    display: block;
    padding: 30px 5% 0;
  }
  .otherContents .ptherList1 > li {
    width: 100%;
  }
  .otherContents .ptherList1 > li + li {
    margin-top: 25px;
  }
  .otherContents .ptherList1 > li a {
    display: flex;
  }
  .otherContents .ptherList1 .thumb {
    width: 45%;
    height: 110px;
  }
  .otherContents .ptherList1 .thumb::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(60, 60, 60, 0);
    position: absolute;
    top: 0;
    left: 0;
    transition: background 0.3s ease;
  }
  .otherContents .ptherList1 .li2 .thumb .img1 {
    background-image: url(../img/common/other_contents2_sp.jpg);
  }
  .otherContents .ptherList1 .li3 .thumb .img1 {
    background-image: url(../img/common/other_contents3_sp.jpg);
  }
  .otherContents .ptherList1 .textBox1 {
    width: 55%;
    height: 110px;
    background-color: #aa9d54;
    color: #fff;
    padding: 0;
  }
  .otherContents .ptherList1 .textBox1::before {
    content: "";
    width: 11px;
    height: 11px;
    background-image: url(../img/common/arrow1_w.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 4px;
    bottom: 4px;
  }
  .otherContents .ptherList1 .textBox1::after {
    display: none;
  }
  .otherContents .ptherList1 .textBox1 .t1 {
    font-size: 12px;
    line-height: 1.65;
  }
  .otherContents .ptherList1 .textBox1 .t2 {
    font-size: 15px;
    line-height: 1.65;
  }
}
@media all and (max-width: 370px) {
  .otherContents .ptherList1 .textBox1 .t1 {
    font-size: 11px;
  }
  .otherContents .ptherList1 .textBox1 .t2 {
    font-size: 14px;
  }
}

/* widget:pageNav
***************************************************************/
.pageNav {
  padding: 90px 0 0;
}
.pageNav .ul1 {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.pageNav.clm2 .ul1 {
  width: 720px;
}
.pageNav .ul1 > li {
  width: 340px;
}
.pageNav .ul1 a {
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.35;
  color: #fff;
  background-color: #aa9d54;
  position: relative;
}
.pageNav .ul1 a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
@media all and (min-width: 681px) {
  .pageNav .ul1 a:hover {
    background-color: #3c3c3c;
  }
  .pageNav .ul1.type2 {
    width: 1080px;
  }
  .pageNav .ul1.type2 > li {
    width: 330px;
  }
}
@media all and (max-width: 680px) {
  .pageNav {
    padding: 40px 0 0;
  }
  .pageNav .ul1 {
    width: 100%;
    padding: 0 10%;
    display: block;
  }
  .pageNav.clm2 .ul1 {
    width: 100%;
  }
  .pageNav .ul1 > li {
    width: 100%;
  }
  .pageNav .ul1 > li + li {
    margin-top: 10px;
  }
  .pageNav .ul1 a {
    height: 42px;
    font-size: 14px;
  }
  .pageNav .ul1 a::after {
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
}
@media all and (max-width: 370px) {
  .pageNav .ul1 a {
    font-size: 12px;
  }
}

/* widget:
***************************************************************/

.footerBanner {
  margin-bottom: 30px;
}

.footerBanner .banner__01 a {
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
}


@media all and (min-width: 681px) {
  .footerBanner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footerBanner .banner__01,
  .footerBanner .banner__01 a {
    width: 329px;
    height: 108px;
  }
  .footerBanner .banner__01 a {
    transition: 0.3s ease;
  }
  .footerBanner .banner__01 a:hover {
    opacity: 0.7;
  }
  .footerBanner .banner__01 img {
    width: 258px;
    height: 62px;
  }
  .footerBanner .banner__02{
    margin-left: 30px;
  }
  .footerBanner .banner__02,
  .footerBanner .banner__02 a {
    width: 346px;
    height: 108px;
  }
  .footerBanner .banner__02 a {
    transition: 0.3s ease;
  }
  .footerBanner .banner__02 a:hover {
    opacity: 0.7;
  }
  .buy_bnr01 {
    width: 346.35px;
    margin-left: 30px;
  }
  .buy_bnr01.type1 {
    margin-left: 0;
  }
  .buy_bnr01 a {
    display: block;
  }
  .buy_bnr01 a:hover {
    opacity: 0.7;
  }
}
@media all and (max-width: 680px) {
  .footerBanner .banner__01 {
    width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
  .footerBanner .banner__01 a {
    height: 25vw;
  }
  .footerBanner .banner__01 img {
    width: 76%;
  }
  .footerBanner .banner__02 {
    width: 260px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .footerBanner .banner__02 a {
    height: 25vw;
  }
  .buy_bnr01 {
    width: 260px;
    margin: 20px auto 0;
  }
  .buy_bnr01.type1 {
    margin-top: 0;
  }
  .buy_bnr01 a {
    display: block;
  }
}
@media all and (max-width: 370px) {
}

.formLink {
  width: 330px;
  height: 110px;
  margin-left: auto;
  margin-right: auto;
}
.formLink a {
  width: 100%;
  height: 100%;
  background-color: #6c6230;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.formLink a .text_02 {
  padding-left: 30px;
  font-size: 22px;
  position: relative;
}
.formLink a .text_02:before {
  content: "";
  width: 24px;
  height: 18px;
  background-image: url(../img/common/ico_mail1_w.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 0;
  margin: auto;
}
.formLink + .backLink {
  margin-top: 20px;
}
.formLink + .otherContents {
  margin-top: 80px;
}

@media all and (min-width: 681px) {
  .formLink a:hover {
    background-color: #3c3c3c;
  }
}
@media all and (max-width: 680px) {
  .formLink {
    width: 280px;
  }
  .formLink a {
  }
  .formLink a .text_02 {
    font-size: 20px;
    position: relative;
  }
  .formLink + .otherContents {
    margin-top: 60px;
  }
}

.formLink__02 {
  width: 680px;
  height: 220px;
  margin-left: auto;
  margin-right: auto;
}
.formLink__02 a {
  width: 100%;
  height: 100%;
  background-color: #204665;
  color: #fff78c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.533;
  text-align: center;
  position: relative;
}
.formLink__02 a .icon {
  background-color: #fff;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  border-radius: 100%;
}
.formLink__02 a .icon:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-top: 3px solid #204665;
  border-right: 3px solid #204665;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: -6px;
  margin: auto;
}
/* .formLink__02 a .text_02{
  padding-left: 30px;
  font-size:22px;
  position: relative;
}
.formLink__02 a .text_02:before{
    content: "";
    width: 24px;
    height: 18px;
    background-image: url(../img/common/ico_mail1_w.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 0;
    margin: auto;
} */
.formLink__02 a .text_04 {
  font-size: 16px;
  margin-top: 20px;
  color: #fff;
}
.formLink__02 + .formLink {
  margin-top: 20px;
}
.formLink__02 + .backLink {
  margin-top: 100px;
}
.formLink__02 + .otherContents {
  margin-top: 80px;
}

@media all and (min-width: 681px) {
  .formLink__02 a:hover {
    background-color: #3e6280;
  }
  .formLink__02 a .icon:before {
    transition: 0.3s ease;
  }
  .formLink__02 a:hover .icon:before {
    border-color: #3e6280;
  }
}
@media all and (max-width: 680px) {
  .formLink__02 {
    width: 280px;
    height: 176px;
  }
  .formLink__02 a {
    font-size: 17px;
  }
  .formLink__02 a .icon {
    width: 26px;
    height: 26px;
    right: 10px;
  }
  .formLink__02 a .icon:before {
    width: 10px;
    height: 10px;
    left: -4px;
    border-width: 2px;
  }
  .formLink__02 a .text_02 {
    /* font-size:20px; */
    position: relative;
  }
  .formLink__02 a .text_04 {
    font-size: 12px;
  }
  .formLink__02 + .otherContents {
    margin-top: 60px;
  }
  .formLink__02 + .backLink {
    margin-top: 30px;
  }
}

.contents_column_table {
  display: flex;
  margin-top: 20px;
}
.contents_column_table_02 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 10px;
}

.contents_textBox {
  width: auto;
}
.contents_textBox .tit1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.63;
}
.contents_textBox .p1 {
  font-size: 16px;
  text-align: justify;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 25px;
}

.contents_column {
  position: relative;
}

.contents_column + .contents_column {
  padding-top: 50px;
  border-top: 2px solid #aa9d54;
  margin-top: 70px;
}

.contents_profile .name_01 {
  font-size: 14px;
  line-height: 1.571;
}
.contents_profile .name_02 {
  font-size: 20px;
  line-height: 1;
  position: relative;
  top: -3px;
}

@media all and (min-width: 681px) {
  .contents_column {
    width: 784px;
    margin-left: auto;
    margin-right: auto;
  }
  .contents_profile,
  .contents_profile img {
    width: 370px;
  }
  .contents_profile img {
    height: 208px;
  }
  .contents_profile + .contents_profile {
    margin-left: 44px;
  }
}

@media all and (max-width: 680px) {
  .contents_column_table,
  .contents_column_table_02 {
    display: block;
  }
  .contents_textBox {
    width: 100%;
  }
  .contents_textBox .tit1 {
    font-size: 18px;
  }
  .contents_textBox .p1 {
    font-size: 15px;
    line-height: 2;
    margin-top: 15px;
  }
  .featureWrap2 .img1 {
    width: 50vw;
    margin: 25px auto 0;
  }
  .contents_column + .contents_column {
    padding-top: 25px;
    margin-top: 25px;
  }
  .contents_profile + .contents_profile {
    margin-top: 30px;
  }
  .contents_profile .name_02 {
    top: 0;
    margin-top: 10px;
  }
}

@media all and (max-width: 370px) {
  .contents_textBox .tit1 {
    font-size: 17px;
  }
}
