/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

/***
    The new CSS reset - version 1.8.3 (last updated 21.1.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
 *:where(:not(html, iframe, canvas, img, svg, video, audio , ,form):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
/* ol, ul, menu {
  list-style: none;
} */

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
pre {
  all: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 100%; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
  letter-spacing: 0.05em;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 100%; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}


button-wrapper{
  margin: 0, auto;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.hs-breadcrumb-menu-item.first-crumb {
  padding-left: 0px;
}

.hs-breadcrumb-menu-item > a{
  color: #333;
  text-decoration: underline;
}


.breadmenu.white .hs-breadcrumb-menu-item > a,
.breadmenu.white .hs-breadcrumb-menu-item > span{
  color: rgb(255 255 255 / 79%);
}
body {
  line-height: 100%;
  overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 16px;
  margin: 0;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/* Lists */

ul,
ol {
  margin: 0;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  width: 120px;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

.main_cta{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.4rem;
  width: 24rem;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  border: solid var(--main-color) 1px;
  background: var(--main-color);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
.main_cta.head_cta{
  width: 14rem;
}
.main_cta:hover{
  color: var(--main-color);
  font-weight: bold;
  font-size: 1.4rem;
  background: #fff;
  text-decoration: none;
}


@media(max-width: 768px){
  .main_cta{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
    width: 18rem;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    font-size: 1.4rem;
    background: var(--main-color);
  }
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

.form-title{
  color: #333;
  line-height: 200%;
}

/* Labels */

form label {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 1.6rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header */
.sony_logo{
  background: #000;
  height: 65px;
  display: flex;
}
.sony_logo > img{
  margin-left: 3%;
  width: 100px;
}

.header{
  width: 100%;
  top: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #D9D9D9;
  position: fixed;
  z-index: 2;
  color: #333333;
  font-family: "ヒラギノ角ゴシック","メイリオ", "Meiryo","ＭＳ ゴシック","sans-serif";
  font-weight: 600;
}

.header-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  padding: 16px 0px;
}


.header-nav{
  display: flex;
  align-items: center;
}

.header-nav .hs-menu-wrapper ul li a,
.header-nav .hs-menu-wrapper ul li a:hover{
  font-weight: 600;
  color: #000;
  text-decoration: none;
}
.header-nav .hs-menu-wrapper ul li a:hover{
  color: #000;
  text-decoration: underline;
}


.header-nav-menu-pc{
  display: flex;
  justify-content: flex-end;
}

.header-nav-menu-tablet{
  display: none;
}

.hs-menu-item{
  margin-right: 24px;
  font-size: 14px;
}

/* tablet_layout */
@media screen and (max-width: 768px) {
  .sony_logo > img{
    margin-left: 25px;
  }
  .header{
    padding: 0px 0px;
  }

  .header-container{
    width: 100%;
    padding: 0;
  }

  .header-logo{
    margin-left: 16px;
  }

  .header-nav-menu-pc{
    display: none;
  }

  #hamburger{
    position: relative;
    display: block;
    width: 65px;
    height: 80px;
    margin: 0 0 0 auto;
    border: 1px solid #D9D9D9;
  }

  /*   ハンバーガー開くボタン */

  .hamburger-container-open{
    position: relative;
    display: block;
    height: 22px;
    margin-top: 28px;
  }


  .hamburger-container-open span{
    position: absolute;
    top: 50%;
    left: 25%;
    display: block;
    width: 32px;
    height: 2px;
    background: #1F54DB;
    transform: translateY(-50%);
  }

  .hamburger-container-open::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 25%;
    width: 32px;
    height: 2px;
    background: #1F54DB;
  }

  .hamburger-container-open::after{
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 32px;
    height: 2px;
    background: #1F54DB;
  }

  /*   ハンバーガー閉じるボタン */
  .hamburger-container-close.active{
    display: block;
    position: relative;
    height: 22px; 
    z-index: 2;
    margin-top: 28px;
    margin-left: 18px;

  }

  /*バツ印線1*/  
  .hamburger-container-close.active span{
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 32px;
    height: 2px;
    background: #1F54DB;
    transform: rotate( 45deg );

  }

  /*バツ印線2*/
  .hamburger-container-close.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 32px;
    height: 2px;
    background: #1F54DB;
    transform: rotate( -45deg );

  }


  .header-nav-menu-tablet.active{
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    width: 100%;
    background: rgba(240, 244, 255, .8);
    transition: all .2s ease-in-out;]
    /*     opacity: 0;
    transform: translateY(-100%); */
  }

  .hs-menu-wrapper{
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .hs-menu-wrapper ul{
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .hs-menu-item{
    padding: 0;
    margin: 0;
  }

  .hs-menu-wrapper li {
    margin: 0;
    padding: 0;
  }

  .hs-menu-wrapper li a{
    display: block;
    padding: 20px 0;
  }

  .hs_cos_wrapper_type_cta{
    margin-right: 32px;
  }



}
/* footer */
.footer{
  width: 100%;
  padding-top: 48px;
  font-family: "ヒラギノ角ゴシック","メイリオ", "Meiryo","ＭＳ ゴシック","sans-serif";
  font-weight: 600;
}
.footer a{
  font-family: "ヒラギノ角ゴシック","メイリオ", "Meiryo","ＭＳ ゴシック","sans-serif";
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.footer a:hover{
  font-family: "ヒラギノ角ゴシック","メイリオ", "Meiryo","ＭＳ ゴシック","sans-serif";
  font-weight: 600;
  text-decoration: underline;
  color: #fff;
}


.footer-container{
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
}

.footer-container-1{
  display: flex;
  margin-bottom: 36px;
  width: 100%;
}

.footer-container-1 .hs-menu-wrapper ul{
  display: flex;
  flex-wrap: wrap;
}
.footer-container-1 .hs-menu-wrapper li.hs-menu-depth-1 {
  width: 45%;
  margin-bottom: 2rem;
  margin-right: 0;
  flex-grow: 1;
}

.footer-container-1 .hs-menu-wrapper li.hs-menu-depth-2 a,
.footer-container-1 .hs-menu-wrapper li.hs-menu-depth-2 a:hover{
  font-weight: 300;
}

.footer-container-2 {
  width: 40%;
  margin-right: 2rem;
}

.company-info{
  color: #ffffff;
  font-weight: 300;
  font-size: 14px;
}

.company-info-name{
  margin-bottom: 8px;
}

.footer-logo{
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
  margin-bottom: 36px;
}

.footer-nav{
  /*   height: 96px; */
}





/* .footer-nav li:first-child{
margin-bottom: 16px;
} */

/* .footer-nav li:first-child{
margin-bottom: 16px;
} */

.footer-guidelines-list{
  display: flex;
  font-weight: 300;
  font-size: 12px;
  justify-content: space-between;
}

.hs-item-has-children li{
  margin-bottom: 0px;
  margin-top: 8px;
  list-style: none;
}

.hs-menu-children-wrapper{
  font-weight: 300;
  font-size: 14px;
}

.footer-guidelines{

}

.footer-nav-menu-mobile{
  display: none;
}

.copyright{
  background: #000;
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  text-align: right;
  padding: 1rem 3%;
}

.footer-guidelines,
.group_site{
  margin-bottom: 2rem;
}

@media(max-width: 768px){
  .footer-guidelines .hs-menu-wrapper{
    justify-content: flex-start;
  }

  .footer-guidelines .hs-menu-wrapper ul{
    align-items: flex-start;
  }
  .footer-guidelines .hs-menu-wrapper li a{
    padding: 10px 0;
  }
}


.group_site a{
  color: #696969;
  background: #BFBFBF;
  display: inline-block;
  padding: 5px 10px 5px 20px;
  border-radius: 50px;
  position: relative;
  font-size: 12px;
  font-weight: 400;
}
.group_site a:hover{
  font-weight: 400;
  color: #696969;
}

.group_site a:before{
  content: "▶︎";
  color: #696969;
  font-size: 10px;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%) scale(0.7);
}

/* tablet_layout */
@media screen and (max-width: 768px) {
  .footer-container-1{
    display: flex;
    flex-direction: column;
    justify-content:flex-start
  }

  .footer-container-2{
    margin-bottom: 48px;
    width: 90%;
  }

  .footer-nav div.hs-menu-wrapper{
    justify-content:flex-start
  }

  .footer-nav div.hs-menu-wrapper li a {
    padding: 0px;
  }

  .footer-nav div.hs-menu-wrapper ul{
    align-items: flex-start;
    width: 66%;
  }

  .footer-nav-menu-mobile{
    display: none;
  }

  .footer-nav div.hs-menu-wrapper li.hs-menu-depth-1 a{
    padding: 0px;
    border-bottom: solid #ffffff 0.5px;
    padding-bottom: 16px;
  }

  .footer-nav div.hs-menu-wrapper li.hs-menu-depth-2 a{
    border-bottom: solid #ffffff 0px;
    margin-bottom: 0px;
    padding: 0px;
  }
  .footer-container-1 .hs-menu-wrapper li.hs-menu-depth-1{
    width: 100%; 
  }

}

/* mobile_layout */
@media screen and (max-width: 480px) {  

  .footer-nav{
    width: 100%;
  }

  .footer-nav div.footer-nav-menu-pc{
    display: none;
  }

  .footer-nav-menu-mobile{
    display: block;
  }

  .footer-nav-menu-mobile div.hs-menu-wrapper ul{
    height: 100%;
  }

  .footer-guidelines-list {
    flex-direction: column;
  }

  .footer-guidelines-list li{
    margin-top: 16px;
  }

  .footer-container-1 {
    margin-bottom: 8px;
  }

  .footer-container {
    align-items: flex-start;
  }

  .footer-container-1 li.hs-menu-depth-1:nth-child(2) {
    margin-bottom: 16px;
  }

  .footer li.hs-menu-depth-1{
    /*     border-bottom: solid #ffffff 0.5px; */
    /*     padding-bottom: 16px; */
    width: 100%;
  }

  .footer-nav div.hs-menu-wrapper ul{
    width: 100%;
  }

  .footer-nav div.hs-menu-wrapper li.hs-menu-depth-1 a{
    padding: 0px;
    border-bottom: solid #ffffff 0.5px;
    padding-bottom: 16px;
  }

  .footer-nav div.hs-menu-wrapper li.hs-menu-depth-2 a{
    border-bottom: solid #ffffff 0px;
    margin-bottom: 0px;
    padding: 0px;
  }

  .footer-nav li:nth-child(3){
    margin-bottom: 16px;
  }

  .footer-nav li:nth-child(4){
    margin-bottom: 16px;
  }







}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 768px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 768px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
/*   left: -9999px;
  opacity: 0;
  position: absolute; */
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

:root {
  --main-color: #1F54DB;
  --sub-color: #F0F4FF;
  --main-black: #333333;
}

span.br{
  display: inline-block;
}

img {
	user-drag: none;
	-webkit-user-drag: none;
	-moz-user-select: none;
}





.index_head{
  background: #F0F4FF;
  padding: 12rem 0 6rem 0;
}

.index_head_h2{
  margin-bottom: 2.4rem;
}

.index_popular{
  margin-top: 4rem;
}

.index_body{
  margin-top: 4rem;
  display: flex;
  gap: 2.4rem;
}

.post_body{
  margin-top: 10rem;
  display: flex;
  gap: 2.4rem;
}

.index_lists{
  background: #F0F4FF;
  padding: 2.4rem;
  border-radius: 1rem;
  width: calc( 100% / 3 * 2 );
}

.index_content{
  width: calc( 100% / 3 * 2 );
}

.index_side{
  width: calc( 100% / 3 );
}

.article_sidearea{

}

.article_sidearea__serch,
.article_sidearea__tags{
  background: #F0F4FF;
  padding: 2.4rem;
  border-radius: 1rem;
}

.article_sidearea__serch{
  margin-bottom: 2.4rem;
}

.article_sidearea--head{
  font-size: 1.6rem;
  font-weight: 600;
  border-left: solid 3px #1F54DB;
  padding: 5px 0;
  padding-left: 1rem;
  margin-bottom: 2.4rem;
}

.index_cta{
  background: #F0F4FF;
  margin-top: 4.8rem;
  padding: 4.8rem 0;
}


@media screen and (max-width: 1024px){
  .index_body,
  .post_body{
    display: block;
  }
  .index_content{
    width: 100%;
  }
  .index_lists{
    width: 100vw;
    position: relative;
    left: 50%;
    border-radius: 0;
    transform: translateX(-50%);
  }
  .article_sidearea__serch{
    margin-top: 2.4rem;
  }
  .index_side{
    width: 100%;
  }
}



.hs-search-field form{
  position: relative;
}

.hs-search-field input{
  background-color: #fff !important;
  border: 0px solid #d1d6dc !important;
  border-radius: 32px !important;
  color: #333 !important;
  padding: 1rem!important;
}

.hs-search-field .serch_icon{
  background: url(//22441832.fs1.hubspotusercontent-na1.net/hubfs/22441832/raw_assets/public/Felica/images/Vector.svg);
  display: inline-block;
  height: 15px;
  width: 15px;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
.hs-search-field button{
  display: none; 
}

/* 全体 */
.contact-page{
  margin: 8rem 0rem 3rem;
}

@media screen and (max-width: 768px){
  .contact-page{
    margin: 0rem 0rem 3rem;
  }
}

/* 問い合わせタイトル */
.contact-page.post_body{
  display:block;
}

.contact-page-title{
  align-items: center;
  vertical-align: middle;
  background-color: #1F54DB;
}

.contact-page-title-text{
  font-size: 24px;
  font-family: "ヒラギノ角ゴシック","メイリオ", "Meiryo","ＭＳ ゴシック","sans-serif";
  font-weight: 600;
  width: 65%;
  line-height: 200%;
  color: white;
  text-align: center;
  width: 100%;
  padding:5rem;
}

/* 問い合わせ導入 */
.contact-page-richiText{
  line-height: 200%;
  text-align: center;
  padding: 2rem;
}

/* 問い合わせメイン */
.contact-page-main{
  display:flex;
  margin-top: 5rem;
}

.contact-page-summary{
  width: 50%;
}

/* フォーム */

.contact-page-form{
  width:100%;
  padding: 20px;
  background-color:#F0F4FF;
  border-radius: 1%;
  margin-left: 10px;
}

.contact-page-form.w-50{
  width: calc( 50% - 3rem );
  margin-left: 3rem;
  height: fit-content;
}

.contact-page-form label{
  font-size: 1.6rem;
}

.contact-page-form .hs-input{
  font-size: 1.6rem;
  border: 1px solid #f5f5f5;
}

.contact-page-form  .hs_submit.hs-submit {
  display: flex;
  justify-content: center;
}

.contact-page-form  .hs_submit.hs-submit input{
  font-size: 1.6rem;
  font-weight: bold;
  background: var(--main-color);
}
.contact-page-form  .hs_submit.hs-submit input:hover{
  font-size: 1.6rem;
  font-weight: bold;
  background: #fff;
  color: var(--main-color);
}

.contact-page-form textarea{
  height: 200px;
}

.contact-page-form .hs-richtext p
font-size: 1.6rem !important;
}

.contact-page-form.hs-input {
  border: 2px solid #fff;
}

.contact-page-for input{

}


@media screen and (max-width: 768px){
  .contact-page-main{
    display:flex;
    flex-direction: column;
  }
  .contact-page-summary{
    width:100%;
  }

  .contact-page-form.w-50{
    width: 100%;
    margin-left: 0rem;
    margin-top: 3rem;
  }
}


a:active{ 
  font-family: "Hiragino Sans","Hiragino Kaku Gothic ProN","Meiryo",sans-serif !important;
}