/*
Theme Name: yosakoi-lpg-theme
Author: BLUE SEVEN
*/

@charset "utf-8";
/* CSS Document */

/*--------------------------------------------------------------
/* reset / base
---------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
:root {
  --fs-page-title: clamp( 2.5rem, calc( 1.8571428571428573rem + 1.7857142857142856vw ), 4rem );
  --fs-normal: clamp( 1.4rem, calc( 1.3142857142857142rem + 0.2380952380952381vw ), 1.6rem );
  --fc-base : #282828;
  --key-color: #897F00;
}
html{
  font-size: 62.5%;
}
body {
  color: var(--fc-base);
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'BIZ UDPGothic', Meiryo, sans-serif;
  font-size: var(--fs-normal);
  line-height: 1.7;
  font-weight: 400;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin:0;
}
p,
ol,
ul,
li,
dl,
dt,
dd,
th,
td,
figcaption{
  font-size: var(--fs-normal);
  margin: 0;
  padding: 0;
}
th{
  font-weight:700;
}
ol,
ul{
  list-style-type:none;
}
a{
  color: #008CFF;
  font-size: inherit;
  text-decoration: none;
  transition-duration: 0.4s;
}
img {
  max-width:100%;
  height:auto;
}
table {
  border-collapse: collapse;
}
figure{
  margin:0;
}

/*--------------------------------------------------------------
# base-layout
--------------------------------------------------------------*/
section {
  position: relative;
  z-index: 3;
}
.container{
  max-width: 105rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.column2_row_layout {
  @media (min-width: 768px) {
    display: flex;
    justify-content: space-between;
  }
  
  .img_wrap {
    margin-top: 2rem;
    @media (min-width: 768px) {
      width: 46%;
      margin-top: 0;
    }
  }
  .text_wrap {
    @media (min-width: 768px) {
      width: 46%;
    }
    .block_title {
      margin-bottom: 0.5em;
    }
  }
}
.column2_box_layout {
  @media (min-width: 768px) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .item {
    container-type: inline-size;
    @media (min-width: 768px) {
      display: flex;
      flex-direction: column;
      width: 46%;
    }
    .img_wrap {
      margin-bottom: 3rem;

      & img {
        width: 100%;
      }
    }
    .text {
      margin: 1em 0;
    }
    .btn_wrap {
      margin-top: 0;
    }
  }
}
.img_wrap img {
  width: 100%;
  vertical-align: top;
}
@media (min-width: 768px) {
  .reverse {
    flex-direction: row-reverse;
  }
}
/*--------------------------------------------------------------
# common parts
--------------------------------------------------------------*/
.section_title_en {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  &::before {
    display: block;
    content: attr(data-title);
    font-family: 'Poppins', sans-serif;
    font-size: clamp( 5rem, calc( 4.4193548387096776rem + 1.6129032258064515vw ), 7rem );
    font-style: italic;
    line-height: 1;
    text-transform: capitalize;
    margin-right: 0.1rem;
    @media (min-width:768px) {
      letter-spacing: 0.1em;
    }
  }
}
.section_title_bar {
  color: #FFF;
  font-size: clamp( 1.6rem, calc( 1.5142857142857142rem + 0.2380952380952381vw ), 1.8rem );
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 0.3em 0.5em;
  background: var(--key-color);
}
.link_btn{
  display: inline-flex;
  color: var(--fc-base);
  justify-content: center;
  align-items: center;
  min-width: 20.4rem;
  padding: 1em 2em;
  background: #FFF;
  border: 0.1rem solid var(--fc-base);
  overflow: hidden;
  position: relative;

  &::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--fc-base);
    transform: scaleX(0);
    transform-origin: right;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease;
    transition-property: transform;
  }
  &:hover {
    color: #FFF;
    &::before {
      transform: scaleX(1);
      transform-origin: left;
    }
  }
  & span {
    color: inherit;
    position: relative;
  }
}
.list li {
  display: flex;
  &::before {
    display: inline-block;
    content: "●";
    margin-right: 0.5em;
  }
  + li {
    margin-top: 0.5em;
  }
}

.dl_list .list_item {
  display: flex;
  gap: 0 1.5em;
  @media (min-width:768px) {
    gap: 0 4em;
  }
  > dt {
    flex-shrink: 0;
  }
  + .list_item {
    margin-top: 2em;
  }
}
.new_badge {
  display: inline-block;
  color: #fff;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  padding: .4em .4em .25em;
  background-color: #dc3545;
  border-radius: .25rem;
  margin-left: 1em;
}
.inline_block {
  display: inline-block;
}

/*--------------------------------------------------------------
# header
--------------------------------------------------------------*/
@media (min-width:768px) {
  header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
  }
}
header .inner {
  padding: 1rem;
  @media (min-width:768px) {
    padding: 2.9rem 2.9rem;
  }
}
header .logo{
  width: min(46%,28.4rem);
}
/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
footer .inner {
  max-width: 126rem;
  margin: 9rem auto 1.6rem;
  @media (min-width:768px) {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 20rem auto 5rem;
    gap: 0 7.5rem;
  }
}
footer .img_wrap {
  padding: 0 2rem;
  @media (min-width:768px) {
    width: 58%;
    padding: 0;
  }
}
footer address {
  font-style: normal;
  margin-top: 1rem;
  padding: 0 1.5rem;
  @media (min-width:768px) {
    margin-top: 0;
    flex-shrink: 0;
  }
  .name {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: -0.06em;
  }
}
.copyright {
  color: #FFF;
  font-size: 1.2rem;
  text-align: center;
  padding: 0.5em 0;
  background: #282828;
}