@charset "UTF-8";
/*--------------------------------------------
FONTS
---------------------------------------------*/
@font-face {
  font-family: 'Noto Sans JP';
  src: url( "../../fonts/NotoSansJP-VariableFont_wght.woff2" ) format( "woff2" );
  font-weight: 1 999;
}
:root{
	--fontFamily : 'Noto Sans JP' , sans-serif;
	--fontWeight : 400;
}
/*--------------------------------------------
SETTINGS
---------------------------------------------*/
:root{
	--body:#333;
	--primary:#00B5CC;
	--remBase : * .1rem;
	--transitionBase : .3s ease-in;
}
/*--------------------------------------------
RESPONSIVE VARIABLES
---------------------------------------------*/
@media screen and ( width <= 750px ){
	:root{
		--breakPoint : 750;
		--wrapperInside : 670;
		--percentBase : * 100% / var(--wrapperInside);
		--viewportBase : * 100% / var(--breakPoint);
	}
}
@media print,screen and ( width > 750px ){
	:root{
		--breakPoint: 1440;
		--wrapperInside : 1400;
	}
}
@media screen and ( 750px < width < 1440px ){
	:root{
		--breakPoint: 1440;
		--wrapperInside : 1400;
		--percentBase : * 100% / var(--wrapperInside);
		--viewportBase : * 100% / var(--breakPoint);
	}
}
@media print,screen and ( width >= 1440px ){
	:root{
		--percentBase : * 1px;
		--viewportBase : * 1px;
	}
}
@layer regulate base;
/*--------------------------------------------
REGULATE
---------------------------------------------*/
*{
    margin: 0;
    padding: 0;
  }
*,
  ::before,
  ::after{
    box-sizing: border-box;
  }
*:not(fieldset):not(progress):not(meter){
    border-width: 0;
    border-style: solid;
    background-origin: border-box;
    background-repeat: no-repeat;
  }
@supports (overflow: overlay) {
    :root {
      --overflow: overlay;
    }
  }
@supports not (overflow: overlay) {
    :root {
      --overflow: auto;
    }
  }
html{
    block-size: 100%;
    -webkit-text-size-adjust: none;
  }
@media (prefers-reduced-motion: no-preference){
html{
      scroll-behavior: smooth
  }
    }
body{
    font-family: var(--fontFamily);
    font-weight: 500;
    text-rendering: optimizeSpeed;
    min-block-size: 100%;
    line-height: 1;
    font-feature-settings: "palt" on;
    color:var(--body);
    overflow: var(--overflow)
  }
:where(img, svg, video, canvas, audio, iframe, embed, object){
    display: block;
  }
:where(img, svg, video){
    max-inline-size: 100%;
    inline-size: auto;
  }
:where(svg){
    stroke: none;
    fill: currentColor;
  }
:where(svg):where(:not([fill])){
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
:where(svg):where(:not([width])){
    inline-size: 5rem;
  }
:where(input, button, textarea, select),
  :where(input[type="file"])::-webkit-file-upload-button{
    color: inherit;
    font: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    outline:none;
  }
:where(textarea){
    resize: vertical;
  }
@supports (resize: block){
    :where(textarea){
      resize: vertical;
    }
  }
:where( a , button , .swiper-button-prev , .swiper-button-next , summary ){
    -webkit-tap-highlight-color:rgba(0,0,0,0);
  }
button{
    background-color: transparent;
  }
:where(p, h1, h2, h3, h4, h5, h6){
    overflow-wrap: break-word;
  }
:where(ul, ol){
    list-style: none;
  }
a{
    text-decoration-skip-ink: auto;
    -webkit-text-decoration: none;
    text-decoration: none;
    color:var(--body);
    text-underline-offset: .4em;
  }
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])){
    cursor: pointer;
    touch-action: manipulation;
  }
:where(input[type="file"]){
    cursor: auto;
  }
:where(input[type="file"])::-webkit-file-upload-button,
  :where(input[type="file"])::file-selector-button{
    cursor: pointer;
  }
@media (prefers-reduced-motion: no-preference){
    :focus-visible{
      transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    }
    :where(:not(:active)):focus-visible{
      transition-duration: 0.25s;
    }
  }
:where(:not(:active)):focus-visible{
    outline-offset: 5px;
  }
:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"]),
  :where(input[type="file"])::-webkit-file-upload-button,
  :where(input[type="file"])::file-selector-button{
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
  }
:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"])[disabled]{
    cursor: not-allowed;
  }
table{
    border-collapse: collapse;
  }
picture{
    display: block;
  }
em{
    font-style: normal;
  }
dialog{
    max-width: 100%;
    max-height: 100%;
  }
/*--------------------------------------------
PRINT
---------------------------------------------*/
@media print{
	body{
		width: 100%;
		overflow-x:hidden;
	}
	@page {
		margin-top:0.4cm;
		margin: 0.5cm;
	}
	.no-print {
		display:none;
	}
}