@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/*--------------------------------------
余白調整
--------------------------------------*/
/* For PC */
.pc-pt-20 {9
    padding-top: 2em!important;
}

.pc-pb-20 {
    padding-bottom: 2em!important;
}
/* フッター非表示 */
.l-footer {
  display:none
}

/* テキストに下線 */
.underline-text {
text-decoration: underline;
text-decoration-thickness: 2px;
text-decoration-color: #ffffff;
text-underline-offset: 8px;
}
/* メインビジュアル部分 */
/*画像を暗くする */
@media (max-width: 768px)  {
.p-mainVisual__inner h1{
line-height: 1.2;}
}
/* 統計情報 */
  .glass-panel {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 600px;
margin: 0 0 0 auto;
    padding: 16px 20px;
background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    color: #19448e;
font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  }
  .glass-content {
    flex: 1;
    text-align: center;
    position: relative;
  }
  .glass-content:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 1);
  }
  .glass-label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: -8px;
    line-height: 1.2;
  }
  .glass-value {
    font-size: 42px;
    font-weight: 800;
    margin: -10px;
  }

/* 円形 */
.stats-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.circle {
width:90px;
height:90px;
  border-radius: 50%;
  background-color: #19448E;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  padding: 5px;
	  font-weight: bold;
}

.number {
font-size: 2.5rem;
  font-weight: bold;
}

@media (max-width: 768px)  {
/* 円形 */
.circle {
width: 60px;
height: 60px;
font-size: 0.8em;
}
	.number {
font-size: 1.5em;
  font-weight: bold;
}
.mv-btn{
	font-size: 0.9rem;
}
}


/* ページトップのナビを横幅いっぱいにする */
.home .l-container {
max-width: 100%;
}

/* メインビジュアルの文字ドロップシャドウを消す */
.p-mainVisual__textLayer {
    text-shadow: none!important;
}
h1.is-style-section_ttl {
	font-size: 1.5em;
}
h2.is-style-section_ttl {
	font-size: 3em;
}
@media (max-width: 768px)  {
	h1.is-style-section_ttl {
	font-size: 1.2em;
}
h2.is-style-section_ttl {
	font-size: 2.5em;
}
}
.post_content .is-style-section_ttl small {
	display: block;
	font-size: 0.4em;
	padding-top: 0.1em;
}


/* ロゴスライダー */
.slider_parent {
  position: relative;
  overflow: hidden;
}

.slider_parent .slider {
  display: flex;
}

.text_scroll {
  animation: scroll 40s linear infinite;
}

.text_scroll_reverse {
  animation: scroll 40s linear infinite;
  animation-direction: reverse !important; 
}

.logos {
  flex-shrink: 0;
}

.slider_parent ul li {
  margin-left: 10px;
  margin-right: 10px;
}

.slider_parent ul li {
  display: inline-block;
}

.slider_parent ul {
  padding: 0;
  margin: 0;
  display: flex;
}

.slider_parent ul li > a img {
  transition: 0.4s;
}
.slider_parent ul li > a img {
  max-width: 100% !important;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media only screen and (max-width: 991px) {
  .slider_parent ul li {
    margin-left: 5px;
    margin-right: 5px;
  }
  .slider_parent ul li img {
    height: 50px;
    width: auto;
  }
  .text_scroll {
    animation: scroll 30s linear infinite;
  }
}


/* 背景色と角に丸みをつける */
.radi img{
	border-radius: 5px; /* 全体の丸み */
}

/* スライド共通のスタイル */
.splide__slide {
transform: scale(1);
}
/* アクティブなスライドのスタイル */
.splide__slide.is-active {
  opacity: 1; /* 中央のスライドは薄くしない */
  transform: scale(1); /* 中央のスライドは小さくしない */
  z-index: 1; /* 中央のスライドを一番上にする */
}
/* スライドのサイズ調整 */
.splide__slide {
 height: 80%;
 width: 100%;
}
/* レイアウトの為のスタイル */
.wrapper {
  margin-top: 10px;
  max-width: 600px;
  width: 100%;
}

/* 背景下部のみ色付き */
.wave {
	background: linear-gradient(180deg,
		#F7F7F7 0%,
		#F7F7F7 30%,
		#19448E 30%,
		#19448E 100%);
}

/* お客様の声 */		
.profile-card {
display: flex;
flex-direction: column;
align-items: center;
background-color: white;
border-radius: 5px;
padding: 3em;
margin-bottom: 15px;
height: 100%;
}

.profile-header {
display: flex;
align-items: center;
margin-bottom: 15px;
}

.profile-image img {
width: 84px;
height: 84px;
border-radius: 50%;
margin-right: 15px;
}

.profile-title {
font-weight: bold;
text-align: center
}

/* お悩み */	
.onayami {
height:100%;
text-align: center;
position: relative;
padding-bottom: 40px;
}

.arrow-down {
width: 0;
height: 0;
border-left: 30px solid transparent;
border-right: 30px solid transparent;
border-top: 20px solid white;
margin: 0 auto 20px;
}

.onayami h2 {
font-size: 2.25em;
margin-bottom:16px;
line-height: 1.4;
}
@media (max-width: 768px)  {
.onayami h2 {
font-size: 2em;
margin-bottom:16px;
line-height: 1.2;
}
}

.onayami-list {
display: table;
text-align: left;
list-style: none;
margin: 1em auto;
}

.onayami-list li {
padding-left: 1.5em;
margin-bottom: .8em;
font-size: 1.1em;
line-height: 1.5;
}

.onayami-list li::before {
content: '\';
font-family: "Font Awesome 5 Free";
font-weight: 900;
position: absolute;
top: 4px;
left: 0;
color: white;
}

.onayami-center{
display: flex;
justify-content: center;
align-items: center;
background-color: #FFC72E;
color: #000;
border-radius: 50px;
padding: 10px 30px;
font-size: 1.5em;
font-weight: bold;
width: 500px;
position: absolute;
left: 50%;
transform: translateX(-50%); /* 水平方向の中央揃え */
}


.onayami-center p {
  margin: 0;
  text-align: center; 
}

@media (max-width: 767px) {
    .onayami {
        padding: 30px 15px;
    }

    .onayami-h2 {
        font-size: 24px;
    }

    .onayami-list li {
        font-size: 14px;
    }

    .onayami p {
        font-size: 16px;
        padding: 8px 20px;
    }
}

/* 国旗、専門分野ボタン */	
.language-button {
display: flex;
align-items: center;
background-color: #f0f0f0;
border: none;
border-radius: 5px;
padding: 0;
cursor: pointer;
width: 100%; /* ボタンを親要素の幅いっぱいに */
 height: 90px; /* 高さを固定。必要に応じて調整 */
overflow: hidden;
transition: background-color 0.3s ease;
}

.flag-icon {
width: 90px; /* 固定幅 */
height: 100%; /* 高さを親要素に合わせる */
  object-fit: cover;
transition: transform 0.3s ease;
}

.language-text {
flex-grow: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
font-size: 1.3em;
}

.language-text.small {
font-size: 1.3em;
}
.mobile { display: none; }
.language-button:hover {
  background-color: #75A4D1; /* ホバー時の背景色 */
}
.language-button:hover .flag-icon {
  transform: scale(1.1); /* ホバー時に画像を少し拡大 */
}


/* 国旗、専門分野ボタン スマホサイズ */	
@media (max-width: 768px){
.language-button {
 height: 5em; /* 高さを固定。必要に応じて調整 */
}
.flag-icon {
width: 50px; /* 固定幅 */
}

.language-text {
font-size: 1.1em;
}

.language-text.small {
font-size: 1.3em;
}
.pc { display: none; }
.mobile {display: block;}
}

/* 途中CTA */
.med-cta {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
font-weight: bold;
}

.med-cta .button {
    display: inline-block;
    padding: 15px 0;
    width: 30%; /* ボタンの横幅を表示画面の30%に設定 */
font-size: 1.25em;
 color: #000;
    background-color: #ffc72c;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px)  {
.med-cta .button {
width: 200px;
font-size: 1em;
}
}

.med-cta .button:hover {
    color: #000;

}

.med-cta .button::before {
content: '▶';
position: absolute;
right: 20px;
opacity: 0;
transition: opacity 0.3s ease, right 0.3s ease;
}

.med-cta .button:hover::before {
    opacity: 1;
    right: 10px;
}


/*== ボタン共通設定 */
.btn{
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    background-color: #f0f0f0;
    height:50px;
    border: none;
    border-radius: 5px;
    padding: 10px 30px;
    text-align: center;
    outline: none;
    transition: ease .2s;
}


/*ボタン内spanの形状*/
.btn span {
    position: relative;
    z-index: 3;
    color:#333;
}

.btn:hover span{
    color:#fff;
}

/*== 背景が流れる（下から上） */
.bgbottom:before {
    content: '';
    position: absolute;
    bottom:0;
    left: 0;
    z-index: 2;
    background-color: #75A4D1;
    width: 100%;
    height: 0;
    transition:.2s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

/*hoverした際の形状*/
.bgbottom:hover:before{
    height: 100%;  
    background-color: #75A4D1;
}

/* 幅のクラス */
.btn-width-190 {
width: 190px;
}

.btn-width-450 {
width: 485px;
}

@media (max-width: 768px)  {
.btn{
width: 100%;
}
.btn-width-190 {
width: 100%;
}

.btn-width-450 {
width: 100%;
}
}

/* 翻訳ページ青枠リストボックス */
.list-tr {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-tr li {
background-color: #75A4D1;
color: white;
padding: 10px 15px;
margin-bottom: 36px;
border-radius: 5px;
font-size: 1.25em;
text-align: center;
}
@media (max-width: 768px)  {
.post_content ul.list-tr {
padding-left:0px;}
}

.guide-container {
max-width: 450px;
margin: 0 auto;
border: 4px solid #75A4D1;
border-radius: 5px;
overflow: hidden;
font-size: 1.25em;
}

.guide-header {
    background-color: #75a4d1;
    color: white;
    font-weight: bold;
    padding: 10px;
    margin: 0;
    text-align: center;
}

.guide-content {
    padding: 10px;
    margin: 0;
    text-align: center;
}

/* 青枠角丸 */
.has-border, div.has-background, p.has-background{
padding: 0.7em;
border-radius: 5px;
}

/* ブログアイキャッチ */
.my-eyecatch {
    margin-bottom: 2em;
}
img.my-eyecatch {
border-radius: 5px;
}

/* リサーチの手法 */
.re-label {
  display: flex;
  justify-content: center;
}
.re-label .menu-yellow{
background-color: #FFC72E;
font-size: 0.9em;
padding: 5px 10px;
border-radius: 20px;
}
.re-label .menu-red{
background-color: #D93448;
font-size: 0.9em;
padding: 5px 10px;
border-radius: 20px;
color: white;
}

/* ボックスの背景色変更 */
.box-bg{
background-color: #F6F2F1;
border-radius: 5px;}

.box-bg-white{
background-color: #FFFFFF;
border-radius: 5px;}

/* リサーチ実績 */
.re-case p{
padding:10px;
}

/* ホバー時画像拡大 */
.imghover figure{
  overflow: hidden;
	border-radius: 5px; 
}

.imghover img {
transition: transform 0.3s ease-in-out;
}

.imghover:hover img {
transform: scale(1.1);
}

/* スマホでのカラム並び順 */
@media (max-width: 768px)  {
.wp-block-reverse .swell-block-columns__inner{
flex-direction: column-reverse; 
}
}

/* topボタンの位置調整 */
@media (max-width: 768px)  {
.swell-block-button[data-align=left] {
text-align: center;
}.swell-block-button[data-align=right] {
text-align: center;
}}
	
/* Gメニューの幅調整 */
.c-gnav .sub-menu {
width: 16em;
}

/* フッターSNSボタン */
#social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

#social-icon a {
  color: white;
  font-size: 2em;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

#social-icon a:hover {
transform: scale(1.2);
}
/* 固定ページタイトル */
.l-topTitleArea__body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}

.c-pageTitle {
display: flex;
flex-direction: column-reverse;
font-size: 2.5em;
margin: 0;
}

@media (max-width: 768px)  {
.c-pageTitle {
font-size: 2em;
}
}

.c-pageTitle__subTitle {
display: block;
font-size: 1rem;
margin-top: 0.5rem;
}

.c-pageTitle__subTitle::before,
.c-pageTitle__subTitle::after {
content: "";
display: none;
}

.post_content h3 {
margin-bottom: 1em;
}
/* サイドバー目次 */
.p-toc__link.currentTocPosition {
  background-color: #FEECD2 !important;
}
/* 目次デザイン */
ol.is-style-index ol > li::before {
font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 900;
border-right: solid 0px currentColor;
}
.p-toc__list li {
font-weight: bold;
}
.p-toc__list li li {
font-weight: normal;
}
/* フッターの幅を投稿記事に合わせる */

/* スマホメニュー速度 */
.p-spMenu__inner {
    transition: transform 200ms, -webkit-transform 200ms;
    transition-timing-function: ease-out;
}

/* English page */
#text-3 > div > div > div > div{
	max-width:1170px!important;
}
/* メインビジュアル部分 */
.topvis {
    width: 100vw;
    position: relative;
}


.topvispicj {
    height: 100vh;
background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url(https://www.atglobal.co.jp/wp-content/uploads/2024/08/topvisual.jpg) !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.topvis .swell-block-fullWide__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.topvis h2,
.topvis h1,
.topvis p,
.topvis .circle,
.topvis .number {
    color: #FFFFFF !important;
}

.topvispice{
	height: 75vh;
background-image: url(https://www.atglobal.co.jp/wp-content/uploads/2025/02/entop-scaled.jpg);
background-position: 75% center;
	background-size: cover;
	background-repeat: no-repeat;
}
.topvispice::before{
background-color: black;
background: linear-gradient(270deg,rgba(74,74,74,0.1) 50%, rgba(4,33,39,0.5) 100%);
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
content: ' ';
}

.topvispice h1{
font-size: 2.5em;
text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);}

/* スマホ表示（画面幅599px以下）で見出しを小さくする */
@media screen and (max-width: 599px) {
    /* H1用を小さくする */
    h1.sp-text-shrink {
        font-size: 1rem !important;
    }
    
    /* H2用を小さくする */
    h2.sp-text-shrink {
        font-size: 1.8rem !important;
    }
}

/*青リボン部分の行間 */
.topline p{
line-height: 1.5em;}


/*スマホ画面で画像を暗くする */
@media (max-width: 768px)  {
.topvis h1{
line-height: 1.2;}
.topvis::before{
background-color: black;
opacity: 0.3;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
content: ' ';
}

.topvispice h1{
font-size: 2.5em;
text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);}
.topline p{
line-height: 1.2em;}
.topline{
padding-bottom: 1em;
padding-top: 1em;}
}


/* 国旗、専門分野ボタン -e */
.language-button-e {
  display: block;
  width: 100%;
  overflow: hidden;
}

.language-button-inner-e {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f0f0f0;
  border: none;
  border-radius: 5px;
  padding: 0;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.flag-icon-e {
width: 50%; /* 親要素の幅の80% */
    height: auto; /* 高さは自動調整 */
    aspect-ratio: 135 / 90; /* アスペクト比を維持 */
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.language-text-e {
  text-align: center;
  padding: 5px 10px;
  font-size: 1.3em;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.language-text-e::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #19448E;
  transition: width 0.3s ease;
}

.language-button-inner-e:hover .flag-icon-e {
  transform: scale(1.1);
}

.language-button-inner-e:hover .language-text-e::after {
  width: 60%;
}

/* 国旗、専門分野ボタン スマホサイズ -e */
@media (max-width: 768px) {
  .language-button-inner-e {
    flex-direction: column;
  }
  .flag-icon-e {
 width: 80%;
    height: auto;
        aspect-ratio: 135 / 90;
    object-fit: cover;
  }
  .language-text-e {
    font-size: 1.1em;
  }
}
/* 途中CTA */
.button-container {
 padding: 12px;
    display: flex; 
    justify-content: center; 
	
}
.contact-button, .quote-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease-in-out;
}

.contact-button {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.contact-button:hover {
  background-color: white;
  color: #19448E;
    transform: scale(1.05); /* ホバー時に拡大 */
}

.quote-button {
  background-color: #FFC72E;
  border: 2px solid #FFC72E;
  color: black;
}

.quote-button:hover {
  background-color: transparent;
  border-color: #FFC72E;
  color: #FFC72E;
    transform: scale(1.05); /* ホバー時に拡大 */
}

.contact-button .arrow, .quote-button .arrow {
  margin-left: 10px;
  font-size: 1.2em;
  display: inline-flex;
  align-items: center;
    transition: color 0.3s ease;
}

.contact-button:hover .arrow {
    color: #19448E;
}

.quote-button:hover .arrow {
    color: #FFC72E;
}

.contact-button span, .quote-button span {
  font-size: 1.1em;
}
/* 翻訳分野 */
.link-field {
  text-decoration: none;
  color: inherit;
  display: block;
}

.container-field {
  display: flex;
  align-items: center;
  margin: 20px;
  padding: 10px;
}

.image-wrapper-field {
	  border-radius: 5px;
 margin-right: 20px;
width: 300px; /* 画像の元の幅を指定 */
height: 200px; /* 画像の元の高さを指定 (アスペクト比に合わせて調整) */
  overflow: hidden; /* 拡大した部分を隠す */
  position: relative; /* 子要素の配置基準 */
}

.image-field {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を枠に合わせて切り抜き */
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center; /* 拡大の中心を指定 */
  transition: transform 0.3s ease;
}

.link-field:hover .image-field {
  transform: scale(1.1);
}

.text-wrapper-field {
  flex: 1; /* テキストが残りのスペースを埋める */
}

.title-field {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.description-field {
  font-size: 1em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .container-field {
    flex-direction: column;
    align-items: flex-start;
  }
    .image-wrapper-field{
        margin-right: 0px;
        margin-bottom: 10px;
    }
}

/* FAQ開閉 */
.faq_q {
background-color: #F8F8F8;
}
.faq_a {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s;
padding: 0!important;
}
.faq_a.open {
    max-height: fit-content;
    padding: 1em 1em 1em 3em!important;
}
.swell-block-faq .faq_q:before,
.swell-block-faq .faq_a:before {
    box-shadow: none;
    left: 1px;
}
.swell-block-faq .swell-block-faq__item+.swell-block-faq__item {
    position: relative;
}
.swell-block-faq__item .faq_q:after {
    content: "\e910";
    font-family: icomoon!important;
    font-weight: bold;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4em;
}
.swell-block-faq__item.open .faq_q:after {
    content: "\e912";
}



