@charset "UTF-8";
/* general 
-------------------------------------------- */
:root {
  --color-pink: #ec4187;
  --color-red: #fe0000;
  --color-blue: #00a5f6;
  --color-blue2: #005bab;
  --color-yellow: #fff20d;
  --color-yellow2: #fdd426;
  --color-iyo: #007260;
  --color-black: #000333;
  --gradation: linear-gradient(0deg, #fdd426 0, #ffe13f 50%, #fdd426 100%);
  --fs-small: 14px;
  --fs-medium: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  --fs-large: clamp(1.5rem, 1.364rem + 0.68vw, 1.875rem);
  --ff-gothic: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Meiryo UI", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --ff-yu-go: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Meiryo UI", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --ff-yu-go-l: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Meiryo UI", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --ff-rubik: "Rubik", sans-serif;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-yu-go);
  line-height: 1.75;
  color: var(--color-black);
}

h1,h2,h3,h4,h5,h6,p,a,li,figcaption,dt,dd,th,td,input,textarea,label {
  color: var(--color-black);
  color: inherit;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  font-family: var(--ff-gothic);
  font-feature-settings: "palt";
}
ol,ul {
  list-style: none;
}
img {
  max-width: 100%;
}
a img {
  transition: 0.3s;
}
a {transition: all .3s ease-in-out;}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}
:is(p, ul):last-child {
  margin-bottom: 0;
}

#wrap {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media screen and (min-width: 640px) {
  a[href^="tel"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 640px) {
  html {
    /* font-size: var(--fs-small); */
  }
}
/* parts
-------------------------------------------- */
.fs-small {
  font-size: var(--fs-small);
}
.fs-medium {
  font-size: var(--fs-medium);
}
.fs-large {
  font-size: var(--fs-large);
}
.fs-20 {
  font-size: clamp(1.125rem, 0.911rem + 0.95vw, 1.625rem);
}
.font-gothic {
  font-family: var(--ff-gothic);
}
.color-pink {color: var(--color-pink);}
.color-blue {color: var(--color-blue);}
.color-blue2 {color: var(--color-blue2);}
.color-red {color: var(--color-red);}
.color-iyo {color: var(--color-iyo);}
.color-wht {color: #fff !important;}
.link-txt {
  text-decoration: underline;
}
.link-blank {
  position: relative;
  color: var(--color-blue2);
}
.link-blank::after {
  content: '';
  background-color: var(--color-blue2);
  mask-image: url(../img/fujitora_blank.svg);
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
.link-arrow::before {
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22a%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.987%22%20height%3D%2212.681%22%20viewBox%3D%220%200%206.987%2012.681%22%3E%3Cpolyline%20points%3D%22.413%20.413%206.403%206.403%20.539%2012.268%22%20fill%3D%22none%22%20stroke%3D%22%231a378c%22%20stroke-linecap%3D%22round%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221%22%2F%3E%3C%2Fsvg%3E")
    no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  width: 7px;
  height: 1em;
  display: inline-block;
  margin-right: 7px;
  vertical-align: middle;
}
:where(ul, ol).fineindent {
  padding-left: 15px;
  & > li {
    text-indent: -1em;
  }
}
p.fineindent {
  margin-left: 1em;
  text-indent: -1em;
}
.bg-yellow {
  background-color: var(--color-yellow);
}
.bg-wht {
  background-color: #fff;
}
.bg-pink {
  background-color: var(--color-pink);
}
.bg-blue {
  background-color: var(--color-blue);
}
.bg-gradation {
  background: var(--gradation);
}
@media screen and (max-width: 375px) {
}
/* header
-------------------------------------------- */
header {
  background: #fff;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.header__iyogin {
  text-align: center;
  background: #fff;
}
.header.uk-sticky-fixed.uk-active {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-top: 1px solid #fff;
  top: -1px !important;
}
.header__logo {
  padding: 20px 10px 20px;
  width: 439px;
}
.header__nav {
  padding-right: 22px;
}
.header__nav .header__nav-inner {
  display: flex;
}
.header__nav .header__nav-inner > li {
  padding: 0 10px;
}
.header__container {
  position: relative;
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav-item {
  & a {
    font-size: var(--fs-small);
    position: relative;
    padding-right: 1.5em;
    &::after {
      content: "";
      width: 0;
      transition: all ease 0.3s;
      border-bottom: 1px solid var(--color-blue2);
      display: block;
      position: absolute;
      left: 0;
      bottom: 0;
    }
    &:hover::after {
      width: 100%;
    }
    &::before {
    content: "";
    background: url(../img/fujitora_arrow.svg) no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    display: inline-block;
    width: 1em;
    height: 1em;
    position: absolute;
    right: 0;
    top: calc(50% - 0.5em);
  }
  }
}
@media screen and (max-width: 960px) {
  .header__container {
    display: block;
  }
  .header__logo {
    padding: 10px;
    max-width: 100%;
    margin: auto;
  }
  .header__nav {
    display: block;
    overflow: scroll;
  }
  .header__nav .header__nav-inner {
    display: block;
    width: max-content;
    display: block;
    padding-bottom: 10px;
  }
  .header__nav .header__nav-inner > li {
    display: inline-block;
    width: auto;
  }
}
/* main
-------------------------------------------- */
main {
  display: block;
  background-color: var(--color-blue);
}
section {
  margin: 0;
  padding-block: 60px;
}
[class*="sec__inner"] {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.sec__inner-small {
  max-width: 980px;
}
.sec__inner-x-small {
  max-width: 725px;
}
.sec__inner-xx-small {
  max-width: 640px;
}
@media screen and (max-width: 960px) {
  section {
    padding: 60px 0;
  }
  [class*="sec__inner"] {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sec__inner,
  .sec__inner-small,
  .sec__inner-x-small {
    max-width: 100%;
  }
}
#kv__area {
  margin: 0 auto;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--color-blue);
  padding-top: 20px;
  padding-bottom: 30px;
  position: relative;
  @media screen and (min-width: 750px) {
    background-image: url(../img/fujitora_kv-bg.svg);
    background-size: cover;
    background-position: 50% 0;
  }
}
.bg-wave {
  background: url(../img/fujitora_bg-wave.svg) no-repeat;
  background-position: 50% 100%;
  background-size: cover;
  display: block;
  width: 101%;
  height: 7.5vw;
  position: relative;
  top: -1px;
}
@media screen and (max-width: 750px) {
  #kv__area {
    padding-bottom: 30px;
    background-image: url(../img/fujitora_kv-bg_sp.svg);
    background-size: cover;
  }
}
#kv__area .kv__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.kv__bottom .uk-background-default {
  border-radius: 10px;
  padding: 30px;
  max-width: 1110px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 750px) {
  .kv__bottom .uk-background-default::after {
    content: '';
    background: url(../img/fujitora_camera.svg) no-repeat;
    background-size: contain;
    width: 236px;
    height: 202px;
    position: absolute;
    right: -26px;
    bottom: 36px;
  }
}
@media screen and (max-width: 1109px) {
  .kv__bottom .uk-background-default {
    max-width: 90vw;
  }
}
.btn-blue, .btn-wht {
  text-align: center;
}
.btn-blue a, .btn-wht a {
  background-color: var(--color-blue2);
  color: #fff;
  padding: 10px calc(40px + 0.5em) 10px 40px;
  border-radius: 2em;
  text-align: center;
  display: inline-block;
  position: relative;
  font-weight: 700;
}
.btn-blue a::after, .btn-wht a::after {
  background-color: #fff;
  content: '';
  mask-image: url(../img/fujitora_blank.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
  right: 1em;
  top: calc(50% - 0.5em);
  position: absolute;
}
.btn-blue.__anchor a {
  width: min(98%, 480px);
}
.btn-blue.__anchor a::after {
  mask-image: url(../img/fujitora_arrow.svg);
}
.btn-wht a {
  background-color: #fff;
  color: var(--color-blue2);
  width: min(90%, 460px);
}
.btn-wht a::after {
  background-color: var(--color-blue2);
}
.sec__title-main {
  font-weight: clamp(1.25rem, 1.205rem + 0.23vw, 1.375rem);
  letter-spacing: 0.025em;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 640px) {
  .sec__title-main > span {
    font-size: 60%;
  }
}
@media screen and (max-width: 640px) {
  .sec__title-main {
    line-height: 1.5;
  }
}
.lead {
  font-size: 1.125rem;
  font-family: var(--ff-yu-go-l);
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
}

.join {
  /* padding-block: 0 80px; */
  background-color: var(--color-blue);
  background-image:
   url(../img/fujitora_bg-cloud-1.svg),
   url(../img/fujitora_bg-cloud-2.svg),
   url(../img/fujitora_bg-cloud-3.svg),
   url(../img/fujitora_bg-cloud-4.svg),
   url(../img/fujitora_plain.svg)  ;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: 120% 0, -2vw 50%, -10vw 130%, 113% 100%, calc(50vw - 540px) 5% ;
  background-size: auto, 110%, auto, auto, auto;
  padding-bottom: calc(60px  + 13.5vw);
}
@media screen and (min-width: 750px) and (max-width: 1090px) {
  .join {
    background-color: var(--color-blue);
  background-image:
   url(../img/fujitora_bg-cloud-1.svg),
   url(../img/fujitora_bg-cloud-2.svg),
   url(../img/fujitora_bg-cloud-3.svg),
   url(../img/fujitora_bg-cloud-4.svg),
   url(../img/fujitora_plain.svg)  ;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: 197% 0, -2vw 50%, -10vw 130%, 113% 100%, 70vw 1%;
  background-size: auto, 110%, auto, auto, auto;
  }
}
@media screen and (max-width: 750px) {
  .join {
  background-color: var(--color-blue);
  background-image:
   url(../img/fujitora_bg-cloud-2.svg),
   url(../img/fujitora_bg-cloud-2.svg),
   url(../img/fujitora_bg-cloud-3_sp.svg),
   url(../img/fujitora_bg-cloud-4.svg);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  /* background-position: 0 top, -2vw 50%, -10vw 130%, 113% 100%;
  background-size: auto, 110%, auto, auto; */
  background-position: -166vw 45px, 78vw 23%, -15vw 111%, 43vw 113%;
  background-size: 190%, 210%,88%, 78%;
  position: relative;
  }
  .join::before {
    content: '';
    background: url(../img/fujitora_plain.svg) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 100px;
    height: 60px;
    position: absolute;
    right: 10px;
    top: -15px;
    z-index: 1;
  }
}
.join h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
}
.join-card {
  background-color: #aeeaff;
  border: 2px dashed #fff;
  border-radius: 20px;
  padding: 30px 110px;
  text-align: left;
  font-weight: 700;
  font-size: clamp(1.05rem, 0.977rem + 0.36vw, 1.25rem);
}
.join-card + .join-card {
  margin-top: 40px;
}
.join-card:has(.nom) {
  display: flex;
  gap: 20px;
    align-items: center;
  padding: 30px;
}
.join-card .txt > * {
  margin: 0;
}
@media screen and (min-width: 640px) {
  .join-card .nom {
    width: auto;
  }
}
@media screen and (max-width: 640px) {
  .join-card {
    padding: 30px 10px 20px;
  }
  .join-card:has(.nom) {
    flex-direction: column;
    position: relative;
  }
  .join-card .nom {
    position: absolute;
    left: calc(50% - 20px);
    top: -20px;
    width: 40px;
    text-align: center;
  }
  .join-card p {
    text-align: center;
  }
}
.sec__cards {
  background-color: #fff;
  position: relative;
  margin-bottom: -13vw;
}
.bg-cloud-top, .bg-cloud-bottom {
  background: url(../img/fujitora_bg-cloud.svg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 13vw;
  margin-top: -13vw;
  position: relative;
  z-index: 1;
}
.bg-cloud-bottom {
  transform: scaleY(-1);
  margin-top: 13vw;
  /* margin-bottom: min(6vw, 60px); */
}
.sec__cards::after {
  top: unset;
  bottom: -12vw;
  transform: translateX(-50%) scaleY(-1);
}

@media screen and (min-width: 640px) {
}

@media screen and (max-width: 640px) {
}

.uk-accordion-title {
  border: 2px solid var(--color-blue2);
  color: var(--color-blue2);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 15px;
  &:hover {
    color: var(--color-blue);
  }
}
.uk-accordion-title::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Crect%20fill%3D%22%23003e9d%22%20width%3D%2213%22%20height%3D%222%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%20%3Crect%20fill%3D%22%23003e9d%22%20width%3D%222%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%3C%2Fsvg%3E");
}
.uk-open .uk-accordion-title::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Crect%20fill%3D%22%23003e9d%22%20width%3D%2213%22%20height%3D%222%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%3C%2Fsvg%3E");
}
.cards .uk-accordion-content h3 {
  font-size: 1.25rem;
  font-feature-settings: "palt";
  font-family: var(--ff-yu-go-l);
  font-weight: 700;
  color: var(--color-blue2);
  margin-bottom: 10px;
}
.cards .uk-accordion-content h3 ~ p {
  margin-block: 10px;
}
.cards .uk-accordion-content h3 ~ a {
  color: var(--color-blue2);
  font-feature-settings: "palt";
}
.cards .att-box {
  background-color: #fff;
  padding: 10px;
  border-radius: 3em;
  color: var(--color-red);
  font-size: 1.125rem;
  font-family: var(--ff-yu-go-l);
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 640px) {
  .cards.uk-accordion .uk-overflow-auto {
    max-width: 768px;
    max-width: 860px;
    margin-inline: auto;
  }
  .cards .uk-grid .uk-width-auto\@m {
    min-width: 19em;
  }
}
@media screen and (max-width: 640px) {
  .uk-overflow-auto {
    margin-right: -20px;
  }
  .cards.uk-accordion .uk-overflow-auto > * {
    min-width: 645px;
  }
  .summary.uk-accordion .uk-overflow-auto {
    padding-right: 20px;
  }
  .summary.uk-accordion .uk-overflow-auto > * {
    min-width: 750px;
  }
}
.summary table {
  padding: unset;
  overflow: hidden;
  min-width: 750px;
  border-collapse: collapse;
  border-spacing: 0;
}
.summary table tr:nth-last-child(n + 2) {
  border-bottom: 2px solid #9e9e9e;
}
.summary table tr > * {
  padding: 20px;
  background: #fff;
  & p {
    color: inherit;
  }
}
.summary table th {
  white-space: nowrap;
}
.summary table tr td :last-child {
  margin-bottom: 0;
}
.summary .att-area li:not([class]) {
  color: var(--color-blue2);
}
.sec__travel {}
.travel-card {
  padding-bottom: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.travel-card + .travel-card {
  margin-top: 30px;
}
.travel-card_item {
  margin: min(5vw, 20px);
  position: relative;
}
@media screen and (min-width: 640px) {
  .travel-card_item {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-around;
  }
}
@media screen and (max-width: 640px) {
  .travel-card_item > *:nth-child(n + 2) {
    margin-top: 20px;
  }
}
.travel-card_item .point {
  background-color: #ebf8fe;
  padding: 10px;
  background-image: url(../img/fujitora_sankaku.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  gap: 10px;
}
.travel-card_item .point .color-blue2 {
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
}
@media screen and (max-width: 640px) {
    .travel-card_item .tora {
    position: absolute;
    right: 30px;
    top: -50px;
    width: 90px;
    height: 85px;
  }
}
.travel-card_item .price .color-red {
  font-family:"Hiragino Sans","Hiragino Kaku Gothic ProN",sans-serif;
}
.travel-card_item .price .color-red span {
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  font-weight: 700;
  font-family: inherit;
}
#contact {
  padding:;
}
#contact h3 {
  font-size: clamp(1.125rem, 0.943rem + 0.91vw, 1.625rem);
  font-family: var(--ff-yu-go-l);
  font-weight: 700;
}
#contact h3 + * {
  margin: 20px auto;
  font-size: 1.25rem;
  color: var(--color-iyo);
  font-weight: 700;
}
#totop {
  transition: ease 0.3s all;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
#totop a {
  background: url(../img/fujitora_totop.svg) no-repeat;
  background-size: contain;
  display: block;
  width: 63px;
  height: 111px;
  z-index: 100;
  &:hover {
    opacity: 1;
  }
}

.footer {
  padding: 60px 0;
}
.footer .contact {
  position: relative;
}
/*.footer .contact::before {
   content: "";
  display: block;
  width: 100%;
  height: 0;
 border-top: 1px solid var(--color-iyo);
  position: absolute;
  left: 0;
  top: -60px;
}*/
.footer .contact .color-iyo {
  font-size: clamp(0.875rem, 0.714rem + 0.71vw, 1rem);
}
.footer__copyright {
  font-size: 0.85rem;
}
