@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap");
.site-footer_copy, .box-contact_link, .slider-item_sub, .nav-header {
  font-weight: 500;
}

/*!
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*
 * 基礎SCSS
 * @include common.css
 */
html {
  font-size: 62.5%;
  /* = 10px */
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.site-footer_copy, .box-contact_link, .slider-item_sub, .nav-header {
  font-family: "Josefin Sans", sans-serif;
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #33323C;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  background: #FAFAFA;
}
@media screen and (max-width: 639px) {
  body {
    font-size: 1.4rem;
  }
}

* {
  box-sizing: border-box;
}

/*--------------------
 タグ汎用
 ---------------------*/
small {
  font-size: 0.9em;
  line-height: 1.5em;
}

.nocomments,
.postmetadata,
blockquote,
strike {
  color: #FAFAFA;
}

code {
  font: 1.1em "Courier New", Courier, Fixed;
}

abbr,
acronym,
span.caps {
  font-size: 0.9em;
  cursor: help;
}

a {
  color: #33323C;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s all;
}
a:hover {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s all;
  opacity: 0.7;
}

p span {
  display: inline-block;
}

blockquote {
  padding-left: 20px;
  border-left: 5px solid #33323C;
  margin: 15px 30px 0 10px;
}
blockquote cite {
  display: block;
  margin: 5px 0 0;
}

.color_main {
  color: #5B97DD;
}

.color_pink {
  color: #F2B6B6;
}

.color_grn {
  color: #83CCD2;
}

/*-------------
 汎用設定
--------------*/
img {
  height: auto;
  max-width: 100%;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ol {
  margin-left: 1.5em;
}

.txt_left {
  text-align: left;
}

.txt_right {
  text-align: right;
}

.txt_center {
  text-align: center;
}

/*===========================================
  margin & padding
===========================================*/
.m0 {
  margin: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.p0 {
  padding: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.m5 {
  margin: 5px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.p5 {
  padding: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.p10 {
  padding: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.p15 {
  padding: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.p20 {
  padding: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.m25 {
  margin: 25px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.p25 {
  padding: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.m30 {
  margin: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.p30 {
  padding: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.m35 {
  margin: 35px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.p35 {
  padding: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.m40 {
  margin: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.p40 {
  padding: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.m45 {
  margin: 45px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.p45 {
  padding: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.m50 {
  margin: 50px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.p50 {
  padding: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.m55 {
  margin: 55px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.p55 {
  padding: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.m60 {
  margin: 60px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.p60 {
  padding: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.m65 {
  margin: 65px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.p65 {
  padding: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.m70 {
  margin: 70px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.p70 {
  padding: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.m75 {
  margin: 75px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.p75 {
  padding: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.m80 {
  margin: 80px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.p80 {
  padding: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  background: url("../img/bg.jpg") repeat;
}

#page {
  overflow: hidden;
}

.txt_main {
  color: #5B97DD;
}

article {
  margin-bottom: 240px;
}
@media screen and (max-width: 639px) {
  article {
    margin-bottom: 120px;
  }
}

.site-header {
  background: linear-gradient(180deg, rgba(100, 147, 197, 0.25) 0%, rgba(100, 147, 197, 0.3) 35%, rgba(255, 255, 255, 0) 100%);
  mix-blend-mode: normal;
  overflow: hidden;
  position: relative;
}
.site-header_logo img {
  height: auto;
}
.site-header_inner {
  padding: 20px;
  display: grid;
  justify-content: space-between;
  grid-template-columns: 160px auto;
}
@media screen and (max-width: 1024px) {
  .site-header_inner {
    grid-template-columns: 120px auto;
  }
}
@media screen and (max-width: 639px) {
  .site-header_inner {
    grid-template-columns: 80px auto;
  }
}
.site-header_txt {
  text-align: center;
  font-size: 4.8rem;
  margin-top: 128px;
  position: relative;
  z-index: 1;
  word-break: auto-phrase;
  margin-bottom: 240px;
}
@media screen and (max-width: 1024px) {
  .site-header_txt {
    font-size: 4rem;
    margin-bottom: 160px;
  }
}
@media screen and (max-width: 639px) {
  .site-header_txt {
    font-size: 3.2rem;
    padding: 0 8px;
    margin-top: 64px;
    margin-bottom: 120px;
  }
}
.site-header_txt_small {
  font-size: 2.4rem;
  display: block;
  margin-top: 64px;
}
@media screen and (max-width: 639px) {
  .site-header_txt_small {
    font-size: 1.8rem;
    font-weight: normal;
  }
}
.site-header_txt br {
  display: none;
}
@media screen and (max-width: 639px) {
  .site-header_txt br {
    display: block;
  }
}

.nav-header {
  background: #FFFFFF;
  border-radius: 40px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 48px;
  padding: 16px 64px 12px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .nav-header {
    padding: 16px 24px 12px;
    gap: 8px;
  }
}
.nav-header_link {
  padding: 8px 16px;
  display: block;
}
.nav-header_link:hover {
  background: rgba(91, 151, 221, 0.2);
  opacity: 1;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .nav-header_wrap {
    display: none;
  }
}

dotlottie-player {
  position: absolute;
  bottom: -30%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  dotlottie-player {
    bottom: -20%;
  }
}
@media screen and (max-width: 1024px) {
  dotlottie-player {
    bottom: 0;
  }
}
@media screen and (max-width: 639px) {
  dotlottie-player {
    bottom: 10%;
  }
}

.w-1440 {
  max-width: 1440px;
  width: 95%;
  margin: 0 auto;
}

.headline-first {
  line-height: 1;
  margin-bottom: 56px;
}
@media screen and (max-width: 639px) {
  .headline-first {
    margin-bottom: 24px;
  }
}

.headline-second {
  display: block grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  margin-bottom: 120px;
  font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .headline-second {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 639px) {
  .headline-second {
    margin-bottom: 48px;
    font-size: 2rem;
  }
}
.headline-second:before {
  --_size: 2.4rem;
  content: "";
  width: 16px;
  height: 16px;
  background: #5B97DD;
  aspect-ratio: 1;
  margin-block: calc(var(--_size) / 2);
}
@media screen and (max-width: 639px) {
  .headline-second:before {
    --_size: 2rem;
  }
}

/***
PURPOSE
 ***/
.area-purpose {
  position: relative;
  padding-top: 120px;
  z-index: 1;
}
@media screen and (max-width: 639px) {
  .area-purpose {
    padding-top: 80px;
  }
}
.area-purpose:before {
  right: -10%;
  bottom: -30%;
}
@media screen and (max-width: 1280px) {
  .area-purpose:before {
    bottom: -20%;
  }
}
@media screen and (max-width: 1024px) {
  .area-purpose:before {
    right: -15%;
    bottom: -15%;
  }
}
.area-purpose:after {
  content: "";
  width: 80%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 0 80px 80px 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .area-purpose:after {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .area-purpose:after {
    width: 95%;
  }
}
@media screen and (max-width: 639px) {
  .area-purpose:after {
    border-radius: 0 40px 40px 0;
  }
}

.box-purpose {
  width: 85%;
  display: grid;
  grid-template-columns: auto 640px;
  gap: 40px;
  padding-bottom: 80px;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .box-purpose {
    width: 95%;
    grid-template-columns: auto 480px;
  }
}
@media screen and (max-width: 1024px) {
  .box-purpose {
    grid-template-columns: none;
    gap: 80px;
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .box-purpose {
    width: 95%;
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .box-purpose_l {
    width: 90%;
  }
}
.box-purpose_l p {
  line-height: 1.8;
  word-break: auto-phrase;
}
@media screen and (max-width: 1024px) {
  .box-purpose_r {
    text-align: right;
  }
}
@media screen and (max-width: 639px) {
  .box-purpose_r {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .box-purpose_r img {
    width: 60%;
  }
}
@media screen and (max-width: 639px) {
  .box-purpose_r img {
    width: 80%;
  }
}

/***
SERVICES
 ***/
.area-service {
  position: relative;
  overflow: hidden;
}

.slider-item {
  padding: 80px 40px;
  color: #FFFFFF;
  width: 1040px;
  height: 540px;
  border-radius: 80px;
  margin-right: 80px;
  word-break: auto-phrase;
}
@media screen and (max-width: 1024px) {
  .slider-item {
    width: 600px;
    height: 100%;
  }
}
@media screen and (max-width: 639px) {
  .slider-item {
    background: #5B97DD !important;
    width: 100vw;
    border-radius: 40px;
    padding: 40px 24px;
    height: auto;
    margin-right: 40px;
  }
}
.slider-item_01 {
  background: url("../img/bg_service01.png") no-repeat center center/cover;
}
.slider-item_02 {
  background: url("../img/bg_service02.png") no-repeat center center/cover;
}
.slider-item_03 {
  background: url("../img/bg_service03.png") no-repeat center center/cover;
}
.slider-item_num {
  margin-bottom: 56px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .slider-item_num {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 639px) {
  .slider-item_num {
    margin-bottom: 24px;
  }
}
.slider-item_num img {
  width: 100px;
}
@media screen and (max-width: 1024px) {
  .slider-item_num img {
    width: 80px;
  }
}
@media screen and (max-width: 639px) {
  .slider-item_num img {
    width: 60px;
  }
}
.slider-item_ttl {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .slider-item_ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 639px) {
  .slider-item_ttl {
    font-size: 2.4rem;
    margin-bottom: 8px;
  }
}
.slider-item_sub {
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}
@media screen and (max-width: 639px) {
  .slider-item_sub {
    font-size: 2rem;
  }
}
.slider-item_txt {
  font-size: 2.4rem;
  margin-bottom: 24px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .slider-item_txt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .slider-item_txt {
    font-size: 1.8rem;
  }
}

.list-circle_item {
  display: block grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  margin-bottom: 16px;
}
.list-circle_item:before {
  --_size: 16px;
  content: "";
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border-radius: 50%;
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_size)) / 2);
}
@media screen and (max-width: 639px) {
  .list-circle_item:before {
    --_size: 14px;
  }
}
.list-circle_item:last-child {
  margin-bottom: 0;
}

.container {
  position: relative;
  width: 100%;
  height: 560px;
}
@media screen and (max-width: 639px) {
  .container {
    height: 500px;
  }
}

.slider {
  position: absolute;
  display: flex;
  top: 20px;
  /*--_gutter: max(2.5dvi, 24px);

  display: block grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--_gutter);
  padding: var(--_gutter);*/
}

/***
COMPANY
 ***/
.w-1040 {
  max-width: 1040px;
  width: 100%;
  margin-left: auto;
  display: grid;
  grid-template-columns: auto 1fr;
}

.list-company {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  column-gap: 160px;
  border-bottom: 1px solid #ddd;
  padding: 40px 0;
}
@media screen and (max-width: 639px) {
  .list-company {
    column-gap: 40px;
  }
}
.list-company:first-child {
  border-top: 1px solid #ddd;
}
.list-company_head {
  font-weight: bold;
  text-align-last: justify;
}

/***
FOOTER
 ***/
.area-contact {
  position: relative;
  padding-bottom: 80px;
  margin-bottom: 240px;
}
@media screen and (max-width: 639px) {
  .area-contact {
    margin-bottom: 120px;
  }
}
.area-contact:before {
  left: -10%;
  bottom: -30%;
}
@media screen and (max-width: 1024px) {
  .area-contact:before {
    bottom: -20%;
    left: -15%;
  }
}
.area-contact:after {
  content: "";
  display: block;
  width: 90%;
  height: 100%;
  background: #5B97DD;
  border-radius: 80px 0 0 80px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 639px) {
  .area-contact:after {
    width: 100%;
    border-radius: 40px 0 0 40px;
  }
}
.area-contact .headline-first {
  padding-top: 80px;
}

.box-contact {
  width: calc(90% - 120px);
  display: flex;
  gap: 80px;
  margin: 0 0 64px auto;
}
@media screen and (max-width: 1280px) {
  .box-contact {
    width: calc(90% - 144px);
    margin: 0 24px 64px auto;
  }
}
@media screen and (max-width: 1024px) {
  .box-contact {
    flex-direction: column;
    width: calc(90% - 48px);
    gap: 48px;
  }
}
@media screen and (max-width: 639px) {
  .box-contact {
    width: 90%;
    margin: 0 auto 40px;
    gap: 24px;
  }
}
.box-contact_item {
  width: min(45%, 480px);
  background: #FFFFFF;
  border-radius: 40px;
  padding: 64px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .box-contact_item {
    width: 100%;
    padding: 40px;
  }
}
@media screen and (max-width: 639px) {
  .box-contact_item {
    padding: 24px 32px;
  }
}
.box-contact_icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .box-contact_icon {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  .box-contact_icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
  }
}
.box-contact_ttl {
  font-size: 1.8rem;
  margin-bottom: 24px;
  word-break: auto-phrase;
}
@media screen and (max-width: 639px) {
  .box-contact_ttl {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.box-contact_link {
  color: #5B97DD;
  text-decoration: underline;
  font-size: 3.2rem;
}
@media screen and (max-width: 1280px) {
  .box-contact_link {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 639px) {
  .box-contact_link {
    font-size: 2rem;
  }
}
.box-contact_txt {
  width: calc(90% - 120px);
  margin-left: auto;
  color: #FFFFFF;
  word-break: auto-phrase;
}
@media screen and (max-width: 1280px) {
  .box-contact_txt {
    width: calc(90% - 144px);
    margin: 0 24px 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .box-contact_txt {
    width: calc(90% - 48px);
  }
}
@media screen and (max-width: 639px) {
  .box-contact_txt {
    width: 90%;
    margin: 0 auto;
  }
}

/***
FOOTER
 ***/
.site-footer {
  text-align: center;
}
.site-footer_logo {
  margin-bottom: 80px;
}
.site-footer_logo img {
  width: 160px;
}
@media screen and (max-width: 639px) {
  .site-footer_logo img {
    width: 120px;
  }
}
.site-footer_copy {
  margin-bottom: 16px;
}

/**
SVG animation
 **/
.svganimeblock {
  width: 100%;
}

/*SVGの可変*/
.svganimeblock svg {
  width: auto;
  height: 120px;
}
@media screen and (max-width: 1024px) {
  .svganimeblock svg {
    width: 600px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  .svganimeblock svg {
    width: 90%;
  }
}

/*アニメーション前のパスの指定*/
.svganimeblock svg path {
  fill-opacity: 0; /*最初は透過0で見えない状態*/
  transition: fill-opacity 0.5s; /*カラーがつく際のアニメーション0.5秒で変化*/
  fill: none; /*塗りがない状態*/
  stroke: #5B97DD; /*線の色*/
}

.svganimeblock.is_wht svg path {
  stroke: #FFFFFF; /*線の色*/
}

/*アニメーション後に.doneというクラス名が付与された時のパスの指定*/
.svganimeblock svg.done path {
  fill: #E5EEF8; /*塗りの色*/
  fill-opacity: 1; /*透過1で見える状態*/
  stroke: #5B97DD; /*線の色*/
}

.svganimeblock.is_wht svg.done path {
  stroke: #FFFFFF; /*線の色*/
  fill: #B9D2ED; /*塗りの色*/
}

/**
gradation背景
 **/
.bg_grd {
  position: relative;
}
.bg_grd:before {
  content: "";
  display: block;
  width: 920px;
  height: 920px;
  background: url("../img/bg_grd.svg") no-repeat center center/cover;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .bg_grd:before {
    width: 640px;
    height: 640px;
  }
}
@media screen and (max-width: 1280px) and (max-width: 639px) {
  .bg_grd:before {
    display: none;
  }
}