@charset "UTF-8";
:root {
  --main-color: #0059eb;
  --base-color:#fff8b4;
  --sub-color: #0059eb;
  --sub-color2: #00357a;
  --sub-color3: #863200;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 62.5%;
}
*,
*:before,
*:after {
  box-sizing: inherit;
  --min-size: 53;
  --max-size: 146;
  --min-viewport: 375;
  --max-viewport: 1440; 
  --slope:calc((var(--max-size) - var(--min-size)) / (var(--max-viewport) - var(--min-viewport)));
  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
  --fluid-size:calc(var(--slope) * 100vw + var(--intercept) * .1rem);
  --clamp-size: clamp(var(--min-size) * .1rem, var(--fluid-size), var(--max-size) * .1rem);
}
body {
  line-height: 1.7;
  --min-size: 15;
  --max-size: 17;
  font-size: var(--clamp-size);
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333;
  letter-spacing: 0.05em;
}
img {
  vertical-align: bottom;
}
figure {
  margin: 0;
}
iframe {
  width: 100%;
}
table {
  border-spacing: 0;
}
button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
a,input,textarea {
  transition: all .3s ease-in-out;
}
ol {
  text-align: left;
}
.fot-tsuku{font-family: "fot-tsukuardgothic-std", sans-serif;font-weight: 700;
  font-style: normal;}

/* レイアウト */
.w-container {
  width: min(92%, 1000px);
  margin-inline: auto;
}
.h-container {
  padding: clamp(4rem, 5vw, 70px) 0;
}
/* 見出し */
.heading {
  font-weight: 700;
  --min-size: 26;
  --max-size: 32;
  font-size: var(--clamp-size);
  color: var(--base-color);
}
.subHeading {
  font-weight: 600;
  --min-size: 22;
  --max-size: 28;
  font-size: var(--clamp-size);
  color: var(--sub-color);
}
/* 共通パーツ */
@media (width >= 744px) {  
  .sp-br {
    display: none; 
  }
}
.pc-br {
  display: none;
  @media (width >= 744px) {
    display: block;
  }
}
 .engTxt {
  font-family: "Roboto", sans-serif;
  color: #ff761c;
 }
 .blueBack {
  background: var(--base-color);
  padding-top: 3rem;
 } 
/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: #fff;
  padding-top: .8rem;
  padding-bottom: .8rem; 
  box-shadow: 0px 3px 10px #00000014;
  @media (width >= 960px) {
    padding-top: .2rem;
    padding-bottom: .2rem; 
  }
}
.headerInner{
  padding: .8rem 4%;
  @media (width >= 960px) {
    padding-top: .2rem;
    padding-bottom: .2rem;
  }
}
.headerLogo {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10002; 
  max-width: 15rem;
  @media (width >= 744px) {
    position: static;
    padding-right: 20px;
	max-width: 257px;
  }
}
/* gnav */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  width: 3rem;
  cursor: pointer;
  z-index: 10001;
  position: relative;
  margin-left: auto;
}
.hamburger span {
  height: .3rem;
  background-color: var(--sub-color);
  width: 100%;
  border-radius: .2rem;
  transition: all 0.3s ease;
}
/* メニューオーバーレイ */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(30, 46, 57, 0.37); 
  z-index: 10001;
  justify-content: center;
  align-items: start;
  padding-top: 6rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-overlay.active {
  display: flex;
  opacity: 1;
}
/* メニュー本体 */
.menu-content {
  background: #fff;
  width: 100%;
  max-width: 100%;
  padding: 2rem;
  position: absolute; 
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.menu-overlay.active .menu-content {
  transform: translateY(0);
}
/* 閉じるボタン */
.menu-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  width: 3rem;
  height: 2.4rem;
  font-size: 3.2rem; 
  background: none;
  border: none;
  color: var(--sub-color);
  text-align: center;
  line-height: 2.4rem; 
  padding: 0;
  z-index: 10002; 
}
/* メニューリスト */
.menu-list {
  margin-top: 5rem;
}
.menu-list li {
  padding: 2rem 0;
  text-align: center;
}
.menu-list li:not(:last-of-type) {
  border-bottom: .1rem solid #cccccc;
}
.menu-list a {
  font-size: 1.7rem;
  font-weight: bold;
}
/* PC版では非表示 */
@media (min-width: 744px) {
  .hamburger {
    display: none;
  }
  .menu-overlay {
    display: none !important;
  }
  nav.gnav ul {
    display: flex;
    gap: 2rem;
  }
  nav.gnav li a {
    text-decoration: none;
    color: var(--base-color);
    font-weight: bold;
  }
}
/* PCナビ：スマホでは非表示 */
.pc-nav {
  display: none;
}
@media (min-width: 744px) {
  .headerInner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .pc-nav {
    display: block;
  }
  .pc-nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: nowrap;
  }
  .pc-nav-list li {
	flex-basis:auto;
	border-right: 1px solid #b5b5b5;
	padding: 0 4px;
  }
  .pc-nav-list li:first-child {
    border-left: 1px solid #b5b5b5;
  }
  .pc-nav-list li.noborder {
    border: none;
  }
  .pc-nav-list li a {
	text-decoration: none;
    font-size: 1.4rem;
    white-space: nowrap;
  }
  .pc-nav-list li img {
    --min-size: 80;
    --max-size: 164;
    width: var(--clamp-size);
    vertical-align: middle;
	margin: 14px 1px 10px;
  }
  .pc-nav-list li.pdl20 {
    padding-left: 20px;
  }
}
.pc-nav-list li:not(:has(img)) {
  @media (width >= 960px){
    padding-inline: 1rem;
  }
}
/* メイン画像 */
.mainVisual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 5rem;
  @media (width >= 744px) {
    padding-top: 6rem;
    background-image: url(../img/fv/fv-bg-pc.jpg); 
    background-size: 100% 60%;
    background-position: top ;
	background-repeat: no-repeat;
  }
}
/* main */
.large {
  font-size: 1.8em;
}
.mainVisual .topLink{margin-top: -75%;
  @media (width >= 744px) {margin-top:0;}
}
.topLink {
  padding: 2rem 0 0;
  text-align: center;
  @media (width >= 744px) {
    /*padding: 0;*/
  }

  & h2 {
    text-align: center;
    font-weight: 700;
    --min-size: 18;
    --max-size: 28;
    font-size: var(--clamp-size);
  }
}
.topLink .w-container, .info.w-container {
  width: min(96%, 1040px);
}
.info.w-container {
  padding-bottom: 0;
	@media (width >= 744px) {
    padding-bottom: 0;
  }
}
.topLink ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-top: .5rem;
  @media (width >= 744px) {  
    gap: 1rem;
  }
}
.topLink ul li {
  width: calc(( 100% - 1rem ) / 2);
  @media (width >= 744px) {  
    width: calc(( 100% - 3rem ) / 4);
  }
}

.info h3 {
  margin: 2rem 0 1rem;
  text-align: center;
  font-weight: 700;
    --min-size: 18;
    --max-size: 28;
  font-size: var(--clamp-size);
  padding: .8rem;
  border: 2px solid #333333;
  background: white;
}
.info .main {
  padding: 2rem 1rem;
  background-color: #eeefef;
	font-weight: 400;
    --min-size: 10;
    --max-size: 14;
  font-size: var(--clamp-size);
	@media (width >= 744px) {padding: 3rem;}
}
.info .main ul {
	margin: 0 1rem 1rem;
	padding-left: 1rem;
}
.info .main ul li {
	list-style: disc;
}
.topLink ul li img {
  /*filter: drop-shadow(0 5px 0 #e6e6e6);*/
  @media (width >= 744px) {  
    /*filter: drop-shadow(4px 8px 0 #e6e6e6);*/
	width:100%;
  }
}

.case, .paint, .now {
	padding:  3rem 0;
	@media (width >= 744px) {
    padding:  6rem 0 3rem;
  }
}
.hajimete{width:100%; max-width: 600px; margin: -2rem 0 -1rem;}
.carousel-wrapper {
  position: relative;
}
.carousel {
  height: auto;
  padding-bottom: 4rem;
  max-width: 700px;
  margin-inline: auto;
}
.item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 540px;
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
}



/* モーダル */
.modal { 
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
}
.modal.show { 
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-inner {
  position: relative;
  display: inline-block;
}
.modal-content {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  margin-inline: auto;
  @media (width >= 744px)  {
    max-width: 90%;
  }
}
.modal-inner .modal-close {
  position: absolute; 
  top: -4rem;
  right: 2rem;
  cursor: pointer;
  z-index: 10;
}
.modal-inner .modal-close img {
  width: 2.5rem;
  height: 2.5rem;
}
/* タブ切り替え */
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding-top: 3rem;
  background: var(--sub-color);
  background-image: url(../img/bath/bath-bg.gif); 
  background-size: 100%;
  background-position: top;
	@media (width >= 744px) {gap: 1rem; padding-top: 6rem; background:none white;}
}
.tab-buttons li {
  font-size: 1.8rem;
  width:45%;
  cursor: pointer;
  padding: 1rem 2rem .8rem;
  font-weight: bold;
  text-align: center;
  color: #063cad;
  border: 2px solid #063cad;
　position: relative;
  background-color: white;
	@media (width >=744px) {
	font-size: 2.2rem;
	width: 45%;
	max-width: 50rem;
	padding: 2rem 2rem 1.6rem;
　}
}


.tab-buttons li.active {
 background: #063cad;
 color: #fff;
 position: relative;
}
.tab-buttons li.active::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #063cad transparent transparent transparent;
    border-width: 16px 20px 0px 20px;
    position: absolute;
    left: calc(50% - 20px);
    bottom: -8px;
	@media (width >= 744px)  {display:none;}
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.productNumber {
  position: absolute;
  top:-4.8rem;
  left:-1rem;
  width: 34rem;
  z-index: 100;
  @media (width >= 744px) {  
    width: 50.8rem;
	height:auto;
	top:-5.9rem;
	left:-2rem;
  }
}
.subject {
  --min-size: 12;
  --max-size: 22;
  font-size: var(--clamp-size);
	line-height: 1;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  display: block;
  color: var(--sub-color);
  font-weight: bold;
  margin-top: 2rem;
  padding: 0 10px;
}
.subject::before {
  	position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--sub-color);
    border-radius: 3px;
    transform: rotate(-25deg);
}
.subject::after {
  position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--sub-color);
    border-radius: 3px;
    transform: rotate(25deg);
}
.subject.none, .subject.none::before, .subject.none::after {
  color: white;
  background: white;
}


/* お問い合わせ */
.contactBlueBackBox {
	/*background: var(--base-color);*/
	/*padding: 50px 0;*/
}
.contactBlueBack {
  width: min(92%, 1000px);
  margin-inline: auto;
  /*background-image: url(../img/cta/sp/bg.gif); 
  background-position: center top;
  background-size: 100%;
  background-repeat: no-repeat;
  margin-inline: auto;
  border: 2px solid #0039b0;
  border-radius: 1rem;
  box-shadow:0px 3px 3px rgba(221, 211, 142, 1);*/
  @media (width >= 744px) {
    /*background-image: url(../img/cta/bg.gif); 
    border-radius: 2rem;
	margin:0 auto;
    border: 6px solid #0039b0;
	box-shadow:3px 7px 10px rgba(221, 211, 142, 1);*/
    max-width: 100rem;
  }
}
.period {
  background: #FFF962;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: .8rem;
  max-width: 100rem;
  margin-inline: auto;
  @media (width >= 744px) {
    padding-bottom: 2rem;
  }
  @media (width >= 1000px) {
    border-radius: 2rem 2rem 0 0;
  }
}
.period._mt {
  margin-top: 4rem;
  @media (width >= 744px) {
    margin-top: 10rem;
  }
}
.period._pcmt {
  @media (width >= 1000px) {
    margin-top: 10rem;
  }
}
.period._mt._last {
  margin-top: 3rem;
}
.period p {
  --min-size: 20;
  --max-size: 30;
  font-size: var(--clamp-size);
}
.periodTxt {
  color: #FFF962;
  width: fit-content;
  background: var(--sub-color);
  margin: 0 auto;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  /* margin-bottom: 2rem; */
}
.period span {
  color: var(--sub-color);
}
.period p:nth-of-type(2) {
  color: var(--sub-color);
  font-weight: 700;
}
.contactWrapper.w-container {
  /*padding: 7.9rem 1rem 1.5rem 1.5rem;*/
  padding: 2rem 0 3rem;
  width: 100%;
  @media (width >= 744px) {
	/*padding: 15.2rem 3.5rem 4.4rem 4.1rem;*/
	/*padding: 15.2% 3.5% 4.4% 4.1%;*/
    display: flex;
	justify-content: space-between;
    gap: 0;
    align-items: flex-end;
	padding: 4rem 0 5rem;
  }
}
.contactWrapper p {
  font-weight: 700;
  --min-size: 15;
  --max-size: 22;
  font-size: var(--clamp-size);
  text-align: center !important;
}

.contactWrapper img {
  width: 100% !important;
}
.contactForm {
  margin: 1rem 0 0;
  @media (width >= 744px) {
    margin: 0;
	width:50%;
  }
}
.contactForm p {
  color: #F57B00;
}
.contactTel {
  margin: 1rem 0 0; 
  @media (width >= 744px) {
    margin: 0;
	width:50%;
  }
}
.ccontactTel p  {
  color:  #1E2E39;
}
/* footer */
.footer {
  background: var(--sub-color2);
  padding: 2rem 0;
  }


/* hover設定 */
@media (hover: hover) {
  a img {
    opacity: 1; 
    transition: opacity 0.3s ease;
  }
  a:hover img {
    opacity: 0.7;
  }
  .pc-nav-list li a:hover {
    opacity: 0.7;
  }
}
 
/* フローティングバナー */
.sp-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sp-bar.is-show {
  opacity: 1;
  pointer-events: auto;
}

.sp-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
  padding: 15px;
  background-color: rgb(255 117 47 / 0.6);
}

.sp-bar__btn {
  display: inline-block;
}

.sp-bar__btn img {
  width: 100%;
  height: auto;
}

/* 744px以上では非表示 */
@media (min-width: 744px) {
  .sp-bar {
    display: none !important;
  }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/* 既存LPのコード */
.br-sm {
  display: none;
}
/* Inner */
/* ================== */
.inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  /* padding: 70px 50px; */
  /*padding: 70px 0;*/
}

@media(max-width: 959px) {
  .inner {
      /*padding: 30px 30px;*/
  }
}

@media (max-width:743px) {
  .inner {
      /*padding: 30px 20px;*/
  }
}
/* lv2-heading02 */
/* ================== */
.lv2-heading02 {
  background: #002a68;
  color: #fff;
  font-weight: 700;
  --min-size: 22;
  --max-size: 42;
  font-size: var(--clamp-size) !important;
  padding: 30px 0!important;
  text-align: center;
  /*max-width: 760px;*/
  width: 100%;
  margin: 3rem 0 0 !important;
  position: relative;
  line-height: 1 !important;
	@media (width >= 744px) { line-height: 1.6 !important; padding: 32px 0  !important;margin: 6rem 0 0 !important }
}
.lv2-heading02 span {
  font-family: aptly, sans-serif;
  font-weight: 500;
  font-style: italic;
  display: block;
  color: #ffff63;
  font-size: 1.6rem;
  padding-bottom: 1rem;
}
.lv2-heading02.lightblue {
	background: #00a0e9;
}
.a-service {
  background-image: url(../img/a-service/bg.jpg); 
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
	@media (width >= 744px) {
    background-image: url(../img/a-service/bg-pc.png); 
  }
}
.a-service__lv3-heading {
  font-weight: 700;
  --min-size: 20;
  --max-size: 48;
  line-height: 1.8;
  font-size: var(--clamp-size) !important;
  text-align: center;
  text-shadow: 2px 2px 10px #ffffff;
  margin-top: 5px;
	@media (width >= 744px) {
  	line-height: 1.6;
  }
}
.a-service__lv3-heading span {
  color: #0069eb;
  border-bottom: double 6px #0069eb;
}

.a-service__box {
  padding: 2rem 2rem 5rem !important;
	@media (width >= 744px) { 
		padding: 50px 35px !important;
	}
}

.a-service__txt {
  font-weight: 500;
  --min-size: 14;
  --max-size: 22;
  font-size: var(--clamp-size) !important;
  line-height: 2;
  margin-top: 1rem;
	@media (width >= 744px) {  
		line-height: 2.5;
		margin-top: 4rem;
	}
}

.a-service__txt-em {
  color: #fff;
  font-weight: 700;
  --min-size: 16;
  --max-size: 24;
  font-size: var(--clamp-size) !important;
  background-color: #ff761c;
  padding: .2rem .5rem .4rem;
  margin: 0 .2rem;
	@media (width >= 744px) {  
		padding: .5rem 1rem .7rem;
	}
}

.a-service__period {
  width: 100%;
  margin: 2rem auto 1rem;
  background-color: #0069eb;
  padding: 5px;
  width: 98%;
	@media (width >= 744px) {  
    margin: 4rem auto -2rem;
  	width: 100%;
  	padding: 1rem;
    }
}

.a-service__period_txt{
  border: 1px solid white;
  text-align: center;
  padding: 3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  @media (width >= 744px) {
    padding: 3rem;
  }
}
.a-service__period .kikan{
  font-size: 3rem;
  letter-spacing: .1em;
  --min-size: 16;
  --max-size: 28;
  font-size: var(--clamp-size) !important;
}
.a-service__period .kikan2{
  color: #ffff63;
  display: inline-block;
  padding-left: 2rem;
  letter-spacing: .1em;
  --min-size: 34;
  --max-size: 54;
  font-size: var(--clamp-size) !important;
}
.a-service__period .note{
  font-weight: normal;
  --min-size: 10;
  --max-size: 14;
  font-size: var(--clamp-size) !important;
}

.a-service__period img {
  width: 100%;
  height: auto;
}

.a-service__flex {
  display: flex;
  justify-content: center;
  margin: 2.8rem auto 0; 
  gap:1rem;
  width: 70%;
	@media (width >= 744px) {
		width:auto;
		margin-top: 4rem; 
	}
}

.a-service__txt-cont {
	@media (width >= 744px) {
    width: min(90%, 800px);
	margin: 0 auto;
  }
}

.a-service__pic {
  width: 340px;
}

.a-service__pic img {
  width: 100%;
  height: auto;
}

@media (max-width:959px) {
  .lv2-heading02 {
      padding: 25px 10px;
      font-size: 24px;
      margin-bottom: 36px;
  }

  .a-service__lv3-heading {
      font-size: 30px;
  }

  .a-service__box {
      padding: 46px 35px;
  }

}

@media (max-width:743px) {
  .a-service__pic {
      max-width: 340px;
      width: 100%;
  }

  .lv2-heading02 {
      line-height: 1.5;
      font-size: 15px;
      padding: 17px 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      min-height: 80px;
  }

  .a-service__box {
      padding: 20px;
  }

  .a-service__lv3-heading {
      font-size: 16px;
  }

  /*.a-service__txt {
      font-size: 12px;
      margin-top: 22px;
  }*/

  .a-service__period {
      max-width: 524px;
      margin-top: 20px;
  }

  .a-service__pic {
      margin-top: 18px;
      max-width: 230px;
  }
}

/* about */
/* ================== */
.about {
  background-image: url(../img/about/bg-pc.jpg); 
  background-size: 780px;
  background-position: center top;
  background-color: #c1e5ff;
  background-repeat: repeat-x;
	@media (width >= 744px) {  
   	 background-size: contain;
    }
}
.about__item {
  display: flex;
  align-items: center;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto 70px;
}

.about__head {
  padding: 0;
}


.about__item-col1 {
  width: 80% !important;
  margin: 2rem 0 !important;
  color: #001734;
  background-color: rgba(255,255,255,0.76);
  padding: 2rem !important;
  border-radius: 0 !important;
	@media (width >= 744px) {
    width: 580px !important;
     padding: 32px 80px 20px !important;
     margin: 80px auto 0 !important;
  }
}

.about__item-col1-txt {
  line-height: 1.8;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 600;
}

.about__item-col1-txt span {
  color: #fff;
  font-size: 1.16em;
  font-weight: 700;
  background-color: #ff761c;
  padding: .1rem .3rem .3rem;
  margin: 0 .5rem;
}

.about__item-col2 {
  max-width: 820px;
  width: 100%;
  position: relative;
  margin-left: auto;
}

.about__item-col1-ttl {
  line-height: 1.1;
  font-size: 36px;
  font-weight: 700;
  font-feature-settings: "palt";
  text-align: center;
}

.about__item-col1-ttl span {
  font-size: .70em;
}

.about__item-col1-ttl span.num {
  font-size: 1.2em;
}

.about__item-col1-txt-note {
  margin-top: 10px;
  text-align: right;
  font-size: 11px;
  margin-top: 2rem;
  color: #666666;
}

.about__item-col2 img {
  width: 100%;
  border-radius: 10px 0 0 10px;
}

@media (max-width:959px) {
  .about__item {
      margin-bottom: 30px;
  }

  .about__item-col1 {
      max-width: 560px;
      padding: 30px 35px;
      margin-top: 80px;
  }

  .about__item-col1-ttl {
      font-size: 22px;
  }

  .about__item-col1-txt {
      font-size: 16px;
      margin-top: 20px;
  }

  .about__item-col2 {
      max-width: 480px;
  }
}

@media (max-width:743px) {
  .about__head {
      padding: 0;
  }

  .about__item-col1 {
      position: static;
      margin-top: 0;
      width: calc(100% - 30px);
      border-radius: 10px 0 0 10px;
      margin: 0 -30px -20px 0;
      padding: 25px 35px;
  }

  .about__item {
      flex-direction: column;
      margin-bottom: 0;
  }

  .about__item-col1-ttl {
      font-size: 18px;
  }

  .about__item-col1-txt {
      font-size: 13px;
      margin-top: 10px;
  }
  .about__item-col2 {
      margin-right: auto;
      margin-left: -36px;
  }

  .about__item-col2 img {
      border-radius: 0 10px 10px 0;
  }
}

/* service */
/* ================== */
.service__list {
	padding-bottom: 40px; 
	@media (width >= 744px) {
    padding-bottom: 100px;}
}
.service__item {
  width: min(92%, 1000px);
  background: #fff;
  border-radius: 8px;
  border: #002a68 solid 1px;
  background-image: url(../img/service/bg.jpg); 
  background-size: 300px;
  background-position: right center;
  background-repeat: no-repeat;
  margin: 0 auto;
	@media (width >= 744px) {
		padding: 58px 20px 30px 60px;
  		border: #002a68 solid 2px;
  		background-size: auto;
  		background-position: right top;
        width: min(100%, 1000px);
  }
}

.service__item-ttl {
  --min-size: 18;
  --max-size: 40;
  font-size: var(--clamp-size) !important;
  color: #000;
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
}
.service__item-ttl span {
  color: var(--sub-color);
  border-bottom: double 6px #0069eb;
}

.service__main-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
  max-width: 944px;
  width: 100%;
	@media (width >= 744px) {  
  	margin-top: 5rem;
	}
}

.service__main-item-col1 {
  width: 430px;
}

.service__main-item-txt {
  font-weight: 600;
  --min-size: 14;
  --max-size: 18;
  font-size: var(--clamp-size) !important;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 2rem ;
	@media (width >= 744px) { 
		margin-top: 20px;
	}
}
.service__main-item-txt:first-child {
  margin-top: 0;
}

.sp-service__main-item-txt {
  display: none;
}

.service__main-item-txt span {
  color: #fff;
  font-size: 1.1em;
  font-weight: 700;
  background-color: #0069eb;
  padding: .1rem .4rem .2rem;
  margin: 0 2px;
}

.service__main-item-col2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 450px);
  flex-wrap:wrap;
}

.service__item-col2-box {
  width: calc(50% - 10px);
  margin-left: 10px;
  /*display: flex;
  justify-content: space-between;*/
}

.service__item-pic {
  width: 100%;
}

.service__item-col2-hr {
  position: relative;
}

.service__item-col2-hr::before {
  content: '';
  border: #4aa3fd 1px dashed;
  transform: rotate(-155deg);
  position: absolute;
  left: 20px;
  padding: 0;
  height: 75px;
  bottom: 0;
}

.service__item-col2-hr::after {
  content: '';
  border: #4aa3fd 1px dashed;
  transform: rotate(-23deg);
  position: absolute;
  right: 20px;
  padding: 0;
  height: 75px;
  bottom: 0;
}

.service__item-col2-txt {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #ff8314;
  line-height: 1.4;
  /*margin-bottom: 27px;*/
  padding: 4px 0;
}

.service__item-bottom-txt {
  font-size: 12px;
  margin-left: 50%;
	margin-top: 10px;
	text-align: center;
}

.copyright {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding-top: 26px;
  padding-bottom: 26px;
}

.copyright small {
  font-size: inherit;
}

@media (max-width:1279px) {
  .service__item-col2-txt {
      font-size: 16px;
  }
}

@media (max-width:959px) {
  .service__item-ttl {
      font-size: 30px;
  }

  .service__item {
      padding: 46px 35px;
  }

  .service__main-list {
      display: block;
  }

  .service__main-item-col1 {
      width: 100%;
  }

  .service__main-item-col2 {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
  }

  .service__item-col2-box {
      width: 100%;
      margin-left: 0;
  }

  .service__item-bottom-txt {
      margin: 40px 0 0 0;
  }
}

@media (max-width:743px) {
  .service__item {
      padding: 20px;
  }

  .service__item-ttl {
      font-size: 16px;
  }

  .service__main-item-txt {
      font-size: 11px;
  }

  .service__main-item-col2 {
      gap: 10px;
      margin: 16px auto 0;
  }

  .service__item-col2-txt {
      font-size: 12px;
      padding: 0;
      margin-bottom: 12px;
  }

  .service__item-col2-hr::after,
  .service__item-col2-hr::before {
      min-height: 26px;
      height: 50px;
  }

  .service__item-col2-hr::before {
      left: 20px;
  }

  .service__item-col2-hr::after {
      right: 20px;
  }

  .service__item-bottom-txt {
      margin-top: 0;
	  margin-left: 0;
  }

  .copyright {
      padding-top: 17px;
      padding-bottom: 17px;
      font-size: 12px;
  }
}
/* 既存LPのコードここまで */










