/******************************************************************************
******************************************************************************
**
** style.cssにおいて
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
body {
  overflow-x: hidden;
}
img {
  height: auto;
  max-width: 100%;
}
.w_base {
  padding-left: 1rem;
  padding-right: 1rem;
}
.vw_base {
  padding-left: 1rem;
  padding-right: 1rem;
}
.webfont {
  font-family: 'Anton', sans-serif;
}
.bg_grad_blue01 {
  background: linear-gradient(136deg, #3f86e8, #3fd0e8, #b5d1f2);
  background-size: 600% 600%;
  -webkit-animation: AnimationName 17s ease infinite;
  -moz-animation: AnimationName 17s ease infinite;
  animation: AnimationName 17s ease infinite;
}
.bg_grad_blue02 {
  background: linear-gradient(136deg, #3f86e8, #3fd0e8, #b5d1f2);
  background-size: 600% 600%;
}
.bg_grad_blue03 {
  background: linear-gradient(136deg, #3f86e8, #3fd0e8, #01e3e9);
  background-size: 200% 200%;
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd {
  background: linear-gradient(136deg, #3f86e8, #3fd0e8, #b5d1f2);
  background-size: 200% 200%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
  height: 4rem;
}
.hd_logo a {
  color: #fff;
  display: flex;
  font-size: 2rem;
  font-family: 'Anton', sans-serif;
  justify-content: space-between;
  align-items: center;
  font-weight: normal;
  text-decoration: none;
}
.hd_logo_img {
  height: 20px;
  width: auto;
}
.hd_logo .ff_jp {
  display: none;
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.hd_nav {
  background: linear-gradient(136deg, #3f86e8, #3fd0e8, #b5d1f2);
  background-size: 200% 200%;
  -webkit-animation: AnimationName 17s ease infinite;
  -moz-animation: AnimationName 17s ease infinite;
  animation: AnimationName 17s ease infinite;
  color: #fff;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  z-index: 100;
  width: 100%;
  overflow-x: none;
  overflow-y: auto;
  top: 0px;
  right: -100%;
  position: fixed;
  transition: All 0.5s ease;
}
.hd_nav_list > li > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 1em 1em 1em 1.5em;
  text-decoration: none;
  position: relative;
}
.hd_nav_list a .ff_jp {
  display: block;
  font-size: 0.7rem;
}
.hd_nav_list a:hover,
.nav_list a.current-menu-item a {
  /* wp_nav_menu()でのカレントクラス*/
  color: #4987be;
  background: #eee;
}
.hd_nav_list a::before,
.nav_list a::after {
  position: absolute;
  right: 0px;
  bottom: -2px;
  left: 0px;
  z-index: 2;
  content: '';
  transition: all 0.3s;
}
.hd_nav_list a::before {
  border-bottom: 4px solid #4987be;
  transform: scale(0, 1);
}
.hd_nav_list a:hover::after,
.nav_list a:hover::before {
  transform: scale(1);
}
.sp_nav_open {
  right: 0 !important;
}
.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 24px;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 0;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 10px;
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
  background: #fff;
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding-top: 0;
}
.sub {
  display: none;
}
/*----------------------------------------------------------------------------
******************************************************************************
** main
******************************************************************************
----------------------------------------------------------------------------*/
.main_1column .mcon {
  padding: 2rem 1rem;
}
.main_single .mcon {
  padding: 2rem 1rem;
}
.main_blog {
  padding: 2rem 1rem;
}
.main_blog .blog_entry_box_item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}
.main_blog .blog_entry_box_item a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
}
.main_blog .blog_entry_box_item a:hover {
  text-decoration: underline;
}
.main_blog .blog_entry_box_thum {
  width: 30%;
}
.main_blog .blog_entry_box_thum img {
  width: 100%;
  margin: 0;
}
.main_blog .blog_entry_box_con {
  width: 70%;
  padding: 0 1rem;
}
.main_blog .blog_entry_box_ttl {
  font-size: 0.8rem;
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft {
  padding: 2rem 1rem;
}
.ft_mainnav_list {
  padding: 0 1rem 3rem;
}
.ft_mainnav_item {
  margin-top: 1rem;
}
.ft_mainnav_item_thum {
  overflow: hidden;
  height: 50vw;
}
.ft_mainnav_item_thum img {
  transition: all 0.3s ease;
}
.ft_mainnav_item_thum:hover img {
  transform: scale(1.1, 1.1);
}
.ft_mainnav_item_con {
  background: linear-gradient(136deg, #3f86e8, #3fd0e8, #b5d1f2);
  background-size: 600% 600%;
  color: #fff;
  font-size: 0.7rem;
  margin: -1rem -1rem 0 1rem;
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 10px;
}
.ft_mainnav_item_head {
  font-size: 1.1rem;
  font-weight: normal;
}
.ft_mainnav_item_head_ff_jp {
  display: inline-block;
  margin-left: 1em;
  color: #ddd;
  font-size: 0.7em;
}
.ft_copy {
  color: #fff;
  font-size: 0.7rem;
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_section {
  padding: 3rem 0;
}
.index_main_head01 {
  color: #3f86e8;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
}
.index_main_head01_ff_jp {
  display: block;
  color: #999;
  font-size: 0.7em;
}
.index_eyecatch img {
  width: 100%;
  height: auto;
}
.index_eyecatch_head01 {
  font-size: 1.3vw;
}
.index_eyecatch_message {
  background-color: #3f86e8;
  color: #fff;
  padding: 2rem 1rem;
}
.index_eyecatch_message h2 {
  font-size: 5vw;
  margin-bottom: 1rem;
}
.index_eyecatch_read {
  font-size: 4vw;
}
.index_eyecatch_message br {
  display: none;
}
.index_mainnav {
  padding-bottom: 0 !important;
}
.index_reason {
  display: flex;
  align-items: flex-start;
  flex-direction: column-reverse;
  position: relative;
}
.index_reason_thanks {
  position: absolute;
  top: 34vw;
  right: 2vw;
  font-size: 6vw;
  color: #ffff26;
  z-index: 20;
}
.index_reason_thum {
  width: 100%;
}
.index_reason_thum img {
  width: 100%;
  height: 40vw !important;
  -o-object-fit: cover !important;
  object-fit: cover;
  font-family: 'object-fit: cover!important;';
}
.index_reason_con {
  color: #fff;
  padding: 2rem 5vw;
  width: 100%;
  position: relative;
  z-index: 10;
}
.index_reason_con h3 {
  font-size: 5vw;
  margin-bottom: 2.5vw;
}
.index_reason_con p {
  font-size: 0.9rem;
  margin-top: 0.8vw;
}
.index_reason_sns_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2rem;
}
.index_reason_sns_list li {
  width: calc(50% - 0.5rem);
  margin-bottom: 1rem;
}
.index_reason_sns_list a {
  background-color: #fff;
  color: #3f86e8;
  font-size: 0.85rem;
  display: block;
  padding: 1em 0 0.9em;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.index_reason_sns_list a::before {
  position: absolute;
  content: '';
  border-bottom: 1px #fff solid;
  left: 3px;
  bottom: -3px;
  right: -3px;
}
.index_reason_sns_list a::after {
  position: absolute;
  content: '';
  border-right: 1px #fff solid;
  top: 3px;
  bottom: -3px;
  right: -3px;
}
.index_skill {
  color: #fff;
  padding: 0 !important;
}
.index_skill_item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 2rem 1rem;
}
.index_skill_item h3 {
  text-align: center;
  font-size: 1.3rem;
}
.index_skill_head01 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 1.5rem;
  color: #ffff26;
  text-align: center;
  line-height: 1.2;
}
.index_skill_item_ff_jp {
  font-size: 0.5em;
  color: #fff;
}
.index_skill_item_thum {
  text-align: center;
}
.index_skill_item_thum img {
  width: 60px;
  height: auto;
}
.index_portfolio_box_item {
  margin: 0 1rem 2rem;
}
.index_portfolio_box_thum {
  margin-bottom: 1rem;
}
.index_portfolio_box_thum img {
  width: 100%;
  height: auto;
}
.index_portfolio_box_ttl {
  text-align: center;
  font-size: 0.9rem;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.page_main_ttl_01 {
  font-family: 'Anton', sans-serif;
  background-color: #4987be;
  background-position: center;
  background-size: cover;
  color: #fff;
  font-weight: bold;
  font-size: 2.6rem;
  padding: 1rem;
  text-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
  line-height: 1.4;
}
.page_main_ttl_s {
  display: block;
  font-size: 1em;
}
.page_main_ttl_xxs {
  display: block;
  font-size: 0.6em;
}
