@charset "UTF-8";

*,
*::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: #333;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
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;
}


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

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

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

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

/* lazyload
***************************************************************/
.lazyload {
  opacity: 0;
}
.lazyloaded {
  opacity: 1;
  transition: opacity ease-in-out 0.3s;
}

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

/* フェード
***************************************************************/
/* action */
@media all and (min-width: 681px) {
  .action.up {
    opacity: 0;
    transform: translate(0, 30px);
  }
  .action.left {
    opacity: 0;
    transform: translate(-30px, 0);
  }
  .action.right {
    opacity: 0;
    transform: translate(30px, 0);
  }
  .action.up.scrollin,
  .action.left.scrollin,
  .action.right.scrollin {
    opacity: 1;
    transform: translate(0, 0);
    transition: transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) .5s, opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) .5s;
  }
  .action.delay1.scrollin {
    transition: transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  }
  .action.delay2.scrollin {
    transition: transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s, opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
  }
  .action.delay3.scrollin {
    transition: transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2s, opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
  }
  .action.delay4.scrollin {
    transition: transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s, opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s;
  }
}
@media all and (max-width: 680px) {
  .action.up_sp {
    opacity: 0;
    transform: translate(0, 30px);
  }
  .action.left_sp {
    opacity: 0;
    transform: translate(-30px, 0);
  }
  .action.right_sp {
    opacity: 0;
    transform: translate(30px, 0);
  }
  .action.up_sp.scrollin,
  .action.left_sp.scrollin,
  .action.right_sp.scrollin {
    opacity: 1;
    transform: translate(0, 0);
    transition: transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) .5s, opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) .5s;
  }
  .action.delay1_sp.scrollin {
    transition: transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  }
  .action.delay2_sp.scrollin {
    transition: transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s, opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
  }
  .action.delay3_sp.scrollin {
    transition: transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2s, opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
  }
  .action.delay4_sp.scrollin {
    transition: transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s, opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s;
  }
}


/* header
***************************************************************/
.header {
  background: #fff;
  position: fixed;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 101;
  box-shadow: 0 2px 5px #bbb;
}
.header .inner {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__left,
.header__right {
  display: flex;
  align-items: center;
}
.header__siteID {
  display: block;
  width: 245px;
}
.header__siteID:hover {
  opacity: .7;
}
.header__tel1 {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.header__tel1_link1 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.7;
  padding-left: 28px;
  background: url(../img/common/icon_tel_bk.svg)no-repeat center left / 23px;
}
.header__tel1_link1:hover {
  opacity: .7;
}
.header__tel1_txt1 {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  margin-top: -6px;
}
.header__btn1 {
  width: 234px;
  height: 50px;
  margin-left: 20px;
  border-radius: 4px;
  color: #fff;
  background-color: #BD4652;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}
.header__btn1:hover {
  opacity: .7;
}
.header__btn1_in1 {
  padding-left: 30px;
  background: url(../img/common/icon_mail.svg)no-repeat left center / 20px;
}
.header__btn1.type2 {
  background-color: #00B900;
}
.header__btn1.type2 .header__btn1_in1 {
  background-image: url(../img/common/icon_line.svg);
}
.main {
  padding-top: 80px;
}
.footer {
  background-color: #fff;
  padding: 20px;
}
.f_cRight {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5;
}
@media all and (min-width: 481px) {
}
@media all and (min-width: 481px) and (max-width: 1024px) {
  .header__siteID {
    width: 180px;
  }
  .header__tel1_link1 {
    font-size: 20px;
  }
  .header__tel1_txt1 {
    font-size: 12px;
  }
  .header__btn1 {
    width: 180px;
    height: 42px;
    margin-left: 15px;
    font-size: 15px;
  }
  .header__btn1.type2 {
    width: 155px;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .header__tel1 {
    display: none;
  }
  .header__btn1.type1 {
    display: none;
  }
  .header__btn1.type2 {
    width: 172px;
    height: 80px;
    border-radius: 0;
    margin-right: -20px;
  }
}
@media all and (max-width: 480px) {
  .header {
    height: 60px;
  }
  .header .inner {
    padding: 0 0 0 15px;
  }
  .header__siteID {
    width: 130px;
  }
  .header__tel1 {
    display: none;
  }
  .header__btn1.type1 {
    display: none;
  }
  .header__btn1.type2 {
    width: 145px;
    height: 60px;
    font-size: 15px;
    border-radius: 0;
  }
  .main {
    padding-top: 60px;
  }
  .footer {
    padding-bottom: 80px;
  }
}


/* color
***************************************************************/
.color1 {
  color: #004CA0;
}
.color2 {
  color: #BD4652;
}


/* w_conv1
***************************************************************/
.w_conv1 {
  background-color: #C8DCF1;
}
.w_conv1__box1 {
  width: 100%;
  padding: 10px 20px;
  background: url(../img/common/cta_bg1.png)repeat center / 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.w_conv1__box1_list1 {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
}
.w_conv1__box1_list1 .li1 {
  margin: 0 15px;
  padding: 15px 25px;
  position: relative;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.w_conv1__box1_list1 .li1 .bold {
  font-size: 30px;
}
.w_conv1__box1_list1 .li1::before,
.w_conv1__box1_list1 .li1::after {
  content: "";
  width: 20px;
  height: 50px;
  background: url(../img/common/cta_deco_left.png)no-repeat left center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.w_conv1__box1_list1 .li1::after {
  background: url(../img/common/cta_deco_right.png)no-repeat right center / contain;
  left: auto;
  right: 0;
}

.w_conv1__box2 {
  padding: 20px;
}
.w_conv1__box2_inner {
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}
.w_conv1__box2_tit1 {
  font-size: 33px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.w_conv1__box2_item1 {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.w_conv1__tel1 {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.w_conv1__tel1_link1 {
  color: #004CA0;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.7;
  padding-left: 32px;
  background: url(../img/common/icon_tel_bl.svg)no-repeat center left / 27px;
}
.w_conv1__tel1_link1:hover {
  opacity: .7;
}
.w_conv1__tel1_txt1 {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  margin-top: -6px;
}
.w_conv1__btn1 {
  width: 254px;
  height: 60px;
  margin-left: 20px;
  border-radius: 4px;
  color: #fff;
  background-color: #BD4652;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}
.w_conv1__btn1:hover {
  opacity: .7;
}
.w_conv1__btn1_in1 {
  padding-left: 30px;
  background: url(../img/common/icon_mail.svg)no-repeat left center / 20px;
}
.w_conv1__btn1.type2 {
  background-color: #00B900;
}
.w_conv1__btn1.type2 .w_conv1__btn1_in1 {
  background-image: url(../img/common/icon_line.svg);
}
@media all and (min-width: 481px) {
  .w_conv1__box1 {
    min-height: 80px;
  }
}
@media all and (min-width: 481px) and (max-width: 1024px) {
  .w_conv1__box2_tit1 {
    font-size: 3.22vw;
  }
  .w_conv1__box2_tit1 br {
    display: inline !important;
  }
  .w_conv1__box1_list1 .li1 {
    font-size: 2.44vw;
  }
  .w_conv1__box1_list1 .li1 .bold {
    font-size: 2.93vw;
  }
  .w_conv1__tel1,
  .w_conv1__btn1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .w_conv1__box1 {
    min-height: 60px;
  }
  .w_conv1__box1_list1 .li1 {
    padding: 10px 16px;
    margin: 0 8px;
  }
  .w_conv1__box1_list1 .li1::before,
  .w_conv1__box1_list1 .li1::after {
    width: 10px;
    height: 24px;
  }
  .w_conv1__box2_item1 {
    flex-flow: column;
  }
}
@media all and (max-width: 480px) {
  .w_conv1__box1 {
    padding: 15px 0;
  }
  .w_conv1__box1_list1 .li1 {
    margin: 0 5px;
    padding: 8px 21px;
    font-size: 19px;
  }
  .w_conv1__box1_list1 .li1 .bold {
    font-size: 25px;
  }
  .w_conv1__box1_list1 .li1::before,
  .w_conv1__box1_list1 .li1::after {
    width: 16px;
    height: 40px;
  }

  .w_conv1__box2_inner {
    padding: 30px 10px;
  }
  .w_conv1__box2_tit1 {
    font-size: 20px;
  }
  .w_conv1__box2_item1 {
    flex-flow: column;
    gap: 15px 0;
  }
  .w_conv1__tel1_link1 {
    font-size: 30px;
  }
  .w_conv1__btn1 {
    width: 260px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}


/* w_title1
***************************************************************/
.w_title1 {
  position: relative;
}
.w_title1__eng {
  color: #F8F8F8;
  font-size: 90px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: auto;
}
.w_title1__eng.type1 {
  color: #ECF4FD;
}
.w_title1__eng.type2 {
  color: #EDEDED;
}
.w_title1__tit1 {
  position: relative;
  z-index: 1;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media all and (min-width: 481px) {
}
@media all and (min-width: 481px) and (max-width: 1024px) {
  .w_title1__eng {
    font-size: 8.79vw;
    top: -5.86vw;
  }
  .w_title1__tit1 {
    font-size: 4.88vw;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
}
@media all and (max-width: 480px) {
  .w_title1__eng {
    font-size: 50px;
    top: -30px;
  }
  .w_title1__tit1 {
    font-size: 30px;
  }
}


/* float_conversion_sp
***************************************************************/
.float_conversion_sp {
  width: 100%;
  position: fixed;
  z-index: 100;
  bottom: -100%;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  transition: bottom 0.3s ease-in-out;
}
.pageScroll .float_conversion_sp {
  bottom: 0;
}
.float_conversion_sp__btn1 {
  width: 50%;
  height: 60px;
  color: #fff;
  background-color: #BD4652;
  border: 2px solid #BD4652;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}
.float_conversion_sp__btn1_in1 {
  padding-left: 25px;
  background: url(../img/common/icon_mail.svg) no-repeat left center / 15px;
}
.float_conversion_sp__btn1.type_tel {
  color: #004CA0;
  background-color: #fff;
  border: 2px solid #004CA0;
  font-size: 16px;
}
.type_tel .float_conversion_sp__btn1_in1 {
  background-image: url(../img/common/icon_tel_bl.svg);
}
@media all and (min-width: 481px) {
}
@media all and (min-width: 481px) and (max-width: 1024px) {
}
@media all and (min-width: 481px) and (max-width: 768px) {
}
@media all and (max-width: 480px) {
}


/* コンテンツ
***************************************************************/
@media all and (min-width: 481px) {
}
@media all and (min-width: 481px) and (max-width: 1024px) {
}
@media all and (min-width: 481px) and (max-width: 768px) {
}
@media all and (max-width: 480px) {
}


/* コンテンツ
***************************************************************/
@media all and (min-width: 481px) {
}
@media all and (min-width: 481px) and (max-width: 1024px) {
}
@media all and (min-width: 481px) and (max-width: 768px) {
}
@media all and (max-width: 480px) {
}
