/* 共通 */
h2 {
  text-align: center;
  font-size: 5rem;
  color: var(--fuji-po-blue-1);
  position: relative;
  letter-spacing: 3px;
  width: fit-content;
  margin: 0 auto;
}
h2 span.main-phrase-emphasis {
  display: block;
  font-size: 2.8rem;
  color: var(--fuji-po-yellow);
  margin-bottom: 15px;
}

@media (min-width: 768px) and (max-width: 1280px) {
  h2 {
    font-size: 4.2rem;
  }
  h2 span.main-phrase-emphasis {
    font-size: 2.5rem;
    margin-bottom: 13px;
  }
  .section-inner {
    max-width: 691px;
  }
}

@media screen and (max-width:767px) {
  h2 {
    font-size: 2.7rem;
    letter-spacing: 1px;
  }
  h2 span.main-phrase-emphasis {
    font-size: 1.4rem;
    margin-bottom: 13px;
  }
}

/* リセット用CSS */
button {
  font-family: "Montserrat","Noto Sans JP",sans-serif;
}

/* KV */
div.key-visual {
  padding: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/assets/img/fuji-kv-background.webp);
  height: 100%;
  position: relative;
  z-index: 0;
}
.key-visual-inner {
  height: 100%;
  text-align: center;
  position: relative;
}

@media screen and (min-width:1473px) {
  div.key-visual {
    height: 550px;
  }
  .key-visual-inner img.img-mv {
    width: auto;
    height: 550px;
  }
}

@media screen and (max-width:767px) {
  div.key-visual {
    background-image: unset;
  }
}

/* セクション区切り */
.section-background-1 {
  position: relative;
  padding: 85px 30px;
}
.section-background-2,
.section-background-3,
.section-background-4,
.section-background-5 {
  position: relative;
  padding: 125px 30px 85px;
}
.section-background-4 {
  padding: 0 30px 85px;
}
.section-background-1,
.section-background-3,
.section-background-4 {
  background-color: #FFF;
}
.section-background-2 {
  background-color: var(--fuji-po-gray-2);
  color: var(--fuji-po-gray-1);
}
.section-background-2::before,
.section-background-3::before,
.section-background-5::before {
  display: block;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  content: '';
  background-image: url(../img/section-fuji2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 0;
  padding-bottom: 9%;
}
.section-background-3::before {
  background-image: url(../img/section-fuji.svg);
}
.section-background-5::before {
  background-image: url(../img/section-fuji3.svg);
}
.section-background-3 {
  color: var(--fuji-po-gray-1);
}
.section-background-5 {
  background-color: var(--fuji-po-blue-1);
}

@media (min-width: 768px) and (max-width: 1280px) {
  .section-background-1 {
    padding: 85px 30px 105px;
  }
  .section-background-2, 
  .section-background-3, 
  .section-background-4, 
  .section-background-5 {
    padding: 95px 30px 85px;
  }
}

@media screen and (max-width:767px) {
  .section-background-1 {
    padding: 45px 5% 70px;
  }
  .section-background-2, 
  .section-background-3, 
  .section-background-4, 
  .section-background-5 {
    position: relative;
    padding: 80px 5% 70px;
  }
  .section-background-2::before,
  .section-background-3::before, 
  .section-background-5::before {
    display: block;
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    content: '';
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0;
    padding-bottom: 25vw;
    border: 0;
  }
}

/* 料金プラン */
.plan-price-head {
  font-size: 2rem;
  color: #FFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 85px;
}
.plan-price-head > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 48%;
  height: 105px;
  padding: 35px;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 17px 17px 0 0;
}
#router-head,
#sim-head {
  cursor: pointer;
}
#router-head:hover,
#sim-head:hover {
  transition: 0.2s linear;
  opacity: 0.8;
}
#router-head {
  background-color: var(--fuji-po-red);
}
#sim-head {
  background-color: var(--fuji-po-blue-1);
}
#router-head .dli-caret-circle-fill-bottom::before {
  color: var(--fuji-po-red);
}
#sim-head .dli-caret-circle-fill-bottom::before {
  color: var(--fuji-po-blue-1);
}
.router-icon {
  width: 55px;
}
.sim-icon {
  width: 38px;
}
#router-head > div p:first-child,
#sim-head > div p:first-child {
  border-bottom: 4px solid #FFF;
  padding-bottom: 5px;
  margin-bottom: 11px;
}
#router-head > div p:last-child span,
#sim-head > div p:last-child span {
  font-size: 3.4rem;
  margin-left: 6px;
}
.router-price,
.sim-price {
  padding: 50px;
  position: relative;
}
.router-price-inner,
.sim-price-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sim-price-inner {
  justify-content: center;
}
.router-price {
  border: 6px solid var(--fuji-po-red);
}
.sim-price {
  border: 6px solid var(--fuji-po-blue-1);
}
.router-price-inner > div {
  width: 47%;
}
.sim-price-inner > div {
  width: 57%;
}
.sim-price-inner > div p.plan-sub-title {
  text-align: center;
}
.head-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--fuji-po-red);
}
.sim-price .head-title {
  justify-content: center;
}
.head-title p.head-title-text {
  font-size: 3.3rem;
  font-weight: bold;
}
.head-title p.head-title-text span {
  font-size: 4.5rem;
}
.rakuraku .head-title {
  color: var(--fuji-po-gray-1);
}
.sim-price .rakuraku .head-title {
  color: var(--fuji-po-blue-1);
}
.head-title-mark {
  font-size: 2.5rem;
  font-weight: bold;
  border: 4px solid;
  padding: 6px 19px 4px;
  border-radius: 50px;
  margin-left: 20px;
}
.plan-sub-title {
  font-weight: bold;
  font-size: 1.6rem;
  margin: 25px 0px;
}
.plan-point-area {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.plan-point-area img {
  width: 26%;
}
.price-list-area {
  margin-top: 40px;
}
.price-list-box {
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  position: relative;
}
.price-list-area .price-list-box:last-child {
  margin-bottom: 0;
}
.list-box-gb {
  width: 35%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  background-color: var(--fuji-po-red);
  color: #FFF;
  line-height: 1.1;
}
.rakuraku .list-box-gb {
  background-color: var(--fuji-po-gray-1);
}
.sim-price .rakuraku .list-box-gb {
  background-color: var(--fuji-po-blue-1);
}
.list-box-gb .list-big-text {
  font-size: 4rem;
}
.rakuraku .list-box-price .list-big-text {
  color: var(--fuji-po-gray-1);
}
.sim-price .rakuraku .list-box-price .list-big-text {
  color: var(--fuji-po-blue-1);
}
.list-box-price {
  width: 65%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
}
.list-box-price .list-big-text {
  font-size: 5rem;
  color: var(--fuji-po-red);
}
.list-box-inner {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.list-box-gb .list-box-inner {
  display: block;
  text-align: center;
}
.list-box-price .list-box-inner {
  align-items: center;
}
.good-mark {
  position: absolute;
  width: 62px;
  top: 50%;
  right: 7px;
  transform: translateY(-50%) translateX(50%);
  -webkit-transform: translateY(-50%) translateX(50%);
}
.list-price-unit {
  margin-top: 6px;
  margin-left: 5px;
}
.gb-small-text {
  font-size: 1.8rem;
}
.fuji-price-button {
  position: static;
  margin: 35px auto 0;
  transform: unset;
}
.sim-price-fujikichi-1 {
  width: 154px;
  position: absolute;
  bottom: 47px;
  left: 50px;
}
.sim-price-fujikichi-2 {
  width: 212px;
  position: absolute;
  bottom: 24px;
  right: 47px;
}
.plan-price-box .fuji-price-button {
  left: unset;
}
#router-head.plan-select-arrow,
#sim-head.plan-select-arrow {
  position: relative;
}
#router-head.plan-select-arrow::after,
#sim-head.plan-select-arrow::after {
  content: '';
  color: var(--fuji-po-red);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.9616em 0.9em;
  border-top-color: currentColor;
  border-bottom: 0;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  position: absolute;
}
#sim-head.plan-select-arrow::after {
  color: var(--fuji-po-blue-1);
}

@media (min-width: 768px) and (max-width: 1280px) {
  .plan-price-head {
    margin-top: 70px;
  }
  .router-icon {
    width: 40px;
  }
  .plan-price-head > div {
    padding: 20px;
  }
  .plan-price-head > div {
    font-size: 1.6rem;
  }
  #router-head > div p:last-child span, 
  #sim-head > div p:last-child span {
    font-size: 2.9rem;
    margin-left: 3px;
  }
  .dli-caret-circle-fill-bottom {
    width: 1.4em;
    height: 1.4em;
  }
  .dli-caret-circle-fill-bottom::before {
    border-width: 0.659616em 0.4em;
    top: 55%;
    left: 49%;
  }
  .head-title p.head-title-text {
    font-size: 2.3rem;
  }
  .head-title p.head-title-text span {
    font-size: 2.7rem;
  }
  .head-title-mark {
    font-size: 1.8rem;
    padding: 6px 10px 4px;
    margin-left: 10px;
  }
  .sim-icon {
    width: 28px;
  }
  .plan-sub-title {
    font-weight: bold;
    font-size: 1.6rem;
    margin: 25px 0px;
    height: 40px;
  }
  .plan-sub-title {
    height: 40px;
  }
  .router-price, 
  .sim-price {
    padding: 30px;
  }
  .plan-point-area img {
    width: 30%;
  }
  .list-box-gb {
    font-size: 1.7rem;
  }
  .list-box-gb .list-big-text {
    font-size: 3.3rem;
  }
  .list-box-price .list-big-text {
    font-size: 3.9rem;
  }
  .list-price-unit {
    font-size: 1.1rem;
  }
  .gb-small-text {
    font-size: 1.4rem;
  }
  .price-list-box {
    height: 80px;
  }
  .list-box-gb {
    width: 37%;
    height: 80px;
  }
  .list-box-price {
    width: 63%;
    height: 80px;
  }
  .good-mark {
    width: 45px;
    top: 50%;
    right: -6px;
  }
  #router-head.plan-select-arrow::after,
  #sim-head.plan-select-arrow::after {
    bottom: -18px;
  }
  .sim-price-fujikichi-1 {
    width: 118px;
    bottom: 31px;
    left: 30px;
  }
  .sim-price-fujikichi-2 {
    width: 157px;
    bottom: 22px;
    right: 22px;
  }
}

@media screen and (max-width:767px) {
  .plan-price-head > div {
    padding: 10px;
    flex-direction: column;
    font-size: 1.2rem;
    height: 77px;
  }
  .plan-price-head .dli-caret-circle-fill-bottom {
    display: none;
  }
  .router-icon {
    width: 30px;
    margin-top: 5px;
  }
  .sim-icon {
    width: 20px;
  }
  #router-head > div p:last-child span, 
  #sim-head > div p:last-child span {
    font-size: 2.2rem;
    margin-left: 2px;
  }
  .router-price, 
  .sim-price {
    padding: 45px 20px;
  }
  .router-price-inner, .sim-price-inner {
    display: block;
  }
  .router-price-inner > div {
    width: 100%;
  }
  .head-title p.head-title-text {
    font-size: 2.6rem;
  }
  .head-title p.head-title-text span {
    font-size: 3.4rem;
  }
  .sim-price .head-title p.head-title-text {
    font-size: 2.2rem;
  }
  .sim-price .head-title p.head-title-text span {
    font-size: 2.8rem;
  }
  .head-title-mark {
    font-size: 1.5rem;
    padding: 6px 12px 4px;
    margin-left: 5px;
  }
  .sim-price .head-title-mark {
    font-size: 1.2rem;
  }
  #router-head.plan-select-arrow::after,
  #sim-head.plan-select-arrow::after {
    bottom: -15px;
  }
  .plan-point-area img {
    width: 30%;
  }
  .plan-sub-title {
    font-size: 1.4rem;
    margin: 15px 0px;
  }
  .price-list-area {
    margin-top: 20px;
  }
  .price-list-box {
    height: 65px;
    margin-bottom: 10px;
  }
  .list-box-gb {
    height: 65px;
    font-size: 1.5rem;
  }
  .list-box-gb .list-big-text {
    font-size: 3rem;
  }
  .list-box-price {
    height: 65px;
  }
  .list-box-price .list-big-text {
    font-size: 3.8rem;
  }
  .list-price-unit {
    margin-left: 3px;
    font-size: 1.1rem;
  }
  .good-mark {
    width: 44px;
    top: 30%;
    right: 3px;
  }
  .gb-small-text {
    font-size: 1.3rem;
  }
  .rakuraku {
    margin-top: 45px;
  }
  .fuji-point-button {
    font-size: 1.3rem;
    padding: 8px 25px;
    width: fit-content;
  }
  .fuji-price-button {
    margin: 30px auto 0;
  }
  .plan-price-head {
    margin-top: 35px;
  }
  .sim-price-inner > div {
    width: 100%;
  }
  .sim-price .rakuraku {
    margin-top: 0;
  }
  .sim-price-fujikichi-1,
  .sim-price-fujikichi-2 {
    display: none;
  }
  .sim-price .head-title {
    justify-content: flex-start;
  }
  .sim-price-inner > div p.plan-sub-title {
    text-align: left;
  }
}

/* オプション */
.router-option-area {
  margin-top: 80px;
  position: relative;
}
.router-option-head {
  background-color: var(--fuji-po-red);
  color: #FFF;
  padding: 25px 45px;
  font-size: 3rem;
  font-weight: bold;
}
.router-option-fujikichi {
  position: absolute;
  right: 39px;
  top: -43px;
  width: 300px;
}
.router-option-body {
  background-color: #FFF;
  padding: 45px;
}
.router-option-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.router-option-sub-title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 15px;
}
.router-option-title {
  font-size: 3.7rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 25px;
}
.router-option-content {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.7;
}
.router-option-price {
  margin-top: 54px;
  font-size: 1.7rem;
  font-weight: bold;
  position: relative;
  width: fit-content;
}
.router-option-price span:first-child {
  margin-top: 30px;
  font-size: 8rem;
  color: var(--fuji-po-red);
}
.router-option-detail {
  width: 46%;
  padding-right: 60px;
}
.fuji-price-button {
  position: relative;
}
.router-option-area .fuji-point-button .dli-caret-circle-fill-bottom {
  position: absolute;
  right: 30px;
}
.router-option-area .fuji-price-button {
  left: unset;
  border: unset;
  cursor: pointer;
}
.router-option-price .good-mark {
  position: absolute;
  width: 62px;
  top: -14px;
  right: 31px;
  transform: translateY(-50%) translateX(50%);
  -webkit-transform: translateY(-50%) translateX(50%);
}

/* オプション 注意事項 start */
.content-notes {
  margin-top: 35px;
}
.content-notes table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.content-notes table tbody p,
.content-notes table tbody th,
.content-notes table tbody td {
  font-size: 1.4rem;
  line-height: 1.5;
}
.content-notes table tbody th,
.content-notes table tbody td {
  padding: 10px 12px;
  border: 1px solid #ccc;
}
.content-notes table tbody th {
  width: 20%;
}
.content-notes table tbody ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.content-notes table tbody ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.content-notes table tbody ul li::before {
  content: "・";
}
.router-option-area .fuji-default-button {
  margin-top: 35px;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .router-option-head {
    padding: 22px 38px;
    font-size: 2.4rem;
  }
  .router-option-fujikichi {
    right: 11px;
    top: -48px;
    width: 235px;
  }
  .router-option-body {
    padding: 30px;
  }
  .router-option-sub-title {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 14px;
  }
  .router-option-content {
    font-size: 1.5rem;
  }
  .router-option-price {
    margin-top: 52px;
    font-size: 1.6rem;
  }
  .router-option-price span:first-child {
    font-size: 7.1rem;
  }
  .router-option-detail {
    width: 47%;
    padding-right: 0px;
  }
  .router-option-price .good-mark {
    width: 57px;
    top: -33%;
    right: 22px;
  }
}

@media screen and (max-width: 767px){
  .content-notes {
    margin-top: 25px;
  }
  .content-notes table tbody td {
    text-align: left;
  }
  .content-notes table tbody th {
    width: 22%;
  }
  .content-notes table tbody p,
  .content-notes table tbody th,
  .content-notes table tbody td {
    font-size: 1.2rem;
  }
  .content-notes table tbody th,
  .content-notes table tbody td {
    padding: 8px;
  }
  .router-option-price span:first-of-type {
    font-size: 4.8rem;
    margin-top: 0;
  }
  .router-option-price span:last-of-type {
    font-size: 1.3rem;
    margin-left: 5px;
  }
  .router-option-head {
    padding: 20px 20px;
    font-size: 2.3rem;
    line-height: 1.1;
  }
  .router-option-fujikichi {
    right: 16px;
    top: -37px;
    width: 275px;
  }
  .router-option-body {
    padding: 25px 20px;
  }
  .router-option-sub-title {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  .router-option-flex {
    display: block;
  }
  .router-option-title {
    font-size: 2.7rem;
    margin-bottom: 12px;
  }
  .router-option-content {
    font-size: 1.3rem;
  }
  .router-option-price {
    font-size: 1.3rem;
    margin: 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .router-option-price .good-mark {
    position: static;
    width: 45px;
    transform: unset;
    -webkit-transform: unset;
    margin-left: 5px;
  }
  .router-option-detail {
    width: 100%;
    padding-right: 0;
  }
  .router-option-area .fuji-price-button {
    margin: 20px auto 0;
    width: 190px;
  }
  .router-option-area .fuji-point-button .dli-caret-circle-fill-bottom {
    right: 15px;
  }
  .router-option-area .fuji-default-button {
    margin-top: 20px;
  }
}
/* オプション 注意事項 end */

/* ご利用までの流れ */
.flow-step-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 85px 0 50px;
}
.flow-step-area > div {
  width: 29%;
  height: 472px;
  background-color: #F5F5F5;
  border-radius: 250px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 55px 0;
  box-sizing: border-box;
}
.flow-step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0391BE;
}
.flow-step-number span {
  font-size: 5rem;
  margin-left: 3px;
}
.flow-step-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--fuji-po-red);
  margin-top: 40px;
}
.flow-step-content {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  width: 74%;
  margin-top: 20px;
}
.flow-step-content span {
  font-size: 0.8em;
}
.flow-step-1 img {
  width: 70%;
  position: absolute;
  bottom: -20px;
}
.flow-step-2 img {
  width: 128%;
  position: absolute;
  bottom: -19px;
}
.flow-step-3 img {
  width: 59%;
  position: absolute;
  bottom: -19px;
}
.flow-step-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.flow-step-caution {
  line-height: 1.5;
}
.flow-step-button > a {
  left: unset;
  margin: 0;
}
.flow-step-button > a:not(:first-child) {
  margin-top: 5px;
}
.flow-step-button .fuji-point-button .dli-caret-circle-fill-right {
  position: absolute;
  right: 15px;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .section-background-4 {
    padding: 0 30px 85px;
  }
  .flow-step-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #0391BE;
  }
  .flow-step-number span {
    font-size: 4.4rem;
    margin-left: 2px;
  }
  .flow-step-title {
    font-size: 2.2rem;
    margin-top: 29px;
  }
  .flow-step-area > div {
    width: 31%;
    height: 401px;
  }
  .flow-step-content {
    font-size: 1.5rem;
    width: 81%;
  }
  .flow-step-1 img {
    width: 65%;
  }
  .flow-step-2 img {
    width: 118%;
  }
  .flow-step-3 img {
    width: 55%;
  }
  .flow-step-area {
    margin: 70px 0 45px;
  }
}

@media screen and (max-width: 767px){
  .flow-step-area {
    display: block;
    margin: 35px 0 20px;
  }
  .flow-step-area > div {
    width: 100%;
    height: auto;
    border-radius: 250px;
    flex-direction: row;
    justify-content: space-between;
    padding: 25px;
  }
  .flow-step-1 img,
  .flow-step-2 img,
  .flow-step-3 img {
    width: 87px;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    bottom: unset;
  }
  .flow-step-2 img {
    width: 141px;
  }
  .flow-step-3 img {
    width: 74px;
  }
  .flow-step-1 > div,
  .flow-step-2 > div,
  .flow-step-3 > div {
    width: 73%;
    position: static;
    bottom: unset;
  }
  .flow-step-1 > div > div,
  .flow-step-2 > div > div,
  .flow-step-3 > div > div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .flow-step-title {
    font-size: 1.6rem;
    margin-top: 0;
    margin-left: 10px;
  }
  .flow-step-number {
    font-size: 1.2rem;
  }
  .flow-step-number span {
    font-size: 2.4rem;
    margin-left: 1px;
  }
  .flow-step-content {
    font-size: 1.2rem;
    line-height: 1.5;
    width: 100%;
    margin-top: 5px;
  }
  .flow-step-2 .flow-step-content {
    width: 68%;
  }
  .flow-step-caution {
    font-size: 1.1rem;
    margin-top: 20px;
  }
  .flow-step-1,
  .flow-step-2 {
    margin-bottom: 20px;
  }
  .flow-step-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .flow-step-button > a:not(:first-child) {
    margin-top: 0;
    margin-left: 5px;
  }
  .flow-step-button .fuji-point-button {
    font-size: 1.2rem;
    padding: 8px 9px;
    width: 49%;
    min-width: 165px;
  }
  .flow-step-bottom {
    flex-direction: column-reverse;
  }
}

/* おしらせ */
#news_ul {
  margin: 85px 0 0;
  padding-left: 0;
}
#news_ul li {
  list-style: none;
  background-color: #F5F5F5;
  border-radius: 250px;
  margin-bottom: 12px;
  padding: 39px 85px;
}
#news_ul li a {
  color: #000;
  display: flex;
  font-size: 16px;
  position: relative;
}
#news_ul li a:after {
  position: absolute;
  content: '';
  color: var(--fuji-po-blue-1);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.5em 0.8em;
  border-left-color: currentColor;
  border-right: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
#news_ul li a:hover {
  transition: 0.2s linear;
  opacity: 0.8;
}
#news_ul li a .ttl {
  width: 180px;
}
#news_ul li a .meta {
  color: var(--fuji-po-blue-1);
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
#news_ul li a .content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#news_ul li a .content .new {
  color: #FFF;
  background-color: var(--fuji-po-red);
  font-size: 0.7em;
  padding: 2px 10px 2px 12px;
  margin-right: 8px;
  border-radius: 20px;
}
.separate-tab-icon {
  position: absolute;
  right: 15px;
}
.section-background-4 .fuji-price-button,
.section-background-5 .fuji-price-button {
  left: unset;
  width: 450px;
  padding: 20px;
  font-size: 1.8rem;
  margin-top: 55px;
}

@media (min-width: 768px) and (max-width: 1280px) {
  #news_ul {
    margin: 70px 0 0;
    padding-left: 0;
  }
  #news_ul li {
    padding: 32px 85px;
  }
  #news_ul li a {
    font-size: 15px;
  }
  #news_ul li a .ttl {
    width: 28%;
  }
  #news_ul li a .content {
    width: 67%;
  }
  #news_ul li a .meta {
    font-size: 1.7rem;
  }
  .section-background-4 .fuji-price-button, 
  .section-background-5 .fuji-price-button {
    width: 430px;
    padding: 17px;
    font-size: 1.7rem;
    margin-top: 45px;
  }
}

@media screen and (max-width: 767px){
  .section-background-4 {
    padding: 20px 20px 70px;
  }
  .separate-tab-icon {
    position: static;
    right: 15px;
    margin-left: 5px;
  }
  #news_ul {
    margin: 30px 0 0;
  }
  #news_ul li {
    border-radius: 250px;
    margin-bottom: 10px;
    padding: 22px 25px;
  }
  #news_ul li a {
    font-size: 13px;
    display: block;
  }
  #news_ul li a .meta {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }
  #news_ul li a .ttl {
    width: fit-content;
    margin-bottom: 3px;
  }
  .section-background-4 .fuji-price-button, 
  .section-background-5 .fuji-price-button {
    left: unset;
    margin-top: 30px;
    padding: 12px 30px;
    font-size: 1.4rem;
    width: fit-content;
  }
}

/* FUJI ログ通信 */
.section-background-5 h2 {
  color: #FFF;
}
.main-phrase-sub {
  display: block;
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.section-background-5 .main-phrase-emphasis {
  margin-top: 15px;
}
.change-contents {
  margin: 70px 0 0;
}
.fuji-br-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fuji-br-2 .col {
  width: 300px;
  margin-right: 30px;
  float: unset;
}
.fuji-br-2 .col:last-child {
  margin-right: 0;
}
.frame a {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
}
.fuji-br-2 .col a {
  height: 400px;
  position: relative;
  overflow: hidden;
}
.fuji-br-2 .col a:hover {
  transition: 0.2s linear;
  opacity: 0.8;
}
figure, 
.wp-caption {
  display: inline-block;
  position: relative;
  max-width: 100%;
  margin: 0 0 25px;
}
.column-col figure {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 160px;
  position: relative;
}
.column-col figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.column-col figure img {
  min-height: 160px;
  width: auto;
  max-width: auto;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.column-col .ttl {
  margin-bottom: 20px;
  font-weight: bold;
  color: #000000;
  font-size: 16px;
  padding: 0 17px;
  line-height: 1.6;
}
.column-col .desc {
  font-size: 14px;
  color: #333;
  padding: 0 22px;
}
body.mainsite .column-col .desc {
  font-size: 14px;
  color: #333;
  text-decoration: none;
}
.column-col .cat {
  font-size: 12px;
  color: #000;
  border: 1px solid #007FA6;
  border-radius: 33px;
  text-align: center;
  position: absolute;
  bottom: 44px;
  left: 20px;
  padding: 0 13px;
  font-weight: bold;
}
.column-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.column-col .dli-caret-circle-fill-right {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--fuji-po-blue-1);
  width: 1.4em;
  height: 1.4em;
}
.column-col .dli-caret-circle-fill-right::before {
  color: #FFF;
}
.section-background-5 .fuji-price-button {
  left: unset;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .section-background-5 {
    padding: 95px 30px 65px;
  }
  .change-contents {
    margin: 65px 0 0;
  }
  .fuji-br-2 .col {
    width: fit-content;
    margin-right: 20px;
  }
  .column-col .ttl {
    font-size: 15px;
  }
  .fuji-br-2 .col a {
    height: 460px;
  }
}

@media screen and (max-width: 767px){
  .section-background-5 .main-phrase-emphasis {
    margin: 13px 0 0;
  }
  .main-phrase-sub {
    font-size: 1.3rem;
  }
  .change-contents {
    margin: 30px 0 0;
  }
  .fuji-br-2 {
    display: block;
  }
  .fuji-br-2 .col {
    width: 100%;
    margin-right: 0;
  }
  .fuji-br-2 .col:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .section-background-5 {
    padding: 80px 40px 70px;
  }
  .column-col figure {
    width: 90px;
    height: 90px;
    margin: 0;
  }
  .column-col .ttl {
    margin: 0 0 13px;
    font-size: 1.4rem;
    padding: 0;
  }
  .fuji-br-2 .col a {
    border-radius: 10px;
    padding: 16px;
    height: auto;
    box-sizing: border-box;
  }
  .column-col-flex-sp {
    display: flex;
  }
  .column-col-1-sp {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .column-col figure img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    transform: unset;
    position: static;
    min-height: unset;
  }
  .column-col-2-sp {
    padding-left: 5%;
  }
  .column-col .desc {
    display: none;
  }
  .column-col .cat {
    position: static;
    display: inline-block;
  }
  .column-col .dli-caret-circle-fill-right {
    bottom: 16px;
    right: 16px;
    width: 1.55em;
    height: 1.55em;
  }
  #news_ul li a .content .new {
    font-size: 0.8em;
    padding: 1px 8px 1px 9px;
    margin-right: 5px;
  }
  #news_ul li a .content {
    width: 90%;
  }
}

.fuji-point-text-top {
  margin: 0;
  font-size: 2.7rem;
}

.head-text {
  font-size: 18px;
}

@media screen and (max-width: 767px){
  .head-text {
    margin: 0;
    font-size: 12px;
  }
}

.flow-step-title-h3 {
  margin: 0;
}
