@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700&family=Noto+Sans+JP:wght@300;400;700&display=swap");

* {
  margin: 0; 
  padding: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100vh;
  height: 100dvh;
}

body {
  font-feature-settings: "pwid";
  -webkit-font-smoothing: antialiased;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

address, caption, cite, code, em, th {
  font-style: normal;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, svg {
  vertical-align: top;
  border: 0;
}

li {
  list-style-type: none;
}

button, input, select, textarea {
  font-family: inherit;
}

fieldset {
  border: 0;
}

input[type=search] {
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=date] {
  line-height: 1;
}

button, [type=button], [type=reset], [type=submit], [role=button] {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

input[type=search],
input[type=date],
input[type=time] {
  background-color: #fff;
}

button, [type=reset], [type=submit] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

object {
  pointer-events: none;
}

/* html {
  font-size: 6.25%;
} */

body {
  font-size: 16px;
  background: #fff;
  color: #1E2229;
  font-family: "Barlow", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", sans-serif;
  line-height: 0;
  line-height: 1.2;
}

input, textarea {
  color: #1E2229;
}

a {
  color: #00B695;
  transition: all 0.1s linear;
  text-decoration: none;
}
a:visited {
  color: #00B695;
}
a:hover {
  color: #FF7A00;
  opacity: 1;
  text-decoration: none;
}
a:active {
  color: #FF7A00;
}
a:focus {
  color: #FF7A00;
}

img {
  display: block;
}

span.emphasis{
  color: #ff2620;
  font-weight: bold;
}


/*
* ============================================
* レスポンシブ用
* ============================================
*/
.sp_only {
  display: none;
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
}


/*
* ============================================
* アニメーション用
* ============================================
*/
.animated {
  opacity: 0;
}
.animated .fadeInUp {
  opacity: 1;
}

.animated:after {
  transition-delay: 2000ms;
  animation-name:fade-in1;
  animation-duration:4s;
  animation-timing-function: ease-out;
  animation-delay:1s;
  animation-iteration-count:1;
  animation-direction:normal;
  animation-fill-mode: forwards;
}


.show {
  transform-origin:center top;
  animation:show 1s both;
  animation-delay: 400ms;
}

.show:after {
  transform-origin:center top;
  animation:show 1s both!important;
  animation-delay: 600ms!important;
}

@keyframes show {
  0% {
    transform: translate(0,2em);
    opacity: 0;
    /* text-shadow:0 0 0 #0f0; */
    text-shadow: none;
  }
  50% {
    /* text-shadow:0 0 0.5em #0f0; */
    text-shadow: none;
  }
  100% {
    transform: translate(0,0);
    opacity: 1;
    text-shadow: none;
  }
}


/*
* ============================================
* ボタン
* ============================================
*/
.btn {
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #00B695;
  border: 0;
  border-radius: 40px;
  color: #fff !important;
  display: inline-block;
  line-height: 1;
  padding: 12px 20px;
  transition: all 0.1s linear;
  vertical-align: middle;
}

.btn:hover {
  background: #FF7A00;
}
/*
* 
*
* ヘッダー
* 
*/


.header {
  background: #FFF;
  padding: 2%;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 30;
  /* メニューボタン消した時の調整 */
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;

  @media screen and (min-width: 0px) and (max-width: 767px) {
    height: 56px;
  }
}

.header img.top_logo {
  position: absolute;
  display: block;
  top: 17px;
  left: 27px;
  height: 46px;
  width: auto;

  @media screen and (min-width: 0px) and (max-width: 767px) {
    top: 11px;
    left: 27px;
    height: 36px;
    width: auto;
  }
}
  
.header-btn__wrapper {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: right;
}
  
.header__wrapper {
  align-items: center;
  -webkit-appearance: none;
      -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
  line-height: 1;
  letter-spacing: -0.06em;
  pointer-events: auto;
  transition: all 0.1s linear;
  width: -moz-fit-content;
  width: fit-content;
}

button.header__wrapper:hover {
  opacity: 0.9;
}
  
@media only screen and (max-width: 480px) {
  .header-btn__wrapper a {
    display: none;
  }
}
/*
* 
*
* メニュー
* 
*/


@keyframes slideIn {
  from {
    right: -375px;
  }
  to {
    right: 0;
  }
}

.menu {
  animation: slideIn 0.3s ease-out;
  background: #fff;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  right: 0;
  top: 0;
  width: 375px;
}

.menu__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 25px 20px 40px;
}

.menu__ttl {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.35em;
  line-height: 1;
}
.menu__ttl i {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.5em;
  margin-left: 0.5em;
}

.menu__close {
  font-size: 12px;
  align-items: center;
  -webkit-appearance: none;
      -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  color: #00B695;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  gap: 6px;
  height: auto;
  line-height: 1;
  transition: all 0.1s linear;
  width: auto;
}
.menu__close:hover {
  color: #FF7A00;
}
.menu__close:hover .menu__close-ico {
  fill: #FF7A00;
}

.menu__close-ico {
  fill: #00B695;
  height: 20px;
  transition: all 0.1s linear;
  width: 20px;
}

.menu__list {
  margin: 35px;
}
.menu__list li {
  line-height: 1;
  margin-bottom: 26px;
}

.menu__btn,
a.menu__btn {
  font-size: 16px;
  -webkit-appearance: none;
      -moz-appearance: none;
          appearance: none;
  background: #fff;
  border: 1px solid #00B695;
  border-radius: 6px;
  color: #00B695;
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  padding: 26px;
  text-align: center;
  transition: all 0.1s linear;
  width: 100%;
}
.menu__btn:hover,
a.menu__btn:hover {
  background: #FF7A00;
  border: 1px solid #FF7A00;
  color: #fff;
}

.menu__copyright {
  font-size: 14px;
  /* font-size: 14rem; */
  bottom: 30px;
  color: #9F9F9F;
  position: absolute;
  left: 0;
  line-height: 1;
  text-align: center;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .menu {
    width: 100vw;
  }
}

.dialog {
  border: 0;
  max-height: none;
  max-width: none;
  position: fixed;
  animation: fadeIn 0.1s ease-out;
  background: rgba(0, 151, 115, 0.7);
  height: 100vh;
  height: 100dvh;
  width: 100vw;
}

.dialog__wrapper {
  font-size: 14px;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  height: -moz-fit-content;
  height: fit-content;
  inset: 0;
  margin: auto;
  max-height: 80vh;
  overflow: auto;
  position: fixed;
  width: 520px;
}

.dialog__header {
  margin: 40px 20px 30px;
  text-align: center;
}

.dialog__ttl {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.35em;
  line-height: 1;
  margin-bottom: 30px;
}

.dialog__body {
  margin: 0 30px 30px;
}

.dialog__action {
  display: flex;
  gap: 17px;
  justify-content: center;
  margin-bottom: 30px;
}

.dialog__close.-pc {
  font-size: 14px;
  display: block;
  margin: 0 auto 30px;
}
.dialog__close.-mobile {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .dialog__wrapper {
    animation: slideIn 0.2s ease-out;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    position: fixed;
    right: 0;
    top: 0;
    width: 100vw;
  }
  .dialog__header {
    margin: 0;
  }
  .dialog__ttl {
    border-bottom: 1px solid #D9D9D9;
    margin: 28px 0 30px;
    padding-bottom: 15px;
  }
  .dialog__lead {
    margin: -10px 25px 20px;
  }
  .dialog__body {
    margin: 0 25px 30px;
  }
  .dialog__close.-pc {
    display: none;
  }
  .dialog__close.-mobile {
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
    background: transparent;
    border: 0;
    display: block;
    left: 18px;
    position: absolute;
    top: 28px;
  }
}
/*
* 
*
* フッター
* 
*/


.footer {
  padding: 40px 0 0;
  font-size: 13px;
}

.footer .inner {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 30px;
}

.foot_info p {
  font-size: 18px;
  font-weight: 700;
}

.foot_info ul {
  margin-top: 17px;
  line-height: 22px;
}

.foot_menu ul {
  display: flex;
  gap: 10px;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 75px;
  font-weight: bold;
}

.foot_menu ul li a:hover{
  text-decoration: none;
  color: #00b695;
}

.copyright{
  text-align: center;
  font-size: 10px;
  margin-bottom: 12px;
}


/* タブレットサイズの調整 */
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .footer .inner {
    width: 90%;
  }
}


@media screen and (min-width: 0px) and (max-width: 767px) {
  .footer {
    padding: 25px 0 66px;
    font-size: 14px;
  }

  .footer .inner {
    width: 90%;
    margin: auto;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
  }

  .foot_info p {
    font-size: 18px;
    font-weight: 700;
  }

  .foot_info ul {
    margin-top: 17px;
    line-height: 22px;
  }

  .foot_menu ul {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: bold;
    gap: 16px;
    justify-content: space-between;
    margin-top: 45px;
    align-items: flex-start;
  }

  .foot_menu ul li a:hover {
    text-decoration: none;
    color: #00b695;
  }

  .copyright {
    text-align: center;
    font-size: 12px;
    margin-bottom: 14px;
  }
}
/*# sourceMappingURL=../css-maps/common.css.map */
