@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

/* 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"),
    url("../../fonts/NotoSansJP-Regular.woff")
      format("woff");
}
/* 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"),
    url("../../fonts/NotoSansJP-Medium.woff")
      format("woff");
}
/* 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"),
    url("../../fonts/NotoSansJP-Bold.woff")
      format("woff");
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-variant-ligatures: none;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
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: #000;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
img[src$=".svg"] {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  display: block;
}

/* 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;
}
.serif {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
}
.roboto {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
}
.lato {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

.yuGothic {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI",
    "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic,
    "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Verdana,
    "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

/* LINK
***************************************************************/
a {
  transition: 0.3s ease;
  text-decoration: none;
  color: #000;
}
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;
}

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

@keyframes action1_up {
  0% {
    opacity: 0;
    transform: translate(0, 100px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes action1_left {
  0% {
    opacity: 0;
    transform: translate(-100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes action1_right {
  0% {
    opacity: 0;
    transform: translate(100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes action1_up_sp {
  0% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes action1_left_sp {
  0% {
    opacity: 0;
    transform: translate(-50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes action1_right_sp {
  0% {
    opacity: 0;
    transform: translate(50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@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;
  }

  .action1_up {
    opacity: 0;
    transform: translate(0, 100px);
    animation: action1_up ease 1s forwards .5s;
  }
  .action1_up.delay1 {
    animation: action1_up ease 1s forwards .75s;
  }
  .action1_up.delay2 {
    animation: action1_up ease 1s forwards 1s;
  }

  .action1_left {
    opacity: 0;
    transform: translate(-100px, 0);
    animation: action1_left ease 1s forwards .5s;
  }
  .action1_left.delay1 {
    animation: action1_left ease 1s forwards .75s;
  }
  .action1_left.delay2 {
    animation: action1_left ease 1s forwards 1s;
  }

  .action1_right {
    opacity: 0;
    transform: translate(100px, 0);
    animation: action1_right ease 1s forwards .5s;
  }
  .action1_right.delay1 {
    animation: action1_right ease 1s forwards .75s;
  }
  .action1_right.delay2 {
    animation: action1_right ease 1s forwards 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;
  }

  .action1_up_sp {
    opacity: 0;
    transform: translate(0, 50px);
    animation: action1_up_sp ease 1s forwards .5s;
  }
  .action1_up_sp.delay1 {
    animation: action1_up_sp ease 1s forwards .75s;
  }
  .action1_up_sp.delay2 {
    animation: action1_up_sp ease 1s forwards 1s;
  }

  .action1_left_sp {
    opacity: 0;
    transform: translate(-50px, 0);
    animation: action1_left_sp ease 1s forwards .5s;
  }
  .action1_left_sp.delay1 {
    animation: action1_left_sp ease 1s forwards .75s;
  }
  .action1_left_sp.delay2 {
    animation: action1_left_sp ease 1s forwards 1s;
  }

  .action1_right_sp {
    opacity: 0;
    transform: translate(50px, 0);
    animation: action1_right_sp ease 1s forwards .5s;
  }
  .action1_right_sp.delay1 {
    animation: action1_right_sp ease 1s forwards .75s;
  }
  .action1_right_sp.delay2 {
    animation: action1_right_sp ease 1s forwards 1s;
  }

}


/* head
***************************************************************/
.main {
  padding-top: 88px;
}
.head {
  width: 100%;
  height: 88px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5555;
  padding-left: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site_id1 {
  width: 251px;
}
.site_id1 .link1 {
  width: 100%;
  display: block;
}
.h_box1 {
  height: 100%;
  display: flex;
}
.h_box1_tel1 {
  width: 272px;
  height: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.h_box1_tel1 .t1 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-left: 28px;
  background: url(../../img/common/ico_tel1.svg)no-repeat left center / 22.52px;
}
.h_box1_tel1 .t2 {
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 4px;
}
.h_box1_link1 {
  width: 170px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #528676;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.33;
}
.h_box1_link1.type2 {
  background-color: #DFE8EF;
  color: #000;
}
.open .h_box1_tel1,
.open .h_box1_link1 {
  opacity: 0;
  pointer-events: none;
}
.h_toggleBtn {
  width: 88px;
  height: 100%;
  padding: 0 30px;
  background-color: #fff;
  cursor: pointer;
}
.h_toggleBtn p {
  position: relative;
  height: 100%;
}
.h_toggleBtn p span,
.h_toggleBtn p::before,
.h_toggleBtn p::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}
.h_toggleBtn p span {
  transform: translateY(-50%);
}
.h_toggleBtn p::before {
  transform: translateY(-8px) rotate(0deg);
}
.h_toggleBtn p::after {
  transform: translateY(6px) rotate(0deg);
}
.open .h_toggleBtn p span {
  opacity: 0;
}
.open .h_toggleBtn p::before {
  transform: translateY(-50%) rotate(-45deg);
}
.open .h_toggleBtn p::after {
  bottom: 0;
  transform: translateY(-50%) rotate(45deg);
}
@media all and (min-width: 681px) {
  body,
  .head {
    min-width: 1200px;
  }
  .site_id1 .link1:hover {
    opacity: .6;
  }
  .h_box1_link1:hover {
    background-color: #527086;
    color: #fff;
  }
  .h_box1_link1.type1:hover {
    background-color: #205746;
    color: #fff;
  }
}
@media all and (max-width: 680px) {
  .main {
    padding-top: 72px;
  }
  .head {
    height: 72px;
    padding-left: 20px;
  }
  .site_id1 {
    width: 157px;
  }
  .h_toggleBtn {
    width: 72px;
    padding: 0 22px;
  }
}
@media all and (max-width: 370px) {
}


/* h_megaMenu
***************************************************************/
.h_megaMenu {
  width: 100%;
  padding: 42px 0 78px;
  background-color: #fff;
  position: fixed;
  top: 88px;
  left: 0;
  z-index: 6666;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.open .h_megaMenu {
  opacity: 1;
  pointer-events: auto;
}
.h_megaMenu_inner {
  width: 1100px;
  margin: 0 auto;
}
.h_megaMenu_clm1 {
  width: 100%;
  display: flex;
}
.h_megaMenu_clm1_in1 {
  width: 50%;
}
.h_megaMenu_link1_list .li1:nth-of-type(1n + 2) {
  margin-top: 50px;
}
.h_megaMenu_link1 {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-right: 36px;
  background: url(../../img/common/arrow1.svg)no-repeat right center / 24.2px;
  transition: background 0s ease, color .3s ease;
  position: relative;
}
.h_megaMenu_link1::after {
  content: "";
  width: 0;
  height: 3px;
  background-color: #527086;
  position: absolute;
  left: 0;
  bottom: -9px;
  transition: width 0.3s ease;
}
.h_megaMenu_link2_list {
  padding-top: 24px;
  padding-left: 20px;
}
.h_megaMenu_link2_list .li1:nth-of-type(1n + 2) {
  margin-top: 15px;
}
.h_megaMenu_link2 {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
}
.h_megaMenu_link2::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: #527086;
  position: absolute;
  left: 16px;
  bottom: -9px;
  transition: width 0.3s ease;
}
.h_megaMenu_link3_list_clm {
  display: flex;
}
.h_megaMenu_link3_list {
  width: 246px;
}
.h_megaMenu_link3_list .li1:nth-of-type(1n + 2) {
  margin-top: 20px;
}
.h_megaMenu_link3 {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-right: 25px;
  background: url(../../img/common/arrow1.svg)no-repeat right center / 16.5px;
  transition: background 0s ease, color .3s ease;
  position: relative;
}
.h_megaMenu_link3::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: #527086;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: width 0.3s ease;
}
.h_megaMenu_tel1 {
  display: inline-block;
  margin-top: 41px;
}
.h_megaMenu_tel1 .t1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-left: 40px;
  background: url(../../img/common/ico_tel1.svg)no-repeat left center / 32.75px;
}
.h_megaMenu_tel1 .t2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 4px;
}
.h_megaMenu_conversion1_box {
  width: 480px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.h_megaMenu_conversion1 {
  width: 234px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #528676;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.44;
}
.h_megaMenu_conversion1.type2 {
  background-color: #DFE8EF;
  color: #000;
}
@media all and (min-width: 681px) {
  .h_megaMenu_link1:hover {
    color: #527086;
    background-image: url(../../img/common/arrow1_b.svg);
  }
  .h_megaMenu_link1:hover::after {
    width: calc(100% - 36px);
  }
  .h_megaMenu_link2:hover {
    color: #527086;
  }
  .h_megaMenu_link2:hover::after {
    width: calc(100% - 16px);
  }
  .h_megaMenu_link3:hover {
    color: #527086;
    background-image: url(../../img/common/arrow1_b.svg);
  }
  .h_megaMenu_link3:hover::after {
    width: calc(100% - 25px);
  }
  .h_megaMenu_conversion1:hover {
    background-color: #527086;
    color: #fff;
  }
  .h_megaMenu_conversion1.type1:hover {
    background-color: #205746;
    color: #fff;
  }
}
@media all and (max-width: 680px) {
  .h_megaMenu {
    padding: 46px 0 60px;
    top: 72px;
    overflow: auto;
  }
  .h_megaMenu_inner {
    width: 100%;
  }
  .h_megaMenu_clm1 {
    display: block;
  }
  .h_megaMenu_clm1_in1 {
    width: 100%;
  }
  .h_megaMenu_link1_list {
    padding: 0 20px;
  }
  .h_megaMenu_link1_list .li1:nth-of-type(1n + 2) {
    margin-top: 25px;
  }
  .h_megaMenu_link1 {
    font-size: 22px;
    padding-right: 29px;
    background-size: 18.65px;
  }
  .h_megaMenu_link2_list {
    padding: 10px 20px 0 30px;
  }
  .h_megaMenu_link2_list .li1:nth-of-type(1n + 2) {
    margin-top: 8px;
  }
  .h_megaMenu_link2 {
    font-size: 14px;
    letter-spacing: 0;
  }
  .h_megaMenu_link3_list_clm {
    padding-top: 25px;
    padding: 25px 20px 0;
    display: flex;
    align-items: flex-end;
  }
  .h_megaMenu_link3_list {
    width: 100%;
  }
  .h_megaMenu_link3_list .li1:nth-of-type(1n + 2) {
    margin-top: 8px;
  }
  .h_megaMenu_link3 {
    font-size: 16px;
    letter-spacing: 0;
  }
  .h_megaMenu_tel1 {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-top: 38px;
  }
  .h_megaMenu_conversion1_box {
    width: 100%;
    margin-top: 24px;
  }
  .h_megaMenu_conversion1 {
    width: 50%;
    height: 65px;
    font-size: 15px;
  }
}
@media all and (max-width: 370px) {
}


/* f_faq_bnr1
***************************************************************/
.f_faq_bnr1 {
  width: 1246px;
  height: 372px;
  max-width: 100%;
  margin: 115px auto 0;
  display: block;
  overflow: hidden;
  position: relative;
  color: #fff;
}
.f_faq_bnr1_bg1 {
  width: 100%;
  height: 100%;
  background: url(../../img/common/faq1.jpg)no-repeat center / cover;
  transition: transform 0.3s ease;
}
.f_faq_bnr1_box1 {
  width: 100%;
  height: 100%;
  padding: 0 85px;
  background-color: rgba(59, 108, 145, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease;
}
.f_faq_bnr1_box1_tit1 .t1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
}
.f_faq_bnr1_box1_tit1 .t2 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 15px;
  padding-left: 5px;
}
.f_faq_bnr1_box1_text1 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.7;
  margin-top: 28px;
}
.f_faq_bnr1_box1_btn1 {
  width: 100px;
  display: block;
  padding-bottom: 5px;
  /* border-bottom: 2px solid #fff; */
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  letter-spacing: 0.05em;
  line-height: 2;
  background: url(../../img/common/arrow1_w.svg)no-repeat left top 7px / 16.5px;
  position: relative;
}
.f_faq_bnr1_box1_btn1::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: -2px;
  right: 0;
  transition: width 0.3s ease;
}
@media all and (min-width: 681px) {
  a:hover .f_faq_bnr1_bg1 {
    transform: scale(1.1);
  }
  a:hover .f_faq_bnr1_box1 {
    background-color: rgba(59, 108, 145, 0.9);
  }
  a:hover .f_faq_bnr1_box1_btn1::after {
    width: 30%;
  }
}
@media all and (max-width: 680px) {
  .f_faq_bnr1 {
    width: calc(100% - 40px);
    height: 168px;
    margin-top: 50px;
  }
  .f_faq_bnr1_bg1 {
    background-image: url(../../img/common/faq1_sp.jpg);
  }
  .f_faq_bnr1_box1 {
    padding: 20px 0 0;
    display: block;
  }
  .f_faq_bnr1_box1_tit1 .t1 {
    font-size: 25px;
    text-align: center;
  }
  .f_faq_bnr1_box1_tit1 .t2 {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    padding-left: 0;
  }
  .f_faq_bnr1_box1_text1 {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 18px;
    display: flex;
    justify-content: center;
  }
  .f_faq_bnr1_box1_btn1 {
    position: absolute;
    right: 16px;
    bottom: 16px;
  }
}
@media all and (max-width: 370px) {
}


/* f_contactWrap
***************************************************************/
.f_contactWrap {
  padding: 100px 0;
}
.f_contact_h2 .t1 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.075em;
  line-height: 1.44;
}
.f_contact_h2 .t2 {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
  color: #7C7C7C;
  padding-top: 8px;
}
.f_contact_p1 {
  padding-top: 50px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.075em;
  line-height: 1.56;
}
.f_contact_clm1 {
  padding-top: 32px;
  display: flex;
  justify-content: center;
}
.f_contact_tel1 {
  width: 466px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.f_contact_tel1_t1 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.f_contact_tel1_t2 {
  font-size: 55px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-left: 51px;
  background: url(../../img/common/ico_tel1.svg)no-repeat left center / 42.15px;
  margin-top: 8px;
}
.f_contact_tel1_t3 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.47;
  margin-top: 8px;
}
.f_contact_linkBtn1 {
  width: 466px;
  height: 183px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #528676;
  padding-bottom: 5px;
}
.f_contact_linkBtn1_t1 {
  padding-top: 40px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.075em;
  background: url(../../img/common/ico_mail1_w.svg)no-repeat center top / 32.15px;
}
.f_contact_linkBtn1_t2 {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.075em;
  line-height: 1.47;
  margin-top: 6px;
}
@media all and (min-width: 681px) {
  .f_contact_linkBtn1:hover {
    background-color: #205746;
    transform: scale(1.05);
  }
}
@media all and (max-width: 680px) {
  .f_contactWrap {
    padding: 50px 0 42px;
  }
  .f_contact_h2 .t1 {
    font-size: 25px;
  }
  .f_contact_h2 .t2 {
    font-size: 14px;
    padding-top: 2px;
  }
  .f_contact_p1 {
    padding-top: 28px;
    font-size: 18px;
    letter-spacing: 0;
  }
  .f_contact_clm1 {
    padding: 28px 20px 0;
    flex-flow: column;
    align-items: center;
  }
  .f_contact_tel1 {
    width: auto;
  }
  .f_contact_tel1_t1 {
    font-size: 15px;
  }
  .f_contact_tel1_t2 {
    font-size: 42px;
    padding-left: 43px;
    background-size: 35.39px;
    margin-top: 5px;
  }
  .f_contact_tel1_t3 {
    font-size: 10.5px;
    letter-spacing: 0;
    margin-top: 5px;
  }
  .f_contact_linkBtn1 {
    width: 100%;
    height: 190px;
    padding-bottom: 5px;
    margin-top: 28px;
  }
  .f_contact_linkBtn1_t1 {
    font-size: 21px;
  }
}
@media all and (max-width: 370px) {
}


/* foot
***************************************************************/
.foot {
  background-color: #527086;
  color: #fff;
  width: 100%;
  position: relative;
}
.gotop {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
  width: 60px;
  padding-top: 40px;
  position: absolute;
  top: -80px;
  right: 60px;
  display: block;
  color: #000;
}
.gotop::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 30.44px;
  height: 15.22px;
  background: url(../../img/common/arrow_gotop1.svg)no-repeat center / cover;
  transition: top 0.3s ease;
}
.foot_inner {
  width: 1100px;
  margin: 0 auto;
  padding: 68px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.foot_logo1 {
  width: 276.89px;
}
.foot_address1 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-top: 12px;
}
.foot_tel1 {
  margin-top: 22px;
  display: inline-block;
  font-size: 31px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-left: 32px;
  background: url(../../img/common/ico_tel1_w.svg)no-repeat left center / 24.66px;
  color: #fff;
}
.foot_tel2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-top: 4px;
}
.cRight {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 35px;
}
.foot_in2 {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.foot_sitemap_list1 + .foot_sitemap_list1 {
  margin-left: 30px;
}
.foot_sitemap_list1 .li1 + .li1 {
  margin-top: 26px;
}
.foot_sitemap_list1 .li2 {
  margin-top: 8px;
}
.foot_sitemap_list1 .link1 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #fff;
}
.foot_sitemap_list1 .link2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #fff;
}
.foot_recruit_btn1 {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 150px;
  background-color: #6285A0;
}
@media all and (min-width: 681px) {
  .gotop:hover::after {
    top: 0;
  }
  .foot_sitemap_list1 a:hover {
    opacity: .6;
  }
  .foot_recruit_btn1:hover {
    background: #fff url(../../img/common/f_recruit_btn2.svg)no-repeat center / contain;
  }
  .foot_recruit_btn1 img {
    transition: opacity 0.3s ease;
  }
  .foot_recruit_btn1:hover img {
    opacity: 0;
  }
}
@media all and (max-width: 680px) {
  .foot_inner {
    width: 100%;
    padding: 30px 0 30px;
    display: block;
  }
  .foot_in1 {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .foot_address1 {
    text-align: center;
    margin-top: 8px;
  }
  .foot_tel1 {
    margin-top: 22px;
  }
  .foot_tel2 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-top: 4px;
  }
  .cRight {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-top: 35px;
  }
}
@media all and (max-width: 370px) {
}


/* ルビ
***************************************************************/
[data-ruby] {
    position: relative;
}
[data-ruby]::before {
    content: attr(data-ruby);
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 11px;
    text-align: center;
    word-break: keep-all;
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
  [data-ruby]::before {
      font-size: 10px;
      letter-spacing: 0;
      top: -11px;
  }
}
@media all and (max-width: 370px) {
}


/* w_title1
***************************************************************/
.w_title1 .t1 {
  display: block;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.w_title1 .t1 rt {
  font-size: 11px;
  text-align: center;
}
.w_title1 .t2 {
  display: block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 2px;
  color: #7C7C7C;
}
.w_title1.white .t1 {
  color: #fff;
}
.w_title1.white .t2 {
  color: #fff;
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
  .w_title1 .t1 {
    font-size: 25px;
  }
  .w_title1 .t1 rt {
    font-size: 10px;
  }
  .w_title1 .t2 {
    font-size: 14px;
    margin-top: 0;
  }
}
@media all and (max-width: 370px) {
}


/* w_title2
***************************************************************/
.w_title2_box {
  width: 1100px;
  margin: 0 auto;
  padding: 146px 0 90px;
}
.w_title2 .t1 {
  display: block;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.w_title2 .t1 rt {
  font-size: 16px;
  text-align: center;
}
.w_title2 .t1 [data-ruby]::before {
  top: -15px;
  font-size: 16px;
}
.w_title2 .t2 {
  display: block;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 4px;
  color: #7C7C7C;
}
.w_title2_box .w_title2_text {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-top: 38px;
}
.w_title2_box .w_title2_img {
  margin-top: 66px;
  width: calc(100vw - ((100vw - 1085px)/2));
  height: 347px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.w_title2.white .t1 {
  color: #fff;
}
.w_title2.white .t2 {
  color: #fff;
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
  .w_title2_box {
    width: 100%;
    padding: 55px 20px 45px;
  }
  .w_title2 .t1 {
    font-size: 29px;
  }
  .w_title2 .t1 rt {
    font-size: 12px;
  }
  .w_title2 .t1 [data-ruby]::before {
    top: -13px;
    font-size: 12px;
  }
  .w_title2 .t2 {
    font-size: 14px;
    margin-top: 0;
  }
  .w_title2_box .w_title2_text {
    width: 100%;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.7;
    margin-top: 28px;
  }
  .w_title2_box .w_title2_img {
    margin-top: 33px;
    width: calc(100% + 20px);
    height: 148px;
  }
}
@media all and (max-width: 370px) {
}


/* otherContents
***************************************************************/
.otherContents_h2 {
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.otherContents_ul1 {
  width: 100%;
  padding-top: 30px;
  display: flex;
}
.otherContents_ul1 .li1 {
  width: calc(100% / 3);
}
.otherContents_ul1 .link1 {
  width: 100%;
  height: 300px;
  display: block;
  overflow: hidden;
  position: relative;
}
.otherContents_ul1 .link1::after {
  content: "";
  width: 31.42px;
  height: 30.22px;
  margin: auto;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 36px;
  background: url(../../img/common/arrow1_w.svg)no-repeat left center / contain;
}
.otherContents_ul1 .thumb {
  width: 100%;
  height: 100%;
  background: no-repeat center / cover;
  transition: transform 0.3s ease;
}
.otherContents_textBox1 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.52);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.otherContents_tit1 .t1 {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.otherContents_tit1 .t2 {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 10px;
}
@media all and (min-width: 681px) {
  .otherContents_ul1 a:hover .thumb {
    transform: scale(1.1);
  }
}
@media all and (max-width: 680px) {
  .otherContents_h2 {
    font-size: 22px;
  }
  .otherContents_ul1 {
    padding-top: 20px;
    display: block;
  }
  .otherContents_ul1 .li1 {
    width: 100%;
  }
  .otherContents_ul1 .li1:nth-of-type(1n + 2) {
    margin-top: 12px;
  }
  .otherContents_ul1 .link1 {
    height: 156px;
  }
  .otherContents_ul1 .link1::after {
    width: 25.4px;
    height: 24.43px;
    left: auto;
    right: 20px;
    top: 0;
    bottom: 0;
  }
  .otherContents_tit1 .t1 {
    font-size: 24px;
    letter-spacing: 0.025em;
  }
  .otherContents_tit1 .t2 {
    font-size: 14px;
    letter-spacing: 0.025em;
    margin-top: 3px;
  }
}
@media all and (max-width: 370px) {
}


/* w_contact_bnr1
***************************************************************/
.w_contact_bnr1 {
  width: 100%;
  margin: 0 auto 134px;
  color: #fff;
  padding: 47px 0 55px;
}
.w_contact_bnr1_tit1 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.w_contact_bnr1_in1 {
  width: 900px;
  margin: 0 auto;
  padding-top: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.w_contact_bnr1_tel1 {
  width: 410px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.w_contact_bnr1_tel1_t1 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.w_contact_bnr1_tel1_t2 {
  color: #fff;
  font-size: 55px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-left: 51px;
  background: url(../../img/common/ico_tel1_w.svg)no-repeat left center / 42.15px;
  margin-top: 8px;
}
.w_contact_bnr1_tel1_t3 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.47;
  margin-top: 8px;
}
.w_contact_bnr1_link1 {
  width: 467px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #fff;
  color: #27453B;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
}
.w_contact_bnr1_link1 .s1 {
  display: block;
  padding: 5px 0 5px 34px;
  background: url(../../img/common/ico_mail1_g.svg)no-repeat left center / 24.09px;
  transition: background-image 0.3s ease;
}
@media all and (min-width: 681px) {
  .w_contact_bnr1 {
    background: url(../../img/common/contact_bg1.jpg)no-repeat center / cover;
  }
  .w_contact_bnr1_link1:hover {
    background-color: transparent;
    color: #fff;
  }
  .w_contact_bnr1_link1:hover .s1 {
    background-image: url(../../img/common/ico_mail1_w.svg);
  }
}
@media all and (max-width: 680px) {
  .w_contact_bnr1 {
    margin-bottom: 55px;
    background: url(../../img/common/contact_bg1_sp.jpg)no-repeat center / cover;
    color: #fff;
    padding: 30px 20px 38px;
  }
  .w_contact_bnr1_tit1 {
    font-size: 20px;
  }
  .w_contact_bnr1_in1 {
    width: 100%;
    padding-top: 28px;
    flex-flow: column;
    justify-content: center;
  }
  .w_contact_bnr1_tel1 {
    width: auto;
  }
  .w_contact_bnr1_tel1_t1 {
    font-size: 15px;
  }
  .w_contact_bnr1_tel1_t2 {
    color: #fff;
    font-size: 42px;
    padding-left: 51px;
    background: url(../../img/common/ico_tel1_w.svg)no-repeat left center / 42.15px;
    margin-top: 8px;
  }
  .w_contact_bnr1_tel1_t3 {
    font-size: 11px;
    letter-spacing: 0;
    margin-top: 8px;
  }
  .w_contact_bnr1_link1 {
    width: 100%;
    height: 66px;
    font-size: 17px;
    margin-top: 24px;
  }
}
@media all and (max-width: 370px) {
}


/* w_contact_bnr2
***************************************************************/
.w_contact_bnr2 {
  width: 793px;
  margin: auto;
  color: #fff;
  padding-bottom: 50px;
}
.w_contact_bnr2_tit1 {
  position: relative;
  top: -16px;
  margin-bottom: -16px;
  z-index: 0;
}
.w_contact_bnr2_tit1 span {
  display: block;
}
.w_contact_bnr2_tit1 .en {
  font-size: 125px;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
  text-align: center;
  opacity: 0.14;
}
.w_contact_bnr2_tit1 .jp {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  font-size: 22px;
  letter-spacing: 0.075em;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
.w_contact_bnr2_tel1 {
  width: 467px;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.w_contact_bnr2_tel1_t1 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.w_contact_bnr2_tel1_t2 {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-left: 58px;
  background: url(../../img/common/ico_tel1_w.svg)no-repeat left center / 50px;
  margin-top: 8px;
}
.w_contact_bnr2_tel1_t3 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.47;
  text-align: center;
  margin-top: 8px;
}
.w_contact_bnr2_link1 {
  width: 467px;
  height: 80px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
}
.w_contact_bnr2_link1 .s1 {
  display: block;
  padding: 5px 0 5px 47px;
  background: url(../../img/common/ico_mail1_w.svg)no-repeat left center / 32px;
  transition: background-image 0.3s ease;
}
@media all and (min-width: 681px) {
  .w_contact_bnr2 {
    background: url(../../img/build/contact_bg.jpg)no-repeat center / cover;
  }
  .w_contact_bnr2_link1:hover {
    background-color: #fff;
    color: #27453B;
  }
  .w_contact_bnr2_link1:hover .s1 {
    background-image: url(../../img/common/ico_mail1_g.svg);
  }
}
@media all and (max-width: 680px) {
  .w_contact_bnr2 {
    width: calc(100% - 40px);
    padding-bottom: 21px;
    margin: auto;
    background: url(../../img/build/contact_bg_sp.jpg)no-repeat center / cover;
  }
  .w_contact_bnr2_tit1 {
    top: -8px;
    margin-bottom: -8px;
  }
  .w_contact_bnr2_tit1 .en {
    font-size: 65px;
  }
  .w_contact_bnr2_tit1 .jp {
    font-size: 17px;
  }
  .w_contact_bnr2_in1 {
    width: 288px;
    margin: 0 auto;
    flex-flow: column;
    justify-content: center;
  }
  .w_contact_bnr2_tel1 {
    width: auto;
  }
  .w_contact_bnr2_tel1_t1 {
    font-size: 15px;
  }
  .w_contact_bnr2_tel1_t2 {
    color: #fff;
    font-size: 38px;
    padding-left: 38px;
    background: url(../../img/common/ico_tel1_w.svg)no-repeat left center / 32px;
    margin-top: -7px;
  }
  .w_contact_bnr2_tel1_t3 {
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-top: 8px;
  }
  .w_contact_bnr2_link1 {
    width: 100%;
    height: 50px;
    font-size: 15px;
    margin-top: 15px;
  }
  .w_contact_bnr2_link1 .s1 {
    padding: 5px 0 5px 28px;
    background: url(../../img/common/ico_mail1_w.svg)no-repeat left center / 20px;
  }
}


/* w_title3_box
***************************************************************/
.w_title3_box {
  width: 1100px;
  margin: 0 auto;
  padding: 145px 0 45px;
}
.w_title3_cover {
  position: relative;
  padding-bottom: 35px;
}
.w_title3 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.25;
  position: relative;
  z-index: 2;
}
.w_title3_eng {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  -webkit-text-stroke: 1px #E5EBED;
  text-stroke: 1px #E5EBED;
  color: #fff;
  position: absolute;
  left: 0;
  top: -25px;
}
.w_title3_box_text1 {
  font-size: 26px;
  font-weight: 700;
  text-align: justify;
  letter-spacing: 0.075em;
  line-height: 1.5;
}
.w_title3_box_text2 {
  font-size: 16px;
  font-weight: 700;
  text-align: justify;
  letter-spacing: 0.05em;
  line-height: 1.63;
}
.w_title3_box_text1 + .w_title3_box_text2 {
  margin-top: 20px;
}
.w_title3_mv1_cover {
  overflow: hidden;
}
.w_title3_mv1 {
  margin-left: calc((100% - 1100px) / 2);
  height: 347px;
  background: url(../../img/common/noimage.jpg)no-repeat center / cover;
  position: relative;
  z-index: 2;
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
  .w_title3_box {
    width: 100%;
    padding: 70px 20px 30px;
  }
  .w_title3_cover {
    padding-bottom: 26px;
  }
  .w_title3 {
    font-size: 29px;
  }
  .w_title3_eng {
    font-size: 33px;
    top: -16px;
  }
  .w_title3_box_text1 {
    font-size: 20px;
  }
  .w_title3_box_text2 {
    font-size: 14px;
    letter-spacing: 0.025em;
  }
  .w_title3_box_text1 + .w_title3_box_text2 {
    margin-top: 15px;
  }
  .w_title3_mv1 {
    margin-left: 20px;
    height: 147px;
  }
}
@media all and (max-width: 370px) {
}


/* w_btn1
***************************************************************/
.w_btn1 {
  width: 270px;
  margin: 0 auto;
  display: block;
  border: 1px solid #527086;
  background-color: #fff;
  color: #527086;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 15px 40px 15px 18px;
  background: url(../../img/common/arrow1_b.svg)no-repeat right 17px center / 16.5px;
}
@media all and (min-width: 681px) {
  a.w_btn1:hover,
  a:hover .w_btn1 {
    border: 1px solid #527086;
    background-color: #527086;
    color: #fff;
    background-image: url(../../img/common/arrow1_w.svg);
  }
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}


/* コンテンツ
***************************************************************/
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}


/* コンテンツ
***************************************************************/
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}
