@charset "UTF-8";
/*========================================================
  Reset
*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,
del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { 
  display:block;
}
body {-webkit-text-size-adjust: 100%;}/*横向きにしても文字サイズが変わらないようにする*/
ul {
  list-style-type:none;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
/* Formを装飾する場合
--------------------------------------------------------*/
input:focus {
	outline: 0;
}
input {
	outline: 0;
  border: 0;
}

/*========================================================
  Base
*/

/*共通*/
:root {
  --col-bg1: #f1f5f7;/*薄グレー*/
  --col-bg2: #1e323b;/*濃グレー*/
  --col-bg3: #ddeef6;/*薄水色*/
  --col-link: #008ed9;
  --col-01: #14adf3;/*水色*/
  --col-02: #008ed9;/*水色テキスト用*/
  --col-txt: #1e323b;/*ベーステキスト用*/
  --col-rate: #ff5858;/*料金*/
  --col-line: #d9e6eb;/*線 #e3f0f5*/
}

body {
  background-color: var(--col-bg1);
  font-size: 16px;
  line-height: 1;
  font-family: "Helvetica Neue", Arial,"Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--col-txt);
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*基本のリンク設定
  :link, :visited, :hover, :active, :focus
*/
a {
  color: var(--col-link);
  background: transparent;
  text-decoration: none;
  transition: 0.3s;
}
a.txt-link-white {
  color: #fff;
  position: relative;
  padding-left: 1em;
}
a.txt-link-white::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}

@media (hover: hover) {
  a:hover {
    color: var(--col-01);
  }
  a.txt-link-white:hover {
    /*border-bottom: 1px solid #fff;*/
    color: #fff;
    opacity: 0.85;
  }
}

img {
  width: 100%;
  height: auto;
}

/* Header
--------------------------------------------------------*/
.head_bar {
  position: sticky;
  top: 0;
  z-index: 10;
}
.head_bar .head_bar_wrap {
  background-color: #fff;
  box-shadow: 0px 3px 8px 0px rgba(47, 52, 54, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
  height: 60px;
}
.top_logo {}
.top_logo a {
  width: 160px;
  display: block;
  transition: 0.3s;
}

@media screen and (min-width: 1000px) {
  .head_bar .head_bar_wrap {
    height: 90px;
    padding: 0 30px;
  }
  .top_logo a {
    width: 200px;
  }
}

/*PCメニュー*/
.g-nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .g-nav {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .g-nav > ul:not(.g-nav-btn) {
    display: flex;
    gap: 60px;
  }
  .g-nav > ul:not(.g-nav-btn) > li {
    font-weight: bold;
  }
  .g-nav > ul:not(.g-nav-btn) > li a {
    color: var(--col-txt);
    padding: 10px 0;/*リンクエリア広げる*/
  }
}
@media (hover: hover) {
  .g-nav > ul:not(.g-nav-btn) > li a:hover {
    color: var(--col-01);
  }
}

/*SPメニュー*/
.g-nav-sp {
  display: none;
  background-color: var(--col-01);
  position: fixed;
  left: 0;
  top: 60px;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  text-align: center;
  padding-bottom: 90px;
  z-index: 999;
}
.g-nav-sp ul {
  margin: 40px auto;
  width: 80%;
}
.g-nav-sp ._main-nav li {
  font-size: 1.125rem;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
.g-nav-sp ._main-nav li a {
  color: #fff;
  display: block;
  padding: 1.5em 0;
}
@media screen and (min-width: 1000px) {
  .g-nav-sp {
    top: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .g-nav-sp {
    display: none;
  }
}

/*spメニュー内の問い合わせボタン*/
.g-nav-sp ._btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.g-nav-sp ._btn-wrap li {
  border-bottom: 0;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  height: 280px;
  position: relative;
  margin-bottom: 60px;
}
/*ボタンサイズ*/
.g-nav-sp ._btn-wrap li a {
  padding: 1.5em;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.g-nav-sp ._btn-wrap li::after {
  content: '';
  width: 100%;
  height: 120px;
}
.g-nav-sp ._btn-wrap li p {
  color: #fff;
  font-size: 0.937rem;
  text-align: center;
  line-height: 1.6;
  margin: auto 0 0;
}
.g-nav-sp ._btn-wrap li:nth-of-type(1)::after {
  background: url(/images/f_ill01.png) no-repeat center bottom -1px;
  background-size: contain;
}
.g-nav-sp ._btn-wrap li:nth-of-type(2)::after {
  background: url(/images/f_ill02.png) no-repeat center bottom -1px;
  background-size: contain;
}
.g-nav-sp ._btn-wrap li:nth-of-type(2)::before {
  content: '';
  border-top: 1px solid rgba(255,255,255,0.5);
  width: 100%;
  position: absolute;
  left: 0;
  top: -30px;
}
@media screen and (min-width: 1000px) {
  .g-nav-sp ._btn-wrap {
    flex-direction: row;
    gap: 40px;
  }
  .g-nav-sp ._btn-wrap li {
    width: calc((100% - 40px) / 2);
    height: 280px;
    margin-bottom: 0;
  }
  .g-nav-sp ._btn-wrap li:nth-of-type(2)::before {
    border-top: 0;
    border-left: 1px solid rgba(255,255,255,0.5);
    height: 100%;
    width: auto;
    left: -20px;
    top: 0;
  }
}
/*spメニュー内のその他メニュー*/
.g-nav-sp ._submenu {
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-nav-sp ._submenu li {
  display: block;
  padding: 0.5em 1em;
  font-size: 0.875rem;
  border-right: 1px solid rgba(255,255,255,0.5);
}
.g-nav-sp ._submenu li:last-child {
  border-right:0;
}
.g-nav-sp ._submenu li a {
  color: #fff;
}

/*ハンバーガー*/
.bt_ham {
  position: sticky;
  top: 10px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 9999
}
@media screen and (min-width: 1200px) {
  .bt_ham{
    display: none;
  }
}
.bt_ham span {
  background-color: var(--col-01);
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: calc((100% - 2px) / 2);/*センター寄せ*/
  height: 2px;/*太さ*/
  margin: auto;
  width: 80%;
  transition: all .4s;/*アニメーションの設定*/
  }
.bt_ham span:nth-of-type(1) {
  transform: translateY(-10px);
}
.bt_ham span:nth-of-type(2) {}
.bt_ham span:nth-of-type(3) {
  transform: translateY(10px);
}
/*activeクラスが付与されると線が回転して×に*/
.bt_ham.active span {
  /*background-color: #fff;*/
}
.bt_ham.active span:nth-of-type(1) {
  transform: rotate(45deg);
}
.bt_ham.active span:nth-of-type(2) {
  opacity: 0;
}
.bt_ham.active span:nth-of-type(3) {
  transform: rotate(-45deg);
}

/*問い合わせ、申込みボタン*/
.g-nav-btn {
  display: flex;
  gap: 15px;
}
.bt_contact,
.bt_application {
  box-shadow: 0px 5px 8px 0px rgba(47, 52, 54, 0.16);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.bt_contact {
  background: linear-gradient( -90deg, rgb(60,211,191) 0%, rgb(55,219,162) 30%, rgb(49,226,132) 100%);
}

/*申込みボタン*/
.bt_application {
  background: linear-gradient( -90deg, rgb(251,139,181) 0%, rgb(248,124,121) 37%, rgb(244,108,61) 100%);
}
.bt_contact span,
.bt_application span {
  color: #fff;
  font-weight: bold;
  position: relative;
}

/*グローバルナビ内の場合*/
.g-nav-btn .bt_contact {
  width: 220px;
  height: 56px;
}
.g-nav-btn .bt_application {
  width: 150px;
  height: 56px;
}

@media (hover: hover) {
  /*hover用*/
  .bt_contact::before,
  .bt_application::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    width: 100%;
    height: 100%;
    transition: 0.3s;
  }
  .bt_contact::before {
    background: linear-gradient( 90deg, rgb(60,211,191) 0%, rgb(55,219,162) 30%, rgb(49,226,132) 100%);
  }

  /*申込みボタン*/
  .bt_application::before {
    background: linear-gradient( 90deg, rgb(251,139,181) 0%, rgb(248,124,121) 37%, rgb(244,108,61) 100%);
  }
  .bt_contact:hover::before,
  .bt_application:hover::before {
    opacity: 0;
  }
}


/* main
--------------------------------------------------------*/
main {
  background-color: var(--col-bg1);
}

@media screen and (min-width: 1000px) {
  
}

/*top セクション1*/
.sec01 {
  background: var(--col-01) url("/images/stripe.png") no-repeat center top;
  background-size: cover;
  position: relative;
  padding: 40px 20px 15vw;
  z-index: 1
}
.sec01 .inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1540px;
  margin: 0 auto;
}
.sec01 .ttl-01 {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}
.sec01 .capture {
  background: url("/images/capture.png") no-repeat center;
  background-size: cover;
  width: 100%;
  max-width: 854px;
  aspect-ratio: 854 / 421;
  margin: 0 auto;
}
.sec01::after {
  background: url("/images/bg_nami_top.svg") no-repeat center bottom -1px;
  background-size: cover;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 12.5vw;
  z-index: 3
}

@media screen and (min-width: 1000px) {
  .sec01 {
    padding: 80px 20px 15vw;
  }
  .sec01 .inner {
    flex-direction: row;
    justify-content: center;
    gap: 3.8%;
  }
  .sec01 .ttl-01 {
    width: 38.88%;
    max-width: 598px;
    margin: 0;
  }
  .sec01 .capture {
    width: 55.45%;
    max-width: 854px;
    aspect-ratio: 854 / 421;
    margin: 0;
  }
}

/*top セクション2*/
.sec02 {
  position: relative;
  padding: 0 20px;
}
/*吹き出し*/
.sec02 .nayami {
  position: relative;
  top: -13vw;
  width: 100%;
  max-width: 739px;
  margin: 0 auto;
  z-index: 4
}
.sec02 ._inner01 {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  top: -12vw;
  z-index: 2;
}

@media screen and (min-width: 1200px) {
  /*吹き出し*/
  .sec02 .nayami {
    position: absolute;
    left: 6.8%;
    width: 48%;
  }
  .sec02 ._inner01 {
    top: 0;
    max-width: 1300px;
  }
  .sec02 ._inner01 .description {
    width: 46%;
    margin-left: auto;
  }
}

.sec02 ._inner02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  top: -8vw;
}

/*左のアウター*/
.sec02 .container01 {
  position: relative;
  width: 100%;
  max-width: 660px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/*背景白丸*/
.sec02 .container01::before {
  content: '';
  background-color: #fff;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  max-width: 580px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  margin: auto;
  z-index: -1;
}
/*水色キャッチコピー*/
.sec02 .container01 .catch01 {
  color: var(--col-02);
  font-size: clamp( 1.375rem, calc( 0.9634146341463414rem + 1.75609756097561vw ), 2.5rem );
  text-align: center;
  margin-bottom: 0.5em;
  line-height: 1.3;
  position: relative;
}
.sec02 .container01 p {
  font-size: clamp( 1.125rem, calc( 0.7840909090909092rem + 1.4545454545454546vw ), 1.875rem );
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
.sec02 .container01 .cont01 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*gap: 2%;*/
  height: 42%;
}
.sec02 .container01 .cont01::before {
  background: url("/images/ill_01.png") no-repeat 0 0;
  background-size: contain;
  content: '';
  width: 50%;
  height: 100%;
}
.sec02 .container01 .cont02 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*gap: 2%;*/
  height: 30%;
  top: -0.5em;
}
.sec02 .container01 .cont02::after {
  background: url("/images/ill_02.png") no-repeat 0 0;
  background-size: contain;
  content: '';
  width: 38%;
  height: 100%;
}
.sec02 .container01 ._color {
  color: #f5810e;
}

/*右のアウター*/
.sec02 .container02 {
  width: 100%;
  max-width: 490px;
  margin-top: 60px;
}

@media screen and (min-width: 1200px) {
  .sec02 ._inner02 {
    flex-direction: row;
    justify-content: space-between;
    margin: 0 0 80px 7%;
    top: 3vw;
    width: 78%;
  }
  /*左のアウター*/
  .sec02 .container01 {
    width: 50%;
  }
  /*右のアウター*/
  .sec02 .container02 {
    width: 38%;
    margin-top: 10vw;
  }
  .sec02 .container01 p {
    font-size: clamp( 1.25rem, calc( 1.0554979253112033rem + 0.8298755186721992vw ), 1.875rem );
  }
}

/*水色キャッチコピー*/
.sec02 .container02 .catch02 {
  color: var(--col-02);
  font-size: clamp( 1.375rem, calc( 1.0833333333333335rem + 1.2444444444444445vw ), 2.25rem );
  text-align: center;
  margin: 0 auto 1em;
  line-height: 1.3;
  position: relative;
  width: max-content;
}
.sec02 .container02 .catch02::before {
  background: url("/images/decoration_01.png") no-repeat 0 0;
  background-size: contain;
  content: '';
  position: absolute;
  top: -1.25em;
  left: -1.25em;
  width: 23%;
  height: 2.5em;
}
.sec02 .container02 .cont03 {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
}
.sec02 .container02 .check-list {
  margin-top: 1em;
}
.sec02 .container02 .check-list li {
  border-bottom: 2px dashed var(--col-line);
  position: relative;
  padding-left: 1.5rem;
  font-size: clamp( 1.125rem, calc( 1rem + 0.5333333333333333vw ), 1.5rem );
  font-weight: bold;
  line-height: 1.6;
  padding: 0.5em 0 0.5em 1.5em;
}
.sec02 .container02 .check-list li::before {
  font-family: 'Material Symbols Outlined';
  content: '\e5ca';
  color: var(--col-01);
  font-size: clamp( 1.25rem, calc( 0.9659090909090908rem + 1.2121212121212122vw ), 1.875rem );
  position: absolute;
  left: 0;
  top: 0.5em;
  line-height: 1
}

@media screen and (min-width: 1000px) {
  .sec02 .container02 .cont03 {
    padding: 30px 40px;
  }
  /*背景イラスト*/
  .sec02 .ill03 {
    background: url("/images/ill_03.png") no-repeat 0 0;
    background-size: cover;
    position: absolute;
    top: 11vw;
    right: 25px;
    width: 18vw;
    aspect-ratio: 37 / 35;
    z-index: -1;
  }
}

/*top セクション3*/
.sec03 {
  background: var(--col-01) url("/images/bg_pattern.png") no-repeat center top;
  background-size: cover;
  position: relative;
  padding: 10vw 20px 60px;
  z-index: 1
}
.sec03::before {
  background: url("/images/bg_nami_btm.svg") no-repeat center top;
  background-size: cover;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 10vw;
  z-index: 3;
}
.sec03 ._lead01 {
  color: #fff;
  text-align: center;
}

/*料金プラン*/
.rate-plan {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2em;
  width: 100%;
  max-width: 1180px;
  margin: 40px auto;
}
.rate-plan dl {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 5px 8px 0px rgba(47, 52, 54, 0.16);
  width: 100%;
  line-height: 1.6;
}
.rate-plan dl dt {
  border-radius: 10px 10px 0 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  height: 80px;
  position: relative;
}

.rate-plan dt .free-mark {
  box-shadow: 0 2px 3px rgba(0,0,0,0.2);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
}
.rate-plan .light dt {
  background-color: #4ce07c;
}

.rate-plan .standard dt {
  background-color: #3657e5;
}

.rate-plan .pro dt {
  background-color: #ee8755;
}

.rate-plan dl dd > ul > li {
  border-bottom: 1px solid var(--col-line);
  padding: 20px;
}
.rate-plan dl dd > ul > li:first-child {
  padding: 30px 20px 20px;
}
.rate-plan dl dd > ul > li:last-child {
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .rate-plan {
    flex-direction: row;
    gap: 50px;
  }
  .rate-plan dl {
    width: calc(100% * (360 / 1180));
  }
}
@media screen and (min-width: 1000px) {
  .sec03 {
    padding: 10vw 20px 80px;
  }
  .rate-plan {
    margin: 40px auto 80px;
  }
}

/*料金*/
.rate-plan .rate-txt {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0;
}
.rate-plan .rate-l {
  color: var(--col-rate);
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: clamp( 1.875rem, calc( 1.625rem + 1.0666666666666667vw ), 2.625rem );
  margin: 0 0.2em;
}
.rate-plan .rate-m {
  color: var(--col-rate);
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: clamp( 1.375rem, calc( 1.1920731707317074rem + 0.7804878048780488vw ), 1.875rem );
  margin: 0 0.2em;
}
.rate-plan .tax-in {
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.6;
}
.rate-plan .plan-info p {
  font-size: 0.937rem;
}

/*初月無料マーク*/
.free-mark {
  background-color: #fff55d;
  border-radius: 18px;
  color: var(--col-01);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  width: 136px;
  height: 36px;
  margin: 0 3px;
}
/*お得マーク*/
.otoku-mark {
  background-color: #fff55d;
  border-radius: 15px;
  color: var(--col-01);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  width: 130px;
  height: 30px;
  margin: 0 3px;
}

.rate_checklist li {
  position: relative;
  padding-left: 1.5rem;
  /*font-size: 1rem;*/
  line-height: 1.5;
  padding: 0.5em 0 0.5em 1.5em;
}
.rate_checklist li::before {
  font-family: 'Material Symbols Outlined';
  content: '\e5ca';
  color: var(--col-01);
  font-size: 1.25rem;
  position: absolute;
  left: 0;
  top: 0.5em;
  line-height: 1
}

/*注釈　※*/
.note01 {
  color: var(--col-01);
  display: inline-block;
  font-weight: normal;
  margin: 0 3px;
}

/*top セクション4　デザインサンプル*/
.sec04 {
  background-color: var(--col-bg2);
  position: relative;
  padding: 40px 20px;
}
/*スライドショー*/
.slide-wrap {
  display: flex;
  align-items: center;
  height: 392px;
  overflow: hidden;
  margin-bottom: 60px;
}
.slide-wrap .slideshow {
  display: flex;
  animation: loop-slide 20s infinite linear 1s both;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.slide-wrap .slideshow li {
  width: 524px;
  margin-right: 5%;
}

@media screen and (min-width: 1000px) {
  .sec04 {
    padding: 40px 20px 60px;
  }
}

/*top セクション5　お知らせ*/
.sec05 {
  position: relative;
  padding: 40px 20px;
  z-index: 1
}
/*お知らせ一覧*/
.news {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.news li a {
  border-top: 1px solid var(--col-line);
  color: var(--col-txt);
  display: flex;
  flex-direction: column;
  padding: 1.5em 0;
  transition: 0.3s;
  gap: 1em 1.5em;
}
.news li:last-child a {
  border-bottom: 1px solid var(--col-line);
}
.news li a .news_head {
  display: flex;
  align-items: center;
  gap: 1em;
}
.news li a time {
  border-right: 1px solid var(--col-line);
  padding: 0 1em 0 0;
}
/*お知らせのマーク*/
.mark-info,.mark-important {
  background-color: var(--col-line);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1em;
  font-size: 0.875rem;
  height: 24px;
  width: 10em;
}
.news li a p {
  line-height: 1.6;
  transition: 0.3s;
}

@media (hover: hover) {
  .news li a:hover {
    background-color: rgba(217,230,235,0.3);
  }
  .news li a:hover p {
    color: var(--col-02);
  }
  .news li a time {
    padding: 0 1.5em 0 0;
  }
}

@media screen and (min-width: 768px) {
  .sec05 {
    padding: 80px 20px;
  }
  .news li a {
    flex-direction: row;
    padding: 1.5em 0;
    transition: 0.3s;
  }
  .news li a .news_head {
    gap: 1.5em;
  }
}

/* Title
--------------------------------------------------------*/
/*ページタイトル*/
.page-head {
  background: var(--col-01) url("/images/stripe.png") no-repeat center top;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 140px;
  z-index: 1
}
.page-head ._inner {
  color: #fff;
  width: max-content;
  max-width: 1200px;
  margin: 0 auto;
}
.page-head .page-ttl {
  font-size: clamp( 1.5rem, calc( 1.3333333333333333rem + 0.7111111111111111vw ), 2rem );
}

@media screen and (min-width: 1000px) {
  .page-head {
    height: 230px;
  }
}

.ttl-02 {
  font-size: clamp( 1.5rem, calc( 1.225609756097561rem + 1.170731707317073vw ), 2.25rem );
  line-height: 1.3;
  text-align: center;
  margin: 2em auto 1em;
}
.ttl-02 ._en {
  display: block;
  color: var(--col-01);
  margin-bottom: 0.5em;
  font-size: clamp( 0.875rem, calc( 0.7835365853658537rem + 0.3902439024390244vw ), 1.125rem );
}
.ttl-02._white,
.ttl-02._white ._en {
  color: #fff;
}

.ttl-03 {
  font-size: clamp( 1.5rem, calc( 1.375rem + 0.5333333333333333vw ), 1.875rem );
  line-height: 1.3;
  text-align: center;
  margin: 0 auto 50px;
  position: relative;
}
.ttl-03::before {
  background-color: var(--col-01);
  border-radius: 5px;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1rem;
  width: 50px;
  height: 3px;
  margin: 0 auto;
}

/* ボタン
--------------------------------------------------------*/
.btn-01 {
  background: linear-gradient(90deg, rgb(240,195,75) 0%, rgb(242,174,68) 37%, rgb(244,152,61) 100%);
  box-shadow: 0px 5px 8px 0px rgba(47, 52, 54, 0.16);
  border-radius: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 340px;
  position: relative;
  transition: 0.3s;
  margin: 20px auto;
}
.btn-01 span {
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  position: relative;
}

@media (hover: hover) {
  /*hover用*/
  .btn-01::before {
    background: linear-gradient(-90deg, rgb(240,195,75) 0%, rgb(242,174,68) 37%, rgb(244,152,61) 100%);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 42px;
    width: 100%;
    height: 100%;
    transition: 0.3s;
  }
  .btn-01:hover::before {
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  .btn-01 {
    height: 84px;
    width: 360px;
  }
}

/* アニメーション付与
--------------------------------------------------------*/
.js-fade-up {
  transform: translateY(30px); /* 下に30pxの位置から */
	opacity: 0;
}
.js-fade-up.is-fadeup {
  transform: translateY(0);
	opacity: 1;
	transition: 1s 0.5s;/*1sはアニメーションの実行時間1秒。0.5sは0.5秒遅れてスタートする指定。*/
}
/*表示を遅らす*/
.js-fade-up.delay {
  transition: 1s 1s;
}


/* コンテンツ共通
--------------------------------------------------------*/
.l-container {
  background-color: var(--col-bg1);
  padding: 30px 20px 60px;
}
/*背景色を入れる場合*/
.l-container .w-full {
  width: calc(100% + 40px);
  margin: 0 -20px;
}
@media screen and (min-width: 1000px) {
  .l-container {
    padding: 60px 30px 100px;
  }
  .l-container .w-full {
    width: calc(100% + 60px);
    margin: 0 -30px;
  }
}

/* デザインサンプル
--------------------------------------------------------*/
#design {}
.design-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  /*max-width: 1200px;*/
  margin: 40px auto 80px;
}
.design-list li a {
  pointer-events: none;
}
.design-list li .caption {
  color: #9da1a4;
  font-size: 0.875rem;
  display: block;
  margin-top: 0.5em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .design-list {
    grid-template-columns: repeat(2, 1fr);
    margin: 80px auto 100px;
  }
  .design-list li a {
    pointer-events: auto;
  }
}

@media screen and (min-width: 1000px) {
  .design-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}

@media screen and (min-width: 1300px) {
  .design-list {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 40px;
  }
}

/* 料金プラン
--------------------------------------------------------*/
.bg03 {
  background-color: var(--col-bg3);
  padding: 40px 20px;
}
.standard-features {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.standard-features ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.standard-features li {
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1em;
  padding: 1em;
  /*width: calc(100% * (270 / 1200));
  margin-bottom: calc(100% * (40 / 1200));*/
}
.standard-features li .material-symbols-outlined {
  color: var(--col-01);
  font-size: 2.5rem;
}
.standard-features li p {
  font-size: 0.937rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .bg03 {
    padding: 80px 30px;
  }
  .standard-features {
    margin: 0 auto 80px;
  }
  .standard-features ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .standard-features li {
    padding: 20px;
  }
  .standard-features li p {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1200px) {
  .standard-features ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}
/*セキュリティー関連*/
.security-wrap {
  max-width: 1200px;
  margin: 0 auto 20px;
}
.security-wrap .security {
  margin-bottom: 60px
}
.security-wrap .security ._inner,
.security-wrap .notes ._inner {
  background-color: #fff;
  border-radius: 6px;
  padding: 20px;
}
.security-wrap .notes ._inner .indent-list {
  font-size: 0.875rem;
}

@media screen and (min-width: 1000px) {
  .security-wrap {
    display: flex;
    justify-content: space-between;
  }
  .security-wrap .security {
    width: calc(100% * (360 / 1200));
    margin-bottom: 0;
  }
  .security-wrap .notes {
    width: calc(100% * (800 / 1200));
  }
  .security-wrap .notes ._inner .indent-list {
    font-size: 1rem;
  }
}

/*オプション一覧*/
.option-container {
  max-width: 1200px;
  margin: 0 auto;
}
.option-tbl {
  width: 100%;
  margin: 40px auto 10px;
}
.option-tbl tr {
  border-bottom: 2px solid var(--col-bg1);
}
.option-tbl th,
.option-tbl td {
  display: block;
  /*font-size: 0.875rem;*/
  padding: 15px;
  line-height: 1.5
}
.option-tbl th {
  background-color: #e6eaec;
  /*width: 30%;*/
  vertical-align: middle;
}
.option-tbl td {
  background-color: #fff;
  /*width: 70%;*/
}
.option-tbl td ._inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.option-tbl td ._cont {
}
.option-tbl td ._rate {
  display: flex;
  align-items: center;
}
/*価格小*/
.option-tbl td ._rate ._rate-txt {
  font-size: 0.875rem;
  flex: 1;
}
.option-tbl td ._rate ._rate-b {
  font-size: 1.125rem;
  font-weight: bold;
}
.tbl-note {
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: right;
}

@media screen and (min-width: 1000px) {
  .option-tbl th {
    width: calc(100% * (240 / 1200));
  }
  .option-tbl td {
    width: auto;
  }
  .option-tbl th,
  .option-tbl td {
    display: table-cell;
    padding: 20px;
  }
  .option-tbl td ._inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
  .option-tbl td ._cont {
    width: calc(100% * (550 / 960));
  }
  .option-tbl td ._rate {
    width: calc(100% * (410 / 960));
  }
}

/*初回のみマーク*/
.first-mark,
.monthly-mark {
  border-radius: 11px;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.812rem;
  font-weight: bold;
  width: 70px;
  height: 22px;
  margin: 0 5px 0 0;
}
.first-mark {
  background-color: var(--col-01);
}
.monthly-mark {
  background-color: #0262bc;
}

/* ご利用の流れ
--------------------------------------------------------*/
#flow {}
.l-container ._lead01 {
  text-align: center;
}

.flow-list-head {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5vw;
  margin: 30px auto;
}
.flow-list-head li {
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 0px 5px 8px 0px rgba(47, 52, 54, 0.16);
  color: var(--col-01);
  width: 28vw;
  height: 28vw;
  max-width: 130px;
  max-height: 130px;
  text-align: center;
  padding: 6px;
  position: relative;
  outline: 2px solid transparent;
  transition: 0.3s;
}
.flow-list-head li a {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.flow-list-head li > span {
  border-bottom: 1px solid var(--col-01);
  display: block;
  font-size: clamp( 1.5rem, calc( 1rem + 2.1333333333333333vw ), 3rem );
  line-height: 1;
  padding: 10px 0 6px;
  margin-bottom: 6px;
}
.flow-list-head li p {
  font-size: clamp( 0.8125rem, calc( 0.7083333333333334rem + 0.4444444444444444vw ), 1.125rem );
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .flow-list-head li {
    width: 15.6vw;
    max-width: 140px;
    height: 15.6vw;
    max-height: 140px;
    padding: 10px;
  }
  .flow-list-head li > span {
    padding: 10px 0 8px;
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 1000px) {
  .flow-list-head {
    gap: 20px;
    margin: 60px auto;
  }
  .flow-list-head li {
    max-width: 156px;
    max-height: 156px;
    padding: 10px;
  }
}

@media (hover: hover) {
  .flow-list-head li:hover {
    outline: 2px solid rgba(20,173,243,0.60);
  }
}

.flow-list {
  max-width: 1200px;
  margin: 0 auto;
}
.flow-list li {
  background-color: #fff;
  border-top: 4px solid var(--col-01);
  box-shadow: 0px 5px 8px 0px rgba(47, 52, 54, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 20px 30px;
  margin-bottom: 30px;
}
.flow-list li ._step {
  color: var(--col-01);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.flow-list li ._step span {
  position: relative;
  border-bottom: 1px solid var(--col-01);
  display: block;
  line-height: 1;
  font-size: 3rem;
  padding-bottom: 8px;
}
.flow-list li ._step span::before {
  content: 'STEP';
  font-size: 1rem;
  display: inline-block;
  margin-right: 3px;
}
.flow-list li ._step p {
  color: var(--col-02);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.flow-list li ._ill {
  width: 170px;
}
.flow-list li ._info {
  text-align: center;
}
.flow-list li ._info p {
  font-size: 0.937rem;
}
.flow-list li ._info .bt_wrap {
  margin-top: 16px;
}

/*ボタン*/
.flow-list li ._info .bt_wrap .bt_contact,
.flow-list li ._info .bt_wrap .bt_application {
  width: 260px;
  height: 56px;
  margin: auto
}

@media screen and (min-width: 768px) {
  .flow-list li {
    border-left: 4px solid var(--col-01);
    border-top: none;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 30px;
    margin-bottom: 40px;
  }
  .flow-list li ._info {
    text-align: left;
  }
  .flow-list li ._info p {
    font-size: 1rem;
  }
  .flow-list li ._info .bt_wrap .bt_contact,
  .flow-list li ._info .bt_wrap .bt_application {
    margin: 0
  }
}

/* 利用規約
--------------------------------------------------------*/
#terms .l-container {
  background-color: #fff;
}
#terms section {
  margin: 40px auto 60px;
  max-width: 1200px;
  font-size: 0.937rem;
}

@media screen and (min-width: 1000px) {
  #terms section {
    font-size: 1rem;
  }
}

#terms h3 {
  border-bottom: 3px solid #14adf3;
  font-size: clamp( 1.5rem, calc( 1.375rem + 0.5333333333333333vw ), 1.875rem );
  font-weight: normal;
  margin-bottom: 2em;
  padding-bottom: 1em;
}
#terms section:not(:first-child) h3 {
  margin-top: 3em;
}
#terms h4 {
  border-bottom: 2px solid var(--col-line);
  font-size: clamp( 1.125rem, calc( 1.0416666666666667rem + 0.35555555555555557vw ), 1.375rem );
  font-weight: normal;
  margin: 2.5em 0 1em;
  padding-bottom: 1em;
  position: relative;
}
#terms h4::after {
  background-color: var(--col-01);
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 2px;
}
#terms section p {
  line-height: 1.6;
}
/*ol リスト共通*/
#terms section > ol {
  margin-left: 2em;
}
#terms ol li {
  line-height: 1.6;
  margin-bottom: 0.75em;
}
/*入れ子olのスタイル*/
#terms ol.nest1 {
  list-style: none;
  counter-reset: number;
  margin: 1em 0 1em 1em;
}
#terms ol.nest1 > li {
  position: relative;
  padding-left: 2.5em;
}
#terms ol.nest1 > li::before {
  counter-increment: number;
  content: '（' counter(number) '）';
  position: absolute;
  left: 0;
}

/*2階層入れ子olのスタイル*/
#terms ol.nest2 {
  margin: 1em 0 1em 2em;
}
#terms ol.nest2 > li {
  list-style-type: katakana;
}

/* よくある質問
--------------------------------------------------------*/
#faq {}
.faq-list {
  font-size: 0.875rem;
  margin: 40px auto;
  max-width: 1200px;
}
.faq-list dt {
  border-bottom: 1px solid var(--col-line);
  padding: 15px 0;
  display: flex;
  gap: 10px;
  cursor: pointer;
  position: relative;
}
/*矢印*/
.faq-list dt::after {
  content: '';
  border-bottom: var(--col-01) 2px solid;
  border-right: var(--col-01) 2px solid;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin: auto;
  transition: 0.3s
}
.faq-list dt.openclose._on::after {
  transform: rotate(225deg);
}
.faq-list p {
  line-height: 1.6;
}
.faq-list p {
  flex: 1;
  margin-top: 5px;
}
.faq-list ._icon {
  border-radius: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  width: 30px;
  height: 30px;
}
.faq-list dt ._icon {
  background-color: #F2B346;
}
.faq-list dd ._icon {
  background-color: var(--col-02);
}
.faq-list dd {
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  gap: 10px;
  padding: 20px 30px 20px 20px;
  margin: 20px 0;
}
.faq-list dd .answer {
  flex: 1;
}

@media screen and (min-width: 1000px) {
  .faq-list {
    font-size: 1rem;
  }
  .faq-list dt {
    padding: 20px 0;
  }
  .faq-list ._icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
  .faq-list dt p {
    margin-top: 7px;
  }
  .faq-list dd {
    margin: 20px 0 20px 40px;
  }
}


/* お知らせ
--------------------------------------------------------*/
#news .news {
  margin: 40px auto;
}

/* ページャー */
.page-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 40px auto;
}
.page-nav li {
  position: relative;
}
.page-nav li.omit {
  margin: 0 -3px;
}
.page-nav li.prev span,
.page-nav li.next span {
  border: var(--col-line) 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}
.page-nav li.prev span {
  padding-left: 2px;
}
.page-nav li.next span {
  padding-right: 2px;
}
.page-nav li.prev span::after,
.page-nav li.next span::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  transition: 0.3s;
}
.page-nav li.prev span::after {
  border-top: var(--col-01) 2px solid;
  border-right: var(--col-01) 2px solid;
  transform: rotate(-135deg);
}
.page-nav li.next span::after {
  border-top: var(--col-01) 2px solid;
  border-right: var(--col-01) 2px solid;
  transform: rotate(45deg);
}
.page-nav li._on,
.page-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}
.page-nav li._on {
  background-color: var(--col-line); 
}
.page-nav li._on span {
  color: #fff;
  /*margin: auto;*/
}
@media (hover: hover) {
  .page-nav li.prev:hover span,
  .page-nav li.next:hover span {
    border: var(--col-01) 1px solid;
  }
}

/*年アーカイブ*/
.year-archive-ttl {
  margin: 40px auto 20px;
  max-width: 1200px;
}
.year-archive {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 60px;
  max-width: 1200px;
}
.year-archive li {
  position: relative;
}
.year-archive li ._on {
  color: var(--col-txt);
}
.year-archive li::after {
  content: '／';
  display: inline-block;
  color: #ddd;
  margin-left: 10px;
}
.year-archive li:last-child::after {
  content: '';
  margin-left: 0;
}

/*お知らせ詳細*/
#news-det .news_detail .news-ttl {
  border-bottom: 1px solid var(--col-line);
  font-size: clamp( 1.25rem, calc( 1.1666666666666667rem + 0.35555555555555557vw ), 1.5rem );
  line-height: 1.6;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
#news-det .news_detail ._inner {
  max-width: 1000px;
  margin: 40px auto;
}
#news-det .news_detail .news_head {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 0.875rem;
}
.news_detail .news_content {
  margin: 40px 0;
  line-height: 1.6;
}
.news_detail .news_content p + p {
  margin-top: 1em;
}

/*前ページに戻る*/
.f_link {
  display: flex;
  align-items: center;
  margin: 20px 0;
  gap: 6px;
}
.f_link::before {
  content: '';
  border-top: var(--col-01) 2px solid;
  border-left: var(--col-01) 2px solid;
  transform: rotate(-45deg);
  width: 8px;
  height: 8px;
}
@media screen and (min-width: 1000px) {
  .news_detail .news_content {
    margin: 60px 0;
    line-height: 1.8;
  }
}


/*404*/
#error .page-ttl {
  font-size: clamp( 1.875rem, calc( 1.5909090909090908rem + 1.2121212121212122vw ), 2.5rem );
}
#error .error_detail .error-ttl {
  border-bottom: 1px solid var(--col-line);
  font-size: clamp( 1.5rem, calc( 1.3295454545454546rem + 0.7272727272727273vw ), 1.875rem );
  line-height: 1.6;
  text-align: center;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
#error .error_detail ._inner {
  max-width: 1000px;
  margin: 30px auto;
}
.error_detail .error_content {
  margin: 40px 0;
  line-height: 1.6;
}
.error_detail .error_content p + p {
  margin-top: 1em;
}

/*前ページに戻る*/
.f_link {
  display: flex;
  align-items: center;
  margin: 20px 0;
  gap: 6px;
}
.f_link::before {
  content: '';
  border-top: var(--col-01) 2px solid;
  border-left: var(--col-01) 2px solid;
  transform: rotate(-45deg);
  width: 8px;
  height: 8px;
}
@media screen and (min-width: 1000px) {
  #error .error_detail ._inner {
    margin: 40px auto;
  }
  .error_detail .error_content {
    margin: 60px 0;
    line-height: 1.8;
  }
}

/* ページ下部のバナー
--------------------------------------------------------*/
.bn_container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 40px auto;
}
.bn_container li {
  transition: 0.3s;
  margin-bottom: 20px;
}
.bn_container li img {
  box-shadow: 0px 5px 8px 0px rgba(47, 52, 54, 0.16);
}
@media screen and (min-width: 768px) {
  .bn_container {
    flex-direction: row;
    justify-content: space-between;
    margin: 60px auto;
  }
  .bn_container li {
    width: 47.5%;
    margin-bottom: 0;
  }
}

@media (hover: hover) {
  .bn_container li:hover {
   opacity: 0.8; 
  }
}


/* Footer コンテンツ
--------------------------------------------------------*/
.f-contact {
  display: flex;
  flex-direction: column;
}
.f-contact ._lead01 {
  color: #fff;
  font-weight: bold;
}
.f-contact ._left {
  background: var(--col-02) url("/images/f_ill01.png") no-repeat center bottom -1px;
  background-size: 45%;
  padding: 50px 30px 40px;
}
.f-contact ._inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  height: 100%;
}
.f-contact ._inner .bt_wrap {
  margin-top: auto;
  padding-top: 10px;
}
.f-contact ._left ._inner {
  margin-bottom: 35%;
} 
.f-contact ._right {
  background: var(--col-01) url("/images/f_ill02.png") no-repeat center bottom -1px;
  background-size: 45%;
  padding: 50px 30px 40px;
}
.f-contact ._right ._inner {
  margin-bottom: 35%;
} 

/*フッター内の場合*/
.f-contact .bt_contact {
  width: 340px;
  height: 70px;
}
.f-contact .bt_application {
  width: 340px;
  height: 70px;
}

@media screen and (min-width: 1100px) {
  .f-contact {
    flex-direction: row;
  }
  .f-contact ._left {
    background: var(--col-02) url("/images/f_ill01.png") no-repeat left 1vw bottom -1px;
    background-size: 32%;
    padding: 50px 50px 40px;
    width: 50%;
  }
  .f-contact ._inner {
    align-items: stretch;
    text-align: left;
  }
  .f-contact ._left ._inner {
    margin-bottom: 0;
    margin-left: 35%;
  } 
  .f-contact ._right {
    background: var(--col-01) url("/images/f_ill02.png") no-repeat bottom -1px right 1vw;
    background-size: 32%;
    padding: 50px 50px 40px;
    width: 50%;
  }
  .f-contact ._right ._inner {
    margin-bottom: 0;
    margin-right: 35%;
  }
  /*フッター内の場合*/
  .f-contact .bt_contact {
    width: auto;
    max-width: 360px;
    height: 84px;
  }
  .f-contact .bt_application {
    width: auto;
    max-width: 360px;
    height: 84px;
  }
}

/* Footer
--------------------------------------------------------*/
footer {
  background-color: var(--col-bg1);
  padding: 0 20px 20px;
  position: relative;
}
footer ._inner {
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
}
footer ._inner .f-content_wrap {
  display: flex;
  gap: 1em;
}
footer .f-content1 {
  width: 50%;
}
footer .f-content1 .f-logo {
  max-width: 160px;
  margin-bottom: 1.5em;
}
footer .f-content1 .f-cp {
  line-height: 1.6;
}
footer .f-content1 .f-cp dt {
  font-weight: bold;
  padding: 0 0 0.5em;
}
footer .f-content1 .f-cp dd {
  font-size: 0.812rem;
}
footer .f-content2 {
  width: 50%;
  padding-top: 70px;
}
footer .f-content2 .f-nav li {
  margin-bottom: 1em;
  font-size: 0.812rem;
}
footer .f-content2 .f-nav li a {
  display: inline-block;
  position: relative;
  padding-left: 16px;
}
footer .f-content2 .f-nav li a::before {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
}
@media screen and (min-width: 768px) {
  footer .inner {
    padding: 0;
  }
  footer .f-content1 .f-cp dd {
    font-size: 0.875rem;
  }
  footer .f-content2 .f-nav li {
    font-size: 0.937rem;
  }
}
  
footer .copyright {
  color: #888;
  font-size: 0.875rem;
  margin-top: 3em;
}


/* Page top
--------------------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 60px;
  right: 10px;
  z-index: 8;
}
#page-top a {
  background-color: rgba(0,0,0,0.80);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  transition: 0.3s;
}
#page-top a::before {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  translate: 0 0;
  rotate: 45deg;
  display: block;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  #page-top {
    bottom: 100px;
  }
}

@media (hover: hover) {
  #page-top a:hover {
    background-color: rgba(0,0,0,0.50);
  }
  #page-top a:hover::before {
    translate: 0 -3px;
  }
}


/* 改行
--------------------------------------------------------*/
@media screen and (min-width: 768px) {
  br.sp {
    display: none;
  }
}

/* Text
--------------------------------------------------------*/
p.l_nomal { line-height: 1.6;}
p.l_wide { line-height: 2;}

.txt-left { text-align: left !important;}
.txt-right { text-align: right !important;}
.txt-center { text-align: center !important;}

/*大きく*/
.txt-larger {
  font-size: 1.2em;
  font-weight: normal;
}
/*boldで大きく*/
.txt-stronger {
  font-size: 1.2em;
  font-weight: bold;
}
/*nomalで小さく*/
.txt-smaller {
  font-size: 0.85em;
  font-weight: normal;
}

._lead01 {
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 1000px) {
  ._lead01 {
    font-size: 1.125rem;
  }
}

/*色つきテキスト*/
.txt-col-01 {
  color: #65a8d4;
}


/* List
--------------------------------------------------------*/
.nomal-list li {
  list-style-type: disc;
  margin: 0.25em 0 0.25em 2em;
  padding: 0.25em;
}

/* Indent
--------------------------------------------------------*/
/*1文字インデント*/
.txt-indent {
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.txt-indent span {
  display: inline-block;
  width: 1.2em;
  text-indent: 0;
}
/*インデントリスト*/
.indent-list {
  text-align: left;
}
.indent-list li {
  margin-bottom: 1em;
  text-indent: -1.5em;
  padding-left: 1.5em;
  line-height: 1.6;
}
.indent-list li span {
  display: inline-block;
  width: 1.5em;
  text-indent: 0;
  margin: 0;
  }

/* Clearfix
--------------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
  height: 0px;
  overflow: hidden;
}

/* 外部リンク
--------------------------------------------------------*/
a.external {
  position: relative;
}
a.external::after {
  content: '\e89e';
  font-family: 'Material Symbols Outlined';
  display: inline-block;
  margin-left: 3px;
}