/*
Template:ystandard
Theme Name:deepaledge
*/

/* ==========================================================================
   Reset & Base
   ========================================================================== */
body{
width:100%;
height:100%;
margin:0 auto;
padding:0;
font-size:16px;line-height:1.8em;
background:#fff;
}

a{text-decoration:none;}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0em;
    padding: 0;
    line-height: 1.5;
    letter-spacing: .05em;
}

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

.entry-content h1+h2, .entry-content h2+h3, .entry-content h3+h4, .entry-content h4+h5, .entry-content h5+h6 {
    margin-top: 0em;
}

td, th {
    border-right:none;
    border-bottom:none;
}

tr {
    border-left:none;
}

amp-img, img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

p {
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
    margin: 0em;}

.ponly{display:none;}
.monly{display:block;}

.footer-poweredby{display:none;}
.grecaptcha-badge { 
   visibility: hidden; 
}

.page-id-12{margin-top:-56px!important;}

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --color-primary: #001f3f; /* 濃紺 */
    --color-secondary: #004085; /* 少し明るい紺 */
    --color-accent: #00aaff; /* 水色 */
    --color-cta: #e03e26; /* 赤・オレンジ */
    --color-text: #333333;
    --color-bg-light: #f4f8fb;
    --color-white: #ffffff;
    --font-base: 'Noto Sans JP', sans-serif;
}

.site-header {
    background-color:transparent;
    box-shadow:none;
	    margin-bottom: -56px;
	    z-index: 10;
}
.site-branding {
   padding: 0.5em 4em 0.5em 1em;
    background: linear-gradient( 100deg, #1E7FB7 0%, #1E7FB7 85%, transparent 55%, transparent 100% );
}
.site-header button {
    color: var(--mobile-nav-open);
	background:#1E7FB7;
	    padding: 0.75em 1em 0.75em 1em;
}

.entry-content>* {margin-top:0;}

.container {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    max-width: var(--width-max);
}

/* Section Common */
section {
    padding: 80px 0;
}

section.policywrap {
    padding: 60px 1em;
}

.section-title {
    text-align: center;
    color: var(--color-white);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: sans-serif; /* デザインの英語フォントに合わせて調整 */
    letter-spacing: 0.05em;
}

.entry-content h2.section-title{    margin: 0 auto 1em;
    max-width: 350px;    line-height: 1;}
.entry-content h2.section-title img{height:auto}

.section-title span {
    display: block;
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: normal;
    color: rgba(255,255,255,0.8);
}

.section-title--dark {
    color: var(--color-primary);
}
.section-title--dark span {
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}
.btn--contact {
    background-color: var(--color-cta);
    color: var(--color-white);
}
.btn--contact:hover {
    opacity: 0.8;
}
.btn--submit {
    background-color: var(--color-primary);
    color: var(--color-white);
    min-width: 200px;
    padding: 15px;
    border: none;
    cursor: pointer;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-secondary);
    z-index: 1000;
    height: 60px;
    border-top: 4px solid var(--color-accent);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    max-width: var(--width-max);
    margin: 0 auto;
}

.header__logo a {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Mobile Nav Styles */
.header__nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 60px);
    background-color: rgba(0, 31, 63, 0.95);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.header__nav.is-active {
    right: 0;
}

/* WordPress Menu Classes */
.menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.menu-item a {
    color: var(--color-white);
    font-weight: bold;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header__hamburger {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.header__hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: 0.3s;
}
.header__hamburger span:nth-child(1) { top: 0; }
.header__hamburger span:nth-child(2) { top: 9px; }
.header__hamburger span:nth-child(3) { bottom: 0; }

.header__hamburger.is-active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.header__hamburger.is-active span:nth-child(2) { opacity: 0; }
.header__hamburger.is-active span:nth-child(3) { transform: rotate(-45deg); bottom: 9px; }

.global-nav__menu>.menu-item.current-menu-item>a:after {
    width: auto;
}
.global-nav__menu>.menu-item.current-menu-item>a:hover:after {
    width: 100%;
transition: width 1s;
}
.global-nav__menu>.menu-item {
    line-height: 1;
}


/* ==========================================================================
   Main Content
   ========================================================================== */

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Overlay for text readability */
.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__content {
  max-width: 100%;
    width: max-content;
    text-align: center;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.hero__contentin {
	display:flex;
}

.hero__title {
    font-size: 1.2rem;
    color: #224451;
	    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	text-align:left;
	 background-color: rgba(255,255,255,0.9);
    padding: 16px 16px 0;
	    height: fit-content;
	    letter-spacing: 0.25em;
}

.entry-content h2.ltitle {
margin-right:0.25em;
	padding: 16px;
}

/* Mission */
.mission {
    background-color: var(--color-white);
    text-align: center;
	    padding-top: 80px;
}

.mission__intro {
    margin-bottom: 40px;
}
.mission__intro p {
       font-weight: 500;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: flex;
    text-align: left;
    margin: 0 auto 2em;
    font-size: 1.2em;
    line-height: 2.25;
    color: #224451;
}
.mission__main-img {
    max-width: 320px;
    margin: 0 auto;
	padding: 0 3em;
}

.mission__grid {
    display: grid;
    gap: 30px;
}
.mission__item {
    text-align: left;
    padding: 2em 3em 0;
    background: #fff;
}
.mission__num {
    font-size: 3rem;
    color: #eee;
    font-weight: 900;
    line-height: 1;
}
.mission__thumb {
   margin-bottom: 1.5em;
    border-radius: 8px;
    overflow: hidden;
}

.mission__thumb img {
  width: 100%;
}

.mission__item h3 {
  font-size: 1.3rem;
    display: inline-block;
    color: #224451;
    margin-bottom: 0.5em;
	font-weight:600;
}

/* Service */
.service {
   background: url(https://deepaledge.co.jp/wp-content/uploads/2026/01/t_service_back.webp) no-repeat center center / cover;
position: relative;
    padding: 80px 1em;
}
.service__card-wrapper {
   background-color: #F2F7F9;
    border-radius: 30px;
        padding: 3em 2em;
	margin: 40px auto 0;
}
.service__card {
   margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid #C5D3D6;
}
.service__card:last-child {
    margin-bottom: 0;
	border: none;
}
.service__img {
    border-radius: 10px;
    overflow: hidden;
	    text-align: center;
}

.service__info{margin-bottom:40px;}


.service__info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #0A2C3D;
	    font-weight: 600;
}

.service__info.last{
    padding-bottom: 0px;
border-bottom:none;
margin-bottom:0px;}


/* Results */
.results {
     background: url(https://deepaledge.co.jp/wp-content/uploads/2026/01/t_dev_back.webp) no-repeat center center / cover;
position: relative;
	    padding: 80px 1em 80px;
}

.results__intro {
    text-align: center;
    margin-bottom: 30px;
}

.results__list{padding:0 1em;}

.results__item {
    margin: 1em 0 0em;
    padding: 1em 0 1.5em;
	/*
    position: relative;
    border-bottom: 3px solid #E84729;
	*/
}
/*
.results__item::before  {
content: '';
    position: absolute;
    height: 1.2em;
  display: block;
  border-bottom: solid 3px #1E7FB7;
  bottom: -3px;
  width: 70%;
}
*/
.results__item.last {
	    border-bottom: none;
    padding: 1em 0 0;
}

.results__item.last::before  {
    border-bottom: none;
}

.results__item h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
	font-weight:600;
}

.line-wrap {
  display: flex;
  width: 100%;
  height: 3px;
	gap:4px;
}

.line {
  display: block;
}

.line.blue {
  flex: 1;
  background-color: #1E7FB7;
}

.line.orange {
  flex: 0.25;
  background-color: #E84729;
}


/* Company */
.company {
    width: 100%;
    background-image: url(https://deepaledge.co.jp/wp-content/uploads/2026/01/t_com_back.webp);
    background-repeat: no-repeat;
    background-size: auto 30%;
    background-position: bottom;
    aspect-ratio: 4 / 3;
	padding-top:80px;
}

.company__wrap{padding:0 1em;margin-top:40px;}

.company__table {
    width: 100%;
    border-collapse: collapse;
	border-top:none;
}
.company__table th, .company__table td {
    padding: 15px;
	border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: block; /* Mobile: stack vertically */
    width: 100%;
	text-align: center;
}
.company__table th {
    background-color: #F2F7F9;
    font-weight:600;
    color: var(--color-primary);
}

.company__table td.out_t_txt{text-align:justify;    border-bottom: none;    padding-bottom: 0;}

/* President */
.president {
    background-color:#245168;
    color: var(--color-white);
	padding: 64px 1em 80px;
}
.president .section-title {
    color: var(--color-white);
}
.president__card {
    background-color: var(--color-bg-light);
    color: var(--color-text);
    border-radius: 30px;
    padding: 24px;
    display: flex;
    flex-direction: column-reverse; 
    gap: 30px;
	margin-top: 40px;
}
.president__image {
    text-align: center;
}
.president__image img {
  object-fit: cover;
    max-width: 240px;
    margin: 2em auto 0.5em;
}
.president__history {
    margin-bottom: 1em;
	    padding-bottom: 1em;
	position: relative;
    border-bottom: 3px solid #C5D3D6;
}

.president__history::before   {
    content: '';
    position: absolute;
	display: block;
  border-bottom: solid 3px #1E7FB7;
  bottom: -3px;
  width: 30%;
}

.president__history.last {
  border:none;
}

.president__history.last::before   {
    border:none;
}


.president__history h3 {
    font-size: 1.2rem;
    color:#0A2C3D;
	font-weight:600;
}
.president__date {
    display: block;
    font-size: 0.85rem;
    color: #666;
}
.president__spec {
    width: 100%;
    border-collapse: collapse;
	border-top:none;
	
}

.president__spec th,
.president__spec td {
    text-align: left;
    vertical-align: top;
    padding-bottom: 0;
    line-height: 1.6;
	background:none;
}

.president__spec th {
    padding-right: 15px; /* 項目名と内容の間の余白 */
    white-space: nowrap; /* 項目名を改行させない */ 
	color:#0A2C3D;
	font-weight:600;
	    padding-left: 0;
	width:28%;
	text-align-last: justify;
    text-justify: inter-ideograph;
}

/* Flow (Consultation) */

.flow {
    width: 100%;
    background-image: url(https://deepaledge.co.jp/wp-content/uploads/2026/01/flow_back1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
	padding-top:64px;
	    padding-bottom: 0;
}


.flow__list {
    display: flex;
    flex-direction: column; /* Mobile: Vertical */
    gap: 4px;
    align-items: center;
	    margin-top: 40px;
}
.flow__item {
    width: 100%;
    max-width: 300px;
    position: relative;
}
/* Down arrow for mobile */
.flow__item:not(:last-child)::after {
    content: "▼";
    display: block;
    text-align: center;
    color: #0A2C3D;
    margin-top: 4px;
}
.flow__box {
    background-color:#1E7FB7;
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 5px; /* Box style on mobile */
    font-weight: bold;
}
.flow__box--red {
    background-color: var(--color-cta);
}

.step-flow {
  display: flex;
  max-width: 1000px;
  margin: 40px auto;
  font-weight: bold;
  font-size: 16px;
}

.step {
  position: relative;
  flex: 1;
  padding: 18px 20px;
  background: #1f7fb8;
  color: #fff;
  text-align: center;
}

.step::after {
  content: "";
  position: absolute;
  top: 0;
  right: -24px;
  width: 0;
  height: 0;
  border-top: 32px solid transparent;
  border-bottom: 32px solid transparent;
  border-left: 24px solid #1f7fb8;
  z-index: 2;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 32px solid transparent;
  border-bottom: 32px solid transparent;
  border-left: 24px solid #fff;
  z-index: 1;
}

.step:first-child::before {
  display: none;
}

.step:last-child::after {
  display: none;
}

.step-list {
  display: flex;
  margin: 48px 0 0;
  padding: 0;
  gap: 0px;
}

.step-list__item {
 display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 16px;
    flex: 1;
    list-style: none;
    background-color: #1E7FB7;
    text-align: center;
    color: #ffffff;
    clip-path: polygon(0% 0%, calc(100% - 16px) 0%, 100% 50%, calc(100% - 16px) 100%, 0% 100%, 16px 50% );
}


.step-list__item.last{background-color: #e03e26;}

.step-text2 {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

/* Contact */
.contact {
    background-color: #F2F7F9;
}

.contactin{padding:0 1em;}

.contact__desc {
    text-align: center;
    margin-bottom: 30px;
	margin-top: 40px;
}
.contact__form {
    padding: 20px;
    border-radius: 8px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight:600;
    font-size: 0.9rem;
}
.required { color: var(--color-cta); font-size: 0.8rem; }
.optional { color: #789B57; font-size: 0.8rem; }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #f9f9f9;
}
.form-submit {
    text-align: center;
}

 input[type=submit] {
 background-color: #0A2C3D;
    width: 100%;
    padding: 1em;
    margin-top: 2em;
}


.wpcf7-spinner {
    display: none;
}


/* Footer */
.footer {
    text-align: center;
}
.footer__logo {
    margin-bottom: 20px;
	text-align:center;
}

.footer__logo img{max-width:160px;margin:0 auto;}

.footer-main>* {
    margin-top: 1em;
}
.footer-nav .menu-item a {
  font-weight:400;
	border:none;
}

.footer__links a {
    font-size: 0.9rem;
    text-decoration: underline;
}
.footer__copyright {
    margin-top: 20px;
    font-size: 0.75rem;
    opacity: 0.7;
}

.copyright {
    margin-bottom: 36px;
}


#back-to-top {
    right: 2vh;
	bottom: 2vh;}

.back-to-top__content {
    display: block;
    padding: 0.75em;
    box-shadow: none;
    line-height: 1;
    white-space: nowrap;
    background-color: #1e7fb7;
    border-radius: 10px;
    color: #ffffff;
}
.policywrap h2{margin-bottom: 0.5em;
    font-size: 1.2em;
    padding-bottom: 0.5em;
    border-bottom: 1px dotted #C5D3D6;font-weight:600;}
h1.privacy__title{color: #001f3f;
    border-bottom: 2px solid #1E7FB7;
    padding-bottom: 0.5em;font-weight:600;}
.policywrap li{margin-bottom:40px;}
.policywrap ul.attention{margin:1.5em 0;}
.policywrap ul.attention li{margin-bottom:0.5em;    text-indent: -0.6em;}
.policytxt{margin:2em 0;}
.policycontact{text-align:right;}



/* ==========================================================================
   Media Queries
   ========================================================================== */

/* 2. Tablet (768px ~) */
@media (min-width: 768px) {
	
	.ponly{display:block;}
.monly{display:none;}
    
    /* Header */
	
	.site-header {
    background-color: #1E7FB7;
		height: 66px;
}
	
	.header-type--row1 .site-header__content {
    height: 60px;
}
	
	.global-nav__container ul {
    background: #1E7FB7;
    padding-right: 0px;
		    align-items: baseline;
}

	.global-nav__menu>.menu-item>a:after {
		background-color: #ffffff;}

	.global-nav__menu>.menu-item-120{margin-left:1em;height: 100%;
    display: flex;}
	
	.global-nav__menu>.menu-item-22{margin-right:1.5em;}
	
section {
    padding: 60px 0 120px;
}	
	
	
	

/* 赤い斜めのボタン */
.top-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ea4335; /* 画像の赤色に近い色 */
    height: 100%;
    padding: 14px 40px 11px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 14px;
    
    /* 斜めの変形処理 */
    transform-origin: bottom left;
	transform: skewX(-20deg);
    
    /* 白い境界線を作るための設定 */
    border-left: 3px solid white;
    padding-right: 50px; /* 斜めにした分、右側の余白を増やす */
}

/* テキストの変形を元に戻す（文字が斜めにならないようにする） */
.top-contact-btn span {
    display: block;
    transform: skewX(20deg);
}

.top-contact-btn:hover {
}
	.global-nav__menu>.menu-item-120 a{
    transform: skewX(20deg);
	padding: 16px 20px 16px 16px;
}

	
	.header-type--row1 .global-nav {
    margin-bottom: 0px;
}
	
    .header__hamburger { display: none; }
    .header__nav {
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        overflow: visible;
    }
    .menu {
        flex-direction: row;
        margin-bottom: 0;
        margin-right: 20px;
    }
    .menu-item a {
        padding: 0 15px;
        border: none;
    }
	
	.page-id-12 {
    margin-top: -56px!important;
}
	
	.header-type--row1 .site-branding {
    padding: 0;
    margin-left: 56px;
    background: none;
}
	
	
	.hero__title {
writing-mode: horizontal-tb;
font-size: 1.5rem;}
	
.mission__intro p {
writing-mode: horizontal-tb;
	    text-align: center;
	    justify-content: center;
	    font-size: 1.5em;
	        margin: 120px auto 80px;
	line-height:2.5;
}
	
.mission__item {
  padding: 0;
}	
	.entry-content h2.section-title {
    margin: 0 auto 1em;
   max-width: 100%;
    line-height: 1;
}
	
		/*inner*/
	.resultin,.companyin,.prein,.flowin,.contactin{width:100%;max-width:960px;margin:0 auto;}
	
	.entry-content h2.section-title img {
    height: auto;
}
    /* Mission Grid */
    .mission__grid {
        grid-template-columns: repeat(3, 1fr);
    }
	
	.mission {
    background-color: var(--color-white);
    text-align: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
		    padding-top: 0;
}

    /* Service */
    .service__card-wrapper {
    padding: 80px 40px;
    width: 100%;
    max-width: 960px;
        margin: 60px auto 0;
    }
	
	
	.service {
    padding: 120px 1em 160px;
}
	
	.service__info {
    padding-bottom: 0; 
		margin-bottom: 0px;
}
	.service__card {
    padding-bottom: 40px;
}
	
	
	 /* President */
    .president__card {
        flex-direction: row;
        padding: 64px;
    margin-bottom: 40px;
		    gap: 2.5em;
    }
    .president__image {
        width: 300px;
        flex-shrink: 0;
    }
    .president__content {
        flex: 1;
    }

.president__image img {
    object-fit: cover;
    max-width: 280px;
    margin: 0 auto 0.5em;
}
	.president__spec th {
	width:15%;
}

	

    /* Company Table */
	
	.company {
    background-size: auto 100%;
    background-position: center;
    aspect-ratio: 16 / 9; /* アスペクト比を保持してレスポンシブ */
}
	
	.company__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 24px 0px;
		border-top:none;
}
	
    .company__table th, .company__table td {
        display: table-cell;
        width: auto;
		border-bottom: 1px solid #C5D3D6;
    }
    .company__table th {
        width: 30%;
    background: none;
    }
	
	 .company__table th.last {
    border:none;}
	
	 .company__table td {
    text-align: justify;
}
	
	.results,.company,.president,.flow,.contact {
    padding:120px 1em;
}
	
	.flow{
    padding:120px 1em 80px;
}
	
	.contact {
    padding:0 1em 120px;
}
	

    /* Flow (Horizontal) */
	
	.flow {
    background-size: 100% 100%;
    background-position: center;
}
	
    .flow__list {
        flex-direction: row; /* Horizontal on Tablet+ */
        justify-content: space-between;
        gap: 0;
    }
    .flow__item {
        width: 24%;
        max-width: none;
    }
    .flow__item:not(:last-child)::after {
        display: none; /* remove vertical arrow */
    }
    .flow__box {
        position: relative;
        border-radius: 0;
        padding: 15px 10px 15px 30px;
        /* Arrow Shape using clip-path */
        clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%);
        background-color: var(--color-secondary);
    }
    /* First item flat left edge */
    .flow__item:first-child .flow__box {
        clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
    }
    /* Last item flat right edge */
    .flow__item:last-child .flow__box {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 15% 50%);
    }

    /* Form Rows */
    .form-row {
        display: flex;
        gap: 20px;
    }
    .form-row .form-group {
        flex: 1;
    }
	
	 input[type=submit] {
    max-width: 400px;
	 min-width: 400px;
}
	
	.footer__logo img{max-width:180px;margin:0 auto;}
	
	.copyright {
    margin-bottom: 24px;
}

	
	
}

/* 3. Small PC (1024px ~) */
@media (min-width: 1024px) {
    .container {
        padding: 0px;
    }

    /* Service */
    .service__card {
        flex-direction: row;
           align-items: center;
    }
    .service__img {
        width: 40%;
        flex-shrink: 0;
    }
    .service__info {
        width: 60%;
        padding-left: 20px;
    }

    /* President */
    .president__card {
        flex-direction: row;
        padding: 64px;
    margin-bottom: 40px;
		    gap: 1em;
		    margin-top: 60px;
    }
    .president__image {
        width: 280px;
        flex-shrink: 0;
    }
    .president__content {
        flex: 1;
    }
.president__image img {
    object-fit: cover;
    max-width: 280px;
    margin: 0 auto 0.5em;
}
	


}

/* 4. Large PC (1280px ~) */
@media (min-width: 1280px) {
    .container {
    }

    .hero__title {
        font-size: 2rem;
            padding: 0.5em 2em 0.5em 2.25em;
		    letter-spacing: 0.25em;
    font-weight: 600;
    }

    /* Adjust font sizes for large screens */
    .section-title { font-size: 2.5rem; }
}