@charset "UTF-8";
/*------------------------------------------------------------------------
 reset
-------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
  color: inherit;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
}

a, address, article, b, body, button, dd, div, dl, dt, form,
h1, h2, h3, h4, h5, input, li, ol, p, pre, section, 
select, small, span, strong, table, td, textarea, th, tr, ul, figure {
  font-style: inherit;
  text-decoration: inherit;
  margin: 0;
  padding: 0;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

li, ol, ul {
  list-style: none;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

img, video {
  display: block;
  height: auto;
  border: none;
}

img {
  pointer-events: none;
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:active, a:link, a:visited {
  text-decoration: inherit;
}

input, select, textarea {
  display: block;
  -webkit-appearance: none;
  background: none;
  border: none;
  border-radius: 0;
}

button {
  display: inline-block;
}

button, label {
  background: none;
  border: none;
}

label {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button, input[type=button], input[type=file], input[type=reset], input[type=submit], label {
  cursor: pointer;
}

textarea {
  max-width: 100%;
  min-width: 100%;
  width: 100%;
  resize: vertical;
}

:focus {
  outline: none;
}

/*------------------------------------------------------------------------
 default
-------------------------------------------------------------------------*/
:root {
  --bg-color: #EFEEEA;
  --bg-color2: #EEEAE4;
  --border-color: #D6D5D5;
  --color-black: #222;
  --color-red: #BA0000;
  --main-color: #8C691E;
  --sub-color: #C4B89F;
  --second-color: #2F2B50;
  --alert-color: #DD0000;
  --font-serif: "Noto Serif JP", serif;
  --font-num: "Roboto", sans-serif;
  --font-garamond: "EB Garamond", serif;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  -ms-overflow-style: scrollbar;
}

body {
  background-color: var(--bg-color);
  color: var(--color-black);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: break-word;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
@media screen and (min-width: 860px) {
  body{
    font-size: 16px;
  }
}

input::-webkit-input-placeholder {
  color: rgba(102, 72, 14, .3)
}

input:-ms-input-placeholder {
  color: rgba(102, 72, 14, .3)
}

input::-moz-placeholder {
  color: rgba(102, 72, 14, .3)
}

textarea::-webkit-input-placeholder {
  color: rgba(102, 72, 14, .3)
}

textarea:-ms-input-placeholder {
  color: rgba(102, 72, 14, .3)
}

textarea::-moz-placeholder {
  color: rgba(102, 72, 14, .3)
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}

input[type=number] {
  -moz-appearance: textfield;
}

::-moz-selection {
  background: #e9e2d4
}

::selection {
  background: #e9e2d4
}

main {
  display: block
}

img {
  max-width: 100%;
  vertical-align: bottom
}

a {
  display: block;
  opacity: 1;
  cursor: pointer
}

a, a:hover {
  transition: .15s linear
}

a:hover {
  opacity: .5
}

a.no-link {
  cursor: default
}

a.no-link:hover {
  opacity: 1
}

button{
  font-family: "Noto Sans JP", sans-serif;
}

.button:hover {
  opacity: .5;
  transition: .15s
}

@media screen and (max-width:860px) {
  .sp-none {
    display: none!important;
  }
}

@media screen and (min-width:860px) {
  .pc-none {
    display: none!important;
  }
}

/*------------------------------------------------------------------------
 layout
-------------------------------------------------------------------------*/
.l-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.l-inner{
  padding-inline: 18px;
}
@media screen and (min-width: 860px) {
  .l-inner{
    margin: auto;
    padding-inline: 40px;
    max-width: 1180px;
  }
}

.l-section{
  padding-block: 30px;
}
@media screen and (min-width: 860px) {
  .l-section{
    padding-block: 100px;
  }
}

@media screen and (min-width: 860px) {
  .l-section-medium{
    padding-block: 50px;
  }
}

.l-page{
  min-width: 0;
  margin-top: 84px;
}
@media screen and (min-width: 860px) {
  .l-page{
    margin-top: 77px;
  }
}

/*------------------------------------------------------------------------
 header
-------------------------------------------------------------------------*/
.l-header {
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0px 1px 5px 0px #00000017;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  width: auto;
  padding: 5px 10px 5px 15px;
  position: fixed;
  top: 12px;
  left: 15px;
  right: 15px;
  z-index: 99;
  .logo{
    width: 86px;
  }
  .nav-sub {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }
  .nav-btns{
    border-right: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    margin-right: 13px;
    padding-right: 13px;
    position: relative;
    .c-btn{
      font-size: 12px;
      letter-spacing: 0.09em;
      height: 30px;
      margin: 0;
      padding-inline: 12px;
      width: auto;
      white-space: nowrap;
    }
  }
  .toggle-btn {
    background-color: var(--main-color);
    border-radius: 50%;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    position: relative;
    &::before,
    &::after{
      content: "";
      background-color: #fff;
      display: block;
      transition: all 0.3s;
      margin: auto;
      height: 2px;
      width: 17px;
      position: absolute;
      left: 0;
      right: 0;
    }
    &::before{
      top: 14px;
    }
    &::after{
      bottom: 14px;
    }
  }
  &.open{
    .toggle-btn {
      z-index: 11;
      &::before{
        transform: rotate(45deg);
        top: 48%;
      }
      &::after{
        transform: rotate(-45deg);
        bottom: 48%;
      }
    }
    .c-overlay {
      display: block;
      z-index: 1;
    }
    .nav-main {
      display: block;
    }
  }
}
@media screen and (min-width: 1200px) {
  .l-header {
    border-radius: 0;
    height: 77px;
    padding: 10px 20px;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    .nav-sub{
      width: auto;
    }
    .nav-btns{
      border-left: 1px solid var(--border-color);
      border-right: none;
      gap: 6px;
      margin-inline: 25px 0;
      padding-inline: 25px 0;
      .c-btn{
        background-repeat: no-repeat;
        background-position: center left 20px;
        font-size: 14px;
        font-weight: 900;
        letter-spacing: 0.12em;
        height: 40px;
        padding-inline: 45px 30px;
        &.register{
          background-image: url(../images/common/icon-person-add.svg);
        }
        &.login{
          background-image: url(../images/common/icon-lock-open.svg);
        }
        &.logout-link{
          padding-inline: 30px;
        }
      }
    }
    .nav-btn-pc{
      display: flex;
    }
    .toggle-btn {
      display: none;
    }
  }
}
@media screen and (min-width: 1330px) {
  .l-header {
    .logo{
      width: 118px;
    }
  }
}

.nav-main {
  display: none;
  background-color: #fff;
  width: 88%;
  height: calc(100vh - 100px);
  position: fixed;
  left: 5%;
  top: 50px;
  z-index: 10;
  .content{
    padding: 32px 16px;
    height: 100%;
    overflow-y: scroll;
  }
  .list{
    border-bottom: 1px solid var(--border-color);
  }
  .item{
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: bold;
    position: relative;
    &:not(.drop)::after{
      content: "";
      border-top: 2px solid var(--main-color);
      border-right: 2px solid var(--main-color);
      transform: translate(-50%, -50%) rotate(45deg);
      height: 9px;
      width: 9px;
      position: absolute;
      top: 50%;
      right: 10px;
    }
    a,
    .trigger{
      padding: 16px 32px 16px 0;
      position: relative;
    }
  }
  .trigger{
    cursor: pointer;
    &.open{
      .icon::after{
        transform: rotate(180deg);
      }
    }
  }
  .icon{
    background-color: var(--main-color);
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    height: 15px;
    width: 15px;
    position: absolute;
    top: 50%;
    left: auto;
    right: 10px;
    &::before,
    &::after{
      content: "";
      background-color: #fff;
      display: block;
      margin: auto;
      transition: all 0.3s;
      height: 1px;
      width: 8px;
      position: absolute;
      inset: 0;
    }
    &::after{
      transform: rotate(90deg);
    }
  }
  .lists-child{
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    margin-left: 16px;
    &.open{
      max-height: 100%;
    }
  }
  .c-btn-list{
    justify-content: center;
    margin-top: 20px;
    .c-btn{
      font-size: 14px;
    }
  }
}
@media screen and (min-width: 1200px) {
  .nav-main{
    background-color: transparent;
    display: block;
    margin-left: auto;
    height: auto;
    width: auto;
    position: static;
    .content{
      padding: 0;
      height: auto;
      overflow: visible;
    }
    .list{
      border: none;
      display: flex;
      gap: 15px;
      align-items: center;
    }
    .item{
      border: none;
      &:not(.drop)::after{
        display: none;
      }
      a{
        padding: 0;
      }
    }
    .lists-child{
      background-color: #fff;
      margin: 0;
      white-space: nowrap;
      position: absolute;
      left: 0;
      .item{
        padding: 8px;
      }
      &.open{
        max-height: 250px;
      }
    }
    .c-btn-list{
      display: none;
    }
  }
}
@media screen and (min-width: 1330px) {
  .nav-main{
    .list{
      gap: 30px;
    }
  }
}

/*------------------------------------------------------------------------
 footer
-------------------------------------------------------------------------*/
.l-footer {
  background-color: var(--second-color);
  color: #fff;
  padding-top: 30px;
  position: relative;
  .logo{
    margin: 0 auto 10px;
    width: 46px;
  }
  .profile{
    font-size: 10px;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  .links{
    border-top: 1px solid var(--main-color);
    font-size: 10px;
    line-height: 2;
    padding-block: 20px;
  }
  .list{
    display: flex;
    &::before{
      content: "・";
    }
  }
  .flex{
    display: flex;
    flex-wrap: wrap;
    gap: 0 1em;
  }
  .title{
    font-size: 12px;
    font-weight: bold;
  }
  .row{
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
  }
  .column{
    width: 100%;
  }
  .sub{
    padding-bottom: 25px;
  }
  .sns{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding-block: 20px 15px;
  }
  .x-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
  }
  .copyright{
    color: #8C8C8C;
    font-size: 10px;
    text-align: center;
    padding-bottom: 15px;
  }
}

@media screen and (min-width: 860px) {
  .l-footer {
    padding-top: 40px;
    .logo{
      margin-bottom: 30px;
      width: 100px;
    }
    .profile{
      font-size: 12px;
    }
    .links{
      display: flex;
      gap: 10px;
      justify-content: center;
      padding-block: 30px;
    }
    .main{
      display: flex;
      justify-content: space-around;
      font-size: 14px;
      padding-block: 40px;
    }
    .title{
      font-size: 16px;
    }
    .flex{
      flex-direction: column;
    }
    .row{
      justify-content: space-around;
      margin: 0;
      width: 70%;
    }
    .column{
      width: auto;
    }
    .sub{
      padding-bottom: 50px;
      .list{
        &::before{
          content: "|";
          padding-right: 10px;
        }
        &:first-child::before{
          display: none;
        }
      }
    }
    .x-icon{
      height: 35px;
      width: 35px;
    }
    .line-icon{
      width: 35px;
      img{
        width: 100%;
      }
    }
    .copyright{
      font-size: 12px;
      padding-bottom: 20px;
    }
  }
}

/*------------------------------------------------------------------------
 component
-------------------------------------------------------------------------*/
/* page */
.c-page-header{
  background-image:  linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), var(--bg-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 100px 56px;
  margin-top: -84px;
}
@media screen and (min-width: 860px) {
  .c-page-header{
    padding-block: 100px;
    margin-top: -77px;
  }
}
@media screen and (min-width: 1100px) {
  .c-page-header{
    margin-top: 0;
  }
}

/* title */
.c-page-title{
  color: #fff;
  font-size: 20px;
  font-family: var(--font-serif);
  text-align: center;
}
@media screen and (min-width: 860px) {
  .c-page-title{
    font-size: 40px;
    letter-spacing: 0.16em;
  }
}
.c-section-title{
  color: var(--main-color);
  font-size: 24px;
  font-family: var(--font-serif);
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (min-width: 860px) {
  .c-section-title{
    font-size: 40px;
    margin-bottom: 40px;
  }
}
.c-title,
.c-medium-title{
  color: var(--main-color);
  font-size: 20px;
  font-family: var(--font-serif);
}
@media screen and (min-width: 860px) {
  .c-title,
  .c-medium-title{
    font-size: 30px;
  }
}
.c-title{
  margin-bottom: 30px;
}
.c-medium-title{
  margin-bottom: 16px;
}
.c-card-title{
  color: var(--main-color);
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
@media screen and (min-width: 860px) {
  .c-card-title{
    font-size: 24px;
  }
}
.c-sub-title{
  font-size: 17px;
  font-weight: bold;
}
@media screen and (min-width: 860px) {
  .c-sub-title{
    font-size: 20px;
  }
}
.c-band-title{
  background-color: var(--main-color);
  border-radius: 5px;
  color: #fff;
  font-size: 17px;
  line-height: 1;
  padding: 12px;
  margin-bottom: 20px;
}
@media screen and (min-width: 860px) {
  .c-band-title{
    font-size: 20px;
    padding: 20px;
  }
}
.c-title-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  .c-section-title,
  .c-link-box{
    margin: 0;
  }
}
@media screen and (min-width: 860px) {
  .c-title-row{
    margin-bottom: 40px;
  }
}

/* text */
.c-lead-text{
  line-height: 2;
  letter-spacing: 0.04em;
  &:not(:last-child){
    margin-bottom: 20px;
  }
}
.c-note{
  font-size: 10px;
  font-weight: 400;
}
@media screen and (min-width: 860px) {
  .c-note{
    font-size: 12px;
  }
}
.c-note-list{
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
.c-caption{
  font-weight: bold;
  text-align: center;
  margin-block: 10px;
}

/* btn */
.c-btn{
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.03em;
  height: 50px;
  max-width: 350px;
  margin: auto;
  padding-inline: 30px;
  width: 100%;
}
.c-btn-sub{
  background-color: #fff;
  color: var(--main-color);
  height: 50px;
}
.c-btn-ui2{
  background-color: var(--second-color);
  border-color: var(--second-color);
}
.c-btn-list{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 860px) {
  .c-btn-list{
    flex-direction: row;
    .c-btn{
      margin: 0;
      width: 350px;
    }
  }
}

/* link */
.c-link-box{
  margin-top: 20px;
}
@media screen and (max-width:860px) {
  .c-link-box{
    text-align: right;
  }
}
.c-arrow-link{
  color: var(--main-color);
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.09em;
  &::after{
    content: "";
    background-color: #fff;
    background-image: url(../images/common/icon-arrow.svg);
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    box-shadow: 0px 1px 4px 0px #00000040;
    height: 34px;
    width: 34px;
  }
}
@media screen and (min-width: 860px) {
  .c-arrow-link{
    font-size: 18px;
  }
}
.c-text-link{
  color: var(--main-color);
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-decoration: underline !important;
  padding-right: 20px;
  position: relative;
  &::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
  }
}
@media screen and (min-width: 860px) {
  .c-text-link{
    font-size: 16px;
  }
}

/* card */
.c-card{
  background-color: #fff;
  border-radius: 5px;
}
.c-card-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
  .c-card{
    padding: 20px 14px;
  }
}
@media screen and (min-width: 860px) {
  .c-card-list{
    gap: 20px;
    .c-card{
      padding: 30px;
    }
    + .c-link-box{
      text-align: right;
    }
  }
}

/* label */
.c-label{
  background-color: var(--second-color);
  border: 1px solid var(--second-color);
  border-radius: 3px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  padding-inline: 10px;
  height: 20px;
  min-width: 66px;
  &.recruiting{
    background-color: var(--main-color);
    border-color: var(--main-color);
  }
  &.end{
    background-color: #A3A3A38C;
    border: none;
  }
  &.in-operation{
    background-color: #fff;
    border-color: var(--main-color);
    color: var(--main-color);
  }
  &.comp{
    background-color: #fff;
    color: var(--second-color);
  }
  &.redeemed{
    background-color: #fff;
    border-color:#A3A3A3;
    color: #A3A3A3CC;
  }
}
@media screen and (min-width: 860px) {
  .c-label{
    font-size: 14px;
  }
}
.c-label-new{
  background-color: var(--color-red);
  border-color: var(--color-red);
  font-size: 12px;
  font-family: var(--font-num);
  letter-spacing: 0.04em;
}
@media screen and (min-width: 860px) {
  .c-label-new{
    font-size: 14px;
  }
}

/* breadcrumb */
.c-breadcrumb{
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: 0.04em;
  padding-block: 5px;
  a{
    color: var(--main-color);
    display: inline;
  }
  + .l-section{
    padding-top: 30px;
  }
  + .c-bnr{
    margin-top: 25px;
  }
}
@media screen and (min-width: 860px) {
  .c-breadcrumb{
    font-size: 12px;
    padding-block: 18px;
  }
}
.c-breadcrumb-item{
  &:not(:last-child){
    &::after{
      content: "/";
      display: inline;
      margin-inline: 5px;
    }
  }
}

/* tab */
.c-tab {
  display: flex;
  flex-wrap: wrap;
  gap: 0 6px;
}
@media screen and (min-width: 860px) {
  .c-tab {
    gap: 0 10px;
  }
}
.c-tab-label {
  border-radius: 5px 5px 0 0;
  background-color: var(--sub-color);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  flex: 1 1;
  order: -1;
  padding: 12px;
  &:hover{
    opacity: 0.8;
  }
  &:has(:checked){
    background-color: #fff;
    box-shadow: 0px -3px 4px 0px #0000000D;
    color: var(--main-color);
    + .c-tab-content {
      display: block;
    }
  }
  &.is-selected{
    background-color: #fff;
    box-shadow: 0px -3px 4px 0px #0000000D;
    color: var(--main-color);
  }
}
@media screen and (min-width: 860px) {
  .c-tab-label {
    font-size: 20px;
    padding: 24px;
  }
}
.c-tab-content {
  display: none;
  position: relative;
  &::after{
    content: "";
    background-color: #fff;
    display: block;
    margin-inline: -50vw;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    z-index: -1;
  }
}
.c-tab-scroll{
  overflow-x: scroll;
  margin-inline: -18px;
  width: 100vw;
  position: relative;
  + .c-tab-content{
    display: block;
  }
  &::after{
    background-color: #FFFFFFCC;
    background-image: url(../images/common/icon-double-arrow-left.svg);
    background-repeat: no-repeat;
    background-position: center center;
    box-shadow: 0px 1px 6px 0px #00000024;
    border-radius: 50%;
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    margin: auto;
    height: 27px;
    width: 27px;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
  }
  &.is-scrollable::after {
    animation: scroll 1s infinite;
  }
  &.is-scrolled::after {
    animation: none;
    opacity: 0;
  }
}
@media screen and (min-width: 860px) {
  .c-tab-scroll{
    margin: 0;
    width: 100%;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(10px);
  }
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.c-tab-list{
  flex-wrap: nowrap;
  .c-tab-label {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    white-space: nowrap;
  }
}
@media screen and (min-width: 860px) {
  .c-tab-list{
    .c-tab-label {
      font-size: 16px;
      padding: 16px;
    }
  }
}

/* modal */
.c-modal-link{
  .c-arrow-link{
    color: var(--color-black);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin-top: 8px;
  }
}
@media screen and (min-width: 860px) {
  .c-modal-link{
    .c-arrow-link{
      font-size: 18px;
    }
  }
}
.c-modal{
  background-color: #fff;
  border-radius: 2px;
  display: none;
  transform: translate(-50%, -50%);
  margin: auto;
  max-width: 350px;
  width: 90vw;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100;
  &.active{
    display: block;
  }
  .c-sub-title{
    letter-spacing: 0.04em;
    margin-block: 10px 20px;
  }
}
@media screen and (min-width: 860px) {
  .c-modal{
    max-width: 820px;
    .c-sub-title{
      margin-top: 0;
    }
  }
}
.c-modal-content{
  padding: 20px;
  max-height: 90vh;
  height: 100%;
  overflow-y: scroll;
}
@media screen and (min-width: 860px) {
  .c-modal-content{
    display: flex;
    gap: 20px;
  }
  .c-modal-text{
    width: 70%;
  }
}
.c-modal-close{
  background-color: var(--main-color);
  border-radius: 50%;
  display: block;
  transform: translate(50%, -50%);
  height: 47px;
  width: 47px;
  position: absolute;
  top: 0;
  right: 10px;
  &::before,
  &::after{
    content: "";
    background-color: #fff;
    display: block;
    margin: auto;
    transform: rotate(45deg);
    height: 1px;
    width: 16px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
  }
  &::after{
    transform: rotate(-45deg);
  }
}
.c-overlay{
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  &.active{
    display: block;
  }
}

/* grid */
@media screen and (min-width: 860px) {
  .c-grid{
    display: grid;
    gap: 0 30px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: min-content 1fr;
  }
  .c-grid-left{
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  .c-grid-right{
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }
}

/* bnr */
.c-bnr{
  img{
    margin: auto;
    width: 100%;
  }
}
@media screen and (min-width: 860px) {
  .c-bnr{
    img{
      width: 50%;
    }
  }
}

/*------------------------------------------------------------------------
 project - index
-------------------------------------------------------------------------*/
.p-index{
  .l-section:not(.u-bg-white){
    + .l-section:not(.u-bg-white){
      padding-top: 0;
    }
  }
}
/* fv */
@media screen and (min-width: 960px) {
  .p-fv{
    background-image: url(../images/index/bg-pc.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    margin: auto;
    max-width: 1700px;
    position: relative;
    &::before{
      content: "";
      background: linear-gradient(276deg, rgb(240 254 255) 12% 0%, rgb(76 146 188) 80%);
      display: block;
      margin: 0 calc(50% - 50vw);
      width: 100vw;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      z-index: -1;
    }
  }
}
/* kv */
.p-kv{
  aspect-ratio: 5 / 7;
  background-image: url(../images/index/bg-sp.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left 10px top;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
}
@media screen and (min-width: 500px) {
  .p-kv{
    aspect-ratio: auto;
    background-size: auto 100%;
    background-position: right top;
    height: 600px;
  }
}
@media screen and (min-width: 960px) {
  .p-kv{
    aspect-ratio: auto;
    background-image: none;
    height: auto;
    padding-block: 180px 30px;
  }
}
.p-kv-content{
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-kv-content{
    margin: auto;
  }
}
.p-kv-title{
  margin-bottom: 20px;
  max-width: 250px;
}
@media screen and (min-width: 500px) {
  .p-kv-title{
    max-width: 70%;
  }
}
@media screen and (min-width: 960px) {
  .p-kv-title{
    margin-bottom: 15px;
    max-width: 100%;
  }
}
.p-kv-text{
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.09em;
  margin-bottom: 20px;
}
@media screen and (min-width: 500px) {
  .p-kv-text{
    font-size: 20px;
  }
}
@media screen and (min-width: 960px) {
  .p-kv-text{
    font-size: 26px;
  }
}

/* strength */
.p-strength{
  background: linear-gradient(236.28deg, rgba(167, 206, 223, 0.9) 0%, rgba(24, 109, 189, 0.9) 100%);
  color: #fff;
  padding-block: 20px 50px;
}
@media screen and (min-width: 960px) {
  .p-strength{
    background: none;
    color: var(--color-black);
    padding-block: 0 70px;
  }
}
.p-strength-row{
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-strength-row{
    gap: 26px;
  }
}
.p-strength-box{
  background-color: rgba(255,255,255,0.9);
  border-radius: 6px;
  padding: 12px;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-strength-box{
    flex-shrink: 0;
    padding: 20px;
    width: 46%;
  }
  .p-strength-main{
    display: flex;
    gap: 20px;
    position: relative;
    width: 100%;
  }
}
.p-strength-yield{
  color: var(--second-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 14px;
  .big{
    display: block;
    font-size: 21px;
    font-weight: 500;
    line-height: 1;
  }
}
@media screen and (min-width: 960px) {
  .p-strength-yield{
    flex-shrink: 0;
    font-size: 18px;
    text-align: left;
    padding-block: 5px 30px;
    .big{
      font-size: 28px;
    }
  }
}
.p-strength-rank{
  background: var(--main-color);
  border-radius: 4px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-family: var(--font-serif);
  font-weight: 700;
  text-align: center;
  line-height: 1;
  padding: 15px;
  margin-bottom: 8px;
  .num{
    display: block;
    font-size: 43px;
    font-family: var(--font-garamond);
    font-weight: 500;
  }
}
@media screen and (min-width: 960px) {
  .p-strength-rank{
    font-size: 28px;
    margin: 0;
    padding: 20px;
    width: 100%;
    .c-note{
      font-size: 18px;
      margin-right: 5px;
    }
    .num{
      display: inline-block;
      font-size: 60px;
    }
  }
}
.p-strength-note{
  color: var(--color-black);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 960px) {
  .p-strength-note{
    position: absolute;
    left: 0;
    bottom: 10px;
  }
}
.p-strength-col{
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-strength-col{
    display: flex;
    gap: 26px;
    width: 100%;
  }
}
.p-strength-item{
  background-color: rgba(255,255,255,0.9);
  border-radius: 6px;
  color: var(--main-color);
  text-align: center;
  padding: 13px 8px;
  height: calc((100% - 15px) / 2);
  width: 100%;
  &:not(:last-child){
    margin-bottom: 15px;
  }
  .title{
    border-bottom: 1px solid var(--main-color);
    color: var(--second-color);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    padding-bottom: 6px;
  }
  .text{
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 1;
  }
  .num{
    font-size: 35px;
    font-family: var(--font-garamond);
    letter-spacing: 0.04em;
  }
  .unit{
    font-size: 13px;
    font-family: var(--font-serif);
  }
}
@media screen and (min-width: 960px) {
  .p-strength-item{
    height: auto;
    width: 100%;
    &:not(:last-child){
      margin-bottom: 0;
    }
    .title{
      font-size: 28px;
    }
    .text{
      font-size: 18px;
    }
    .num{
      font-size: 60px;
    }
    .unit{
      font-size: 18px;
    }
    .c-note{
      font-size: 16px;
    }
  }
}
.p-strength-text{
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 5px;
}

/* layout */
@media screen and (min-width: 860px) {
  .p-pc-layout{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    .p-pc-order{
      order: 2;
    }
    .c-link-box{
      margin-block: 0 40px;
    }
  }
}

/* achievement */
.p-achievement-content{
  background-color: #fff;
  border-radius: 2px;
  padding: 5px 10px 10px;
}
@media screen and (min-width: 860px) {
  .p-achievement-content{
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px;
    width: 100%;
  }
}
.p-achievement-list{
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  padding-block: 10px;
  width: 100%;
  &:last-of-type{
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 860px) {
  .p-achievement-list{
    background-color: #fff;
    border-radius: 2px;
    border-right: 1px solid var(--border-color);
    border-bottom: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100% / 3);
    &:last-of-type{
      border: none;
      margin: 0;
    }
  }
}
.p-achievement-item{
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 2;
  &:last-of-type{
    border-bottom: none;
  }
}
.p-achievement-title{
  letter-spacing: 0.04em;
}
@media screen and (min-width: 860px) {
  .p-achievement-title{
    font-size: 20px;
    text-align: center;
    span{
      font-size: 18px;
    }
  }
}
.p-achievement-amount{
  color: var(--main-color);
  font-family: var(--font-garamond);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: right;
}
@media screen and (min-width: 860px) {
  .p-achievement-amount{
    align-items: flex-end;
    font-size: 40px;
    line-height: 1;
    span{
      font-size: 20px;
      margin-bottom: 4px;
    }
  }
}
.p-achievement-note{
  text-align: right;
}
@media screen and (min-width: 860px) {
  .p-achievement-note{
    margin-top: 10px;
    width: 100%;
  }
}

/* reason */
.p-feature-list{
  display: flex;
  gap: 5px;
  flex-direction: column;
}
@media screen and (min-width: 860px) {
  .p-feature-list{
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.p-feature-item{
  background-color: #fff;
  border-radius: 4px;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 10px 16px;
}
@media screen and (min-width: 860px) {
  .p-feature-item{
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px;
    width: calc((100% - 40px) / 3);
  }
}
.p-feature-icon{
  flex-shrink: 0;
  width: 63px;
  img{
    margin: auto;
  }
}
.p-feature-point{
  color: var(--sub-color);
  display: block;
  font-family: var(--font-num);
}
.p-feature-title{
  line-height: 1.5;
}
.p-feature-note{
  font-size: 12px;
}

/* sample */
.p-sample-box{
  padding: 16px 20px;
}
@media screen and (min-width: 860px) {
  .p-sample-box{
    padding: 30px;
  }
}
.p-sample-image{
  background-color: #fff;
  border-radius: 5px;
  padding: 14px 40px 24px;
  margin-bottom: 8px;
}
@media screen and (min-width: 860px) {
  .p-sample-image{
    margin: 0;
  }
}

/* fund */
.p-fund-list{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  &:not(:last-child){
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 860px) {
  .p-fund-list{
    gap: 20px;
    &:not(:last-child){
      margin-bottom: 70px;
    }
  }
}
.p-fund-card{
  width: 100%;
}
@media screen and (min-width: 860px) {
  .p-fund-card{
    width: calc((100% - 20px) / 2);
  }
}
.p-fund-teaser{
  padding: 20px 12px 15px;
}
.p-fund-link{
  display: block;
  padding: 20px 12px 15px;
  position: relative;
  &:not(:last-child){
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .p-fund-row{
    &::after{
      content: "";
      border-top: 2px solid var(--main-color);
      border-right: 2px solid var(--main-color);
      transform: translate(-50%, -50%) rotate(45deg);
      height: 9px;
      width: 9px;
      position: absolute;
      top: 50%;
      right: 0;
    }
  }
}
@media screen and (min-width: 860px) {
  .p-fund-link,
  .p-fund-teaser{
    padding: 20px;
  }
}

@media screen and (min-width: 860px) {
  .p-fund-content{
    display: flex;
    .p-fund-link{
      width: 100%;
      &:not(:last-child){
        border-right: 1px solid var(--border-color);
        border-bottom: none;
        padding: 0 30px 0 0;
        margin: 0 30px 0 0;
      }
    }
  }
}
.p-fund-head{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
  .c-label-new{
    background-color: var(--second-color);
    border: none;
  }
}
@media screen and (min-width: 860px) {
  .p-fund-head{
    margin: 0;
    .p-fund-name{
      display: none;
    }
    .c-label-new{
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 2;
    }
  }
}
.p-fund-name{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 860px) {
  .p-fund-name{
    font-size: 18px;
  }
}
.p-fund-row{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  padding-right: 20px;
  position: relative;
}
.p-fund-image{
  flex-shrink: 0;
  width: 135px;
}
@media screen and (min-width: 860px) {
  .p-fund-image{
    width: 200px;
  }
}
.p-fund-info{
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 860px) {
  .p-fund-info{
    font-size: 16px;
  }
}
.p-fund-progress{
  color: var(--second-color);
  font-weight: bold;
  letter-spacing: 0.04em;
  .progress-bar{
    background-color: #D9D9D9;
    border-radius: 60px;
    margin-top: 6px;
    height: 6px;
    width: 100%;
    position: relative;
  }
  .bar{
    background-color: var(--main-color);
    border-radius: 60px;
    height: 100%;
    width: var(--rate);
    position: absolute;
    left: 0;
  }
  .percent{
    color: var(--main-color);
    font-family: var(--font-num);
    line-height: 1.7;
  }
}
@media screen and (min-width: 860px) {
  .p-fund-progress{
    font-size: 14px;
    .percent{
      font-size: 12px;
    }
  }
}

/* flow */
.p-flow-card{
  padding: 10px 14px 16px;
}
@media screen and (min-width: 860px) {
  .p-flow-card{
    padding: 20px;
  }
}
.p-flow-box{
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.8;
  padding: 13px 16px 20px;
}
@media screen and (min-width: 860px) {
  .p-flow-box{
    font-size: 18px;
  }
}
.p-flow-box-title{
  color: var(--main-color);
  font-size: 14px;
  margin-bottom: 8px;
}
@media screen and (min-width: 860px) {
  .p-flow-box-title{
    font-size: 18px;
  }
}
.p-flow-list{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-block: 10px 0;
}
@media screen and (min-width: 860px) {
  .p-flow-list{
    gap: 30px;
  }
}
.p-flow-title{
  color: var(--main-color);
  line-height: 2.2;
}
.p-flow-item{
  position: relative;
  width: 100%;
  &:not(:last-child)::after{
    content: "";
    background-image: url(../images/common/icon-arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    transform: translate(-50%, 100%);
    height: 20px;
    width: 20px;
    position: absolute;
    left: 50%;
    bottom: 0;
  }
}
@media screen and (min-width: 860px) {
  .p-flow-item{
    width: calc((100% - 60px) / 3);
    &:not(:last-child)::after{
      transform: rotate(-90deg);
      height: 30px;
      width: 30px;
      margin: auto;
      top: 0;
      left: 100%;
    }
  }
}

/* voice */
.p-voice-list{
  display: flex;
  gap: 20px;
  margin: 0 -18px;
  padding-bottom: 10px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  width: 100vw;
}
@media screen and (min-width: 860px) {
  .p-voice-list{
    margin-inline: 0 calc(50% - 50vw);
    width: auto;
  }
}
.p-voice-card{
  box-shadow: 0px 2px 8px 0px #0000001F;
  flex-shrink: 0;
  scroll-snap-align: center;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 859px) {
  .p-voice-card:first-child{
    margin-left: 18px;
  }
}
@media screen and (min-width: 860px) {
  .p-voice-card{
    max-width: 540px;
  }
}
.p-voice-image{
  aspect-ratio: 16 / 9;
  img{
    border-radius: 5px 5px 0 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
}
.p-voice-text{
  letter-spacing: 0;
  padding: 12px;
}

/* cta */
.p-cta-box{
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 16px 0px #0000001A;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  max-width: 225px;
  width: 100%;
  padding: 12px;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  .c-btn{
    background: linear-gradient(92.67deg, #A17B36 -0.83%, #CFA532 100%);
    border: none;
    font-size: 14px;
    padding: 10px;
    margin-top: 8px;
  }
}
.p-cta-close{
  background-color: #000;
  border-radius: 50%;
  display: block;
  height: 32px;
  width: 32px;
  transform: translateY(-50%);
  position: absolute;
  top: 0;
  right: -8px;
  &::before,
  &::after{
    content: "";
    background-color: #fff;
    display: block;
    height: 2px;
    width: 12px;
    transform: translate(-50%,-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
  }
  &::after{
    transform: translate(-50%,-50%) rotate(135deg);
  }
}

.p-cta{
  background-image: linear-gradient(rgba(5,4,0,0.7),rgba(5,4,0,0.7)),url(../images/common/bg-cta.jpg);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding-block: 42px;
  .c-btn-sub{
    border-width: 2px;
    max-width: 285px;
  }
}
@media screen and (min-width: 860px) {
  .p-cta{
    padding-block: 85px 100px;
    .c-btn-sub{
      font-size: 20px;
      height: 65px;
      max-width: 350px;
    }
  }
}
.p-cta-title{
  font-size: 22px;
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
@media screen and (min-width: 860px) {
  .p-cta-title{
    font-size: 40px;
    margin-bottom: 35px;
  }
}

/* faq */
.p-faq-item{
  border-top: 1px solid var(--border-color);
  font-size: 14px;
  padding-block: 12px;
  &:last-child{
    border-bottom: 1px solid var(--border-color);
  }
}
@media screen and (min-width: 860px) {
  .p-faq-item{
    font-size: 16px;
  }
}
.p-faq-title{
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.04em;
  padding: 12px 34px 12px 0;
  position: relative;
  &::before,
  &::after{
    content: "";
    background-color: var(--main-color);
    cursor: pointer;
    display: block;
    transition: all 0.3s;
    height: 2px;
    width: 14px;
    position: absolute;
    top: 50%;
    right: 15px;
  }
  &::after{
    transform: rotate(90deg);
  }
  &.open{
    &::after{
      transform: rotate(180deg);
    }
  }
}
.p-faq-answer{
  background: var(--bg-color);
  border-radius: 5px;
  padding-inline: 5%;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  &.open{
    max-height: 100%;
    padding: 5%;
  }
  .link{
    color: var(--main-color);
    text-decoration: underline;
  }
}
@media screen and (min-width: 860px) {
  .p-faq-answer{
    padding-inline: 20px;
    &.open{
      padding: 20px;
    }
  }
}

/* news */
.p-news-list{
  display: flex;
  gap: 5px;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 860px) {
  .p-news-list{
    gap: 10px;
  }
}
.p-news-link{
  display: block;
  padding: 14px 30px 16px 14px;
  position: relative;
  &::after{
    content: "";
    border-top: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
    transform: translate(-50%, -50%) rotate(45deg);
    height: 9px;
    width: 9px;
    position: absolute;
    top: 50%;
    right: 10px;
  }
}
@media screen and (min-width: 860px) {
  .p-news-link{
    padding: 20px 30px 20px 20px;
  }
}
.p-news-head{
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 860px) {
  .p-news-head{
    margin-bottom: 10px;
  }
}
.p-news-date{
  color: var(--sub-color);
  font-family: var(--font-num);
}
@media screen and (min-width: 860px) {
  .p-news-date{
    font-size: 14px;
  }
}

/*------------------------------------------------------------------------
 project - strength
-------------------------------------------------------------------------*/
@media screen and (min-width: 860px) {
  .p-specialty-section{
    .c-link-box{
      margin-top: -40px;
    }
  }
}
.p-risk-section{
  margin-bottom: 20px;
}
.p-risk-image{
  background-color: #F0EFEB;
  padding: 40px 20px;
}
@media screen and (min-width: 860px) {
  .p-risk-image{
    display: flex;
    align-items: center;
  }
}

/*------------------------------------------------------------------------
 project - concept
-------------------------------------------------------------------------*/
.p-concept-image{
  margin: auto;
  max-width: 230px;
}
@media screen and (min-width: 860px) {
  .p-concept-image{
    max-width: 335px;
  }
}

/*------------------------------------------------------------------------
 project - company
-------------------------------------------------------------------------*/
.p-company{
  .l-section{
    + .l-section{
      padding-top: 0;
    }
  }
}

@media screen and (min-width: 860px) {
  .p-info-list{
    border: 1px solid var(--border-color);
    border-bottom: none;
    display: flex;
    flex-wrap: wrap;
  }
}
.p-info-title{
  line-height: 2.2;
}
@media screen and (min-width: 860px) {
  .p-info-title{
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 20px 40px;
    width: 25%;
  }
}
.p-info-text{
  border-bottom: 1px solid var(--border-color);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  padding-bottom: 15px;
}
@media screen and (min-width: 860px) {
  .p-info-text{
    margin: 0;
    padding: 20px 30px;
    width: 75%;
    .c-note{
      font-size: 15px;
      font-weight: bold;
    }
  }
}
.p-timeline{
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  &::before{
    content: "";
    background-color: var(--sub-color);
    display: block;
    width: 1px;
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 3em;
  }
}
@media screen and (min-width: 860px) {
  .p-timeline{
    padding-left: 60px;
    &::before{
      top: 30px;
      left: 7px;
    }
  }
}
.p-timeline-item{
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding-bottom: 14px;
  position: relative;
  &::before{
    content: "";
    background-color: var(--main-color);
    border-radius: 50%;
    display: block;
    height: 12px;
    width: 12px;
    position: absolute;
    top: 5px;
    left: -25px;
    z-index: 2;
  }
}
@media screen and (min-width: 860px) {
  .p-timeline-item{
    padding-bottom: 24px;
    &::before{
      height: 16px;
      width: 16px;
      top: 20px;
      left: -60px;
    }
  }
}
.p-executive-list{
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.p-executive-item{
  max-width: 300px;
  width: calc((100% - 24px) / 2);
}

.p-report{
  .c-btn{
    margin: 0;
  }
}

/*------------------------------------------------------------------------
 project - funds
-------------------------------------------------------------------------*/
.search-button{
  margin-top: 20px;
}
.p-funds-wrap{
  margin-block: 20px 30px;
}
@media screen and (min-width: 860px) {
  .p-funds-wrap{
    .p-fund-head{
      margin-bottom: 10px;
    }
    .p-fund-name{
      display: block;
    }
  }
}
.p-funds>.contents{
  padding-inline: 0;
}

/*------------------------------------------------------------------------
 project - static
-------------------------------------------------------------------------*/
.p-static{
  background-color: transparent;
}
.p-static > .main-wrapper{
  padding: 0;
}
.p-static > .main-wrapper > .contents{
  border: none;
  padding: 0;
}
.about-link{
  margin-bottom: 30px;
}

/*------------------------------------------------------------------------
 project - news
-------------------------------------------------------------------------*/
.p-news .p-news-list{
  margin-bottom: 30px;
}
@media screen and (min-width: 860px) {
  .p-news .details .c-label{
    margin-left: 24px;
  }
}

/*------------------------------------------------------------------------
 project - ir
-------------------------------------------------------------------------*/
.p-ir__download{
  font-size: 12px;
  + .c-btn{
    margin-top: 10px;
  }
}
@media screen and (min-width: 860px) {
  .p-ir__download.c-btn{
    font-size: 16px;
    max-width: 350px;
  }
}

/*------------------------------------------------------------------------
 project - seminars
-------------------------------------------------------------------------*/
.p-seminar{
  .info{
    margin-bottom: 20px;
  }
  .c-btn{
    font-size: 16px;
    line-height: 50px;
    padding-inline: 0;
  }
}
@media screen and (min-width: 860px) {
  .l-seminar__pickup .info + .c-btn{
    margin-top: 20px;
    max-width: 100%;
    padding-block: 20px;
  }
}

/*------------------------------------------------------------------------
 project - identification
-------------------------------------------------------------------------*/
.p-identification-text{
  margin-block: 24px;
}
@media screen and (min-width: 860px) {
  .p-identification-text{
    margin-block: 48px;
  }
}
.p-identification__content{
  .c-btn{
    font-size: 16px;
  }
}

/*------------------------------------------------------------------------
 project - contact
-------------------------------------------------------------------------*/
.kai-banner{
  margin-inline: 18px;
}
@media screen and (min-width: 860px) {
  .kai-banner{
    img{
      width: 40%;
    }
  }
}

/*------------------------------------------------------------------------
 project - login
-------------------------------------------------------------------------*/
.login-area{
  .sns-btn{
    margin-block: 30px;
  }
}

/*------------------------------------------------------------------------
 utility
-------------------------------------------------------------------------*/
.u-bg{
  background-color: var(--bg-color);
}
.u-bg2{
  background-color: var(--bg-color2);
}
.u-bg-white{
  background-color: #fff;
}
.u-bd-bottom{
  border-bottom: 1px solid var(--border-color);
}
.u-color-main{
  color: var(--main-color);
}
.u-d-none{
  display: none;
}
.u-bold{
  font-weight: bold;
}
.u-text-center{
  text-align: center;
}
.u-text-right{
  text-align: right;
}
.u-m-0{
  margin: 0;
}
.u-mt-30{
  margin-top: 30px;
}
.u-mb-40{
  margin-bottom: 40px;
}
.u-w-100{
  width: 100%;
}