@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(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.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -moz-appearance: button;
       appearance: button;
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -moz-appearance: textfield;
       appearance: textfield;
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons 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 styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

* {
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
  background-size: contain;
  background-repeat: no-repeat;
  color: #000000;
  box-sizing: border-box;
}

body,
html {
  position: relative;
  margin: 0;
  width: 100vw;
  overflow-x: clip;
}

h2 {
  text-align: center;
}
h2 span {
  display: block;
}

h3,
h4 {
  font-weight: 300;
}

a {
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  cursor: pointer;
  opacity: 0.6;
}

ul {
  list-style-type: none;
}

@media screen and (max-width: 820px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 1040px) {
  .pc-only {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  .pc-only {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 820px) {
  .sp {
    display: unset;
  }
}

.container {
  width: 1024px;
  margin: 0 auto;
}
@media screen and (max-width: 1040px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}

img {
  width: 100%;
}

.button {
  color: #fff;
  background-color: #002663;
  letter-spacing: 0.1em;
  border: solid 2px #002663;
  border-radius: 100px;
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 27px;
  width: 580px;
  margin: 0 auto;
  padding: 16px 20px 17px 64px;
  transition: all 0.3s;
}
@media screen and (max-width: 820px) {
  .button {
    width: 100%;
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 24px;
    text-align: center;
    padding: 8px 10px 10px 10px;
    font-weight: 500;
  }
}
.button::before {
  content: "";
  right: 42px;
  bottom: 19px;
  width: 20.6px;
  height: 20.6px;
  position: absolute;
  background-image: url(../images/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
@media screen and (max-width: 820px) {
  .button::before {
    right: 32px;
    bottom: 26px;
    width: 17px;
    height: 17px;
  }
}
.button:hover {
  opacity: 1;
  background-color: #fff;
  color: #002663;
}
.button:hover::before {
  background-image: url(../images/arrow-on.svg);
  right: 32px;
}
@media screen and (max-width: 820px) {
  .button.small {
    font-size: 14px;
    padding: 8px 25px 10px 0px;
  }
  .button.small::before {
    right: 22px;
  }
  .button.small:hover::before {
    right: 12px;
  }
}

header {
  position: fixed;
  z-index: 10;
  background: #fff;
  width: 100%;
}
@media screen and (max-width: 1040px) {
  header .hum {
    display: block;
    top: 4px;
    right: 7px;
    position: relative;
  }
  header .hum span {
    width: 22px;
    height: 2px;
    background-color: #002663;
    display: block;
    position: relative;
    margin-bottom: 8px;
    transition: all 0.3s;
  }
  header .hum.open span {
    opacity: 0;
  }
  header .hum.open span:first-child {
    transform: rotate(-45deg);
    top: 12px;
    opacity: 1;
  }
  header .hum.open span:last-child {
    transform: rotate(45deg);
    top: -8px;
    opacity: 1;
  }
}

.header__inside {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
  transition: height 0.3s;
}
@media screen and (max-width: 1040px) {
  .header__inside {
    height: unset;
  }
}
@media screen and (max-width: 1040px) {
  .header__inside h1 {
    margin: 12px 0 15px;
  }
}
@media screen and (max-width: 820px) {
  .header__inside h1 {
    margin: 0 0 5px;
  }
}
.header__inside.scrolled {
  height: 80px;
}
@media screen and (max-width: 820px) {
  .header__inside.scrolled {
    height: unset;
  }
}
.header__left img {
  width: 300px;
}
@media screen and (max-width: 820px) {
  .header__left img {
    width: 50vw;
  }
}
@media screen and (max-width: 1040px) {
  .header__right {
    position: absolute;
    background: #fff;
    z-index: 1;
    top: 52px;
    left: 0;
    width: 100vw;
    height: 0;
    overflow: hidden;
  }
  .header__right.open {
    height: calc(100vh - 52px);
  }
}
.header__right ul {
  display: flex;
  gap: 36px;
  align-items: center;
}
@media screen and (max-width: 1040px) {
  .header__right ul {
    display: block;
    padding: 0;
    margin-top: 30px;
  }
}
.header__right ul li {
  padding-top: 3px;
}
@media screen and (max-width: 1040px) {
  .header__right ul li {
    height: 65px;
    padding: 14px;
    text-align: center;
    border-top: solid #e5e5e5 1px;
  }
}
@media screen and (max-width: 820px) {
  .header__right ul li {
    height: auto;
  }
}
.header__right ul li:last-child {
  display: none;
}
@media screen and (max-width: 1040px) {
  .header__right ul li:last-child {
    display: block;
    border-top: none;
  }
}
.header__right a {
  color: #002663;
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 820px) {
  .header__right a {
    height: 65px;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 2;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__right a.button {
  margin: 0;
  color: #fff;
  display: block;
  width: 220px;
  padding: 8px 20px 9px;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (max-width: 1040px) {
  .header__right a.button {
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 24px;
    display: inline-block;
    width: auto;
    padding: 8px 44px 9px;
    top: 25px;
    position: relative;
  }
}
@media screen and (max-width: 820px) {
  .header__right a.button {
    top: 10px;
  }
}
.header__right a.button::before {
  bottom: 9px;
  right: 20px;
}
@media screen and (max-width: 1040px) {
  .header__right a.button::before {
    bottom: 12px;
  }
}
.header__right a.button:hover {
  color: #002663;
}
.header__right a.button:hover::before {
  right: 14px;
}
.header__right a.button2 {
  display: none;
}
@media screen and (max-width: 1040px) {
  .header__right a.button2 {
    display: inline-block;
    top: 40px;
    padding: 6px 96px 7px;
    background-color: #ffb999;
    color: #002663;
    border-color: #ffb999;
  }
}
@media screen and (max-width: 820px) {
  .header__right a.button2 {
    top: 8px;
  }
}
@media screen and (max-width: 1040px) {
  .header__right a.button2::before {
    bottom: 21px;
  }
}

.bg-blue {
  position: relative;
}
.bg-blue::before {
  z-index: -1;
  position: absolute;
  content: "";
  left: -470px;
  top: 310px;
  width: 698px;
  height: 698px;
  background-image: url(../images/common-bg01.jpg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 820px) {
  .bg-blue::before {
    left: -300px;
    top: -107px;
    width: 544px;
    height: 544px;
  }
}

.bg-orange {
  position: relative;
}
.bg-orange::after {
  z-index: -1;
  position: absolute;
  content: "";
  right: -499px;
  top: 200px;
  width: 698px;
  height: 698px;
  background-image: url(../images/common-bg02.jpg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 820px) {
  .bg-orange::after {
    right: -200px;
    top: 250px;
    width: 424px;
    height: 424px;
  }
}

#kv {
  padding-top: 150px;
}
@media screen and (max-width: 1040px) {
  #kv {
    padding-top: 100px;
  }
}
@media screen and (max-width: 820px) {
  #kv {
    padding-top: 75px;
  }
}
#kv img {
  width: 100%;
}
@media screen and (max-width: 820px) {
  #kv img {
    width: calc(100% + 40px);
    margin: -23px 0 0 -20px;
  }
}

h2 {
  color: #ffb999;
  font-weight: 300;
  font-size: 38px;
  letter-spacing: 0.13em;
  line-height: 60px;
}
@media screen and (max-width: 820px) {
  h2 {
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 40px;
    text-align: center;
    font-weight: 500;
  }
}
h2 span {
  color: #009cb9;
  font-weight: 300;
  font-size: 20px;
  line-height: 42px;
  margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
  h2 span {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 42px;
  }
}

#about {
  margin-top: 135px;
}
@media screen and (max-width: 820px) {
  #about {
    margin-top: 80px;
  }
}
@media screen and (max-width: 820px) {
  #about h2 span {
    margin-bottom: 10px;
  }
}
#about .content {
  width: 1075px;
  margin: 0 auto;
}
@media screen and (max-width: 1040px) {
  #about .content {
    width: 100%;
  }
}
#about .content h3 {
  color: #ffb999;
  border: solid #ffb999 2px;
  display: inline-block;
  padding: 17px 30px 20px;
  border-radius: 50px;
  line-height: 1;
  font-size: 30px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 820px) {
  #about .content h3 {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin: 20px 0;
    font-weight: 500;
    padding: 13px 30px 14px;
  }
}
#about .content ul {
  position: relative;
  margin-top: 30px;
}
@media screen and (max-width: 820px) {
  #about .content ul {
    margin-top: 10px;
    padding: 0 8px 0 20px;
  }
}
#about .content ul::before {
  content: "";
  width: 1px;
  height: calc(100% - 10px);
  position: absolute;
  top: 20px;
  left: 0;
  background-size: 2px 6px;
  background-image: linear-gradient(to bottom, #ffb999 2px, transparent 1px);
  background-repeat: repeat-y;
  background-position: left bottom;
  padding-right: 1px;
}
@media screen and (max-width: 820px) {
  #about .content ul::before {
    top: 5px;
  }
}
#about .content ul li {
  position: relative;
  padding-left: 40px;
  font-size: 22px;
  margin-bottom: 54px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 820px) {
  #about .content ul li {
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 25px;
    padding-left: 26px;
    margin-bottom: 20px;
  }
}
#about .content ul li::before {
  content: "";
  width: 14.5px;
  height: 14.5px;
  position: absolute;
  top: 14px;
  left: 0;
  border: solid 1px #ffb999;
  border-radius: 2px;
}
@media screen and (max-width: 820px) {
  #about .content ul li::before {
    top: 6px;
  }
}
#about .content.content01 {
  padding-left: 100px;
}
@media screen and (max-width: 820px) {
  #about .content.content01 {
    padding: 0 10px;
  }
}
#about .content.content01 h3 {
  border: solid #009cb9 2px;
  color: #009cb9;
}
@media screen and (max-width: 820px) {
  #about .content.content01 h3 {
    font-weight: 500;
    border: solid #009cb9 1px;
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}
#about .content.content01 ul::before {
  background-image: linear-gradient(to bottom, #009cb9 2px, transparent 1px);
}
#about .content.content01 ul li::before {
  border: solid 1px #009cb9;
}
#about .content.content01.bg-blue::before {
  width: 1286px;
  height: 1286px;
  left: unset;
  top: 130px;
  right: -1300px;
}
@media screen and (max-width: 820px) {
  #about .content.content01.bg-blue::before {
    width: 465px;
    height: 465px;
    left: unset;
    top: 350px;
    right: -290px;
  }
}
#about .content.content01.bg-orange::after {
  width: 971px;
  height: 971px;
  left: -1000px;
  top: -130px;
  right: unset;
}
@media screen and (max-width: 820px) {
  #about .content.content01.bg-orange::after {
    width: 343px;
    height: 343px;
    left: -220px;
    top: -130px;
    right: unset;
  }
}
#about .content.content02 {
  padding-left: 100px;
}
@media screen and (max-width: 820px) {
  #about .content.content02 {
    padding: 0 10px;
  }
}
#about .content.content03 {
  margin: 130px auto 0;
}
#about .content.content03 .message {
  text-align: center;
  color: #009cb9;
  font-size: 23px;
  letter-spacing: 0.12em;
  line-height: 2;
}
@media screen and (max-width: 820px) {
  #about .content.content03 .message {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 40px;
    font-weight: 500;
  }
}
#about .content.content03 .message img {
  width: 480px;
  margin: 0 18px 22px 0;
}
@media screen and (max-width: 820px) {
  #about .content.content03 .message img {
    width: calc(100% - 100px);
  }
}
#about .content.content03 .explain {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 50px;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 820px) {
  #about .content.content03 .explain {
    margin-bottom: 64px;
    margin-top: -10px;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 34px;
  }
}
#about .content.content03 .flex {
  display: flex;
  gap: 68px;
  width: 870px;
  margin: 52px auto 0;
}
@media screen and (max-width: 1040px) {
  #about .content.content03 .flex {
    gap: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  #about .content.content03 .flex {
    display: block;
  }
}
#about .content.content03 .flex .item {
  width: 50%;
  position: relative;
  margin-bottom: 180px;
}
@media screen and (max-width: 820px) {
  #about .content.content03 .flex .item {
    margin-bottom: 110px;
    width: 100%;
  }
}
#about .content.content03 .flex .item.bg-blue::before {
  top: -216px;
  left: -430px;
  width: 1010px;
  height: 1010px;
}
@media screen and (max-width: 820px) {
  #about .content.content03 .flex .item.bg-blue::before {
    top: -41vw;
    left: 0;
    width: 150vw;
    height: 150vw;
  }
}
#about .content.content03 .flex .item.bg-orange::after {
  right: -379px;
  top: -82px;
  width: 775px;
  height: 775px;
}
@media screen and (max-width: 820px) {
  #about .content.content03 .flex .item.bg-orange::after {
    top: 0;
    left: -210px;
    width: 400px;
    height: 400px;
  }
}
#about .content.content03 .flex .item h4 {
  position: absolute;
  bottom: -190px;
  font-size: 36px;
  line-height: 2;
  text-align: center;
  width: 100%;
  color: #009cb9;
}
@media screen and (max-width: 820px) {
  #about .content.content03 .flex .item h4 {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 22px;
    writing-mode: vertical-rl;
    bottom: 110px;
    left: 80px;
    width: 22px;
    height: 120px;
    margin: 0;
  }
}
#about .content.content03 .flex .item img.main {
  border-radius: 75px;
  width: 400px;
}
@media screen and (max-width: 1040px) {
  #about .content.content03 .flex .item img.main {
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  #about .content.content03 .flex .item img.main {
    border-radius: 45px 0 0 45px;
    width: calc(100% - 100px);
    left: 130px;
    position: relative;
  }
}
#about .content.content03 .flex .item img.sub {
  position: absolute;
  height: 180px;
  left: -130px;
  bottom: -30px;
  width: auto;
}
@media screen and (max-width: 1040px) {
  #about .content.content03 .flex .item img.sub {
    left: -10px;
  }
}
@media screen and (max-width: 820px) {
  #about .content.content03 .flex .item img.sub {
    left: 70px;
    height: 124px;
    bottom: -35px;
  }
}
#about .content.content03 .flex .item:last-child h4 {
  color: #ffb999;
}
@media screen and (max-width: 820px) {
  #about .content.content03 .flex .item:last-child h4 {
    left: unset;
    right: 80px;
  }
}
@media screen and (max-width: 820px) {
  #about .content.content03 .flex .item:last-child img.main {
    border-radius: 0 45px 45px 0;
    width: calc(100% - 100px);
    left: -20px;
    position: relative;
  }
}
#about .content.content03 .flex .item:last-child img.sub {
  left: unset;
  right: -80px;
}
@media screen and (max-width: 1040px) {
  #about .content.content03 .flex .item:last-child img.sub {
    right: -10px;
  }
}
@media screen and (max-width: 820px) {
  #about .content.content03 .flex .item:last-child img.sub {
    right: 90px;
  }
}

#service {
  margin-top: 135px;
  margin-bottom: 180px;
}
@media screen and (max-width: 820px) {
  #service {
    margin-bottom: 140px;
  }
}
#service.bg-blue::before {
  top: -460px;
  left: -1190px;
  width: 1424px;
  height: 1424px;
}
@media screen and (max-width: 820px) {
  #service.bg-blue::before {
    top: -300px;
    left: -270px;
    width: 465px;
    height: 465px;
    opacity: 0.55;
  }
}
#service h2 {
  color: #002663;
  margin-top: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 820px) {
  #service h2 {
    margin-bottom: 0;
    margin-top: 145px;
  }
}
#service h2 img {
  width: 500px;
}
@media screen and (max-width: 820px) {
  #service h2 img {
    width: calc(100% - 30px);
  }
}
#service .content {
  padding: 0 50px;
}
@media screen and (max-width: 1040px) {
  #service .content {
    padding: 0 10px;
  }
}
#service .content h3 {
  font-size: 38px;
  letter-spacing: 0.13em;
  line-height: 78px;
  text-align: center;
  color: #009cb9;
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 820px) {
  #service .content h3 {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 500;
  }
}
#service .content h3::before {
  content: "";
  width: 104px;
  height: 1px;
  position: absolute;
  top: 40px;
  left: calc(50% - 240px);
  background-size: 8px 2px;
  background-image: linear-gradient(to right, #009cb9 4px, transparent 4px);
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-right: 104px;
}
@media screen and (max-width: 820px) {
  #service .content h3::before {
    width: 85px;
    padding-right: 85px;
    left: 0;
    top: 39px;
  }
}
#service .content h3::after {
  content: "";
  width: 104px;
  height: 1px;
  position: absolute;
  top: 40px;
  right: calc(50% - 240px);
  background-size: 8px 2px;
  background-image: linear-gradient(to right, #009cb9 4px, transparent 4px);
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-right: 104px;
}
@media screen and (max-width: 820px) {
  #service .content h3::after {
    width: 85px;
    padding-right: 85px;
    right: 0;
    top: 39px;
  }
}
#service .content .item {
  display: flex;
  gap: 0 55px;
  align-items: center;
}
@media screen and (max-width: 820px) {
  #service .content .item {
    display: block;
    margin-bottom: 60px;
  }
}
#service .content .item__wrap {
  gap: 138px 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  #service .content .item__wrap {
    display: block;
  }
}
#service .content .item__text {
  width: calc(100% - 520px);
}
@media screen and (max-width: 1040px) {
  #service .content .item__text {
    width: 400px;
  }
}
@media screen and (max-width: 820px) {
  #service .content .item__text {
    width: 100%;
  }
}
#service .content .item__text h4 {
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: left;
  color: #009cb9;
  padding-left: 100px;
  position: relative;
  margin-top: 0;
}
@media screen and (max-width: 820px) {
  #service .content .item__text h4 {
    font-size: 18px;
    padding-left: 60px;
    width: 100%;
    margin-bottom: 28px;
    line-height: 1.5;
    font-weight: 500;
  }
}
#service .content .item__text h4 span {
  position: absolute;
  left: 0;
  top: 10px;
  width: 80px;
  height: 80px;
  display: inline-block;
  border: solid 1px #009cb9;
  color: #009cb9;
  border-radius: 100px;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  font-weight: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1px;
  padding-left: 1px;
}
@media screen and (max-width: 820px) {
  #service .content .item__text h4 span {
    top: 8px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-weight: 500;
  }
}
#service .content .item__text p {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 48px;
}
#service .content .item__img {
  width: 520px;
}
@media screen and (max-width: 1040px) {
  #service .content .item__img {
    width: calc(100% - 380px);
  }
}
@media screen and (max-width: 820px) {
  #service .content .item__img {
    width: 100%;
  }
}
#service .content .item__img img {
  border-radius: 75px;
}
@media screen and (max-width: 1040px) {
  #service .content .item__img img {
    border-radius: 45px;
  }
}
@media screen and (max-width: 820px) {
  #service .content .item__img p {
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 28px;
    text-align: left;
    color: #000;
    margin: 20px 0px 0;
    display: block;
  }
}
@media screen and (max-width: 820px) {
  #service .content .item:first-child .item__text h4 span {
    top: -5px;
  }
}
#service .content .item:nth-child(even) {
  flex-direction: row-reverse;
}
#service .content .item:nth-child(2).bg-blue::before {
  top: -500px;
  left: 900px;
  width: 1873px;
  height: 1873px;
}
@media screen and (max-width: 820px) {
  #service .content .item:nth-child(2).bg-blue::before {
    width: 593px;
    height: 593px;
    left: unset;
    top: -240px;
    right: -390px;
    opacity: 0.55;
  }
}
#service .content .item:nth-child(3).bg-blue::before {
  top: -200px;
  left: -900px;
  width: 1213px;
  height: 1213px;
}
@media screen and (max-width: 820px) {
  #service .content .item:nth-child(3).bg-blue::before {
    top: 515px;
    left: -520px;
    width: 792px;
    height: 792px;
    opacity: 0.55;
  }
}
#service .content.content02 {
  margin-top: 179px;
}
@media screen and (max-width: 820px) {
  #service .content.content02 {
    margin-top: 90px;
  }
}
#service .content.content02 .item {
  display: block;
  width: calc(50% - 20px);
}
@media screen and (max-width: 820px) {
  #service .content.content02 .item {
    width: 100%;
    margin-bottom: 0;
  }
}
#service .content.content02 .item__wrap {
  display: flex;
  gap: 77px 40px;
}
@media screen and (max-width: 820px) {
  #service .content.content02 .item__wrap {
    gap: 0;
  }
}
#service .content.content02 .item img {
  border-radius: 35px;
}
@media screen and (max-width: 820px) {
  #service .content.content02 .item img {
    border-radius: 20px;
  }
}
#service .content.content02 .item h4 {
  letter-spacing: 0.1em;
  text-align: left;
  color: #ffb999;
  position: relative;
  font-size: 28px;
  line-height: 48px;
  padding-left: 100px;
  margin-top: 30px;
  height: 70px;
  margin-left: 40px;
}
@media screen and (max-width: 1040px) {
  #service .content.content02 .item h4 {
    margin-left: 0;
  }
}
#service .content.content02 .item h4.pc {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 820px) {
  #service .content.content02 .item h4.pc {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  #service .content.content02 .item h4.sp {
    display: block;
  }
}
@media screen and (max-width: 820px) {
  #service .content.content02 .item h4 {
    font-size: 18px;
    padding-left: 60px;
    width: 100%;
    margin-bottom: 22px;
    line-height: 1.5;
    height: auto;
    margin-bottom: 20px;
    font-weight: 500;
  }
}
#service .content.content02 .item h4 span {
  position: absolute;
  left: 0;
  top: calc(50% - 42px);
  width: 80px;
  height: 80px;
  display: inline-block;
  border: solid 1px #ffb999;
  color: #ffb999;
  border-radius: 100px;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 79px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #service .content.content02 .item h4 span {
    top: 7px;
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 2;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 1px;
    padding-left: 1px;
  }
}
#service .content.content02 .item p {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 48px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #service .content.content02 .item p {
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 30px;
    text-align: left;
  }
}
#service .content.content02 .item:nth-child(2).bg-orange::after {
  top: -400px;
  left: 390px;
  width: 1873px;
  height: 1873px;
}
@media screen and (max-width: 820px) {
  #service .content.content02 .item:nth-child(2).bg-orange::after {
    top: -470px;
    left: unset;
    width: 414px;
    height: 414px;
    right: -280px;
  }
}
@media screen and (max-width: 820px) {
  #service .content.content02 .item:nth-child(2) h4 span {
    top: -7px;
  }
}
#service .content.content02 .item:nth-child(3).bg-orange::after {
  top: -110px;
  left: -1000px;
  width: 1213px;
  height: 1213px;
}
@media screen and (max-width: 820px) {
  #service .content.content02 .item:nth-child(3).bg-orange::after {
    top: 90px;
    left: -320px;
    width: 460px;
    height: 460px;
  }
}
#service .content.content02 h3 {
  color: #ffb999;
}
#service .content.content02 h3::before {
  left: calc(50% - 290px);
  background-image: linear-gradient(to right, #ffb999 4px, transparent 4px);
}
@media screen and (max-width: 820px) {
  #service .content.content02 h3::before {
    left: 0;
  }
}
#service .content.content02 h3::after {
  right: calc(50% - 290px);
  background-image: linear-gradient(to right, #ffb999 4px, transparent 4px);
}
@media screen and (max-width: 820px) {
  #service .content.content02 h3::after {
    right: 0;
  }
}

#data h2 {
  color: #002663;
}
#data .img-flex {
  margin: 0 -80px 88px;
}
@media screen and (max-width: 820px) {
  #data .img-flex {
    margin: 0 -20px 75px;
  }
}
#data .item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 134px;
}
@media screen and (max-width: 820px) {
  #data .item {
    margin-bottom: 44px;
  }
}
#data .item .img-wrap {
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 1040px) {
  #data .item .img-wrap {
    padding: 0 10vw;
  }
}
@media screen and (max-width: 820px) {
  #data .item .img-wrap {
    padding: 0;
  }
}
#data .item .img-wrap img {
  display: block;
}
#data .item.bg-orange::after {
  top: 0;
  left: -900px;
  width: 1264px;
  height: 1264px;
}
@media screen and (max-width: 820px) {
  #data .item.bg-orange::after {
    display: none;
  }
}
#data .item.bg-blue::before {
  top: 0;
  left: 1000px;
  width: 1512px;
  height: 1512px;
}
@media screen and (max-width: 820px) {
  #data .item.bg-blue::before {
    top: 50px;
    left: 180px;
    width: 465px;
    height: 465px;
    opacity: 0.55;
  }
}
#data h3 {
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 74px;
  color: #fff;
  background-color: #009cb9;
  text-align: center;
  display: inline-block;
  padding: 0 45px 1px;
  border-radius: 50px;
  margin-bottom: 64px;
}
@media screen and (max-width: 820px) {
  #data h3 {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 48px;
    padding: 0 24px 2px;
    margin-bottom: 24px;
  }
}

#example {
  margin-top: 280px;
  width: 1024px;
  margin: 0 auto;
}
@media screen and (max-width: 1040px) {
  #example {
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  #example {
    margin-top: 140px;
  }
}
#example h2 {
  color: #002663;
}
#example .img-flex {
  margin: 0 -48px;
}
#example .item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 78px;
  margin-bottom: 120px;
  padding: 0 35px;
}
@media screen and (max-width: 820px) {
  #example .item {
    gap: 10px;
    padding: 0 5px;
    margin-bottom: 80px;
  }
}
#example .item h4 {
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 55px;
  color: #009cb9;
  position: relative;
  margin-bottom: 50px;
  margin-top: 0;
}
@media screen and (max-width: 820px) {
  #example .item h4 {
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 32px;
    margin-bottom: 40px;
    font-weight: 500;
  }
}
#example .item h4::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -24px;
  left: 0;
  background-size: 8px 2px;
  background-image: linear-gradient(to right, #009cb9 4px, transparent 4px);
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-right: 104px;
}
@media screen and (max-width: 820px) {
  #example .item h4::before {
    bottom: -20px;
  }
}
#example .item.reverse {
  flex-direction: row-reverse;
}
#example .item:last-child h4 {
  color: #ffb999;
}
#example .item:last-child h4::before {
  background-image: linear-gradient(to right, #ffb999 4px, transparent 4px);
}
#example .item:first-child {
  border-radius: 20px;
  background: #f8fcfd;
  border: 2px solid rgba(172, 198, 203, 0.0509803922);
  padding: 40px 70px;
}
@media screen and (max-width: 820px) {
  #example .item:first-child {
    padding: 30px 15px 0;
    gap: 0;
  }
}
@media screen and (max-width: 820px) {
  #example .item:nth-child(2) .item__img, #example .item:nth-child(3) .item__img {
    padding: 0;
  }
}
@media screen and (max-width: 820px) {
  #example .item:nth-child(2) .item__img img, #example .item:nth-child(3) .item__img img {
    padding: 0 20px;
  }
}
@media screen and (max-width: 820px) {
  #example .item:nth-child(2) .item__img p, #example .item:nth-child(3) .item__img p {
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 24px;
  }
}
#example .item__text {
  width: calc(100% - 395px);
}
@media screen and (max-width: 820px) {
  #example .item__text {
    width: 100%;
  }
}
#example .item__text p {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 42px;
  color: #002663;
}
@media screen and (max-width: 820px) {
  #example .item__text p {
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 25px;
  }
}
#example .item__img {
  width: 317px;
}
@media screen and (max-width: 820px) {
  #example .item__img {
    padding: 8px 80px 15px;
  }
}
#example .item__img p {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #example .item__img p {
    font-size: 14px;
    line-height: 24px;
  }
}
#example .item.bg-blue::before {
  top: -1000px;
  left: -1130px;
  width: 1388px;
  height: 1388px;
}
@media screen and (max-width: 820px) {
  #example .item.bg-blue::before {
    top: -350px;
    left: -230px;
    width: 465px;
    height: 465px;
    opacity: 0.55;
  }
}
#example .item.bg-orange::after {
  top: -70px;
  left: -1000px;
  width: 1078px;
  height: 1078px;
}
@media screen and (max-width: 820px) {
  #example .item.bg-orange::after {
    top: 510px;
    left: -240px;
    width: 367px;
    height: 367px;
  }
}
#example .item:nth-child(2).bg-orange::after {
  top: -400px;
  left: 1400px;
  width: 1388px;
  height: 1388px;
}
@media screen and (max-width: 820px) {
  #example .item:nth-child(2).bg-orange::after {
    top: -270px;
    left: 270px;
    width: 562px;
    height: 562px;
  }
}
#example .content02 {
  width: 100%;
  margin: 260px auto 280px;
}
@media screen and (max-width: 1040px) {
  #example .content02 {
    width: calc(100% - 100px);
  }
}
@media screen and (max-width: 820px) {
  #example .content02 {
    width: 100%;
    margin-top: 110px;
    margin-bottom: 148px;
  }
}
#example .content02.bg-blue::before {
  top: 150px;
  left: 1300px;
  width: 1200px;
  height: 1200px;
}
@media screen and (max-width: 820px) {
  #example .content02.bg-blue::before {
    top: 490px;
    left: 200px;
    width: 465px;
    height: 465px;
    opacity: 0.55;
  }
}
#example .content02 h3 {
  font-size: 50px;
  letter-spacing: 0.13em;
  line-height: 78px;
  text-align: center;
  color: #002663;
}
@media screen and (max-width: 820px) {
  #example .content02 h3 {
    font-size: 32px;
    letter-spacing: 0.13em;
    font-weight: 500;
  }
}
#example .content02 .item {
  display: block;
  padding: 0;
  background-color: unset;
  border: solid #002663 1px;
  border-radius: 23px;
  margin-bottom: 50px;
}
#example .content02 .item .question {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: solid #002663 1px;
  padding: 0;
}
#example .content02 .item .question h4 {
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 90px;
  color: #002663;
  width: 185px;
  margin: 0;
  text-align: center;
  padding: 0;
}
@media screen and (max-width: 820px) {
  #example .content02 .item .question h4 {
    width: 80px;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-weight: 400;
  }
}
#example .content02 .item .question h4::before {
  display: none;
}
#example .content02 .item .question h4 span {
  color: #002663;
  margin-right: 4px;
}
@media screen and (max-width: 820px) {
  #example .content02 .item .question h4 span {
    font-weight: 400;
  }
}
#example .content02 .item .question p {
  font-size: 24px;
  letter-spacing: 0.13em;
  line-height: 60px;
  color: #002663;
  margin: 0;
  width: calc(100% - 185px);
  padding: 5px 0 6px 50px;
  border-left: solid #002663 1px;
  line-height: 1.6;
  min-height: 90px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 820px) {
  #example .content02 .item .question p {
    width: calc(100% - 85px);
    padding: 0;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 8px 10px 13px;
    min-height: unset;
    font-weight: 400;
  }
}
#example .content02 .item .answer {
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 40px;
  padding: 0 50px 0;
}
@media screen and (max-width: 820px) {
  #example .content02 .item .answer {
    letter-spacing: 0.1em;
    padding: 8px 22px 9px;
    font-size: 15px;
    margin: 0;
    line-height: 25px;
  }
}
#example .youtube {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16/9;
  margin: 40px auto;
}
#example .youtube iframe {
  width: 100%;
  height: 100%;
}
#example .youtube h3 {
  font-size: 24px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 820px) {
  #example .youtube h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.links {
  display: flex;
  flex-wrap: wrap;
}
.links .item {
  width: 50%;
  background-color: #002663;
  height: 220px;
}
@media screen and (max-width: 820px) {
  .links .item {
    height: 185px;
    width: 100%;
  }
}
.links .item a {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 26px;
  letter-spacing: 0.13em;
  line-height: 50px;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 50px 160px 100px 0px;
  transition: all 0.3s;
  border: solid 5px #002663;
  font-weight: normal;
}
@media screen and (max-width: 1040px) {
  .links .item a {
    font-size: 26px;
    line-height: 2;
  }
}
@media screen and (max-width: 820px) {
  .links .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 22px;
    letter-spacing: 0.13em;
    line-height: normal;
  }
}
.links .item a::before {
  content: "";
  right: calc(50% - 190px);
  bottom: calc(50% - 20px);
  width: 40.5px;
  height: 40.5px;
  position: absolute;
  background-image: url(../images/arrow.svg);
  background-size: contain;
  transition: all 0.3s;
}
@media screen and (max-width: 820px) {
  .links .item a::before {
    right: calc(50% - 170px);
  }
}
@media screen and (max-width: 820px) {
  .links .item a::before {
    width: 32px;
    height: 32px;
    right: 34px;
    top: calc(50% - 13px);
  }
}
.links .item a::after {
  content: "";
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 3px;
  position: absolute;
  transition: all 0.3s;
}
.links .item a:hover {
  border: solid 5px #002663;
  opacity: 1;
  background-color: #fff;
  color: #002663;
  text-decoration: underline;
}
.links .item a:hover::before {
  background-image: url(../images/arrow-on.svg);
  right: calc(50% - 200px);
}
@media screen and (max-width: 820px) {
  .links .item a:hover::before {
    right: calc(50% - 180px);
  }
}
.links .item:first-child {
  background-color: #ffb999;
}
.links .item:first-child a {
  color: #002663;
  padding: 75px 230px 70px 0;
  text-align: right;
  border: solid 5px #ffb999;
}
.links .item:first-child a::before {
  right: 110px;
}
@media screen and (max-width: 1040px) {
  .links .item:first-child a::before {
    right: 50px;
  }
}
@media screen and (max-width: 820px) {
  .links .item:first-child a::before {
    right: 34px;
    top: calc(50% - 13px);
  }
}
@media screen and (max-width: 1040px) {
  .links .item:first-child a {
    font-size: 24px;
    padding: 82px 180px 70px 10px;
  }
}
@media screen and (max-width: 820px) {
  .links .item:first-child a {
    padding: 0 30px 0 0;
    font-size: 22px;
    letter-spacing: 0.13em;
    line-height: normal;
  }
}
.links .item:first-child a:hover {
  border: solid 5px #002663;
}
.links .item:first-child a:hover::before {
  right: 100px;
}
@media screen and (max-width: 1040px) {
  .links .item:first-child a:hover::before {
    right: 40px;
  }
}

footer {
  overflow-y: clip;
  padding-bottom: 60px;
}
footer.bg-blue::before {
  top: -550px;
  left: -990px;
  width: 1525px;
  height: 1525px;
}
@media screen and (max-width: 820px) {
  footer.bg-blue::before {
    top: -190px;
    left: -330px;
    width: 729px;
    height: 729px;
    opacity: 0.55;
  }
}
footer ul {
  display: flex;
  justify-content: center;
  gap: 0 82px;
  margin: 0;
}
@media screen and (max-width: 1040px) {
  footer ul {
    gap: 0 30px;
  }
}
@media screen and (max-width: 820px) {
  footer ul {
    padding: 0;
    display: block;
  }
}
footer ul li {
  height: 40px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  footer ul li {
    margin-bottom: 30px;
  }
}
footer ul li a img {
  height: 40px;
  width: auto;
}
@media screen and (max-width: 1040px) {
  footer ul li a img {
    height: 30px;
  }
}
footer ul li:nth-child(2) a img {
  height: 50px;
}
@media screen and (max-width: 1040px) {
  footer ul li:nth-child(2) a img {
    height: 34px;
  }
}
footer ul li.full {
  margin-top: 220px;
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  footer ul li.full {
    padding-top: 100px;
    margin: 0 0 100px;
  }
}
footer ul li.full img {
  width: 250px;
}
@media screen and (max-width: 1040px) {
  footer ul li.full img {
    width: 200px;
  }
}
footer .copy {
  margin: 60px auto 0;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 38px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  footer .copy {
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 24px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 820px) {
  .container {
    padding: 0 40px;
  }
  #kv img {
    width: calc(100% + 80px);
    margin: -23px 0 0 -40px;
  }
  #about .content.content03 .flex .item img.main {
    width: calc(100% - 80px);
  }
  #about .content.content03 .flex .item:last-child img.main {
    width: calc(100% - 80px);
    left: -40px;
  }
  #about .content.content03 .flex .item.bg-blue::before {
    top: -41vw;
    left: 0;
    width: 150vw;
    height: 150vw;
  }
  #about .content.content03 .flex .item.bg-orange::after {
    top: 0;
    left: -230px;
    width: 500px;
    height: 500px;
  }
  #data .img-flex {
    margin: 0 -40px 75px;
  }
}/*# sourceMappingURL=style.css.map */