/*

【CSS記述ルール】

① font-sizeはpxで指定してください
　（rem、%等の指定はしないようお願いいたします）

② oneday はディレクトリ名に変更してください

③ 必ずディレクトリ名が付いたidセレクタを先頭に記述した後に、要素を記述してください
　（例：#oneday .inner、#oneday .page-title 等）

④ CSS内の画像指定パスは、CSSファイルから見た相対パスで指定してください
　（例：../images/ディレクトリ名/画像名.拡張子）

*/

/*------------------------------------------------------------
common
------------------------------------------------------------*/
body{
  background-color: #fff;
  font-family: 'Noto Sans JP', 'Century Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック体, YuGothic, "Yu Gothic Medium", 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif;
  font-weight: 500;
}

.oneday {
  font-family: 'Noto Sans JP', 'Century Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック体, YuGothic, "Yu Gothic Medium", 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #000;
}

#oneday * {
  box-sizing: border-box;
}

#oneday a {
  transition: opacity .3s;
}

#oneday a[href^="tel:"] {
  display: inline-block;
  transition: none;
}

#oneday a:hover {
  text-decoration: none;
}

#oneday a:focus-visible {
  outline: none;
}

#oneday img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

#oneday .js-fadein {
  opacity: 0;
  transform: translate(0, 20px);
  transition-property: opacity, transform;
  transition-duration: 1s;
}

#oneday .scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

#oneday .text {
  margin-bottom: 2em;
}

#oneday .text:last-of-type {
  margin-bottom: 0;
}

#oneday .pc-br {
  display: none;
}

#oneday .notes {
  display: inline-block;
  position: relative;
  margin-left: 1em;
}

#oneday .notes::before {
  content: '\0203B';
  display: block;
  position: absolute;
  top: 0;
  left: -1em;
}

#oneday .inner {
  width: calc(100% - 24px);
  max-width: 1200px;
  margin: 0 auto;
}

#oneday .font-ardoise{
  font-family: ardoise-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  .oneday {
    font-size: 16px;
  }
  
  #oneday a[href^="tel:"] {
    color: inherit;
    pointer-events: none;
  }
  
  #oneday a:not([href^="tel:"]):hover {
    opacity: .5;
  }
  
  #oneday .sp-br {
    display: none;
  }
  
  #oneday .pc-br {
    display: inline;
  }
}

/*------------------------------------------------------------
content style
------------------------------------------------------------*/
#oneday .main-block{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}

#oneday .main-txt{
  position: relative;
  width: 200px;
  margin-bottom: 28px;
  padding-left: 12px;
  font-size: 15px;
}

#oneday .main-txt .ja{
  position: relative;
  padding-left: 60px;
  font-weight: 500;
}

#oneday .main-txt .ja::before{
  position: absolute;
  content: "";
  width: 40px;
  height: 2px;
  background-color: #000000;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

#oneday .main-txt .en{
  display: block;
  font-size:32px; 
}

#oneday .main-img{
  width: calc(100% - 95px);
  margin: 0 0 0 -105px;
  text-align: right;
}

#oneday .overview{
  margin: 60px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
}

#oneday .menu-list{
  margin-bottom: 100px;
}

#oneday .menu-item{
  margin-bottom: 36px;
  position: relative;
}

#oneday .menu-item:last-of-type{
  margin-bottom: 0;
}

#oneday .menu-item-img{
  position: relative;
  padding-left: 11px;
  z-index: 0;
}

#oneday .menu-item-img::before{
  position: absolute;
  content: "";
  z-index: 1;
  width: 30px;
  height: 30px;
  bottom: 0;
  right: 0;
  background-color: #3A86C1;
}

#oneday .menu-item-img::after{
  position: absolute;
  content: "";
  z-index: 1;
  background: url("../images/oneday/oneday_arrow_ico.svg") no-repeat center center/contain;
  width: 14px;
  height: 8px;
  right: 8px;
  bottom: 11px;
}

#oneday .menu-item-profile{
  position: absolute;
  bottom: 20px;
  left: 0;
}

#oneday .menu-item-profile .profile{
  padding: 3px 19px;
  background-color: #fff;
  color: #3A86C1;
  font-size: 13px;
  border: solid 1px #3A86C1;
}

#oneday .menu-item-profile .profile .post{
  padding-right: 10px;
  font-size: 16px;
}

#oneday .menu-item-profile .name{
  display: inline-block;
  padding: 2px 22px;
  background-color: #3A86C1;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .05em;
}

#oneday .menu-item-profile .name .ttl{
  padding-right: 10px;
  font-size: 14px;
  letter-spacing: 0;
}

#oneday .content-wrapper{
  margin-top: -70px;
  padding-top: 70px;
}

#oneday .content-ttl-block{
  padding: 30px 0 30px 10px;
  background-color: #3A86C1;
  color: #fff;
}

#oneday .content-ttl{
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .1em;
}

#oneday .content-ttl-profile{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  padding-left: 40px;
}

#oneday .content-ttl-profile::before{
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

#oneday .content-ttl-profile .name{
  font-size: 30px;
  line-height: 1;
}

#oneday .content-ttl-profile .name .font-ardoise{
  font-weight: 400;
  letter-spacing: .05em;
}

#oneday .content-ttl-profile .name .ttl{
  margin-right: 10px;
  font-size: 14px;
}

#oneday .content-ttl-profile .profile{
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

#oneday .flow-list{
  position: relative;
  padding: 60px 0 300px 30px;
}

#oneday .flow-list::after{
  position: absolute;
  content: "";
  background: url("../images/oneday/oneday_content01_illust_sp.png") no-repeat center center /contain;
  width: 100%;
  height: 185px;
  bottom: 80px;
  left: 0;
}

#oneday #content02 .flow-list::after{
  background: url("../images/oneday/oneday_content02_illust_sp.png") no-repeat center center /contain;
  height: 151px;
  bottom: 100px;
}

#oneday .flow-item-box{
  padding: 20px 30px;
  border: 1px solid #707070;
}

#oneday .flow-item{
  position: relative;
  margin-bottom: 30px;
  background-color: #fff;
}

#oneday .flow-item-ttl{
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  color: #3A86C1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

#oneday .flow-item-ttl .time{
  margin-right: 14px;
  font-size: 20px;
  font-weight: 700;
}

#oneday .flow-item-txt{
  margin-top: 16px;
  font-weight: 300;
}

#oneday .flow-img-block{
  max-width: 310px;
  margin: 0 auto;
}

#oneday .flow-img01{
  margin-bottom: 36px;
}

#oneday .flow-img02{
  padding-bottom: 80px;
}

#oneday .flow-img-txt{
  margin-top: 15px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.38;
}

#oneday .flow-img{
  margin-top: 10px;
}

#oneday .flow-item:last-of-type .flow-item-box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 6px 20px;
  border: solid 1px #3A86C1;
}

#oneday .flow-item:last-of-type .flow-item-ttl{
  padding: 0 14px 0 0;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {/* ---------- スマホ以下 ---------- */
	
  #oneday .flow-item:before{
    position: absolute;
    content: "";
    background-color: #3A86C1;
    width: 4px;
    height: calc(100% + 30px);
    top: 30px;
    left: -24px;
  }

  #oneday .flow-item:last-of-type{
    margin:0 0 0 -30px;
  }

  #oneday .flow-item:last-of-type:before{
    content: none;
  }

  #oneday .flow-item-ttl:before{
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #fff;
    border: 4px solid #3A86C1;
    border-radius: 50%;
    bottom: -7px;
    left: -61px;
    z-index: 2;
    box-sizing: content-box;
  }
  
  #oneday .flow-item:last-of-type .flow-item-ttl:before{
    content: none;
  }

  #oneday .flow-item-ttl:after{
    position: absolute;
    content: "";
    background-color: #3A86C1;
    width: calc(100% + 54px);
    height: 2px;
    left: -54px;
    bottom: 0;
    z-index: 1;
  }
  
  #oneday .flow-item:last-of-type .flow-item-ttl:after{
    content: none;
  }
  
  #oneday .flow-item:last-of-type .flow-item-txt{
    margin: 0;
    font-size: 14px;
  }

  #oneday .flow-item:first-of-type:after{
    position: absolute;
    content: "";
    background-color: #3A86C1;
    width: 4px;
    height: 120px;
    top: -65px;
    left: -25px;
  }
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  
  #oneday .main-block{
    display: block;
    position: relative;
  }
  
  #oneday .main-txt-block{
    position: absolute;
    width:100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }
  
  #oneday .main-txt{
    width: calc(100% - 24px);
    max-width: 1200px;
    margin: 0 auto 86px;
    padding-left: 0;
    font-size: 24px;
  }
  
  #oneday .main-txt .ja{
    padding-left: 100px;
  }

  #oneday .main-txt .ja::before{
    width: 80px;
  }

  #oneday .main-txt .en{
    display: block;
    font-size:60px; 
  }
  
  #oneday .main-img{
    width: 100%;
    margin: 0;
  }
  
  #oneday .main-img img{
    width: 62.5%;
    object-fit: cover;
    min-height: 450px;
    min-width: 940px;
    object-position: left;
  }

  #oneday .overview{
    max-width: 480px;
    margin: 80px auto;
    font-size: 16px;
    line-height: 2.5;
  }
  
  #oneday .menu-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 40px 140px;
  }
  
  #oneday .menu-item{
    width: calc((100% - 60px) / 2);
    margin-bottom: 0;
  }
  
  #oneday .menu-item-img{
    padding-left: 50px;
    transition: all .3s;
  }
  
  #oneday .menu-item a:hover{
    opacity: 1;
  }
  
  #oneday .menu-item a:hover .menu-item-img{
    opacity: .5;
  }
  
  #oneday .menu-item-profile{
    bottom: 30px;
  }
  
  #oneday .menu-item-profile .profile{
    padding: 8px 21px;
    font-size: 14px;
  }

  #oneday .menu-item-profile .profile .post{
    padding-right: 18px;
    font-size: 20px;
  }

  #oneday .menu-item-profile .name{
    padding: 7px 18px;
    font-size: 36px;
  }

  #oneday .menu-item-profile .name .ttl{
    padding-right: 18px;
    font-size: 16px;
  }
  
  #oneday .content-wrapper{
    margin-top: -80px;
    padding-top: 80px;
  }
  
  #oneday .content-ttl-block{
    padding: 46px 0;
  }
  
  #oneday .content-ttl-block .inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 50px;
  }
  
  #oneday .content-ttl{
    margin: 0 40px 0 0;
    font-size: 40px;
  }
  
  #oneday .content-ttl-profile{
    padding-left: 110px;
  }
  
  #oneday .content-ttl-profile::before{
    width: 80px;
  }
  
  #oneday .content-ttl-profile .name .ttl{
    margin-right: 20px;
  }
  
  #oneday .content-ttl-profile .profile{
    margin-left: 16px;
  }

  #oneday .flow-list{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 180px;
    padding: 70px 0 0;
  }
  
  #oneday #content02 .flow-list{
    margin-bottom: 200px;
  }
  
  #oneday .flow-list:before{
    position: absolute;
    content: "";
    width: 6px;
    height:100%;
    background-color: #3A86C1;
    top: 0;
    left: calc(50% - 3px);
    z-index: 1;
  }
  
  #oneday .flow-list::after{
    position: absolute;
    content: "";
    background: url("../images/oneday/oneday_content01_illust_pc.png") no-repeat center center /contain;
    width: 470px;
    height: 288px;
    bottom: 70px;
    left: auto;
    right: 18px;
  }
  
  #oneday #content02 .flow-list::after{
    background: url("../images/oneday/oneday_content02_illust_pc.png") no-repeat center center /contain;
    height: 160px;
    bottom: 150px;
    right: 16px;
  }

  #oneday .flow-item-box{
    padding: 20px 70px 30px;
  }
  
  #oneday .flow-item:last-of-type .flow-item-box{
    display: block;
    padding: 6px 0 4px;
    text-align: center;
  }
  
  #oneday .flow-item{
    width: 40%;
    min-height: 260px;
    margin-bottom: 0;
  }
  
  #oneday .flow-item:last-of-type{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 152px;
    min-height: 218px;
    z-index: 1;
  }

  #oneday .flow-item:nth-of-type(odd){
    margin-top: -130px
  }
  
  #oneday .flow-item:first-of-type{
    margin-top: 0;
  }
  
  #oneday .flow-item:nth-of-type(2){
    margin-top: 140px;
  }
  
  #oneday .flow-item:nth-of-type(3){
    margin-top: -356px;
  }
  
  #oneday .flow-item:nth-of-type(4){
    margin-top: 80px;
  }
  
  #oneday .flow-item-ttl{
    display: flex;
    align-items: center;
    padding-bottom: 4px;
    font-size: 20px;
  }
  
  #oneday .flow-item-ttl .time{
    margin-right: 18px;
    font-size: 30px;
  }

  #oneday .flow-item-txt{
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.5;
  }
  
  #oneday .flow-item:last-of-type .flow-item-txt{
    margin: 0;
  }
  
  #oneday .flow-item:after{
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 6px solid #3A86C1;
    border-radius: 50%;
    bottom: -7px;
    right: calc(-25% - 15px);
    top: 44px;
    z-index: 1;
    box-sizing: content-box;
  }
  
  #oneday .flow-item:nth-of-type(even):after{
    right: auto;
    left: calc(-25% - 15px);
  }
  
  #oneday .flow-item:last-of-type:after{
    content: none;
  }
  
  #oneday .flow-item-ttl{
    position: relative;
    height: 40px;
    padding-bottom: 10px;
    color: #3A86C1;
    font-size: 20px;
    line-height: 1;
  }
  
  #oneday .flow-item:last-of-type .flow-item-ttl{
    height: auto;
    padding: 0 0 4px 0;
    justify-content: center;
  }
  
  #oneday .flow-item-ttl:after{
    position: absolute;
    content: "";
    width: calc(100% + 100px + 35.7%);
    height: 4px;
    background-color: #3A86C1;
    border-radius: 999px;
    left: -30px;
    bottom: 0;
    z-index: 1;
  }
  
  #oneday .flow-item:last-of-type .flow-item-ttl:after{
    content: none;
  }
  
  #oneday .flow-item:nth-of-type(even) .flow-item-ttl:after{
    left: auto;
    right: -30px;
  }
  
  #oneday .flow-img-block{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    padding-bottom: 130px;
  }

  #oneday .flow-img01,
  #oneday .flow-img02{
    width: calc(50% - 20px);
    margin-bottom: 0;
    padding-bottom: 0;
  }

  #oneday .flow-img-txt{
    margin-top: 10px;
    padding: 0 10px;
    font-size: 16px;
    line-height: 1.875;
  }
  
  #oneday .flow-img{
    margin-top: 20px;
  }
  
  #oneday .content02 .flow-img-block{
    padding-bottom: 240px;
  }
}
