@charset "utf-8";

:root {
	--pcp: / 1347 * 100%;
	--pcv: / 1347 * 100vw;
	
	--spp: / 375 * 100%;
	--spv: / 375 * 100vw;
}

html {
	background: #fff;
	scroll-padding-top: 133px;
	scroll-behavior: smooth;
}

body{
	font-family: sans-serif;
}

.page-cont p,
.page-cont th,
.page-cont td,
.page-cont li {
	margin: 0;
	line-height: 1;
}

.page-cont ul,
.page-cont ol {
	list-style-type: none;
}


@media print, screen and (min-width:768px) {
	.pc-none {
		display: none !important;
	}
	.box1220 {
		max-width: 1220px;
		width: calc(1220 var(--pcp));
		margin: 0 auto;
		position: relative;
	}
	.box1012 {
		max-width: 1012px;
		width: calc(1012 var(--pcp));
		margin: 0 auto;
		position: relative;
	}
	
	a[href^="tel:"] {
		pointer-events: none;
		color: #000;
		text-decoration: none;
	}
}

@media screen and (max-width:767px) {
	html {
		scroll-padding-top: 86px;
	}
	.sp-none {
		display: none !important;
	}
	.box-sp {
		width: calc(345 var(--spp));
		margin: 0 auto;
		position: relative;
	}
}

/* -------------------------------------------------
	header
------------------------------------------------- */

@media print, screen and (min-width:768px) {
	.header-wrap {
		height: 123px;
	}
	#header {
		width: 100%;
		height: 123px;
		box-sizing: border-box;
		border-bottom: solid 2px #ccc;
		background: #fff;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 100;
	}
	#header .inner {
		max-width: 1260px;
		margin: 0 auto;
		padding: 0 20px;
		box-sizing: border-box;
	}
	#header .logo {
		margin-top: 46px;
	}
	#header .logo img {
		width: 265px;
		height: auto;
	}
	#header .yamaha {
		margin: 38px 16px 0 0;
	}
	#header .yamaha img {
		width: 137px;
		height: auto;
	}
	
	#header .page-nav {
		display: flex !important;
		gap: 14px 30px;
		position: absolute;
		top: 68px;
		left: 53.2%;
		transform: translate(-50%,-50%);
		list-style-type: none;
	}
	#header .page-nav li {
		white-space: nowrap;
		font-size: 15px;
		line-height: 1;
	}
	#header .page-nav li a {
		color: #000;
	}
}

@media print, screen and (min-width:768px) and (max-width:1260px) {
	#header .page-nav {
		width: 400px;
		flex-wrap: wrap;
		justify-content: center;
		left: 57%;
		top: 68px;
	}
}

@media print, screen and (min-width:768px) and (max-width:830px) {
	#header .page-nav {
		gap: 14px 20px;
	}
	#header .page-nav li {
		font-size: 13px;
	}
}

@media screen and (max-width:767px) {
	.header-wrap {
		height: 76px;
	}
	#header {
		width: 100%;
		height: 76px;
		box-sizing: border-box;
		border-bottom: solid 2px #ccc;
		background: #fff;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 100;
	}
	#header .inner {
		padding-top: 0;
		padding-bottom: 0;
		padding-right: 20px;
	}
	#header .logo {
		margin-top: 28px;
	}
	#header .logo img {
		width: 139px;
		height: auto;
	}
	#header .yamaha {
		margin-top: 26px;
	}
	#header .yamaha img {
		width: 80px;
		height: auto;
	}
}

/* -------------------------------------------------
	見出し
------------------------------------------------- */

.h-type1 {
	margin-bottom: 35px;
	font-size: 2.8rem;
	line-height: 1;
	text-align: center;
	font-weight: normal;
}
.h-type1 span {
	padding: 0 0.3em 5px;
	display: inline-block;
	border-bottom: solid 1px #666;
}
.h-type2 {
	padding: 0.4em 0 0.3em 0.7em;
	margin-bottom: 20px;
	font-size: 2.2rem;
	line-height: 1.5;
	border-bottom: solid 1px #666;
	border-left: solid 10px #000;
}

@media screen and (max-width:767px) {
	.h-type1 {
		margin-bottom: 18px;
		font-size: 2.2rem;
	}
	.h-type1 span {
		padding: 0 0.3em 5px;
	}
	
	.h-type2 {;
		font-size: 1.6rem;
		line-height: calc(22 / 15);
		border-left-width: 8px;
	}
}

/* -------------------------------------------------
	ボタン
------------------------------------------------- */

.btn-type1 {
  width: 390px;
  height: 100px;
  padding-left: 1em;
  padding-right: 2em;
  box-sizing: border-box;
  font-size: 2.2rem;
  color: #fff;
  background: #519d3f;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 6px;
  transition: background ease 0.3s;
}
.btn-type1::after {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border-right: solid 3px #fff;
  border-top: solid 3px #fff;
  content: "";
  display: block;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.btn-type1:hover {
  text-decoration: none;
  background: #72cd33;
}

@media screen and (max-width:767px) {
  .btn-type1 {
    width: 300px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 77px;
    font-size: 1.8rem;
  }
  .btn-type1::after {
    width: 13px;
    height: 13px;
    border-right: solid 2px #fff;
    border-top: solid 2px #fff;
    right: 20px;
  }
}

/* -------------------------------------------------
	#fv
------------------------------------------------- */

#fv img {
	width: 100%;
}

/* --- 前提：画像の下に隙間ができないようにするリセット --- */
#fv h1 {
    margin: 0;
    line-height: 0;
}
#fv h1 img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* --- ブルーグレーの帯部分 --- */
.period-bar {
    background-color: #5062a3; 
    
    /* 左側のアロー装飾の設定 */
    background-image: url("../img/bg-3arrow.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;

    /* 中身のレイアウト設定 */
    display: flex;
    justify-content: center;
    align-items: center; 
    width: 100%;
    padding: 24px 20px; 
    box-sizing: border-box;
}
.period-txt {
    color: #ffffff;
    font-size: 2.8rem;
    margin: 0;
    line-height: 1.4;
}


@media screen and (max-width: 767px) {
    .period-bar {
        padding: 16px 10px;
        height: 80px;
    }

    .period-txt {
        font-size: 1.8rem;
        line-height: 1.6!important;
        text-align: center;
    }
}

/* -------------------------------------------------
	#lead
------------------------------------------------- */

#lead {
  padding-top: 45px;
  text-align: center;
}
#lead .title {
  font-size: 2.8rem;
  line-height: 1;
}
#lead .desc {
  margin-top: 1.5em;
  font-size: 1.8rem;
  line-height: calc(33 / 18);
}
#lead .note {
  margin-top: 0.2em;
  font-size: 1.5rem;
  line-height: calc(25 / 15);
}

@media screen and (max-width:767px) {
  #lead {
    padding-top: 25px;
/*		text-align: left;*/
  }
  #lead .title {
    font-size: 2rem;
    line-height: 1.5;
  }
  #lead .desc {
    font-size: 1.5rem;
    line-height: calc(25 / 15);
    text-align: left;
  }
  #lead .note {
    font-size: 1.4rem;
    line-height: calc(23 / 14);
  }
}

/* -------------------------------------------------
  .cta-group1
------------------------------------------------- */

.cta-group1 {
  margin-top: 33px;
  text-align: left;
}
.cta-group1.no2 {
  margin-top: 52px;
}
.cta-group1 .line1 {
  max-width: 390px;
  margin: 0 auto;
}
.cta-group1 .line1 .cta-note {
  width: 100%;
  margin-top: 1em;
  font-size: 1.5rem;
}
.cta-group1 .btn-type1 {
  margin-bottom: 0;
}
.cta-group1 .line2 .item {
  max-width: 390px;
}

@media print, screen and (min-width:768px) {
  .cta-group1 .line2 {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 0 26px;
  }
}

@media print, screen and (min-width:768px) and (max-width:850px) {
  .cta-group1 .line1,
  .cta-group1 .line2 .item,
  .cta-group1 .btn-type1 {
    max-width: 350px;
  }
}

@media screen and (max-width:767px) {
  .cta-group1.no2 {
    margin-top: 72px;
  }
  .cta-group1 .line1 {
    max-width: none;
  }
  .cta-group1 .line1 .cta-note {
    margin-top: 0.7em;
    font-size: 1.4rem;
    line-height: calc(23 / 14);
  }
  .cta-group1 .line1 .cta-note {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-group1 .line2 {
    max-width: none;
    margin: 28px auto 0;
  }
  .cta-group1 .line2 .item {
    margin: 0 auto;
  }
  .cta-group1 .line2 .item + .item {
    margin-top: 20px;
  }
}

/* -------------------------------------------------
  #campaign
------------------------------------------------- */

#campaign .camp-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}
#campaign .camp-list {
  margin: 0;
  padding: 0;
}
#campaign .camp-row {
  display: flex;
  flex-direction: row; /* PCは横並び */
  align-items: flex-start;
  margin-bottom: 20px; 
}

/* --- 左側（ラベル部分） --- */
#campaign .camp-row dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 182px;
  height: 38px;
  background-color: #5062a3;
  color: #fff;
  font-weight: normal;
  box-sizing: border-box;
  flex-shrink: 0;
}
#campaign .camp-row dd {
  flex-grow: 1;
  margin: 0;
  padding: 4px 0 6px 25px;
  line-height: calc(30 / 16);
}

#campaign .camp-row dd strong {
  font-weight: bold;
}

#campaign .camp-row dd p {
  line-height: calc(30 / 16);
}

#campaign .camp-note {
  font-size: 1.5rem;
  line-height: calc(25 / 15);
}

#campaign .kome-notes {
  margin-top: 5px;
}
#campaign .kome-notes li {
  font-size: 1.5rem;
  line-height: calc(25 / 15);
}

#campaign .camp-notes {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
#campaign .camp-notes li {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.5rem;
  line-height: calc(25 / 15);
}
#campaign .camp-notes li::before {
  content: "・";
}
#campaign .camp-notes li + li {
  margin-top: 0.3em;
}

#campaign table {
  border-collapse: collapse;
  border-left: solid 1px #000;
  border-top: solid 1px #000;
}
#campaign table caption {
  margin-top: 0.8em;
  text-align: right;
  font-size: 1.5rem;
  line-height: calc(25 / 15);
}
#campaign table th,
#campaign table td {
  padding: 3px 0 4px;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: normal;
  text-align: center;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
}

@media print, screen and (min-width:768px) {
  #campaign {
    width: 96%;
    max-width: 1015px;
    margin: 60px auto 0;
  }
  
  #campaign table th:nth-child(1),
  #campaign table td:nth-child(1) {
    width: 225px;
  }
  #campaign table th:not(:nth-child(1)),
  #campaign table td:not(:nth-child(1)) {
    width: 100px;
  }
}

@media screen and (max-width: 767px) {
  #campaign {
    margin-top: 35px;
  }
  #campaign .camp-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  #campaign .camp-row {
    flex-direction: column;
    margin-bottom: 18px;
  }

  #campaign .camp-row dt {
    width: 100%; /* ラベルを全幅に */
    margin-bottom: 12px; /* ラベルとテキストの間の余白 */
  }

  #campaign .camp-row dd {
    padding: 0;
    font-size: 1.5rem;
    line-height: calc(25 / 15);
  }
  #campaign .camp-row dd p {
    font-size: 1.5rem;
    line-height: calc(25 / 15);
  }

  #campaign .camp-note {
    font-size: 1.4rem;
    line-height: calc(20 / 14);
  }

  #campaign .kome-notes {
    margin-top: 7px;
  }
  #campaign .kome-notes li {
    font-size: 1.4rem;
    line-height: calc(23 / 14);
  }

  #campaign .camp-notes li {
    font-size: 1.4rem;
    line-height: calc(23 / 14);
  }
  
  #campaign table {
    width: 100%;
    box-sizing: border-box;
  }
  #campaign table caption {
    margin-bottom: 0.3em;
    font-size: 1.4rem;
    line-height: calc(20 / 14);
  }
  #campaign table th,
  #campaign table td {
    font-size: 1.4rem;
  }
}

/* -------------------------------------------------
  .cta-group2
------------------------------------------------- */

@media print, screen and (min-width:768px) {
  .cta-group2 {
    width: 96%;
    max-width: 806px;
    margin: 30px auto 0;
  }
  .cta-group2.no2 {
    margin: 40px auto 53px;
  }
  .cta-group2 .col2 {
    display: flex;
    justify-content: space-between;
    gap: 0 26px;
  }
  .cta-group2 .col2 .item {
    flex: 1;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 850px) {
  .cta-group2 .btn-type1 {
    max-width: 350px;
  }
}

@media screen and (max-width:767px) {
  .cta-group2 {
    max-width: 300px;
    margin: 21px auto 0;
  }
  .cta-group2.no2 {
    margin: 14px auto 53px;
  }
  .cta-group2 .item + .item {
    margin-top: 25px;
  }
  .cta-group2 .img {
    margin: 0 auto;
    width: calc(287 / 300 * 100%);
    display: block;
  }
}

/* -------------------------------------------------
  #yecvt
------------------------------------------------- */

#yecvt {
  margin-top: 90px;
  text-align: center;
}
#yecvt .copy {
  margin-bottom: 1.1em;
  font-size: 2.8rem;
  line-height: 1;
}
#yecvt .h-type1 {
  margin-bottom: 0.8em;
}
#yecvt .desc {
  font-size: 1.8rem;
  line-height: calc(33 / 18);
}
#yecvt img {
  width: 100%;
  margin-top: 32px;
}
#yecvt .kome {
  width: 96%;
  max-width: 1220px;
  margin: 0.5em auto 0;
  font-size: 1.5rem;
  line-height: 1;
  text-align: right;
}

@media screen and (max-width:767px) {
  #yecvt {
    margin-top: 50px;
  }
  #yecvt .copy {
    margin-bottom: 2em;
    font-size: 2rem;
    line-height: 1.5;
  }
  #yecvt .desc {
    font-size: 1.5rem;
    line-height: calc(25 / 15);
    text-align: left;
  }
  #yecvt img {
    margin-top: 27px;
  }
  #yecvt .kome {
    width: auto;
    max-width: none;
    margin: 0.9em 2em 0 0;
    font-size: 1.4rem;
  }
}

/* -------------------------------------------------
	#lineup
------------------------------------------------- */

#lineup {
  margin-top: 70px;
}
#lineup .bikes .pic-box {
  position: relative;
}
#lineup .bikes .pic-box .name {
  width: auto;
  height: calc(143 / 515 * 100%);
  position: absolute;
  z-index: 2;
  left: 0;
  top: calc(10 / 515 * 100%);
}
#lineup .bikes .item:nth-child(1) .pic-box .name {
  left: auto;
  right: 0;
}
#lineup .bikes .pic-box .pic {
  width: 100%;
  position: relative;
  z-index: 4;
  margin-top:40px;
}
#lineup .bikes .texts .name {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
}
#lineup .bikes .texts .desc {
  margin-top: 3.2em;
  font-size: 1.8rem;
  line-height: calc(33 / 18);
}
#lineup .bikes .texts .btn {
  margin-top: 18px;
}
#lineup .bikes .texts .shop {
  margin-top: 24px;
  padding-left: 30px;
  font-size: 1.8rem;
  position: relative;
}
#lineup .bikes .texts .shop::before {
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-left: solid 3px #000;
  border-bottom: solid 3px #000;
  content: "";
  display: block;
  position: absolute;
  left: 0.3em;
  top: -0.2em;
  transform: rotate(-45deg);
}
#lineup .bikes .texts .shop a {
  font-weight: bold;
  text-decoration: underline;
  color: #000;
}
#lineup .bikes .texts .shop a:hover {
  opacity: 0.6;
  transition: none;
}

@media print, screen and (min-width:768px) {
  #lineup .bikes .item {
    position: relative; /* 擬似要素の基準にする */
    min-height: 140px;
  }
  /* 共通の背景設定（擬似要素） */
  #lineup .bikes .item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 140px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
  }
  
  /* --- 1つめのアイテム --- */
  #lineup .bikes .item:nth-child(1)::before {
    background-image: url("../img/bg_001.jpg");
    background-position: left top;
  }

  /* --- 2つめのアイテム --- */
  #lineup .bikes .item:nth-child(2)::before {
    background-image: url("../img/bg_002.jpg");
    background-position: right top;
  }

  /* 中身を前面に出す */
  #lineup .bikes .item:first-child .texts {
    padding-bottom: 80px;
  }
  #lineup .bikes .item .name {
    margin: 0;
    padding-top: 23px;
    font-size: 28px;
    line-height: calc(40 / 28);
    font-weight: bold;
  }

  #lineup .bikes .col2 {
    max-width: 1220px;
    width: calc(1220 var(--pcp));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  #lineup .bikes .item:nth-child(even) .col2 {
    flex-direction: row-reverse;
  }
  #lineup .bikes .col2 .pic-box {
    width: calc(597 / 1220 * 100%);
  }
  #lineup .bikes .col2 .texts {
    width: calc(597 / 1220 * 100%);
    padding-top: 4px;
  }
  #lineup .bikes .item:nth-child(even) .texts .desc {
    padding-right: 2em;
  }
  #lineup .bikes .item .texts .btn-type1 {
    margin-top: 22px;
  }
}

@media print, screen and (min-width:768px) and (max-width:795px) {
  #lineup .bikes .item .name {
    font-size: 26px;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 850px) {
  #lineup .bikes .item .texts .btn-type1 {
    max-width: 350px;
  }
}

@media screen and (max-width:767px) {
  #lineup {
    margin-top: 50px;
  }
  #lineup .h-type1 {
    margin-bottom: 27px;
  }
  #lineup .bikes .item {
    position: relative;
    padding-top: 20px; /* 背景画像内のタイトルの位置調整 */
  }
  
  #lineup .bikes .item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;
    z-index: 0;
  }
  
  /* --- 1つめのアイテム --- */
  #lineup .bikes .item:nth-child(1)::before {
    background-image: url("../img/bg_001_sp.jpg");
  }

  /* --- 2つめのアイテム --- */
  #lineup .bikes .item:nth-child(2)::before {
    background-image: url("../img/bg_002_sp.jpg");
  }
  
  #lineup .bikes .item + .item {
    margin-top: 42px;
  }
  /* 1. 全体を包むコンテナを縦並びのFlexboxに */
  #lineup .bikes .col2 {
    padding-bottom: 90px;
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
    position: relative;
  }
  #lineup .bikes .item + .item {
    margin-top: 55px;
  }
  
  #lineup .bikes .texts .box-sp {
    position: static;
  }
  /* 一番上：タイトル */
  #lineup .bikes .texts .name {
    margin-top: 0;
    padding: 5px 0;
    font-size: 2.0rem;
    font-weight:bold;
    line-height: 1.3;
    z-index: 10;
  }

  /* 二番目：説明文 */
  #lineup .bikes .texts .desc {
    padding: 40px 0 10px;
    margin-top:0!important;
    font-size: 1.5rem;
    color: #000;
  }

  /* 三番目：バイク画像 */
  #lineup .bikes .pic-box {
    width: 100%;
    text-align: center;
  }
  #lineup .bikes .pic-box .pic {
    width: 287px;
    margin: 0 auto;
    display: block;
  }

  /* 四番目：ボタン（画像の下に配置） */
  #lineup .bikes .texts .btn-type1 {
    margin: 0 auto; 
    width: 80%;
    display: flex; /* 前回のボタンスタイルを引き継ぎ */
    justify-content: space-between; 
    font-size: 1.8rem;
  }

  /* 念のため、画像側の不要なタイトルは非表示 */
  #lineup .bikes .pic-box .name {
    display: none;
  }
  #lineup .bikes .item .texts .btn-type1 {
    max-width: 300px;
    margin-top: 18px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* -------------------------------------------------
  #flow
------------------------------------------------- */

#flow {
  margin: 53px auto 0;
}
#flow img {
  max-width: 96%;
  margin: 38px auto 0;
  display: block;
}

@media screen and (max-width: 767px) {
  #flow img {
    width: 208px;
    margin-top: 34px;
  }
}

/* -------------------------------------------------
  .cta-group3
------------------------------------------------- */

@media screen and (min-width: 768px) {
  .cta-group3 {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    gap: 0 26px;
  }
  .cta-group3 .cta-note {
    width: 100%;
    margin-top: 0.7em;
    font-size: 1.5rem;
  }
}

@media print, screen and (min-width:768px) and (max-width:850px) {
  .cta-group3 .item,
  .cta-group3 .item .btn-type1 {
    width: 350px;
  }
}

/* -------------------------------------------------
  #qa
------------------------------------------------- */

#qa {
  margin-top: 70px;
}
#qa .bg {
  margin-top: 40px;
  padding: 25px 0 50px;
  background: #d9e2e8;
}
#qa .qa-list li {
  padding: 13px 0 14px;
  border-bottom: solid 2px #fff;
}

#qa .qa-list li p.q,
#qa .qa-list li p.a {
  font-size: 1.6rem;
  line-height: calc(30 / 16);
}
#qa .qa-list li p a {
  display: inline;
  text-decoration: underline;
  color: #000;
}

#qa .qa-list li .notes p {
  font-size: 1.5rem;
  line-height: calc(25 / 15);
}

@media screen and (min-width: 768px) {
  #qa .qa-list li p a:hover {
    opacity: 0.5 !important;
    transition: none !important;
  }
}

@media screen and (max-width:767px) {
  #qa {
    margin-top: 55px;
  }
  #qa .bg {
    margin-top: 35px;
    padding: 23px 0 44px;
  }
  #qa .qa-list li {
    padding: 15px 0 16px;
  }

  #qa .qa-list li p.q,
  #qa .qa-list li p.a {
    font-size: 1.5rem;
    line-height: calc(25 / 15);
  }

  #qa .qa-list li .notes p {
    font-size: 1.4rem;
    line-height: calc(23 / 14);
  }
}

/* -------------------------------------------------
  #bottom-bg-copy
------------------------------------------------- */

#bottom-bg-copy {
  display: flex;
  justify-content: center;
  align-items: center;
}
#bottom-bg-copy p {
  color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  #bottom-bg-copy {
    height: 471px;
    background: url("../img/bg_003.jpg") no-repeat center center / cover;
  }
  #bottom-bg-copy p {
    font-size: 1.8rem;
    line-height: calc(33 / 18);
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  #bottom-bg-copy {
    height: 319px;
    background: url("../img/bg_003_sp.jpg") no-repeat center center / cover;
  }
  #bottom-bg-copy p {
    max-width: 288px;
    font-size: 1.5rem;
    line-height: calc(25 / 15);
  }
}

/* -------------------------------------------------
	#call-center
------------------------------------------------- */

#call-center {
	padding: 54px 0 46px;
	border-top: solid 2px #cccccc;
	border-bottom: solid 2px #cccccc;
}
#call-center .title {
	font-size: 1.8rem;
	color: #666666;
	line-height: 1;
}
#call-center .group {
	display: flex;
	align-items: flex-end;
}
#call-center .group a {
	width: 321px;
	display: block;
}
#call-center .group a img {
	width: 100%;
}
#call-center .group p {
	font-size: 1.6rem;
	color: #666666;
}

@media print, screen and (min-width:768px) {
	#call-center {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 19px;
	}
	#call-center .title {
		transform: translateY(2px);
	}
}

@media print, screen and (min-width:768px) and (max-width:850px) {
	#call-center .group a {
		width: 260px;
	}
}

@media screen and (max-width:767px) {
	#call-center {
		padding: 15px 0 17px;
		text-align: center;
	}
	#call-center .title {
		font-size: 1.1rem;
	}
	#call-center .group {
		display: inline-flex;
	}
	#call-center .group a {
		width: 194px;
		margin: 6px auto 0;
	}
	#call-center .group p {
		font-size: 1rem;
	}
}

/*---------------ADD------------*/

.note {
  font-size: 15px;
  line-height: 1.4;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .note {
    font-size: 15px;
    line-height: 1.5!important;
    color: #000;
    text-align: left;
  }
}
