@charset "utf-8";

@import url(./global/_variable.css);
@import url(./layout/_reset.css);



/*

  letter-spacing: .02em;
  font-feature-settings: 'palt';

  font-family: "Noto Sans JP", sans-serif;
  font-family: "Shippori Mincho", serif;
  font-family: "Roboto", sans-serif;

============================================ */
html {
	font-size: 62.5%;
  scroll-behavior: smooth;
  /*scroll-padding-top: 50px; check the header hight!*/
}

body {
	color: var(--color_font_primary);
  font-family: var(--font_normal);
  font-size: 1.6rem;
  font-weight: 400;
	line-height: 1.6;
  min-height: 100vh;
  position: relative;
  @media (width < 896px) {
    font-size: 1.4rem;
  }
  &.is-fixed {
    height: 100%;
    overflow: hidden;
  }
}

a {
  color: currentColor;
  transition: all .3s ease-out;
  &:hover {
    @media(hover:hover) {
      opacity: .7;
    }
  }
}

img {
	max-width: 100%;
  height: auto;
}

.pconly {
  @media (width < 896px) {
    display: none;
  }
}
.sponly {
  display: none;
  @media (width < 896px) {
    display: block;
  }
}
.portraitonly {
  display: none;
  @media (width < 480px) {
    display: block;
  }
}
.portraitnone {
  @media (width < 480px) {
    display: none;
  }
}
.tabonly {
  display: none;
  @media (width < 1025px) {
    display: block;
  }
}
.tabnone {
  @media (width < 1025px) {
    display: none;
  }
}

.newline {
	display: inline-block;
}



/* pagetop
============================================ */
.pagetop_arrow {
  position: fixed;
  right: 70px;
  bottom: -100px;
  z-index: 99;
  transition: all 300ms 0s ease;
  opacity: 0;
  a {
    overflow: hidden;
    outline: none;
    display: block;
    background-color: rgba(0,0,0,0.4);
    padding: 5px;
    img {
      width: 60px;
      height: auto;
    }
  }
  @media (max-width:1025px) {
    right: 10px;
  }
  @media (max-width:896px) {
    a {
      img {
        width: 30px;
      }
    }
  }
}
.fade_in {
  .pagetop_arrow {
    opacity: 1;
    transition: all 300ms 0s ease;
    bottom: 100px;
  }
}



/* utilities
============================================ */

.w_basic {
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: auto;
  container-type: inline-size;
}

.w_protrude {
  max-width: 1320px;
  margin: auto;
  container-type: inline-size;
}

.pt20 {
  padding-top: 20px!important;
}

.pt17 {
  padding-top: 17px!important;
}

.pt3cqw {
  padding-top: 5cqw;
  @media (width < 896px) {
    padding-top: 30px;
  }
}



/* elemments
============================================ */

#wrapper {
  position: relative;
  overflow: hidden;
}

.pre_design {
  max-width: 1200px;
  margin: auto;
}

.area__about {
  display: grid;
  grid-template-columns: 8.3% 1fr;
  gap: 2.5cqw;
  padding-top: 3cqw;
  @media (width < 896px) {
    padding-top: 20px;
  }
  @media (width < 480px) {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.hd_about {
  font-size: clamp(3rem, 1.21cqw + 2.545rem, 4rem);
  font-family: "Shippori Mincho", serif;
  line-height: 1.4em;
  position: relative;
  word-break: keep-all;
  overflow-wrap: anywhere;
  span {
    position: relative;
  }
  &::before {
    content: "";
    display: block;
    width: 14cqw;
    height: 14cqw;
    background-size: cover;
    position: absolute;
    @media (width < 896px) {
      width: 160px;
      height: 160px;
    }
  }
}

.grad01 {
  &::before {
    background-image: url(../images/grad01.webp);
    top: -55px;
    left: 110px;
    @media (width < 896px) {
      top: -34px;
      left: 60px;
    }
  }
}

.grad02 {
  &::before {
    background-image: url(../images/grad02.webp);
    top: 20px;
    left: 80px;
    @media (width < 896px) {
      top: 0px;
      left: 40px;
    }
  }
}

.column_about {
  display: grid;
  grid-template-columns: 1fr 34%;
  gap: 20px;
  position: relative;
  @media (width < 480px) {
    grid-template-columns: 1fr;
  }
}

.sub_about {
  font-size: clamp(1.8rem, 0.73cqw + 1.527rem, 2.4rem);
  font-weight: 700;
  line-height: 1.4em;
  padding: 20px 0 0;
  position: relative;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.txt_about {
  font-size: clamp(1.5rem, 0.36vw + 1.364rem, 1.8rem);
  line-height: 2em;
  text-align: justify;
  position: relative;
}


.area_point {
  padding-top: 8vw;
  @media (width < 480px) {
    padding-top: 40px;
  }
}

.hd_point {
  max-width: 680px;
  width: calc(90% - 40px);
  margin: auto;
  @media (width < 480px) {
    width: calc(100% - 40px);
  }
}

.area_point_single {
  position: relative;
  img {
    position: relative;
  }
}

.btn_kagoya {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.5cqw;
  max-width: 600px;
  @media (width < 480px) {
    bottom: 20px;
    width: 280px;
  }
}

.area_point_column {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  padding-top: 10px;
  @media (width < 480px) {
    grid-template-columns: repeat(1,1fr);
    gap: 16px;
  }
}

.area_btn {
  padding: 4vw 0;
  max-width: 1000px;
  width: calc(90% - 40px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10%;
  @media (width < 480px) {
    grid-template-columns: repeat(1,1fr);
    gap: 10px;
    padding: 40px 0;
  }
}

.area_voice {
  background-color: var(--color_bg01);
  position: relative;
  padding: 6vw 0;
  line-height: 0px;
  @media (width < 480px) {
    padding: 30px 0 40px;
  }
  &::before {
    content: url(../images/tri_top.svg);
    width: 100%;
    height: auto;
    position: absolute;
    top: 0px;
    left: 0px;
  }
  &::after {
    content: url(../images/tri_bottom.svg);
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0px;
  }
}

.block_voice {
  padding-top: 4vw;
  line-height: 1.6em;
  container-type: inline-size;
}

.hd_voice {
  max-width: 910px;
  width: calc(90% - 40px);
  margin: auto;
  @media (width < 480px) {
    width: calc(100% - 40px);
  }
}

.column_wide,.column_single {
  position: relative;
}

.bg_frame {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.4));
  }
}

.inner_frame_wide {
  position: relative;
  display: grid;
  grid-template-columns: 26cqw 1fr;
  gap: 16px;
  padding: 30px;
  @media (width < 896px) {
    padding: 20px 16px 40px;
  }
  @media (width < 480px) {
    grid-template-columns: 1fr;
  }
}

.side_img_wide {
  @media (width < 480px) {
    overflow: hidden;
    aspect-ratio: 8 / 5;
    img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }
}

.hd_voice_txt {
  color: #1d2088;
  font-size: clamp(2rem, 1.82cqw + 1.318rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2em;
  padding: 10px 0;
  font-feature-settings: "halt";
  word-break: keep-all;
  overflow-wrap: anywhere;
  @media (width < 480px) {
    padding: 0 0 10px;
  }
}

.hd_voice_txt_g {
  color: #006934;
  font-size: clamp(2rem, 1.82cqw + 1.318rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2em;
  padding: 10px 0;
  font-feature-settings: "halt";
  word-break: keep-all;
  overflow-wrap: anywhere;
  @media (width < 480px) {
    padding: 0 0 10px;
  }
}

.spec_voice {
  border-top: #1d2088 solid 3px;
  position: relative;
  padding: 12px 0 0 60px;
  @media (width < 480px) {
    padding: 10px 0 0 50px;
  }
  &::after {
    content: url(../images/fukidashi_bl.svg);
    position: absolute;
    top: -3px;
    left: 0px;
    width: 64px;
    height: 24px;
  }
}

.name_voice {
  font-size: clamp(2rem, 1.82cqw + 1.318rem, 3.5rem);
  font-family: "Shippori Mincho", serif;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.profile_size {
  font-size: clamp(1.6rem, 0.36cqw + 1.464rem, 1.9rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.history_stay {
  background-color: #e4007f;
  color: #FFF;
  font-size: clamp(1.5rem, 0.48cqw + 1.318rem, 1.9rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  display: inline-block;
  padding: 8px 24px;
  line-height: 1.1em;
  border-radius: 50px;
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-align: center;
  @media (width < 480px) {
    padding: 8px 16px;
  }
}

.wide_spec {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  @media (width < 896px) {
    gap: 8px;
  }
}

.column_wide_detail {
  display: grid;
  grid-template-columns: 1fr 20cqw;
  gap: 16px;
  padding: 20px 0 0;
  @media (width < 896px) {
    grid-template-columns: 1fr;
    padding: 10px 0 0;
    gap: 10px;
  }
}

.side_txt_detail {
  text-align: justify;
}

.tape01,.tape02 {
  position: absolute;
  top: -36px;
  @media (width < 480px) {
    top: -20px;
  }
} 

.tape01 {
  left: -30px;
  @media (width < 480px) {
    width: 130px;
    left: -20px;
  }
}

.tape02 {
  right: -30px;
  @media (width < 480px) {
    width: 100px;
    right: -20px;
  }
}

.column_double {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 3cqw;
  padding-top: 3.2cqw;
  @media (width < 896px) {
    grid-template-columns: repeat(1,1fr);
    gap: 30px;
    padding-top: 30px;
  }
}

.inner_frame_single {
  position: relative;
  padding: 30px;
  @media (width < 896px) {
    padding: 30px 16px 40px;
  }
}

.column_inner_single {
  display: grid;
  grid-template-columns: 12cqw 1fr;
  gap: 16px;
  align-items: end;
  border-top: #1d2088 solid 3px;
  position: relative;
  &::after {
    content: url(../images/fukidashi_bl.svg);
    position: absolute;
    top: -3px;
    left: 80px;
    width: 64px;
    height: 24px;
  }
  @media (width < 896px) {
    grid-template-columns: 18cqw 1fr;
  }
  @media (width < 480px) {
    grid-template-columns: 1fr;
    gap: 0px;
    &::after {
      left: 60%;
    }
  }
}

.column_inner_single_g {
  border-top: #006934 solid 3px;
  position: relative;
  padding-top: 14px;
  &::after {
    content: url(../images/fukidashi_gr.svg);
    position: absolute;
    top: -3px;
    right: 0px;
    width: 64px;
    height: 24px;
  }
}
.clearfix:before,
.clearfix:after {
  content:"";
  display:table;
}
.clearfix:after {
  clear:both;
}

.side_img_single {
  text-align: center;
  @media (width < 480px) {
    margin-top: 20px;
    aspect-ratio: 16 / 9;
  }
  img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}

.side_img_single_g {
  width: 45%;
  float: right;
  margin-bottom: 5px;
  margin-left: 16px;
}

.side_txt_single {
  .name_voice {
    padding-top: 16px;
  }
  .history_stay {
    margin-top: 10px;
  }
}

.txt_single {
  padding-top: 16px;
  text-align: justify;
  @media (width < 896px) {
    padding-top: 10px;
  }
}

.list_thumbs {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  margin-top: 5cqw;
  margin-bottom: 7cqw;
  position: relative;
  @media (width < 480px) {
    grid-template-columns: repeat(2,1fr);
    margin-top: 30px;
  }
}

.photo {
  max-width: 260px;
  width: 46%;
  position: absolute;
  left: 67%;
  bottom: -14cqw;
  z-index: 20;
  @media (width < 896px) {
    bottom: -120px;
    left: 60%;
    max-width: 200px;
  }
  @media (width <480px) {
    bottom: -80px;
    left: 50%;
    max-width: 200px;
  }
}

.box_line {
  position: relative;
  z-index: 10;
}

.zigzag {
  position: relative;
}

.name_voice_g {
  font-size: clamp(1.8rem, 0.61vw + 1.573rem, 2.3rem);
  font-weight: 700;
}

.staff_div {
  font-size: 0.7em;
}

.history_stay_g {
  font-feature-settings: "halt";
}


/* footer */
footer {
  position: relative;
  font-size: 12px;
  background: #f0f0e6;
  padding: 20px 60px 60px;
  @media (width < 896px) {
    padding: 20px 20px;
  }
}
footer address {
  text-align: left;
  line-height: 1.8em;
}
footer address .logo {
  position: relative;
  height: 40px;
  margin-bottom: 1em;
}
footer address .logo img {
  display: block;
  position: absolute;
}
footer address .mark {
  width: auto;
  height: 40px;
  top: 0;
  left: 0;
}
footer address .type {
  width: auto;
  height: 24px;
  top: 8px;
  left: 57px;
}
footer .TA_cdsratingsonlynarrow {
  position: absolute;
  bottom: 60px;
  left: 360px;
}
.TA_cdsratingsonlynarrow > img { display: block; }


footer small {
  display: block;
  text-align: right;
  font-size: 12px;
  @media (width < 896px) {
    padding: 16px 0 0;
  }
}