/* ベース */

:root{
--text-color-1: #000;
--text-color-2: #222;
--text-color-3: #FFF;
--text-color-4: #DD0000;
--background-color-1: #FFF;
--background-color-2: #fff100;
--background-color-3: #f5f5f5;
--chatbutton-color: #eb6100;
--chatbutton-color--hover: #eb6100;
}
/*var(--text-color-2)*/
/*var(--background-color-3)*/

section *,
.site-footer *{
font-feature-settings: "palt" 1;
}

.site-header {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #BBBBBB;
  padding: 22px 0;
  font-family: sans-serif;
}
.site-header.inside .logo {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.site-header.inside .logo img{
  width: 100px;
  height: auto;
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ロゴ */
.site-header__logo a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

/* ナビ */
.site-header__nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav li {
  margin-left: 24px;
}

.site-header__nav a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  transition: color 0.3s;
}

.site-header__nav a:hover {
  color: #007acc;
}

.site-header__menu .logo img{
  width: 100px;
  height: auto;
}

/* ハンバーガーメニュー：デフォルト非表示 */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

/* --- レスポンシブ --- */
@media screen and (min-width: 768px) {
    .site-header.inside {
      border-top: 2px solid #E0481D;
      position: relative;
    }
    .site-header .logo a{
        padding: 7px;
        position: relative;
        display: block;
    }
    .site-header .logo a:hover,
    .site-header .logo a:focus-visible{
      outline: none;
    }
    .site-header .logo a::after{
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        border: 2px solid transparent;
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
        transition-duration: 300ms;
    }
    .site-header .logo a:hover::after,
    .site-header .logo a:focus-visible::after{
        border-color: #757575;
    }
}
@media (max-width: 768px) {
/*  .site-header{
    border: #003594 2px solid;
  }*/
  .site-header .site-header__inner{
    border: none;
  }
  /* ナビ非表示 */
  .site-header__nav {
    display: none;
  }

  /* ハンバーガー表示 */
  .hamburger {
    display: flex;
  }
}

/* フッター全体 */
.site-footer {
  background-color: var(--background-color-3);
  padding: 32px 0;
  font-family: sans-serif;
  position: relative;
}

/* 内側ラッパー */
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.importantNotes{
margin-bottom: 50px;
}
.importantNotes h2,
.recommendedBrowsers h2{
font-size: 22px;
font-weight: 700;
/*padding-bottom: 34px;*/
padding-bottom: clamp(18px, calc(18px + 16 * ((100vw - 768px) / 392)), 34px);
border-bottom: 1px solid var(--text-color-2);
margin-bottom: 35px;

}
.recommendedBrowsers{
margin-bottom: 50px;
}
.recommendedBrowsers p{
/*font-size: 1.25rem;*/
font-size: clamp(15px, calc(15px + 5 * ((100vw - 768px) / 392)), 20px);
line-height: 1.8em;
margin-bottom: 0.25rem;
}
.notesList{

}
.notesList li{
/*font-size: 1.25rem;*/
font-size: clamp(15px, calc(15px + 5 * ((100vw - 768px) / 392)), 20px);
padding-left: 1.5rem;
position: relative;
margin-bottom: 0.55rem;
}
.notesList li::before{
content: "●";
display: block;
font-size: clamp(15px, calc(15px + 5 * ((100vw - 768px) / 392)), 20px);
position: absolute;
top: 0.02rem;
left: 0;
}
.recommendedBrowsers .notesList li::before{
content: "・";
}
.recommendedBrowsers .notesList + p{
margin-top: 0.55rem;
}

.footerPolicy{
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 50px;
}

.sitePolicy{

}
.sitePolicy a,
.termsOfUse a{
display: block;
font-size: 0.875rem;
text-align: center;
padding: 4px 20px;
border: 1px solid #333;
}


/* ロゴ */
.site-footer__logo a {
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
}

/* ナビ */
.site-footer__nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.site-footer__nav li {
  margin-left: 24px;
}

.site-footer__nav li:first-child {
  margin-left: 0;
}

.site-footer__nav a {
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.site-footer__nav a:hover {
  color: #fff;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__logo {
    margin-bottom: 16px;
  }

  .site-footer__nav ul {
    flex-direction: column;
  }

  .site-footer__nav li {
    margin-left: 0;
    margin-bottom: 12px;
  }

  .site-footer__nav li:last-child {
    margin-bottom: 0;
  }
}



/* メイン全体 */
.main-content {
  font-family: sans-serif;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}


/***/
.contentWrapperY{
  width: 100%;
  background-color: var(--background-color-2);
}
.contentWrapperW{
  width: 100%;
  background-color: var(--background-color-1);
}
.contentWrapperInner{
  max-width: 1200px;
/*  padding: 60px 20px 40px;*/
  padding: 20px 20px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
.contentWrapperInner{
/*  padding: 100px 20px 40px;*/
  padding: 20px 20px 40px;
}
}


/* ヒーロー */
.heroWrapper{
padding-bottom: clamp(40px, calc(120px - 80 * ((100vw - 768px) / 432)), 120px);
position: relative;
}
.seodanLogo{
position: absolute;
top: 0;
left: 0;
}


.hero {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.hero h1 {
  font-size: 2rem;
  color: var(--text-color-1);
/*s  margin-bottom: 16px;*/
}

.hero p {
  font-size: 1.94rem;
  color: var(--text-color-1);
  margin-bottom: 24px;
}
.heroImg01,
.heroImg02{
position: absolute;
/*bottom: -180px;*/
bottom: clamp(-234px, calc(-234px + 99 * ((100vw - 768px) / 432)), -135px);
}
.heroImg01{
/*width: 288px;*/
width: clamp(144px, calc(144px + 144 * ((100vw - 768px) / 432)), 288px);
left: -32px;
}
.heroImg02{
/*width: 342px;*/
width: clamp(171px, calc(171px + 171 * ((100vw - 768px) / 432)), 342px);
/*right: -100px;*/
right: clamp(-114px, calc(-24px + -90 * ((100vw - 768px) / 432)), -24px);
}
.heroImg01 img{
width: 100%;
}
.heroImg02 img{
width: 100%;
}
/***/
.hero p.mainCopy{
/*font-size: 4.81rem;
font-size: 4.71rem;*/
/*font-size: clamp(38px, calc(38px + 38.5 * ((100vw - 768px) / 392)), 76.0px);*/
font-size: clamp(38px, calc(38px + 21 * ((100vw - 768px) / 392)), 59px);
line-height: 2.0em;
font-weight: 700;
margin-top: 0;
}
.break1220{
display: none;
}
@media screen and (max-width: 1220px) {
.hero p.mainCopy{
line-height: 2em;
}
.break1220{
display: block;
}
}

.hero p.mainCopy span{
display: inline-block;
padding: 0 .65em;
position: relative;
z-index: 1;
}
.hero p.mainCopy span.bubble1::before{
content: "";
display: block;
background-image: url(../images/bubble_01.svg);
background-repeat: no-repeat;
position: absolute;
top: 50%;
left: 50%;
transform-origin: center;
transform: translate(-50%, calc(-50% + 1rem));
width: 232px;
/*width: clamp(143px, calc(143px + 162 * ((100vw - 768px) / 392)), 305px);*/
height: 136px;
/*height: clamp(102px, calc(102px + 74 * ((100vw - 768px) / 392)), 176px);*/
z-index: -1;
}
.hero p.mainCopy span.bubble2::before{
content: "";
display: block;
background-image: url(../images/bubble_02.svg);
background-repeat: no-repeat;
position: absolute;
top: 50%;
left: 50%;
transform-origin: center;
transform: translate(-50%, calc(-50% + 1rem));
width: 232px;
/*width: clamp(143px, calc(143px + 162 * ((100vw - 768px) / 392)), 305px);*/
height: 136px;
/*height: clamp(102px, calc(102px + 74 * ((100vw - 768px) / 392)), 176px);*/
z-index: -1;
}



.hero p.leadText{
/*font-size: 1.94rem;*/
/*font-size: clamp(22px, calc(22px + 9.399 * ((100vw - 768px) / 392)), 29px);*/
font-size: clamp(22px, calc(22px + 3 * ((100vw - 768px) / 392)), 24px);
font-weight: 700;
}
.notice{
margin-bottom: 30px;
}
.notice div:nth-child(1){
/*font-size: 59px;*/
font-size: clamp(43px, calc(43px + 16 * ((100vw - 768px) / 392)), 59px);
font-weight: 900;
}
.notice div:nth-child(2){
/*font-size: 24px;*/
/*font-size: clamp(18px, calc(18px + 6 * ((100vw - 768px) / 392)), 24px);*/
font-size: clamp(16px, calc(18px + 6 * ((100vw - 768px) / 392)), 20px);
font-weight: 500;
}


/** chat button **/
.btnSet{
width: 100%;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.btnChat {
position: relative;
margin: 0 auto;
/*max-width: 644px;
max-height: 177px;*/
width: clamp(441px, calc(441px + 203 * ((100vw - 768px) / 432)), 644px);
height: clamp(121px, calc(121px + 56 * ((100vw - 768px) / 432)), 177px);
}
.btnChat a{
display: inline-flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 5px;
width: 100%;
height: 100%;
padding: 15px 10px;
background-color: var(--chatbutton-color);
border: 1px solid var(--chatbutton-color);
border-radius: 9999px;
transition: background-color .3s;
}
.btnChat a:link,
.btnChat a:visited,
.btnChat a:active{
text-decoration: none;
color: var(--text-color-3);
}
.btnChat a:hover{
background-color: var(--background-color-1);
color: var(--chatbutton-color);
}
.btnLabel{
display: inline-block;
/*font-size: 52px;*/
font-size: clamp(28px, calc(28px + 24 * ((100vw - 768px) / 507)), 52px);
line-height: 1;
font-weight: 800;
}
.btnLabelSub{
display: inline-block;
/*font-size: 27px;*/
font-size: clamp(18px, calc(18px + 9 * ((100vw - 768px) / 507)), 27px);
line-height: 1;
font-weight: 600;
margin-top: 10px;
}

.btnChat2{
position: fixed;
right: 0;
top: 200px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 100;

}
.btnChat2 a{
display: inline-flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2px;
background-color: var(--chatbutton-color);
border: 1px solid var(--chatbutton-color);
border-radius: 6px 0 0 6px;
padding: 12px 24px;
transition: background-color .3ss;
}
.btnChat2 svg{
display: inline-block;
/*width: 90px;*/
width: clamp(70px, calc(70px + 20 * ((100vw - 768px) / 392)), 90px);
height: auto;
margin-bottom: 4px;
}
.btnChat2 a .chatbaloon{
fill: var(--background-color-1);
transition: fill .3s;
}
.btnChat2 span{
display: inline-block;
text-align: center;
/*font-size: 1rem;*/
font-size: clamp(14px, calc(14px + 2 * ((100vw - 768px) / 392)), 16px);
line-height: 1.2em;
font-weight: 500;
color: var(--text-color-3);
transition: color .3s;
}
.btnChat2 a:hover{
background-color: var(--background-color-1);
}
.btnChat2 a:hover .chatbaloon{
fill: var(--chatbutton-color);
}
.btnChat2:hover span{
color: var(--chatbutton-color);
}
@media screen and (max-width: 768px) {
.btnChat2 a{
padding: 6px 16px;
}
}

/** 最新情報 **/
.news{
margin-bottom: 60px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;

}
.newsWrapper{
padding: 24px 30px;
border-left: 4px solid #B6B7BA;
border-top: 4px solid #B6B7BA;
}
@media screen and (max-width: 768px) {
.newsWrapper{
padding: 15px;
border-width: 2px;
}
}
.news h2{
font-size: 2.88rem;
font-weight: 600;
margin-bottom: 20px;
}
.newsList{
max-width: 1088px;
background-color: var(--background-color-1);

}
.newsList dl{
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 0.75em;
}
.newsList dt{
color: var(--text-color-2);
/*font-size: 1.35rem;*/
font-size: clamp(18px, calc(18px + 3.60 * ((100vw - 768px) / 392)), 21.6px);
width: 8.75em;
}
.newsList dt::before{
content: "●";
display: inline-block;
margin-right: 0.25em;
}
.newsList dd{
/*font-size: 1.35rem;*/
font-size: clamp(18px, calc(18px + 3.60 * ((100vw - 768px) / 392)), 21.6px);
width: calc(100% - 9.5em);
}
.newsList dd ul{
display: flex;
flex-direction: column;
gap: 15px;
}
.newsContent{
max-width: 1088px;
margin: 0 auto 0 0;
}
.newsContent{
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #B6B7BA;
}

.newsContent .newsTitle{
/*font-size: 1.5rem;*/
font-size: clamp(20px, calc(20px + 4 * ((100vw - 768px) / 392)), 24px);
font-weight: 700;
}
.newsContent p{
/*font-size: 1.35rem;*/
font-size: clamp(18px, calc(18px + 3.60 * ((100vw - 768px) / 392)), 21.6px);
line-height: 1.5;
}
.newsContent li{
/*font-size: 1.35rem;*/
font-size: clamp(18px, calc(18px + 3.60 * ((100vw - 768px) / 392)), 21.6px);
line-height: 1.5;
position: relative;
padding-left: 1em;
}
.newsContent li::before{
content: "・";
display: block;
position: absolute;
top: 0;
left: 0;
}
.textColor-red{
color: var(--text-color-4);
}



@media screen and (max-width: 768px) {
.newsList dl{
flex-direction: column;
gap: 0.5em;
}
.newsList dl dt{
min-width: auto;
}
.newsList dl dd{
width: 100%;
margin-bottom: 1em;
}
}


/* 特長セクション */
.pb0{
padding-bottom: 0;
}
h2.feature {
/*  font-size: 4.69rem;*/
font-size: clamp(38px, calc(38px + 38.5 * ((100vw - 768px) / 392)), 76.0px);
  font-weight: 600;
  text-align: center;
  color: var(--text-color-2);
  margin-bottom: 12px;
}
.featuresColumnSet{
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto 60px;
  max-width: 780px;
}
.featuresColumnSet .column{
  width: calc((100% - 48px) / 3);
  flex: 1;
  padding: 0;
}
.featuresColumnSet .column p{
margin-bottom: 0;
}
.featuresColumnSet .column p{
vertical-align: bottom;
}
.featuresCopy{
/*  font-size: 1.94rem;*/
font-size: clamp(22px, calc(22px + 9.399 * ((100vw - 768px) / 392)), 29px);
  font-weight: 600;
  text-align: center;
  color: var(--text-color-2);
margin-bottom: 60px;
}
.features .notice{
text-align: center;
margin: 0 auto 30px;
}

.column p {
  color: #555;
  font-size: 0.95rem;
}
@media screen and (max-width: 768px) {
.columnSet{
flex-direction: column;
}
.column{
  width: 100%;
  flex: 1;
}
.featuresColumnSet{
  gap: 4px;
}
}


/* --- レスポンシブ --- */
@media screen and (max-width: 1460px) {
  .site-header__inner{
    margin-right: 132px;
  }
}
@media screen and (max-width: 768px) {
  .site-header__inner{
    margin-right: auto;
  }
  .site-header.inside .logo{
    display: none;
  }
  .features {
    flex-direction: column;
  }
}


/** pagetop **/
#pageTop{
max-width: 1200px;
margin: 0 auto;
position: relative;
bottom: -32px;
text-align: right;
}
#pageTop a{
position: relative;
display: block;
width: 55px;
height: 55px;
display: block;
font-size: 0;
line-height: 0;
background-color: #333333;
bottom: 0;
right: 20px;
margin: 0 0 0 auto;
}
#pageTop a span{
display: block;
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
border: 0;
clip: rect(0,0,0,0);
clip-path: inset(50%);
white-space: nowrap;
}
#pageTop a::after {
position: absolute;
top: 24px;
left: 0;
right: 0;
display: block;
width: 22px;
height: 22px;
border-top: solid 2px #ffffff;
border-left: solid 2px #ffffff;
content: "";
margin-right: auto;
margin-left: auto;
transform: rotate(45deg);
}
#pageTop a:hover{
background-color: #666;
}