@charset "UTF-8";

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.875;
  text-align: left;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-style: normal;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

a {
  color: #333333;
  text-decoration: none;
}

img {
  max-width: 100%;
}

img[src$=".svg"] {
  width: auto;
  height: auto;
}

ul li {
  list-style: none;
}

/*=======================*/
/* Loading                */
/*=======================*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility ease 1s;
  z-index: 9999;
}

#loading.fadeOut {
  opacity: 1;
  visibility: visible;
}

#loading #loadingLogo {
  left: 50%;
  top: 50%;
  width: 60vw;
  transform: translate(-50%, -50%);
  position: absolute;
  opacity: 0;
  transition: opacity .8s ease;
  z-index: 99999;
}

#loading #loadingLogo.fadeIn {
  opacity: 1;
}

/*=======================*/
/* Header                */
/*=======================*/
#header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

#header .header_inner {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 19.5vw;
  height: 100px;
}

#header .header_inner .header_logo {
  width: 57.6%;
  line-height: 1;
  transition: opacity 0.35s ease-in-out;
}

/*---ハンバーガーメニュー---*/
#menu_btn {
  height: 24px;
  position: absolute;
  right: 15px;
  top: 40px;
  width: 30px;
  z-index: 1100;
}

#menu_btn .menu_trigger {
  display: inline-block;
  height: 100%;
  position: relative;
  width: 100%;
}

#menu_btn .menu_trigger span {
  background-color: #ffffff;
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transition: all 0.35s ease-in-out;
}

#menu_btn .menu_trigger span:nth-of-type(2) {
  background: linear-gradient(90deg, white 0%, white 20%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 30%, white 30%);
  left: -14px;
}

#menu_btn .menu_trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, white 0%, white 20%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 30%, white 30%);
  border-radius: 4px;
  transition: all .35s ease-in-out;
}

#menu_btn .menu_trigger span:nth-of-type(1) {
  top: 0px;
  width: 100%;
}

#menu_btn .menu_trigger span:nth-of-type(2) {
  top: 10px;
  width: 100%;
}

#menu_btn .menu_trigger span:nth-of-type(3) {
  top: 20px;
  width: 100%;
}

/*---グローバルナビ---*/
.globalMenu {
  background-color: #ffffff;
  height: 100%;
  left: 0;
  padding-top: 100px;
  position: fixed;
  top: 0;
  width: 100%;
  overflow: auto;
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}

.globalMenu ul {
  list-style: none;
}

.globalMenu ul li a {
  display: block;
  padding: 30px 0;
  font-family: "Castoro", serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  position: relative;
  text-align: center;
  transition: all .35s ease-in-out;
}

.globalMenu .material-icons {
  display: none;
}

/*---アニメーション---*/
.is-fixed #menu_btn .menu_trigger span {
  background: #333333;
}

.is-fixed #menu_btn .menu_trigger span:nth-of-type(2) {
  background: linear-gradient(90deg, #333333 0%, #333333 20%, rgba(51, 51, 51, 0) 20%, rgba(51, 51, 51, 0) 30%, #333333 30%);
}

.is-fixed #menu_btn .menu_trigger span:nth-of-type(2)::after {
  background: linear-gradient(90deg, #333333 0%, #333333 20%, rgba(51, 51, 51, 0) 20%, rgba(51, 51, 51, 0) 30%, #333333 30%);
}

.is-fixed .header_logo {
  opacity: 0;
}

.is-menuOpen #menu_btn .menu_trigger span {
  background: #333333;
}

.is-menuOpen #menu_btn .menu_trigger span:nth-of-type(1) {
  transform: translate(50%) scale(0);
}

.is-menuOpen #menu_btn .menu_trigger span:nth-of-type(2) {
  transform: rotate(45deg);
  left: 0;
}

.is-menuOpen #menu_btn .menu_trigger span:nth-of-type(2)::after {
  transform: rotate(90deg);
  background: #333333;
}

.is-menuOpen #menu_btn .menu_trigger span:nth-of-type(3) {
  transform: translate(-50%) scale(0);
}

.is-menuOpen .is-fixed #menu_btn .menu_trigger span {
  background: #333333;
}

.is-menuOpen .is-fixed #menu_btn .menu_trigger span:nth-of-type(2) {
  background: #333333;
}

.is-menuOpen .is-fixed #menu_btn .menu_trigger span:nth-of-type(2)::after {
  background: #333333;
}

.is-menuOpen .globalMenu {
  opacity: 1;
  visibility: visible;
}

/*=======================*/
/* Contents              */
/*=======================*/
main {
  display: block;
}

/*=======================*/
/* Footer                */
/*=======================*/
#footer {
  width: 100%;
  position: relative;
  background-color: #dceddc;
  background: linear-gradient(180deg, transparent 120px, #dceddc 120px, #dceddc 100%);
}

#footer .footer_contents {
  background: url(/assets/images/img_footer_sp.webp) no-repeat bottom left/cover;
  padding: 30px 40px;
  text-align: center;
  color: #ffffff;
}

#footer .footer_logo {
  margin: 0 auto 20px 8.5vw;
  width: 75%;
}

#footer .footer_nav {
  background-color: #dceddc;
  padding: 20px 0;
}

#footer .summary_businessDay {
  margin-bottom: 20px;
}

#footer .summary_businessDay dt {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}

#footer .summary_businessDay dd {
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
}

#footer .summary_businessDay dd div:first-of-type {
  margin-right: 10px;
}

#footer .summary_email {
  border-bottom: #ffffff solid 1px;
}

#footer .summary_email dt {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}

#footer .summary_email dt::before,
#footer .summary_email dt::after {
  content: "";
  flex-grow: 1;
  display: block;
  border-top: #ffffff solid 1px;
}

#footer .summary_email dt::before {
  margin-right: 12px;
}

#footer .summary_email dt::after {
  margin-left: 12px;
}

#footer .summary_email dd {
  margin-top: 10px;
  padding-bottom: 15px;
}

#footer .summary_email dd>div {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

#footer .summary_email dd>div a {
  font-size: 0.75rem;
  color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.15em;
  word-break: break-all;
}

#footer .summary_email dd>div a span {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

#footer .summary_email dd>div a span::before,
#footer .summary_email dd>div a span::after {
  border-style: solid solid none none;
  border-width: 2px 2px 0 0;
  border-color: #ffffff #ffffff transparent transparent;
  content: "";
  height: 6px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  vertical-align: middle;
  width: 6px;
}

#footer .summary_email dd>div a span::after {
  left: 7px;
}

#footer .summary_email dd>div+div {
  margin-top: 15px;
}

#footer .note {
  margin-top: 45vw;
}

#footer .note>div {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
  font-size: 0.625rem;
}

#footer .note>div a {
  display: inline-block;
  margin-left: 10px;
  color: #ffffff;
}

#footer .note>div a img {
  width: 120px;
}

#footer .note>div:nth-of-type(2) {
  font-family: "Castoro", serif;
}

#footer .note>div:nth-of-type(2) a {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.875rem;
}

#footer .footerMenu {
  display: none;
}

#footer .footerMenu>ul {
  display: flex;
}

#footer .footerMenu>ul>li a {
  color: #a0bd99;
  font-family: "Castoro", serif;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  padding-left: 40px;
  position: relative;
  display: inline-block;
}

#footer .footerMenu>ul>li a::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #a0bd99;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#footer .footerMenu>ul>li+li {
  margin-left: 30px;
}

#footer .sns_link {
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer .sns_link a {
  display: flex;
  margin: 0 10px;
  width: 25px;
}
#footer .sns_link a svg{
  width: 100%;
}

/*=======================*/
/* btn                   */
/*=======================*/
.btn {
  display: inline-block;
  position: relative;
  text-align: center;
  width: 100%;
  font-size: 0.875rem;
  font-family: "Castoro", serif, "Shippori Mincho", serif;
  cursor: pointer;
}

.btn_inner {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 5px;
  background: #9bd18c;
  background: linear-gradient(90deg, #9bd18c 0%, #ccd679 50%, #fcda66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
}

.btn_inner::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: #fcda66 solid 1px;
  right: 0;
  bottom: 0;
  transform: translate(40%, 45%);
}

.btn::before {
  content: "";
  position: absolute;
  height: 1.5px;
  background: #9bd18c;
  background: linear-gradient(90deg, #9bd18c 0%, #ccd679 50%, #fcda66 100%);
  bottom: 0;
  left: 0;
  right: 0;
}

.btn::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1px;
  right: 0;
  background-color: #fcda66;
  bottom: 2.5px;
  transform: rotate(40deg);
}

/*=======================*/
/* pageTop               */
/*=======================*/
#pageTop {
  right: 15px;
  z-index: 1;
  transition: opacity 0.35s ease-in-out;
  opacity: 0;
}

#pageTop img {
  width: 10px;
}

#pageTop.is-show {
  opacity: 1;
}

/*=======================*/
/* Margin                */
/*=======================*/
.mb0 {
  margin-bottom: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

/*=======================*/
/* Align                */
/*=======================*/
.ta-C {
  text-align: center !important;
}

.ta-L {
  text-align: left !important;
}

.ta-R {
  text-align: right !important;
}

/*=======================*/
/* Visible Hidden */
/*=======================*/
.visible-large {
  display: none;
}

.hidden-large {
  display: block;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #header .header_inner {
    padding-left: 15px;
    height: 120px;
  }

  #header .header_inner .header_logo {
    width: 35%;
  }

  .globalMenu ul li a {
    font-size: 0.875rem;
  }

  #footer .footer_nav {
    justify-content: center;
  }

  #footer .sns_link {
    margin: 10px 0;
  }

  .mbPc0 {
    margin-bottom: 0px !important;
  }

  .mtPc0 {
    margin-top: 0px !important;
  }

  .mbPc10 {
    margin-bottom: 10px !important;
  }

  .mtPc10 {
    margin-top: 10px !important;
  }

  .mbPc20 {
    margin-bottom: 20px !important;
  }

  .mtPc20 {
    margin-top: 20px !important;
  }

  .mbPc30 {
    margin-bottom: 30px !important;
  }

  .mtPc30 {
    margin-top: 30px !important;
  }

  .mbPc40 {
    margin-bottom: 40px !important;
  }

  .mtPc40 {
    margin-top: 40px !important;
  }

  .visible-large {
    display: block;
  }

  .hidden-large {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  #loading #loadingLogo {
    width: 20vw;
  }

  #header {
    position: absolute;
  }

  #header .header_inner {
    height: 190px;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 6.4vw;
  }

  #header .header_inner .header_logo {
    width: 27%;
  }

  #menu_btn {
    display: none;
  }

  .globalMenu {
    position: relative;
    flex-grow: 1;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    padding: 0 0 20px 0;
    width: auto;
    left: auto;
    top: auto;
  }

  .globalMenu ul {
    display: flex;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .globalMenu ul li a {
    color: #ffffff;
    font-size: 1.125rem;
    padding: 0 2vw 0;
  }

  .globalMenu ul li a span {
    position: relative;
    display: inline-block;
  }

  .globalMenu ul li a span::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
    transition: transform .5s ease-in-out;
    transform: scale(0, 1);
    transform-origin: right top;
  }

  .globalMenu ul li a span:hover::before {
    transform: scale(1, 0.9);
    transform-origin: left top;
  }

  .globalMenu ul li.is-current a span::before {
    transform: scale(1, 0.9);
    transform-origin: left top;
  }

  .globalMenu ul li:last-of-type a {
    padding: 0 0 0 30px;
  }

  .is-fixed .header_logo {
    opacity: 1;
  }

  #footer .footer_contents {
    background: url(/assets/images/img_footer.webp) no-repeat bottom left -5.2vw/cover;
    max-width: 1280px;
    margin: -120px auto 0;
    padding: 130px 5.5vw 70px;
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 1;
  }

  #footer .footer_logo {
    width: 45%;
    margin: 0 8.5vw 0 0;
  }

  #footer .footer_info {
    flex-grow: 1;
  }

  #footer .footer_nav {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 0 70px;
    flex-wrap: wrap;
  }

  #footer .summary_businessDay {
    display: flex;
    justify-content: space-between;
  }

  #footer .summary_businessDay dt {
    font-size: 0.875rem;
    line-height: 2;
  }

  #footer .summary_businessDay dd {
    font-size: 1.125rem;
    flex-direction: column;
    align-items: flex-end;
    letter-spacing: 0.1em;
  }

  #footer .summary_email dt {
    font-size: 1.125rem;
  }

  #footer .summary_email dt::before {
    display: none;
  }

  #footer .summary_email dt::after {
    margin-left: 20px;
  }

  #footer .summary_email dd>div {
    text-align: left;
    font-size: 0.875rem;
  }

  #footer .summary_email dd>div a {
    justify-content: flex-start;
    font-size: 1.125rem;
  }

  #footer .summary_email dd>div a span {
    margin-right: 10px;
  }

  #footer .summary_email dd>div a span::before,
  #footer .summary_email dd>div a span::after {
    height: 8px;
    width: 8px;
  }

  #footer .note {
    margin-top: 300px;
  }

  #footer .note>div {
    font-size: 0.875rem;
    justify-content: flex-end;
  }

  #footer .note>div a img {
    width: 16vw;
  }

  #footer .note>div:nth-of-type(2) a {
    font-size: 1.125rem;
  }

  #footer .footerMenu {
    display: block;
  }

  #footer .sns_link a {
    width: 45px;
    margin: 0 15px;
  }

  .btn {
    font-size: 1.5rem;
    transition: all .35s ease-in-out;
  }

  .btn:hover {
    opacity: 0.6;
  }

  .btn_inner::before {
    width: 70px;
    height: 70px;
    border-width: 2px;
    transition: transform .35s ease-in-out;
  }

  .btn::before {
    height: 2px;
  }

  .btn:hover .btn_inner::before {
    transform: translate(40%, 45%) scale(1.2);
  }

  .btn::after {
    width: 10px;
    height: 2px;
    bottom: 3.5px;
  }

  #pageTop {
    position: fixed;
    bottom: 3.5vw;
    right: 5vw;
  }

  #pageTop img {
    width: 15px;
  }

  .visible-large {
    display: block;
  }

  .hidden-large {
    display: none;
  }
}

@media screen and (min-width: 1600px) {
  #footer .footer_contents {
    max-width: 76.36vw;
  }
  #footer .footer_nav{
    max-width: 76.36vw;
  }
}

@media screen and (min-width: 1900px) {
  .globalMenu ul li a {
    font-size: 1.5rem;
  }

  #footer .footer_contents {
    background-position: bottom left;
    padding: 130px 4.5vw 70px;
  }

  #footer .footer_logo {
    width: 50%;
  }

  #footer .summary_businessDay dt {
    font-size: 1.125rem;
  }

  #footer .summary_businessDay dd {
    font-size: 1.375rem;
  }

  #footer .summary_email dd>div {
    font-size: 1.125rem;
  }

  #footer .summary_email dd>div a {
    font-size: 1.5rem;
  }

  #footer .note>div {
    font-size: 1.125rem;
  }

  #footer .note>div:nth-of-type(2) a {
    font-size: 1.5rem;
  }

  #footer .footerMenu>ul>li a {
    font-size: 1.5rem;
  }

  #footer .footerMenu>ul>li+li {
    margin-left: 55px;
  }

  .btn {
    font-size: 2.0625rem;
  }
}

/*# sourceMappingURL=map/common.css.map */