@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;500;700&family=Zen+Old+Mincho:wght@400;500&family=Biryani:wght@400;700&display=swap");

*,
*::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;
  background-color: #f5f5f5;
  transition: background 0.3s ease;
  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", serif;
  font-weight: 400;
}
.lato {
  font-family: "Lato", serif;
  font-weight: 400;
}
.zen {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
.zen {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
.biryani {
  font-family: "Biryani", 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;
}
.nolink {
  pointer-events: none !important;
  opacity: 0.45 !important;
}
@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;
  }
}

#infscr-loading {
  text-align: center;
}
.comingSoon {
  text-align: center;
  padding-bottom: 50px;
}

/* 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, 40px);
  }
  .action.left {
    opacity: 0;
    transform: translate(-40px, 0);
  }
  .action.right {
    opacity: 0;
    transform: translate(40px, 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) 0.5s,
      opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.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;
  }

  .action1 {
    opacity: 0;
    animation: opacity ease 1s forwards 0.25s;
  }
  .action1.delay1 {
    animation: opacity ease 1s forwards 0.75s;
  }
  .action1.delay2 {
    animation: opacity ease 1s forwards 1.25s;
  }

  .action1_up {
    opacity: 0;
    transform: translate(0, 100px);
    animation: action1_up ease 1s forwards 0.5s;
  }
  .action1_up.delay1 {
    animation: action1_up ease 1s forwards 0.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 0.5s;
  }
  .action1_left.delay1 {
    animation: action1_left ease 1s forwards 0.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 0.5s;
  }
  .action1_right.delay1 {
    animation: action1_right ease 1s forwards 0.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);
  }
  .action.left_sp {
    opacity: 0;
    transform: translate(-40px, 0);
  }
  .action.right_sp {
    opacity: 0;
    transform: translate(40px, 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) 0.5s,
      opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.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;
  }

  .action1_up_sp {
    opacity: 0;
    transform: translate(0, 50px);
    animation: action1_up_sp ease 1s forwards 0.5s;
  }
  .action1_up_sp.delay1 {
    animation: action1_up_sp ease 1s forwards 0.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 0.5s;
  }
  .action1_left_sp.delay1 {
    animation: action1_left_sp ease 1s forwards 0.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 0.5s;
  }
  .action1_right_sp.delay1 {
    animation: action1_right_sp ease 1s forwards 0.75s;
  }
  .action1_right_sp.delay2 {
    animation: action1_right_sp ease 1s forwards 1s;
  }
}

@keyframes blur {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0);
    filter: blur(0);
  }
}
.blur {
  opacity: 0;
}
.scrollin.blur {
  animation: blur 1.5s ease-in-out 0.5s forwards;
}
.scrollin.blur.delay1 {
  animation-delay: 1s;
}
.scrollin.blur.delay2 {
  animation-delay: 1.5s;
}
.scrollin.blur.delay3 {
  animation-delay: 1.5s;
}

@keyframes passing-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.action1 {
  position: relative;
}
.action1::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(-45deg, #00e5c7 0%, #00c850 100%);
  z-index: 1;
}
.white .action1::before {
  background: #fff;
}
.action1.scrollin::before {
  animation: passing-bar 0.6s ease 0.4s 1 normal forwards;
}
.action1 .action_item {
  display: block;
  opacity: 0;
  transform: translate3d(0, 0, 0);
}
.action1.scrollin .action_item {
  animation: passing-txt 0.6s ease 0.3s 1 normal forwards;
}

/* 共通
***************************************************************/
.ov {
  overflow: clip;
}
.main {
  overflow-x: clip;
}
.bg_w {
  background-color: #fff;
}
@media all and (min-width: 681px) {
  body,
  #head {
    min-width: 1200px;
  }
}

/* head
***************************************************************/
#head {
  width: 100%;
  height: 154px;
  padding: 0 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5555;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, height 0.3s ease, top 0.3s ease,
    opacity 0.3s ease;
}
.h_nav_off #head {
  opacity: 0;
  height: 90px;
}
.h_nav_off2 #head {
  background-color: #f5f5f5;
}
.pageScroll #head {
  position: fixed !important;
  top: 0 !important;
  opacity: 1 !important;
}
.h_site_id {
  width: 227.85px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.h_site_id_logo {
  background: no-repeat left / contain;
  transition: background 0.3s ease;
}
.h_site_id_logo img {
  transition: opacity 0.3s ease;
}
.h_nav_off .h_site_id_logo {
  background-image: url(../img/common/site_id1_b.svg);
}
.h_nav_off .h_site_id_logo img {
  opacity: 0;
}
.h_site_id_txt {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: calc(24 / 14);
  margin-top: 10px;
  color: #fff;
}
.h_nav_off2 .h_site_id_txt {
  color: #000;
}
.h_box1 {
  display: flex;
  align-items: center;
  gap: 0 28px;
}
.h_entry_count {
  display: flex;
  align-items: center;
  gap: 0 7px;
}
.h_entry_count_txt1 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
}
.h_entry_count_txt2 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
  display: flex;
  align-items: baseline;
  gap: 0 4px;
}
.h_entry_count_txt2 .num {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.h_entry_btn {
  width: 195px;
  height: 45px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
  background: linear-gradient(45deg, #f78e00 0%, #e5cb00 100%);
  color: #fff;
}
.h_entry_btn::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(-45deg, #00e5c7 0%, #00c850 100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.h_entry_btn .in1 {
  position: relative;
  z-index: 2;
}
.h_entry_btn_comm {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
}
.h_entry_btn_comm .s1 {
  position: relative;
}
.h_entry_btn_comm .s1::before {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  top: 4px;
  left: -10px;
  transform: rotate(-30deg);
}
.h_entry_btn_comm .s1::after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  top: 4px;
  right: -6px;
  transform: rotate(30deg);
}
.h_nav_off2 #head .h_entry_btn {
  top: 10px;
}
.h_nav_off2 .h_entry_btn_comm {
  color: #000;
}
.h_nav_off2 .h_entry_btn_comm .s1::before,
.h_nav_off2 .h_entry_btn_comm .s1::after {
  background-color: #000;
}
.h_toggle {
  width: 32px;
  height: 18px;
  cursor: pointer;
}
.h_toggle p {
  position: relative;
  height: 100%;
}
.h_toggle p span,
.h_toggle p::before,
.h_toggle p::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}
.h_toggle p span {
  transform: translateY(-50%);
}
.h_toggle p::before {
  transform: translateY(-8px) rotate(0deg);
}
.h_toggle p::after {
  transform: translateY(6px) rotate(0deg);
}
.open .h_toggle p span {
  opacity: 0;
}
.open .h_toggle p::before {
  transform: translateY(-50%) rotate(-45deg);
}
.open .h_toggle p::after {
  bottom: 0;
  transform: translateY(-50%) rotate(45deg);
}
.h_nav_off2 .h_toggle p span,
.h_nav_off2 .h_toggle p::before,
.h_nav_off2 .h_toggle p::after {
  background-color: #000;
}
.gNav {
  display: flex;
  align-items: center;
  gap: 0 22px;
}
.gNav .link1 {
  padding: 8px 5px 8px 24px;
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  background: url(../img/common/nav_ico1_w.svg) no-repeat left top 13px /
    16.69px;
  position: relative;
}
.h_nav_off2 .gNav .link1 {
  color: #000;
}
.h_nav_off2 .gNav .link1 {
  background-image: url(../img/common/nav_ico1.svg);
}
@media all and (min-width: 681px) {
  .h_nav_off2 .h_site_id {
    width: auto;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0 20px;
  }
  .h_nav_off2 .h_site_id_txt {
    text-align: left;
    margin-top: 0;
    font-size: 12px;
  }
  a.h_site_id:hover {
    opacity: 0.6;
  }
  .h_entry_btn:hover::before {
    opacity: 1;
  }
  .gNav .link1::after {
    content: "";
    width: 0;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(-45deg, #00e5c7 0%, #00c850 100%);
    transition: width 0.3s ease;
  }
  .gNav .link1:hover:after {
    width: 100%;
  }
}
@media all and (min-width: 681px) and (max-width: 1450px) {
  #head {
    padding: 0 20px;
  }
  .gNav {
    gap: 0 14px;
  }
  .gNav .link1 {
    font-size: 13px;
    letter-spacing: 0;
    background-position: left top 10px;
  }
}
@media all and (max-width: 680px) {
  #head {
    height: 80px;
    padding: 0 20px;
  }
  .h_nav_off #head {
    height: 60px !important;
  }
  .pageScroll #head {
    position: fixed;
    top: 0;
  }
  .h_site_id {
    width: auto;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0 12px;
  }
  .h_site_id_logo {
    width: 136.5px;
  }
  .h_site_id_txt {
    font-size: 11px;
    text-align: left;
    line-height: 1.4;
    margin-top: 0;
  }
}
@media all and (max-width: 370px) {
}

/* megaMenu
***************************************************************/
.megaMenu {
  width: 300px;
  height: 100vh;
  padding: 86px 0 76px;
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 9999;
  overflow: auto;
  transition: right 0.3s ease;
}
.open .megaMenu {
  right: 0;
}
.megaMenu .gNav {
  width: 240px;
  margin: 0 auto;
  display: block;
}
.megaMenu .gNav .link1 {
  padding-top: 13px;
  padding-bottom: 13px;
  display: block;
  background-image: url(../img/common/nav_ico1.svg) !important;
  background-position: left center;
  color: #000 !important;
  border-bottom: 1px solid #d3d3d3;
}
.megaMenu .h_toggle {
  position: absolute;
  top: 30px;
  right: 20px;
}
.megaMenu .h_toggle p span,
.megaMenu .h_toggle p::before,
.megaMenu .h_toggle p::after {
  background-color: #000 !important;
}
.megaMenu .h_entry_btn {
  margin: 68px auto 0;
  width: 222px;
}
.megaMenu .h_entry_btn_comm {
  color: #000 !important;
}
.megaMenu .h_entry_btn_comm .s1::before,
.megaMenu .h_entry_btn_comm .s1::after {
  background-color: #000 !important;
}
.m_telBox {
  width: 240px;
  margin: 30px auto 0;
}
.m_telBox_txt1 {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5;
}
.m_telBox_txt2 {
  display: block;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.m_telBox_txt3 {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5;
}
.megamenu .f_privacy_linkBox {
  margin-top: 40px;
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}

/* flt_nav_sp */
.flt_nav_sp {
  width: 100%;
  position: fixed;
  z-index: 5555;
  left: 0;
  bottom: -50px;
  transition: bottom 0.3s ease;
  display: flex;
}
.flt_nav_sp.on {
  bottom: 0;
}
.flt_nav_sp_tel {
  width: 50px;
  height: 50px;
  background: url(../img/common/flt_nav_sp_tel.svg) no-repeat center / 12px #000;
}
.flt_nav_sp_entry {
  width: calc(100% - 50px);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  background: linear-gradient(45deg, #f78e00 0%, #e5cb00 100%);
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}

/* foot
***************************************************************/
.foot {
  position: relative;
  padding: 105px 0 110px;
  overflow: clip;
}
.foot_inner {
  width: 1150px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.f_site_id {
  width: 227.85px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.f_title1 {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.f_address {
  margin-top: 20px;
}
.f_address_dt {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.f_address_dd {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.69;
}
.f_address_dd a {
  text-decoration: none;
}
.f_bnr_list1 {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}
.f_bnr1 {
  display: block;
  width: 215px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
}
.f_privacy_linkBox {
  display: flex;
  justify-content: flex-end;
}
.f_privacy_link {
  display: block;
  font-size: 14px;
  font-weight: 400;
  text-align: right;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #325310;
  padding-right: 20px;
  position: relative;
}
.f_privacy_link::after {
  content: "";
  width: 14.91px;
  height: 11.49px;
  background: url(../img/common/blank1.svg) no-repeat center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.cRight {
  font-size: 13px;
  font-weight: 400;
  text-align: right;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
.f_address_tel {
  width: 170px;
  height: 38px;
  margin: 10px auto 0;
  border-radius: 5px;
  border: 1px solid #707070;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 5.5px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
}
.f_address_tel i {
  display: block;
  width: 13px;
  height: 13px;
  background: url(../img/common/ico_tel1.svg) no-repeat center / contain;
}
@media all and (min-width: 681px) {
  a.f_bnr1:hover {
    opacity: 0.6;
  }
  a.f_privacy_link:hover {
    border-color: transparent;
  }
}
@media all and (max-width: 680px) {
  .foot {
    padding: 100px 0 60px;
  }
  .foot_inner {
    width: 100%;
    display: block;
  }
  .f_site_id {
    width: 164.23px;
    margin: 0 auto;
  }
  .f_site_id_txt {
    font-size: 13px;
    margin-top: 8.5px;
  }
  .f_title1 {
    margin-top: 25px;
    font-size: 18px;
    text-align: center;
  }
  .f_address {
    margin-top: 15px;
    text-align: center;
  }
  .f_box2 {
    display: flex;
    flex-flow: column;
  }
  .f_bnr_list1 {
    margin-top: 30px;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 10px;
    order: 1;
  }
  .f_bnr1 {
    width: 250px;
  }
  .cRight {
    order: 3;
    font-size: 12px;
    text-align: center;
    margin-top: 40px;
  }
  .f_privacy_linkBox {
    order: 2;
    position: static;
    justify-content: center;
    margin-top: 30px;
  }
  .f_privacy_link {
    position: relative;
  }
}
@media all and (max-width: 370px) {
}

/* f_circle1
***************************************************************/
.f_circle1 {
  pointer-events: none;
  position: absolute;
  width: 800px;
  height: 800px;
  bottom: -355px;
  right: -168px;
  margin: auto;
}
@keyframes f_donut {
  from {
    stroke-dashoffset: 1664.9;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes f_donut_sp {
  from {
    stroke-dashoffset: 1664.9;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@media all and (min-width: 681px) {
  .f_circle1.scrollin #f_donut {
    animation: f_donut 1.5s linear forwards;
  }
}
@media all and (max-width: 680px) {
  .f_circle1 {
    width: 800px;
    height: 800px;
    left: calc((100vw - 800px) / 2);
    right: auto;
    bottom: -333px;
  }
  .f_circle1.scrollin #f_donut_sp {
    animation: f_donut_sp 1.5s linear forwards;
  }
}
@media all and (max-width: 370px) {
}

/* w_title1
***************************************************************/
.w_title1 {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 5px 0;
}
.w_title1_t1 {
  color: #fff;
  background: linear-gradient(-45deg, #00e5c7 0%, #00c850 100%);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 5px 15px;
}
.w_title1_t2 {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: calc(42 / 28);
}
.white .w_title1_t1 {
  color: #00cc5f;
  background: #fff;
}
.white .w_title1_t2 {
  color: #fff;
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
  .w_title1 {
    gap: 5px 0;
  }
  .w_title1_t1 {
    font-size: 20px;
    padding: 4px 10px;
  }
  .w_title1_t2 {
    font-size: 28px;
  }
}
@media all and (max-width: 370px) {
}

/* w_link1
***************************************************************/
.w_link1 {
  width: 440px;
  height: 64px;
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 100px;
  padding-right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
}
.w_link1::after {
  content: "";
  width: 20.58px;
  height: 17.16px;
  background: url(../img/common/arrow1_w.svg) no-repeat center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
}
@media all and (min-width: 681px) {
  .w_link1:hover {
    border-color: transparent;
    background: linear-gradient(45deg, #f78e00 0%, #e5cb00 100%);
  }
}
@media all and (max-width: 680px) {
  .w_link1 {
    width: 240px;
    height: 48px;
    padding-right: 0;
    font-size: 13px;
    line-height: 1.3;
  }
  .w_link1::after {
    width: 12.54px;
    height: 10.46px;
    right: 15px;
  }
}
@media all and (max-width: 370px) {
}

/* w_link2
***************************************************************/
.w_link2 {
  width: 420px;
  height: 80px;
  margin: 0 auto;
  background: linear-gradient(45deg, #f78e00 0%, #e5cb00 100%);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
  transition: 0.3s ease;
}
.w_link2::after {
  content: "";
  width: 20.58px;
  height: 17.16px;
  background: url(../img/common/arrow1_w.svg) no-repeat center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
}
.w_link2.white {
  background: none;
  border: 1px solid #fff;
}
@media all and (min-width: 681px) {
  .w_link2:hover {
    filter: brightness(1.1);
  }
  .w_link2.white:hover {
    background: linear-gradient(45deg, #f78e00 0%, #e5cb00 100%);
    border: none;
  }
}
@media all and (max-width: 680px) {
  .w_link2 {
    width: 250px;
    height: 60px;
    font-size: 16px;
  }
  .w_link2::after {
    width: 13.35px;
    height: 11.14px;
    right: 22px;
  }
}
@media all and (max-width: 370px) {
}

/* w_title2
***************************************************************/
.w_title2 {
  position: relative;
  padding-left: 86px;
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.w_title2::before {
  content: "";
  width: 64px;
  height: 64px;
  background: url(../img/common/ico_tit1.svg) no-repeat center / contain;
  position: absolute;
  top: 6px;
  left: 0;
}
.w_title2 .sml1 {
  font-size: 20px;
  position: relative;
  top: -6px;
}
.w_title2.white {
  color: #fff;
}
.w_title2.white::before {
  background-image: url(../img/common/ico_tit1_w.svg);
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
  .w_title2 {
    padding-left: 41px;
    font-size: 24px;
  }
  .w_title2::before {
    width: 30px;
    height: 30px;
    top: 5px;
  }
  .w_title2 .sml1 {
    font-size: 14px;
    top: 0;
    display: block;
  }
}
@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) {
}

/* コンテンツ
***************************************************************/
@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) {
}
